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