]> git.ipfire.org Git - thirdparty/mdadm.git/blame - config.c
Limit size of bitmap to 2million chunks.
[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
4948b8f7 80char *keywords[] = { "device", "array", "mailaddr", "program", "mailfrom", 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;
4ccdb956 276 mis.spare_disks = 0;
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;
7ef02d01 284 mis.bitmap_file = NULL;
947fd4dd 285 mis.name[0] = 0;
52826846
NB
286
287 for (w=dl_next(line); w!=line; w=dl_next(w)) {
288 if (w[0] == '/') {
289 if (mis.devname)
290 fprintf(stderr, Name ": only give one device per ARRAY line: %s and %s\n",
291 mis.devname, w);
292 else mis.devname = w;
293 } else if (strncasecmp(w, "uuid=", 5)==0 ) {
294 if (mis.uuid_set)
295 fprintf(stderr, Name ": only specify uuid once, %s ignored.\n",
296 w);
297 else {
298 if (parse_uuid(w+5, mis.uuid))
299 mis.uuid_set = 1;
300 else
301 fprintf(stderr, Name ": bad uuid: %s\n", w);
302 }
303 } else if (strncasecmp(w, "super-minor=", 12)==0 ) {
f277ce36 304 if (mis.super_minor != UnSet)
52826846
NB
305 fprintf(stderr, Name ": only specify super-minor once, %s ignored.\n",
306 w);
307 else {
308 char *endptr;
309 mis.super_minor= strtol(w+12, &endptr, 10);
310 if (w[12]==0 || endptr[0]!=0 || mis.super_minor < 0) {
311 fprintf(stderr, Name ": invalid super-minor number: %s\n",
312 w);
98c6faba 313 mis.super_minor = UnSet;
52826846
NB
314 }
315 }
947fd4dd
NB
316 } else if (strncasecmp(w, "name=", 5)==0) {
317 if (mis.name[0])
318 fprintf(stderr, Name ": only specify name once, %s ignored.\n",
319 w);
320 else if (strlen(w+5) > 32)
321 fprintf(stderr, Name ": name too long, ignoring %s\n", w);
322 else
323 strcpy(mis.name, w+5);
324
7ef02d01
NB
325 } else if (strncasecmp(w, "bitmap=", 7) == 0) {
326 if (mis.bitmap_file)
327 fprintf(stderr, Name ": only specify bitmap file once. %s ignored\n",
328 w);
329 else
330 mis.bitmap_file = w+7;
331
52826846
NB
332 } else if (strncasecmp(w, "devices=", 8 ) == 0 ) {
333 if (mis.devices)
334 fprintf(stderr, Name ": only specify devices once (use a comma separated list). %s ignored\n",
335 w);
336 else
337 mis.devices = strdup(w+8);
338 } else if (strncasecmp(w, "spare-group=", 12) == 0 ) {
339 if (mis.spare_group)
340 fprintf(stderr, Name ": only specify one spare group per array. %s ignored.\n",
341 w);
342 else
343 mis.spare_group = strdup(w+12);
cd29a5c8
NB
344 } else if (strncasecmp(w, "level=", 6) == 0 ) {
345 /* this is mainly for compatability with --brief output */
346 mis.level = map_name(pers, w+6);
347 } else if (strncasecmp(w, "disks=", 6) == 0 ) {
348 /* again, for compat */
feb716e9 349 mis.raid_disks = atoi(w+6);
b83d95f3
NB
350 } else if (strncasecmp(w, "num-devices=", 12) == 0 ) {
351 /* again, for compat */
feb716e9
NB
352 mis.raid_disks = atoi(w+12);
353 } else if (strncasecmp(w, "spares=", 7) == 0 ) {
354 /* for warning if not all spares present */
355 mis.spare_disks = atoi(w+7);
f9ce90ba
NB
356 } else if (strncasecmp(w, "metadata=", 9) == 0) {
357 /* style of metadata on the devices. */
358 int i;
359
82d9eba6
NB
360 for(i=0; superlist[i] && !mis.st; i++)
361 mis.st = superlist[i]->match_metadata_desc(w+9);
362
363 if (!mis.st)
f9ce90ba 364 fprintf(stderr, Name ": metadata format %s unknown, ignored.\n", w+9);
dd0781e5
NB
365 } else if (strncasecmp(w, "auto=", 5) == 0 ) {
366 /* whether to create device special files as needed */
367 if (strcasecmp(w+5, "no")==0)
368 mis.autof = 0;
369 else if (strcasecmp(w+5,"yes")==0 || strcasecmp(w+5,"md")==0)
370 mis.autof = -1;
371 else {
1337546d 372 /* There might be digits, and maybe a hyphen, at the end */
dd0781e5
NB
373 char *e = w+5 + strlen(w+5);
374 int num = 4;
375 int len;
376 while (e > w+5 && isdigit(e[-1]))
377 e--;
378 if (*e) {
379 num = atoi(e);
380 if (num <= 0) num = 1;
381 }
382 if (e > w+5 && e[-1] == '-')
383 e--;
384 len = e - (w+5);
385 if ((len == 3 && strncasecmp(w+5,"mdp",3)==0) ||
386 (len == 1 && strncasecmp(w+5,"p",1)==0) ||
387 (len >= 4 && strncasecmp(w+5,"part",4)==0))
388 mis.autof = num;
389 else
390 fprintf(stderr, Name ": auto type of \"%s\" ignored for %s\n",
391 w+5, mis.devname?mis.devname:"unlabeled-array");
392 }
52826846
NB
393 } else {
394 fprintf(stderr, Name ": unrecognised word on ARRAY line: %s\n",
395 w);
396 }
397 }
398 if (mis.devname == NULL)
dd0781e5 399 fprintf(stderr, Name ": ARRAY line with no device\n");
947fd4dd 400 else if (mis.uuid_set == 0 && mis.devices == NULL && mis.super_minor == UnSet && mis.name[0] == 0)
52826846
NB
401 fprintf(stderr, Name ": ARRAY line %s has no identity information.\n", mis.devname);
402 else {
403 mi = malloc(sizeof(*mi));
404 *mi = mis;
405 mi->devname = strdup(mis.devname);
406 mi->next = NULL;
407 *mddevlp = mi;
408 mddevlp = &mi->next;
82b27616 409 }
82b27616 410}
e0d19036
NB
411
412static char *alert_email = NULL;
413void mailline(char *line)
414{
415 char *w;
416
417 for (w=dl_next(line); w != line ; w=dl_next(w)) {
418 if (alert_email == NULL)
419 alert_email = strdup(w);
420 else
421 fprintf(stderr, Name ": excess address on MAIL line: %s - ignored\n",
422 w);
423 }
424}
425
4948b8f7
NB
426static char *alert_mail_from = NULL;
427void mailfromline(char *line)
428{
429 char *w;
430
431 for (w=dl_next(line); w != line ; w=dl_next(w)) {
432 if (alert_mail_from == NULL)
433 alert_mail_from = strdup(w);
434 else {
435 char *t= NULL;
436 asprintf(&t, "%s %s", alert_mail_from, w);
437 free(alert_mail_from);
438 alert_mail_from = t;
439 }
440 }
441}
442
e0d19036
NB
443
444static char *alert_program = NULL;
445void programline(char *line)
446{
447 char *w;
448
449 for (w=dl_next(line); w != line ; w=dl_next(w)) {
450 if (alert_program == NULL)
451 alert_program = strdup(w);
452 else
453 fprintf(stderr, Name ": excess program on PROGRAM line: %s - ignored\n",
454 w);
455 }
456}
457
458
82b27616
NB
459int loaded = 0;
460
461void load_conffile(char *conffile)
462{
52826846
NB
463 FILE *f;
464 char *line;
465
466 if (loaded) return;
467 if (conffile == NULL)
468 conffile = DefaultConfFile;
469
d013a55e
NB
470 if (strcmp(conffile, "none") == 0) {
471 loaded = 1;
472 return;
473 }
5787fa49 474 if (strcmp(conffile, "partitions")==0) {
b5687415
NB
475 char *list = dl_strdup("DEV");
476 dl_init(list);
477 dl_add(list, dl_strdup("partitions"));
478 devline(list);
479 free_line(list);
d013a55e 480 loaded = 1;
5787fa49
NB
481 return;
482 }
52826846 483 f = fopen(conffile, "r");
ce4fafd6
NB
484 /* Debian chose to relocate mdadm.conf into /etc/mdadm/.
485 * To allow Debian users to compile from clean source and still
486 * have a working mdadm, we read /etc/mdadm/mdadm.conf
487 * if /etc/mdadm.conf doesn't exist
488 */
489 if (f == NULL &&
490 conffile == DefaultConfFile) {
491 f = fopen(DefaultAltConfFile, "r");
492 if (f)
493 conffile = DefaultAltConfFile;
494 }
495 if (f == NULL)
52826846
NB
496 return;
497
498 loaded = 1;
499 while ((line=conf_line(f))) {
500 switch(match_keyword(line)) {
501 case 0: /* DEVICE */
502 devline(line);
503 break;
e0d19036 504 case 1: /* ARRAY */
52826846
NB
505 arrayline(line);
506 break;
e0d19036
NB
507 case 2: /* MAIL */
508 mailline(line);
509 break;
510 case 3: /* PROGRAM */
511 programline(line);
512 break;
4948b8f7
NB
513 case 4: /* MAILFROM */
514 mailfromline(line);
515 break;
52826846
NB
516 default:
517 fprintf(stderr, Name ": Unknown keyword %s\n", line);
518 }
519 free_line(line);
82b27616 520 }
82b27616 521
dd0781e5 522 fclose(f);
82b27616
NB
523
524/* printf("got file\n"); */
525}
526
e0d19036
NB
527char *conf_get_mailaddr(char *conffile)
528{
529 load_conffile(conffile);
530 return alert_email;
531}
532
4948b8f7
NB
533char *conf_get_mailfrom(char *conffile)
534{
535 load_conffile(conffile);
536 return alert_mail_from;
537}
538
e0d19036
NB
539char *conf_get_program(char *conffile)
540{
541 load_conffile(conffile);
542 return alert_program;
543}
544
82b27616 545
52826846 546mddev_ident_t conf_get_ident(char *conffile, char *dev)
64c4757e 547{
52826846
NB
548 mddev_ident_t rv;
549 load_conffile(conffile);
550 rv = mddevlist;
551 while (dev && rv && strcmp(dev, rv->devname)!=0)
552 rv = rv->next;
553 return rv;
64c4757e
NB
554}
555
556mddev_dev_t conf_get_devs(char *conffile)
557{
52826846
NB
558 glob_t globbuf;
559 struct conf_dev *cd;
560 int flags = 0;
561 static mddev_dev_t dlist = NULL;
98c6faba 562 unsigned int i;
52826846
NB
563
564 while (dlist) {
565 mddev_dev_t t = dlist;
566 dlist = dlist->next;
567 free(t->devname);
568 free(t);
569 }
82b27616 570
52826846 571 load_conffile(conffile);
a99d6b66
NB
572
573 if (cdevlist == NULL)
574 /* default to 'partitions */
575 dlist = load_partitions();
576
52826846 577 for (cd=cdevlist; cd; cd=cd->next) {
057bd352
NB
578 if (strcasecmp(cd->name, "partitions")==0 && dlist == NULL)
579 dlist = load_partitions();
580 else {
581 glob(cd->name, flags, NULL, &globbuf);
582 flags |= GLOB_APPEND;
583 }
52826846 584 }
e0d19036
NB
585 if (flags & GLOB_APPEND) {
586 for (i=0; i<globbuf.gl_pathc; i++) {
587 mddev_dev_t t = malloc(sizeof(*t));
588 t->devname = strdup(globbuf.gl_pathv[i]);
589 t->next = dlist;
590 dlist = t;
82b27616 591/* printf("one dev is %s\n", t->devname);*/
e0d19036
NB
592 }
593 globfree(&globbuf);
52826846 594 }
82b27616 595
52826846 596 return dlist;
64c4757e
NB
597}
598
52826846
NB
599int match_oneof(char *devices, char *devname)
600{
601 /* check if one of the comma separated patterns in devices
602 * matches devname
603 */
604
605
606 while (devices && *devices) {
607 char patn[1024];
608 char *p = devices;
609 devices = strchr(devices, ',');
610 if (!devices)
611 devices = p + strlen(p);
612 if (devices-p < 1024) {
613 strncpy(patn, p, devices-p);
614 patn[devices-p] = 0;
615 if (fnmatch(patn, devname, FNM_PATHNAME)==0)
616 return 1;
617 }
618 if (*devices == ',')
619 devices++;
620 }
621 return 0;
622}