2 * mdadm - manage Linux "md" devices aka RAID arrays.
4 * Copyright (C) 2001-2006 Neil Brown <neilb@suse.de>
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.
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.
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
22 * Email: <neilb@cse.unsw.edu.au>
24 * School of Computer Science and Engineering
25 * The University of New South Wales
40 * Read the config file
42 * conf_get_uuids gets a list of devicename+uuid pairs
43 * conf_get_devs gets device names after expanding wildcards
45 * Each keeps the returned list and frees it when asked to make
48 * The format of the config file needs to be fairly extensible.
49 * Now, arrays only have names and uuids and devices merely are.
50 * But later arrays might want names, and devices might want superblock
51 * versions, and who knows what else.
52 * I like free format, abhore backslash line continuation, adore
53 * indentation for structure and am ok about # comments.
55 * So, each line that isn't blank or a #comment must either start
56 * with a key word, and not be indented, or must start with a
57 * non-key-word and must be indented.
59 * Keywords are DEVICE and ARRAY
60 * DEV{ICE} introduces some devices that might contain raid components.
62 * DEV style=0 /dev/sda* /dev/hd*
63 * DEV style=1 /dev/sd[b-f]*
64 * ARR{AY} describes an array giving md device and attributes like uuid=whatever
66 * ARRAY /dev/md0 uuid=whatever name=something
67 * Spaces separate words on each line. Quoting, with "" or '' protects them,
68 * but may not wrap over lines
73 #define CONFFILE "/etc/mdadm.conf"
76 /* for Debian compatibility .... */
77 #define CONFFILE2 "/etc/mdadm/mdadm.conf"
79 char DefaultConfFile
[] = CONFFILE
;
80 char DefaultAltConfFile
[] = CONFFILE2
;
82 enum linetype
{ Devices
, Array
, Mailaddr
, Mailfrom
, Program
, CreateDev
, Homehost
, LTEnd
};
84 [Devices
] = "devices",
86 [Mailaddr
] = "mailaddr",
87 [Mailfrom
] = "mailfrom",
88 [Program
] = "program",
89 [CreateDev
]= "create",
90 [Homehost
] = "homehost",
95 * match_keyword returns an index into the keywords array, or -1 for no match
96 * case is ignored, and at least three characters must be given
99 int match_keyword(char *word
)
101 int len
= strlen(word
);
104 if (len
< 3) return -1;
105 for (n
=0; keywords
[n
]; n
++) {
106 if (strncasecmp(word
, keywords
[n
], len
)==0)
112 /* conf_word gets one word from the conf file.
113 * if "allow_key", then accept words at the start of a line,
114 * otherwise stop when such a word is found.
115 * We assume that the file pointer is at the end of a word, so the
116 * next character is a space, or a newline. If not, it is the start of a line.
119 char *conf_word(FILE *file
, int allow_key
)
126 char *word
= malloc(wsize
);
130 while (wordfound
==0) {
131 /* at the end of a word.. */
134 while (c
!= EOF
&& c
!= '\n')
137 if (c
== '\n') continue;
139 if (c
!= ' ' && c
!= '\t' && ! allow_key
) {
143 /* looks like it is safe to get a word here, if there is one */
145 /* first, skip any spaces */
146 while (c
== ' ' || c
== '\t')
148 if (c
!= EOF
&& c
!= '\n' && c
!= '#') {
149 /* we really have a character of a word, so start saving it */
150 while (c
!= EOF
&& c
!= '\n' && (quote
|| (c
!=' ' && c
!= '\t'))) {
152 if (quote
&& c
== quote
) quote
= 0;
153 else if (quote
== 0 && (c
== '\'' || c
== '"'))
156 if (len
== wsize
-1) {
158 word
= realloc(word
, wsize
);
166 if (c
!= EOF
) ungetc(c
, file
);
169 /* printf("word is <%s>\n", word); */
178 * conf_line reads one logical line from the conffile.
179 * It skips comments and continues until it finds a line that starts
180 * with a non blank/comment. This character is pushed back for the next call
181 * A doubly linked list of words is returned.
182 * the first word will be a keyword. Other words will have had quotes removed.
185 char *conf_line(FILE *file
)
190 w
= conf_word(file
, 1);
191 if (w
== NULL
) return NULL
;
197 while ((w
= conf_word(file
,0))){
198 char *w2
= dl_strdup(w
);
202 /* printf("got a line\n");*/
206 void free_line(char *line
)
209 for (w
=dl_next(line
); w
!= line
; w
=dl_next(line
)) {
218 struct conf_dev
*next
;
222 mddev_dev_t
load_partitions(void)
224 FILE *f
= fopen("/proc/partitions", "r");
226 mddev_dev_t rv
= NULL
;
228 fprintf(stderr
, Name
": cannot open /proc/partitions\n");
231 while (fgets(buf
, 1024, f
)) {
239 major
= strtoul(buf
, &mp
, 10);
240 if (mp
== buf
|| *mp
!= ' ')
242 minor
= strtoul(mp
, NULL
, 10);
244 name
= map_dev(major
, minor
, 1);
247 d
= malloc(sizeof(*d
));
248 d
->devname
= strdup(name
);
257 struct createinfo createinfo
= {
258 .autof
= 2, /* by default, create devices with standard names */
268 int parse_auto(char *str
, char *msg
, int config
)
271 if (str
== NULL
|| *str
== 0)
273 else if (strcasecmp(str
,"no")==0)
275 else if (strcasecmp(str
,"yes")==0)
277 else if (strcasecmp(str
,"md")==0)
280 /* There might be digits, and maybe a hypen, at the end */
281 char *e
= str
+ strlen(str
);
284 while (e
> str
&& isdigit(e
[-1]))
288 if (num
<= 0) num
= 1;
290 if (e
> str
&& e
[-1] == '-')
293 if ((len
== 2 && strncasecmp(str
,"md",2)==0)) {
294 autof
= config
? 5 : 3;
295 } else if ((len
== 3 && strncasecmp(str
,"yes",3)==0)) {
297 } else if ((len
== 3 && strncasecmp(str
,"mdp",3)==0)) {
298 autof
= config
? 6 : 4;
299 } else if ((len
== 1 && strncasecmp(str
,"p",1)==0) ||
300 (len
>= 4 && strncasecmp(str
,"part",4)==0)) {
303 fprintf(stderr
, Name
": %s arg of \"%s\" unrecognised: use no,yes,md,mdp,part\n"
304 " optionally followed by a number.\n",
313 static void createline(char *line
)
318 for (w
=dl_next(line
); w
!=line
; w
=dl_next(w
)) {
319 if (strncasecmp(w
, "auto=", 5) == 0)
320 createinfo
.autof
= parse_auto(w
+5, "auto=", 1);
321 else if (strncasecmp(w
, "owner=", 6) == 0) {
323 fprintf(stderr
, Name
": missing owner name\n");
326 createinfo
.uid
= strtoul(w
+6, &ep
, 10);
332 createinfo
.uid
= pw
->pw_uid
;
334 fprintf(stderr
, Name
": CREATE user %s not found\n", w
+6);
336 } else if (strncasecmp(w
, "group=", 6) == 0) {
338 fprintf(stderr
, Name
": missing group name\n");
341 createinfo
.gid
= strtoul(w
+6, &ep
, 10);
347 createinfo
.gid
= gr
->gr_gid
;
349 fprintf(stderr
, Name
": CREATE group %s not found\n", w
+6);
351 } else if (strncasecmp(w
, "mode=", 5) == 0) {
353 fprintf(stderr
, Name
": missing CREATE mode\n");
356 createinfo
.mode
= strtoul(w
+5, &ep
, 8);
358 createinfo
.mode
= 0600;
359 fprintf(stderr
, Name
": unrecognised CREATE mode %s\n",
362 } else if (strncasecmp(w
, "metadata=", 9) == 0) {
363 /* style of metadata to use by default */
365 for (i
=0; superlist
[i
] && !createinfo
.supertype
; i
++)
366 createinfo
.supertype
=
367 superlist
[i
]->match_metadata_desc(w
+9);
368 if (!createinfo
.supertype
)
369 fprintf(stderr
, Name
": metadata format %s unknown, ignoring\n",
371 } else if (strncasecmp(w
, "symlinks=yes", 12) == 0)
372 createinfo
.symlinks
= 1;
373 else if (strncasecmp(w
, "symlinks=no", 11) == 0)
374 createinfo
.symlinks
= 0;
376 fprintf(stderr
, Name
": unrecognised word on CREATE line: %s\n",
382 void devline(char *line
)
387 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
388 if (w
[0] == '/' || strcasecmp(w
, "partitions") == 0) {
389 cd
= malloc(sizeof(*cd
));
390 cd
->name
= strdup(w
);
394 fprintf(stderr
, Name
": unreconised word on DEVICE line: %s\n",
400 mddev_ident_t mddevlist
= NULL
;
401 mddev_ident_t
*mddevlp
= &mddevlist
;
403 void arrayline(char *line
)
407 struct mddev_ident_s mis
;
411 mis
.super_minor
= UnSet
;
413 mis
.raid_disks
= UnSet
;
417 mis
.spare_group
= NULL
;
422 mis
.bitmap_file
= NULL
;
425 for (w
=dl_next(line
); w
!=line
; w
=dl_next(w
)) {
428 fprintf(stderr
, Name
": only give one device per ARRAY line: %s and %s\n",
430 else mis
.devname
= w
;
431 } else if (strncasecmp(w
, "uuid=", 5)==0 ) {
433 fprintf(stderr
, Name
": only specify uuid once, %s ignored.\n",
436 if (parse_uuid(w
+5, mis
.uuid
))
439 fprintf(stderr
, Name
": bad uuid: %s\n", w
);
441 } else if (strncasecmp(w
, "super-minor=", 12)==0 ) {
442 if (mis
.super_minor
!= UnSet
)
443 fprintf(stderr
, Name
": only specify super-minor once, %s ignored.\n",
447 mis
.super_minor
= strtol(w
+12, &endptr
, 10);
448 if (w
[12]==0 || endptr
[0]!=0 || mis
.super_minor
< 0) {
449 fprintf(stderr
, Name
": invalid super-minor number: %s\n",
451 mis
.super_minor
= UnSet
;
454 } else if (strncasecmp(w
, "name=", 5)==0) {
456 fprintf(stderr
, Name
": only specify name once, %s ignored.\n",
458 else if (strlen(w
+5) > 32)
459 fprintf(stderr
, Name
": name too long, ignoring %s\n", w
);
461 strcpy(mis
.name
, w
+5);
463 } else if (strncasecmp(w
, "bitmap=", 7) == 0) {
465 fprintf(stderr
, Name
": only specify bitmap file once. %s ignored\n",
468 mis
.bitmap_file
= strdup(w
+7);
470 } else if (strncasecmp(w
, "devices=", 8 ) == 0 ) {
472 fprintf(stderr
, Name
": only specify devices once (use a comma separated list). %s ignored\n",
475 mis
.devices
= strdup(w
+8);
476 } else if (strncasecmp(w
, "spare-group=", 12) == 0 ) {
478 fprintf(stderr
, Name
": only specify one spare group per array. %s ignored.\n",
481 mis
.spare_group
= strdup(w
+12);
482 } else if (strncasecmp(w
, "level=", 6) == 0 ) {
483 /* this is mainly for compatability with --brief output */
484 mis
.level
= map_name(pers
, w
+6);
485 } else if (strncasecmp(w
, "disks=", 6) == 0 ) {
486 /* again, for compat */
487 mis
.raid_disks
= atoi(w
+6);
488 } else if (strncasecmp(w
, "num-devices=", 12) == 0 ) {
489 /* again, for compat */
490 mis
.raid_disks
= atoi(w
+12);
491 } else if (strncasecmp(w
, "spares=", 7) == 0 ) {
492 /* for warning if not all spares present */
493 mis
.spare_disks
= atoi(w
+7);
494 } else if (strncasecmp(w
, "metadata=", 9) == 0) {
495 /* style of metadata on the devices. */
498 for(i
=0; superlist
[i
] && !mis
.st
; i
++)
499 mis
.st
= superlist
[i
]->match_metadata_desc(w
+9);
502 fprintf(stderr
, Name
": metadata format %s unknown, ignored.\n", w
+9);
503 } else if (strncasecmp(w
, "auto=", 5) == 0 ) {
504 /* whether to create device special files as needed */
505 mis
.autof
= parse_auto(w
+5, "auto type", 0);
507 fprintf(stderr
, Name
": unrecognised word on ARRAY line: %s\n",
511 if (mis
.devname
== NULL
)
512 fprintf(stderr
, Name
": ARRAY line with no device\n");
513 else if (mis
.uuid_set
== 0 && mis
.devices
== NULL
&& mis
.super_minor
== UnSet
&& mis
.name
[0] == 0)
514 fprintf(stderr
, Name
": ARRAY line %s has no identity information.\n", mis
.devname
);
516 mi
= malloc(sizeof(*mi
));
518 mi
->devname
= strdup(mis
.devname
);
525 static char *alert_email
= NULL
;
526 void mailline(char *line
)
530 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
531 if (alert_email
== NULL
)
532 alert_email
= strdup(w
);
534 fprintf(stderr
, Name
": excess address on MAIL line: %s - ignored\n",
539 static char *alert_mail_from
= NULL
;
540 void mailfromline(char *line
)
544 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
545 if (alert_mail_from
== NULL
)
546 alert_mail_from
= strdup(w
);
549 asprintf(&t
, "%s %s", alert_mail_from
, w
);
550 free(alert_mail_from
);
557 static char *alert_program
= NULL
;
558 void programline(char *line
)
562 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
563 if (alert_program
== NULL
)
564 alert_program
= strdup(w
);
566 fprintf(stderr
, Name
": excess program on PROGRAM line: %s - ignored\n",
571 static char *home_host
= NULL
;
572 void homehostline(char *line
)
576 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
577 if (home_host
== NULL
)
578 home_host
= strdup(w
);
580 fprintf(stderr
, Name
": excess host name on HOMEHOST line: %s - ignored\n",
588 static char *conffile
= NULL
;
589 void set_conffile(char *file
)
594 void load_conffile(void)
600 if (conffile
== NULL
)
601 conffile
= DefaultConfFile
;
603 if (strcmp(conffile
, "none") == 0) {
607 if (strcmp(conffile
, "partitions")==0) {
608 char *list
= dl_strdup("DEV");
610 dl_add(list
, dl_strdup("partitions"));
616 f
= fopen(conffile
, "r");
617 /* Debian chose to relocate mdadm.conf into /etc/mdadm/.
618 * To allow Debian users to compile from clean source and still
619 * have a working mdadm, we read /etc/mdadm/mdadm.conf
620 * if /etc/mdadm.conf doesn't exist
623 conffile
== DefaultConfFile
) {
624 f
= fopen(DefaultAltConfFile
, "r");
626 conffile
= DefaultAltConfFile
;
632 while ((line
=conf_line(f
))) {
633 switch(match_keyword(line
)) {
656 fprintf(stderr
, Name
": Unknown keyword %s\n", line
);
663 /* printf("got file\n"); */
666 char *conf_get_mailaddr(void)
672 char *conf_get_mailfrom(void)
675 return alert_mail_from
;
678 char *conf_get_program(void)
681 return alert_program
;
684 char *conf_get_homehost(void)
690 struct createinfo
*conf_get_create_info(void)
696 mddev_ident_t
conf_get_ident(char *dev
)
701 while (dev
&& rv
&& strcmp(dev
, rv
->devname
)!=0)
706 mddev_dev_t
conf_get_devs()
711 static mddev_dev_t dlist
= NULL
;
715 mddev_dev_t t
= dlist
;
723 if (cdevlist
== NULL
)
724 /* default to 'partitions */
725 dlist
= load_partitions();
727 for (cd
=cdevlist
; cd
; cd
=cd
->next
) {
728 if (strcasecmp(cd
->name
, "partitions")==0 && dlist
== NULL
)
729 dlist
= load_partitions();
731 glob(cd
->name
, flags
, NULL
, &globbuf
);
732 flags
|= GLOB_APPEND
;
735 if (flags
& GLOB_APPEND
) {
736 for (i
=0; i
<globbuf
.gl_pathc
; i
++) {
737 mddev_dev_t t
= malloc(sizeof(*t
));
738 t
->devname
= strdup(globbuf
.gl_pathv
[i
]);
742 /* printf("one dev is %s\n", t->devname);*/
750 int conf_test_dev(char *devname
)
753 if (cdevlist
== NULL
)
754 /* allow anything by default */
756 for (cd
= cdevlist
; cd
; cd
= cd
->next
) {
757 if (strcasecmp(cd
->name
, "partitions") == 0)
759 if (fnmatch(cd
->name
, devname
, FNM_PATHNAME
) == 0)
766 int match_oneof(char *devices
, char *devname
)
768 /* check if one of the comma separated patterns in devices
773 while (devices
&& *devices
) {
776 devices
= strchr(devices
, ',');
778 devices
= p
+ strlen(p
);
779 if (devices
-p
< 1024) {
780 strncpy(patn
, p
, devices
-p
);
782 if (fnmatch(patn
, devname
, FNM_PATHNAME
)==0)