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