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