]> git.ipfire.org Git - thirdparty/mdadm.git/blob - config.c
config: add containers to the default search list
[thirdparty/mdadm.git] / config.c
1 /*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2001-2006 Neil Brown <neilb@suse.de>
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
30 #include "mdadm.h"
31 #include "dlink.h"
32 #include <dirent.h>
33 #include <glob.h>
34 #include <fnmatch.h>
35 #include <ctype.h>
36 #include <pwd.h>
37 #include <grp.h>
38
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 *
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 *
70 */
71
72 #ifndef CONFFILE
73 #define CONFFILE "/etc/mdadm.conf"
74 #endif
75 #ifndef CONFFILE2
76 /* for Debian compatibility .... */
77 #define CONFFILE2 "/etc/mdadm/mdadm.conf"
78 #endif
79 char DefaultConfFile[] = CONFFILE;
80 char DefaultAltConfFile[] = CONFFILE2;
81
82 enum linetype { Devices, Array, Mailaddr, Mailfrom, Program, CreateDev, Homehost, LTEnd };
83 char *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 };
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
99 int match_keyword(char *word)
100 {
101 int len = strlen(word);
102 int n;
103
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;
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
119 char *conf_word(FILE *file, int allow_key)
120 {
121 int wsize = 100;
122 int len = 0;
123 int c;
124 int quote;
125 int wordfound = 0;
126 char *word = malloc(wsize);
127
128 if (!word) abort();
129
130 while (wordfound==0) {
131 /* at the end of a word.. */
132 c = getc(file);
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 /* 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 = ' ';
172 }
173 }
174 if (c != EOF) ungetc(c, file);
175 }
176 word[len] = 0;
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
182 /* printf("word is <%s>\n", word); */
183 if (!wordfound) {
184 free(word);
185 word = NULL;
186 }
187 return word;
188 }
189
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
198 char *conf_line(FILE *file)
199 {
200 char *w;
201 char *list;
202
203 w = conf_word(file, 1);
204 if (w == NULL) return NULL;
205
206 list = dl_strdup(w);
207 free(w);
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 }
215 /* printf("got a line\n");*/
216 return list;
217 }
218
219 void free_line(char *line)
220 {
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);
227 }
228
229
230 struct conf_dev {
231 struct conf_dev *next;
232 char *name;
233 } *cdevlist = NULL;
234
235 mddev_dev_t load_partitions(void)
236 {
237 FILE *f = fopen("/proc/partitions", "r");
238 char buf[1024];
239 mddev_dev_t rv = NULL;
240 if (f == NULL) {
241 fprintf(stderr, Name ": cannot open /proc/partitions\n");
242 return NULL;
243 }
244 while (fgets(buf, 1024, f)) {
245 int major, minor;
246 char *name, *mp;
247 mddev_dev_t d;
248
249 buf[1023] = '\0';
250 if (buf[0] != ' ')
251 continue;
252 major = strtoul(buf, &mp, 10);
253 if (mp == buf || *mp != ' ')
254 continue;
255 minor = strtoul(mp, NULL, 10);
256
257 name = map_dev(major, minor, 1);
258 if (!name)
259 continue;
260 d = malloc(sizeof(*d));
261 d->devname = strdup(name);
262 d->next = rv;
263 d->used = 0;
264 rv = d;
265 }
266 fclose(f);
267 return rv;
268 }
269
270 mddev_dev_t load_containers(void)
271 {
272 struct mdstat_ent *mdstat = mdstat_read(1, 0);
273 struct mdstat_ent *ent;
274 mddev_dev_t d;
275 mddev_dev_t rv = NULL;
276
277 if (!mdstat)
278 return NULL;
279
280 for (ent = mdstat; ent; ent = ent->next)
281 if (ent->metadata_version &&
282 strncmp(ent->metadata_version, "external:", 9) == 0 &&
283 !is_subarray(&ent->metadata_version[9])) {
284 d = malloc(sizeof(*d));
285 if (!d)
286 continue;
287 if (asprintf(&d->devname, "/dev/%s", ent->dev) < 0) {
288 free(d);
289 continue;
290 }
291 d->next = rv;
292 d->used = 0;
293 rv = d;
294 }
295 free_mdstat(mdstat);
296
297 return rv;
298 }
299
300 struct createinfo createinfo = {
301 .autof = 2, /* by default, create devices with standard names */
302 .symlinks = 1,
303 #ifdef DEBIAN
304 .gid = 6, /* disk */
305 .mode = 0660,
306 #else
307 .mode = 0600,
308 #endif
309 };
310
311 int parse_auto(char *str, char *msg, int config)
312 {
313 int autof;
314 if (str == NULL || *str == 0)
315 autof = 2;
316 else if (strcasecmp(str,"no")==0)
317 autof = 1;
318 else if (strcasecmp(str,"yes")==0)
319 autof = 2;
320 else if (strcasecmp(str,"md")==0)
321 autof = config?5:3;
322 else {
323 /* There might be digits, and maybe a hypen, at the end */
324 char *e = str + strlen(str);
325 int num = 4;
326 int len;
327 while (e > str && isdigit(e[-1]))
328 e--;
329 if (*e) {
330 num = atoi(e);
331 if (num <= 0) num = 1;
332 }
333 if (e > str && e[-1] == '-')
334 e--;
335 len = e - str;
336 if ((len == 2 && strncasecmp(str,"md",2)==0)) {
337 autof = config ? 5 : 3;
338 } else if ((len == 3 && strncasecmp(str,"yes",3)==0)) {
339 autof = 2;
340 } else if ((len == 3 && strncasecmp(str,"mdp",3)==0)) {
341 autof = config ? 6 : 4;
342 } else if ((len == 1 && strncasecmp(str,"p",1)==0) ||
343 (len >= 4 && strncasecmp(str,"part",4)==0)) {
344 autof = 6;
345 } else {
346 fprintf(stderr, Name ": %s arg of \"%s\" unrecognised: use no,yes,md,mdp,part\n"
347 " optionally followed by a number.\n",
348 msg, str);
349 exit(2);
350 }
351 autof |= num << 3;
352 }
353 return autof;
354 }
355
356 static void createline(char *line)
357 {
358 char *w;
359 char *ep;
360
361 for (w=dl_next(line); w!=line; w=dl_next(w)) {
362 if (strncasecmp(w, "auto=", 5) == 0)
363 createinfo.autof = parse_auto(w+5, "auto=", 1);
364 else if (strncasecmp(w, "owner=", 6) == 0) {
365 if (w[6] == 0) {
366 fprintf(stderr, Name ": missing owner name\n");
367 continue;
368 }
369 createinfo.uid = strtoul(w+6, &ep, 10);
370 if (*ep != 0) {
371 struct passwd *pw;
372 /* must be a name */
373 pw = getpwnam(w+6);
374 if (pw)
375 createinfo.uid = pw->pw_uid;
376 else
377 fprintf(stderr, Name ": CREATE user %s not found\n", w+6);
378 }
379 } else if (strncasecmp(w, "group=", 6) == 0) {
380 if (w[6] == 0) {
381 fprintf(stderr, Name ": missing group name\n");
382 continue;
383 }
384 createinfo.gid = strtoul(w+6, &ep, 10);
385 if (*ep != 0) {
386 struct group *gr;
387 /* must be a name */
388 gr = getgrnam(w+6);
389 if (gr)
390 createinfo.gid = gr->gr_gid;
391 else
392 fprintf(stderr, Name ": CREATE group %s not found\n", w+6);
393 }
394 } else if (strncasecmp(w, "mode=", 5) == 0) {
395 if (w[5] == 0) {
396 fprintf(stderr, Name ": missing CREATE mode\n");
397 continue;
398 }
399 createinfo.mode = strtoul(w+5, &ep, 8);
400 if (*ep != 0) {
401 createinfo.mode = 0600;
402 fprintf(stderr, Name ": unrecognised CREATE mode %s\n",
403 w+5);
404 }
405 } else if (strncasecmp(w, "metadata=", 9) == 0) {
406 /* style of metadata to use by default */
407 int i;
408 for (i=0; superlist[i] && !createinfo.supertype; i++)
409 createinfo.supertype =
410 superlist[i]->match_metadata_desc(w+9);
411 if (!createinfo.supertype)
412 fprintf(stderr, Name ": metadata format %s unknown, ignoring\n",
413 w+9);
414 } else if (strncasecmp(w, "symlinks=yes", 12) == 0)
415 createinfo.symlinks = 1;
416 else if (strncasecmp(w, "symlinks=no", 11) == 0)
417 createinfo.symlinks = 0;
418 else {
419 fprintf(stderr, Name ": unrecognised word on CREATE line: %s\n",
420 w);
421 }
422 }
423 }
424
425 void devline(char *line)
426 {
427 char *w;
428 struct conf_dev *cd;
429
430 for (w=dl_next(line); w != line; w=dl_next(w)) {
431 if (w[0] == '/' || strcasecmp(w, "partitions") == 0 ||
432 strcasecmp(w, "containers") == 0) {
433 cd = malloc(sizeof(*cd));
434 cd->name = strdup(w);
435 cd->next = cdevlist;
436 cdevlist = cd;
437 } else {
438 fprintf(stderr, Name ": unreconised word on DEVICE line: %s\n",
439 w);
440 }
441 }
442 }
443
444 mddev_ident_t mddevlist = NULL;
445 mddev_ident_t *mddevlp = &mddevlist;
446
447 void arrayline(char *line)
448 {
449 char *w;
450
451 struct mddev_ident_s mis;
452 mddev_ident_t mi;
453
454 mis.uuid_set = 0;
455 mis.super_minor = UnSet;
456 mis.level = UnSet;
457 mis.raid_disks = UnSet;
458 mis.spare_disks = 0;
459 mis.devices = NULL;
460 mis.devname = NULL;
461 mis.spare_group = NULL;
462 mis.autof = 0;
463 mis.next = NULL;
464 mis.st = NULL;
465 mis.bitmap_fd = -1;
466 mis.bitmap_file = NULL;
467 mis.name[0] = 0;
468 mis.container = NULL;
469 mis.member = NULL;
470
471 for (w=dl_next(line); w!=line; w=dl_next(w)) {
472 if (w[0] == '/') {
473 if (mis.devname)
474 fprintf(stderr, Name ": only give one device per ARRAY line: %s and %s\n",
475 mis.devname, w);
476 else mis.devname = w;
477 } else if (strncasecmp(w, "uuid=", 5)==0 ) {
478 if (mis.uuid_set)
479 fprintf(stderr, Name ": only specify uuid once, %s ignored.\n",
480 w);
481 else {
482 if (parse_uuid(w+5, mis.uuid))
483 mis.uuid_set = 1;
484 else
485 fprintf(stderr, Name ": bad uuid: %s\n", w);
486 }
487 } else if (strncasecmp(w, "super-minor=", 12)==0 ) {
488 if (mis.super_minor != UnSet)
489 fprintf(stderr, Name ": only specify super-minor once, %s ignored.\n",
490 w);
491 else {
492 char *endptr;
493 mis.super_minor= strtol(w+12, &endptr, 10);
494 if (w[12]==0 || endptr[0]!=0 || mis.super_minor < 0) {
495 fprintf(stderr, Name ": invalid super-minor number: %s\n",
496 w);
497 mis.super_minor = UnSet;
498 }
499 }
500 } else if (strncasecmp(w, "name=", 5)==0) {
501 if (mis.name[0])
502 fprintf(stderr, Name ": only specify name once, %s ignored.\n",
503 w);
504 else if (strlen(w+5) > 32)
505 fprintf(stderr, Name ": name too long, ignoring %s\n", w);
506 else
507 strcpy(mis.name, w+5);
508
509 } else if (strncasecmp(w, "bitmap=", 7) == 0) {
510 if (mis.bitmap_file)
511 fprintf(stderr, Name ": only specify bitmap file once. %s ignored\n",
512 w);
513 else
514 mis.bitmap_file = strdup(w+7);
515
516 } else if (strncasecmp(w, "devices=", 8 ) == 0 ) {
517 if (mis.devices)
518 fprintf(stderr, Name ": only specify devices once (use a comma separated list). %s ignored\n",
519 w);
520 else
521 mis.devices = strdup(w+8);
522 } else if (strncasecmp(w, "spare-group=", 12) == 0 ) {
523 if (mis.spare_group)
524 fprintf(stderr, Name ": only specify one spare group per array. %s ignored.\n",
525 w);
526 else
527 mis.spare_group = strdup(w+12);
528 } else if (strncasecmp(w, "level=", 6) == 0 ) {
529 /* this is mainly for compatability with --brief output */
530 mis.level = map_name(pers, w+6);
531 } else if (strncasecmp(w, "disks=", 6) == 0 ) {
532 /* again, for compat */
533 mis.raid_disks = atoi(w+6);
534 } else if (strncasecmp(w, "num-devices=", 12) == 0 ) {
535 /* again, for compat */
536 mis.raid_disks = atoi(w+12);
537 } else if (strncasecmp(w, "spares=", 7) == 0 ) {
538 /* for warning if not all spares present */
539 mis.spare_disks = atoi(w+7);
540 } else if (strncasecmp(w, "metadata=", 9) == 0) {
541 /* style of metadata on the devices. */
542 int i;
543
544 for(i=0; superlist[i] && !mis.st; i++)
545 mis.st = superlist[i]->match_metadata_desc(w+9);
546
547 if (!mis.st)
548 fprintf(stderr, Name ": metadata format %s unknown, ignored.\n", w+9);
549 } else if (strncasecmp(w, "auto=", 5) == 0 ) {
550 /* whether to create device special files as needed */
551 mis.autof = parse_auto(w+5, "auto type", 0);
552 } else if (strncasecmp(w, "member=", 7) == 0) {
553 /* subarray within a container */
554 mis.member = strdup(w+7);
555 } else if (strncasecmp(w, "container=", 10) == 0) {
556 /* the container holding this subarray. Either a device name
557 * or a uuid */
558 mis.container = strdup(w+10);
559 } else {
560 fprintf(stderr, Name ": unrecognised word on ARRAY line: %s\n",
561 w);
562 }
563 }
564 if (mis.uuid_set == 0 && mis.devices == NULL && mis.super_minor == UnSet && mis.name[0] == 0)
565 fprintf(stderr, Name ": ARRAY line %s has no identity information.\n", mis.devname);
566 else {
567 mi = malloc(sizeof(*mi));
568 *mi = mis;
569 mi->devname = mis.devname ? strdup(mis.devname) : NULL;
570 mi->next = NULL;
571 *mddevlp = mi;
572 mddevlp = &mi->next;
573 }
574 }
575
576 static char *alert_email = NULL;
577 void mailline(char *line)
578 {
579 char *w;
580
581 for (w=dl_next(line); w != line ; w=dl_next(w)) {
582 if (alert_email == NULL)
583 alert_email = strdup(w);
584 else
585 fprintf(stderr, Name ": excess address on MAIL line: %s - ignored\n",
586 w);
587 }
588 }
589
590 static char *alert_mail_from = NULL;
591 void mailfromline(char *line)
592 {
593 char *w;
594
595 for (w=dl_next(line); w != line ; w=dl_next(w)) {
596 if (alert_mail_from == NULL)
597 alert_mail_from = strdup(w);
598 else {
599 char *t = NULL;
600
601 if (asprintf(&t, "%s %s", alert_mail_from, w) > 0) {
602 free(alert_mail_from);
603 alert_mail_from = t;
604 }
605 }
606 }
607 }
608
609
610 static char *alert_program = NULL;
611 void programline(char *line)
612 {
613 char *w;
614
615 for (w=dl_next(line); w != line ; w=dl_next(w)) {
616 if (alert_program == NULL)
617 alert_program = strdup(w);
618 else
619 fprintf(stderr, Name ": excess program on PROGRAM line: %s - ignored\n",
620 w);
621 }
622 }
623
624 static char *home_host = NULL;
625 void homehostline(char *line)
626 {
627 char *w;
628
629 for (w=dl_next(line); w != line ; w=dl_next(w)) {
630 if (home_host == NULL)
631 home_host = strdup(w);
632 else
633 fprintf(stderr, Name ": excess host name on HOMEHOST line: %s - ignored\n",
634 w);
635 }
636 }
637
638
639 int loaded = 0;
640
641 static char *conffile = NULL;
642 void set_conffile(char *file)
643 {
644 conffile = file;
645 }
646
647 void load_conffile(void)
648 {
649 FILE *f;
650 char *line;
651
652 if (loaded) return;
653 if (conffile == NULL)
654 conffile = DefaultConfFile;
655
656 if (strcmp(conffile, "none") == 0) {
657 loaded = 1;
658 return;
659 }
660 if (strcmp(conffile, "partitions")==0) {
661 char *list = dl_strdup("DEV");
662 dl_init(list);
663 dl_add(list, dl_strdup("partitions"));
664 devline(list);
665 free_line(list);
666 loaded = 1;
667 return;
668 }
669 f = fopen(conffile, "r");
670 /* Debian chose to relocate mdadm.conf into /etc/mdadm/.
671 * To allow Debian users to compile from clean source and still
672 * have a working mdadm, we read /etc/mdadm/mdadm.conf
673 * if /etc/mdadm.conf doesn't exist
674 */
675 if (f == NULL &&
676 conffile == DefaultConfFile) {
677 f = fopen(DefaultAltConfFile, "r");
678 if (f)
679 conffile = DefaultAltConfFile;
680 }
681 if (f == NULL)
682 return;
683
684 loaded = 1;
685 while ((line=conf_line(f))) {
686 switch(match_keyword(line)) {
687 case Devices:
688 devline(line);
689 break;
690 case Array:
691 arrayline(line);
692 break;
693 case Mailaddr:
694 mailline(line);
695 break;
696 case Mailfrom:
697 mailfromline(line);
698 break;
699 case Program:
700 programline(line);
701 break;
702 case CreateDev:
703 createline(line);
704 break;
705 case Homehost:
706 homehostline(line);
707 break;
708 default:
709 fprintf(stderr, Name ": Unknown keyword %s\n", line);
710 }
711 free_line(line);
712 }
713
714 fclose(f);
715
716 /* printf("got file\n"); */
717 }
718
719 char *conf_get_mailaddr(void)
720 {
721 load_conffile();
722 return alert_email;
723 }
724
725 char *conf_get_mailfrom(void)
726 {
727 load_conffile();
728 return alert_mail_from;
729 }
730
731 char *conf_get_program(void)
732 {
733 load_conffile();
734 return alert_program;
735 }
736
737 char *conf_get_homehost(void)
738 {
739 load_conffile();
740 return home_host;
741 }
742
743 struct createinfo *conf_get_create_info(void)
744 {
745 load_conffile();
746 return &createinfo;
747 }
748
749 mddev_ident_t conf_get_ident(char *dev)
750 {
751 mddev_ident_t rv;
752 load_conffile();
753 rv = mddevlist;
754 while (dev && rv && (rv->devname == NULL
755 || strcmp(dev, rv->devname)!=0))
756 rv = rv->next;
757 return rv;
758 }
759
760 static void append_dlist(mddev_dev_t *dlp, mddev_dev_t list)
761 {
762 while (*dlp)
763 dlp = &(*dlp)->next;
764 *dlp = list;
765 }
766
767 mddev_dev_t conf_get_devs()
768 {
769 glob_t globbuf;
770 struct conf_dev *cd;
771 int flags = 0;
772 static mddev_dev_t dlist = NULL;
773 unsigned int i;
774
775 while (dlist) {
776 mddev_dev_t t = dlist;
777 dlist = dlist->next;
778 free(t->devname);
779 free(t);
780 }
781
782 load_conffile();
783
784 if (cdevlist == NULL) {
785 /* default to 'partitions' and 'containers' */
786 dlist = load_partitions();
787 append_dlist(&dlist, load_containers());
788 }
789
790 for (cd=cdevlist; cd; cd=cd->next) {
791 if (strcasecmp(cd->name, "partitions")==0)
792 append_dlist(&dlist, load_partitions());
793 else if (strcasecmp(cd->name, "containers")==0)
794 append_dlist(&dlist, load_containers());
795 else {
796 glob(cd->name, flags, NULL, &globbuf);
797 flags |= GLOB_APPEND;
798 }
799 }
800 if (flags & GLOB_APPEND) {
801 for (i=0; i<globbuf.gl_pathc; i++) {
802 mddev_dev_t t = malloc(sizeof(*t));
803 t->devname = strdup(globbuf.gl_pathv[i]);
804 t->next = dlist;
805 t->used = 0;
806 dlist = t;
807 /* printf("one dev is %s\n", t->devname);*/
808 }
809 globfree(&globbuf);
810 }
811
812 return dlist;
813 }
814
815 int conf_test_dev(char *devname)
816 {
817 struct conf_dev *cd;
818 if (cdevlist == NULL)
819 /* allow anything by default */
820 return 1;
821 for (cd = cdevlist ; cd ; cd = cd->next) {
822 if (strcasecmp(cd->name, "partitions") == 0)
823 return 1;
824 if (fnmatch(cd->name, devname, FNM_PATHNAME) == 0)
825 return 1;
826 }
827 return 0;
828 }
829
830
831 int match_oneof(char *devices, char *devname)
832 {
833 /* check if one of the comma separated patterns in devices
834 * matches devname
835 */
836
837
838 while (devices && *devices) {
839 char patn[1024];
840 char *p = devices;
841 devices = strchr(devices, ',');
842 if (!devices)
843 devices = p + strlen(p);
844 if (devices-p < 1024) {
845 strncpy(patn, p, devices-p);
846 patn[devices-p] = 0;
847 if (fnmatch(patn, devname, FNM_PATHNAME)==0)
848 return 1;
849 }
850 if (*devices == ',')
851 devices++;
852 }
853 return 0;
854 }