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