]> git.ipfire.org Git - thirdparty/mdadm.git/blame - config.c
imsm: determine failed indexes from the most up-to-date disk
[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 *
59 * Keywords are DEVICE and ARRAY
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
8fe9db0f
NB
82enum linetype { Devices, Array, Mailaddr, Mailfrom, Program, CreateDev, Homehost, LTEnd };
83char *keywords[] = {
84 [Devices] = "devices",
85 [Array] = "array",
86 [Mailaddr] = "mailaddr",
87 [Mailfrom] = "mailfrom",
88 [Program] = "program",
8382f19b 89 [CreateDev]= "create",
8fe9db0f
NB
90 [Homehost] = "homehost",
91 [LTEnd] = NULL
92};
82b27616
NB
93
94/*
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
97 */
98
99int match_keyword(char *word)
100{
52826846
NB
101 int len = strlen(word);
102 int n;
aba69144 103
52826846
NB
104 if (len < 3) return -1;
105 for (n=0; keywords[n]; n++) {
106 if (strncasecmp(word, keywords[n], len)==0)
107 return n;
108 }
109 return -1;
82b27616
NB
110}
111
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.
117 */
118
119char *conf_word(FILE *file, int allow_key)
120{
52826846
NB
121 int wsize = 100;
122 int len = 0;
123 int c;
124 int quote;
125 int wordfound = 0;
126 char *word = malloc(wsize);
82b27616 127
52826846
NB
128 if (!word) abort();
129
130 while (wordfound==0) {
131 /* at the end of a word.. */
82b27616 132 c = getc(file);
52826846
NB
133 if (c == '#')
134 while (c != EOF && c != '\n')
135 c = getc(file);
136 if (c == EOF) break;
137 if (c == '\n') continue;
138
139 if (c != ' ' && c != '\t' && ! allow_key) {
140 ungetc(c, file);
141 break;
142 }
143 /* looks like it is safe to get a word here, if there is one */
144 quote = 0;
145 /* first, skip any spaces */
146 while (c == ' ' || c == '\t')
147 c = getc(file);
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'))) {
151 wordfound = 1;
152 if (quote && c == quote) quote = 0;
153 else if (quote == 0 && (c == '\'' || c == '"'))
154 quote = c;
155 else {
156 if (len == wsize-1) {
157 wsize += 100;
158 word = realloc(word, wsize);
159 if (!word) abort();
160 }
161 word[len++] = c;
162 }
163 c = getc(file);
2cdb6489
NB
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)"
168 */
169 if (c == '(' && len >= 6
170 && strncmp(word+len-6, "active", 6) == 0)
171 c = ' ';
52826846
NB
172 }
173 }
174 if (c != EOF) ungetc(c, file);
82b27616 175 }
52826846 176 word[len] = 0;
2cdb6489
NB
177
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)");
181
82b27616 182/* printf("word is <%s>\n", word); */
52826846
NB
183 if (!wordfound) {
184 free(word);
185 word = NULL;
186 }
187 return word;
82b27616 188}
aba69144 189
82b27616
NB
190/*
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.
196 */
197
198char *conf_line(FILE *file)
199{
52826846
NB
200 char *w;
201 char *list;
82b27616 202
52826846
NB
203 w = conf_word(file, 1);
204 if (w == NULL) return NULL;
82b27616 205
52826846 206 list = dl_strdup(w);
82b27616 207 free(w);
52826846
NB
208 dl_init(list);
209
210 while ((w = conf_word(file,0))){
211 char *w2 = dl_strdup(w);
212 free(w);
213 dl_add(list, w2);
214 }
82b27616 215/* printf("got a line\n");*/
52826846 216 return list;
82b27616
NB
217}
218
219void free_line(char *line)
220{
52826846
NB
221 char *w;
222 for (w=dl_next(line); w != line; w=dl_next(line)) {
223 dl_del(w);
224 dl_free(w);
225 }
226 dl_free(line);
82b27616
NB
227}
228
229
230struct conf_dev {
231 struct conf_dev *next;
232 char *name;
233} *cdevlist = NULL;
234
057bd352 235mddev_dev_t load_partitions(void)
5787fa49
NB
236{
237 FILE *f = fopen("/proc/partitions", "r");
238 char buf[1024];
057bd352 239 mddev_dev_t rv = NULL;
5787fa49
NB
240 if (f == NULL) {
241 fprintf(stderr, Name ": cannot open /proc/partitions\n");
057bd352 242 return NULL;
5787fa49
NB
243 }
244 while (fgets(buf, 1024, f)) {
245 int major, minor;
98c6faba 246 char *name, *mp;
8b0dabea
NB
247 mddev_dev_t d;
248
5787fa49
NB
249 buf[1023] = '\0';
250 if (buf[0] != ' ')
251 continue;
98c6faba 252 major = strtoul(buf, &mp, 10);
aba69144 253 if (mp == buf || *mp != ' ')
5787fa49 254 continue;
98c6faba
NB
255 minor = strtoul(mp, NULL, 10);
256
16c6fa80 257 name = map_dev(major, minor, 1);
e81cdd9f
NB
258 if (!name)
259 continue;
8b0dabea
NB
260 d = malloc(sizeof(*d));
261 d->devname = strdup(name);
262 d->next = rv;
da6b5ca9 263 d->used = 0;
8b0dabea 264 rv = d;
5787fa49 265 }
dd0781e5 266 fclose(f);
057bd352 267 return rv;
5787fa49 268}
82b27616 269
5bbb4842 270struct createinfo createinfo = {
75723446 271 .autof = 2, /* by default, create devices with standard names */
38098016 272 .symlinks = 1,
5bbb4842
NB
273#ifdef DEBIAN
274 .gid = 6, /* disk */
275 .mode = 0660,
276#else
277 .mode = 0600,
278#endif
279};
280
f1ae21c4 281int parse_auto(char *str, char *msg, int config)
5bbb4842
NB
282{
283 int autof;
284 if (str == NULL || *str == 0)
f1ae21c4 285 autof = 2;
5bbb4842 286 else if (strcasecmp(str,"no")==0)
f1ae21c4 287 autof = 1;
5bbb4842 288 else if (strcasecmp(str,"yes")==0)
f1ae21c4 289 autof = 2;
5bbb4842 290 else if (strcasecmp(str,"md")==0)
f1ae21c4 291 autof = config?5:3;
5bbb4842
NB
292 else {
293 /* There might be digits, and maybe a hypen, at the end */
294 char *e = str + strlen(str);
295 int num = 4;
296 int len;
297 while (e > str && isdigit(e[-1]))
298 e--;
299 if (*e) {
300 num = atoi(e);
301 if (num <= 0) num = 1;
302 }
303 if (e > str && e[-1] == '-')
304 e--;
305 len = e - str;
f1ae21c4
NB
306 if ((len == 2 && strncasecmp(str,"md",2)==0)) {
307 autof = config ? 5 : 3;
6ba83b5f
NB
308 } else if ((len == 3 && strncasecmp(str,"yes",3)==0)) {
309 autof = 2;
f1ae21c4
NB
310 } else if ((len == 3 && strncasecmp(str,"mdp",3)==0)) {
311 autof = config ? 6 : 4;
312 } else if ((len == 1 && strncasecmp(str,"p",1)==0) ||
313 (len >= 4 && strncasecmp(str,"part",4)==0)) {
314 autof = 6;
315 } else {
5bbb4842
NB
316 fprintf(stderr, Name ": %s arg of \"%s\" unrecognised: use no,yes,md,mdp,part\n"
317 " optionally followed by a number.\n",
318 msg, str);
319 exit(2);
320 }
f1ae21c4 321 autof |= num << 3;
5bbb4842
NB
322 }
323 return autof;
324}
f1ae21c4 325
5bbb4842
NB
326static void createline(char *line)
327{
328 char *w;
329 char *ep;
330
331 for (w=dl_next(line); w!=line; w=dl_next(w)) {
332 if (strncasecmp(w, "auto=", 5) == 0)
f1ae21c4 333 createinfo.autof = parse_auto(w+5, "auto=", 1);
5bbb4842
NB
334 else if (strncasecmp(w, "owner=", 6) == 0) {
335 if (w[6] == 0) {
336 fprintf(stderr, Name ": missing owner name\n");
337 continue;
338 }
339 createinfo.uid = strtoul(w+6, &ep, 10);
340 if (*ep != 0) {
5bbb4842
NB
341 struct passwd *pw;
342 /* must be a name */
343 pw = getpwnam(w+6);
344 if (pw)
345 createinfo.uid = pw->pw_uid;
346 else
5bbb4842
NB
347 fprintf(stderr, Name ": CREATE user %s not found\n", w+6);
348 }
349 } else if (strncasecmp(w, "group=", 6) == 0) {
350 if (w[6] == 0) {
351 fprintf(stderr, Name ": missing group name\n");
352 continue;
353 }
354 createinfo.gid = strtoul(w+6, &ep, 10);
355 if (*ep != 0) {
5bbb4842
NB
356 struct group *gr;
357 /* must be a name */
358 gr = getgrnam(w+6);
359 if (gr)
360 createinfo.gid = gr->gr_gid;
361 else
5bbb4842
NB
362 fprintf(stderr, Name ": CREATE group %s not found\n", w+6);
363 }
364 } else if (strncasecmp(w, "mode=", 5) == 0) {
365 if (w[5] == 0) {
366 fprintf(stderr, Name ": missing CREATE mode\n");
367 continue;
368 }
369 createinfo.mode = strtoul(w+5, &ep, 8);
370 if (*ep != 0) {
371 createinfo.mode = 0600;
372 fprintf(stderr, Name ": unrecognised CREATE mode %s\n",
373 w+5);
374 }
058574b1
NB
375 } else if (strncasecmp(w, "metadata=", 9) == 0) {
376 /* style of metadata to use by default */
377 int i;
378 for (i=0; superlist[i] && !createinfo.supertype; i++)
379 createinfo.supertype =
380 superlist[i]->match_metadata_desc(w+9);
381 if (!createinfo.supertype)
382 fprintf(stderr, Name ": metadata format %s unknown, ignoring\n",
383 w+9);
38098016
NB
384 } else if (strncasecmp(w, "symlinks=yes", 12) == 0)
385 createinfo.symlinks = 1;
386 else if (strncasecmp(w, "symlinks=no", 11) == 0)
387 createinfo.symlinks = 0;
388 else {
5bbb4842
NB
389 fprintf(stderr, Name ": unrecognised word on CREATE line: %s\n",
390 w);
391 }
392 }
393}
82b27616 394
aba69144 395void devline(char *line)
82b27616 396{
52826846
NB
397 char *w;
398 struct conf_dev *cd;
399
400 for (w=dl_next(line); w != line; w=dl_next(w)) {
057bd352 401 if (w[0] == '/' || strcasecmp(w, "partitions") == 0) {
52826846
NB
402 cd = malloc(sizeof(*cd));
403 cd->name = strdup(w);
404 cd->next = cdevlist;
405 cdevlist = cd;
406 } else {
407 fprintf(stderr, Name ": unreconised word on DEVICE line: %s\n",
408 w);
409 }
82b27616 410 }
82b27616
NB
411}
412
52826846
NB
413mddev_ident_t mddevlist = NULL;
414mddev_ident_t *mddevlp = &mddevlist;
82b27616
NB
415
416void arrayline(char *line)
417{
52826846
NB
418 char *w;
419
420 struct mddev_ident_s mis;
421 mddev_ident_t mi;
422
423 mis.uuid_set = 0;
98c6faba
NB
424 mis.super_minor = UnSet;
425 mis.level = UnSet;
426 mis.raid_disks = UnSet;
4ccdb956 427 mis.spare_disks = 0;
52826846
NB
428 mis.devices = NULL;
429 mis.devname = NULL;
e0d19036 430 mis.spare_group = NULL;
dd0781e5 431 mis.autof = 0;
92919398 432 mis.next = NULL;
f277ce36
NB
433 mis.st = NULL;
434 mis.bitmap_fd = -1;
7ef02d01 435 mis.bitmap_file = NULL;
947fd4dd 436 mis.name[0] = 0;
52826846
NB
437
438 for (w=dl_next(line); w!=line; w=dl_next(w)) {
439 if (w[0] == '/') {
440 if (mis.devname)
441 fprintf(stderr, Name ": only give one device per ARRAY line: %s and %s\n",
442 mis.devname, w);
443 else mis.devname = w;
444 } else if (strncasecmp(w, "uuid=", 5)==0 ) {
445 if (mis.uuid_set)
446 fprintf(stderr, Name ": only specify uuid once, %s ignored.\n",
447 w);
448 else {
449 if (parse_uuid(w+5, mis.uuid))
450 mis.uuid_set = 1;
451 else
452 fprintf(stderr, Name ": bad uuid: %s\n", w);
453 }
454 } else if (strncasecmp(w, "super-minor=", 12)==0 ) {
f277ce36 455 if (mis.super_minor != UnSet)
52826846
NB
456 fprintf(stderr, Name ": only specify super-minor once, %s ignored.\n",
457 w);
458 else {
459 char *endptr;
460 mis.super_minor= strtol(w+12, &endptr, 10);
461 if (w[12]==0 || endptr[0]!=0 || mis.super_minor < 0) {
462 fprintf(stderr, Name ": invalid super-minor number: %s\n",
463 w);
98c6faba 464 mis.super_minor = UnSet;
52826846
NB
465 }
466 }
947fd4dd
NB
467 } else if (strncasecmp(w, "name=", 5)==0) {
468 if (mis.name[0])
469 fprintf(stderr, Name ": only specify name once, %s ignored.\n",
470 w);
471 else if (strlen(w+5) > 32)
472 fprintf(stderr, Name ": name too long, ignoring %s\n", w);
473 else
474 strcpy(mis.name, w+5);
475
7ef02d01
NB
476 } else if (strncasecmp(w, "bitmap=", 7) == 0) {
477 if (mis.bitmap_file)
478 fprintf(stderr, Name ": only specify bitmap file once. %s ignored\n",
479 w);
480 else
d87d0978 481 mis.bitmap_file = strdup(w+7);
7ef02d01 482
52826846
NB
483 } else if (strncasecmp(w, "devices=", 8 ) == 0 ) {
484 if (mis.devices)
485 fprintf(stderr, Name ": only specify devices once (use a comma separated list). %s ignored\n",
486 w);
487 else
488 mis.devices = strdup(w+8);
489 } else if (strncasecmp(w, "spare-group=", 12) == 0 ) {
490 if (mis.spare_group)
491 fprintf(stderr, Name ": only specify one spare group per array. %s ignored.\n",
492 w);
493 else
494 mis.spare_group = strdup(w+12);
cd29a5c8
NB
495 } else if (strncasecmp(w, "level=", 6) == 0 ) {
496 /* this is mainly for compatability with --brief output */
497 mis.level = map_name(pers, w+6);
498 } else if (strncasecmp(w, "disks=", 6) == 0 ) {
499 /* again, for compat */
feb716e9 500 mis.raid_disks = atoi(w+6);
b83d95f3
NB
501 } else if (strncasecmp(w, "num-devices=", 12) == 0 ) {
502 /* again, for compat */
feb716e9
NB
503 mis.raid_disks = atoi(w+12);
504 } else if (strncasecmp(w, "spares=", 7) == 0 ) {
505 /* for warning if not all spares present */
506 mis.spare_disks = atoi(w+7);
f9ce90ba
NB
507 } else if (strncasecmp(w, "metadata=", 9) == 0) {
508 /* style of metadata on the devices. */
509 int i;
aba69144 510
82d9eba6
NB
511 for(i=0; superlist[i] && !mis.st; i++)
512 mis.st = superlist[i]->match_metadata_desc(w+9);
513
514 if (!mis.st)
f9ce90ba 515 fprintf(stderr, Name ": metadata format %s unknown, ignored.\n", w+9);
dd0781e5
NB
516 } else if (strncasecmp(w, "auto=", 5) == 0 ) {
517 /* whether to create device special files as needed */
f1ae21c4 518 mis.autof = parse_auto(w+5, "auto type", 0);
dbb44303
N
519 } else if (strncasecmp(w, "member=", 7) == 0) {
520 /* subarray within a container */
521 mis.member = strdup(w+7);
522 } else if (strncasecmp(w, "container=", 10) == 0) {
523 /* the container holding this subarray */
524 mis.container = strdup(w+10);
52826846
NB
525 } else {
526 fprintf(stderr, Name ": unrecognised word on ARRAY line: %s\n",
527 w);
528 }
529 }
530 if (mis.devname == NULL)
dd0781e5 531 fprintf(stderr, Name ": ARRAY line with no device\n");
947fd4dd 532 else if (mis.uuid_set == 0 && mis.devices == NULL && mis.super_minor == UnSet && mis.name[0] == 0)
52826846
NB
533 fprintf(stderr, Name ": ARRAY line %s has no identity information.\n", mis.devname);
534 else {
535 mi = malloc(sizeof(*mi));
536 *mi = mis;
537 mi->devname = strdup(mis.devname);
538 mi->next = NULL;
539 *mddevlp = mi;
540 mddevlp = &mi->next;
82b27616 541 }
82b27616 542}
e0d19036
NB
543
544static char *alert_email = NULL;
545void mailline(char *line)
546{
547 char *w;
548
549 for (w=dl_next(line); w != line ; w=dl_next(w)) {
550 if (alert_email == NULL)
551 alert_email = strdup(w);
552 else
553 fprintf(stderr, Name ": excess address on MAIL line: %s - ignored\n",
554 w);
555 }
556}
557
4948b8f7
NB
558static char *alert_mail_from = NULL;
559void mailfromline(char *line)
560{
561 char *w;
562
563 for (w=dl_next(line); w != line ; w=dl_next(w)) {
564 if (alert_mail_from == NULL)
565 alert_mail_from = strdup(w);
566 else {
567 char *t= NULL;
568 asprintf(&t, "%s %s", alert_mail_from, w);
569 free(alert_mail_from);
570 alert_mail_from = t;
571 }
572 }
573}
574
e0d19036
NB
575
576static char *alert_program = NULL;
577void programline(char *line)
578{
579 char *w;
580
581 for (w=dl_next(line); w != line ; w=dl_next(w)) {
582 if (alert_program == NULL)
583 alert_program = strdup(w);
584 else
585 fprintf(stderr, Name ": excess program on PROGRAM line: %s - ignored\n",
586 w);
587 }
588}
589
997aed5d
NB
590static char *home_host = NULL;
591void homehostline(char *line)
592{
593 char *w;
594
595 for (w=dl_next(line); w != line ; w=dl_next(w)) {
596 if (home_host == NULL)
597 home_host = strdup(w);
598 else
599 fprintf(stderr, Name ": excess host name on HOMEHOST line: %s - ignored\n",
600 w);
601 }
602}
603
e0d19036 604
82b27616
NB
605int loaded = 0;
606
8aec876d
NB
607static char *conffile = NULL;
608void set_conffile(char *file)
609{
610 conffile = file;
611}
612
613void load_conffile(void)
82b27616 614{
52826846
NB
615 FILE *f;
616 char *line;
617
618 if (loaded) return;
619 if (conffile == NULL)
620 conffile = DefaultConfFile;
621
d013a55e
NB
622 if (strcmp(conffile, "none") == 0) {
623 loaded = 1;
624 return;
625 }
5787fa49 626 if (strcmp(conffile, "partitions")==0) {
b5687415
NB
627 char *list = dl_strdup("DEV");
628 dl_init(list);
629 dl_add(list, dl_strdup("partitions"));
630 devline(list);
631 free_line(list);
d013a55e 632 loaded = 1;
5787fa49
NB
633 return;
634 }
52826846 635 f = fopen(conffile, "r");
ce4fafd6
NB
636 /* Debian chose to relocate mdadm.conf into /etc/mdadm/.
637 * To allow Debian users to compile from clean source and still
638 * have a working mdadm, we read /etc/mdadm/mdadm.conf
639 * if /etc/mdadm.conf doesn't exist
640 */
641 if (f == NULL &&
642 conffile == DefaultConfFile) {
643 f = fopen(DefaultAltConfFile, "r");
644 if (f)
645 conffile = DefaultAltConfFile;
646 }
647 if (f == NULL)
52826846
NB
648 return;
649
650 loaded = 1;
651 while ((line=conf_line(f))) {
652 switch(match_keyword(line)) {
8fe9db0f 653 case Devices:
52826846
NB
654 devline(line);
655 break;
8fe9db0f 656 case Array:
52826846
NB
657 arrayline(line);
658 break;
8fe9db0f 659 case Mailaddr:
e0d19036
NB
660 mailline(line);
661 break;
8fe9db0f 662 case Mailfrom:
4948b8f7
NB
663 mailfromline(line);
664 break;
8fe9db0f
NB
665 case Program:
666 programline(line);
667 break;
668 case CreateDev:
5bbb4842
NB
669 createline(line);
670 break;
997aed5d
NB
671 case Homehost:
672 homehostline(line);
673 break;
52826846
NB
674 default:
675 fprintf(stderr, Name ": Unknown keyword %s\n", line);
676 }
677 free_line(line);
82b27616 678 }
aba69144 679
dd0781e5 680 fclose(f);
82b27616
NB
681
682/* printf("got file\n"); */
683}
684
8aec876d 685char *conf_get_mailaddr(void)
e0d19036 686{
8aec876d 687 load_conffile();
e0d19036
NB
688 return alert_email;
689}
690
8aec876d 691char *conf_get_mailfrom(void)
4948b8f7 692{
8aec876d 693 load_conffile();
4948b8f7
NB
694 return alert_mail_from;
695}
696
8aec876d 697char *conf_get_program(void)
e0d19036 698{
8aec876d 699 load_conffile();
e0d19036
NB
700 return alert_program;
701}
702
8aec876d 703char *conf_get_homehost(void)
997aed5d 704{
8aec876d 705 load_conffile();
997aed5d
NB
706 return home_host;
707}
708
8aec876d 709struct createinfo *conf_get_create_info(void)
5bbb4842 710{
8aec876d 711 load_conffile();
5bbb4842
NB
712 return &createinfo;
713}
82b27616 714
8aec876d 715mddev_ident_t conf_get_ident(char *dev)
64c4757e 716{
52826846 717 mddev_ident_t rv;
8aec876d 718 load_conffile();
52826846
NB
719 rv = mddevlist;
720 while (dev && rv && strcmp(dev, rv->devname)!=0)
721 rv = rv->next;
722 return rv;
64c4757e
NB
723}
724
8aec876d 725mddev_dev_t conf_get_devs()
64c4757e 726{
52826846
NB
727 glob_t globbuf;
728 struct conf_dev *cd;
729 int flags = 0;
730 static mddev_dev_t dlist = NULL;
98c6faba 731 unsigned int i;
52826846
NB
732
733 while (dlist) {
734 mddev_dev_t t = dlist;
735 dlist = dlist->next;
736 free(t->devname);
737 free(t);
738 }
aba69144 739
8aec876d 740 load_conffile();
a99d6b66
NB
741
742 if (cdevlist == NULL)
743 /* default to 'partitions */
744 dlist = load_partitions();
745
52826846 746 for (cd=cdevlist; cd; cd=cd->next) {
057bd352
NB
747 if (strcasecmp(cd->name, "partitions")==0 && dlist == NULL)
748 dlist = load_partitions();
749 else {
750 glob(cd->name, flags, NULL, &globbuf);
751 flags |= GLOB_APPEND;
752 }
52826846 753 }
e0d19036
NB
754 if (flags & GLOB_APPEND) {
755 for (i=0; i<globbuf.gl_pathc; i++) {
756 mddev_dev_t t = malloc(sizeof(*t));
757 t->devname = strdup(globbuf.gl_pathv[i]);
758 t->next = dlist;
da6b5ca9 759 t->used = 0;
e0d19036 760 dlist = t;
82b27616 761/* printf("one dev is %s\n", t->devname);*/
e0d19036
NB
762 }
763 globfree(&globbuf);
52826846 764 }
82b27616 765
52826846 766 return dlist;
64c4757e
NB
767}
768
8382f19b
NB
769int conf_test_dev(char *devname)
770{
771 struct conf_dev *cd;
772 if (cdevlist == NULL)
773 /* allow anything by default */
774 return 1;
775 for (cd = cdevlist ; cd ; cd = cd->next) {
776 if (strcasecmp(cd->name, "partitions") == 0)
777 return 1;
778 if (fnmatch(cd->name, devname, FNM_PATHNAME) == 0)
779 return 1;
780 }
781 return 0;
782}
783
784
52826846
NB
785int match_oneof(char *devices, char *devname)
786{
787 /* check if one of the comma separated patterns in devices
788 * matches devname
789 */
790
791
792 while (devices && *devices) {
793 char patn[1024];
794 char *p = devices;
795 devices = strchr(devices, ',');
796 if (!devices)
797 devices = p + strlen(p);
798 if (devices-p < 1024) {
799 strncpy(patn, p, devices-p);
800 patn[devices-p] = 0;
801 if (fnmatch(patn, devname, FNM_PATHNAME)==0)
802 return 1;
803 }
804 if (*devices == ',')
805 devices++;
806 }
807 return 0;
808}