]> git.ipfire.org Git - thirdparty/mdadm.git/blame - config.c
Fix tests on ->container and ->member
[thirdparty/mdadm.git] / config.c
CommitLineData
64c4757e 1/*
9a9dab36 2 * mdadm - manage Linux "md" devices aka RAID arrays.
64c4757e 3 *
4f589ad0 4 * Copyright (C) 2001-2006 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
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"
82b27616 31#include "dlink.h"
ff7f2ebb 32#include <dirent.h>
82b27616 33#include <glob.h>
52826846 34#include <fnmatch.h>
dd0781e5 35#include <ctype.h>
5bbb4842
NB
36#include <pwd.h>
37#include <grp.h>
52826846 38
64c4757e
NB
39/*
40 * Read the config file
41 *
42 * conf_get_uuids gets a list of devicename+uuid pairs
43 * conf_get_devs gets device names after expanding wildcards
44 *
45 * Each keeps the returned list and frees it when asked to make
46 * a new list.
47 *
82b27616
NB
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.
54 *
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.
58 *
31015d57 59 * Keywords are DEVICE and ARRAY ... and several others.
82b27616
NB
60 * DEV{ICE} introduces some devices that might contain raid components.
61 * e.g.
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
65 * e.g.
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
69 *
64c4757e
NB
70 */
71
11a3e71d
NB
72#ifndef CONFFILE
73#define CONFFILE "/etc/mdadm.conf"
74#endif
ce4fafd6
NB
75#ifndef CONFFILE2
76/* for Debian compatibility .... */
77#define CONFFILE2 "/etc/mdadm/mdadm.conf"
78#endif
11a3e71d 79char DefaultConfFile[] = CONFFILE;
ce4fafd6 80char DefaultAltConfFile[] = CONFFILE2;
64c4757e 81
31015d57
N
82enum linetype { Devices, Array, Mailaddr, Mailfrom, Program, CreateDev,
83 Homehost, AutoMode, LTEnd };
8fe9db0f
NB
84char *keywords[] = {
85 [Devices] = "devices",
86 [Array] = "array",
87 [Mailaddr] = "mailaddr",
88 [Mailfrom] = "mailfrom",
89 [Program] = "program",
8382f19b 90 [CreateDev]= "create",
8fe9db0f 91 [Homehost] = "homehost",
31015d57 92 [AutoMode] = "auto",
8fe9db0f
NB
93 [LTEnd] = NULL
94};
82b27616
NB
95
96/*
97 * match_keyword returns an index into the keywords array, or -1 for no match
98 * case is ignored, and at least three characters must be given
99 */
100
101int match_keyword(char *word)
102{
52826846
NB
103 int len = strlen(word);
104 int n;
aba69144 105
52826846
NB
106 if (len < 3) return -1;
107 for (n=0; keywords[n]; n++) {
108 if (strncasecmp(word, keywords[n], len)==0)
109 return n;
110 }
111 return -1;
82b27616
NB
112}
113
114/* conf_word gets one word from the conf file.
115 * if "allow_key", then accept words at the start of a line,
116 * otherwise stop when such a word is found.
117 * We assume that the file pointer is at the end of a word, so the
118 * next character is a space, or a newline. If not, it is the start of a line.
119 */
120
121char *conf_word(FILE *file, int allow_key)
122{
52826846
NB
123 int wsize = 100;
124 int len = 0;
125 int c;
126 int quote;
127 int wordfound = 0;
128 char *word = malloc(wsize);
82b27616 129
52826846
NB
130 if (!word) abort();
131
132 while (wordfound==0) {
133 /* at the end of a word.. */
82b27616 134 c = getc(file);
52826846
NB
135 if (c == '#')
136 while (c != EOF && c != '\n')
137 c = getc(file);
138 if (c == EOF) break;
139 if (c == '\n') continue;
140
141 if (c != ' ' && c != '\t' && ! allow_key) {
142 ungetc(c, file);
143 break;
144 }
145 /* looks like it is safe to get a word here, if there is one */
146 quote = 0;
147 /* first, skip any spaces */
148 while (c == ' ' || c == '\t')
149 c = getc(file);
150 if (c != EOF && c != '\n' && c != '#') {
151 /* we really have a character of a word, so start saving it */
152 while (c != EOF && c != '\n' && (quote || (c!=' ' && c != '\t'))) {
153 wordfound = 1;
154 if (quote && c == quote) quote = 0;
155 else if (quote == 0 && (c == '\'' || c == '"'))
156 quote = c;
157 else {
158 if (len == wsize-1) {
159 wsize += 100;
160 word = realloc(word, wsize);
161 if (!word) abort();
162 }
163 word[len++] = c;
164 }
165 c = getc(file);
2cdb6489
NB
166 /* Hack for broken kernels (2.6.14-.24) that put
167 * "active(auto-read-only)"
168 * in /proc/mdstat instead of
169 * "active (auto-read-only)"
170 */
171 if (c == '(' && len >= 6
172 && strncmp(word+len-6, "active", 6) == 0)
173 c = ' ';
52826846
NB
174 }
175 }
176 if (c != EOF) ungetc(c, file);
82b27616 177 }
52826846 178 word[len] = 0;
2cdb6489
NB
179
180 /* Further HACK for broken kernels.. 2.6.14-2.6.24 */
181 if (strcmp(word, "auto-read-only)") == 0)
182 strcpy(word, "(auto-read-only)");
183
82b27616 184/* printf("word is <%s>\n", word); */
52826846
NB
185 if (!wordfound) {
186 free(word);
187 word = NULL;
188 }
189 return word;
82b27616 190}
aba69144 191
82b27616
NB
192/*
193 * conf_line reads one logical line from the conffile.
194 * It skips comments and continues until it finds a line that starts
195 * with a non blank/comment. This character is pushed back for the next call
196 * A doubly linked list of words is returned.
197 * the first word will be a keyword. Other words will have had quotes removed.
198 */
199
200char *conf_line(FILE *file)
201{
52826846
NB
202 char *w;
203 char *list;
82b27616 204
52826846
NB
205 w = conf_word(file, 1);
206 if (w == NULL) return NULL;
82b27616 207
52826846 208 list = dl_strdup(w);
82b27616 209 free(w);
52826846
NB
210 dl_init(list);
211
212 while ((w = conf_word(file,0))){
213 char *w2 = dl_strdup(w);
214 free(w);
215 dl_add(list, w2);
216 }
82b27616 217/* printf("got a line\n");*/
52826846 218 return list;
82b27616
NB
219}
220
221void free_line(char *line)
222{
52826846
NB
223 char *w;
224 for (w=dl_next(line); w != line; w=dl_next(line)) {
225 dl_del(w);
226 dl_free(w);
227 }
228 dl_free(line);
82b27616
NB
229}
230
231
232struct conf_dev {
233 struct conf_dev *next;
234 char *name;
235} *cdevlist = NULL;
236
057bd352 237mddev_dev_t load_partitions(void)
5787fa49
NB
238{
239 FILE *f = fopen("/proc/partitions", "r");
240 char buf[1024];
057bd352 241 mddev_dev_t rv = NULL;
5787fa49
NB
242 if (f == NULL) {
243 fprintf(stderr, Name ": cannot open /proc/partitions\n");
057bd352 244 return NULL;
5787fa49
NB
245 }
246 while (fgets(buf, 1024, f)) {
247 int major, minor;
98c6faba 248 char *name, *mp;
8b0dabea
NB
249 mddev_dev_t d;
250
5787fa49
NB
251 buf[1023] = '\0';
252 if (buf[0] != ' ')
253 continue;
98c6faba 254 major = strtoul(buf, &mp, 10);
aba69144 255 if (mp == buf || *mp != ' ')
5787fa49 256 continue;
98c6faba
NB
257 minor = strtoul(mp, NULL, 10);
258
16c6fa80 259 name = map_dev(major, minor, 1);
e81cdd9f
NB
260 if (!name)
261 continue;
8b0dabea
NB
262 d = malloc(sizeof(*d));
263 d->devname = strdup(name);
264 d->next = rv;
da6b5ca9 265 d->used = 0;
9008ed1c 266 d->content = NULL;
8b0dabea 267 rv = d;
5787fa49 268 }
dd0781e5 269 fclose(f);
057bd352 270 return rv;
5787fa49 271}
82b27616 272
f64165f7
DW
273mddev_dev_t load_containers(void)
274{
275 struct mdstat_ent *mdstat = mdstat_read(1, 0);
276 struct mdstat_ent *ent;
277 mddev_dev_t d;
278 mddev_dev_t rv = NULL;
279
280 if (!mdstat)
281 return NULL;
282
283 for (ent = mdstat; ent; ent = ent->next)
284 if (ent->metadata_version &&
285 strncmp(ent->metadata_version, "external:", 9) == 0 &&
286 !is_subarray(&ent->metadata_version[9])) {
287 d = malloc(sizeof(*d));
288 if (!d)
289 continue;
290 if (asprintf(&d->devname, "/dev/%s", ent->dev) < 0) {
291 free(d);
292 continue;
293 }
294 d->next = rv;
295 d->used = 0;
9008ed1c 296 d->content = NULL;
f64165f7
DW
297 rv = d;
298 }
299 free_mdstat(mdstat);
300
301 return rv;
302}
303
5bbb4842 304struct createinfo createinfo = {
75723446 305 .autof = 2, /* by default, create devices with standard names */
38098016 306 .symlinks = 1,
5bbb4842
NB
307#ifdef DEBIAN
308 .gid = 6, /* disk */
309 .mode = 0660,
310#else
311 .mode = 0600,
312#endif
313};
314
f1ae21c4 315int parse_auto(char *str, char *msg, int config)
5bbb4842
NB
316{
317 int autof;
318 if (str == NULL || *str == 0)
f1ae21c4 319 autof = 2;
5bbb4842 320 else if (strcasecmp(str,"no")==0)
f1ae21c4 321 autof = 1;
5bbb4842 322 else if (strcasecmp(str,"yes")==0)
f1ae21c4 323 autof = 2;
5bbb4842 324 else if (strcasecmp(str,"md")==0)
f1ae21c4 325 autof = config?5:3;
5bbb4842
NB
326 else {
327 /* There might be digits, and maybe a hypen, at the end */
328 char *e = str + strlen(str);
329 int num = 4;
330 int len;
331 while (e > str && isdigit(e[-1]))
332 e--;
333 if (*e) {
334 num = atoi(e);
335 if (num <= 0) num = 1;
336 }
337 if (e > str && e[-1] == '-')
338 e--;
339 len = e - str;
f1ae21c4
NB
340 if ((len == 2 && strncasecmp(str,"md",2)==0)) {
341 autof = config ? 5 : 3;
6ba83b5f
NB
342 } else if ((len == 3 && strncasecmp(str,"yes",3)==0)) {
343 autof = 2;
f1ae21c4
NB
344 } else if ((len == 3 && strncasecmp(str,"mdp",3)==0)) {
345 autof = config ? 6 : 4;
346 } else if ((len == 1 && strncasecmp(str,"p",1)==0) ||
347 (len >= 4 && strncasecmp(str,"part",4)==0)) {
348 autof = 6;
349 } else {
5bbb4842
NB
350 fprintf(stderr, Name ": %s arg of \"%s\" unrecognised: use no,yes,md,mdp,part\n"
351 " optionally followed by a number.\n",
352 msg, str);
353 exit(2);
354 }
f1ae21c4 355 autof |= num << 3;
5bbb4842
NB
356 }
357 return autof;
358}
f1ae21c4 359
5bbb4842
NB
360static void createline(char *line)
361{
362 char *w;
363 char *ep;
364
365 for (w=dl_next(line); w!=line; w=dl_next(w)) {
366 if (strncasecmp(w, "auto=", 5) == 0)
f1ae21c4 367 createinfo.autof = parse_auto(w+5, "auto=", 1);
5bbb4842
NB
368 else if (strncasecmp(w, "owner=", 6) == 0) {
369 if (w[6] == 0) {
370 fprintf(stderr, Name ": missing owner name\n");
371 continue;
372 }
373 createinfo.uid = strtoul(w+6, &ep, 10);
374 if (*ep != 0) {
5bbb4842
NB
375 struct passwd *pw;
376 /* must be a name */
377 pw = getpwnam(w+6);
378 if (pw)
379 createinfo.uid = pw->pw_uid;
380 else
5bbb4842
NB
381 fprintf(stderr, Name ": CREATE user %s not found\n", w+6);
382 }
383 } else if (strncasecmp(w, "group=", 6) == 0) {
384 if (w[6] == 0) {
385 fprintf(stderr, Name ": missing group name\n");
386 continue;
387 }
388 createinfo.gid = strtoul(w+6, &ep, 10);
389 if (*ep != 0) {
5bbb4842
NB
390 struct group *gr;
391 /* must be a name */
392 gr = getgrnam(w+6);
393 if (gr)
394 createinfo.gid = gr->gr_gid;
395 else
5bbb4842
NB
396 fprintf(stderr, Name ": CREATE group %s not found\n", w+6);
397 }
398 } else if (strncasecmp(w, "mode=", 5) == 0) {
399 if (w[5] == 0) {
400 fprintf(stderr, Name ": missing CREATE mode\n");
401 continue;
402 }
403 createinfo.mode = strtoul(w+5, &ep, 8);
404 if (*ep != 0) {
405 createinfo.mode = 0600;
406 fprintf(stderr, Name ": unrecognised CREATE mode %s\n",
407 w+5);
408 }
058574b1
NB
409 } else if (strncasecmp(w, "metadata=", 9) == 0) {
410 /* style of metadata to use by default */
411 int i;
412 for (i=0; superlist[i] && !createinfo.supertype; i++)
413 createinfo.supertype =
414 superlist[i]->match_metadata_desc(w+9);
415 if (!createinfo.supertype)
416 fprintf(stderr, Name ": metadata format %s unknown, ignoring\n",
417 w+9);
38098016
NB
418 } else if (strncasecmp(w, "symlinks=yes", 12) == 0)
419 createinfo.symlinks = 1;
420 else if (strncasecmp(w, "symlinks=no", 11) == 0)
421 createinfo.symlinks = 0;
422 else {
5bbb4842
NB
423 fprintf(stderr, Name ": unrecognised word on CREATE line: %s\n",
424 w);
425 }
426 }
427}
82b27616 428
aba69144 429void devline(char *line)
82b27616 430{
52826846
NB
431 char *w;
432 struct conf_dev *cd;
433
434 for (w=dl_next(line); w != line; w=dl_next(w)) {
f64165f7
DW
435 if (w[0] == '/' || strcasecmp(w, "partitions") == 0 ||
436 strcasecmp(w, "containers") == 0) {
52826846
NB
437 cd = malloc(sizeof(*cd));
438 cd->name = strdup(w);
439 cd->next = cdevlist;
440 cdevlist = cd;
441 } else {
442 fprintf(stderr, Name ": unreconised word on DEVICE line: %s\n",
443 w);
444 }
82b27616 445 }
82b27616
NB
446}
447
52826846
NB
448mddev_ident_t mddevlist = NULL;
449mddev_ident_t *mddevlp = &mddevlist;
82b27616
NB
450
451void arrayline(char *line)
452{
52826846
NB
453 char *w;
454
455 struct mddev_ident_s mis;
456 mddev_ident_t mi;
457
458 mis.uuid_set = 0;
98c6faba
NB
459 mis.super_minor = UnSet;
460 mis.level = UnSet;
461 mis.raid_disks = UnSet;
4ccdb956 462 mis.spare_disks = 0;
52826846
NB
463 mis.devices = NULL;
464 mis.devname = NULL;
e0d19036 465 mis.spare_group = NULL;
dd0781e5 466 mis.autof = 0;
92919398 467 mis.next = NULL;
f277ce36
NB
468 mis.st = NULL;
469 mis.bitmap_fd = -1;
7ef02d01 470 mis.bitmap_file = NULL;
947fd4dd 471 mis.name[0] = 0;
71d60c48
DW
472 mis.container = NULL;
473 mis.member = NULL;
52826846
NB
474
475 for (w=dl_next(line); w!=line; w=dl_next(w)) {
112cace6 476 if (w[0] == '/' || strcasecmp(w, "<ignore>") == 0) {
52826846
NB
477 if (mis.devname)
478 fprintf(stderr, Name ": only give one device per ARRAY line: %s and %s\n",
479 mis.devname, w);
480 else mis.devname = w;
481 } else if (strncasecmp(w, "uuid=", 5)==0 ) {
482 if (mis.uuid_set)
483 fprintf(stderr, Name ": only specify uuid once, %s ignored.\n",
484 w);
485 else {
486 if (parse_uuid(w+5, mis.uuid))
487 mis.uuid_set = 1;
488 else
489 fprintf(stderr, Name ": bad uuid: %s\n", w);
490 }
491 } else if (strncasecmp(w, "super-minor=", 12)==0 ) {
f277ce36 492 if (mis.super_minor != UnSet)
52826846
NB
493 fprintf(stderr, Name ": only specify super-minor once, %s ignored.\n",
494 w);
495 else {
496 char *endptr;
497 mis.super_minor= strtol(w+12, &endptr, 10);
498 if (w[12]==0 || endptr[0]!=0 || mis.super_minor < 0) {
499 fprintf(stderr, Name ": invalid super-minor number: %s\n",
500 w);
98c6faba 501 mis.super_minor = UnSet;
52826846
NB
502 }
503 }
947fd4dd
NB
504 } else if (strncasecmp(w, "name=", 5)==0) {
505 if (mis.name[0])
506 fprintf(stderr, Name ": only specify name once, %s ignored.\n",
507 w);
508 else if (strlen(w+5) > 32)
509 fprintf(stderr, Name ": name too long, ignoring %s\n", w);
510 else
511 strcpy(mis.name, w+5);
512
7ef02d01
NB
513 } else if (strncasecmp(w, "bitmap=", 7) == 0) {
514 if (mis.bitmap_file)
515 fprintf(stderr, Name ": only specify bitmap file once. %s ignored\n",
516 w);
517 else
d87d0978 518 mis.bitmap_file = strdup(w+7);
7ef02d01 519
52826846
NB
520 } else if (strncasecmp(w, "devices=", 8 ) == 0 ) {
521 if (mis.devices)
522 fprintf(stderr, Name ": only specify devices once (use a comma separated list). %s ignored\n",
523 w);
524 else
525 mis.devices = strdup(w+8);
526 } else if (strncasecmp(w, "spare-group=", 12) == 0 ) {
527 if (mis.spare_group)
528 fprintf(stderr, Name ": only specify one spare group per array. %s ignored.\n",
529 w);
530 else
531 mis.spare_group = strdup(w+12);
cd29a5c8
NB
532 } else if (strncasecmp(w, "level=", 6) == 0 ) {
533 /* this is mainly for compatability with --brief output */
534 mis.level = map_name(pers, w+6);
535 } else if (strncasecmp(w, "disks=", 6) == 0 ) {
536 /* again, for compat */
feb716e9 537 mis.raid_disks = atoi(w+6);
b83d95f3
NB
538 } else if (strncasecmp(w, "num-devices=", 12) == 0 ) {
539 /* again, for compat */
feb716e9
NB
540 mis.raid_disks = atoi(w+12);
541 } else if (strncasecmp(w, "spares=", 7) == 0 ) {
542 /* for warning if not all spares present */
543 mis.spare_disks = atoi(w+7);
f9ce90ba
NB
544 } else if (strncasecmp(w, "metadata=", 9) == 0) {
545 /* style of metadata on the devices. */
546 int i;
aba69144 547
82d9eba6
NB
548 for(i=0; superlist[i] && !mis.st; i++)
549 mis.st = superlist[i]->match_metadata_desc(w+9);
550
551 if (!mis.st)
f9ce90ba 552 fprintf(stderr, Name ": metadata format %s unknown, ignored.\n", w+9);
dd0781e5
NB
553 } else if (strncasecmp(w, "auto=", 5) == 0 ) {
554 /* whether to create device special files as needed */
f1ae21c4 555 mis.autof = parse_auto(w+5, "auto type", 0);
dbb44303
N
556 } else if (strncasecmp(w, "member=", 7) == 0) {
557 /* subarray within a container */
558 mis.member = strdup(w+7);
559 } else if (strncasecmp(w, "container=", 10) == 0) {
1771a6e2
N
560 /* the container holding this subarray. Either a device name
561 * or a uuid */
dbb44303 562 mis.container = strdup(w+10);
52826846
NB
563 } else {
564 fprintf(stderr, Name ": unrecognised word on ARRAY line: %s\n",
565 w);
566 }
567 }
b1b12d58
N
568 if (mis.uuid_set == 0 && mis.devices == NULL &&
569 mis.super_minor == UnSet && mis.name[0] == 0 &&
aa7c284c 570 (mis.container == NULL || mis.member == NULL))
52826846
NB
571 fprintf(stderr, Name ": ARRAY line %s has no identity information.\n", mis.devname);
572 else {
573 mi = malloc(sizeof(*mi));
574 *mi = mis;
fe056d1f 575 mi->devname = mis.devname ? strdup(mis.devname) : NULL;
52826846
NB
576 mi->next = NULL;
577 *mddevlp = mi;
578 mddevlp = &mi->next;
82b27616 579 }
82b27616 580}
e0d19036
NB
581
582static char *alert_email = NULL;
583void mailline(char *line)
584{
585 char *w;
586
587 for (w=dl_next(line); w != line ; w=dl_next(w)) {
588 if (alert_email == NULL)
589 alert_email = strdup(w);
590 else
591 fprintf(stderr, Name ": excess address on MAIL line: %s - ignored\n",
592 w);
593 }
594}
595
4948b8f7
NB
596static char *alert_mail_from = NULL;
597void mailfromline(char *line)
598{
599 char *w;
600
601 for (w=dl_next(line); w != line ; w=dl_next(w)) {
602 if (alert_mail_from == NULL)
603 alert_mail_from = strdup(w);
604 else {
3d2c4fc7
DW
605 char *t = NULL;
606
78fbcc10 607 if (xasprintf(&t, "%s %s", alert_mail_from, w) > 0) {
3d2c4fc7
DW
608 free(alert_mail_from);
609 alert_mail_from = t;
610 }
4948b8f7
NB
611 }
612 }
613}
614
e0d19036
NB
615
616static char *alert_program = NULL;
617void programline(char *line)
618{
619 char *w;
620
621 for (w=dl_next(line); w != line ; w=dl_next(w)) {
622 if (alert_program == NULL)
623 alert_program = strdup(w);
624 else
625 fprintf(stderr, Name ": excess program on PROGRAM line: %s - ignored\n",
626 w);
627 }
628}
629
997aed5d
NB
630static char *home_host = NULL;
631void homehostline(char *line)
632{
633 char *w;
634
635 for (w=dl_next(line); w != line ; w=dl_next(w)) {
636 if (home_host == NULL)
637 home_host = strdup(w);
638 else
639 fprintf(stderr, Name ": excess host name on HOMEHOST line: %s - ignored\n",
640 w);
641 }
642}
643
31015d57
N
644static char *auto_options = NULL;
645void autoline(char *line)
646{
647 if (auto_options) {
648 fprintf(stderr, Name ": AUTO line may only be give once."
649 " Subsequent lines ignored\n");
650 return;
651 }
652 auto_options = line;
653}
e0d19036 654
82b27616
NB
655int loaded = 0;
656
8aec876d
NB
657static char *conffile = NULL;
658void set_conffile(char *file)
659{
660 conffile = file;
661}
662
663void load_conffile(void)
82b27616 664{
52826846
NB
665 FILE *f;
666 char *line;
667
668 if (loaded) return;
669 if (conffile == NULL)
670 conffile = DefaultConfFile;
671
d013a55e
NB
672 if (strcmp(conffile, "none") == 0) {
673 loaded = 1;
674 return;
675 }
5787fa49 676 if (strcmp(conffile, "partitions")==0) {
b5687415
NB
677 char *list = dl_strdup("DEV");
678 dl_init(list);
679 dl_add(list, dl_strdup("partitions"));
680 devline(list);
681 free_line(list);
d013a55e 682 loaded = 1;
5787fa49
NB
683 return;
684 }
52826846 685 f = fopen(conffile, "r");
ce4fafd6
NB
686 /* Debian chose to relocate mdadm.conf into /etc/mdadm/.
687 * To allow Debian users to compile from clean source and still
688 * have a working mdadm, we read /etc/mdadm/mdadm.conf
689 * if /etc/mdadm.conf doesn't exist
690 */
691 if (f == NULL &&
692 conffile == DefaultConfFile) {
693 f = fopen(DefaultAltConfFile, "r");
694 if (f)
695 conffile = DefaultAltConfFile;
696 }
697 if (f == NULL)
52826846
NB
698 return;
699
700 loaded = 1;
701 while ((line=conf_line(f))) {
702 switch(match_keyword(line)) {
8fe9db0f 703 case Devices:
52826846
NB
704 devline(line);
705 break;
8fe9db0f 706 case Array:
52826846
NB
707 arrayline(line);
708 break;
8fe9db0f 709 case Mailaddr:
e0d19036
NB
710 mailline(line);
711 break;
8fe9db0f 712 case Mailfrom:
4948b8f7
NB
713 mailfromline(line);
714 break;
8fe9db0f
NB
715 case Program:
716 programline(line);
717 break;
718 case CreateDev:
5bbb4842
NB
719 createline(line);
720 break;
997aed5d
NB
721 case Homehost:
722 homehostline(line);
723 break;
31015d57
N
724 case AutoMode:
725 autoline(line);
726 break;
52826846
NB
727 default:
728 fprintf(stderr, Name ": Unknown keyword %s\n", line);
729 }
730 free_line(line);
82b27616 731 }
aba69144 732
dd0781e5 733 fclose(f);
82b27616
NB
734
735/* printf("got file\n"); */
736}
737
8aec876d 738char *conf_get_mailaddr(void)
e0d19036 739{
8aec876d 740 load_conffile();
e0d19036
NB
741 return alert_email;
742}
743
8aec876d 744char *conf_get_mailfrom(void)
4948b8f7 745{
8aec876d 746 load_conffile();
4948b8f7
NB
747 return alert_mail_from;
748}
749
8aec876d 750char *conf_get_program(void)
e0d19036 751{
8aec876d 752 load_conffile();
e0d19036
NB
753 return alert_program;
754}
755
8aec876d 756char *conf_get_homehost(void)
997aed5d 757{
8aec876d 758 load_conffile();
997aed5d
NB
759 return home_host;
760}
761
8aec876d 762struct createinfo *conf_get_create_info(void)
5bbb4842 763{
8aec876d 764 load_conffile();
5bbb4842
NB
765 return &createinfo;
766}
82b27616 767
8aec876d 768mddev_ident_t conf_get_ident(char *dev)
64c4757e 769{
52826846 770 mddev_ident_t rv;
8aec876d 771 load_conffile();
52826846 772 rv = mddevlist;
fe056d1f
N
773 while (dev && rv && (rv->devname == NULL
774 || strcmp(dev, rv->devname)!=0))
52826846
NB
775 rv = rv->next;
776 return rv;
64c4757e
NB
777}
778
f64165f7
DW
779static void append_dlist(mddev_dev_t *dlp, mddev_dev_t list)
780{
781 while (*dlp)
782 dlp = &(*dlp)->next;
783 *dlp = list;
784}
785
8aec876d 786mddev_dev_t conf_get_devs()
64c4757e 787{
52826846
NB
788 glob_t globbuf;
789 struct conf_dev *cd;
790 int flags = 0;
791 static mddev_dev_t dlist = NULL;
98c6faba 792 unsigned int i;
52826846
NB
793
794 while (dlist) {
795 mddev_dev_t t = dlist;
796 dlist = dlist->next;
797 free(t->devname);
798 free(t);
799 }
aba69144 800
8aec876d 801 load_conffile();
a99d6b66 802
f8f84cd5
DW
803 if (cdevlist == NULL) {
804 /* default to 'partitions' and 'containers' */
a99d6b66 805 dlist = load_partitions();
f8f84cd5
DW
806 append_dlist(&dlist, load_containers());
807 }
a99d6b66 808
52826846 809 for (cd=cdevlist; cd; cd=cd->next) {
f64165f7
DW
810 if (strcasecmp(cd->name, "partitions")==0)
811 append_dlist(&dlist, load_partitions());
812 else if (strcasecmp(cd->name, "containers")==0)
813 append_dlist(&dlist, load_containers());
057bd352
NB
814 else {
815 glob(cd->name, flags, NULL, &globbuf);
816 flags |= GLOB_APPEND;
817 }
52826846 818 }
e0d19036
NB
819 if (flags & GLOB_APPEND) {
820 for (i=0; i<globbuf.gl_pathc; i++) {
821 mddev_dev_t t = malloc(sizeof(*t));
822 t->devname = strdup(globbuf.gl_pathv[i]);
823 t->next = dlist;
da6b5ca9 824 t->used = 0;
9008ed1c 825 t->content = NULL;
e0d19036 826 dlist = t;
82b27616 827/* printf("one dev is %s\n", t->devname);*/
e0d19036
NB
828 }
829 globfree(&globbuf);
52826846 830 }
82b27616 831
52826846 832 return dlist;
64c4757e
NB
833}
834
8382f19b
NB
835int conf_test_dev(char *devname)
836{
837 struct conf_dev *cd;
838 if (cdevlist == NULL)
839 /* allow anything by default */
840 return 1;
841 for (cd = cdevlist ; cd ; cd = cd->next) {
842 if (strcasecmp(cd->name, "partitions") == 0)
843 return 1;
844 if (fnmatch(cd->name, devname, FNM_PATHNAME) == 0)
845 return 1;
846 }
847 return 0;
848}
849
31015d57
N
850int conf_test_metadata(const char *version)
851{
852 /* Check if the given metadata version is allowed
853 * to be auto-assembled.
854 * The default is 'yes' but the 'auto' line might over-ride that.
855 * Word in auto_options are processed in order with the first
856 * match winning.
857 * word can be:
858 * +version - that version can be assembled
859 * -version - that version cannot be auto-assembled
860 * yes or +all - any other version can be assembled
861 * no or -all - no other version can be assembled.
862 */
863 char *w;
864 load_conffile();
865 if (!auto_options)
866 return 1;
867 for (w = dl_next(auto_options); w != auto_options; w = dl_next(w)) {
868 int rv;
869 if (strcasecmp(w, "yes") == 0)
870 return 1;
871 if (strcasecmp(w, "no") == 0)
872 return 0;
873 if (w[0] == '+')
874 rv = 1;
875 else if (w[0] == '-')
876 rv = 0;
877 else continue;
878
879 if (strcasecmp(w+1, "all") == 0)
880 return rv;
881 if (strcasecmp(w+1, version) == 0)
882 return rv;
883 /* allow '0' to match version '0.90'
884 * and 1 or 1.whatever to match version '1.x'
885 */
886 if (version[1] == '.' &&
887 strlen(w+1) == 1 &&
888 w[1] == version[0])
889 return rv;
890 if (version[1] == '.' && version[2] == 'x' &&
891 strncmp(w+1, version, 2) == 0)
892 return rv;
893 }
894 return 1;
895}
8382f19b 896
52826846
NB
897int match_oneof(char *devices, char *devname)
898{
899 /* check if one of the comma separated patterns in devices
900 * matches devname
901 */
902
903
904 while (devices && *devices) {
905 char patn[1024];
906 char *p = devices;
907 devices = strchr(devices, ',');
908 if (!devices)
909 devices = p + strlen(p);
910 if (devices-p < 1024) {
911 strncpy(patn, p, devices-p);
912 patn[devices-p] = 0;
913 if (fnmatch(patn, devname, FNM_PATHNAME)==0)
914 return 1;
915 }
916 if (*devices == ',')
917 devices++;
918 }
919 return 0;
920}