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