]> git.ipfire.org Git - thirdparty/mdadm.git/blame - config.c
Set home-cluster while creating an array
[thirdparty/mdadm.git] / config.c
CommitLineData
64c4757e 1/*
9a9dab36 2 * mdadm - manage Linux "md" devices aka RAID arrays.
64c4757e 3 *
e736b623 4 * Copyright (C) 2001-2009 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
e736b623 22 * Email: <neilb@suse.de>
64c4757e
NB
23 */
24
9a9dab36 25#include "mdadm.h"
82b27616 26#include "dlink.h"
ff7f2ebb 27#include <dirent.h>
82b27616 28#include <glob.h>
52826846 29#include <fnmatch.h>
dd0781e5 30#include <ctype.h>
5bbb4842
NB
31#include <pwd.h>
32#include <grp.h>
52826846 33
64c4757e
NB
34/*
35 * Read the config file
36 *
37 * conf_get_uuids gets a list of devicename+uuid pairs
38 * conf_get_devs gets device names after expanding wildcards
39 *
40 * Each keeps the returned list and frees it when asked to make
41 * a new list.
42 *
82b27616
NB
43 * The format of the config file needs to be fairly extensible.
44 * Now, arrays only have names and uuids and devices merely are.
45 * But later arrays might want names, and devices might want superblock
46 * versions, and who knows what else.
47 * I like free format, abhore backslash line continuation, adore
48 * indentation for structure and am ok about # comments.
49 *
50 * So, each line that isn't blank or a #comment must either start
51 * with a key word, and not be indented, or must start with a
52 * non-key-word and must be indented.
53 *
31015d57 54 * Keywords are DEVICE and ARRAY ... and several others.
82b27616
NB
55 * DEV{ICE} introduces some devices that might contain raid components.
56 * e.g.
57 * DEV style=0 /dev/sda* /dev/hd*
58 * DEV style=1 /dev/sd[b-f]*
59 * ARR{AY} describes an array giving md device and attributes like uuid=whatever
60 * e.g.
61 * ARRAY /dev/md0 uuid=whatever name=something
62 * Spaces separate words on each line. Quoting, with "" or '' protects them,
63 * but may not wrap over lines
64 *
64c4757e
NB
65 */
66
11a3e71d
NB
67#ifndef CONFFILE
68#define CONFFILE "/etc/mdadm.conf"
69#endif
ce4fafd6
NB
70#ifndef CONFFILE2
71/* for Debian compatibility .... */
72#define CONFFILE2 "/etc/mdadm/mdadm.conf"
73#endif
11a3e71d 74char DefaultConfFile[] = CONFFILE;
9dc70cbc 75char DefaultConfDir[] = CONFFILE ".d";
ce4fafd6 76char DefaultAltConfFile[] = CONFFILE2;
9dc70cbc 77char DefaultAltConfDir[] = CONFFILE2 ".d";
64c4757e 78
31015d57 79enum linetype { Devices, Array, Mailaddr, Mailfrom, Program, CreateDev,
7716570e 80 Homehost, HomeCluster, AutoMode, Policy, PartPolicy, LTEnd };
8fe9db0f
NB
81char *keywords[] = {
82 [Devices] = "devices",
83 [Array] = "array",
84 [Mailaddr] = "mailaddr",
85 [Mailfrom] = "mailfrom",
86 [Program] = "program",
8382f19b 87 [CreateDev]= "create",
8fe9db0f 88 [Homehost] = "homehost",
7716570e 89 [HomeCluster] = "homecluster",
31015d57 90 [AutoMode] = "auto",
5527fc74
N
91 [Policy] = "policy",
92 [PartPolicy]="part-policy",
8fe9db0f
NB
93 [LTEnd] = NULL
94};
82b27616
NB
95
96/*
97 * match_keyword returns an index into the keywords array, or -1 for no match
98 * case is ignored, and at least three characters must be given
99 */
100
101int match_keyword(char *word)
102{
52826846
NB
103 int len = strlen(word);
104 int n;
aba69144 105
52826846
NB
106 if (len < 3) return -1;
107 for (n=0; keywords[n]; n++) {
108 if (strncasecmp(word, keywords[n], len)==0)
109 return n;
110 }
111 return -1;
82b27616
NB
112}
113
82b27616 114struct conf_dev {
5d500228
N
115 struct conf_dev *next;
116 char *name;
82b27616
NB
117} *cdevlist = NULL;
118
a655e550 119struct mddev_dev *load_partitions(void)
5787fa49
NB
120{
121 FILE *f = fopen("/proc/partitions", "r");
122 char buf[1024];
a655e550 123 struct mddev_dev *rv = NULL;
5787fa49 124 if (f == NULL) {
e7b84f9d 125 pr_err("cannot open /proc/partitions\n");
057bd352 126 return NULL;
5787fa49
NB
127 }
128 while (fgets(buf, 1024, f)) {
129 int major, minor;
98c6faba 130 char *name, *mp;
a655e550 131 struct mddev_dev *d;
8b0dabea 132
5787fa49
NB
133 buf[1023] = '\0';
134 if (buf[0] != ' ')
135 continue;
98c6faba 136 major = strtoul(buf, &mp, 10);
aba69144 137 if (mp == buf || *mp != ' ')
5787fa49 138 continue;
98c6faba
NB
139 minor = strtoul(mp, NULL, 10);
140
16c6fa80 141 name = map_dev(major, minor, 1);
e81cdd9f
NB
142 if (!name)
143 continue;
503975b9 144 d = xmalloc(sizeof(*d));
5e73b024 145 memset(d, 0, sizeof(*d));
503975b9 146 d->devname = xstrdup(name);
8b0dabea
NB
147 d->next = rv;
148 rv = d;
5787fa49 149 }
dd0781e5 150 fclose(f);
057bd352 151 return rv;
5787fa49 152}
82b27616 153
a655e550 154struct mddev_dev *load_containers(void)
f64165f7 155{
b4924f46 156 struct mdstat_ent *mdstat = mdstat_read(0, 0);
f64165f7 157 struct mdstat_ent *ent;
a655e550
N
158 struct mddev_dev *d;
159 struct mddev_dev *rv = NULL;
eb2306f8 160 struct map_ent *map = NULL, *me;
f64165f7
DW
161
162 if (!mdstat)
163 return NULL;
164
165 for (ent = mdstat; ent; ent = ent->next)
166 if (ent->metadata_version &&
167 strncmp(ent->metadata_version, "external:", 9) == 0 &&
168 !is_subarray(&ent->metadata_version[9])) {
503975b9 169 d = xmalloc(sizeof(*d));
5e73b024 170 memset(d, 0, sizeof(*d));
eb2306f8
N
171 me = map_by_devnm(&map, ent->dev);
172 if (me)
173 d->devname = xstrdup(me->path);
174 else if (asprintf(&d->devname, "/dev/%s", ent->dev) < 0) {
f64165f7
DW
175 free(d);
176 continue;
177 }
178 d->next = rv;
f64165f7
DW
179 rv = d;
180 }
181 free_mdstat(mdstat);
eb2306f8 182 map_free(map);
f64165f7
DW
183
184 return rv;
185}
186
5bbb4842 187struct createinfo createinfo = {
75723446 188 .autof = 2, /* by default, create devices with standard names */
38098016 189 .symlinks = 1,
eca944fa 190 .names = 0, /* By default, stick with numbered md devices. */
e2efe9e7 191 .bblist = 1, /* Use a bad block list by default */
5bbb4842
NB
192#ifdef DEBIAN
193 .gid = 6, /* disk */
194 .mode = 0660,
195#else
196 .mode = 0600,
197#endif
198};
199
f1ae21c4 200int parse_auto(char *str, char *msg, int config)
5bbb4842
NB
201{
202 int autof;
203 if (str == NULL || *str == 0)
f1ae21c4 204 autof = 2;
5bbb4842 205 else if (strcasecmp(str,"no")==0)
f1ae21c4 206 autof = 1;
5bbb4842 207 else if (strcasecmp(str,"yes")==0)
f1ae21c4 208 autof = 2;
5bbb4842 209 else if (strcasecmp(str,"md")==0)
f1ae21c4 210 autof = config?5:3;
5bbb4842
NB
211 else {
212 /* There might be digits, and maybe a hypen, at the end */
213 char *e = str + strlen(str);
214 int num = 4;
215 int len;
216 while (e > str && isdigit(e[-1]))
217 e--;
218 if (*e) {
219 num = atoi(e);
220 if (num <= 0) num = 1;
221 }
222 if (e > str && e[-1] == '-')
223 e--;
224 len = e - str;
f1ae21c4
NB
225 if ((len == 2 && strncasecmp(str,"md",2)==0)) {
226 autof = config ? 5 : 3;
6ba83b5f
NB
227 } else if ((len == 3 && strncasecmp(str,"yes",3)==0)) {
228 autof = 2;
f1ae21c4
NB
229 } else if ((len == 3 && strncasecmp(str,"mdp",3)==0)) {
230 autof = config ? 6 : 4;
231 } else if ((len == 1 && strncasecmp(str,"p",1)==0) ||
232 (len >= 4 && strncasecmp(str,"part",4)==0)) {
233 autof = 6;
234 } else {
e7b84f9d 235 pr_err("%s arg of \"%s\" unrecognised: use no,yes,md,mdp,part\n"
5bbb4842
NB
236 " optionally followed by a number.\n",
237 msg, str);
238 exit(2);
239 }
f1ae21c4 240 autof |= num << 3;
5bbb4842
NB
241 }
242 return autof;
243}
f1ae21c4 244
5bbb4842
NB
245static void createline(char *line)
246{
247 char *w;
248 char *ep;
249
250 for (w=dl_next(line); w!=line; w=dl_next(w)) {
251 if (strncasecmp(w, "auto=", 5) == 0)
f1ae21c4 252 createinfo.autof = parse_auto(w+5, "auto=", 1);
5bbb4842
NB
253 else if (strncasecmp(w, "owner=", 6) == 0) {
254 if (w[6] == 0) {
e7b84f9d 255 pr_err("missing owner name\n");
5bbb4842
NB
256 continue;
257 }
258 createinfo.uid = strtoul(w+6, &ep, 10);
259 if (*ep != 0) {
5bbb4842
NB
260 struct passwd *pw;
261 /* must be a name */
262 pw = getpwnam(w+6);
263 if (pw)
264 createinfo.uid = pw->pw_uid;
265 else
e7b84f9d 266 pr_err("CREATE user %s not found\n", w+6);
5bbb4842
NB
267 }
268 } else if (strncasecmp(w, "group=", 6) == 0) {
269 if (w[6] == 0) {
e7b84f9d 270 pr_err("missing group name\n");
5bbb4842
NB
271 continue;
272 }
273 createinfo.gid = strtoul(w+6, &ep, 10);
274 if (*ep != 0) {
5bbb4842
NB
275 struct group *gr;
276 /* must be a name */
277 gr = getgrnam(w+6);
278 if (gr)
279 createinfo.gid = gr->gr_gid;
280 else
e7b84f9d 281 pr_err("CREATE group %s not found\n", w+6);
5bbb4842
NB
282 }
283 } else if (strncasecmp(w, "mode=", 5) == 0) {
284 if (w[5] == 0) {
e7b84f9d 285 pr_err("missing CREATE mode\n");
5bbb4842
NB
286 continue;
287 }
288 createinfo.mode = strtoul(w+5, &ep, 8);
289 if (*ep != 0) {
290 createinfo.mode = 0600;
e7b84f9d 291 pr_err("unrecognised CREATE mode %s\n",
5bbb4842
NB
292 w+5);
293 }
058574b1
NB
294 } else if (strncasecmp(w, "metadata=", 9) == 0) {
295 /* style of metadata to use by default */
296 int i;
297 for (i=0; superlist[i] && !createinfo.supertype; i++)
298 createinfo.supertype =
299 superlist[i]->match_metadata_desc(w+9);
300 if (!createinfo.supertype)
e7b84f9d 301 pr_err("metadata format %s unknown, ignoring\n",
058574b1 302 w+9);
38098016
NB
303 } else if (strncasecmp(w, "symlinks=yes", 12) == 0)
304 createinfo.symlinks = 1;
305 else if (strncasecmp(w, "symlinks=no", 11) == 0)
306 createinfo.symlinks = 0;
eca944fa
N
307 else if (strncasecmp(w, "names=yes", 12) == 0)
308 createinfo.names = 1;
309 else if (strncasecmp(w, "names=no", 11) == 0)
310 createinfo.names = 0;
e2efe9e7
N
311 else if (strncasecmp(w, "bbl=no", 11) == 0)
312 createinfo.bblist = 0;
313 else if (strncasecmp(w, "bbl=yes", 11) == 0)
314 createinfo.bblist = 1;
38098016 315 else {
e7b84f9d 316 pr_err("unrecognised word on CREATE line: %s\n",
5bbb4842
NB
317 w);
318 }
319 }
320}
82b27616 321
aba69144 322void devline(char *line)
82b27616 323{
52826846
NB
324 char *w;
325 struct conf_dev *cd;
326
327 for (w=dl_next(line); w != line; w=dl_next(w)) {
f64165f7
DW
328 if (w[0] == '/' || strcasecmp(w, "partitions") == 0 ||
329 strcasecmp(w, "containers") == 0) {
503975b9
N
330 cd = xmalloc(sizeof(*cd));
331 cd->name = xstrdup(w);
52826846
NB
332 cd->next = cdevlist;
333 cdevlist = cd;
334 } else {
e7b84f9d 335 pr_err("unreconised word on DEVICE line: %s\n",
52826846
NB
336 w);
337 }
82b27616 338 }
82b27616
NB
339}
340
fa56eddb
N
341struct mddev_ident *mddevlist = NULL;
342struct mddev_ident **mddevlp = &mddevlist;
82b27616 343
db2d001c
N
344static int is_number(char *w)
345{
346 /* check if there are 1 or more digits and nothing else */
347 int digits = 0;
348 while (*w && isdigit(*w)) {
349 digits++;
350 w++;
351 }
352 return (digits && ! *w);
353}
354
82b27616
NB
355void arrayline(char *line)
356{
52826846
NB
357 char *w;
358
fa56eddb
N
359 struct mddev_ident mis;
360 struct mddev_ident *mi;
52826846
NB
361
362 mis.uuid_set = 0;
98c6faba
NB
363 mis.super_minor = UnSet;
364 mis.level = UnSet;
365 mis.raid_disks = UnSet;
4ccdb956 366 mis.spare_disks = 0;
52826846
NB
367 mis.devices = NULL;
368 mis.devname = NULL;
e0d19036 369 mis.spare_group = NULL;
dd0781e5 370 mis.autof = 0;
92919398 371 mis.next = NULL;
f277ce36
NB
372 mis.st = NULL;
373 mis.bitmap_fd = -1;
7ef02d01 374 mis.bitmap_file = NULL;
947fd4dd 375 mis.name[0] = 0;
71d60c48
DW
376 mis.container = NULL;
377 mis.member = NULL;
52826846
NB
378
379 for (w=dl_next(line); w!=line; w=dl_next(w)) {
db2d001c
N
380 if (w[0] == '/' || strchr(w, '=') == NULL) {
381 /* This names the device, or is '<ignore>'.
382 * The rules match those in create_mddev.
383 * 'w' must be:
384 * /dev/md/{anything}
385 * /dev/mdNN
386 * /dev/md_dNN
387 * <ignore>
388 * or anything that doesn't start '/' or '<'
389 */
390 if (strcasecmp(w, "<ignore>") == 0 ||
391 strncmp(w, "/dev/md/", 8) == 0 ||
392 (w[0] != '/' && w[0] != '<') ||
1011e834 393 (strncmp(w, "/dev/md", 7) == 0 &&
db2d001c
N
394 is_number(w+7)) ||
395 (strncmp(w, "/dev/md_d", 9) == 0 &&
396 is_number(w+9))
397 ) {
398 /* This is acceptable */;
399 if (mis.devname)
7a862a02 400 pr_err("only give one device per ARRAY line: %s and %s\n",
db2d001c
N
401 mis.devname, w);
402 else
403 mis.devname = w;
404 }else {
7a862a02 405 pr_err("%s is an invalid name for an md device - ignored.\n", w);
db2d001c 406 }
52826846
NB
407 } else if (strncasecmp(w, "uuid=", 5)==0 ) {
408 if (mis.uuid_set)
e7b84f9d 409 pr_err("only specify uuid once, %s ignored.\n",
52826846
NB
410 w);
411 else {
412 if (parse_uuid(w+5, mis.uuid))
413 mis.uuid_set = 1;
414 else
e7b84f9d 415 pr_err("bad uuid: %s\n", w);
52826846
NB
416 }
417 } else if (strncasecmp(w, "super-minor=", 12)==0 ) {
f277ce36 418 if (mis.super_minor != UnSet)
e7b84f9d 419 pr_err("only specify super-minor once, %s ignored.\n",
52826846
NB
420 w);
421 else {
422 char *endptr;
f21e18ca
N
423 int minor = strtol(w+12, &endptr, 10);
424
425 if (w[12]==0 || endptr[0]!=0 || minor < 0)
e7b84f9d 426 pr_err("invalid super-minor number: %s\n",
52826846 427 w);
f21e18ca
N
428 else
429 mis.super_minor = minor;
52826846 430 }
947fd4dd
NB
431 } else if (strncasecmp(w, "name=", 5)==0) {
432 if (mis.name[0])
e7b84f9d 433 pr_err("only specify name once, %s ignored.\n",
947fd4dd
NB
434 w);
435 else if (strlen(w+5) > 32)
e7b84f9d 436 pr_err("name too long, ignoring %s\n", w);
947fd4dd
NB
437 else
438 strcpy(mis.name, w+5);
439
7ef02d01
NB
440 } else if (strncasecmp(w, "bitmap=", 7) == 0) {
441 if (mis.bitmap_file)
e7b84f9d 442 pr_err("only specify bitmap file once. %s ignored\n",
7ef02d01
NB
443 w);
444 else
503975b9 445 mis.bitmap_file = xstrdup(w+7);
7ef02d01 446
52826846
NB
447 } else if (strncasecmp(w, "devices=", 8 ) == 0 ) {
448 if (mis.devices)
e7b84f9d 449 pr_err("only specify devices once (use a comma separated list). %s ignored\n",
52826846
NB
450 w);
451 else
503975b9 452 mis.devices = xstrdup(w+8);
52826846
NB
453 } else if (strncasecmp(w, "spare-group=", 12) == 0 ) {
454 if (mis.spare_group)
e7b84f9d 455 pr_err("only specify one spare group per array. %s ignored.\n",
52826846
NB
456 w);
457 else
503975b9 458 mis.spare_group = xstrdup(w+12);
cd29a5c8
NB
459 } else if (strncasecmp(w, "level=", 6) == 0 ) {
460 /* this is mainly for compatability with --brief output */
461 mis.level = map_name(pers, w+6);
462 } else if (strncasecmp(w, "disks=", 6) == 0 ) {
463 /* again, for compat */
feb716e9 464 mis.raid_disks = atoi(w+6);
b83d95f3
NB
465 } else if (strncasecmp(w, "num-devices=", 12) == 0 ) {
466 /* again, for compat */
feb716e9
NB
467 mis.raid_disks = atoi(w+12);
468 } else if (strncasecmp(w, "spares=", 7) == 0 ) {
469 /* for warning if not all spares present */
470 mis.spare_disks = atoi(w+7);
f9ce90ba
NB
471 } else if (strncasecmp(w, "metadata=", 9) == 0) {
472 /* style of metadata on the devices. */
473 int i;
aba69144 474
82d9eba6
NB
475 for(i=0; superlist[i] && !mis.st; i++)
476 mis.st = superlist[i]->match_metadata_desc(w+9);
477
478 if (!mis.st)
e7b84f9d 479 pr_err("metadata format %s unknown, ignored.\n", w+9);
dd0781e5
NB
480 } else if (strncasecmp(w, "auto=", 5) == 0 ) {
481 /* whether to create device special files as needed */
f1ae21c4 482 mis.autof = parse_auto(w+5, "auto type", 0);
dbb44303
N
483 } else if (strncasecmp(w, "member=", 7) == 0) {
484 /* subarray within a container */
503975b9 485 mis.member = xstrdup(w+7);
dbb44303 486 } else if (strncasecmp(w, "container=", 10) == 0) {
1771a6e2
N
487 /* the container holding this subarray. Either a device name
488 * or a uuid */
503975b9 489 mis.container = xstrdup(w+10);
52826846 490 } else {
e7b84f9d 491 pr_err("unrecognised word on ARRAY line: %s\n",
52826846
NB
492 w);
493 }
494 }
b1b12d58
N
495 if (mis.uuid_set == 0 && mis.devices == NULL &&
496 mis.super_minor == UnSet && mis.name[0] == 0 &&
aa7c284c 497 (mis.container == NULL || mis.member == NULL))
e7b84f9d 498 pr_err("ARRAY line %s has no identity information.\n", mis.devname);
52826846 499 else {
503975b9 500 mi = xmalloc(sizeof(*mi));
52826846 501 *mi = mis;
503975b9 502 mi->devname = mis.devname ? xstrdup(mis.devname) : NULL;
52826846
NB
503 mi->next = NULL;
504 *mddevlp = mi;
505 mddevlp = &mi->next;
82b27616 506 }
82b27616 507}
e0d19036
NB
508
509static char *alert_email = NULL;
510void mailline(char *line)
511{
512 char *w;
513
3c6e95c1 514 for (w=dl_next(line); w != line ; w=dl_next(w))
e0d19036 515 if (alert_email == NULL)
503975b9 516 alert_email = xstrdup(w);
e0d19036
NB
517}
518
4948b8f7
NB
519static char *alert_mail_from = NULL;
520void mailfromline(char *line)
521{
522 char *w;
523
524 for (w=dl_next(line); w != line ; w=dl_next(w)) {
525 if (alert_mail_from == NULL)
503975b9 526 alert_mail_from = xstrdup(w);
4948b8f7 527 else {
3d2c4fc7
DW
528 char *t = NULL;
529
78fbcc10 530 if (xasprintf(&t, "%s %s", alert_mail_from, w) > 0) {
3d2c4fc7
DW
531 free(alert_mail_from);
532 alert_mail_from = t;
533 }
4948b8f7
NB
534 }
535 }
536}
537
e0d19036
NB
538static char *alert_program = NULL;
539void programline(char *line)
540{
541 char *w;
542
3c6e95c1 543 for (w=dl_next(line); w != line ; w=dl_next(w))
e0d19036 544 if (alert_program == NULL)
503975b9 545 alert_program = xstrdup(w);
e0d19036
NB
546}
547
997aed5d 548static char *home_host = NULL;
0ac91628 549static int require_homehost = 1;
997aed5d
NB
550void homehostline(char *line)
551{
552 char *w;
553
554 for (w=dl_next(line); w != line ; w=dl_next(w)) {
0ac91628
N
555 if (strcasecmp(w, "<ignore>")==0)
556 require_homehost = 0;
0f23aa88
N
557 else if (home_host == NULL) {
558 if (strcasecmp(w, "<none>")==0)
503975b9 559 home_host = xstrdup("");
0f23aa88 560 else
503975b9 561 home_host = xstrdup(w);
3c6e95c1 562 }
997aed5d
NB
563 }
564}
565
7716570e
GJ
566static char *home_cluster = NULL;
567void homeclusterline(char *line)
568{
569 char *w;
570
571 for (w=dl_next(line); w != line ; w=dl_next(w)) {
572 if (home_cluster == NULL) {
573 if (strcasecmp(w, "<none>")==0)
574 home_cluster = xstrdup("");
575 else
576 home_cluster = xstrdup(w);
577 }
578 }
579}
580
4e8d9f0a
N
581char auto_yes[] = "yes";
582char auto_no[] = "no";
583char auto_homehost[] = "homehost";
584
585static int auto_seen = 0;
31015d57
N
586void autoline(char *line)
587{
4d0b563b 588 char *w;
4e8d9f0a
N
589 char *seen;
590 int super_cnt;
591 char *dflt = auto_yes;
592 int homehost = 0;
593 int i;
4d0b563b 594
3c6e95c1 595 if (auto_seen)
31015d57 596 return;
dbdf3f15 597 auto_seen = 1;
3c6e95c1 598
4e8d9f0a
N
599 /* Parse the 'auto' line creating policy statements for the 'auto' policy.
600 *
601 * The default is 'yes' but the 'auto' line might over-ride that.
602 * Words in the line are processed in order with the first
603 * match winning.
604 * word can be:
605 * +version - that version can be assembled
606 * -version - that version cannot be auto-assembled
607 * yes or +all - any other version can be assembled
608 * no or -all - no other version can be assembled.
609 * homehost - any array associated by 'homehost' to this
610 * host can be assembled.
611 *
612 * Thus:
613 * +ddf -0.90 homehost -all
614 * will auto-assemble any ddf array, no 0.90 array, and
615 * any other array (imsm, 1.x) if and only if it is identified
616 * as belonging to this host.
617 *
618 * We translate that to policy by creating 'auto=yes' when we see
619 * a '+version' line, 'auto=no' if we see '-version' before 'homehost',
620 * or 'auto=homehost' if we see '-version' after 'homehost'.
b10c663e 621 * When we see yes, no, +all or -all we stop and any version that hasn't
4e8d9f0a
N
622 * been seen gets an appropriate auto= entry.
623 */
4d0b563b 624
2dfb675b
N
625 /* If environment variable MDADM_CONF_AUTO is defined, then
626 * it is prepended to the auto line. This allow a script
627 * to easily disable some metadata types.
628 */
629 w = getenv("MDADM_CONF_AUTO");
630 if (w && *w) {
631 char *l = xstrdup(w);
632 char *head = line;
633 w = strtok(l, " \t");
634 while (w) {
635 char *nw = dl_strdup(w);
636 dl_insert(head, nw);
637 head = nw;
638 w = strtok(NULL, " \t");
639 }
640 free(l);
641 }
642
4e8d9f0a
N
643 for (super_cnt = 0; superlist[super_cnt]; super_cnt++)
644 ;
503975b9 645 seen = xcalloc(super_cnt, 1);
4d0b563b 646
4e8d9f0a
N
647 for (w = dl_next(line); w != line ; w = dl_next(w)) {
648 char *val;
649
650 if (strcasecmp(w, "yes") == 0) {
651 dflt = auto_yes;
652 break;
653 }
654 if (strcasecmp(w, "no") == 0) {
655 if (homehost)
656 dflt = auto_homehost;
657 else
658 dflt = auto_no;
659 break;
660 }
661 if (strcasecmp(w, "homehost") == 0) {
662 homehost = 1;
663 continue;
664 }
665 if (w[0] == '+')
666 val = auto_yes;
667 else if (w[0] == '-') {
668 if (homehost)
669 val = auto_homehost;
670 else
671 val = auto_no;
672 } else
673 continue;
674
675 if (strcasecmp(w+1, "all") == 0) {
676 dflt = val;
677 break;
678 }
679 for (i = 0; superlist[i]; i++) {
680 const char *version = superlist[i]->name;
681 if (strcasecmp(w+1, version) == 0)
682 break;
683 /* 1 matches 1.x, 0 matches 0.90 */
684 if (version[1] == '.' &&
685 strlen(w+1) == 1 &&
686 w[1] == version[0])
687 break;
688 /* 1.anything matches 1.x */
689 if (strcmp(version, "1.x") == 0 &&
690 strncmp(w+1, "1.", 2) == 0)
691 break;
692 }
693 if (superlist[i] == NULL)
694 /* ignore this word */
695 continue;
696 if (seen[i])
697 /* already know about this metadata */
698 continue;
699 policy_add(rule_policy, pol_auto, val, pol_metadata, superlist[i]->name, NULL);
700 seen[i] = 1;
4d0b563b 701 }
4e8d9f0a
N
702 for (i = 0; i < super_cnt; i++)
703 if (!seen[i])
704 policy_add(rule_policy, pol_auto, dflt, pol_metadata, superlist[i]->name, NULL);
42de2ac2
TJ
705
706 free(seen);
31015d57 707}
e0d19036 708
82b27616
NB
709int loaded = 0;
710
8aec876d
NB
711static char *conffile = NULL;
712void set_conffile(char *file)
713{
714 conffile = file;
715}
716
15af9692 717void conf_file(FILE *f)
82b27616 718{
52826846 719 char *line;
52826846
NB
720 while ((line=conf_line(f))) {
721 switch(match_keyword(line)) {
8fe9db0f 722 case Devices:
52826846
NB
723 devline(line);
724 break;
8fe9db0f 725 case Array:
52826846
NB
726 arrayline(line);
727 break;
8fe9db0f 728 case Mailaddr:
e0d19036
NB
729 mailline(line);
730 break;
8fe9db0f 731 case Mailfrom:
4948b8f7
NB
732 mailfromline(line);
733 break;
8fe9db0f
NB
734 case Program:
735 programline(line);
736 break;
737 case CreateDev:
5bbb4842
NB
738 createline(line);
739 break;
997aed5d
NB
740 case Homehost:
741 homehostline(line);
742 break;
7716570e
GJ
743 case HomeCluster:
744 homeclusterline(line);
745 break;
31015d57
N
746 case AutoMode:
747 autoline(line);
748 break;
5527fc74
N
749 case Policy:
750 policyline(line, rule_policy);
751 break;
752 case PartPolicy:
753 policyline(line, rule_part);
754 break;
52826846 755 default:
e7b84f9d 756 pr_err("Unknown keyword %s\n", line);
52826846
NB
757 }
758 free_line(line);
82b27616 759 }
15af9692
N
760}
761
343b7e75
N
762struct fname {
763 struct fname *next;
764 char name[];
765};
766
767void conf_file_or_dir(FILE *f)
768{
769 struct stat st;
770 DIR *dir;
771 struct dirent *dp;
772 struct fname *list = NULL;
773
774 fstat(fileno(f), &st);
775 if (S_ISREG(st.st_mode))
776 conf_file(f);
777 else if (!S_ISDIR(st.st_mode))
778 return;
779#if _XOPEN_SOURCE >= 700 || _POSIX_C_SOURCE >= 200809L
780 dir = fdopendir(fileno(f));
781 if (!dir)
782 return;
783 while ((dp = readdir(dir)) != NULL) {
784 int l;
785 struct fname *fn, **p;
786 if (dp->d_ino == 0)
787 continue;
788 if (dp->d_name[0] == '.')
789 continue;
790 l = strlen(dp->d_name);
791 if (l < 6 || strcmp(dp->d_name+l-5, ".conf") != 0)
792 continue;
793 fn = xmalloc(sizeof(*fn)+l+1);
794 strcpy(fn->name, dp->d_name);
795 for (p = &list;
796 *p && strcmp((*p)->name, fn->name) < 0;
797 p = & (*p)->next)
798 ;
799 fn->next = *p;
800 *p = fn;
801 }
802 while (list) {
803 int fd;
804 FILE *f2;
805 struct fname *fn = list;
806 list = list->next;
807 fd = openat(fileno(f), fn->name, O_RDONLY);
808 free(fn);
809 if (fd < 0)
810 continue;
811 f2 = fdopen(fd, "r");
812 if (!f2) {
813 close(fd);
814 continue;
815 }
816 conf_file(f2);
817 fclose(f2);
818 }
819 closedir(dir);
820#endif
821}
822
15af9692
N
823void load_conffile(void)
824{
825 FILE *f;
9dc70cbc 826 char *confdir = NULL;
2dfb675b 827 char *head;
15af9692 828
824e5727
N
829 if (loaded)
830 return;
9dc70cbc 831 if (conffile == NULL) {
15af9692 832 conffile = DefaultConfFile;
9dc70cbc
N
833 confdir = DefaultConfDir;
834 }
15af9692 835
15af9692
N
836 if (strcmp(conffile, "partitions")==0) {
837 char *list = dl_strdup("DEV");
838 dl_init(list);
839 dl_add(list, dl_strdup("partitions"));
840 devline(list);
841 free_line(list);
824e5727
N
842 } else if (strcmp(conffile, "none") != 0) {
843 f = fopen(conffile, "r");
844 /* Debian chose to relocate mdadm.conf into /etc/mdadm/.
845 * To allow Debian users to compile from clean source and still
846 * have a working mdadm, we read /etc/mdadm/mdadm.conf
847 * if /etc/mdadm.conf doesn't exist
848 */
849 if (f == NULL &&
850 conffile == DefaultConfFile) {
851 f = fopen(DefaultAltConfFile, "r");
852 if (f) {
853 conffile = DefaultAltConfFile;
854 confdir = DefaultAltConfDir;
855 }
9dc70cbc 856 }
9dc70cbc 857 if (f) {
9dc70cbc
N
858 conf_file_or_dir(f);
859 fclose(f);
860 }
824e5727
N
861 if (confdir) {
862 f = fopen(confdir, "r");
863 if (f) {
864 conf_file_or_dir(f);
865 fclose(f);
866 }
867 }
15af9692 868 }
2dfb675b
N
869 /* If there was no AUTO line, process an empty line
870 * now so that the MDADM_CONF_AUTO env var gets processed.
871 */
872 head = dl_strdup("AUTO");
873 dl_init(head);
874 autoline(head);
875 free_line(head);
876
824e5727 877 loaded = 1;
82b27616
NB
878}
879
8aec876d 880char *conf_get_mailaddr(void)
e0d19036 881{
8aec876d 882 load_conffile();
e0d19036
NB
883 return alert_email;
884}
885
8aec876d 886char *conf_get_mailfrom(void)
4948b8f7 887{
8aec876d 888 load_conffile();
4948b8f7
NB
889 return alert_mail_from;
890}
891
8aec876d 892char *conf_get_program(void)
e0d19036 893{
8aec876d 894 load_conffile();
e0d19036
NB
895 return alert_program;
896}
897
0ac91628 898char *conf_get_homehost(int *require_homehostp)
997aed5d 899{
8aec876d 900 load_conffile();
0ac91628
N
901 if (require_homehostp)
902 *require_homehostp = require_homehost;
997aed5d
NB
903 return home_host;
904}
905
7716570e
GJ
906char *conf_get_homecluster(void)
907{
908 load_conffile();
909 return home_cluster;
910}
911
8aec876d 912struct createinfo *conf_get_create_info(void)
5bbb4842 913{
8aec876d 914 load_conffile();
5bbb4842
NB
915 return &createinfo;
916}
82b27616 917
fa56eddb 918struct mddev_ident *conf_get_ident(char *dev)
64c4757e 919{
fa56eddb 920 struct mddev_ident *rv;
8aec876d 921 load_conffile();
52826846 922 rv = mddevlist;
fe056d1f 923 while (dev && rv && (rv->devname == NULL
5c4c9ab1 924 || !devname_matches(dev, rv->devname)))
52826846
NB
925 rv = rv->next;
926 return rv;
64c4757e
NB
927}
928
a655e550 929static void append_dlist(struct mddev_dev **dlp, struct mddev_dev *list)
f64165f7
DW
930{
931 while (*dlp)
932 dlp = &(*dlp)->next;
933 *dlp = list;
934}
935
a655e550 936struct mddev_dev *conf_get_devs()
64c4757e 937{
52826846
NB
938 glob_t globbuf;
939 struct conf_dev *cd;
940 int flags = 0;
a655e550 941 static struct mddev_dev *dlist = NULL;
98c6faba 942 unsigned int i;
52826846
NB
943
944 while (dlist) {
a655e550 945 struct mddev_dev *t = dlist;
52826846
NB
946 dlist = dlist->next;
947 free(t->devname);
948 free(t);
949 }
aba69144 950
8aec876d 951 load_conffile();
a99d6b66 952
f8f84cd5
DW
953 if (cdevlist == NULL) {
954 /* default to 'partitions' and 'containers' */
a99d6b66 955 dlist = load_partitions();
f8f84cd5
DW
956 append_dlist(&dlist, load_containers());
957 }
a99d6b66 958
52826846 959 for (cd=cdevlist; cd; cd=cd->next) {
f64165f7
DW
960 if (strcasecmp(cd->name, "partitions")==0)
961 append_dlist(&dlist, load_partitions());
962 else if (strcasecmp(cd->name, "containers")==0)
963 append_dlist(&dlist, load_containers());
057bd352
NB
964 else {
965 glob(cd->name, flags, NULL, &globbuf);
966 flags |= GLOB_APPEND;
967 }
52826846 968 }
e0d19036
NB
969 if (flags & GLOB_APPEND) {
970 for (i=0; i<globbuf.gl_pathc; i++) {
503975b9 971 struct mddev_dev *t = xmalloc(sizeof(*t));
5e73b024 972 memset(t, 0, sizeof(*t));
503975b9 973 t->devname = xstrdup(globbuf.gl_pathv[i]);
e0d19036
NB
974 t->next = dlist;
975 dlist = t;
82b27616 976/* printf("one dev is %s\n", t->devname);*/
e0d19036
NB
977 }
978 globfree(&globbuf);
52826846 979 }
82b27616 980
52826846 981 return dlist;
64c4757e
NB
982}
983
8382f19b
NB
984int conf_test_dev(char *devname)
985{
986 struct conf_dev *cd;
987 if (cdevlist == NULL)
988 /* allow anything by default */
989 return 1;
990 for (cd = cdevlist ; cd ; cd = cd->next) {
991 if (strcasecmp(cd->name, "partitions") == 0)
992 return 1;
993 if (fnmatch(cd->name, devname, FNM_PATHNAME) == 0)
994 return 1;
995 }
996 return 0;
997}
998
4e8d9f0a 999int conf_test_metadata(const char *version, struct dev_policy *pol, int is_homehost)
31015d57 1000{
4e8d9f0a
N
1001 /* If anyone said 'yes', that sticks.
1002 * else if homehost applies, use that
1003 * else if there is a 'no', say 'no'.
1004 * else 'yes'.
31015d57 1005 */
4e8d9f0a 1006 struct dev_policy *p;
b10c663e 1007 int no=0, found_homehost=0;
31015d57 1008 load_conffile();
4e8d9f0a
N
1009
1010 pol = pol_find(pol, pol_auto);
1011 pol_for_each(p, pol, version) {
1012 if (strcmp(p->value, "yes") == 0)
31015d57 1013 return 1;
b10c663e
N
1014 if (strcmp(p->value, "homehost") == 0)
1015 found_homehost = 1;
4e8d9f0a
N
1016 if (strcmp(p->value, "no") == 0)
1017 no = 1;
31015d57 1018 }
b10c663e 1019 if (is_homehost && found_homehost)
4e8d9f0a
N
1020 return 1;
1021 if (no)
1022 return 0;
31015d57
N
1023 return 1;
1024}
8382f19b 1025
52826846
NB
1026int match_oneof(char *devices, char *devname)
1027{
5d500228
N
1028 /* check if one of the comma separated patterns in devices
1029 * matches devname
1030 */
1031
1032 while (devices && *devices) {
1033 char patn[1024];
1034 char *p = devices;
1035 devices = strchr(devices, ',');
1036 if (!devices)
1037 devices = p + strlen(p);
1038 if (devices-p < 1024) {
1039 strncpy(patn, p, devices-p);
1040 patn[devices-p] = 0;
1041 if (fnmatch(patn, devname, FNM_PATHNAME)==0)
1042 return 1;
1043 }
1044 if (*devices == ',')
1045 devices++;
52826846 1046 }
5d500228 1047 return 0;
52826846 1048}
0ac91628
N
1049
1050int devname_matches(char *name, char *match)
1051{
1052 /* See if the given array name matches the
1053 * given match from config file.
1054 *
1055 * First strip and /dev/md/ or /dev/, then
1056 * see if there might be a numeric match of
1057 * mdNN with NN
1058 * then just strcmp
1059 */
1060 if (strncmp(name, "/dev/md/", 8) == 0)
1061 name += 8;
1062 else if (strncmp(name, "/dev/", 5) == 0)
1063 name += 5;
1064
1065 if (strncmp(match, "/dev/md/", 8) == 0)
1066 match += 8;
1067 else if (strncmp(match, "/dev/", 5) == 0)
1068 match += 5;
1069
0ac91628
N
1070 if (strncmp(name, "md", 2) == 0 &&
1071 isdigit(name[2]))
1072 name += 2;
1073 if (strncmp(match, "md", 2) == 0 &&
1074 isdigit(match[2]))
1075 match += 2;
1076
1077 return (strcmp(name, match) == 0);
1078}
1079
1080int conf_name_is_free(char *name)
1081{
4dd2df09 1082 /* Check if this name is already taken by an ARRAY entry in
0ac91628
N
1083 * the config file.
1084 * It can be taken either by a match on devname, name, or
1085 * even super-minor.
1086 */
fa56eddb 1087 struct mddev_ident *dev;
0ac91628
N
1088
1089 load_conffile();
1090 for (dev = mddevlist; dev; dev = dev->next) {
1091 char nbuf[100];
1092 if (dev->devname && devname_matches(name, dev->devname))
1093 return 0;
1094 if (dev->name[0] && devname_matches(name, dev->name))
1095 return 0;
1096 sprintf(nbuf, "%d", dev->super_minor);
1097 if (dev->super_minor != UnSet &&
1098 devname_matches(name, nbuf))
1099 return 0;
1100 }
1101 return 1;
1102}
360b4636 1103
2244d1a9
N
1104struct mddev_ident *conf_match(struct supertype *st,
1105 struct mdinfo *info,
1106 char *devname,
1107 int verbose, int *rvp)
360b4636 1108{
fa56eddb 1109 struct mddev_ident *array_list, *match;
360b4636
N
1110 array_list = conf_get_ident(NULL);
1111 match = NULL;
1112 for (; array_list; array_list = array_list->next) {
1113 if (array_list->uuid_set &&
1114 same_uuid(array_list->uuid, info->uuid, st->ss->swapuuid)
1115 == 0) {
1116 if (verbose >= 2 && array_list->devname)
e7b84f9d
N
1117 pr_err("UUID differs from %s.\n",
1118 array_list->devname);
360b4636
N
1119 continue;
1120 }
1121 if (array_list->name[0] &&
1122 strcasecmp(array_list->name, info->name) != 0) {
1123 if (verbose >= 2 && array_list->devname)
e7b84f9d
N
1124 pr_err("Name differs from %s.\n",
1125 array_list->devname);
360b4636
N
1126 continue;
1127 }
9f1b0f0f 1128 if (array_list->devices && devname &&
360b4636
N
1129 !match_oneof(array_list->devices, devname)) {
1130 if (verbose >= 2 && array_list->devname)
e7b84f9d
N
1131 pr_err("Not a listed device for %s.\n",
1132 array_list->devname);
360b4636
N
1133 continue;
1134 }
1135 if (array_list->super_minor != UnSet &&
1136 array_list->super_minor != info->array.md_minor) {
1137 if (verbose >= 2 && array_list->devname)
e7b84f9d
N
1138 pr_err("Different super-minor to %s.\n",
1139 array_list->devname);
360b4636
N
1140 continue;
1141 }
1142 if (!array_list->uuid_set &&
1143 !array_list->name[0] &&
1144 !array_list->devices &&
1145 array_list->super_minor == UnSet) {
1146 if (verbose >= 2 && array_list->devname)
7a862a02 1147 pr_err("%s doesn't have any identifying information.\n",
e7b84f9d 1148 array_list->devname);
360b4636
N
1149 continue;
1150 }
1151 /* FIXME, should I check raid_disks and level too?? */
1152
1153 if (match) {
1154 if (verbose >= 0) {
1155 if (match->devname && array_list->devname)
7a862a02 1156 pr_err("we match both %s and %s - cannot decide which to use.\n",
e7b84f9d
N
1157 match->devname,
1158 array_list->devname);
360b4636 1159 else
7a862a02 1160 pr_err("multiple lines in mdadm.conf match\n");
360b4636 1161 }
2244d1a9
N
1162 if (rvp)
1163 *rvp = 2;
1164 match = NULL;
1165 break;
360b4636
N
1166 }
1167 match = array_list;
1168 }
1169 return match;
1170}
7c336758
LO
1171
1172int conf_verify_devnames(struct mddev_ident *array_list)
1173{
1174 struct mddev_ident *a1, *a2;
1175
1176 for (a1 = array_list; a1; a1 = a1->next) {
1177 if (!a1->devname)
1178 continue;
13f2dd6b
N
1179 if (strcmp(a1->devname, "<ignore>") == 0)
1180 continue;
7c336758
LO
1181 for (a2 = a1->next; a2; a2 = a2->next) {
1182 if (!a2->devname)
1183 continue;
1184 if (strcmp(a1->devname, a2->devname) != 0)
1185 continue;
1186
1187 if (a1->uuid_set && a2->uuid_set) {
1188 char nbuf[64];
1189 __fname_from_uuid(a1->uuid, 0, nbuf, ':');
e7b84f9d
N
1190 pr_err("Devices %s and ",
1191 nbuf);
7c336758
LO
1192 __fname_from_uuid(a2->uuid, 0, nbuf, ':');
1193 fprintf(stderr,
1194 "%s have the same name: %s\n",
1195 nbuf, a1->devname);
1196 } else
7a862a02 1197 pr_err("Device %s given twice in config file\n", a1->devname);
7c336758
LO
1198 return 1;
1199 }
1200 }
1201
1202 return 0;
1203}