]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Create.c
Discard devnum in favour of devnm
[thirdparty/mdadm.git] / Create.c
1 /*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2001-2012 Neil Brown <neilb@suse.de>
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@suse.de>
23 */
24
25 #include "mdadm.h"
26 #include "md_u.h"
27 #include "md_p.h"
28 #include <ctype.h>
29
30 static int default_layout(struct supertype *st, int level, int verbose)
31 {
32 int layout = UnSet;
33
34 if (st && st->ss->default_geometry)
35 st->ss->default_geometry(st, &level, &layout, NULL);
36
37 if (layout == UnSet)
38 switch(level) {
39 default: /* no layout */
40 layout = 0;
41 break;
42 case 10:
43 layout = 0x102; /* near=2, far=1 */
44 if (verbose > 0)
45 pr_err("layout defaults to n2\n");
46 break;
47 case 5:
48 case 6:
49 layout = map_name(r5layout, "default");
50 if (verbose > 0)
51 pr_err("layout defaults to %s\n", map_num(r5layout, layout));
52 break;
53 case LEVEL_FAULTY:
54 layout = map_name(faultylayout, "default");
55
56 if (verbose > 0)
57 pr_err("layout defaults to %s\n", map_num(faultylayout, layout));
58 break;
59 }
60
61 return layout;
62 }
63
64 int Create(struct supertype *st, char *mddev,
65 char *name, int *uuid,
66 int subdevs, struct mddev_dev *devlist,
67 struct shape *s,
68 struct context *c, unsigned long long data_offset)
69 {
70 /*
71 * Create a new raid array.
72 *
73 * First check that necessary details are available
74 * (i.e. level, raid-disks)
75 *
76 * Then check each disk to see what might be on it
77 * and report anything interesting.
78 *
79 * If anything looks odd, and runstop not set,
80 * abort.
81 *
82 * SET_ARRAY_INFO and ADD_NEW_DISK, and
83 * if runstop==run, or raiddisks disks were used,
84 * RUN_ARRAY
85 */
86 int mdfd;
87 unsigned long long minsize=0, maxsize=0;
88 char *mindisc = NULL;
89 char *maxdisc = NULL;
90 int dnum;
91 struct mddev_dev *dv;
92 int fail=0, warn=0;
93 struct stat stb;
94 int first_missing = subdevs * 2;
95 int second_missing = subdevs * 2;
96 int missing_disks = 0;
97 int insert_point = subdevs * 2; /* where to insert a missing drive */
98 int total_slots;
99 int pass;
100 int vers;
101 int rv;
102 int bitmap_fd;
103 int have_container = 0;
104 int container_fd = -1;
105 int need_mdmon = 0;
106 unsigned long long bitmapsize;
107 struct mdinfo info, *infos;
108 int did_default = 0;
109 int do_default_layout = 0;
110 int do_default_chunk = 0;
111 unsigned long safe_mode_delay = 0;
112 char chosen_name[1024];
113 struct map_ent *map = NULL;
114 unsigned long long newsize;
115
116 int major_num = BITMAP_MAJOR_HI;
117
118 memset(&info, 0, sizeof(info));
119 if (s->level == UnSet && st && st->ss->default_geometry)
120 st->ss->default_geometry(st, &s->level, NULL, NULL);
121 if (s->level == UnSet) {
122 pr_err("a RAID level is needed to create an array.\n");
123 return 1;
124 }
125 if (s->raiddisks < 4 && s->level == 6) {
126 pr_err("at least 4 raid-devices needed for level 6\n");
127 return 1;
128 }
129 if (s->raiddisks > 256 && s->level == 6) {
130 pr_err("no more than 256 raid-devices supported for level 6\n");
131 return 1;
132 }
133 if (s->raiddisks < 2 && s->level >= 4) {
134 pr_err("at least 2 raid-devices needed for level 4 or 5\n");
135 return 1;
136 }
137 if (s->level <= 0 && s->sparedisks) {
138 pr_err("This level does not support spare devices\n");
139 return 1;
140 }
141
142 if (subdevs == 1 && strcmp(devlist->devname, "missing") != 0) {
143 /* If given a single device, it might be a container, and we can
144 * extract a device list from there
145 */
146 mdu_array_info_t inf;
147 int fd;
148
149 memset(&inf, 0, sizeof(inf));
150 fd = open(devlist->devname, O_RDONLY);
151 if (fd >= 0 &&
152 ioctl(fd, GET_ARRAY_INFO, &inf) == 0 &&
153 inf.raid_disks == 0) {
154 /* yep, looks like a container */
155 if (st) {
156 rv = st->ss->load_container(st, fd,
157 devlist->devname);
158 if (rv == 0)
159 have_container = 1;
160 } else {
161 st = super_by_fd(fd, NULL);
162 if (st && !(rv = st->ss->
163 load_container(st, fd,
164 devlist->devname)))
165 have_container = 1;
166 else
167 st = NULL;
168 }
169 if (have_container) {
170 subdevs = s->raiddisks;
171 first_missing = subdevs * 2;
172 second_missing = subdevs * 2;
173 insert_point = subdevs * 2;
174 }
175 }
176 if (fd >= 0)
177 close(fd);
178 }
179 if (st && st->ss->external && s->sparedisks) {
180 pr_err("This metadata type does not support "
181 "spare disks at create time\n");
182 return 1;
183 }
184 if (subdevs > s->raiddisks+s->sparedisks) {
185 pr_err("You have listed more devices (%d) than are in the array(%d)!\n", subdevs, s->raiddisks+s->sparedisks);
186 return 1;
187 }
188 if (!have_container && subdevs < s->raiddisks+s->sparedisks) {
189 pr_err("You haven't given enough devices (real or missing) to create this array\n");
190 return 1;
191 }
192 if (s->bitmap_file && s->level <= 0) {
193 pr_err("bitmaps not meaningful with level %s\n",
194 map_num(pers, s->level)?:"given");
195 return 1;
196 }
197
198 /* now set some defaults */
199
200 if (s->layout == UnSet) {
201 do_default_layout = 1;
202 s->layout = default_layout(st, s->level, c->verbose);
203 }
204
205 if (s->level == 10)
206 /* check layout fits in array*/
207 if ((s->layout&255) * ((s->layout>>8)&255) > s->raiddisks) {
208 pr_err("that layout requires at least %d devices\n",
209 (s->layout&255) * ((s->layout>>8)&255));
210 return 1;
211 }
212
213 switch(s->level) {
214 case 4:
215 case 5:
216 case 10:
217 case 6:
218 case 0:
219 if (s->chunk == 0 || s->chunk == UnSet) {
220 s->chunk = UnSet;
221 do_default_chunk = 1;
222 /* chunk will be set later */
223 }
224 break;
225 case LEVEL_LINEAR:
226 /* a chunksize of zero 0s perfectly valid (and preferred) since 2.6.16 */
227 if (get_linux_version() < 2006016 && s->chunk == 0) {
228 s->chunk = 64;
229 if (c->verbose > 0)
230 pr_err("chunk size defaults to 64K\n");
231 }
232 break;
233 case 1:
234 case LEVEL_FAULTY:
235 case LEVEL_MULTIPATH:
236 case LEVEL_CONTAINER:
237 if (s->chunk) {
238 s->chunk = 0;
239 if (c->verbose > 0)
240 pr_err("chunk size ignored for this level\n");
241 }
242 break;
243 default:
244 pr_err("unknown level %d\n", s->level);
245 return 1;
246 }
247 if (s->size == MAX_SIZE)
248 /* use '0' to mean 'max' now... */
249 s->size = 0;
250 if (s->size && s->chunk && s->chunk != UnSet)
251 s->size &= ~(unsigned long long)(s->chunk - 1);
252 newsize = s->size * 2;
253 if (st && ! st->ss->validate_geometry(st, s->level, s->layout, s->raiddisks,
254 &s->chunk, s->size*2,
255 data_offset, NULL,
256 &newsize, c->verbose>=0))
257 return 1;
258
259 if (s->chunk && s->chunk != UnSet) {
260 newsize &= ~(unsigned long long)(s->chunk*2 - 1);
261 if (do_default_chunk) {
262 /* default chunk was just set */
263 if (c->verbose > 0)
264 pr_err("chunk size "
265 "defaults to %dK\n", s->chunk);
266 s->size &= ~(unsigned long long)(s->chunk - 1);
267 do_default_chunk = 0;
268 }
269 }
270
271 if (s->size == 0) {
272 s->size = newsize / 2;
273 if (s->level == 1)
274 /* If this is ever reshaped to RAID5, we will
275 * need a chunksize. So round it off a bit
276 * now just to be safe
277 */
278 s->size &= ~(64ULL-1);
279
280 if (s->size && c->verbose > 0)
281 pr_err("setting size to %lluK\n", s->size);
282 }
283
284 /* now look at the subdevs */
285 info.array.active_disks = 0;
286 info.array.working_disks = 0;
287 dnum = 0;
288 for (dv=devlist; dv && !have_container; dv=dv->next, dnum++) {
289 char *dname = dv->devname;
290 unsigned long long freesize;
291 int dfd;
292 char *doff;
293
294 if (strcasecmp(dname, "missing")==0) {
295 if (first_missing > dnum)
296 first_missing = dnum;
297 if (second_missing > dnum && dnum > first_missing)
298 second_missing = dnum;
299 missing_disks ++;
300 continue;
301 }
302 if (data_offset != VARIABLE_OFFSET) {
303 doff = strchr(dname, ':');
304 if (doff) {
305 *doff++ = 0;
306 dv->data_offset = parse_size(doff);
307 } else
308 dv->data_offset = INVALID_SECTORS;
309 } else
310 dv->data_offset = data_offset;
311
312 dfd = open(dname, O_RDONLY);
313 if (dfd < 0) {
314 pr_err("cannot open %s: %s\n",
315 dname, strerror(errno));
316 exit(2);
317 }
318 if (fstat(dfd, &stb) != 0 ||
319 (stb.st_mode & S_IFMT) != S_IFBLK) {
320 close(dfd);
321 pr_err("%s is not a block device\n",
322 dname);
323 exit(2);
324 }
325 close(dfd);
326 info.array.working_disks++;
327 if (dnum < s->raiddisks)
328 info.array.active_disks++;
329 if (st == NULL) {
330 struct createinfo *ci = conf_get_create_info();
331 if (ci)
332 st = ci->supertype;
333 }
334 if (st == NULL) {
335 /* Need to choose a default metadata, which is different
336 * depending on geometry of array.
337 */
338 int i;
339 char *name = "default";
340 for(i=0; !st && superlist[i]; i++) {
341 st = superlist[i]->match_metadata_desc(name);
342 if (!st)
343 continue;
344 if (do_default_layout)
345 s->layout = default_layout(st, s->level, c->verbose);
346 switch (st->ss->validate_geometry(
347 st, s->level, s->layout, s->raiddisks,
348 &s->chunk, s->size*2,
349 dv->data_offset, dname,
350 &freesize, c->verbose > 0)) {
351 case -1: /* Not valid, message printed, and not
352 * worth checking any further */
353 exit(2);
354 break;
355 case 0: /* Geometry not valid */
356 free(st);
357 st = NULL;
358 s->chunk = do_default_chunk ? UnSet : s->chunk;
359 break;
360 case 1: /* All happy */
361 break;
362 }
363 }
364
365 if (!st) {
366 int dfd = open(dname, O_RDONLY|O_EXCL);
367 if (dfd < 0) {
368 pr_err("cannot open %s: %s\n",
369 dname, strerror(errno));
370 exit(2);
371 }
372 pr_err("device %s not suitable "
373 "for any style of array\n",
374 dname);
375 exit(2);
376 }
377 if (st->ss != &super0 ||
378 st->minor_version != 90)
379 did_default = 1;
380 } else {
381 if (do_default_layout)
382 s->layout = default_layout(st, s->level, 0);
383 if (!st->ss->validate_geometry(st, s->level, s->layout,
384 s->raiddisks,
385 &s->chunk, s->size*2,
386 dv->data_offset,
387 dname, &freesize,
388 c->verbose >= 0)) {
389
390 pr_err("%s is not suitable for "
391 "this array.\n",
392 dname);
393 fail = 1;
394 continue;
395 }
396 }
397
398 freesize /= 2; /* convert to K */
399 if (s->chunk && s->chunk != UnSet) {
400 /* round to chunk size */
401 freesize = freesize & ~(s->chunk-1);
402 if (do_default_chunk) {
403 /* default chunk was just set */
404 if (c->verbose > 0)
405 pr_err("chunk size "
406 "defaults to %dK\n", s->chunk);
407 s->size &= ~(unsigned long long)(s->chunk - 1);
408 do_default_chunk = 0;
409 }
410 }
411 if (!freesize) {
412 pr_err("no free space left on %s\n", dname);
413 fail = 1;
414 continue;
415 }
416
417 if (s->size && freesize < s->size) {
418 pr_err("%s is smaller than given size."
419 " %lluK < %lluK + metadata\n",
420 dname, freesize, s->size);
421 fail = 1;
422 continue;
423 }
424 if (maxdisc == NULL || (maxdisc && freesize > maxsize)) {
425 maxdisc = dname;
426 maxsize = freesize;
427 }
428 if (mindisc ==NULL || (mindisc && freesize < minsize)) {
429 mindisc = dname;
430 minsize = freesize;
431 }
432 if (c->runstop != 1 || c->verbose >= 0) {
433 int fd = open(dname, O_RDONLY);
434 if (fd <0 ) {
435 pr_err("Cannot open %s: %s\n",
436 dname, strerror(errno));
437 fail=1;
438 continue;
439 }
440 warn |= check_ext2(fd, dname);
441 warn |= check_reiser(fd, dname);
442 warn |= check_raid(fd, dname);
443 if (strcmp(st->ss->name, "1.x") == 0 &&
444 st->minor_version >= 1)
445 /* metadata at front */
446 warn |= check_partitions(fd, dname, 0, 0);
447 else if (s->level == 1 || s->level == LEVEL_CONTAINER
448 || (s->level == 0 && s->raiddisks == 1))
449 /* partitions could be meaningful */
450 warn |= check_partitions(fd, dname, freesize*2, s->size*2);
451 else
452 /* partitions cannot be meaningful */
453 warn |= check_partitions(fd, dname, 0, 0);
454 if (strcmp(st->ss->name, "1.x") == 0 &&
455 st->minor_version >= 1 &&
456 did_default &&
457 s->level == 1 &&
458 (warn & 1024) == 0) {
459 warn |= 1024;
460 pr_err("Note: this array has metadata at the start and\n"
461 " may not be suitable as a boot device. If you plan to\n"
462 " store '/boot' on this device please ensure that\n"
463 " your boot-loader understands md/v1.x metadata, or use\n"
464 " --metadata=0.90\n");
465 }
466 close(fd);
467 }
468 }
469 if (s->raiddisks + s->sparedisks > st->max_devs) {
470 pr_err("Too many devices:"
471 " %s metadata only supports %d\n",
472 st->ss->name, st->max_devs);
473 return 1;
474 }
475 if (have_container)
476 info.array.working_disks = s->raiddisks;
477 if (fail) {
478 pr_err("create aborted\n");
479 return 1;
480 }
481 if (s->size == 0) {
482 if (mindisc == NULL && !have_container) {
483 pr_err("no size and no drives given - aborting create.\n");
484 return 1;
485 }
486 if (s->level > 0 || s->level == LEVEL_MULTIPATH
487 || s->level == LEVEL_FAULTY
488 || st->ss->external ) {
489 /* size is meaningful */
490 if (!st->ss->validate_geometry(st, s->level, s->layout,
491 s->raiddisks,
492 &s->chunk, minsize*2,
493 data_offset,
494 NULL, NULL, 0)) {
495 pr_err("devices too large for RAID level %d\n", s->level);
496 return 1;
497 }
498 s->size = minsize;
499 if (s->level == 1)
500 /* If this is ever reshaped to RAID5, we will
501 * need a chunksize. So round it off a bit
502 * now just to be safe
503 */
504 s->size &= ~(64ULL-1);
505 if (c->verbose > 0)
506 pr_err("size set to %lluK\n", s->size);
507 }
508 }
509 if (!have_container && s->level > 0 && ((maxsize-s->size)*100 > maxsize)) {
510 if (c->runstop != 1 || c->verbose >= 0)
511 pr_err("largest drive (%s) exceeds size (%lluK) by more than 1%%\n",
512 maxdisc, s->size);
513 warn = 1;
514 }
515
516 if (st->ss->detail_platform && st->ss->detail_platform(0, 1, NULL) != 0) {
517 if (c->runstop != 1 || c->verbose >= 0)
518 pr_err("%s unable to enumerate platform support\n"
519 " array may not be compatible with hardware/firmware\n",
520 st->ss->name);
521 warn = 1;
522 }
523
524 if (warn) {
525 if (c->runstop!= 1) {
526 if (!ask("Continue creating array? ")) {
527 pr_err("create aborted.\n");
528 return 1;
529 }
530 } else {
531 if (c->verbose > 0)
532 pr_err("creation continuing despite oddities due to --run\n");
533 }
534 }
535
536 /* If this is raid4/5, we want to configure the last active slot
537 * as missing, so that a reconstruct happens (faster than re-parity)
538 * FIX: Can we do this for raid6 as well?
539 */
540 if (st->ss->external == 0 &&
541 s->assume_clean==0 && c->force == 0 && first_missing >= s->raiddisks) {
542 switch ( s->level ) {
543 case 4:
544 case 5:
545 insert_point = s->raiddisks-1;
546 s->sparedisks++;
547 info.array.active_disks--;
548 missing_disks++;
549 break;
550 default:
551 break;
552 }
553 }
554 /* For raid6, if creating with 1 missing drive, make a good drive
555 * into a spare, else the create will fail
556 */
557 if (s->assume_clean == 0 && c->force == 0 && first_missing < s->raiddisks &&
558 st->ss->external == 0 &&
559 second_missing >= s->raiddisks && s->level == 6) {
560 insert_point = s->raiddisks - 1;
561 if (insert_point == first_missing)
562 insert_point--;
563 s->sparedisks ++;
564 info.array.active_disks--;
565 missing_disks++;
566 }
567
568 if (s->level <= 0 && first_missing < subdevs * 2) {
569 pr_err("This level does not support missing devices\n");
570 return 1;
571 }
572
573 /* We need to create the device */
574 map_lock(&map);
575 mdfd = create_mddev(mddev, name, c->autof, LOCAL, chosen_name);
576 if (mdfd < 0) {
577 map_unlock(&map);
578 return 1;
579 }
580 /* verify if chosen_name is not in use,
581 * it could be in conflict with already existing device
582 * e.g. container, array
583 */
584 if (strncmp(chosen_name, "/dev/md/", 8) == 0
585 && map_by_name(&map, chosen_name+8) != NULL) {
586 pr_err("Array name %s is in use already.\n",
587 chosen_name);
588 close(mdfd);
589 map_unlock(&map);
590 return 1;
591 }
592 mddev = chosen_name;
593
594 vers = md_get_version(mdfd);
595 if (vers < 9000) {
596 pr_err("Create requires md driver version 0.90.0 or later\n");
597 goto abort_locked;
598 } else {
599 mdu_array_info_t inf;
600 memset(&inf, 0, sizeof(inf));
601 ioctl(mdfd, GET_ARRAY_INFO, &inf);
602 if (inf.working_disks != 0) {
603 pr_err("another array by this name"
604 " is already running.\n");
605 goto abort_locked;
606 }
607 }
608
609 /* Ok, lets try some ioctls */
610
611 info.array.level = s->level;
612 info.array.size = s->size;
613 info.array.raid_disks = s->raiddisks;
614 /* The kernel should *know* what md_minor we are dealing
615 * with, but it chooses to trust me instead. Sigh
616 */
617 info.array.md_minor = 0;
618 if (fstat(mdfd, &stb)==0)
619 info.array.md_minor = minor(stb.st_rdev);
620 info.array.not_persistent = 0;
621
622 if ( ( (s->level == 4 || s->level == 5) &&
623 (insert_point < s->raiddisks || first_missing < s->raiddisks) )
624 ||
625 ( s->level == 6 && (insert_point < s->raiddisks
626 || second_missing < s->raiddisks))
627 ||
628 ( s->level <= 0 )
629 ||
630 s->assume_clean
631 ) {
632 info.array.state = 1; /* clean, but one+ drive will be missing*/
633 info.resync_start = MaxSector;
634 } else {
635 info.array.state = 0; /* not clean, but no errors */
636 info.resync_start = 0;
637 }
638 if (s->level == 10) {
639 /* for raid10, the bitmap size is the capacity of the array,
640 * which is array.size * raid_disks / ncopies;
641 * .. but convert to sectors.
642 */
643 int ncopies = ((s->layout>>8) & 255) * (s->layout & 255);
644 bitmapsize = s->size * s->raiddisks / ncopies * 2;
645 /* printf("bms=%llu as=%d rd=%d nc=%d\n", bitmapsize, s->size, s->raiddisks, ncopies);*/
646 } else
647 bitmapsize = s->size * 2;
648
649 /* There is lots of redundancy in these disk counts,
650 * raid_disks is the most meaningful value
651 * it describes the geometry of the array
652 * it is constant
653 * nr_disks is total number of used slots.
654 * it should be raid_disks+spare_disks
655 * spare_disks is the number of extra disks present
656 * see above
657 * active_disks is the number of working disks in
658 * active slots. (With raid_disks)
659 * working_disks is the total number of working disks,
660 * including spares
661 * failed_disks is the number of disks marked failed
662 *
663 * Ideally, the kernel would keep these (except raid_disks)
664 * up-to-date as we ADD_NEW_DISK, but it doesn't (yet).
665 * So for now, we assume that all raid and spare
666 * devices will be given.
667 */
668 info.array.spare_disks=s->sparedisks;
669 info.array.failed_disks=missing_disks;
670 info.array.nr_disks = info.array.working_disks
671 + info.array.failed_disks;
672 info.array.layout = s->layout;
673 info.array.chunk_size = s->chunk*1024;
674
675 if (name == NULL || *name == 0) {
676 /* base name on mddev */
677 /* /dev/md0 -> 0
678 * /dev/md_d0 -> d0
679 * /dev/md/1 -> 1
680 * /dev/md/d1 -> d1
681 * /dev/md/home -> home
682 * /dev/mdhome -> home
683 */
684 /* FIXME compare this with rules in create_mddev */
685 name = strrchr(mddev, '/');
686 if (name) {
687 name++;
688 if (strncmp(name, "md_d", 4)==0 &&
689 strlen(name) > 4 &&
690 isdigit(name[4]) &&
691 (name-mddev) == 5 /* /dev/ */)
692 name += 3;
693 else if (strncmp(name, "md", 2)==0 &&
694 strlen(name) > 2 &&
695 isdigit(name[2]) &&
696 (name-mddev) == 5 /* /dev/ */)
697 name += 2;
698 }
699 }
700 if (!st->ss->init_super(st, &info.array, s->size, name, c->homehost, uuid,
701 data_offset))
702 goto abort_locked;
703
704 total_slots = info.array.nr_disks;
705 st->ss->getinfo_super(st, &info, NULL);
706 sysfs_init(&info, mdfd, NULL);
707
708 if (did_default && c->verbose >= 0) {
709 if (is_subarray(info.text_version)) {
710 char devnm[32];
711 char *ep;
712 struct mdinfo *mdi;
713
714 strncpy(devnm, info.text_version+1, 32);
715 devnm[31] = 0;
716 ep = strchr(devnm, '/');
717 if (ep)
718 *ep = 0;
719
720 mdi = sysfs_read(-1, devnm, GET_VERSION);
721
722 pr_err("Creating array inside %s container %s\n",
723 mdi?mdi->text_version:"managed", devnm);
724 sysfs_free(mdi);
725 } else
726 pr_err("Defaulting to version"
727 " %s metadata\n", info.text_version);
728 }
729
730 map_update(&map, fd2devnm(mdfd), info.text_version,
731 info.uuid, chosen_name);
732 map_unlock(&map);
733
734 if (s->bitmap_file && vers < 9003) {
735 major_num = BITMAP_MAJOR_HOSTENDIAN;
736 #ifdef __BIG_ENDIAN
737 pr_err("Warning - bitmaps created on this kernel are not portable\n"
738 " between different architectured. Consider upgrading the Linux kernel.\n");
739 #endif
740 }
741
742 if (s->bitmap_file && strcmp(s->bitmap_file, "internal")==0) {
743 if ((vers%100) < 2) {
744 pr_err("internal bitmaps not supported by this kernel.\n");
745 goto abort;
746 }
747 if (!st->ss->add_internal_bitmap) {
748 pr_err("internal bitmaps not supported with %s metadata\n",
749 st->ss->name);
750 goto abort;
751 }
752 if (!st->ss->add_internal_bitmap(st, &s->bitmap_chunk,
753 c->delay, s->write_behind,
754 bitmapsize, 1, major_num)) {
755 pr_err("Given bitmap chunk size not supported.\n");
756 goto abort;
757 }
758 s->bitmap_file = NULL;
759 }
760
761 sysfs_init(&info, mdfd, NULL);
762
763 if (st->ss->external && st->container_devnm[0]) {
764 /* member */
765
766 /* When creating a member, we need to be careful
767 * to negotiate with mdmon properly.
768 * If it is already running, we cannot write to
769 * the devices and must ask it to do that part.
770 * If it isn't running, we write to the devices,
771 * and then start it.
772 * We hold an exclusive open on the container
773 * device to make sure mdmon doesn't exit after
774 * we checked that it is running.
775 *
776 * For now, fail if it is already running.
777 */
778 container_fd = open_dev_excl(st->container_devnm);
779 if (container_fd < 0) {
780 pr_err("Cannot get exclusive "
781 "open on container - weird.\n");
782 goto abort;
783 }
784 if (mdmon_running(st->container_devnm)) {
785 if (c->verbose)
786 pr_err("reusing mdmon "
787 "for %s.\n",
788 st->container_devnm);
789 st->update_tail = &st->updates;
790 } else
791 need_mdmon = 1;
792 }
793 rv = set_array_info(mdfd, st, &info);
794 if (rv) {
795 pr_err("failed to set array info for %s: %s\n",
796 mddev, strerror(errno));
797 goto abort;
798 }
799
800 if (s->bitmap_file) {
801 int uuid[4];
802
803 st->ss->uuid_from_super(st, uuid);
804 if (CreateBitmap(s->bitmap_file, c->force, (char*)uuid, s->bitmap_chunk,
805 c->delay, s->write_behind,
806 bitmapsize,
807 major_num)) {
808 goto abort;
809 }
810 bitmap_fd = open(s->bitmap_file, O_RDWR);
811 if (bitmap_fd < 0) {
812 pr_err("weird: %s cannot be openned\n",
813 s->bitmap_file);
814 goto abort;
815 }
816 if (ioctl(mdfd, SET_BITMAP_FILE, bitmap_fd) < 0) {
817 pr_err("Cannot set bitmap file for %s: %s\n",
818 mddev, strerror(errno));
819 goto abort;
820 }
821 }
822
823 infos = xmalloc(sizeof(*infos) * total_slots);
824
825 for (pass=1; pass <=2 ; pass++) {
826 struct mddev_dev *moved_disk = NULL; /* the disk that was moved out of the insert point */
827
828 for (dnum=0, dv = devlist ; dv ;
829 dv=(dv->next)?(dv->next):moved_disk, dnum++) {
830 int fd;
831 struct stat stb;
832 struct mdinfo *inf = &infos[dnum];
833
834 if (dnum >= total_slots)
835 abort();
836 if (dnum == insert_point) {
837 moved_disk = dv;
838 continue;
839 }
840 if (strcasecmp(dv->devname, "missing")==0)
841 continue;
842 if (have_container)
843 moved_disk = NULL;
844 if (have_container && dnum < info.array.raid_disks - 1)
845 /* repeatedly use the container */
846 moved_disk = dv;
847
848 switch(pass) {
849 case 1:
850 *inf = info;
851
852 inf->disk.number = dnum;
853 inf->disk.raid_disk = dnum;
854 if (inf->disk.raid_disk < s->raiddisks)
855 inf->disk.state = (1<<MD_DISK_ACTIVE) |
856 (1<<MD_DISK_SYNC);
857 else
858 inf->disk.state = 0;
859
860 if (dv->writemostly == 1)
861 inf->disk.state |= (1<<MD_DISK_WRITEMOSTLY);
862
863 if (have_container)
864 fd = -1;
865 else {
866 if (st->ss->external &&
867 st->container_devnm[0])
868 fd = open(dv->devname, O_RDWR);
869 else
870 fd = open(dv->devname, O_RDWR|O_EXCL);
871
872 if (fd < 0) {
873 pr_err("failed to open %s "
874 "after earlier success - aborting\n",
875 dv->devname);
876 goto abort;
877 }
878 fstat(fd, &stb);
879 inf->disk.major = major(stb.st_rdev);
880 inf->disk.minor = minor(stb.st_rdev);
881 }
882 if (fd >= 0)
883 remove_partitions(fd);
884 if (st->ss->add_to_super(st, &inf->disk,
885 fd, dv->devname,
886 dv->data_offset)) {
887 ioctl(mdfd, STOP_ARRAY, NULL);
888 goto abort;
889 }
890 st->ss->getinfo_super(st, inf, NULL);
891 safe_mode_delay = inf->safe_mode_delay;
892
893 if (have_container && c->verbose > 0)
894 pr_err("Using %s for device %d\n",
895 map_dev(inf->disk.major,
896 inf->disk.minor,
897 0), dnum);
898
899 if (!have_container) {
900 /* getinfo_super might have lost these ... */
901 inf->disk.major = major(stb.st_rdev);
902 inf->disk.minor = minor(stb.st_rdev);
903 }
904 break;
905 case 2:
906 inf->errors = 0;
907
908 rv = add_disk(mdfd, st, &info, inf);
909
910 if (rv) {
911 pr_err("ADD_NEW_DISK for %s "
912 "failed: %s\n",
913 dv->devname, strerror(errno));
914 goto abort;
915 }
916 break;
917 }
918 if (!have_container &&
919 dv == moved_disk && dnum != insert_point) break;
920 }
921 if (pass == 1) {
922 struct mdinfo info_new;
923 struct map_ent *me = NULL;
924
925 /* check to see if the uuid has changed due to these
926 * metadata changes, and if so update the member array
927 * and container uuid. Note ->write_init_super clears
928 * the subarray cursor such that ->getinfo_super once
929 * again returns container info.
930 */
931 map_lock(&map);
932 st->ss->getinfo_super(st, &info_new, NULL);
933 if (st->ss->external && s->level != LEVEL_CONTAINER &&
934 !same_uuid(info_new.uuid, info.uuid, 0)) {
935 map_update(&map, fd2devnm(mdfd),
936 info_new.text_version,
937 info_new.uuid, chosen_name);
938 me = map_by_devnm(&map, st->container_devnm);
939 }
940
941 if (st->ss->write_init_super(st)) {
942 st->ss->free_super(st);
943 goto abort_locked;
944 }
945
946 /* update parent container uuid */
947 if (me) {
948 char *path = xstrdup(me->path);
949
950 st->ss->getinfo_super(st, &info_new, NULL);
951 map_update(&map, st->container_devnm,
952 info_new.text_version,
953 info_new.uuid, path);
954 free(path);
955 }
956 map_unlock(&map);
957
958 flush_metadata_updates(st);
959 st->ss->free_super(st);
960 }
961 }
962 free(infos);
963
964 if (s->level == LEVEL_CONTAINER) {
965 /* No need to start. But we should signal udev to
966 * create links */
967 sysfs_uevent(&info, "change");
968 if (c->verbose >= 0)
969 pr_err("container %s prepared.\n", mddev);
970 wait_for(chosen_name, mdfd);
971 } else if (c->runstop == 1 || subdevs >= s->raiddisks) {
972 if (st->ss->external) {
973 int err;
974 switch(s->level) {
975 case LEVEL_LINEAR:
976 case LEVEL_MULTIPATH:
977 case 0:
978 err = sysfs_set_str(&info, NULL, "array_state",
979 c->readonly
980 ? "readonly"
981 : "active");
982 need_mdmon = 0;
983 break;
984 default:
985 err = sysfs_set_str(&info, NULL, "array_state",
986 "readonly");
987 break;
988 }
989 sysfs_set_safemode(&info, safe_mode_delay);
990 if (err) {
991 pr_err("failed to"
992 " activate array.\n");
993 ioctl(mdfd, STOP_ARRAY, NULL);
994 goto abort;
995 }
996 } else if (c->readonly &&
997 sysfs_attribute_available(
998 &info, NULL, "array_state")) {
999 if (sysfs_set_str(&info, NULL,
1000 "array_state", "readonly") < 0) {
1001 pr_err("Failed to start array: %s\n",
1002 strerror(errno));
1003 ioctl(mdfd, STOP_ARRAY, NULL);
1004 goto abort;
1005 }
1006 } else {
1007 /* param is not actually used */
1008 mdu_param_t param;
1009 if (ioctl(mdfd, RUN_ARRAY, &param)) {
1010 pr_err("RUN_ARRAY failed: %s\n",
1011 strerror(errno));
1012 if (info.array.chunk_size & (info.array.chunk_size-1)) {
1013 cont_err("Problem may be that "
1014 "chunk size is not a power of 2\n");
1015 }
1016 ioctl(mdfd, STOP_ARRAY, NULL);
1017 goto abort;
1018 }
1019 }
1020 if (c->verbose >= 0)
1021 pr_err("array %s started.\n", mddev);
1022 if (st->ss->external && st->container_devnm[0]) {
1023 if (need_mdmon)
1024 start_mdmon(st->container_devnm);
1025
1026 ping_monitor(st->container_devnm);
1027 close(container_fd);
1028 }
1029 wait_for(chosen_name, mdfd);
1030 } else {
1031 pr_err("not starting array - not enough devices.\n");
1032 }
1033 close(mdfd);
1034 return 0;
1035
1036 abort:
1037 map_lock(&map);
1038 abort_locked:
1039 map_remove(&map, fd2devnm(mdfd));
1040 map_unlock(&map);
1041
1042 if (mdfd >= 0)
1043 close(mdfd);
1044 return 1;
1045 }