]> git.ipfire.org Git - thirdparty/mdadm.git/blame - util.c
Use one function chosing spares from container
[thirdparty/mdadm.git] / util.c
CommitLineData
64c4757e 1/*
9a9dab36 2 * mdadm - manage Linux "md" devices aka RAID arrays.
64c4757e 3 *
e736b623 4 * Copyright (C) 2001-2009 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
9a9dab36 25#include "mdadm.h"
64c4757e 26#include "md_p.h"
edd8d13c 27#include <sys/socket.h>
64c4757e 28#include <sys/utsname.h>
9fe32043 29#include <sys/wait.h>
edd8d13c 30#include <sys/un.h>
98c6faba 31#include <ctype.h>
a322f70c 32#include <dirent.h>
a931db9e 33#include <signal.h>
0a816ef9
NB
34
35/*
36 * following taken from linux/blkpg.h because they aren't
37 * anywhere else and it isn't safe to #include linux/ * stuff.
38 */
39
40#define BLKPG _IO(0x12,105)
41
42/* The argument structure */
43struct blkpg_ioctl_arg {
44 int op;
45 int flags;
46 int datalen;
47 void *data;
48};
49
50/* The subfunctions (for the op field) */
51#define BLKPG_ADD_PARTITION 1
52#define BLKPG_DEL_PARTITION 2
53
54/* Sizes of name fields. Unused at present. */
55#define BLKPG_DEVNAMELTH 64
56#define BLKPG_VOLNAMELTH 64
57
58/* The data structure for ADD_PARTITION and DEL_PARTITION */
59struct blkpg_partition {
60 long long start; /* starting offset in bytes */
61 long long length; /* length in bytes */
62 int pno; /* partition number */
63 char devname[BLKPG_DEVNAMELTH]; /* partition name, like sda5 or c0d1p2,
64 to be used in kernel messages */
65 char volname[BLKPG_VOLNAMELTH]; /* volume label */
66};
64c4757e 67
0f22b998 68#include "part.h"
056b331e
N
69
70/* Force a compilation error if condition is true */
71#define BUILD_BUG_ON(condition) ((void)BUILD_BUG_ON_ZERO(condition))
72
73/* Force a compilation error if condition is true, but also produce a
74 result (of value 0 and type size_t), so the expression can be used
75 e.g. in a structure initializer (or where-ever else comma expressions
76 aren't permitted). */
77#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))
78
64c4757e
NB
79/*
80 * Parse a 128 bit uuid in 4 integers
81 * format is 32 hexx nibbles with options :.<space> separator
82 * If not exactly 32 hex digits are found, return 0
83 * else return 1
84 */
85int parse_uuid(char *str, int uuid[4])
86{
aba69144
NB
87 int hit = 0; /* number of Hex digIT */
88 int i;
89 char c;
90 for (i=0; i<4; i++) uuid[i]=0;
91
92 while ((c= *str++)) {
93 int n;
94 if (c>='0' && c<='9')
95 n = c-'0';
96 else if (c>='a' && c <= 'f')
97 n = 10 + c - 'a';
98 else if (c>='A' && c <= 'F')
99 n = 10 + c - 'A';
100 else if (strchr(":. -", c))
101 continue;
102 else return 0;
103
104 if (hit<32) {
105 uuid[hit/8] <<= 4;
106 uuid[hit/8] += n;
107 }
108 hit++;
82b27616 109 }
aba69144
NB
110 if (hit == 32)
111 return 1;
112 return 0;
64c4757e
NB
113}
114
115
116/*
117 * Get the md version number.
118 * We use the RAID_VERSION ioctl if it is supported
119 * If not, but we have a block device with major '9', we assume
120 * 0.36.0
121 *
122 * Return version number as 24 but number - assume version parts
123 * always < 255
124 */
125
126int md_get_version(int fd)
127{
128 struct stat stb;
129 mdu_version_t vers;
130
131 if (fstat(fd, &stb)<0)
132 return -1;
133 if ((S_IFMT&stb.st_mode) != S_IFBLK)
134 return -1;
135
136 if (ioctl(fd, RAID_VERSION, &vers) == 0)
682c7051 137 return (vers.major*10000) + (vers.minor*100) + vers.patchlevel;
5787fa49
NB
138 if (errno == EACCES)
139 return -1;
0df46c2a 140 if (major(stb.st_rdev) == MD_MAJOR)
682c7051 141 return (3600);
64c4757e
NB
142 return -1;
143}
144
64c4757e
NB
145int get_linux_version()
146{
147 struct utsname name;
98c6faba 148 char *cp;
64c4757e
NB
149 int a,b,c;
150 if (uname(&name) <0)
151 return -1;
152
98c6faba
NB
153 cp = name.release;
154 a = strtoul(cp, &cp, 10);
155 if (*cp != '.') return -1;
156 b = strtoul(cp+1, &cp, 10);
157 if (*cp != '.') return -1;
158 c = strtoul(cp+1, NULL, 10);
159
682c7051 160 return (a*1000000)+(b*1000)+c;
64c4757e
NB
161}
162
bc77ed53
DW
163int mdadm_version(char *version)
164{
165 int a, b, c;
166 char *cp;
167
168 if (!version)
169 version = Version;
170
171 cp = strchr(version, '-');
172 if (!cp || *(cp+1) != ' ' || *(cp+2) != 'v')
173 return -1;
174 cp += 3;
175 a = strtoul(cp, &cp, 10);
176 if (*cp != '.')
177 return -1;
178 b = strtoul(cp+1, &cp, 10);
179 if (*cp == '.')
180 c = strtoul(cp+1, &cp, 10);
181 else
182 c = 0;
183 if (*cp != ' ' && *cp != '-')
184 return -1;
185 return (a*1000000)+(b*1000)+c;
186}
187
eb3929a4 188#ifndef MDASSEMBLE
84e11361
N
189long long parse_size(char *size)
190{
191 /* parse 'size' which should be a number optionally
192 * followed by 'K', 'M', or 'G'.
193 * Without a suffix, K is assumed.
194 * Number returned is in sectors (half-K)
195 */
196 char *c;
197 long long s = strtoll(size, &c, 10);
198 if (s > 0) {
199 switch (*c) {
200 case 'K':
201 c++;
202 default:
203 s *= 2;
204 break;
205 case 'M':
206 c++;
207 s *= 1024 * 2;
208 break;
209 case 'G':
210 c++;
211 s *= 1024 * 1024 * 2;
212 break;
213 }
214 }
215 if (*c)
216 s = 0;
217 return s;
218}
219
4a06e2c2
N
220int parse_layout_10(char *layout)
221{
222 int copies, rv;
223 char *cp;
224 /* Parse the layout string for raid10 */
225 /* 'f', 'o' or 'n' followed by a number <= raid_disks */
226 if ((layout[0] != 'n' && layout[0] != 'f' && layout[0] != 'o') ||
227 (copies = strtoul(layout+1, &cp, 10)) < 1 ||
228 copies > 200 ||
229 *cp)
230 return -1;
231 if (layout[0] == 'n')
232 rv = 256 + copies;
233 else if (layout[0] == 'o')
234 rv = 0x10000 + (copies<<8) + 1;
235 else
236 rv = 1 + (copies<<8);
237 return rv;
238}
239
240int parse_layout_faulty(char *layout)
241{
242 /* Parse the layout string for 'faulty' */
243 int ln = strcspn(layout, "0123456789");
244 char *m = strdup(layout);
245 int mode;
246 m[ln] = 0;
247 mode = map_name(faultylayout, m);
248 if (mode == UnSet)
249 return -1;
250
251 return mode | (atoi(layout+ln)<< ModeShift);
252}
eb3929a4 253#endif
4a06e2c2 254
0430ed48
NB
255void remove_partitions(int fd)
256{
257 /* remove partitions from this block devices.
258 * This is used for components added to an array
259 */
260#ifdef BLKPG_DEL_PARTITION
261 struct blkpg_ioctl_arg a;
262 struct blkpg_partition p;
263
264 a.op = BLKPG_DEL_PARTITION;
265 a.data = (void*)&p;
266 a.datalen = sizeof(p);
267 a.flags = 0;
268 memset(a.data, 0, a.datalen);
269 for (p.pno=0; p.pno < 16; p.pno++)
270 ioctl(fd, BLKPG, &a);
271#endif
272}
273
691c6ee1
N
274int test_partition(int fd)
275{
276 /* Check if fd is a whole-disk or a partition.
277 * BLKPG will return EINVAL on a partition, and BLKPG_DEL_PARTITION
278 * will return ENXIO on an invalid partition number.
279 */
280 struct blkpg_ioctl_arg a;
281 struct blkpg_partition p;
282 a.op = BLKPG_DEL_PARTITION;
283 a.data = (void*)&p;
284 a.datalen = sizeof(p);
285 a.flags = 0;
286 memset(a.data, 0, a.datalen);
287 p.pno = 1<<30;
288 if (ioctl(fd, BLKPG, &a) == 0)
289 /* Very unlikely, but not a partition */
290 return 0;
291 if (errno == ENXIO)
292 /* not a partition */
293 return 0;
294
295 return 1;
296}
297
298
583315d9 299int enough(int level, int raid_disks, int layout, int clean,
265e0f17 300 char *avail, int avail_disks)
64c4757e 301{
265e0f17 302 int copies, first;
64c4757e 303 switch (level) {
265e0f17
NB
304 case 10:
305 /* This is the tricky one - we need to check
306 * which actual disks are present.
307 */
702b557b 308 copies = (layout&255)* ((layout>>8) & 255);
265e0f17
NB
309 first=0;
310 do {
311 /* there must be one of the 'copies' form 'first' */
312 int n = copies;
313 int cnt=0;
314 while (n--) {
315 if (avail[first])
316 cnt++;
317 first = (first+1) % raid_disks;
318 }
319 if (cnt == 0)
320 return 0;
321
322 } while (first != 0);
323 return 1;
e5329c37 324
df0d4ea0 325 case LEVEL_MULTIPATH:
e0d19036 326 return avail_disks>= 1;
df0d4ea0 327 case LEVEL_LINEAR:
64c4757e
NB
328 case 0:
329 return avail_disks == raid_disks;
330 case 1:
331 return avail_disks >= 1;
332 case 4:
333 case 5:
583315d9
NB
334 if (clean)
335 return avail_disks >= raid_disks-1;
336 else
337 return avail_disks >= raid_disks;
98c6faba 338 case 6:
583315d9
NB
339 if (clean)
340 return avail_disks >= raid_disks-2;
341 else
342 return avail_disks >= raid_disks;
64c4757e
NB
343 default:
344 return 0;
345 }
346}
347
8453e704
N
348int enough_fd(int fd)
349{
350 struct mdu_array_info_s array;
351 struct mdu_disk_info_s disk;
352 int avail_disks = 0;
353 int i;
354 char *avail;
355
356 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0 ||
357 array.raid_disks <= 0)
358 return 0;
359 avail = calloc(array.raid_disks, 1);
360 for (i=0; i<array.raid_disks + array.nr_disks; i++) {
361 disk.number = i;
362 if (ioctl(fd, GET_DISK_INFO, &disk) != 0)
363 continue;
364 if (! (disk.state & (1<<MD_DISK_SYNC)))
365 continue;
366 if (disk.raid_disk < 0 || disk.raid_disk >= array.raid_disks)
367 continue;
368 avail_disks++;
369 avail[disk.raid_disk] = 1;
370 }
371 /* This is used on an active array, so assume it is clean */
372 return enough(array.level, array.raid_disks, array.layout,
373 1,
374 avail, avail_disks);
375}
376
377
22e263f6
AC
378const int uuid_zero[4] = { 0, 0, 0, 0 };
379
f277ce36 380int same_uuid(int a[4], int b[4], int swapuuid)
64c4757e 381{
f277ce36
NB
382 if (swapuuid) {
383 /* parse uuids are hostendian.
384 * uuid's from some superblocks are big-ending
aba69144 385 * if there is a difference, we need to swap..
f277ce36
NB
386 */
387 unsigned char *ac = (unsigned char *)a;
388 unsigned char *bc = (unsigned char *)b;
389 int i;
390 for (i=0; i<16; i+= 4) {
391 if (ac[i+0] != bc[i+3] ||
392 ac[i+1] != bc[i+2] ||
393 ac[i+2] != bc[i+1] ||
394 ac[i+3] != bc[i+0])
395 return 0;
396 }
397 return 1;
398 } else {
399 if (a[0]==b[0] &&
400 a[1]==b[1] &&
401 a[2]==b[2] &&
402 a[3]==b[3])
403 return 1;
404 return 0;
405 }
64c4757e 406}
350f29f9
NB
407void copy_uuid(void *a, int b[4], int swapuuid)
408{
409 if (swapuuid) {
410 /* parse uuids are hostendian.
411 * uuid's from some superblocks are big-ending
412 * if there is a difference, we need to swap..
413 */
414 unsigned char *ac = (unsigned char *)a;
415 unsigned char *bc = (unsigned char *)b;
416 int i;
417 for (i=0; i<16; i+= 4) {
418 ac[i+0] = bc[i+3];
419 ac[i+1] = bc[i+2];
420 ac[i+2] = bc[i+1];
421 ac[i+3] = bc[i+0];
422 }
423 } else
424 memcpy(a, b, 16);
425}
64c4757e 426
aae5a112 427char *__fname_from_uuid(int id[4], int swap, char *buf, char sep)
d7288ddc 428{
9968e376 429 int i, j;
d7288ddc
N
430 char uuid[16];
431 char *c = buf;
432 strcpy(c, "UUID-");
433 c += strlen(c);
aae5a112 434 copy_uuid(uuid, id, swap);
9968e376 435 for (i = 0; i < 4; i++) {
9968e376 436 if (i)
ff54de6e 437 *c++ = sep;
9968e376
DW
438 for (j = 3; j >= 0; j--) {
439 sprintf(c,"%02x", (unsigned char) uuid[j+4*i]);
440 c+= 2;
441 }
d7288ddc
N
442 }
443 return buf;
aae5a112
DW
444
445}
446
447char *fname_from_uuid(struct supertype *st, struct mdinfo *info, char *buf, char sep)
448{
86983cce
N
449 // dirty hack to work around an issue with super1 superblocks...
450 // super1 superblocks need swapuuid set in order for assembly to
451 // work, but can't have it set if we want this printout to match
452 // all the other uuid printouts in super1.c, so we force swapuuid
453 // to 1 to make our printout match the rest of super1
454 return __fname_from_uuid(info->uuid, (st->ss == &super1) ? 1 : st->ss->swapuuid, buf, sep);
d7288ddc
N
455}
456
435d4ebb 457#ifndef MDASSEMBLE
682c7051
NB
458int check_ext2(int fd, char *name)
459{
460 /*
461 * Check for an ext2fs file system.
462 * Superblock is always 1K at 1K offset
463 *
464 * s_magic is le16 at 56 == 0xEF53
465 * report mtime - le32 at 44
466 * blocks - le32 at 4
467 * logblksize - le32 at 24
468 */
469 unsigned char sb[1024];
470 time_t mtime;
471 int size, bsize;
472 if (lseek(fd, 1024,0)!= 1024)
473 return 0;
474 if (read(fd, sb, 1024)!= 1024)
475 return 0;
476 if (sb[56] != 0x53 || sb[57] != 0xef)
477 return 0;
478
479 mtime = sb[44]|(sb[45]|(sb[46]|sb[47]<<8)<<8)<<8;
480 bsize = sb[24]|(sb[25]|(sb[26]|sb[27]<<8)<<8)<<8;
481 size = sb[4]|(sb[5]|(sb[6]|sb[7]<<8)<<8)<<8;
482 fprintf(stderr, Name ": %s appears to contain an ext2fs file system\n",
483 name);
484 fprintf(stderr," size=%dK mtime=%s",
485 size*(1<<bsize), ctime(&mtime));
486 return 1;
487}
488
489int check_reiser(int fd, char *name)
490{
491 /*
492 * superblock is at 64K
493 * size is 1024;
494 * Magic string "ReIsErFs" or "ReIsEr2Fs" at 52
495 *
496 */
497 unsigned char sb[1024];
881990a2 498 unsigned long size;
682c7051
NB
499 if (lseek(fd, 64*1024, 0) != 64*1024)
500 return 0;
501 if (read(fd, sb, 1024) != 1024)
502 return 0;
a46f4061
NB
503 if (strncmp((char*)sb+52, "ReIsErFs",8)!=0 &&
504 strncmp((char*)sb+52, "ReIsEr2Fs",9)!=0)
682c7051
NB
505 return 0;
506 fprintf(stderr, Name ": %s appears to contain a reiserfs file system\n",name);
507 size = sb[0]|(sb[1]|(sb[2]|sb[3]<<8)<<8)<<8;
881990a2 508 fprintf(stderr, " size = %luK\n", size*4);
aba69144 509
682c7051
NB
510 return 1;
511}
512
513int check_raid(int fd, char *name)
514{
4b1ac34b 515 struct mdinfo info;
682c7051 516 time_t crtime;
d078d77c 517 char *level;
82d9eba6 518 struct supertype *st = guess_super(fd);
f9ce90ba 519
82d9eba6 520 if (!st) return 0;
3da92f27 521 st->ss->load_super(st, fd, name);
82d9eba6
NB
522 /* Looks like a raid array .. */
523 fprintf(stderr, Name ": %s appears to be part of a raid array:\n",
524 name);
a5d85af7 525 st->ss->getinfo_super(st, &info, NULL);
3da92f27 526 st->ss->free_super(st);
82d9eba6 527 crtime = info.array.ctime;
d078d77c
NB
528 level = map_num(pers, info.array.level);
529 if (!level) level = "-unknown-";
530 fprintf(stderr, " level=%s devices=%d ctime=%s",
531 level, info.array.raid_disks, ctime(&crtime));
82d9eba6 532 return 1;
682c7051
NB
533}
534
682c7051
NB
535int ask(char *mesg)
536{
537 char *add = "";
538 int i;
539 for (i=0; i<5; i++) {
540 char buf[100];
541 fprintf(stderr, "%s%s", mesg, add);
542 fflush(stderr);
543 if (fgets(buf, 100, stdin)==NULL)
544 return 0;
545 if (buf[0]=='y' || buf[0]=='Y')
546 return 1;
547 if (buf[0]=='n' || buf[0]=='N')
548 return 0;
549 add = "(y/n) ";
550 }
551 fprintf(stderr, Name ": assuming 'no'\n");
552 return 0;
553}
435d4ebb 554#endif /* MDASSEMBLE */
682c7051
NB
555
556char *map_num(mapping_t *map, int num)
557{
558 while (map->name) {
559 if (map->num == num)
560 return map->name;
561 map++;
562 }
563 return NULL;
564}
565
566int map_name(mapping_t *map, char *name)
567{
568 while (map->name) {
569 if (strcmp(map->name, name)==0)
570 return map->num;
571 map++;
572 }
98c6faba 573 return UnSet;
682c7051 574}
82b27616 575
e5329c37 576
8d80900b 577int is_standard(char *dev, int *nump)
e5329c37
NB
578{
579 /* tests if dev is a "standard" md dev name.
580 * i.e if the last component is "/dNN" or "/mdNN",
aba69144 581 * where NN is a string of digits
598f0d58
NB
582 * Returns 1 if a partitionable standard,
583 * -1 if non-partitonable,
584 * 0 if not a standard name.
e5329c37 585 */
8d80900b
NB
586 char *d = strrchr(dev, '/');
587 int type=0;
588 int num;
589 if (!d)
e5329c37 590 return 0;
8d80900b
NB
591 if (strncmp(d, "/d",2)==0)
592 d += 2, type=1; /* /dev/md/dN{pM} */
593 else if (strncmp(d, "/md_d", 5)==0)
2b4ca8f0 594 d += 5, type=1; /* /dev/md_dN{pM} */
8d80900b
NB
595 else if (strncmp(d, "/md", 3)==0)
596 d += 3, type=-1; /* /dev/mdN */
597 else if (d-dev > 3 && strncmp(d-2, "md/", 3)==0)
5a6d1148 598 d += 1, type=-1; /* /dev/md/N */
e5329c37
NB
599 else
600 return 0;
8d80900b 601 if (!*d)
e5329c37 602 return 0;
8d80900b
NB
603 num = atoi(d);
604 while (isdigit(*d))
605 d++;
606 if (*d)
e5329c37 607 return 0;
8d80900b
NB
608 if (nump) *nump = num;
609
610 return type;
e5329c37
NB
611}
612
613
82b27616
NB
614/*
615 * convert a major/minor pair for a block device into a name in /dev, if possible.
616 * On the first call, walk /dev collecting name.
617 * Put them in a simple linked listfor now.
618 */
619struct devmap {
620 int major, minor;
621 char *name;
622 struct devmap *next;
623} *devlist = NULL;
624int devlist_ready = 0;
625
82b27616
NB
626int add_dev(const char *name, const struct stat *stb, int flag, struct FTW *s)
627{
bed256c2 628 struct stat st;
bf68e9d9 629
bed256c2 630 if (S_ISLNK(stb->st_mode)) {
bf68e9d9
DW
631 if (stat(name, &st) != 0)
632 return 0;
bed256c2 633 stb = &st;
82b27616 634 }
bed256c2
NB
635
636 if ((stb->st_mode&S_IFMT)== S_IFBLK) {
637 char *n = strdup(name);
638 struct devmap *dm = malloc(sizeof(*dm));
639 if (strncmp(n, "/dev/./", 7)==0)
640 strcpy(n+4, name+6);
641 if (dm) {
642 dm->major = major(stb->st_rdev);
643 dm->minor = minor(stb->st_rdev);
644 dm->name = n;
645 dm->next = devlist;
646 devlist = dm;
647 }
648 }
649 return 0;
82b27616
NB
650}
651
45e878bb
NB
652#ifndef HAVE_NFTW
653#ifdef HAVE_FTW
654int add_dev_1(const char *name, const struct stat *stb, int flag)
655{
656 return add_dev(name, stb, flag, NULL);
657}
658int nftw(const char *path, int (*han)(const char *name, const struct stat *stb, int flag, struct FTW *s), int nopenfd, int flags)
659{
660 return ftw(path, add_dev_1, nopenfd);
661}
662#else
45e878bb
NB
663int nftw(const char *path, int (*han)(const char *name, const struct stat *stb, int flag, struct FTW *s), int nopenfd, int flags)
664{
665 return 0;
666}
667#endif /* HAVE_FTW */
668#endif /* HAVE_NFTW */
669
dd0781e5
NB
670/*
671 * Find a block device with the right major/minor number.
b79713f8 672 * If we find multiple names, choose the shortest.
70ef16db 673 * If we find a name in /dev/md/, we prefer that.
b79713f8 674 * This applies only to names for MD devices.
dd0781e5 675 */
16c6fa80 676char *map_dev(int major, int minor, int create)
82b27616 677{
dd0781e5 678 struct devmap *p;
70ef16db 679 char *regular = NULL, *preferred=NULL;
e7bb5d23 680 int did_check = 0;
eed35d66 681
e81cdd9f 682 if (major == 0 && minor == 0)
eed35d66 683 return NULL;
e81cdd9f 684
e7bb5d23 685 retry:
dd0781e5 686 if (!devlist_ready) {
0a416ec3
NB
687 char *dev = "/dev";
688 struct stat stb;
eed35d66
NB
689 while(devlist) {
690 struct devmap *d = devlist;
691 devlist = d->next;
692 free(d->name);
693 free(d);
694 }
0a416ec3
NB
695 if (lstat(dev, &stb)==0 &&
696 S_ISLNK(stb.st_mode))
697 dev = "/dev/.";
698 nftw(dev, add_dev, 10, FTW_PHYS);
dd0781e5 699 devlist_ready=1;
e7bb5d23 700 did_check = 1;
dd0781e5 701 }
82b27616 702
dd0781e5
NB
703 for (p=devlist; p; p=p->next)
704 if (p->major == major &&
705 p->minor == minor) {
70ef16db
N
706 if (strncmp(p->name, "/dev/md/",8) == 0) {
707 if (preferred == NULL ||
708 strlen(p->name) < strlen(preferred))
709 preferred = p->name;
b79713f8 710 } else {
70ef16db
N
711 if (regular == NULL ||
712 strlen(p->name) < strlen(regular))
713 regular = p->name;
b79713f8 714 }
dd0781e5 715 }
70ef16db 716 if (!regular && !preferred && !did_check) {
e7bb5d23
NB
717 devlist_ready = 0;
718 goto retry;
719 }
70ef16db 720 if (create && !regular && !preferred) {
16c6fa80 721 static char buf[30];
382245c3 722 snprintf(buf, sizeof(buf), "%d:%d", major, minor);
70ef16db 723 regular = buf;
16c6fa80
NB
724 }
725
70ef16db 726 return preferred ? preferred : regular;
82b27616
NB
727}
728
4b1ac34b 729unsigned long calc_csum(void *super, int bytes)
82b27616 730{
56eb10c0 731 unsigned long long newcsum = 0;
82b27616 732 int i;
4b1ac34b
NB
733 unsigned int csum;
734 unsigned int *superc = (unsigned int*) super;
82b27616 735
4b1ac34b 736 for(i=0; i<bytes/4; i++)
82b27616
NB
737 newcsum+= superc[i];
738 csum = (newcsum& 0xffffffff) + (newcsum>>32);
570c0542 739#ifdef __alpha__
aba69144 740/* The in-kernel checksum calculation is always 16bit on
570c0542
NB
741 * the alpha, though it is 32 bit on i386...
742 * I wonder what it is elsewhere... (it uses and API in
743 * a way that it shouldn't).
744 */
745 csum = (csum & 0xffff) + (csum >> 16);
746 csum = (csum & 0xffff) + (csum >> 16);
747#endif
82b27616
NB
748 return csum;
749}
cd29a5c8 750
435d4ebb 751#ifndef MDASSEMBLE
56eb10c0 752char *human_size(long long bytes)
cd29a5c8
NB
753{
754 static char buf[30];
d5d3721e
NB
755
756 /* We convert bytes to either centi-M{ega,ibi}bytes or
757 * centi-G{igi,ibi}bytes, with appropriate rounding,
758 * and then print 1/100th of those as a decimal.
759 * We allow upto 2048Megabytes before converting to
760 * gigabytes, as that shows more precision and isn't
761 * too large a number.
762 * Terrabytes are not yet handled.
763 */
cd29a5c8 764
56eb10c0 765 if (bytes < 5000*1024)
cd29a5c8 766 buf[0]=0;
d5d3721e
NB
767 else if (bytes < 2*1024LL*1024LL*1024LL) {
768 long cMiB = (bytes / ( (1LL<<20) / 200LL ) +1) /2;
769 long cMB = (bytes / ( 1000000LL / 200LL ) +1) /2;
8f23b0b3 770 snprintf(buf, sizeof(buf), " (%ld.%02ld MiB %ld.%02ld MB)",
d5d3721e
NB
771 cMiB/100 , cMiB % 100,
772 cMB/100, cMB % 100);
773 } else {
774 long cGiB = (bytes / ( (1LL<<30) / 200LL ) +1) /2;
775 long cGB = (bytes / (1000000000LL/200LL ) +1) /2;
8f23b0b3 776 snprintf(buf, sizeof(buf), " (%ld.%02ld GiB %ld.%02ld GB)",
d5d3721e
NB
777 cGiB/100 , cGiB % 100,
778 cGB/100, cGB % 100);
779 }
cd29a5c8
NB
780 return buf;
781}
e0d19036
NB
782
783char *human_size_brief(long long bytes)
784{
785 static char buf[30];
e0d19036
NB
786
787 if (bytes < 5000*1024)
8f23b0b3 788 snprintf(buf, sizeof(buf), "%ld.%02ldKiB",
bd526cee 789 (long)(bytes>>10), (long)(((bytes&1023)*100+512)/1024)
e0d19036
NB
790 );
791 else if (bytes < 2*1024LL*1024LL*1024LL)
8f23b0b3 792 snprintf(buf, sizeof(buf), "%ld.%02ldMiB",
e0d19036 793 (long)(bytes>>20),
bd526cee 794 (long)((bytes&0xfffff)+0x100000/200)/(0x100000/100)
e0d19036
NB
795 );
796 else
8f23b0b3 797 snprintf(buf, sizeof(buf), "%ld.%02ldGiB",
e0d19036 798 (long)(bytes>>30),
bd526cee 799 (long)(((bytes>>10)&0xfffff)+0x100000/200)/(0x100000/100)
e0d19036
NB
800 );
801 return buf;
802}
e4965ef8
N
803
804void print_r10_layout(int layout)
805{
806 int near = layout & 255;
807 int far = (layout >> 8) & 255;
808 int offset = (layout&0x10000);
809 char *sep = "";
810
811 if (near != 1) {
812 printf("%s near=%d", sep, near);
813 sep = ",";
814 }
815 if (far != 1)
816 printf("%s %s=%d", sep, offset?"offset":"far", far);
817 if (near*far == 1)
818 printf("NO REDUNDANCY");
819}
435d4ebb 820#endif
e0d19036 821
5f8097be
NB
822unsigned long long calc_array_size(int level, int raid_disks, int layout,
823 int chunksize, unsigned long long devsize)
824{
825 int data_disks = 0;
826 switch (level) {
827 case 0: data_disks = raid_disks; break;
828 case 1: data_disks = 1; break;
829 case 4:
830 case 5: data_disks = raid_disks - 1; break;
831 case 6: data_disks = raid_disks - 2; break;
832 case 10: data_disks = raid_disks / (layout & 255) / ((layout>>8)&255);
833 break;
834 }
835 devsize &= ~(unsigned long long)((chunksize>>9)-1);
836 return data_disks * devsize;
837}
838
dd0781e5 839int get_mdp_major(void)
98c6faba 840{
dd0781e5
NB
841static int mdp_major = -1;
842 FILE *fl;
98c6faba
NB
843 char *w;
844 int have_block = 0;
845 int have_devices = 0;
846 int last_num = -1;
dd0781e5
NB
847
848 if (mdp_major != -1)
849 return mdp_major;
850 fl = fopen("/proc/devices", "r");
98c6faba 851 if (!fl)
dd0781e5 852 return -1;
98c6faba
NB
853 while ((w = conf_word(fl, 1))) {
854 if (have_block && strcmp(w, "devices:")==0)
855 have_devices = 1;
856 have_block = (strcmp(w, "Block")==0);
857 if (isdigit(w[0]))
858 last_num = atoi(w);
859 if (have_devices && strcmp(w, "mdp")==0)
860 mdp_major = last_num;
861 free(w);
862 }
863 fclose(fl);
dd0781e5 864 return mdp_major;
98c6faba
NB
865}
866
0e600426 867#if !defined(MDASSEMBLE) || defined(MDASSEMBLE) && defined(MDASSEMBLE_AUTO)
e0d19036
NB
868char *get_md_name(int dev)
869{
870 /* find /dev/md%d or /dev/md/%d or make a device /dev/.tmp.md%d */
98c6faba 871 /* if dev < 0, want /dev/md/d%d or find mdp in /proc/devices ... */
e0d19036
NB
872 static char devname[50];
873 struct stat stb;
98c6faba 874 dev_t rdev;
dd0781e5 875 char *dn;
98c6faba
NB
876
877 if (dev < 0) {
dd0781e5
NB
878 int mdp = get_mdp_major();
879 if (mdp < 0) return NULL;
0df46c2a 880 rdev = makedev(mdp, (-1-dev)<<6);
8f23b0b3 881 snprintf(devname, sizeof(devname), "/dev/md/d%d", -1-dev);
98c6faba
NB
882 if (stat(devname, &stb) == 0
883 && (S_IFMT&stb.st_mode) == S_IFBLK
884 && (stb.st_rdev == rdev))
885 return devname;
886 } else {
0df46c2a 887 rdev = makedev(MD_MAJOR, dev);
8f23b0b3 888 snprintf(devname, sizeof(devname), "/dev/md%d", dev);
98c6faba
NB
889 if (stat(devname, &stb) == 0
890 && (S_IFMT&stb.st_mode) == S_IFBLK
891 && (stb.st_rdev == rdev))
892 return devname;
893
8f23b0b3 894 snprintf(devname, sizeof(devname), "/dev/md/%d", dev);
98c6faba
NB
895 if (stat(devname, &stb) == 0
896 && (S_IFMT&stb.st_mode) == S_IFBLK
897 && (stb.st_rdev == rdev))
898 return devname;
899 }
16c6fa80 900 dn = map_dev(major(rdev), minor(rdev), 0);
dd0781e5
NB
901 if (dn)
902 return dn;
8f23b0b3 903 snprintf(devname, sizeof(devname), "/dev/.tmp.md%d", dev);
e0d19036 904 if (mknod(devname, S_IFBLK | 0600, rdev) == -1)
dd0781e5
NB
905 if (errno != EEXIST)
906 return NULL;
e0d19036
NB
907
908 if (stat(devname, &stb) == 0
909 && (S_IFMT&stb.st_mode) == S_IFBLK
910 && (stb.st_rdev == rdev))
911 return devname;
912 unlink(devname);
913 return NULL;
914}
915
916void put_md_name(char *name)
917{
918 if (strncmp(name, "/dev/.tmp.md", 12)==0)
919 unlink(name);
920}
ea24acd0 921
ea24acd0
NB
922int find_free_devnum(int use_partitions)
923{
924 int devnum;
925 for (devnum = 127; devnum != 128;
a56fb7ec 926 devnum = devnum ? devnum-1 : (1<<20)-1) {
ea24acd0
NB
927 char *dn;
928 int _devnum;
929
930 _devnum = use_partitions ? (-1-devnum) : devnum;
931 if (mddev_busy(_devnum))
932 continue;
933 /* make sure it is new to /dev too, at least as a
934 * non-standard */
935 dn = map_dev(dev2major(_devnum), dev2minor(_devnum), 0);
936 if (dn && ! is_standard(dn, NULL))
937 continue;
938 break;
939 }
940 if (devnum == 128)
941 return NoMdDev;
942 return use_partitions ? (-1-devnum) : devnum;
943}
435d4ebb 944#endif /* !defined(MDASSEMBLE) || defined(MDASSEMBLE) && defined(MDASSEMBLE_AUTO) */
f9ce90ba 945
8b0dabea
NB
946int dev_open(char *dev, int flags)
947{
948 /* like 'open', but if 'dev' matches %d:%d, create a temp
949 * block device and open that
950 */
951 char *e;
952 int fd = -1;
953 char devname[32];
e81cdd9f 954 int major;
8b0dabea 955 int minor;
e81cdd9f
NB
956
957 if (!dev) return -1;
6df6a774 958 flags |= O_DIRECT;
e81cdd9f
NB
959
960 major = strtoul(dev, &e, 0);
8b0dabea
NB
961 if (e > dev && *e == ':' && e[1] &&
962 (minor = strtoul(e+1, &e, 0)) >= 0 &&
963 *e == 0) {
6df6a774
N
964 char *path = map_dev(major, minor, 0);
965 if (path)
966 fd = open(path, flags);
967 if (fd < 0) {
968 snprintf(devname, sizeof(devname), "/dev/.tmp.md.%d:%d:%d",
969 (int)getpid(), major, minor);
970 if (mknod(devname, S_IFBLK|0600, makedev(major, minor))==0) {
971 fd = open(devname, flags);
972 unlink(devname);
973 }
974 }
975 if (fd < 0) {
976 snprintf(devname, sizeof(devname), "/tmp/.tmp.md.%d:%d:%d",
977 (int)getpid(), major, minor);
978 if (mknod(devname, S_IFBLK|0600, makedev(major, minor))==0) {
979 fd = open(devname, flags);
980 unlink(devname);
981 }
8b0dabea
NB
982 }
983 } else
6df6a774 984 fd = open(dev, flags);
8b0dabea
NB
985 return fd;
986}
f9ce90ba 987
e8a70c89
N
988int open_dev(int devnum)
989{
990 char buf[20];
991
992 sprintf(buf, "%d:%d", dev2major(devnum), dev2minor(devnum));
993 return dev_open(buf, O_RDWR);
994}
995
a931db9e
NB
996int open_dev_excl(int devnum)
997{
998 char buf[20];
999 int i;
1000
1001 sprintf(buf, "%d:%d", dev2major(devnum), dev2minor(devnum));
1002 for (i=0 ; i<25 ; i++) {
1003 int fd = dev_open(buf, O_RDWR|O_EXCL);
1004 if (fd >= 0)
1005 return fd;
1006 if (errno != EBUSY)
1007 return fd;
1008 usleep(200000);
1009 }
1010 return -1;
1011}
1012
9008ed1c
N
1013int same_dev(char *one, char *two)
1014{
1015 struct stat st1, st2;
1016 if (stat(one, &st1) != 0)
1017 return 0;
1018 if (stat(two, &st2) != 0)
1019 return 0;
1020 if ((st1.st_mode & S_IFMT) != S_IFBLK)
1021 return 0;
1022 if ((st2.st_mode & S_IFMT) != S_IFBLK)
1023 return 0;
1024 return st1.st_rdev == st2.st_rdev;
1025}
1026
a7c6e3fb 1027void wait_for(char *dev, int fd)
a714580e
N
1028{
1029 int i;
a7c6e3fb
N
1030 struct stat stb_want;
1031
1032 if (fstat(fd, &stb_want) != 0 ||
1033 (stb_want.st_mode & S_IFMT) != S_IFBLK)
1034 return;
a714580e
N
1035
1036 for (i=0 ; i<25 ; i++) {
1037 struct stat stb;
a7c6e3fb
N
1038 if (stat(dev, &stb) == 0 &&
1039 (stb.st_mode & S_IFMT) == S_IFBLK &&
1040 (stb.st_rdev == stb_want.st_rdev))
a714580e
N
1041 return;
1042 usleep(200000);
1043 }
436305c6
DW
1044 if (i == 25)
1045 dprintf("%s: timeout waiting for %s\n", __func__, dev);
a714580e
N
1046}
1047
0f22b998
N
1048struct superswitch *superlist[] =
1049{
1050 &super0, &super1,
1051 &super_ddf, &super_imsm,
0592faeb 1052 &mbr, &gpt,
0f22b998 1053 NULL };
f9ce90ba 1054
ea24acd0 1055#if !defined(MDASSEMBLE) || defined(MDASSEMBLE) && defined(MDASSEMBLE_AUTO)
f7dd881f 1056
4725bc31 1057struct supertype *super_by_fd(int fd, char **subarrayp)
f9ce90ba 1058{
1686dc25
NB
1059 mdu_array_info_t array;
1060 int vers;
1061 int minor;
1062 struct supertype *st = NULL;
7e0f6979 1063 struct mdinfo *sra;
142cb9e1 1064 char *verstr;
1686dc25
NB
1065 char version[20];
1066 int i;
f7e7067b 1067 char *subarray = NULL;
5f7e44b2 1068 int container = NoMdDev;
1686dc25
NB
1069
1070 sra = sysfs_read(fd, 0, GET_VERSION);
1071
1072 if (sra) {
7e0f6979
NB
1073 vers = sra->array.major_version;
1074 minor = sra->array.minor_version;
142cb9e1 1075 verstr = sra->text_version;
1686dc25
NB
1076 } else {
1077 if (ioctl(fd, GET_ARRAY_INFO, &array))
1078 array.major_version = array.minor_version = 0;
1079 vers = array.major_version;
1080 minor = array.minor_version;
142cb9e1 1081 verstr = "";
6fbba4c9 1082 }
82d9eba6 1083
1686dc25
NB
1084 if (vers != -1) {
1085 sprintf(version, "%d.%d", vers, minor);
1086 verstr = version;
6fbba4c9 1087 }
3c558363 1088 if (minor == -2 && is_subarray(verstr)) {
f7e7067b 1089 char *dev = verstr+1;
5f7e44b2 1090
f7e7067b 1091 subarray = strchr(dev, '/');
f7e7067b
NB
1092 if (subarray)
1093 *subarray++ = '\0';
f7e7067b 1094 subarray = strdup(subarray);
5f7e44b2 1095 container = devname2devnum(dev);
f7e7067b
NB
1096 if (sra)
1097 sysfs_free(sra);
5f7e44b2 1098 sra = sysfs_read(-1, container, GET_VERSION);
603f24a0
N
1099 if (sra && sra->text_version[0])
1100 verstr = sra->text_version;
1101 else
1102 verstr = "-no-metadata-";
f7e7067b
NB
1103 }
1104
1105 for (i = 0; st == NULL && superlist[i] ; i++)
1106 st = superlist[i]->match_metadata_desc(verstr);
1686dc25
NB
1107
1108 if (sra)
1109 sysfs_free(sra);
f7e7067b 1110 if (st) {
3b0896f8 1111 st->sb = NULL;
1f49fb3a
N
1112 if (subarrayp)
1113 *subarrayp = subarray;
5f7e44b2
DW
1114 st->container_dev = container;
1115 st->devnum = fd2devnum(fd);
4725bc31
N
1116 } else
1117 free(subarray);
5f7e44b2 1118
82d9eba6 1119 return st;
f9ce90ba 1120}
ea24acd0
NB
1121#endif /* !defined(MDASSEMBLE) || defined(MDASSEMBLE) && defined(MDASSEMBLE_AUTO) */
1122
0f0749ad 1123int dev_size_from_id(dev_t id, unsigned long long *size)
52d5d101
AC
1124{
1125 char buf[20];
1126 int fd;
1127
1128 sprintf(buf, "%d:%d", major(id), minor(id));
1129 fd = dev_open(buf, O_RDONLY);
1130 if (fd < 0)
1131 return 0;
1132 if (get_dev_size(fd, NULL, size)) {
1133 close(fd);
1134 return 1;
1135 }
1136 close(fd);
1137 return 0;
1138}
f9ce90ba 1139
159c3a1a 1140struct supertype *dup_super(struct supertype *orig)
3da92f27 1141{
159c3a1a 1142 struct supertype *st;
1686dc25 1143
d2ca6449
NB
1144 if (!orig)
1145 return orig;
159c3a1a 1146 st = malloc(sizeof(*st));
3da92f27
NB
1147 if (!st)
1148 return st;
ef609477 1149 memset(st, 0, sizeof(*st));
159c3a1a
NB
1150 st->ss = orig->ss;
1151 st->max_devs = orig->max_devs;
1152 st->minor_version = orig->minor_version;
1153 st->sb = NULL;
1154 st->info = NULL;
1155 return st;
3da92f27
NB
1156}
1157
54887ad8 1158struct supertype *guess_super_type(int fd, enum guess_types guess_type)
f9ce90ba
NB
1159{
1160 /* try each load_super to find the best match,
1161 * and return the best superswitch
1162 */
82d9eba6
NB
1163 struct superswitch *ss;
1164 struct supertype *st;
f21e18ca 1165 time_t besttime = 0;
570c0542 1166 int bestsuper = -1;
f9ce90ba
NB
1167 int i;
1168
82d9eba6 1169 st = malloc(sizeof(*st));
d1d599ea
N
1170 memset(st, 0, sizeof(*st));
1171 st->container_dev = NoMdDev;
1172
f9ce90ba
NB
1173 for (i=0 ; superlist[i]; i++) {
1174 int rv;
1175 ss = superlist[i];
54887ad8
N
1176 if (guess_type == guess_array && ss->add_to_super == NULL)
1177 continue;
1178 if (guess_type == guess_partitions && ss->add_to_super != NULL)
1179 continue;
ef609477 1180 memset(st, 0, sizeof(*st));
3da92f27 1181 rv = ss->load_super(st, fd, NULL);
570c0542
NB
1182 if (rv == 0) {
1183 struct mdinfo info;
a5d85af7 1184 st->ss->getinfo_super(st, &info, NULL);
570c0542
NB
1185 if (bestsuper == -1 ||
1186 besttime < info.array.ctime) {
1187 bestsuper = i;
1188 besttime = info.array.ctime;
570c0542 1189 }
3da92f27 1190 ss->free_super(st);
570c0542
NB
1191 }
1192 }
1193 if (bestsuper != -1) {
1194 int rv;
ef609477 1195 memset(st, 0, sizeof(*st));
3da92f27 1196 rv = superlist[bestsuper]->load_super(st, fd, NULL);
f9ce90ba 1197 if (rv == 0) {
5e747af2 1198 superlist[bestsuper]->free_super(st);
82d9eba6 1199 return st;
f9ce90ba
NB
1200 }
1201 }
570c0542 1202 free(st);
f9ce90ba
NB
1203 return NULL;
1204}
fe6729fa 1205
beae1dfe
NB
1206/* Return size of device in bytes */
1207int get_dev_size(int fd, char *dname, unsigned long long *sizep)
1208{
1209 unsigned long long ldsize;
c2c9bb6f
NB
1210 struct stat st;
1211
1212 if (fstat(fd, &st) != -1 && S_ISREG(st.st_mode))
1213 ldsize = (unsigned long long)st.st_size;
1214 else
beae1dfe
NB
1215#ifdef BLKGETSIZE64
1216 if (ioctl(fd, BLKGETSIZE64, &ldsize) != 0)
1217#endif
1218 {
1219 unsigned long dsize;
1220 if (ioctl(fd, BLKGETSIZE, &dsize) == 0) {
1221 ldsize = dsize;
1222 ldsize <<= 9;
1223 } else {
1224 if (dname)
1225 fprintf(stderr, Name ": Cannot get size of %s: %s\b",
1226 dname, strerror(errno));
1227 return 0;
1228 }
1229 }
1230 *sizep = ldsize;
1231 return 1;
1232}
8fac0577 1233
3a371610
N
1234/* Return true if this can only be a container, not a member device.
1235 * i.e. is and md device and size is zero
1236 */
1237int must_be_container(int fd)
1238{
1239 unsigned long long size;
1240 if (md_get_version(fd) < 0)
1241 return 0;
1242 if (get_dev_size(fd, NULL, &size) == 0)
1243 return 1;
1244 if (size == 0)
1245 return 1;
1246 return 0;
1247}
034b203a
TM
1248
1249/* Sets endofpart parameter to the last block used by the last GPT partition on the device.
1250 * Returns: 1 if successful
1251 * -1 for unknown partition type
1252 * 0 for other errors
1253 */
1254static int get_gpt_last_partition_end(int fd, unsigned long long *endofpart)
1255{
056b331e 1256 struct GPT gpt;
034b203a
TM
1257 unsigned char buf[512];
1258 unsigned char empty_gpt_entry[16]= {0};
1259 struct GPT_part_entry *part;
1260 unsigned long long curr_part_end;
1261 unsigned all_partitions, entry_size;
f21e18ca 1262 unsigned part_nr;
034b203a
TM
1263
1264 *endofpart = 0;
1265
056b331e 1266 BUILD_BUG_ON(sizeof(gpt) != 512);
034b203a
TM
1267 /* read GPT header */
1268 lseek(fd, 512, SEEK_SET);
056b331e 1269 if (read(fd, &gpt, 512) != 512)
034b203a
TM
1270 return 0;
1271
1272 /* get the number of partition entries and the entry size */
056b331e
N
1273 all_partitions = __le32_to_cpu(gpt.part_cnt);
1274 entry_size = __le32_to_cpu(gpt.part_size);
034b203a
TM
1275
1276 /* Check GPT signature*/
056b331e 1277 if (gpt.magic != GPT_SIGNATURE_MAGIC)
034b203a
TM
1278 return -1;
1279
1280 /* sanity checks */
1281 if (all_partitions > 1024 ||
1282 entry_size > 512)
1283 return -1;
1284
1285 /* read first GPT partition entries */
1286 if (read(fd, buf, 512) != 512)
1287 return 0;
1288
1289 part = (struct GPT_part_entry*)buf;
1290
1291 for (part_nr=0; part_nr < all_partitions; part_nr++) {
1292 /* is this valid partition? */
1293 if (memcmp(part->type_guid, empty_gpt_entry, 16) != 0) {
1294 /* check the last lba for the current partition */
056b331e 1295 curr_part_end = __le64_to_cpu(part->ending_lba);
034b203a
TM
1296 if (curr_part_end > *endofpart)
1297 *endofpart = curr_part_end;
1298 }
1299
1300 part = (struct GPT_part_entry*)((unsigned char*)part + entry_size);
1301
1302 if ((unsigned char *)part >= buf + 512) {
1303 if (read(fd, buf, 512) != 512)
1304 return 0;
1305 part = (struct GPT_part_entry*)buf;
1306 }
1307 }
1308 return 1;
1309}
1310
1311/* Sets endofpart parameter to the last block used by the last partition on the device.
1312 * Returns: 1 if successful
1313 * -1 for unknown partition type
1314 * 0 for other errors
1315 */
1316static int get_last_partition_end(int fd, unsigned long long *endofpart)
1317{
056b331e 1318 struct MBR boot_sect;
034b203a
TM
1319 struct MBR_part_record *part;
1320 unsigned long long curr_part_end;
f21e18ca 1321 unsigned part_nr;
034b203a
TM
1322 int retval = 0;
1323
1324 *endofpart = 0;
1325
056b331e 1326 BUILD_BUG_ON(sizeof(boot_sect) != 512);
034b203a
TM
1327 /* read MBR */
1328 lseek(fd, 0, 0);
056b331e 1329 if (read(fd, &boot_sect, 512) != 512)
034b203a
TM
1330 goto abort;
1331
1332 /* check MBP signature */
056b331e 1333 if (boot_sect.magic == MBR_SIGNATURE_MAGIC) {
034b203a
TM
1334 retval = 1;
1335 /* found the correct signature */
056b331e 1336 part = boot_sect.parts;
034b203a
TM
1337
1338 for (part_nr=0; part_nr < MBR_PARTITIONS; part_nr++) {
1339 /* check for GPT type */
1340 if (part->part_type == MBR_GPT_PARTITION_TYPE) {
1341 retval = get_gpt_last_partition_end(fd, endofpart);
1342 break;
1343 }
1344 /* check the last used lba for the current partition */
1345 curr_part_end = __le32_to_cpu(part->first_sect_lba) +
1346 __le32_to_cpu(part->blocks_num);
1347 if (curr_part_end > *endofpart)
1348 *endofpart = curr_part_end;
1349
1350 part++;
1351 }
1352 } else {
1353 /* Unknown partition table */
1354 retval = -1;
1355 }
1356 abort:
1357 return retval;
1358}
1359
1360int check_partitions(int fd, char *dname, unsigned long long freesize)
1361{
1362 /*
1363 * Check where the last partition ends
1364 */
1365 unsigned long long endofpart;
1366 int ret;
1367
1368 if ((ret = get_last_partition_end(fd, &endofpart)) > 0) {
1369 /* There appears to be a partition table here */
1370 if (freesize == 0) {
1371 /* partitions will not be visible in new device */
1372 fprintf(stderr,
1373 Name ": partition table exists on %s but will be lost or\n"
1374 " meaningless after creating array\n",
1375 dname);
1376 return 1;
1377 } else if (endofpart > freesize) {
1378 /* last partition overlaps metadata */
1379 fprintf(stderr,
1380 Name ": metadata will over-write last partition on %s.\n",
1381 dname);
1382 return 1;
1383 }
1384 }
1385 return 0;
1386}
1387
8382f19b
NB
1388void get_one_disk(int mdfd, mdu_array_info_t *ainf, mdu_disk_info_t *disk)
1389{
1390 int d;
1391 ioctl(mdfd, GET_ARRAY_INFO, ainf);
1392 for (d = 0 ; d < ainf->raid_disks + ainf->nr_disks ; d++)
1393 if (ioctl(mdfd, GET_DISK_INFO, disk) == 0)
1394 return;
1395}
63152c1b 1396
a322f70c
DW
1397int open_container(int fd)
1398{
1399 /* 'fd' is a block device. Find out if it is in use
1400 * by a container, and return an open fd on that container.
1401 */
1402 char path[256];
1403 char *e;
1404 DIR *dir;
1405 struct dirent *de;
1406 int dfd, n;
1407 char buf[200];
1408 int major, minor;
1409 struct stat st;
1410
1411 if (fstat(fd, &st) != 0)
1412 return -1;
1413 sprintf(path, "/sys/dev/block/%d:%d/holders",
1414 (int)major(st.st_rdev), (int)minor(st.st_rdev));
1415 e = path + strlen(path);
1416
1417 dir = opendir(path);
1418 if (!dir)
1419 return -1;
1420 while ((de = readdir(dir))) {
1421 if (de->d_ino == 0)
1422 continue;
1423 if (de->d_name[0] == '.')
1424 continue;
1425 sprintf(e, "/%s/dev", de->d_name);
1426 dfd = open(path, O_RDONLY);
1427 if (dfd < 0)
1428 continue;
1429 n = read(dfd, buf, sizeof(buf));
1430 close(dfd);
f21e18ca 1431 if (n <= 0 || (unsigned)n >= sizeof(buf))
a322f70c
DW
1432 continue;
1433 buf[n] = 0;
1434 if (sscanf(buf, "%d:%d", &major, &minor) != 2)
1435 continue;
1436 sprintf(buf, "%d:%d", major, minor);
1437 dfd = dev_open(buf, O_RDONLY);
1438 if (dfd >= 0) {
1439 closedir(dir);
1440 return dfd;
1441 }
1442 }
355726fa 1443 closedir(dir);
a322f70c
DW
1444 return -1;
1445}
1446
33414a01
DW
1447struct superswitch *version_to_superswitch(char *vers)
1448{
1449 int i;
1450
1451 for (i = 0; superlist[i]; i++) {
1452 struct superswitch *ss = superlist[i];
1453
1454 if (strcmp(vers, ss->name) == 0)
1455 return ss;
1456 }
1457
1458 return NULL;
1459}
1460
1461int is_container_member(struct mdstat_ent *mdstat, char *container)
1462{
1463 if (mdstat->metadata_version == NULL ||
1464 strncmp(mdstat->metadata_version, "external:", 9) != 0 ||
1465 !is_subarray(mdstat->metadata_version+9) ||
1466 strncmp(mdstat->metadata_version+10, container, strlen(container)) != 0 ||
1467 mdstat->metadata_version[10+strlen(container)] != '/')
1468 return 0;
1469
1470 return 1;
1471}
1472
1473int is_subarray_active(char *subarray, char *container)
1474{
1475 struct mdstat_ent *mdstat = mdstat_read(0, 0);
1476 struct mdstat_ent *ent;
1477
e5408a32
DW
1478 for (ent = mdstat; ent; ent = ent->next)
1479 if (is_container_member(ent, container))
1480 if (!subarray ||
1481 strcmp(to_subarray(ent, container), subarray) == 0)
33414a01 1482 break;
33414a01
DW
1483
1484 free_mdstat(mdstat);
1485
1486 return ent != NULL;
1487}
1488
1dccfff9
DW
1489int is_container_active(char *container)
1490{
1491 return is_subarray_active(NULL, container);
1492}
1493
33414a01
DW
1494/* open_subarray - opens a subarray in a container
1495 * @dev: container device name
feab51f8 1496 * @st: empty supertype
33414a01
DW
1497 * @quiet: block reporting errors flag
1498 *
1499 * On success returns an fd to a container and fills in *st
1500 */
feab51f8 1501int open_subarray(char *dev, char *subarray, struct supertype *st, int quiet)
33414a01
DW
1502{
1503 struct mdinfo *mdi;
a951a4f7 1504 struct mdinfo *info;
33414a01
DW
1505 int fd, err = 1;
1506
1507 fd = open(dev, O_RDWR|O_EXCL);
1508 if (fd < 0) {
1509 if (!quiet)
1510 fprintf(stderr, Name ": Couldn't open %s, aborting\n",
1511 dev);
1512 return 2;
1513 }
1514
1515 st->devnum = fd2devnum(fd);
1516 if (st->devnum == NoMdDev) {
1517 if (!quiet)
1518 fprintf(stderr,
1519 Name ": Failed to determine device number for %s\n",
1520 dev);
1521 goto close_fd;
1522 }
1523
1524 mdi = sysfs_read(fd, st->devnum, GET_VERSION|GET_LEVEL);
1525 if (!mdi) {
1526 if (!quiet)
1527 fprintf(stderr, Name ": Failed to read sysfs for %s\n",
1528 dev);
1529 goto close_fd;
1530 }
1531
1532 if (mdi->array.level != UnSet) {
1533 if (!quiet)
1534 fprintf(stderr, Name ": %s is not a container\n", dev);
1535 goto free_sysfs;
1536 }
1537
1538 st->ss = version_to_superswitch(mdi->text_version);
1539 if (!st->ss) {
1540 if (!quiet)
1541 fprintf(stderr,
1542 Name ": Operation not supported for %s metadata\n",
1543 mdi->text_version);
1544 goto free_sysfs;
1545 }
1546
1547 st->devname = devnum2devname(st->devnum);
1548 if (!st->devname) {
1549 if (!quiet)
1550 fprintf(stderr, Name ": Failed to allocate device name\n");
1551 goto free_sysfs;
1552 }
1553
db20d413 1554 if (!st->ss->load_container) {
33414a01 1555 if (!quiet)
db20d413 1556 fprintf(stderr, Name ": %s is not a container\n", dev);
33414a01
DW
1557 goto free_name;
1558 }
1559
db20d413 1560 if (st->ss->load_container(st, fd, NULL)) {
33414a01 1561 if (!quiet)
db20d413
N
1562 fprintf(stderr, Name ": Failed to load metadata for %s\n",
1563 dev);
1564 goto free_name;
33414a01
DW
1565 }
1566
a951a4f7
N
1567 info = st->ss->container_content(st, subarray);
1568 if (!info) {
1569 if (!quiet)
1570 fprintf(stderr, Name ": Failed to find subarray-%s in %s\n",
1571 subarray, dev);
1572 goto free_super;
1573 }
1574 free(info);
1575
33414a01
DW
1576 err = 0;
1577
1578 free_super:
1579 if (err)
1580 st->ss->free_super(st);
1581 free_name:
1582 if (err)
1583 free(st->devname);
1584 free_sysfs:
1585 sysfs_free(mdi);
1586 close_fd:
1587 if (err)
1588 close(fd);
1589
1590 if (err)
1591 return -1;
1592 else
1593 return fd;
1594}
1595
7801ac20
N
1596int add_disk(int mdfd, struct supertype *st,
1597 struct mdinfo *sra, struct mdinfo *info)
1598{
1599 /* Add a device to an array, in one of 2 ways. */
1600 int rv;
1601#ifndef MDASSEMBLE
1602 if (st->ss->external) {
d23534e4
DW
1603 if (info->disk.state & (1<<MD_DISK_SYNC))
1604 info->recovery_start = MaxSector;
1605 else
1606 info->recovery_start = 0;
2904b26f 1607 rv = sysfs_add_disk(sra, info, 0);
7801ac20
N
1608 if (! rv) {
1609 struct mdinfo *sd2;
f35f2525
N
1610 for (sd2 = sra->devs; sd2; sd2=sd2->next)
1611 if (sd2 == info)
1612 break;
1613 if (sd2 == NULL) {
1614 sd2 = malloc(sizeof(*sd2));
1615 *sd2 = *info;
1616 sd2->next = sra->devs;
1617 sra->devs = sd2;
1618 }
7801ac20
N
1619 }
1620 } else
1621#endif
1622 rv = ioctl(mdfd, ADD_NEW_DISK, &info->disk);
1623 return rv;
1624}
1625
de6ae750
N
1626int remove_disk(int mdfd, struct supertype *st,
1627 struct mdinfo *sra, struct mdinfo *info)
1628{
1629 int rv;
1630 /* Remove the disk given by 'info' from the array */
1631#ifndef MDASSEMBLE
1632 if (st->ss->external)
1633 rv = sysfs_set_str(sra, info, "slot", "none");
1634 else
1635#endif
1636 rv = ioctl(mdfd, HOT_REMOVE_DISK, makedev(info->disk.major,
1637 info->disk.minor));
1638 return rv;
1639}
1640
f35f2525
N
1641int set_array_info(int mdfd, struct supertype *st, struct mdinfo *info)
1642{
1643 /* Initialise kernel's knowledge of array.
1644 * This varies between externally managed arrays
1645 * and older kernels
1646 */
1647 int vers = md_get_version(mdfd);
1648 int rv;
1649
1650#ifndef MDASSEMBLE
1651 if (st->ss->external)
1652 rv = sysfs_set_array(info, vers);
1653 else
1654#endif
1655 if ((vers % 100) >= 1) { /* can use different versions */
1656 mdu_array_info_t inf;
1657 memset(&inf, 0, sizeof(inf));
1658 inf.major_version = info->array.major_version;
1659 inf.minor_version = info->array.minor_version;
1660 rv = ioctl(mdfd, SET_ARRAY_INFO, &inf);
1661 } else
1662 rv = ioctl(mdfd, SET_ARRAY_INFO, NULL);
1663 return rv;
1664}
1665
1e5c6983
DW
1666unsigned long long min_recovery_start(struct mdinfo *array)
1667{
1668 /* find the minimum recovery_start in an array for metadata
1669 * formats that only record per-array recovery progress instead
1670 * of per-device
1671 */
1672 unsigned long long recovery_start = MaxSector;
1673 struct mdinfo *d;
1674
1675 for (d = array->devs; d; d = d->next)
1676 recovery_start = min(recovery_start, d->recovery_start);
1677
1678 return recovery_start;
1679}
1680
11877f4d 1681void fmt_devname(char *name, int num)
2f6079dc 1682{
1f0769d7 1683 if (num >= 0)
2f6079dc
NB
1684 sprintf(name, "md%d", num);
1685 else
1686 sprintf(name, "md_d%d", -1-num);
11877f4d
N
1687}
1688
1689char *devnum2devname(int num)
1690{
1691 char name[100];
1692 fmt_devname(name,num);
2f6079dc
NB
1693 return strdup(name);
1694}
1695
77472ff8
NB
1696int devname2devnum(char *name)
1697{
1698 char *ep;
1699 int num;
1700 if (strncmp(name, "md_d", 4)==0)
1701 num = -1-strtoul(name+4, &ep, 10);
1702 else
1703 num = strtoul(name+2, &ep, 10);
1704 return num;
1705}
1706
c94709e8 1707int stat2devnum(struct stat *st)
2f6079dc 1708{
d7ab966b
N
1709 char path[30];
1710 char link[200];
1711 char *cp;
1712 int n;
1713
c94709e8
DW
1714 if ((S_IFMT & st->st_mode) == S_IFBLK) {
1715 if (major(st->st_rdev) == MD_MAJOR)
1716 return minor(st->st_rdev);
f21e18ca 1717 else if (major(st->st_rdev) == (unsigned)get_mdp_major())
d7ab966b
N
1718 return -1- (minor(st->st_rdev)>>MdpMinorShift);
1719
1720 /* must be an extended-minor partition. Look at the
1721 * /sys/dev/block/%d:%d link which must look like
1722 * ../../block/mdXXX/mdXXXpYY
1723 */
1724 sprintf(path, "/sys/dev/block/%d:%d", major(st->st_rdev),
1725 minor(st->st_rdev));
1726 n = readlink(path, link, sizeof(link)-1);
1727 if (n <= 0)
1728 return NoMdDev;
1729 link[n] = 0;
1730 cp = strrchr(link, '/');
1731 if (cp) *cp = 0;
1732 cp = strchr(link, '/');
1733 if (cp && strncmp(cp, "/md", 3) == 0)
1734 return devname2devnum(cp+1);
2f6079dc 1735 }
d7ab966b 1736 return NoMdDev;
c94709e8
DW
1737
1738}
1739
1740int fd2devnum(int fd)
1741{
1742 struct stat stb;
1743 if (fstat(fd, &stb) == 0)
1744 return stat2devnum(&stb);
d7ab966b 1745 return NoMdDev;
2f6079dc
NB
1746}
1747
24f6f99b 1748int mdmon_pid(int devnum)
a931db9e
NB
1749{
1750 char path[100];
1751 char pid[10];
1752 int fd;
1753 int n;
10013317
PHC
1754 char *devname = devnum2devname(devnum);
1755
753cf905 1756 sprintf(path, "%s/%s.pid", MDMON_DIR, devname);
10013317
PHC
1757 free(devname);
1758
24f6f99b 1759 fd = open(path, O_RDONLY | O_NOATIME, 0);
a931db9e
NB
1760
1761 if (fd < 0)
cf556303 1762 return -1;
a931db9e
NB
1763 n = read(fd, pid, 9);
1764 close(fd);
1765 if (n <= 0)
cf556303 1766 return -1;
24f6f99b 1767 return atoi(pid);
a931db9e
NB
1768}
1769
24f6f99b 1770int mdmon_running(int devnum)
a931db9e 1771{
24f6f99b
N
1772 int pid = mdmon_pid(devnum);
1773 if (pid <= 0)
a931db9e 1774 return 0;
24f6f99b 1775 if (kill(pid, 0) == 0)
a931db9e
NB
1776 return 1;
1777 return 0;
1778}
1779
8850ee3e
N
1780int start_mdmon(int devnum)
1781{
1782 int i;
44d2e365 1783 int len;
9fe32043
N
1784 pid_t pid;
1785 int status;
44d2e365
N
1786 char pathbuf[1024];
1787 char *paths[4] = {
1788 pathbuf,
1789 "/sbin/mdmon",
1790 "mdmon",
1791 NULL
1792 };
8850ee3e 1793
40ebbb9c 1794 if (check_env("MDADM_NO_MDMON"))
8850ee3e
N
1795 return 0;
1796
44d2e365
N
1797 len = readlink("/proc/self/exe", pathbuf, sizeof(pathbuf));
1798 if (len > 0) {
1799 char *sl;
1800 pathbuf[len] = 0;
1801 sl = strrchr(pathbuf, '/');
1802 if (sl)
1803 sl++;
1804 else
1805 sl = pathbuf;
1806 strcpy(sl, "mdmon");
1807 } else
1808 pathbuf[0] = '\0';
1809
8850ee3e
N
1810 switch(fork()) {
1811 case 0:
1812 /* FIXME yuk. CLOSE_EXEC?? */
1813 for (i=3; i < 100; i++)
1814 close(i);
44d2e365
N
1815 for (i=0; paths[i]; i++)
1816 if (paths[i][0])
1817 execl(paths[i], "mdmon",
e8a70c89
N
1818 devnum2devname(devnum),
1819 NULL);
8850ee3e
N
1820 exit(1);
1821 case -1: fprintf(stderr, Name ": cannot run mdmon. "
1822 "Array remains readonly\n");
1823 return -1;
9fe32043
N
1824 default: /* parent - good */
1825 pid = wait(&status);
1826 if (pid < 0 || status != 0)
1827 return -1;
8850ee3e
N
1828 }
1829 return 0;
1830}
1831
40ebbb9c 1832int check_env(char *name)
5dcfcb71 1833{
40ebbb9c 1834 char *val = getenv(name);
5dcfcb71
DW
1835
1836 if (val && atoi(val) == 1)
1837 return 1;
1838
1839 return 0;
1840}
1841
148acb7b
DW
1842__u32 random32(void)
1843{
1844 __u32 rv;
1845 int rfd = open("/dev/urandom", O_RDONLY);
1846 if (rfd < 0 || read(rfd, &rv, 4) != 4)
1847 rv = random();
1848 if (rfd >= 0)
1849 close(rfd);
1850 return rv;
1851}
1852
0e600426 1853#ifndef MDASSEMBLE
edd8d13c
NB
1854int flush_metadata_updates(struct supertype *st)
1855{
1856 int sfd;
1857 if (!st->updates) {
1858 st->update_tail = NULL;
1859 return -1;
1860 }
1861
1862 sfd = connect_monitor(devnum2devname(st->container_dev));
1863 if (sfd < 0)
1864 return -1;
1865
1866 while (st->updates) {
1867 struct metadata_update *mu = st->updates;
1868 st->updates = mu->next;
1869
1870 send_message(sfd, mu, 0);
1871 wait_reply(sfd, 0);
1872 free(mu->buf);
1873 free(mu);
1874 }
1875 ack(sfd, 0);
1876 wait_reply(sfd, 0);
1877 close(sfd);
1878 st->update_tail = NULL;
1879 return 0;
1880}
1881
1882void append_metadata_update(struct supertype *st, void *buf, int len)
1883{
1884
1885 struct metadata_update *mu = malloc(sizeof(*mu));
1886
1887 mu->buf = buf;
1888 mu->len = len;
1889 mu->space = NULL;
cb23f1f4 1890 mu->space_list = NULL;
edd8d13c
NB
1891 mu->next = NULL;
1892 *st->update_tail = mu;
1893 st->update_tail = &mu->next;
1894}
0e600426 1895#endif /* MDASSEMBLE */
a931db9e 1896
fe6729fa
NB
1897#ifdef __TINYC__
1898/* tinyc doesn't optimize this check in ioctl.h out ... */
1899unsigned int __invalid_size_argument_for_IOC = 0;
1900#endif
1901
6d11ec6f
AK
1902int experimental(void)
1903{
1904 if (check_env("MDADM_EXPERIMENTAL"))
1905 return 1;
1906 else {
1907 fprintf(stderr, Name ": To use this feature MDADM_EXPERIMENTAL enviroment variable has to defined.\n");
1908 return 0;
1909 }
1910}
1911
326727d9
AC
1912/* Pick all spares matching given criteria from a container
1913 * if min_size == 0 do not check size
1914 * if domlist == NULL do not check domains
1915 * if spare_group given add it to domains of each spare
1916 * metadata allows to test domains using metadata of destination array */
1917struct mdinfo *container_choose_spares(struct supertype *st,
1918 unsigned long long min_size,
1919 struct domainlist *domlist,
1920 char *spare_group,
1921 const char *metadata, int get_one)
1922{
1923 struct mdinfo *d, **dp, *disks = NULL;
1924
1925 /* get list of all disks in container */
1926 if (st->ss->getinfo_super_disks)
1927 disks = st->ss->getinfo_super_disks(st);
1928
1929 if (!disks)
1930 return disks;
1931 /* find spare devices on the list */
1932 dp = &disks->devs;
1933 disks->array.spare_disks = 0;
1934 while (*dp) {
1935 int found = 0;
1936 d = *dp;
1937 if (d->disk.state == 0) {
1938 /* check if size is acceptable */
1939 unsigned long long dev_size;
1940 dev_t dev = makedev(d->disk.major,d->disk.minor);
1941
1942 if (!min_size ||
1943 (dev_size_from_id(dev, &dev_size) &&
1944 dev_size >= min_size))
1945 found = 1;
1946 /* check if domain matches */
1947 if (found && domlist) {
1948 struct dev_policy *pol = devnum_policy(dev);
1949 if (spare_group)
1950 pol_add(&pol, pol_domain,
1951 spare_group, NULL);
1952 if (!domain_test(domlist, pol, metadata))
1953 found = 0;
1954 dev_policy_free(pol);
1955 }
1956 }
1957 if (found) {
1958 dp = &d->next;
1959 disks->array.spare_disks++;
1960 if (get_one) {
1961 sysfs_free(*dp);
1962 d->next = NULL;
1963 }
1964 } else {
1965 *dp = d->next;
1966 d->next = NULL;
1967 sysfs_free(d);
1968 }
1969 }
1970 return disks;
1971}