root/sbin/raidctl/rf_configure.c
/*      $NetBSD: rf_configure.c,v 1.37 2022/07/21 09:19:53 kre Exp $ */

/*
 * 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.
 *
 **************************************************************/
#include <sys/cdefs.h>

#ifndef lint
__RCSID("$NetBSD: rf_configure.c,v 1.37 2022/07/21 09:19:53 kre Exp $");
#endif


#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <strings.h>
#include <err.h>
#include <util.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/stat.h>

#include <dev/raidframe/raidframevar.h>
#include <dev/raidframe/raidframeio.h>
#include "rf_configure.h"

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 *);

#define RF_MIN(a,b) (((a) < (b)) ? (a) : (b))

static int     distSpareYes = 1;
static int     distSpareNo = 0;

/*
 * 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.
 */

static const RF_LayoutSW_t mapsw[] = {
        /* 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}
};

static const RF_LayoutSW_t *
rf_GetLayout(RF_ParityConfig_t parityConfig)
{
        const RF_LayoutSW_t *p;

        /* look up the specific layout */
        for (p = &mapsw[0]; p->parityConfig; p++)
                if (p->parityConfig == parityConfig)
                        break;
        if (!p->parityConfig)
                return NULL;
        return p;
}

/*
 * called from user level to read the configuration file and create
 * 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.
 */
int
rf_MakeConfig(char *configname, RF_Config_t *cfgPtr)
{
        int numscanned, val, c, retcode, aa, bb, cc;
        char buf[BUFSIZ], buf1[BUFSIZ], *cp;
        const RF_LayoutSW_t *lp;
        FILE *fp;

        memset(cfgPtr, 0, sizeof(*cfgPtr));

        fp = fopen(configname, "r");
        if (!fp) {
                warnx("Can't open config file %s", configname);
                return -1;
        }
        rewind(fp);
        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);
                retcode = -1;
                goto out;
        }
        rf_get_next_nonblank_line(buf, sizeof(buf), fp,
            "Config file error (\"array\" section):  unable to get numRow "
            "and numCol");

        /*
         * wackiness with aa, bb, cc to get around size problems on
         * different platforms
         */

        /*
         * Allow both "numCol numSpare" as well as old-style
         * "numRow numCol numSpare".
         * Note that numRow has always been ignored.
         */
        numscanned = sscanf(buf, "%d %d %d", &aa, &bb, &cc);
        if (numscanned != 3) {
                numscanned = sscanf(buf, "%d %d", &bb, &cc);
                if (numscanned != 2) {
                        warnx("Config file error (\"array\" section): unable "
                            "to get numCol, numSpare");
                        retcode = -1;
                        goto out;
                }
        }
        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);
        if (!rf_search_file_for_start_of("debug", buf, sizeof(buf), fp)) {
                for (c = 0; c < RF_MAXDBGV; c++) {
                        if (rf_get_next_nonblank_line(buf, sizeof(buf), fp,
                            NULL))
                                break;
                        cp = rf_find_non_white(buf, 0);
                        if (!strncmp(cp, "START", sizeof("START") - 1))
                                break;
                        (void) strlcpy(cfgPtr->debugVars[c], cp,
                            sizeof(cfgPtr->debugVars[c]));
                }
        }
        rewind(fp);
        strlcpy(cfgPtr->diskQueueType, "fifo", sizeof(cfgPtr->diskQueueType));
        cfgPtr->maxOutstandingDiskReqs = 1;

        /* scan the file for the block related to disk queues */
        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);
        }
    else {

        /*
         * the queue specifier line contains two entries: 1st char of first
         * word specifies queue to be used 2nd word specifies max num reqs
         * that can be outstanding on the disk itself (typically 1)
         */
        assert(64 < sizeof buf1);
        if (sscanf(buf, "%64s %d", buf1, &val) != 2 || strlen(buf1) >= 60) {
                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);
        } else {
#if 0
                char *ch;
#endif
                memcpy(cfgPtr->diskQueueType, buf1,
                    RF_MIN(sizeof(cfgPtr->diskQueueType), strlen(buf1) + 1));
                cfgPtr->diskQueueType[sizeof cfgPtr->diskQueueType - 1] = '\0';

#if 0   /* this indicates a lack of understanding of how scanf() works */
        /* it was also pointless as buf1 data was (b4) never used again */
                for (ch = buf1; *ch; ch++) {
                        if (*ch == ' ') {
                                *ch = '\0';
                                break;
                        }
                }
#endif
                cfgPtr->maxOutstandingDiskReqs = val;
                if (cfgPtr->maxOutstandingDiskReqs != val) {
                        warnx("Queue length for %s out of range"
                            " [%d interp as %d], assuming 1",
                            buf1, val, cfgPtr->maxOutstandingDiskReqs);
                        cfgPtr->maxOutstandingDiskReqs = 1;
                }
        }
    }

        rewind(fp);

        if (rf_search_file_for_start_of("disks", buf, sizeof(buf), fp)) {
                warnx("Can't find \"disks\" section in config file %s",
                    configname);
                retcode = -1;
                goto out;
        }
        for (c = 0; c < cfgPtr->numCol; c++) {
                char b1[MAXPATHLEN];
                const char *b;

                if (rf_get_next_nonblank_line(
                    buf, sizeof(buf), fp, NULL)) {
                        warnx("Config file error: unable to find device "
                            "file name for disk at col %d", c);
                        retcode = -1;
                        goto out;
                }

                b = getfsspecname(b1, sizeof(b1), buf);
                if (b == NULL) {
                        warnx("Config file error: warning: unable to "
                            "get device file for disk at col %d: %s",
                            c, b1);
                        b = "absent";
                }

                strlcpy(cfgPtr->devnames[0][c], b,
                    sizeof(cfgPtr->devnames[0][c]));
        }

        /* "spare" section is optional */
        rewind(fp);
        if (rf_search_file_for_start_of("spare", buf, sizeof(buf), fp))
                cfgPtr->numSpare = 0;
        for (c = 0; c < cfgPtr->numSpare; c++) {
                char b1[MAXPATHLEN];
                const char *b;

                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);
                        retcode = -1;
                        goto out;
                }

                b = getfsspecname(b1, sizeof(b1), buf);
                if (b == NULL) {
                        warnx("Config file error: warning: unable to get "
                            "device file for spare disk %d: %s", c, buf);
                        b = buf;
                }

                strlcpy(cfgPtr->spare_names[c], b,
                    sizeof(cfgPtr->spare_names[c]));
        }

        /* scan the file for the block related to layout */
        rewind(fp);
        if (rf_search_file_for_start_of("layout", buf, sizeof(buf), fp)) {
                warnx("Can't find \"layout\" section in configuration file %s",
                    configname);
                retcode = -1;
                goto out;
        }
        if (rf_get_next_nonblank_line(buf, sizeof(buf), fp, NULL)) {
                warnx("Config file error (\"layout\" section): unable to find "
                    "common layout param line");
                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) {
                warnx("Unable to scan common layout line");
                retcode = -1;
                goto out;
        }
        lp = rf_GetLayout(cfgPtr->parityConfig);
        if (lp == NULL) {
                warnx("Unknown parity config '%c'",
                    cfgPtr->parityConfig);
                retcode = -1;
                goto out;
        }

        retcode = lp->MakeLayoutSpecific(fp, cfgPtr,
            lp->makeLayoutSpecificArg);
out:
        fclose(fp);
        if (retcode < 0)
                retcode = errno = EINVAL;
        else
                errno = retcode;
        return retcode;
}


/*
 * used in architectures such as RAID0 where there is no layout-specific
 * information to be passed into the configuration code.
 */
int
rf_MakeLayoutSpecificNULL(FILE *fp, RF_Config_t *cfgPtr, void *ignored)
{
        cfgPtr->layoutSpecificSize = 0;
        cfgPtr->layoutSpecific = NULL;
        return 0;
}

int
rf_MakeLayoutSpecificDeclustered(FILE *configfp, RF_Config_t *cfgPtr, void *arg)
{
        int b, v, k, r, lambda, norotate, i, val, distSpare;
        char *cfgBuf, *bdfile, *p, *smname;
        char buf[BUFSIZ], smbuf[BUFSIZ];
        FILE *fp;

        distSpare = *((int *) arg);

        /* get the block design file name */
        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);
        /* open bd file, check validity of configuration */
        if ((fp = fopen(bdfile, "r")) == NULL) {
                warn("RAID: config error: Can't open layout table file %s",
                    bdfile);
                return EINVAL;
        }
        if (fgets(buf, sizeof(buf), fp) == NULL) {
                warnx("RAID: config error: Can't read layout from layout "
                    "table file %s", bdfile);
                fclose(fp);
                return EINVAL;
        }
        i = sscanf(buf, "%u %u %u %u %u %u",
            &b, &v, &k, &r, &lambda, &norotate);
        if (i == 5)
                norotate = 0;   /* no-rotate flag is optional */
        else if (i != 6) {
                warnx("Unable to parse header line in block design file");
                fclose(fp);
                return EINVAL;
        }
        /*
         * set the sparemap directory.  In the in-kernel version, there's a
         * daemon that's responsible for finding the sparemaps
         */
        if (distSpare) {
                if (rf_get_next_nonblank_line(smbuf, sizeof(smbuf), configfp,
                    "Can't find sparemap file name in config file")) {
                        fclose(fp);
                        return EINVAL;
                }
                smname = rf_find_non_white(smbuf, 1);
                if (strlen(smname) >= RF_SPAREMAP_NAME_LEN) {
                        warnx("sparemap file name '%s' too long (max %d)",
                            smname, RF_SPAREMAP_NAME_LEN - 1);
                        fclose(fp);
                        return EINVAL;
                }
        } 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;

        cfgBuf = (char *) malloc(cfgPtr->layoutSpecificSize);
        if (cfgBuf == NULL) {
                fclose(fp);
                return ENOMEM;
        }
        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++;
        }
        if ((i & (sizeof(int) - 1)) != 0) {
                /* panic, unaligned data; RF_SPAREMAP_NAME_LEN invalid */
                warnx("Program Bug: (RF_SPAREMAP_NAME_LEN(%d) %% %zd) != 0",
                    RF_SPAREMAP_NAME_LEN, sizeof(int));
                fclose(fp);
                return EINVAL;
        }

        /*
         * fill in the buffer with the block design parameters
         * and then the block design itself
         */
        *((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);
        if ((unsigned int)(p - cfgBuf) != cfgPtr->layoutSpecificSize) {
                warnx("Size mismatch creating layout specific data: is %tu sb "
                    "%zu bytes", p - cfgBuf, 6 * sizeof(int) + b * k);
                return EINVAL;
        }
        return 0;
}

/****************************************************************************
 *
 * utilities
 *
 ***************************************************************************/

/* finds a non-white character in the line */
static char *
rf_find_non_white(char *p, int eatnl)
{
        while (*p == ' ' || *p == '\t')
                p++;
        if (*p == '\n' && eatnl)
                *p = '\0';
        return p;
}

/* finds a white character in the line */
static char *
rf_find_white(char *p)
{
        while (*p != '\0' && *p != ' ' && *p != '\t')
                p++;
        return p;
}

/*
 * searches a file for a line that says "START string", where string is
 * specified as a parameter
 */
static int
rf_search_file_for_start_of(const char *string, char *buf, int len, FILE *fp)
{
        char *p;

        while (1) {
                if (fgets(buf, len, fp) == NULL)
                        return -1;
                p = rf_find_non_white(buf, 0);
                if (!strncmp(p, "START", strlen("START"))) {
                        p = rf_find_white(p);
                        p = rf_find_non_white(p, 0);
                        if (!strncmp(p, string, strlen(string)))
                                return 0;
                }
        }
}

/* reads from file fp into buf until it finds an interesting line */
static int
rf_get_next_nonblank_line(char *buf, int len, FILE *fp, const char *errmsg)
{
        char *p;
        size_t l;

        while (fgets(buf, len, fp) != NULL) {
                p = rf_find_non_white(buf, 0);
                if (*p == '\n' || *p == '\0' || *p == '#')
                        continue;
                l = strlen(buf);
                while (l > 0 && (buf[--l] == ' ' || buf[l] == '\n'))
                        buf[l] = '\0';
                return 0;
        }
        if (errmsg)
                warnx("%s", errmsg);
        return 1;
}

/*
 * Allocates an array for the spare table, and initializes it from a file.
 * 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.
 */
void *
rf_ReadSpareTable(RF_SparetWait_t *req, char *fname)
{
        int i, j, numFound, linecount, tableNum, tupleNum,
            spareDisk, spareBlkOffset;
        char buf[BUFSIZ], targString[BUFSIZ], errString[BUFSIZ];
        RF_SpareTableEntry_t **table;
        FILE *fp = NULL;
        size_t len;

        /* allocate and initialize the table */
        table = calloc(req->TablesPerSpareRegion, sizeof(*table));
        if (table == NULL) {
                warn("%s: Unable to allocate table", __func__);
                return NULL;
        }
        for (i = 0; i < req->TablesPerSpareRegion; i++) {
                table[i] = calloc(req->BlocksPerTable, sizeof(**table));
                if (table[i] == NULL) {
                        warn("%s: Unable to allocate table:%d", __func__, i);
                        goto out;
                }
                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) {
                warn("%s: Can't open sparemap file %s", __func__, fname);
                goto out;
        }
        if (rf_get_next_nonblank_line(buf, 1024, fp,
            "Invalid sparemap file:  can't find header line"))
                goto out;

        len = strlen(buf);
        if (len != 0 && buf[len - 1] == '\n')
                buf[len - 1] = '\0';

        snprintf(targString, sizeof(targString), "fdisk %d\n", req->fcol);
        snprintf(errString, sizeof(errString),
            "Invalid sparemap file: Can't find \"fdisk %d\" line", req->fcol);
        for (;;) {
                rf_get_next_nonblank_line(buf, sizeof(buf), fp, errString);
                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++) {
                char linebuf[BUFSIZ];

                if (fgets(linebuf, BUFSIZ, fp) == NULL) {
                        warnx("Sparemap file prematurely exhausted after %d "
                            "of %d lines", i, linecount);
                        goto out;
                }
                numFound = sscanf(linebuf, " %d %d %d %d", &tableNum, &tupleNum,
                    &spareDisk, &spareBlkOffset);
                if (numFound != 4) {
                        warnx("Sparemap file format error - "
                            "line %d of %d lines",
                            i + 1, linecount);
                        goto out;
                }

                table[tableNum][tupleNum].spareDisk = spareDisk;
                table[tableNum][tupleNum].spareBlockOffsetInSUs =
                    spareBlkOffset * req->SUsPerPU;
        }

        fclose(fp);
        return (void *) table;
out:
        if (fp)
                fclose(fp);
        for (i = 0; i < req->TablesPerSpareRegion; i++)
                free(table[i]);
        free(table);
        return NULL;
}