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