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