2017-11-21 19:31:37 +03:00
|
|
|
/* $NetBSD: rf_configure.c,v 1.31 2017/11/21 16:31:37 christos Exp $ */
|
2000-05-23 05:03:05 +04:00
|
|
|
|
1998-11-13 07:34:02 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1995 Carnegie-Mellon University.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Author: Mark Holland
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify and distribute this software and
|
|
|
|
* its documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
|
|
*
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
|
|
|
|
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
*
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
*
|
|
|
|
* any improvements or extensions that they make and grant Carnegie the
|
|
|
|
* rights to redistribute these changes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/***************************************************************
|
|
|
|
*
|
|
|
|
* rf_configure.c -- code related to configuring the raidframe system
|
|
|
|
*
|
|
|
|
* configuration is complicated by the fact that we want the same
|
|
|
|
* driver to work both in the kernel and at user level. In the
|
|
|
|
* kernel, we can't read the configuration file, so we configure
|
|
|
|
* by running a user-level program that reads the config file,
|
|
|
|
* creates a data structure describing the configuration and
|
|
|
|
* passes it into the kernel via an ioctl. Since we want the config
|
|
|
|
* code to be common between the two versions of the driver, we
|
|
|
|
* configure using the same two-step process when running at
|
|
|
|
* user level. Of course, at user level, the config structure is
|
|
|
|
* passed directly to the config routine, rather than via ioctl.
|
|
|
|
*
|
|
|
|
* This file is not compiled into the kernel, so we have no
|
|
|
|
* need for KERNEL ifdefs.
|
|
|
|
*
|
|
|
|
**************************************************************/
|
2003-06-23 15:53:35 +04:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
#ifndef lint
|
2017-11-21 19:31:37 +03:00
|
|
|
__RCSID("$NetBSD: rf_configure.c,v 1.31 2017/11/21 16:31:37 christos Exp $");
|
2003-06-23 15:53:35 +04:00
|
|
|
#endif
|
|
|
|
|
1998-11-13 07:34:02 +03:00
|
|
|
|
|
|
|
#include <stdio.h>
|
1999-01-26 05:40:02 +03:00
|
|
|
#include <stdlib.h>
|
1999-01-13 01:58:10 +03:00
|
|
|
#include <errno.h>
|
1999-01-26 05:40:02 +03:00
|
|
|
#include <strings.h>
|
2010-01-27 21:34:02 +03:00
|
|
|
#include <err.h>
|
2017-11-20 21:37:56 +03:00
|
|
|
#include <util.h>
|
1998-11-13 07:34:02 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2001-10-04 20:02:08 +04:00
|
|
|
|
|
|
|
#include <dev/raidframe/raidframevar.h>
|
|
|
|
#include <dev/raidframe/raidframeio.h>
|
1998-11-13 07:34:02 +03:00
|
|
|
#include "rf_configure.h"
|
|
|
|
|
2017-11-20 22:10:45 +03:00
|
|
|
static char *rf_find_non_white(char *, int);
|
|
|
|
static char *rf_find_white(char *);
|
|
|
|
static int rf_search_file_for_start_of(const char *, char *, int, FILE *);
|
|
|
|
static int rf_get_next_nonblank_line(char *, int, FILE *, const char *);
|
|
|
|
|
2001-10-04 20:02:08 +04:00
|
|
|
#define RF_MIN(a,b) (((a) < (b)) ? (a) : (b))
|
|
|
|
|
2017-11-20 22:10:45 +03:00
|
|
|
static int distSpareYes = 1;
|
|
|
|
static int distSpareNo = 0;
|
2001-01-27 22:32:47 +03:00
|
|
|
|
2017-11-21 01:16:23 +03:00
|
|
|
/*
|
|
|
|
* The mapsw[] table below contains all the various RAID types that might
|
|
|
|
* be supported by the kernel. The actual supported types are found
|
|
|
|
* in sys/dev/raidframe/rf_layout.c.
|
|
|
|
*/
|
2001-01-27 22:32:47 +03:00
|
|
|
|
2017-11-20 22:10:45 +03:00
|
|
|
static const RF_LayoutSW_t mapsw[] = {
|
2001-01-27 22:32:47 +03:00
|
|
|
/* parity declustering */
|
|
|
|
{'T', "Parity declustering",
|
|
|
|
rf_MakeLayoutSpecificDeclustered, &distSpareNo},
|
|
|
|
/* parity declustering with distributed sparing */
|
|
|
|
{'D', "Distributed sparing parity declustering",
|
|
|
|
rf_MakeLayoutSpecificDeclustered, &distSpareYes},
|
|
|
|
/* declustered P+Q */
|
|
|
|
{'Q', "Declustered P+Q",
|
|
|
|
rf_MakeLayoutSpecificDeclustered, &distSpareNo},
|
|
|
|
/* RAID 5 with rotated sparing */
|
|
|
|
{'R', "RAID Level 5 rotated sparing", rf_MakeLayoutSpecificNULL, NULL},
|
|
|
|
/* Chained Declustering */
|
|
|
|
{'C', "Chained Declustering", rf_MakeLayoutSpecificNULL, NULL},
|
|
|
|
/* Interleaved Declustering */
|
|
|
|
{'I', "Interleaved Declustering", rf_MakeLayoutSpecificNULL, NULL},
|
|
|
|
/* RAID level 0 */
|
|
|
|
{'0', "RAID Level 0", rf_MakeLayoutSpecificNULL, NULL},
|
|
|
|
/* RAID level 1 */
|
|
|
|
{'1', "RAID Level 1", rf_MakeLayoutSpecificNULL, NULL},
|
|
|
|
/* RAID level 4 */
|
|
|
|
{'4', "RAID Level 4", rf_MakeLayoutSpecificNULL, NULL},
|
|
|
|
/* RAID level 5 */
|
|
|
|
{'5', "RAID Level 5", rf_MakeLayoutSpecificNULL, NULL},
|
|
|
|
/* Evenodd */
|
|
|
|
{'E', "EvenOdd", rf_MakeLayoutSpecificNULL, NULL},
|
|
|
|
/* Declustered Evenodd */
|
|
|
|
{'e', "Declustered EvenOdd",
|
|
|
|
rf_MakeLayoutSpecificDeclustered, &distSpareNo},
|
|
|
|
/* parity logging */
|
|
|
|
{'L', "Parity logging", rf_MakeLayoutSpecificNULL, NULL},
|
|
|
|
/* end-of-list marker */
|
|
|
|
{'\0', NULL, NULL, NULL}
|
|
|
|
};
|
2017-11-20 22:10:45 +03:00
|
|
|
|
|
|
|
static const RF_LayoutSW_t *
|
2001-01-27 22:32:47 +03:00
|
|
|
rf_GetLayout(RF_ParityConfig_t parityConfig)
|
|
|
|
{
|
2017-11-20 22:10:45 +03:00
|
|
|
const RF_LayoutSW_t *p;
|
2001-01-27 22:32:47 +03:00
|
|
|
|
|
|
|
/* look up the specific layout */
|
|
|
|
for (p = &mapsw[0]; p->parityConfig; p++)
|
|
|
|
if (p->parityConfig == parityConfig)
|
|
|
|
break;
|
|
|
|
if (!p->parityConfig)
|
2017-11-20 22:10:45 +03:00
|
|
|
return NULL;
|
|
|
|
return p;
|
2001-01-27 22:32:47 +03:00
|
|
|
}
|
|
|
|
|
2000-05-23 05:03:05 +04:00
|
|
|
/*
|
|
|
|
* called from user level to read the configuration file and create
|
1998-11-13 07:34:02 +03:00
|
|
|
* a configuration control structure. This is used in the user-level
|
|
|
|
* version of the driver, and in the user-level program that configures
|
|
|
|
* the system via ioctl.
|
|
|
|
*/
|
2017-11-21 01:16:23 +03:00
|
|
|
int
|
2005-02-09 17:21:37 +03:00
|
|
|
rf_MakeConfig(char *configname, RF_Config_t *cfgPtr)
|
1998-11-13 07:34:02 +03:00
|
|
|
{
|
2000-05-23 05:03:05 +04:00
|
|
|
int numscanned, val, r, c, retcode, aa, bb, cc;
|
2017-11-20 22:10:45 +03:00
|
|
|
char buf[BUFSIZ], buf1[BUFSIZ], *cp;
|
|
|
|
const RF_LayoutSW_t *lp;
|
2000-05-23 05:03:05 +04:00
|
|
|
FILE *fp;
|
|
|
|
|
2017-11-20 22:10:45 +03:00
|
|
|
memset(cfgPtr, 0, sizeof(*cfgPtr));
|
2000-05-23 05:03:05 +04:00
|
|
|
|
|
|
|
fp = fopen(configname, "r");
|
|
|
|
if (!fp) {
|
2017-11-20 22:10:45 +03:00
|
|
|
warnx("Can't open config file %s", configname);
|
|
|
|
return -1;
|
2000-05-23 05:03:05 +04:00
|
|
|
}
|
|
|
|
rewind(fp);
|
2017-11-20 22:10:45 +03:00
|
|
|
if (rf_search_file_for_start_of("array", buf, sizeof(buf), fp)) {
|
|
|
|
warnx("Unable to find start of \"array\" params in config "
|
|
|
|
"file %s", configname);
|
2000-05-23 05:03:05 +04:00
|
|
|
retcode = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
2017-11-20 22:10:45 +03:00
|
|
|
rf_get_next_nonblank_line(buf, sizeof(buf), fp,
|
|
|
|
"Config file error (\"array\" section): unable to get numRow "
|
|
|
|
"and numCol");
|
2000-05-23 05:03:05 +04:00
|
|
|
|
|
|
|
/*
|
2017-11-21 01:16:23 +03:00
|
|
|
* wackiness with aa, bb, cc to get around size problems on
|
|
|
|
* different platforms
|
|
|
|
*/
|
2000-05-23 05:03:05 +04:00
|
|
|
numscanned = sscanf(buf, "%d %d %d", &aa, &bb, &cc);
|
|
|
|
if (numscanned != 3) {
|
2017-11-20 22:10:45 +03:00
|
|
|
warnx("Config file error (\"array\" section): unable to get "
|
|
|
|
"numRow, numCol, numSpare");
|
2000-05-23 05:03:05 +04:00
|
|
|
retcode = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
cfgPtr->numRow = (RF_RowCol_t) aa;
|
|
|
|
cfgPtr->numCol = (RF_RowCol_t) bb;
|
|
|
|
cfgPtr->numSpare = (RF_RowCol_t) cc;
|
|
|
|
|
|
|
|
/* debug section is optional */
|
|
|
|
for (c = 0; c < RF_MAXDBGV; c++)
|
|
|
|
cfgPtr->debugVars[c][0] = '\0';
|
|
|
|
rewind(fp);
|
2017-11-20 22:10:45 +03:00
|
|
|
if (!rf_search_file_for_start_of("debug", buf, sizeof(buf), fp)) {
|
2000-05-23 05:03:05 +04:00
|
|
|
for (c = 0; c < RF_MAXDBGV; c++) {
|
2017-11-20 22:10:45 +03:00
|
|
|
if (rf_get_next_nonblank_line(buf, sizeof(buf), fp,
|
|
|
|
NULL))
|
2000-05-23 05:03:05 +04:00
|
|
|
break;
|
2017-11-20 22:10:45 +03:00
|
|
|
cp = rf_find_non_white(buf, 0);
|
|
|
|
if (!strncmp(cp, "START", sizeof("START") - 1))
|
2000-05-23 05:03:05 +04:00
|
|
|
break;
|
2017-11-21 19:31:37 +03:00
|
|
|
(void) strlcpy(cfgPtr->debugVars[c], cp,
|
2003-07-13 11:37:02 +04:00
|
|
|
sizeof(cfgPtr->debugVars[c]));
|
2000-05-23 05:03:05 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
rewind(fp);
|
2003-07-13 11:37:02 +04:00
|
|
|
strlcpy(cfgPtr->diskQueueType, "fifo", sizeof(cfgPtr->diskQueueType));
|
2000-05-23 05:03:05 +04:00
|
|
|
cfgPtr->maxOutstandingDiskReqs = 1;
|
2017-11-21 01:16:23 +03:00
|
|
|
|
2000-05-23 05:03:05 +04:00
|
|
|
/* scan the file for the block related to disk queues */
|
2017-11-20 22:10:45 +03:00
|
|
|
if (rf_search_file_for_start_of("queue", buf, sizeof(buf), fp) ||
|
|
|
|
rf_get_next_nonblank_line(buf, sizeof(buf), fp, NULL)) {
|
|
|
|
warnx("[No disk queue discipline specified in config file %s. "
|
|
|
|
"Using %s.]", configname, cfgPtr->diskQueueType);
|
2000-05-23 05:03:05 +04:00
|
|
|
}
|
|
|
|
|
2017-11-21 01:16:23 +03:00
|
|
|
/*
|
|
|
|
* the queue specifier line contains two entries: 1st char of first
|
2000-05-23 05:03:05 +04:00
|
|
|
* word specifies queue to be used 2nd word specifies max num reqs
|
2017-11-21 01:16:23 +03:00
|
|
|
* that can be outstanding on the disk itself (typically 1)
|
|
|
|
*/
|
2017-11-20 22:10:45 +03:00
|
|
|
if (sscanf(buf, "%s %d", buf1, &val) != 2) {
|
|
|
|
warnx("Can't determine queue type and/or max outstanding "
|
|
|
|
"reqs from line: %*s", (int)(sizeof(buf) - 1), buf);
|
|
|
|
warnx("Using %s-%d", cfgPtr->diskQueueType,
|
|
|
|
cfgPtr->maxOutstandingDiskReqs);
|
2000-05-23 05:03:05 +04:00
|
|
|
} else {
|
|
|
|
char *ch;
|
2017-11-20 22:10:45 +03:00
|
|
|
memcpy(cfgPtr->diskQueueType, buf1,
|
2000-05-23 05:03:05 +04:00
|
|
|
RF_MIN(sizeof(cfgPtr->diskQueueType), strlen(buf1) + 1));
|
|
|
|
for (ch = buf1; *ch; ch++) {
|
|
|
|
if (*ch == ' ') {
|
|
|
|
*ch = '\0';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cfgPtr->maxOutstandingDiskReqs = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
rewind(fp);
|
|
|
|
|
2017-11-20 22:10:45 +03:00
|
|
|
if (rf_search_file_for_start_of("disks", buf, sizeof(buf), fp)) {
|
|
|
|
warnx("Can't find \"disks\" section in config file %s",
|
|
|
|
configname);
|
2000-05-23 05:03:05 +04:00
|
|
|
retcode = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
for (r = 0; r < cfgPtr->numRow; r++) {
|
|
|
|
for (c = 0; c < cfgPtr->numCol; c++) {
|
2017-11-20 22:10:45 +03:00
|
|
|
char b1[MAXPATHLEN];
|
2017-11-20 21:37:56 +03:00
|
|
|
const char *b;
|
|
|
|
|
2000-05-23 05:03:05 +04:00
|
|
|
if (rf_get_next_nonblank_line(
|
2017-11-20 21:37:56 +03:00
|
|
|
buf, sizeof(buf), fp, NULL)) {
|
2017-11-20 22:10:45 +03:00
|
|
|
warnx("Config file error: unable to get device "
|
|
|
|
"file for disk at row %d col %d", r, c);
|
2000-05-23 05:03:05 +04:00
|
|
|
retcode = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
2017-11-20 21:37:56 +03:00
|
|
|
|
2017-11-21 01:16:23 +03:00
|
|
|
b = getfsspecname(b1, sizeof(b1), buf);
|
|
|
|
if (b == NULL) {
|
2017-11-20 22:10:45 +03:00
|
|
|
warnx("Config file error: warning: unable to "
|
|
|
|
"get device file for disk at row %d col "
|
|
|
|
"%d: %s", r, c, b1);
|
2017-11-20 21:37:56 +03:00
|
|
|
b = buf;
|
2017-11-21 01:16:23 +03:00
|
|
|
}
|
2017-11-20 21:37:56 +03:00
|
|
|
|
2017-11-21 19:31:37 +03:00
|
|
|
strlcpy(cfgPtr->devnames[r][c], b,
|
2017-11-21 19:19:31 +03:00
|
|
|
sizeof(cfgPtr->devnames[r][c]));
|
2000-05-23 05:03:05 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* "spare" section is optional */
|
|
|
|
rewind(fp);
|
2017-11-20 22:10:45 +03:00
|
|
|
if (rf_search_file_for_start_of("spare", buf, sizeof(buf), fp))
|
2000-05-23 05:03:05 +04:00
|
|
|
cfgPtr->numSpare = 0;
|
|
|
|
for (c = 0; c < cfgPtr->numSpare; c++) {
|
2017-11-20 22:10:45 +03:00
|
|
|
char b1[MAXPATHLEN];
|
2017-11-20 21:37:56 +03:00
|
|
|
const char *b;
|
|
|
|
|
2017-11-20 22:10:45 +03:00
|
|
|
if (rf_get_next_nonblank_line(buf, sizeof(buf), fp, NULL)) {
|
|
|
|
warnx("Config file error: unable to get device file "
|
|
|
|
"for spare disk %d", c);
|
2000-05-23 05:03:05 +04:00
|
|
|
retcode = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
2017-11-20 21:37:56 +03:00
|
|
|
|
|
|
|
b = getfsspecname(b1, sizeof(b1), buf);
|
|
|
|
if (b == NULL) {
|
2017-11-20 22:10:45 +03:00
|
|
|
warnx("Config file error: warning: unable to get "
|
|
|
|
"device file for spare disk %d: %s", c, b);
|
2017-11-20 21:37:56 +03:00
|
|
|
b = buf;
|
|
|
|
}
|
|
|
|
|
2017-11-21 19:31:37 +03:00
|
|
|
strlcpy(cfgPtr->spare_names[r], b,
|
2017-11-21 19:19:31 +03:00
|
|
|
sizeof(cfgPtr->spare_names[r]));
|
2000-05-23 05:03:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* scan the file for the block related to layout */
|
|
|
|
rewind(fp);
|
2017-11-20 22:10:45 +03:00
|
|
|
if (rf_search_file_for_start_of("layout", buf, sizeof(buf), fp)) {
|
|
|
|
warnx("Can't find \"layout\" section in configuration file %s",
|
|
|
|
configname);
|
2000-05-23 05:03:05 +04:00
|
|
|
retcode = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
2017-11-20 22:10:45 +03:00
|
|
|
if (rf_get_next_nonblank_line(buf, sizeof(buf), fp, NULL)) {
|
|
|
|
warnx("Config file error (\"layout\" section): unable to find "
|
|
|
|
"common layout param line");
|
2000-05-23 05:03:05 +04:00
|
|
|
retcode = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
c = sscanf(buf, "%d %d %d %c", &aa, &bb, &cc, &cfgPtr->parityConfig);
|
|
|
|
cfgPtr->sectPerSU = (RF_SectorNum_t) aa;
|
|
|
|
cfgPtr->SUsPerPU = (RF_StripeNum_t) bb;
|
|
|
|
cfgPtr->SUsPerRU = (RF_StripeNum_t) cc;
|
|
|
|
if (c != 4) {
|
2017-11-20 22:10:45 +03:00
|
|
|
warnx("Unable to scan common layout line");
|
2000-05-23 05:03:05 +04:00
|
|
|
retcode = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
lp = rf_GetLayout(cfgPtr->parityConfig);
|
|
|
|
if (lp == NULL) {
|
2017-11-20 22:10:45 +03:00
|
|
|
warnx("Unknown parity config '%c'",
|
2000-05-23 05:03:05 +04:00
|
|
|
cfgPtr->parityConfig);
|
|
|
|
retcode = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2017-11-20 22:10:45 +03:00
|
|
|
retcode = lp->MakeLayoutSpecific(fp, cfgPtr,
|
|
|
|
lp->makeLayoutSpecificArg);
|
1998-11-13 07:34:02 +03:00
|
|
|
out:
|
2000-05-23 05:03:05 +04:00
|
|
|
fclose(fp);
|
|
|
|
if (retcode < 0)
|
|
|
|
retcode = errno = EINVAL;
|
|
|
|
else
|
|
|
|
errno = retcode;
|
2017-11-20 22:10:45 +03:00
|
|
|
return retcode;
|
1998-11-13 07:34:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-21 01:16:23 +03:00
|
|
|
/*
|
|
|
|
* used in architectures such as RAID0 where there is no layout-specific
|
1998-11-13 07:34:02 +03:00
|
|
|
* information to be passed into the configuration code.
|
|
|
|
*/
|
2017-11-21 01:16:23 +03:00
|
|
|
int
|
2005-02-09 17:21:37 +03:00
|
|
|
rf_MakeLayoutSpecificNULL(FILE *fp, RF_Config_t *cfgPtr, void *ignored)
|
1998-11-13 07:34:02 +03:00
|
|
|
{
|
2000-05-23 05:03:05 +04:00
|
|
|
cfgPtr->layoutSpecificSize = 0;
|
|
|
|
cfgPtr->layoutSpecific = NULL;
|
2017-11-20 22:10:45 +03:00
|
|
|
return 0;
|
1998-11-13 07:34:02 +03:00
|
|
|
}
|
|
|
|
|
2017-11-21 01:16:23 +03:00
|
|
|
int
|
2005-02-09 17:21:37 +03:00
|
|
|
rf_MakeLayoutSpecificDeclustered(FILE *configfp, RF_Config_t *cfgPtr, void *arg)
|
1998-11-13 07:34:02 +03:00
|
|
|
{
|
2000-05-23 05:03:05 +04:00
|
|
|
int b, v, k, r, lambda, norotate, i, val, distSpare;
|
|
|
|
char *cfgBuf, *bdfile, *p, *smname;
|
2017-11-20 22:10:45 +03:00
|
|
|
char buf[BUFSIZ], smbuf[BUFSIZ];
|
2000-05-23 05:03:05 +04:00
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
distSpare = *((int *) arg);
|
|
|
|
|
|
|
|
/* get the block design file name */
|
2017-11-20 22:10:45 +03:00
|
|
|
if (rf_get_next_nonblank_line(buf, sizeof(buf), configfp,
|
|
|
|
"Can't find block design file name in config file"))
|
|
|
|
return EINVAL;
|
|
|
|
bdfile = rf_find_non_white(buf, 1);
|
2000-05-23 05:03:05 +04:00
|
|
|
/* open bd file, check validity of configuration */
|
|
|
|
if ((fp = fopen(bdfile, "r")) == NULL) {
|
2017-11-20 22:10:45 +03:00
|
|
|
warn("RAID: config error: Can't open layout table file %s",
|
|
|
|
bdfile);
|
|
|
|
return EINVAL;
|
2000-05-23 05:03:05 +04:00
|
|
|
}
|
2017-11-20 22:10:45 +03:00
|
|
|
if (fgets(buf, sizeof(buf), fp) == NULL) {
|
|
|
|
warnx("RAID: config error: Can't read layout from layout "
|
|
|
|
"table file %s", bdfile);
|
2006-03-19 04:57:11 +03:00
|
|
|
fclose(fp);
|
2017-11-20 22:10:45 +03:00
|
|
|
return EINVAL;
|
2000-12-31 04:58:03 +03:00
|
|
|
}
|
2017-11-20 22:10:45 +03:00
|
|
|
i = sscanf(buf, "%u %u %u %u %u %u",
|
|
|
|
&b, &v, &k, &r, &lambda, &norotate);
|
2000-05-23 05:03:05 +04:00
|
|
|
if (i == 5)
|
|
|
|
norotate = 0; /* no-rotate flag is optional */
|
|
|
|
else if (i != 6) {
|
2017-11-20 22:10:45 +03:00
|
|
|
warnx("Unable to parse header line in block design file");
|
2006-03-19 04:57:11 +03:00
|
|
|
fclose(fp);
|
2017-11-20 22:10:45 +03:00
|
|
|
return EINVAL;
|
2000-05-23 05:03:05 +04:00
|
|
|
}
|
2017-11-21 01:16:23 +03:00
|
|
|
/*
|
|
|
|
* set the sparemap directory. In the in-kernel version, there's a
|
|
|
|
* daemon that's responsible for finding the sparemaps
|
|
|
|
*/
|
2000-05-23 05:03:05 +04:00
|
|
|
if (distSpare) {
|
2017-11-20 22:10:45 +03:00
|
|
|
if (rf_get_next_nonblank_line(smbuf, sizeof(buf), configfp,
|
|
|
|
"Can't find sparemap file name in config file")) {
|
2006-03-19 04:57:11 +03:00
|
|
|
fclose(fp);
|
2017-11-20 22:10:45 +03:00
|
|
|
return EINVAL;
|
2000-05-23 05:03:05 +04:00
|
|
|
}
|
2017-11-20 22:10:45 +03:00
|
|
|
smname = rf_find_non_white(smbuf, 1);
|
2000-05-23 05:03:05 +04:00
|
|
|
} else {
|
|
|
|
smbuf[0] = '\0';
|
|
|
|
smname = smbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* allocate a buffer to hold the configuration info */
|
|
|
|
cfgPtr->layoutSpecificSize = RF_SPAREMAP_NAME_LEN +
|
|
|
|
6 * sizeof(int) + b * k;
|
2004-10-27 02:46:27 +04:00
|
|
|
|
2000-05-23 05:03:05 +04:00
|
|
|
cfgBuf = (char *) malloc(cfgPtr->layoutSpecificSize);
|
2006-03-19 04:57:11 +03:00
|
|
|
if (cfgBuf == NULL) {
|
|
|
|
fclose(fp);
|
2017-11-20 22:10:45 +03:00
|
|
|
return ENOMEM;
|
2006-03-19 04:57:11 +03:00
|
|
|
}
|
2000-05-23 05:03:05 +04:00
|
|
|
cfgPtr->layoutSpecific = (void *) cfgBuf;
|
|
|
|
p = cfgBuf;
|
|
|
|
|
|
|
|
/* install name of sparemap file */
|
|
|
|
for (i = 0; smname[i]; i++)
|
|
|
|
*p++ = smname[i];
|
|
|
|
/* pad with zeros */
|
|
|
|
while (i < RF_SPAREMAP_NAME_LEN) {
|
|
|
|
*p++ = '\0';
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2017-11-21 01:16:23 +03:00
|
|
|
* fill in the buffer with the block design parameters
|
|
|
|
* and then the block design itself
|
|
|
|
*/
|
2000-05-23 05:03:05 +04:00
|
|
|
*((int *) p) = b;
|
|
|
|
p += sizeof(int);
|
|
|
|
*((int *) p) = v;
|
|
|
|
p += sizeof(int);
|
|
|
|
*((int *) p) = k;
|
|
|
|
p += sizeof(int);
|
|
|
|
*((int *) p) = r;
|
|
|
|
p += sizeof(int);
|
|
|
|
*((int *) p) = lambda;
|
|
|
|
p += sizeof(int);
|
|
|
|
*((int *) p) = norotate;
|
|
|
|
p += sizeof(int);
|
|
|
|
|
|
|
|
while (fscanf(fp, "%d", &val) == 1)
|
|
|
|
*p++ = (char) val;
|
|
|
|
fclose(fp);
|
2009-04-06 16:47:20 +04:00
|
|
|
if ((unsigned int)(p - cfgBuf) != cfgPtr->layoutSpecificSize) {
|
2017-11-20 22:10:45 +03:00
|
|
|
warnx("Size mismatch creating layout specific data: is %tu sb "
|
|
|
|
"%zu bytes", p - cfgBuf, 6 * sizeof(int) + b * k);
|
|
|
|
return EINVAL;
|
2000-05-23 05:03:05 +04:00
|
|
|
}
|
2017-11-20 22:10:45 +03:00
|
|
|
return 0;
|
1998-11-13 07:34:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
*
|
|
|
|
* utilities
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
1999-08-08 03:48:11 +04:00
|
|
|
/* finds a non-white character in the line */
|
2017-11-20 22:10:45 +03:00
|
|
|
static char *
|
|
|
|
rf_find_non_white(char *p, int eatnl)
|
1999-08-08 03:48:11 +04:00
|
|
|
{
|
2017-11-20 22:10:45 +03:00
|
|
|
for (; *p != '\0' && (*p == ' ' || *p == '\t'); p++)
|
|
|
|
continue;
|
|
|
|
if (*p == '\n' && eatnl)
|
|
|
|
*p = '\0';
|
|
|
|
return p;
|
1999-08-08 03:48:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* finds a white character in the line */
|
2017-11-20 22:10:45 +03:00
|
|
|
static char *
|
1999-08-08 03:48:11 +04:00
|
|
|
rf_find_white(char *p)
|
|
|
|
{
|
2017-11-20 22:10:45 +03:00
|
|
|
for (; *p != '\0' && *p != ' ' && *p != '\t'; p++)
|
|
|
|
continue;
|
|
|
|
return p;
|
1999-08-08 03:48:11 +04:00
|
|
|
}
|
|
|
|
|
2000-05-23 05:03:05 +04:00
|
|
|
/*
|
|
|
|
* searches a file for a line that says "START string", where string is
|
1998-11-13 07:34:02 +03:00
|
|
|
* specified as a parameter
|
|
|
|
*/
|
2017-11-21 01:16:23 +03:00
|
|
|
static int
|
2005-02-09 17:21:37 +03:00
|
|
|
rf_search_file_for_start_of(const char *string, char *buf, int len, FILE *fp)
|
1998-11-13 07:34:02 +03:00
|
|
|
{
|
2000-05-23 05:03:05 +04:00
|
|
|
char *p;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
if (fgets(buf, len, fp) == NULL)
|
2017-11-20 22:10:45 +03:00
|
|
|
return -1;
|
|
|
|
p = rf_find_non_white(buf, 0);
|
2000-05-23 05:03:05 +04:00
|
|
|
if (!strncmp(p, "START", strlen("START"))) {
|
|
|
|
p = rf_find_white(p);
|
2017-11-20 22:10:45 +03:00
|
|
|
p = rf_find_non_white(p, 0);
|
2000-05-23 05:03:05 +04:00
|
|
|
if (!strncmp(p, string, strlen(string)))
|
2017-11-20 22:10:45 +03:00
|
|
|
return 0;
|
2000-05-23 05:03:05 +04:00
|
|
|
}
|
|
|
|
}
|
1998-11-13 07:34:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* reads from file fp into buf until it finds an interesting line */
|
2017-11-21 01:16:23 +03:00
|
|
|
static int
|
2005-02-09 17:21:37 +03:00
|
|
|
rf_get_next_nonblank_line(char *buf, int len, FILE *fp, const char *errmsg)
|
1998-11-13 07:34:02 +03:00
|
|
|
{
|
2000-05-23 05:03:05 +04:00
|
|
|
char *p;
|
2004-10-26 23:52:21 +04:00
|
|
|
int l;
|
2000-05-23 05:03:05 +04:00
|
|
|
|
2004-10-26 23:23:19 +04:00
|
|
|
while (fgets(buf, len, fp) != NULL) {
|
2017-11-20 22:10:45 +03:00
|
|
|
p = rf_find_non_white(buf, 0);
|
2000-05-23 05:03:05 +04:00
|
|
|
if (*p == '\n' || *p == '\0' || *p == '#')
|
|
|
|
continue;
|
2017-11-20 22:10:45 +03:00
|
|
|
l = strlen(buf) - 1;
|
|
|
|
while (l >= 0 && (buf[l] == ' ' || buf[l] == '\n')) {
|
|
|
|
buf[l] = '\0';
|
2004-10-26 23:52:21 +04:00
|
|
|
l--;
|
|
|
|
}
|
2017-11-20 22:10:45 +03:00
|
|
|
return 0;
|
2000-05-23 05:03:05 +04:00
|
|
|
}
|
|
|
|
if (errmsg)
|
2017-11-20 22:10:45 +03:00
|
|
|
warnx("%s", errmsg);
|
|
|
|
return 1;
|
1998-11-13 07:34:02 +03:00
|
|
|
}
|
|
|
|
|
2000-05-23 05:03:05 +04:00
|
|
|
/*
|
|
|
|
* Allocates an array for the spare table, and initializes it from a file.
|
1998-11-13 07:34:02 +03:00
|
|
|
* In the user-level version, this is called when recon is initiated.
|
|
|
|
* When/if I move recon into the kernel, there'll be a daemon that does
|
|
|
|
* an ioctl into raidframe which will block until a spare table is needed.
|
|
|
|
* When it returns, it will read a spare table from the file system,
|
|
|
|
* pass it into the kernel via a different ioctl, and then block again
|
|
|
|
* on the original ioctl.
|
|
|
|
*
|
|
|
|
* This is specific to the declustered layout, but doesn't belong in
|
|
|
|
* rf_decluster.c because it uses stuff that can't be compiled into
|
|
|
|
* the kernel, and it needs to be compiled into the user-level sparemap daemon.
|
|
|
|
*/
|
2000-05-23 05:03:05 +04:00
|
|
|
void *
|
2005-02-09 17:21:37 +03:00
|
|
|
rf_ReadSpareTable(RF_SparetWait_t *req, char *fname)
|
1998-11-13 07:34:02 +03:00
|
|
|
{
|
2000-05-23 05:03:05 +04:00
|
|
|
int i, j, numFound, linecount, tableNum, tupleNum,
|
|
|
|
spareDisk, spareBlkOffset;
|
2017-11-20 22:10:45 +03:00
|
|
|
char buf[BUFSIZ], targString[BUFSIZ], errString[BUFSIZ];
|
2000-05-23 05:03:05 +04:00
|
|
|
RF_SpareTableEntry_t **table;
|
2016-03-09 22:53:32 +03:00
|
|
|
FILE *fp = NULL;
|
2000-05-23 05:03:05 +04:00
|
|
|
|
|
|
|
/* allocate and initialize the table */
|
2016-03-09 22:53:32 +03:00
|
|
|
table = calloc(req->TablesPerSpareRegion, sizeof(*table));
|
2004-10-27 02:46:27 +04:00
|
|
|
if (table == NULL) {
|
2016-03-09 22:53:32 +03:00
|
|
|
warn("%s: Unable to allocate table", __func__);
|
|
|
|
return NULL;
|
2004-10-27 02:46:27 +04:00
|
|
|
}
|
2000-05-23 05:03:05 +04:00
|
|
|
for (i = 0; i < req->TablesPerSpareRegion; i++) {
|
2016-03-09 22:53:32 +03:00
|
|
|
table[i] = calloc(req->BlocksPerTable, sizeof(**table));
|
2004-10-27 02:46:27 +04:00
|
|
|
if (table[i] == NULL) {
|
2016-03-09 22:53:32 +03:00
|
|
|
warn("%s: Unable to allocate table", __func__);
|
|
|
|
goto out;
|
2004-10-27 02:46:27 +04:00
|
|
|
}
|
2000-05-23 05:03:05 +04:00
|
|
|
for (j = 0; j < req->BlocksPerTable; j++)
|
|
|
|
table[i][j].spareDisk =
|
|
|
|
table[i][j].spareBlockOffsetInSUs = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 2. open sparemap file, sanity check */
|
|
|
|
if ((fp = fopen(fname, "r")) == NULL) {
|
2016-03-09 22:53:32 +03:00
|
|
|
warn("%s: Can't open sparemap file %s", __func__, fname);
|
|
|
|
goto out;
|
2000-05-23 05:03:05 +04:00
|
|
|
}
|
|
|
|
if (rf_get_next_nonblank_line(buf, 1024, fp,
|
2017-11-20 22:10:45 +03:00
|
|
|
"Invalid sparemap file: can't find header line"))
|
2016-03-09 22:53:32 +03:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
size_t len = strlen(buf);
|
|
|
|
if (len != 0 && buf[len - 1] == '\n')
|
|
|
|
buf[len - 1] = '\0';
|
2000-05-23 05:03:05 +04:00
|
|
|
|
2003-07-13 11:37:02 +04:00
|
|
|
snprintf(targString, sizeof(targString), "fdisk %d\n", req->fcol);
|
|
|
|
snprintf(errString, sizeof(errString),
|
2017-11-20 22:10:45 +03:00
|
|
|
"Invalid sparemap file: Can't find \"fdisk %d\" line", req->fcol);
|
2016-03-09 22:53:32 +03:00
|
|
|
for (;;) {
|
2017-11-20 22:10:45 +03:00
|
|
|
rf_get_next_nonblank_line(buf, sizeof(buf), fp, errString);
|
2000-05-23 05:03:05 +04:00
|
|
|
if (!strncmp(buf, targString, strlen(targString)))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* no more blank lines or comments allowed now */
|
|
|
|
linecount = req->TablesPerSpareRegion * req->TableDepthInPUs;
|
|
|
|
for (i = 0; i < linecount; i++) {
|
|
|
|
numFound = fscanf(fp, " %d %d %d %d", &tableNum, &tupleNum,
|
|
|
|
&spareDisk, &spareBlkOffset);
|
|
|
|
if (numFound != 4) {
|
2010-01-27 21:34:02 +03:00
|
|
|
warnx("Sparemap file prematurely exhausted after %d "
|
|
|
|
"of %d lines", i, linecount);
|
2016-03-09 22:53:32 +03:00
|
|
|
goto out;
|
2000-05-23 05:03:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
table[tableNum][tupleNum].spareDisk = spareDisk;
|
|
|
|
table[tableNum][tupleNum].spareBlockOffsetInSUs =
|
|
|
|
spareBlkOffset * req->SUsPerPU;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
2017-11-20 22:10:45 +03:00
|
|
|
return (void *) table;
|
2016-03-09 22:53:32 +03:00
|
|
|
out:
|
|
|
|
if (fp)
|
|
|
|
fclose(fp);
|
|
|
|
for (i = 0; i < req->TablesPerSpareRegion; i++)
|
|
|
|
free(table[i]);
|
|
|
|
free(table);
|
|
|
|
return NULL;
|
1998-11-13 07:34:02 +03:00
|
|
|
}
|