]>
git.ipfire.org Git - thirdparty/mdadm.git/blob - config.c
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
);
164 /* Hack for broken kernels (2.6.14-.24) that put
165 * "active(auto-read-only)"
166 * in /proc/mdstat instead of
167 * "active (auto-read-only)"
169 if (c
== '(' && len
>= 6
170 && strncmp(word
+len
-6, "active", 6) == 0)
174 if (c
!= EOF
) ungetc(c
, file
);
178 /* Further HACK for broken kernels.. 2.6.14-2.6.24 */
179 if (strcmp(word
, "auto-read-only)") == 0)
180 strcpy(word
, "(auto-read-only)");
182 /* printf("word is <%s>\n", word); */
191 * conf_line reads one logical line from the conffile.
192 * It skips comments and continues until it finds a line that starts
193 * with a non blank/comment. This character is pushed back for the next call
194 * A doubly linked list of words is returned.
195 * the first word will be a keyword. Other words will have had quotes removed.
198 char *conf_line(FILE *file
)
203 w
= conf_word(file
, 1);
204 if (w
== NULL
) return NULL
;
210 while ((w
= conf_word(file
,0))){
211 char *w2
= dl_strdup(w
);
215 /* printf("got a line\n");*/
219 void free_line(char *line
)
222 for (w
=dl_next(line
); w
!= line
; w
=dl_next(line
)) {
231 struct conf_dev
*next
;
235 mddev_dev_t
load_partitions(void)
237 FILE *f
= fopen("/proc/partitions", "r");
239 mddev_dev_t rv
= NULL
;
241 fprintf(stderr
, Name
": cannot open /proc/partitions\n");
244 while (fgets(buf
, 1024, f
)) {
252 major
= strtoul(buf
, &mp
, 10);
253 if (mp
== buf
|| *mp
!= ' ')
255 minor
= strtoul(mp
, NULL
, 10);
257 name
= map_dev(major
, minor
, 1);
260 d
= malloc(sizeof(*d
));
261 d
->devname
= strdup(name
);
271 mddev_dev_t
load_containers(void)
273 struct mdstat_ent
*mdstat
= mdstat_read(1, 0);
274 struct mdstat_ent
*ent
;
276 mddev_dev_t rv
= NULL
;
281 for (ent
= mdstat
; ent
; ent
= ent
->next
)
282 if (ent
->metadata_version
&&
283 strncmp(ent
->metadata_version
, "external:", 9) == 0 &&
284 !is_subarray(&ent
->metadata_version
[9])) {
285 d
= malloc(sizeof(*d
));
288 if (asprintf(&d
->devname
, "/dev/%s", ent
->dev
) < 0) {
302 struct createinfo createinfo
= {
303 .autof
= 2, /* by default, create devices with standard names */
313 int parse_auto(char *str
, char *msg
, int config
)
316 if (str
== NULL
|| *str
== 0)
318 else if (strcasecmp(str
,"no")==0)
320 else if (strcasecmp(str
,"yes")==0)
322 else if (strcasecmp(str
,"md")==0)
325 /* There might be digits, and maybe a hypen, at the end */
326 char *e
= str
+ strlen(str
);
329 while (e
> str
&& isdigit(e
[-1]))
333 if (num
<= 0) num
= 1;
335 if (e
> str
&& e
[-1] == '-')
338 if ((len
== 2 && strncasecmp(str
,"md",2)==0)) {
339 autof
= config
? 5 : 3;
340 } else if ((len
== 3 && strncasecmp(str
,"yes",3)==0)) {
342 } else if ((len
== 3 && strncasecmp(str
,"mdp",3)==0)) {
343 autof
= config
? 6 : 4;
344 } else if ((len
== 1 && strncasecmp(str
,"p",1)==0) ||
345 (len
>= 4 && strncasecmp(str
,"part",4)==0)) {
348 fprintf(stderr
, Name
": %s arg of \"%s\" unrecognised: use no,yes,md,mdp,part\n"
349 " optionally followed by a number.\n",
358 static void createline(char *line
)
363 for (w
=dl_next(line
); w
!=line
; w
=dl_next(w
)) {
364 if (strncasecmp(w
, "auto=", 5) == 0)
365 createinfo
.autof
= parse_auto(w
+5, "auto=", 1);
366 else if (strncasecmp(w
, "owner=", 6) == 0) {
368 fprintf(stderr
, Name
": missing owner name\n");
371 createinfo
.uid
= strtoul(w
+6, &ep
, 10);
377 createinfo
.uid
= pw
->pw_uid
;
379 fprintf(stderr
, Name
": CREATE user %s not found\n", w
+6);
381 } else if (strncasecmp(w
, "group=", 6) == 0) {
383 fprintf(stderr
, Name
": missing group name\n");
386 createinfo
.gid
= strtoul(w
+6, &ep
, 10);
392 createinfo
.gid
= gr
->gr_gid
;
394 fprintf(stderr
, Name
": CREATE group %s not found\n", w
+6);
396 } else if (strncasecmp(w
, "mode=", 5) == 0) {
398 fprintf(stderr
, Name
": missing CREATE mode\n");
401 createinfo
.mode
= strtoul(w
+5, &ep
, 8);
403 createinfo
.mode
= 0600;
404 fprintf(stderr
, Name
": unrecognised CREATE mode %s\n",
407 } else if (strncasecmp(w
, "metadata=", 9) == 0) {
408 /* style of metadata to use by default */
410 for (i
=0; superlist
[i
] && !createinfo
.supertype
; i
++)
411 createinfo
.supertype
=
412 superlist
[i
]->match_metadata_desc(w
+9);
413 if (!createinfo
.supertype
)
414 fprintf(stderr
, Name
": metadata format %s unknown, ignoring\n",
416 } else if (strncasecmp(w
, "symlinks=yes", 12) == 0)
417 createinfo
.symlinks
= 1;
418 else if (strncasecmp(w
, "symlinks=no", 11) == 0)
419 createinfo
.symlinks
= 0;
421 fprintf(stderr
, Name
": unrecognised word on CREATE line: %s\n",
427 void devline(char *line
)
432 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
433 if (w
[0] == '/' || strcasecmp(w
, "partitions") == 0 ||
434 strcasecmp(w
, "containers") == 0) {
435 cd
= malloc(sizeof(*cd
));
436 cd
->name
= strdup(w
);
440 fprintf(stderr
, Name
": unreconised word on DEVICE line: %s\n",
446 mddev_ident_t mddevlist
= NULL
;
447 mddev_ident_t
*mddevlp
= &mddevlist
;
449 void arrayline(char *line
)
453 struct mddev_ident_s mis
;
457 mis
.super_minor
= UnSet
;
459 mis
.raid_disks
= UnSet
;
463 mis
.spare_group
= NULL
;
468 mis
.bitmap_file
= NULL
;
470 mis
.container
= NULL
;
473 for (w
=dl_next(line
); w
!=line
; w
=dl_next(w
)) {
476 fprintf(stderr
, Name
": only give one device per ARRAY line: %s and %s\n",
478 else mis
.devname
= w
;
479 } else if (strncasecmp(w
, "uuid=", 5)==0 ) {
481 fprintf(stderr
, Name
": only specify uuid once, %s ignored.\n",
484 if (parse_uuid(w
+5, mis
.uuid
))
487 fprintf(stderr
, Name
": bad uuid: %s\n", w
);
489 } else if (strncasecmp(w
, "super-minor=", 12)==0 ) {
490 if (mis
.super_minor
!= UnSet
)
491 fprintf(stderr
, Name
": only specify super-minor once, %s ignored.\n",
495 mis
.super_minor
= strtol(w
+12, &endptr
, 10);
496 if (w
[12]==0 || endptr
[0]!=0 || mis
.super_minor
< 0) {
497 fprintf(stderr
, Name
": invalid super-minor number: %s\n",
499 mis
.super_minor
= UnSet
;
502 } else if (strncasecmp(w
, "name=", 5)==0) {
504 fprintf(stderr
, Name
": only specify name once, %s ignored.\n",
506 else if (strlen(w
+5) > 32)
507 fprintf(stderr
, Name
": name too long, ignoring %s\n", w
);
509 strcpy(mis
.name
, w
+5);
511 } else if (strncasecmp(w
, "bitmap=", 7) == 0) {
513 fprintf(stderr
, Name
": only specify bitmap file once. %s ignored\n",
516 mis
.bitmap_file
= strdup(w
+7);
518 } else if (strncasecmp(w
, "devices=", 8 ) == 0 ) {
520 fprintf(stderr
, Name
": only specify devices once (use a comma separated list). %s ignored\n",
523 mis
.devices
= strdup(w
+8);
524 } else if (strncasecmp(w
, "spare-group=", 12) == 0 ) {
526 fprintf(stderr
, Name
": only specify one spare group per array. %s ignored.\n",
529 mis
.spare_group
= strdup(w
+12);
530 } else if (strncasecmp(w
, "level=", 6) == 0 ) {
531 /* this is mainly for compatability with --brief output */
532 mis
.level
= map_name(pers
, w
+6);
533 } else if (strncasecmp(w
, "disks=", 6) == 0 ) {
534 /* again, for compat */
535 mis
.raid_disks
= atoi(w
+6);
536 } else if (strncasecmp(w
, "num-devices=", 12) == 0 ) {
537 /* again, for compat */
538 mis
.raid_disks
= atoi(w
+12);
539 } else if (strncasecmp(w
, "spares=", 7) == 0 ) {
540 /* for warning if not all spares present */
541 mis
.spare_disks
= atoi(w
+7);
542 } else if (strncasecmp(w
, "metadata=", 9) == 0) {
543 /* style of metadata on the devices. */
546 for(i
=0; superlist
[i
] && !mis
.st
; i
++)
547 mis
.st
= superlist
[i
]->match_metadata_desc(w
+9);
550 fprintf(stderr
, Name
": metadata format %s unknown, ignored.\n", w
+9);
551 } else if (strncasecmp(w
, "auto=", 5) == 0 ) {
552 /* whether to create device special files as needed */
553 mis
.autof
= parse_auto(w
+5, "auto type", 0);
554 } else if (strncasecmp(w
, "member=", 7) == 0) {
555 /* subarray within a container */
556 mis
.member
= strdup(w
+7);
557 } else if (strncasecmp(w
, "container=", 10) == 0) {
558 /* the container holding this subarray. Either a device name
560 mis
.container
= strdup(w
+10);
562 fprintf(stderr
, Name
": unrecognised word on ARRAY line: %s\n",
566 if (mis
.uuid_set
== 0 && mis
.devices
== NULL
&& mis
.super_minor
== UnSet
&& mis
.name
[0] == 0)
567 fprintf(stderr
, Name
": ARRAY line %s has no identity information.\n", mis
.devname
);
569 mi
= malloc(sizeof(*mi
));
571 mi
->devname
= mis
.devname
? strdup(mis
.devname
) : NULL
;
578 static char *alert_email
= NULL
;
579 void mailline(char *line
)
583 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
584 if (alert_email
== NULL
)
585 alert_email
= strdup(w
);
587 fprintf(stderr
, Name
": excess address on MAIL line: %s - ignored\n",
592 static char *alert_mail_from
= NULL
;
593 void mailfromline(char *line
)
597 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
598 if (alert_mail_from
== NULL
)
599 alert_mail_from
= strdup(w
);
603 if (xasprintf(&t
, "%s %s", alert_mail_from
, w
) > 0) {
604 free(alert_mail_from
);
612 static char *alert_program
= NULL
;
613 void programline(char *line
)
617 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
618 if (alert_program
== NULL
)
619 alert_program
= strdup(w
);
621 fprintf(stderr
, Name
": excess program on PROGRAM line: %s - ignored\n",
626 static char *home_host
= NULL
;
627 void homehostline(char *line
)
631 for (w
=dl_next(line
); w
!= line
; w
=dl_next(w
)) {
632 if (home_host
== NULL
)
633 home_host
= strdup(w
);
635 fprintf(stderr
, Name
": excess host name on HOMEHOST line: %s - ignored\n",
643 static char *conffile
= NULL
;
644 void set_conffile(char *file
)
649 void load_conffile(void)
655 if (conffile
== NULL
)
656 conffile
= DefaultConfFile
;
658 if (strcmp(conffile
, "none") == 0) {
662 if (strcmp(conffile
, "partitions")==0) {
663 char *list
= dl_strdup("DEV");
665 dl_add(list
, dl_strdup("partitions"));
671 f
= fopen(conffile
, "r");
672 /* Debian chose to relocate mdadm.conf into /etc/mdadm/.
673 * To allow Debian users to compile from clean source and still
674 * have a working mdadm, we read /etc/mdadm/mdadm.conf
675 * if /etc/mdadm.conf doesn't exist
678 conffile
== DefaultConfFile
) {
679 f
= fopen(DefaultAltConfFile
, "r");
681 conffile
= DefaultAltConfFile
;
687 while ((line
=conf_line(f
))) {
688 switch(match_keyword(line
)) {
711 fprintf(stderr
, Name
": Unknown keyword %s\n", line
);
718 /* printf("got file\n"); */
721 char *conf_get_mailaddr(void)
727 char *conf_get_mailfrom(void)
730 return alert_mail_from
;
733 char *conf_get_program(void)
736 return alert_program
;
739 char *conf_get_homehost(void)
745 struct createinfo
*conf_get_create_info(void)
751 mddev_ident_t
conf_get_ident(char *dev
)
756 while (dev
&& rv
&& (rv
->devname
== NULL
757 || strcmp(dev
, rv
->devname
)!=0))
762 static void append_dlist(mddev_dev_t
*dlp
, mddev_dev_t list
)
769 mddev_dev_t
conf_get_devs()
774 static mddev_dev_t dlist
= NULL
;
778 mddev_dev_t t
= dlist
;
786 if (cdevlist
== NULL
) {
787 /* default to 'partitions' and 'containers' */
788 dlist
= load_partitions();
789 append_dlist(&dlist
, load_containers());
792 for (cd
=cdevlist
; cd
; cd
=cd
->next
) {
793 if (strcasecmp(cd
->name
, "partitions")==0)
794 append_dlist(&dlist
, load_partitions());
795 else if (strcasecmp(cd
->name
, "containers")==0)
796 append_dlist(&dlist
, load_containers());
798 glob(cd
->name
, flags
, NULL
, &globbuf
);
799 flags
|= GLOB_APPEND
;
802 if (flags
& GLOB_APPEND
) {
803 for (i
=0; i
<globbuf
.gl_pathc
; i
++) {
804 mddev_dev_t t
= malloc(sizeof(*t
));
805 t
->devname
= strdup(globbuf
.gl_pathv
[i
]);
810 /* printf("one dev is %s\n", t->devname);*/
818 int conf_test_dev(char *devname
)
821 if (cdevlist
== NULL
)
822 /* allow anything by default */
824 for (cd
= cdevlist
; cd
; cd
= cd
->next
) {
825 if (strcasecmp(cd
->name
, "partitions") == 0)
827 if (fnmatch(cd
->name
, devname
, FNM_PATHNAME
) == 0)
834 int match_oneof(char *devices
, char *devname
)
836 /* check if one of the comma separated patterns in devices
841 while (devices
&& *devices
) {
844 devices
= strchr(devices
, ',');
846 devices
= p
+ strlen(p
);
847 if (devices
-p
< 1024) {
848 strncpy(patn
, p
, devices
-p
);
850 if (fnmatch(patn
, devname
, FNM_PATHNAME
)==0)