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