mdadm/config.c

407 lines
9.6 KiB
C
Raw Normal View History

2001-06-08 04:36:23 +02:00
/*
* mdctl - manage Linux "md" devices aka RAID arrays.
*
2002-03-07 00:17:40 +01:00
* Copyright (C) 2001-2002 Neil Brown <neilb@cse.unsw.edu.au>
2001-06-08 04:36:23 +02:00
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Neil Brown
* Email: <neilb@cse.unsw.edu.au>
* Paper: Neil Brown
* School of Computer Science and Engineering
* The University of New South Wales
* Sydney, 2052
* Australia
*/
#include "mdctl.h"
2001-07-26 09:00:09 +02:00
#include "dlink.h"
#include <glob.h>
2001-08-23 04:33:20 +02:00
#include <fnmatch.h>
2001-06-08 04:36:23 +02:00
/*
* Read the config file
*
* conf_get_uuids gets a list of devicename+uuid pairs
* conf_get_devs gets device names after expanding wildcards
*
* Each keeps the returned list and frees it when asked to make
* a new list.
*
2001-07-26 09:00:09 +02:00
* The format of the config file needs to be fairly extensible.
* Now, arrays only have names and uuids and devices merely are.
* But later arrays might want names, and devices might want superblock
* versions, and who knows what else.
* I like free format, abhore backslash line continuation, adore
* indentation for structure and am ok about # comments.
*
* So, each line that isn't blank or a #comment must either start
* with a key word, and not be indented, or must start with a
* non-key-word and must be indented.
*
* Keywords are DEVICE and ARRAY
* DEV{ICE} introduces some devices that might contain raid components.
* e.g.
* DEV style=0 /dev/sda* /dev/hd*
* DEV style=1 /dev/sd[b-f]*
* ARR{AY} describes an array giving md device and attributes like uuid=whatever
* e.g.
* ARRAY /dev/md0 uuid=whatever name=something
* Spaces separate words on each line. Quoting, with "" or '' protects them,
* but may not wrap over lines
*
2001-06-08 04:36:23 +02:00
*/
char DefaultConfFile[] = "/etc/mdctl.conf";
2001-07-26 09:00:09 +02:00
char *keywords[] = { "device", "array", NULL };
/*
* match_keyword returns an index into the keywords array, or -1 for no match
* case is ignored, and at least three characters must be given
*/
int match_keyword(char *word)
{
2001-08-23 04:33:20 +02:00
int len = strlen(word);
int n;
2001-07-26 09:00:09 +02:00
2001-08-23 04:33:20 +02:00
if (len < 3) return -1;
for (n=0; keywords[n]; n++) {
if (strncasecmp(word, keywords[n], len)==0)
return n;
}
return -1;
2001-07-26 09:00:09 +02:00
}
/* conf_word gets one word from the conf file.
* if "allow_key", then accept words at the start of a line,
* otherwise stop when such a word is found.
* We assume that the file pointer is at the end of a word, so the
* next character is a space, or a newline. If not, it is the start of a line.
*/
char *conf_word(FILE *file, int allow_key)
{
2001-08-23 04:33:20 +02:00
int wsize = 100;
int len = 0;
int c;
int quote;
int wordfound = 0;
char *word = malloc(wsize);
2001-07-26 09:00:09 +02:00
2001-08-23 04:33:20 +02:00
if (!word) abort();
while (wordfound==0) {
/* at the end of a word.. */
2001-07-26 09:00:09 +02:00
c = getc(file);
2001-08-23 04:33:20 +02:00
if (c == '#')
while (c != EOF && c != '\n')
c = getc(file);
if (c == EOF) break;
if (c == '\n') continue;
if (c != ' ' && c != '\t' && ! allow_key) {
ungetc(c, file);
break;
}
/* looks like it is safe to get a word here, if there is one */
quote = 0;
/* first, skip any spaces */
while (c == ' ' || c == '\t')
c = getc(file);
if (c != EOF && c != '\n' && c != '#') {
/* we really have a character of a word, so start saving it */
while (c != EOF && c != '\n' && (quote || (c!=' ' && c != '\t'))) {
wordfound = 1;
if (quote && c == quote) quote = 0;
else if (quote == 0 && (c == '\'' || c == '"'))
quote = c;
else {
if (len == wsize-1) {
wsize += 100;
word = realloc(word, wsize);
if (!word) abort();
}
word[len++] = c;
}
c = getc(file);
}
}
if (c != EOF) ungetc(c, file);
2001-07-26 09:00:09 +02:00
}
2001-08-23 04:33:20 +02:00
word[len] = 0;
2001-07-26 09:00:09 +02:00
/* printf("word is <%s>\n", word); */
2001-08-23 04:33:20 +02:00
if (!wordfound) {
free(word);
word = NULL;
}
return word;
2001-07-26 09:00:09 +02:00
}
/*
* conf_line reads one logical line from the conffile.
* It skips comments and continues until it finds a line that starts
* with a non blank/comment. This character is pushed back for the next call
* A doubly linked list of words is returned.
* the first word will be a keyword. Other words will have had quotes removed.
*/
char *conf_line(FILE *file)
{
2001-08-23 04:33:20 +02:00
char *w;
char *list;
2001-07-26 09:00:09 +02:00
2001-08-23 04:33:20 +02:00
w = conf_word(file, 1);
if (w == NULL) return NULL;
2001-07-26 09:00:09 +02:00
2001-08-23 04:33:20 +02:00
list = dl_strdup(w);
2001-07-26 09:00:09 +02:00
free(w);
2001-08-23 04:33:20 +02:00
dl_init(list);
while ((w = conf_word(file,0))){
char *w2 = dl_strdup(w);
free(w);
dl_add(list, w2);
}
2001-07-26 09:00:09 +02:00
/* printf("got a line\n");*/
2001-08-23 04:33:20 +02:00
return list;
2001-07-26 09:00:09 +02:00
}
void free_line(char *line)
{
2001-08-23 04:33:20 +02:00
char *w;
for (w=dl_next(line); w != line; w=dl_next(line)) {
dl_del(w);
dl_free(w);
}
dl_free(line);
2001-07-26 09:00:09 +02:00
}
struct conf_dev {
struct conf_dev *next;
char *name;
} *cdevlist = NULL;
int devline(char *line)
{
2001-08-23 04:33:20 +02:00
char *w;
struct conf_dev *cd;
for (w=dl_next(line); w != line; w=dl_next(w)) {
if (w[0] == '/') {
cd = malloc(sizeof(*cd));
cd->name = strdup(w);
cd->next = cdevlist;
cdevlist = cd;
} else {
fprintf(stderr, Name ": unreconised word on DEVICE line: %s\n",
w);
}
2001-07-26 09:00:09 +02:00
}
}
2001-08-23 04:33:20 +02:00
mddev_ident_t mddevlist = NULL;
mddev_ident_t *mddevlp = &mddevlist;
2001-07-26 09:00:09 +02:00
void arrayline(char *line)
{
2001-08-23 04:33:20 +02:00
char *w;
struct mddev_ident_s mis;
mddev_ident_t mi;
mis.uuid_set = 0;
mis.super_minor = -1;
2002-03-07 00:17:40 +01:00
mis.level = -10;
mis.raid_disks = -1;
2001-08-23 04:33:20 +02:00
mis.devices = NULL;
mis.devname = NULL;
for (w=dl_next(line); w!=line; w=dl_next(w)) {
if (w[0] == '/') {
if (mis.devname)
fprintf(stderr, Name ": only give one device per ARRAY line: %s and %s\n",
mis.devname, w);
else mis.devname = w;
} else if (strncasecmp(w, "uuid=", 5)==0 ) {
if (mis.uuid_set)
fprintf(stderr, Name ": only specify uuid once, %s ignored.\n",
w);
else {
if (parse_uuid(w+5, mis.uuid))
mis.uuid_set = 1;
else
fprintf(stderr, Name ": bad uuid: %s\n", w);
}
} else if (strncasecmp(w, "super-minor=", 12)==0 ) {
if (mis.super_minor >= 0)
fprintf(stderr, Name ": only specify super-minor once, %s ignored.\n",
w);
else {
char *endptr;
mis.super_minor= strtol(w+12, &endptr, 10);
if (w[12]==0 || endptr[0]!=0 || mis.super_minor < 0) {
fprintf(stderr, Name ": invalid super-minor number: %s\n",
w);
mis.super_minor = -1;
}
}
} else if (strncasecmp(w, "devices=", 8 ) == 0 ) {
if (mis.devices)
fprintf(stderr, Name ": only specify devices once (use a comma separated list). %s ignored\n",
w);
else
mis.devices = strdup(w+8);
} else if (strncasecmp(w, "spare-group=", 12) == 0 ) {
if (mis.spare_group)
fprintf(stderr, Name ": only specify one spare group per array. %s ignored.\n",
w);
else
mis.spare_group = strdup(w+12);
2002-03-07 00:17:40 +01:00
} else if (strncasecmp(w, "level=", 6) == 0 ) {
/* this is mainly for compatability with --brief output */
mis.level = map_name(pers, w+6);
} else if (strncasecmp(w, "disks=", 6) == 0 ) {
/* again, for compat */
mis.raid_disks = atoi(w+6);
2001-08-23 04:33:20 +02:00
} else {
fprintf(stderr, Name ": unrecognised word on ARRAY line: %s\n",
w);
}
}
if (mis.devname == NULL)
fprintf(stderr, Name ": ARRAY line with a device\n");
else if (mis.uuid_set == 0 && mis.devices == NULL && mis.super_minor < 0)
fprintf(stderr, Name ": ARRAY line %s has no identity information.\n", mis.devname);
else {
mi = malloc(sizeof(*mi));
*mi = mis;
mi->devname = strdup(mis.devname);
mi->next = NULL;
*mddevlp = mi;
mddevlp = &mi->next;
2001-07-26 09:00:09 +02:00
}
}
int loaded = 0;
void load_conffile(char *conffile)
{
2001-08-23 04:33:20 +02:00
FILE *f;
char *line;
if (loaded) return;
if (conffile == NULL)
conffile = DefaultConfFile;
f = fopen(conffile, "r");
if (f ==NULL)
return;
loaded = 1;
while ((line=conf_line(f))) {
switch(match_keyword(line)) {
case 0: /* DEVICE */
devline(line);
break;
case 1:
arrayline(line);
break;
default:
fprintf(stderr, Name ": Unknown keyword %s\n", line);
}
free_line(line);
2001-07-26 09:00:09 +02:00
}
/* printf("got file\n"); */
}
2001-08-23 04:33:20 +02:00
mddev_ident_t conf_get_ident(char *conffile, char *dev)
2001-06-08 04:36:23 +02:00
{
2001-08-23 04:33:20 +02:00
mddev_ident_t rv;
load_conffile(conffile);
rv = mddevlist;
while (dev && rv && strcmp(dev, rv->devname)!=0)
rv = rv->next;
return rv;
2001-06-08 04:36:23 +02:00
}
mddev_dev_t conf_get_devs(char *conffile)
{
2001-08-23 04:33:20 +02:00
glob_t globbuf;
struct conf_dev *cd;
int flags = 0;
static mddev_dev_t dlist = NULL;
int i;
while (dlist) {
mddev_dev_t t = dlist;
dlist = dlist->next;
free(t->devname);
free(t);
}
2001-07-26 09:00:09 +02:00
2001-08-23 04:33:20 +02:00
load_conffile(conffile);
2001-07-26 09:00:09 +02:00
2001-08-23 04:33:20 +02:00
for (cd=cdevlist; cd; cd=cd->next) {
glob(cd->name, flags, NULL, &globbuf);
flags |= GLOB_APPEND;
}
2001-07-26 09:00:09 +02:00
2001-08-23 04:33:20 +02:00
for (i=0; i<globbuf.gl_pathc; i++) {
mddev_dev_t t = malloc(sizeof(*t));
t->devname = strdup(globbuf.gl_pathv[i]);
t->next = dlist;
dlist = t;
2001-07-26 09:00:09 +02:00
/* printf("one dev is %s\n", t->devname);*/
2001-08-23 04:33:20 +02:00
}
globfree(&globbuf);
2001-07-26 09:00:09 +02:00
2001-08-23 04:33:20 +02:00
return dlist;
2001-06-08 04:36:23 +02:00
}
2001-08-23 04:33:20 +02:00
int match_oneof(char *devices, char *devname)
{
/* check if one of the comma separated patterns in devices
* matches devname
*/
while (devices && *devices) {
char patn[1024];
char *p = devices;
devices = strchr(devices, ',');
if (!devices)
devices = p + strlen(p);
if (devices-p < 1024) {
strncpy(patn, p, devices-p);
patn[devices-p] = 0;
if (fnmatch(patn, devname, FNM_PATHNAME)==0)
return 1;
}
if (*devices == ',')
devices++;
}
return 0;
}