]> git.ipfire.org Git - thirdparty/mdadm.git/blame - config.c
Create missing /dev files where needed.
[thirdparty/mdadm.git] / config.c
CommitLineData
64c4757e 1/*
9a9dab36 2 * mdadm - manage Linux "md" devices aka RAID arrays.
64c4757e 3 *
cd29a5c8 4 * Copyright (C) 2001-2002 Neil Brown <neilb@cse.unsw.edu.au>
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>
52826846 36
64c4757e
NB
37/*
38 * Read the config file
39 *
40 * conf_get_uuids gets a list of devicename+uuid pairs
41 * conf_get_devs gets device names after expanding wildcards
42 *
43 * Each keeps the returned list and frees it when asked to make
44 * a new list.
45 *
82b27616
NB
46 * The format of the config file needs to be fairly extensible.
47 * Now, arrays only have names and uuids and devices merely are.
48 * But later arrays might want names, and devices might want superblock
49 * versions, and who knows what else.
50 * I like free format, abhore backslash line continuation, adore
51 * indentation for structure and am ok about # comments.
52 *
53 * So, each line that isn't blank or a #comment must either start
54 * with a key word, and not be indented, or must start with a
55 * non-key-word and must be indented.
56 *
57 * Keywords are DEVICE and ARRAY
58 * DEV{ICE} introduces some devices that might contain raid components.
59 * e.g.
60 * DEV style=0 /dev/sda* /dev/hd*
61 * DEV style=1 /dev/sd[b-f]*
62 * ARR{AY} describes an array giving md device and attributes like uuid=whatever
63 * e.g.
64 * ARRAY /dev/md0 uuid=whatever name=something
65 * Spaces separate words on each line. Quoting, with "" or '' protects them,
66 * but may not wrap over lines
67 *
64c4757e
NB
68 */
69
11a3e71d
NB
70#ifndef CONFFILE
71#define CONFFILE "/etc/mdadm.conf"
72#endif
ce4fafd6
NB
73#ifndef CONFFILE2
74/* for Debian compatibility .... */
75#define CONFFILE2 "/etc/mdadm/mdadm.conf"
76#endif
11a3e71d 77char DefaultConfFile[] = CONFFILE;
ce4fafd6 78char DefaultAltConfFile[] = CONFFILE2;
64c4757e 79
e0d19036 80char *keywords[] = { "device", "array", "mailaddr", "program", NULL };
82b27616
NB
81
82/*
83 * match_keyword returns an index into the keywords array, or -1 for no match
84 * case is ignored, and at least three characters must be given
85 */
86
87int match_keyword(char *word)
88{
52826846
NB
89 int len = strlen(word);
90 int n;
82b27616 91
52826846
NB
92 if (len < 3) return -1;
93 for (n=0; keywords[n]; n++) {
94 if (strncasecmp(word, keywords[n], len)==0)
95 return n;
96 }
97 return -1;
82b27616
NB
98}
99
100/* conf_word gets one word from the conf file.
101 * if "allow_key", then accept words at the start of a line,
102 * otherwise stop when such a word is found.
103 * We assume that the file pointer is at the end of a word, so the
104 * next character is a space, or a newline. If not, it is the start of a line.
105 */
106
107char *conf_word(FILE *file, int allow_key)
108{
52826846
NB
109 int wsize = 100;
110 int len = 0;
111 int c;
112 int quote;
113 int wordfound = 0;
114 char *word = malloc(wsize);
82b27616 115
52826846
NB
116 if (!word) abort();
117
118 while (wordfound==0) {
119 /* at the end of a word.. */
82b27616 120 c = getc(file);
52826846
NB
121 if (c == '#')
122 while (c != EOF && c != '\n')
123 c = getc(file);
124 if (c == EOF) break;
125 if (c == '\n') continue;
126
127 if (c != ' ' && c != '\t' && ! allow_key) {
128 ungetc(c, file);
129 break;
130 }
131 /* looks like it is safe to get a word here, if there is one */
132 quote = 0;
133 /* first, skip any spaces */
134 while (c == ' ' || c == '\t')
135 c = getc(file);
136 if (c != EOF && c != '\n' && c != '#') {
137 /* we really have a character of a word, so start saving it */
138 while (c != EOF && c != '\n' && (quote || (c!=' ' && c != '\t'))) {
139 wordfound = 1;
140 if (quote && c == quote) quote = 0;
141 else if (quote == 0 && (c == '\'' || c == '"'))
142 quote = c;
143 else {
144 if (len == wsize-1) {
145 wsize += 100;
146 word = realloc(word, wsize);
147 if (!word) abort();
148 }
149 word[len++] = c;
150 }
151 c = getc(file);
152 }
153 }
154 if (c != EOF) ungetc(c, file);
82b27616 155 }
52826846 156 word[len] = 0;
82b27616 157/* printf("word is <%s>\n", word); */
52826846
NB
158 if (!wordfound) {
159 free(word);
160 word = NULL;
161 }
162 return word;
82b27616
NB
163}
164
165/*
166 * conf_line reads one logical line from the conffile.
167 * It skips comments and continues until it finds a line that starts
168 * with a non blank/comment. This character is pushed back for the next call
169 * A doubly linked list of words is returned.
170 * the first word will be a keyword. Other words will have had quotes removed.
171 */
172
173char *conf_line(FILE *file)
174{
52826846
NB
175 char *w;
176 char *list;
82b27616 177
52826846
NB
178 w = conf_word(file, 1);
179 if (w == NULL) return NULL;
82b27616 180
52826846 181 list = dl_strdup(w);
82b27616 182 free(w);
52826846
NB
183 dl_init(list);
184
185 while ((w = conf_word(file,0))){
186 char *w2 = dl_strdup(w);
187 free(w);
188 dl_add(list, w2);
189 }
82b27616 190/* printf("got a line\n");*/
52826846 191 return list;
82b27616
NB
192}
193
194void free_line(char *line)
195{
52826846
NB
196 char *w;
197 for (w=dl_next(line); w != line; w=dl_next(line)) {
198 dl_del(w);
199 dl_free(w);
200 }
201 dl_free(line);
82b27616
NB
202}
203
204
205struct conf_dev {
206 struct conf_dev *next;
207 char *name;
208} *cdevlist = NULL;
209
057bd352 210mddev_dev_t load_partitions(void)
5787fa49
NB
211{
212 FILE *f = fopen("/proc/partitions", "r");
213 char buf[1024];
057bd352 214 mddev_dev_t rv = NULL;
5787fa49
NB
215 if (f == NULL) {
216 fprintf(stderr, Name ": cannot open /proc/partitions\n");
057bd352 217 return NULL;
5787fa49
NB
218 }
219 while (fgets(buf, 1024, f)) {
220 int major, minor;
98c6faba 221 char *name, *mp;
8b0dabea
NB
222 mddev_dev_t d;
223
5787fa49
NB
224 buf[1023] = '\0';
225 if (buf[0] != ' ')
226 continue;
98c6faba
NB
227 major = strtoul(buf, &mp, 10);
228 if (mp == buf || *mp != ' ')
5787fa49 229 continue;
98c6faba
NB
230 minor = strtoul(mp, NULL, 10);
231
16c6fa80 232 name = map_dev(major, minor, 1);
8b0dabea
NB
233
234 d = malloc(sizeof(*d));
235 d->devname = strdup(name);
236 d->next = rv;
237 rv = d;
5787fa49 238 }
dd0781e5 239 fclose(f);
057bd352 240 return rv;
5787fa49 241}
82b27616
NB
242
243
e0d19036 244void devline(char *line)
82b27616 245{
52826846
NB
246 char *w;
247 struct conf_dev *cd;
248
249 for (w=dl_next(line); w != line; w=dl_next(w)) {
057bd352 250 if (w[0] == '/' || strcasecmp(w, "partitions") == 0) {
52826846
NB
251 cd = malloc(sizeof(*cd));
252 cd->name = strdup(w);
253 cd->next = cdevlist;
254 cdevlist = cd;
255 } else {
256 fprintf(stderr, Name ": unreconised word on DEVICE line: %s\n",
257 w);
258 }
82b27616 259 }
82b27616
NB
260}
261
52826846
NB
262mddev_ident_t mddevlist = NULL;
263mddev_ident_t *mddevlp = &mddevlist;
82b27616
NB
264
265void arrayline(char *line)
266{
52826846
NB
267 char *w;
268
269 struct mddev_ident_s mis;
270 mddev_ident_t mi;
271
272 mis.uuid_set = 0;
98c6faba
NB
273 mis.super_minor = UnSet;
274 mis.level = UnSet;
275 mis.raid_disks = UnSet;
276 mis.spare_disks = UnSet;
52826846
NB
277 mis.devices = NULL;
278 mis.devname = NULL;
e0d19036 279 mis.spare_group = NULL;
dd0781e5 280 mis.autof = 0;
92919398 281 mis.next = NULL;
f277ce36
NB
282 mis.st = NULL;
283 mis.bitmap_fd = -1;
947fd4dd 284 mis.name[0] = 0;
52826846
NB
285
286 for (w=dl_next(line); w!=line; w=dl_next(w)) {
287 if (w[0] == '/') {
288 if (mis.devname)
289 fprintf(stderr, Name ": only give one device per ARRAY line: %s and %s\n",
290 mis.devname, w);
291 else mis.devname = w;
292 } else if (strncasecmp(w, "uuid=", 5)==0 ) {
293 if (mis.uuid_set)
294 fprintf(stderr, Name ": only specify uuid once, %s ignored.\n",
295 w);
296 else {
297 if (parse_uuid(w+5, mis.uuid))
298 mis.uuid_set = 1;
299 else
300 fprintf(stderr, Name ": bad uuid: %s\n", w);
301 }
302 } else if (strncasecmp(w, "super-minor=", 12)==0 ) {
f277ce36 303 if (mis.super_minor != UnSet)
52826846
NB
304 fprintf(stderr, Name ": only specify super-minor once, %s ignored.\n",
305 w);
306 else {
307 char *endptr;
308 mis.super_minor= strtol(w+12, &endptr, 10);
309 if (w[12]==0 || endptr[0]!=0 || mis.super_minor < 0) {
310 fprintf(stderr, Name ": invalid super-minor number: %s\n",
311 w);
98c6faba 312 mis.super_minor = UnSet;
52826846
NB
313 }
314 }
947fd4dd
NB
315 } else if (strncasecmp(w, "name=", 5)==0) {
316 if (mis.name[0])
317 fprintf(stderr, Name ": only specify name once, %s ignored.\n",
318 w);
319 else if (strlen(w+5) > 32)
320 fprintf(stderr, Name ": name too long, ignoring %s\n", w);
321 else
322 strcpy(mis.name, w+5);
323
52826846
NB
324 } else if (strncasecmp(w, "devices=", 8 ) == 0 ) {
325 if (mis.devices)
326 fprintf(stderr, Name ": only specify devices once (use a comma separated list). %s ignored\n",
327 w);
328 else
329 mis.devices = strdup(w+8);
330 } else if (strncasecmp(w, "spare-group=", 12) == 0 ) {
331 if (mis.spare_group)
332 fprintf(stderr, Name ": only specify one spare group per array. %s ignored.\n",
333 w);
334 else
335 mis.spare_group = strdup(w+12);
cd29a5c8
NB
336 } else if (strncasecmp(w, "level=", 6) == 0 ) {
337 /* this is mainly for compatability with --brief output */
338 mis.level = map_name(pers, w+6);
339 } else if (strncasecmp(w, "disks=", 6) == 0 ) {
340 /* again, for compat */
feb716e9 341 mis.raid_disks = atoi(w+6);
b83d95f3
NB
342 } else if (strncasecmp(w, "num-devices=", 12) == 0 ) {
343 /* again, for compat */
feb716e9
NB
344 mis.raid_disks = atoi(w+12);
345 } else if (strncasecmp(w, "spares=", 7) == 0 ) {
346 /* for warning if not all spares present */
347 mis.spare_disks = atoi(w+7);
f9ce90ba
NB
348 } else if (strncasecmp(w, "metadata=", 9) == 0) {
349 /* style of metadata on the devices. */
350 int i;
351
82d9eba6
NB
352 for(i=0; superlist[i] && !mis.st; i++)
353 mis.st = superlist[i]->match_metadata_desc(w+9);
354
355 if (!mis.st)
f9ce90ba 356 fprintf(stderr, Name ": metadata format %s unknown, ignored.\n", w+9);
dd0781e5
NB
357 } else if (strncasecmp(w, "auto=", 5) == 0 ) {
358 /* whether to create device special files as needed */
359 if (strcasecmp(w+5, "no")==0)
360 mis.autof = 0;
361 else if (strcasecmp(w+5,"yes")==0 || strcasecmp(w+5,"md")==0)
362 mis.autof = -1;
363 else {
1337546d 364 /* There might be digits, and maybe a hyphen, at the end */
dd0781e5
NB
365 char *e = w+5 + strlen(w+5);
366 int num = 4;
367 int len;
368 while (e > w+5 && isdigit(e[-1]))
369 e--;
370 if (*e) {
371 num = atoi(e);
372 if (num <= 0) num = 1;
373 }
374 if (e > w+5 && e[-1] == '-')
375 e--;
376 len = e - (w+5);
377 if ((len == 3 && strncasecmp(w+5,"mdp",3)==0) ||
378 (len == 1 && strncasecmp(w+5,"p",1)==0) ||
379 (len >= 4 && strncasecmp(w+5,"part",4)==0))
380 mis.autof = num;
381 else
382 fprintf(stderr, Name ": auto type of \"%s\" ignored for %s\n",
383 w+5, mis.devname?mis.devname:"unlabeled-array");
384 }
52826846
NB
385 } else {
386 fprintf(stderr, Name ": unrecognised word on ARRAY line: %s\n",
387 w);
388 }
389 }
390 if (mis.devname == NULL)
dd0781e5 391 fprintf(stderr, Name ": ARRAY line with no device\n");
947fd4dd 392 else if (mis.uuid_set == 0 && mis.devices == NULL && mis.super_minor == UnSet && mis.name[0] == 0)
52826846
NB
393 fprintf(stderr, Name ": ARRAY line %s has no identity information.\n", mis.devname);
394 else {
395 mi = malloc(sizeof(*mi));
396 *mi = mis;
397 mi->devname = strdup(mis.devname);
398 mi->next = NULL;
399 *mddevlp = mi;
400 mddevlp = &mi->next;
82b27616 401 }
82b27616 402}
e0d19036
NB
403
404static char *alert_email = NULL;
405void mailline(char *line)
406{
407 char *w;
408
409 for (w=dl_next(line); w != line ; w=dl_next(w)) {
410 if (alert_email == NULL)
411 alert_email = strdup(w);
412 else
413 fprintf(stderr, Name ": excess address on MAIL line: %s - ignored\n",
414 w);
415 }
416}
417
418
419static char *alert_program = NULL;
420void programline(char *line)
421{
422 char *w;
423
424 for (w=dl_next(line); w != line ; w=dl_next(w)) {
425 if (alert_program == NULL)
426 alert_program = strdup(w);
427 else
428 fprintf(stderr, Name ": excess program on PROGRAM line: %s - ignored\n",
429 w);
430 }
431}
432
433
82b27616
NB
434int loaded = 0;
435
436void load_conffile(char *conffile)
437{
52826846
NB
438 FILE *f;
439 char *line;
440
441 if (loaded) return;
442 if (conffile == NULL)
443 conffile = DefaultConfFile;
444
d013a55e
NB
445 if (strcmp(conffile, "none") == 0) {
446 loaded = 1;
447 return;
448 }
5787fa49 449 if (strcmp(conffile, "partitions")==0) {
b5687415
NB
450 char *list = dl_strdup("DEV");
451 dl_init(list);
452 dl_add(list, dl_strdup("partitions"));
453 devline(list);
454 free_line(list);
d013a55e 455 loaded = 1;
5787fa49
NB
456 return;
457 }
52826846 458 f = fopen(conffile, "r");
ce4fafd6
NB
459 /* Debian chose to relocate mdadm.conf into /etc/mdadm/.
460 * To allow Debian users to compile from clean source and still
461 * have a working mdadm, we read /etc/mdadm/mdadm.conf
462 * if /etc/mdadm.conf doesn't exist
463 */
464 if (f == NULL &&
465 conffile == DefaultConfFile) {
466 f = fopen(DefaultAltConfFile, "r");
467 if (f)
468 conffile = DefaultAltConfFile;
469 }
470 if (f == NULL)
52826846
NB
471 return;
472
473 loaded = 1;
474 while ((line=conf_line(f))) {
475 switch(match_keyword(line)) {
476 case 0: /* DEVICE */
477 devline(line);
478 break;
e0d19036 479 case 1: /* ARRAY */
52826846
NB
480 arrayline(line);
481 break;
e0d19036
NB
482 case 2: /* MAIL */
483 mailline(line);
484 break;
485 case 3: /* PROGRAM */
486 programline(line);
487 break;
52826846
NB
488 default:
489 fprintf(stderr, Name ": Unknown keyword %s\n", line);
490 }
491 free_line(line);
82b27616 492 }
82b27616 493
dd0781e5 494 fclose(f);
82b27616
NB
495
496/* printf("got file\n"); */
497}
498
e0d19036
NB
499char *conf_get_mailaddr(char *conffile)
500{
501 load_conffile(conffile);
502 return alert_email;
503}
504
505char *conf_get_program(char *conffile)
506{
507 load_conffile(conffile);
508 return alert_program;
509}
510
82b27616 511
52826846 512mddev_ident_t conf_get_ident(char *conffile, char *dev)
64c4757e 513{
52826846
NB
514 mddev_ident_t rv;
515 load_conffile(conffile);
516 rv = mddevlist;
517 while (dev && rv && strcmp(dev, rv->devname)!=0)
518 rv = rv->next;
519 return rv;
64c4757e
NB
520}
521
522mddev_dev_t conf_get_devs(char *conffile)
523{
52826846
NB
524 glob_t globbuf;
525 struct conf_dev *cd;
526 int flags = 0;
527 static mddev_dev_t dlist = NULL;
98c6faba 528 unsigned int i;
52826846
NB
529
530 while (dlist) {
531 mddev_dev_t t = dlist;
532 dlist = dlist->next;
533 free(t->devname);
534 free(t);
535 }
82b27616 536
52826846 537 load_conffile(conffile);
82b27616 538
52826846 539 for (cd=cdevlist; cd; cd=cd->next) {
057bd352
NB
540 if (strcasecmp(cd->name, "partitions")==0 && dlist == NULL)
541 dlist = load_partitions();
542 else {
543 glob(cd->name, flags, NULL, &globbuf);
544 flags |= GLOB_APPEND;
545 }
52826846 546 }
e0d19036
NB
547 if (flags & GLOB_APPEND) {
548 for (i=0; i<globbuf.gl_pathc; i++) {
549 mddev_dev_t t = malloc(sizeof(*t));
550 t->devname = strdup(globbuf.gl_pathv[i]);
551 t->next = dlist;
552 dlist = t;
82b27616 553/* printf("one dev is %s\n", t->devname);*/
e0d19036
NB
554 }
555 globfree(&globbuf);
52826846 556 }
82b27616 557
52826846 558 return dlist;
64c4757e
NB
559}
560
52826846
NB
561int match_oneof(char *devices, char *devname)
562{
563 /* check if one of the comma separated patterns in devices
564 * matches devname
565 */
566
567
568 while (devices && *devices) {
569 char patn[1024];
570 char *p = devices;
571 devices = strchr(devices, ',');
572 if (!devices)
573 devices = p + strlen(p);
574 if (devices-p < 1024) {
575 strncpy(patn, p, devices-p);
576 patn[devices-p] = 0;
577 if (fnmatch(patn, devname, FNM_PATHNAME)==0)
578 return 1;
579 }
580 if (*devices == ',')
581 devices++;
582 }
583 return 0;
584}