]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Create.c
Improve option parsing
[thirdparty/mdadm.git] / Create.c
CommitLineData
64c4757e 1/*
9a9dab36 2 * mdadm - manage Linux "md" devices aka RAID arrays.
64c4757e 3 *
cd29a5c8 4 * Copyright (C) 2001-2002 Neil Brown <neilb@cse.unsw.edu.au>
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
22 * Email: <neilb@cse.unsw.edu.au>
23 * Paper: Neil Brown
24 * School of Computer Science and Engineering
25 * The University of New South Wales
26 * Sydney, 2052
27 * Australia
28 */
29
9a9dab36 30#include "mdadm.h"
682c7051
NB
31#include "md_u.h"
32#include "md_p.h"
64c4757e 33
82d9eba6 34int Create(struct supertype *st, char *mddev, int mdfd,
aa88f531 35 int chunk, int level, int layout, unsigned long size, int raiddisks, int sparedisks,
947fd4dd 36 char *name,
cd29a5c8 37 int subdevs, mddev_dev_t devlist,
c82f047c 38 int runstop, int verbose, int force,
dfd4d8ee 39 char *bitmap_file, int bitmap_chunk, int write_behind, int delay)
64c4757e 40{
682c7051
NB
41 /*
42 * Create a new raid array.
43 *
44 * First check that necessary details are available
45 * (i.e. level, raid-disks)
46 *
47 * Then check each disk to see what might be on it
48 * and report anything interesting.
49 *
50 * If anything looks odd, and runstop not set,
51 * abort.
52 *
53 * SET_ARRAY_INFO and ADD_NEW_DISK, and
82d9eba6 54 * if runstop==run, or raiddisks disks were used,
682c7051
NB
55 * RUN_ARRAY
56 */
b5e64645 57 unsigned long long minsize=0, maxsize=0;
cd29a5c8
NB
58 char *mindisc = NULL;
59 char *maxdisc = NULL;
c913b90e 60 int dnum;
cd29a5c8 61 mddev_dev_t dv;
682c7051 62 int fail=0, warn=0;
82b27616 63 struct stat stb;
82d9eba6 64 int first_missing = subdevs * 2;
52826846 65 int missing_disks = 0;
82d9eba6 66 int insert_point = subdevs * 2; /* where to insert a missing drive */
4b1ac34b
NB
67 void *super;
68 int pass;
82d9eba6
NB
69 int vers;
70 int rv;
c82f047c 71 int bitmap_fd;
f9c25f1d 72 unsigned long long bitmapsize;
682c7051
NB
73
74 mdu_array_info_t array;
dcec9ee5
NB
75 int major = BITMAP_MAJOR_HI;
76
82d9eba6
NB
77 vers = md_get_version(mdfd);
78 if (vers < 9000) {
dd0781e5 79 fprintf(stderr, Name ": Create requires md driver version 0.90.0 or later\n");
52826846 80 return 1;
682c7051 81 }
98c6faba 82 if (level == UnSet) {
682c7051
NB
83 fprintf(stderr,
84 Name ": a RAID level is needed to create an array.\n");
85 return 1;
86 }
87 if (raiddisks < 1) {
88 fprintf(stderr,
b83d95f3 89 Name ": a number of --raid-devices must be given to create an array\n");
682c7051
NB
90 return 1;
91 }
98c6faba
NB
92 if (raiddisks < 4 && level == 6) {
93 fprintf(stderr,
94 Name ": at least 4 raid-devices needed for level 6\n");
95 return 1;
96 }
97 if (raiddisks > 256 && level == 6) {
98 fprintf(stderr,
99 Name ": no more than 256 raid-devices supported for level 6\n");
100 return 1;
101 }
52826846
NB
102 if (raiddisks < 2 && level >= 4) {
103 fprintf(stderr,
98c6faba 104 Name ": at least 2 raid-devices needed for level 4 or 5\n");
52826846
NB
105 return 1;
106 }
682c7051 107 if (subdevs > raiddisks+sparedisks) {
b83d95f3 108 fprintf(stderr, Name ": You have listed more devices (%d) than are in the array(%d)!\n", subdevs, raiddisks+sparedisks);
52826846 109 return 1;
682c7051 110 }
cd29a5c8 111 if (subdevs < raiddisks+sparedisks) {
52826846
NB
112 fprintf(stderr, Name ": You haven't given enough devices (real or missing) to create this array\n");
113 return 1;
114 }
115
682c7051 116 /* now set some defaults */
98c6faba 117 if (layout == UnSet)
682c7051
NB
118 switch(level) {
119 default: /* no layout */
120 layout = 0;
121 break;
e5329c37
NB
122 case 10:
123 layout = 0x102; /* near=2, far=1 */
dab6685f 124 if (verbose > 0)
e5329c37
NB
125 fprintf(stderr,
126 Name ": layout defaults to n1\n");
127 break;
682c7051 128 case 5:
98c6faba 129 case 6:
682c7051 130 layout = map_name(r5layout, "default");
dab6685f 131 if (verbose > 0)
682c7051
NB
132 fprintf(stderr,
133 Name ": layout defaults to %s\n", map_num(r5layout, layout));
134 break;
b5e64645
NB
135 case LEVEL_FAULTY:
136 layout = map_name(faultylayout, "default");
137
dab6685f 138 if (verbose > 0)
b5e64645
NB
139 fprintf(stderr,
140 Name ": layout defaults to %s\n", map_num(faultylayout, layout));
141 break;
682c7051
NB
142 }
143
e5329c37
NB
144 if (level == 10)
145 /* check layout fits in array*/
146 if ((layout&255) * ((layout>>8)&255) > raiddisks) {
147 fprintf(stderr, Name ": that layout requires at least %d devices\n",
148 (layout&255) * ((layout>>8)&255));
149 return 1;
150 }
151
aa88f531
NB
152 switch(level) {
153 case 4:
154 case 5:
e5329c37 155 case 10:
98c6faba 156 case 6:
aa88f531
NB
157 case 0:
158 case -1: /* linear */
159 if (chunk == 0) {
160 chunk = 64;
dab6685f 161 if (verbose > 0)
aa88f531
NB
162 fprintf(stderr, Name ": chunk size defaults to 64K\n");
163 }
164 break;
165 default: /* raid1, multipath */
166 if (chunk) {
167 chunk = 0;
dab6685f 168 if (verbose > 0)
aa88f531
NB
169 fprintf(stderr, Name ": chunk size ignored for this level\n");
170 }
171 break;
682c7051
NB
172 }
173
174 /* now look at the subdevs */
52826846
NB
175 array.active_disks = 0;
176 array.working_disks = 0;
c913b90e
NB
177 dnum = 0;
178 for (dv=devlist; dv; dv=dv->next, dnum++) {
cd29a5c8 179 char *dname = dv->devname;
b5e64645
NB
180 unsigned long dsize;
181 unsigned long long ldsize, freesize;
52826846 182 int fd;
cd29a5c8 183 if (strcasecmp(dname, "missing")==0) {
c913b90e
NB
184 if (first_missing > dnum)
185 first_missing = dnum;
52826846
NB
186 missing_disks ++;
187 continue;
188 }
189 array.working_disks++;
c913b90e 190 if (dnum < raiddisks)
52826846 191 array.active_disks++;
d7eaf49f 192 fd = open(dname, O_RDONLY|O_EXCL, 0);
682c7051
NB
193 if (fd <0 ) {
194 fprintf(stderr, Name ": Cannot open %s: %s\n",
195 dname, strerror(errno));
196 fail=1;
197 continue;
198 }
b5e64645
NB
199#ifdef BLKGETSIZE64
200 if (ioctl(fd, BLKGETSIZE64, &ldsize)==0)
201 ;
202 else
203#endif
682c7051
NB
204 if (ioctl(fd, BLKGETSIZE, &dsize)) {
205 fprintf(stderr, Name ": Cannot get size of %s: %s\n",
206 dname, strerror(errno));
207 fail = 1;
208 close(fd);
209 continue;
210 }
b5e64645
NB
211 else {
212 ldsize = dsize;
570c0542 213 ldsize <<= 9;
b5e64645 214 }
1bf4e2d9 215 freesize = st->ss->avail_size(st, ldsize >> 9);
82d9eba6 216 if (freesize == 0) {
aa88f531 217 fprintf(stderr, Name ": %s is too small: %luK\n",
b5e64645 218 dname, (unsigned long)(ldsize>>10));
52826846
NB
219 fail = 1;
220 close(fd);
221 continue;
682c7051 222 }
82d9eba6
NB
223
224 freesize /= 2; /* convert to K */
682c7051
NB
225
226 if (size && freesize < size) {
52826846 227 fprintf(stderr, Name ": %s is smaller that given size."
b5e64645 228 " %lluK < %luK + superblock\n", dname, freesize, size);
52826846
NB
229 fail = 1;
230 close(fd);
231 continue;
682c7051 232 }
cd29a5c8
NB
233 if (maxdisc == NULL || (maxdisc && freesize > maxsize)) {
234 maxdisc = dname;
52826846 235 maxsize = freesize;
682c7051 236 }
cd29a5c8
NB
237 if (mindisc ==NULL || (mindisc && freesize < minsize)) {
238 mindisc = dname;
52826846 239 minsize = freesize;
682c7051 240 }
dab6685f
NB
241 if (runstop != 1 || verbose >= 0) {
242 warn |= check_ext2(fd, dname);
243 warn |= check_reiser(fd, dname);
244 warn |= check_raid(fd, dname);
245 }
682c7051
NB
246 close(fd);
247 }
248 if (fail) {
52826846
NB
249 fprintf(stderr, Name ": create aborted\n");
250 return 1;
682c7051
NB
251 }
252 if (size == 0) {
cd29a5c8 253 if (mindisc == NULL) {
52826846
NB
254 fprintf(stderr, Name ": no size and no drives given - aborting create.\n");
255 return 1;
256 }
c13c45e9 257 if (level > 0 || level == LEVEL_MULTIPATH || level == LEVEL_FAULTY) {
b5e64645
NB
258 /* size is meaningful */
259 if (minsize > 0x100000000ULL) {
260 fprintf(stderr, Name ": devices too large for RAID level %d\n", level);
261 return 1;
262 }
263 size = minsize;
dab6685f 264 if (verbose > 0)
b5e64645
NB
265 fprintf(stderr, Name ": size set to %luK\n", size);
266 }
682c7051 267 }
b5e64645 268 if (level > 0 && ((maxsize-size)*100 > maxsize)) {
dab6685f
NB
269 if (runstop != 1 || verbose >= 0)
270 fprintf(stderr, Name ": largest drive (%s) exceed size (%luK) by more than 1%%\n",
271 maxdisc, size);
52826846 272 warn = 1;
682c7051
NB
273 }
274
275 if (warn) {
52826846
NB
276 if (runstop!= 1) {
277 if (!ask("Continue creating array? ")) {
278 fprintf(stderr, Name ": create aborted.\n");
279 return 1;
280 }
281 } else {
dab6685f 282 if (verbose > 0)
52826846 283 fprintf(stderr, Name ": creation continuing despite oddities due to --run\n");
682c7051 284 }
682c7051
NB
285 }
286
52826846
NB
287 /* If this is raid5, we want to configure the last active slot
288 * as missing, so that a reconstruct happens (faster than re-parity)
98c6faba 289 * FIX: Can we do this for raid6 as well?
52826846 290 */
98c6faba
NB
291 if (force == 0 && first_missing >= raiddisks) {
292 switch ( level ) {
293 case 5:
294 insert_point = raiddisks-1;
295 sparedisks++;
296 array.active_disks--;
297 missing_disks++;
298 break;
299 default:
300 break;
301 }
52826846
NB
302 }
303
682c7051
NB
304 /* Ok, lets try some ioctls */
305
306 array.level = level;
307 array.size = size;
682c7051 308 array.raid_disks = raiddisks;
82b27616
NB
309 /* The kernel should *know* what md_minor we are dealing
310 * with, but it chooses to trust me instead. Sigh
311 */
682c7051 312 array.md_minor = 0;
82b27616 313 if (fstat(mdfd, &stb)==0)
0df46c2a 314 array.md_minor = minor(stb.st_rdev);
682c7051 315 array.not_persistent = 0;
98c6faba 316 /*** FIX: Need to do something about RAID-6 here ***/
b5e64645
NB
317 if ( ( (level == 5) &&
318 (insert_point < raiddisks || first_missing < raiddisks) )
319 ||
320 ( level == 6 && missing_disks == 2)
321 )
98c6faba 322 array.state = 1; /* clean, but one+ drive will be missing */
82b27616 323 else
52826846 324 array.state = 0; /* not clean, but no errors */
82b27616 325
f9c25f1d
NB
326 if (level == 10) {
327 /* for raid10, the bitmap size is the capacity of the array,
328 * which is array.size * raid_disks / ncopies;
329 * .. but convert to sectors.
330 */
331 int ncopies = (layout>>8) * (layout & 255);
332 bitmapsize = (unsigned long long)array.size * raiddisks / ncopies * 2;
333 printf("bms=%llu as=%d rd=%d nc=%d\n", bitmapsize, array.size, raiddisks, ncopies);
334 } else
335 bitmapsize = (unsigned long long)array.size * 2;
336
82b27616
NB
337 /* There is lots of redundancy in these disk counts,
338 * raid_disks is the most meaningful value
339 * it describes the geometry of the array
340 * it is constant
341 * nr_disks is total number of used slots.
342 * it should be raid_disks+spare_disks
343 * spare_disks is the number of extra disks present
344 * see above
345 * active_disks is the number of working disks in
346 * active slots. (With raid_disks)
347 * working_disks is the total number of working disks,
348 * including spares
349 * failed_disks is the number of disks marked failed
350 *
351 * Ideally, the kernel would keep these (except raid_disks)
352 * up-to-date as we ADD_NEW_DISK, but it doesn't (yet).
353 * So for now, we assume that all raid and spare
354 * devices will be given.
355 */
52826846
NB
356 array.spare_disks=sparedisks;
357 array.failed_disks=missing_disks;
358 array.nr_disks = array.working_disks + array.failed_disks;
682c7051
NB
359 array.layout = layout;
360 array.chunk_size = chunk*1024;
55935d51 361
82d9eba6 362
947fd4dd 363 if (!st->ss->init_super(st, &super, &array, name))
82d9eba6 364 return 1;
682c7051 365
dcec9ee5
NB
366 if (bitmap_file && vers < 9003) {
367 major = BITMAP_MAJOR_HOSTENDIAN;
368#ifdef __BIG_ENDIAN
369 fprintf(stderr, Name ": Warning - bitmaps created on this kernel are not portable\n"
370 " between different architectured. Consider upgrading the Linux kernel.\n");
371#endif
372 }
373
55935d51
NB
374 if (bitmap_file && strcmp(bitmap_file, "internal")==0) {
375 if ((vers%100) < 2) {
376 fprintf(stderr, Name ": internal bitmaps not supported by this kernel.\n");
377 return 1;
378 }
34163fc7 379 if (!st->ss->add_internal_bitmap(st, super, bitmap_chunk, delay, write_behind,
f9c25f1d 380 bitmapsize, 1, major)) {
55935d51
NB
381 fprintf(stderr, Name ": Given bitmap chunk size not supported.\n");
382 return 1;
383 }
384 bitmap_file = NULL;
385 }
386
387
388
82d9eba6
NB
389 if ((vers % 100) >= 1) { /* can use different versions */
390 mdu_array_info_t inf;
391 memset(&inf, 0, sizeof(inf));
392 inf.major_version = st->ss->major;
393 inf.minor_version = st->minor_version;
394 rv = ioctl(mdfd, SET_ARRAY_INFO, &inf);
395 } else
396 rv = ioctl(mdfd, SET_ARRAY_INFO, NULL);
397 if (rv) {
52826846
NB
398 fprintf(stderr, Name ": SET_ARRAY_INFO failed for %s: %s\n",
399 mddev, strerror(errno));
400 return 1;
682c7051 401 }
52826846 402
c82f047c
NB
403 if (bitmap_file) {
404 int uuid[4];
55935d51
NB
405
406 if (bitmap_chunk == UnSet)
407 bitmap_chunk = DEFAULT_BITMAP_CHUNK;
408
c82f047c 409 st->ss->uuid_from_super(uuid, super);
dfd4d8ee 410 if (CreateBitmap(bitmap_file, force, (char*)uuid, bitmap_chunk,
dcec9ee5 411 delay, write_behind,
f9c25f1d 412 bitmapsize,
dcec9ee5 413 major)) {
c82f047c
NB
414 return 1;
415 }
416 bitmap_fd = open(bitmap_file, O_RDWR);
417 if (bitmap_fd < 0) {
418 fprintf(stderr, Name ": weird: %s cannot be openned\n",
dcec9ee5 419 bitmap_file);
c82f047c
NB
420 return 1;
421 }
422 if (ioctl(mdfd, SET_BITMAP_FILE, bitmap_fd) < 0) {
423 fprintf(stderr, Name ": Cannot set bitmap file for %s: %s\n",
424 mddev, strerror(errno));
425 return 1;
426 }
427 }
428
4b1ac34b
NB
429
430
431 for (pass=1; pass <=2 ; pass++) {
432 mddev_dev_t moved_disk = NULL; /* the disk that was moved out of the insert point */
433
434 for (dnum=0, dv = devlist ; dv ;
435 dv=(dv->next)?(dv->next):moved_disk, dnum++) {
436 int fd;
437 struct stat stb;
438 mdu_disk_info_t disk;
439
440 disk.number = dnum;
441 if (dnum == insert_point) {
442 moved_disk = dv;
52826846 443 }
4b1ac34b
NB
444 disk.raid_disk = disk.number;
445 if (disk.raid_disk < raiddisks)
dfd4d8ee
NB
446 disk.state = (1<<MD_DISK_ACTIVE) |
447 (1<<MD_DISK_SYNC);
4b1ac34b
NB
448 else
449 disk.state = 0;
dfd4d8ee
NB
450 if (dv->writemostly)
451 disk.state |= (1<<MD_DISK_WRITEMOSTLY);
452
4b1ac34b
NB
453 if (dnum == insert_point ||
454 strcasecmp(dv->devname, "missing")==0) {
455 disk.major = 0;
456 disk.minor = 0;
dfd4d8ee 457 disk.state = (1<<MD_DISK_FAULTY);
4b1ac34b
NB
458 } else {
459 fd = open(dv->devname, O_RDONLY|O_EXCL, 0);
460 if (fd < 0) {
461 fprintf(stderr, Name ": failed to open %s after earlier success - aborting\n",
462 dv->devname);
463 return 1;
464 }
465 fstat(fd, &stb);
466 disk.major = major(stb.st_rdev);
467 disk.minor = minor(stb.st_rdev);
468 close(fd);
469 }
470 switch(pass){
471 case 1:
82d9eba6 472 st->ss->add_to_super(super, &disk);
4b1ac34b
NB
473 break;
474 case 2:
eaac7dde 475 if (disk.state == 1) break;
1bf4e2d9 476 st->ss->write_init_super(st, super, &disk, dv->devname);
4b1ac34b
NB
477
478 if (ioctl(mdfd, ADD_NEW_DISK, &disk)) {
479 fprintf(stderr, Name ": ADD_NEW_DISK for %s failed: %s\n",
480 dv->devname, strerror(errno));
481 free(super);
482 return 1;
483 }
484
485 break;
486 }
487 if (dv == moved_disk && dnum != insert_point) break;
52826846 488 }
5e52ae9e 489 }
4b1ac34b 490 free(super);
5e52ae9e 491
682c7051
NB
492 /* param is not actually used */
493 if (runstop == 1 || subdevs >= raiddisks) {
82b27616 494 mdu_param_t param;
682c7051
NB
495 if (ioctl(mdfd, RUN_ARRAY, &param)) {
496 fprintf(stderr, Name ": RUN_ARRAY failed: %s\n",
497 strerror(errno));
91f068bf 498 Manage_runstop(mddev, mdfd, -1, 0);
682c7051
NB
499 return 1;
500 }
dab6685f
NB
501 if (verbose >= 0)
502 fprintf(stderr, Name ": array %s started.\n", mddev);
682c7051 503 } else {
b83d95f3 504 fprintf(stderr, Name ": not starting array - not enough devices.\n");
682c7051
NB
505 }
506 return 0;
64c4757e 507}