Home | History | Annotate | Line # | Download | only in libsa
bootcfg.c revision 1.1
      1  1.1  rtr /*	$NetBSD: bootcfg.c,v 1.1 2014/06/28 09:16:18 rtr Exp $	*/
      2  1.1  rtr 
      3  1.1  rtr /*-
      4  1.1  rtr  * Copyright (c) 2008 The NetBSD Foundation, Inc.
      5  1.1  rtr  * All rights reserved.
      6  1.1  rtr  *
      7  1.1  rtr  * Redistribution and use in source and binary forms, with or without
      8  1.1  rtr  * modification, are permitted provided that the following conditions
      9  1.1  rtr  * are met:
     10  1.1  rtr  * 1. Redistributions of source code must retain the above copyright
     11  1.1  rtr  *    notice, this list of conditions and the following disclaimer.
     12  1.1  rtr  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  rtr  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  rtr  *    documentation and/or other materials provided with the distribution.
     15  1.1  rtr  *
     16  1.1  rtr  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     17  1.1  rtr  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18  1.1  rtr  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19  1.1  rtr  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20  1.1  rtr  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21  1.1  rtr  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22  1.1  rtr  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23  1.1  rtr  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24  1.1  rtr  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25  1.1  rtr  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26  1.1  rtr  * POSSIBILITY OF SUCH DAMAGE.
     27  1.1  rtr  */
     28  1.1  rtr 
     29  1.1  rtr #include <sys/types.h>
     30  1.1  rtr #include <sys/reboot.h>
     31  1.1  rtr 
     32  1.1  rtr #include <lib/libsa/stand.h>
     33  1.1  rtr #include <lib/libsa/bootcfg.h>
     34  1.1  rtr #include <lib/libkern/libkern.h>
     35  1.1  rtr 
     36  1.1  rtr static int atoi(const char *);
     37  1.1  rtr 
     38  1.1  rtr #define isnum(c) ((c) >= '0' && (c) <= '9')
     39  1.1  rtr 
     40  1.1  rtr #define MENUFORMAT_AUTO   0
     41  1.1  rtr #define MENUFORMAT_NUMBER 1
     42  1.1  rtr #define MENUFORMAT_LETTER 2
     43  1.1  rtr 
     44  1.1  rtr #define DEFAULT_FORMAT  MENUFORMAT_AUTO
     45  1.1  rtr #define DEFAULT_TIMEOUT 10
     46  1.1  rtr 
     47  1.1  rtr struct bootcfg_def bootcfg_info;
     48  1.1  rtr 
     49  1.1  rtr int
     50  1.1  rtr atoi(const char *in)
     51  1.1  rtr {
     52  1.1  rtr 	char *c;
     53  1.1  rtr 	int ret;
     54  1.1  rtr 
     55  1.1  rtr 	ret = 0;
     56  1.1  rtr 	c = (char *)in;
     57  1.1  rtr 	if (*c == '-')
     58  1.1  rtr 		c++;
     59  1.1  rtr 	for (; isnum(*c); c++)
     60  1.1  rtr 		ret = (ret * 10) + (*c - '0');
     61  1.1  rtr 
     62  1.1  rtr 	return (*in == '-') ? -ret : ret;
     63  1.1  rtr }
     64  1.1  rtr 
     65  1.1  rtr void
     66  1.1  rtr bootcfg_do_noop(const char *cmd, char *arg)
     67  1.1  rtr {
     68  1.1  rtr 	/* noop, do nothing */
     69  1.1  rtr }
     70  1.1  rtr 
     71  1.1  rtr /*
     72  1.1  rtr  * This function parses a boot.cfg file in the root of the filesystem
     73  1.1  rtr  * (if present) and populates the global boot configuration.
     74  1.1  rtr  *
     75  1.1  rtr  * The file consists of a number of lines each terminated by \n
     76  1.1  rtr  * The lines are in the format keyword=value. There should not be spaces
     77  1.1  rtr  * around the = sign.
     78  1.1  rtr  *
     79  1.1  rtr  * perform_bootcfg(conf, command, maxsz)
     80  1.1  rtr  *
     81  1.1  rtr  * conf		Path to boot.cfg to be passed verbatim to open()
     82  1.1  rtr  *
     83  1.1  rtr  * command	Pointer to a function that will be called when
     84  1.1  rtr  * 		perform_bootcfg() encounters a key (command) it does not
     85  1.1  rtr  *		recognize.
     86  1.1  rtr  *		The command function is provided both the keyword and
     87  1.1  rtr  *		value parsed as arguments to the function.
     88  1.1  rtr  *
     89  1.1  rtr  * maxsz	Limit the size of the boot.cfg perform_bootcfg() will parse.
     90  1.1  rtr  * 		- If maxsz is < 0 boot.cfg will not be processed.
     91  1.1  rtr  * 		- If maxsz is = 0 no limit will be imposed but parsing may
     92  1.1  rtr  *		  fail due to platform or other constraints e.g. maximum
     93  1.1  rtr  *		  segment size.
     94  1.1  rtr  *		- If 0 < maxsz and boot.cfg exceeds maxsz it will not be
     95  1.1  rtr  *		  parsed, otherwise it will be parsed.
     96  1.1  rtr  *
     97  1.1  rtr  * The recognised keywords are:
     98  1.1  rtr  * banner: text displayed instead of the normal welcome text
     99  1.1  rtr  * menu: Descriptive text:command to use
    100  1.1  rtr  * timeout: Timeout in seconds (overrides that set by installboot)
    101  1.1  rtr  * default: the default menu option to use if Return is pressed
    102  1.1  rtr  * consdev: the console device to use
    103  1.1  rtr  * format: how menu choices are displayed: (a)utomatic, (n)umbers or (l)etters
    104  1.1  rtr  * clear: whether to clear the screen or not
    105  1.1  rtr  *
    106  1.1  rtr  * Example boot.cfg file:
    107  1.1  rtr  * banner=Welcome to NetBSD
    108  1.1  rtr  * banner=Please choose the boot type from the following menu
    109  1.1  rtr  * menu=Boot NetBSD:boot netbsd
    110  1.1  rtr  * menu=Boot into single user mode:boot netbsd -s
    111  1.1  rtr  * menu=:boot hd1a:netbsd -cs
    112  1.1  rtr  * menu=Goto boot comand line:prompt
    113  1.1  rtr  * timeout=10
    114  1.1  rtr  * consdev=com0
    115  1.1  rtr  * default=1
    116  1.1  rtr */
    117  1.1  rtr void
    118  1.1  rtr perform_bootcfg(const char *conf, bootcfg_command command, const off_t maxsz)
    119  1.1  rtr {
    120  1.1  rtr 	char *bc, *c;
    121  1.1  rtr 	int cmenu, cbanner, len;
    122  1.1  rtr 	int fd, err, off;
    123  1.1  rtr 	struct stat st;
    124  1.1  rtr 	char *next, *key, *value, *v2;
    125  1.1  rtr 
    126  1.1  rtr 	/* clear bootcfg structure */
    127  1.1  rtr 	memset(&bootcfg_info, 0, sizeof(bootcfg_info));
    128  1.1  rtr 
    129  1.1  rtr 	/* set default timeout */
    130  1.1  rtr 	bootcfg_info.timeout = DEFAULT_TIMEOUT;
    131  1.1  rtr 
    132  1.1  rtr 	/* automatically switch between letter and numbers on menu */
    133  1.1  rtr 	bootcfg_info.menuformat = DEFAULT_FORMAT;
    134  1.1  rtr 
    135  1.1  rtr 	fd = open(conf, 0);
    136  1.1  rtr 	if (fd < 0)
    137  1.1  rtr 		return;
    138  1.1  rtr 
    139  1.1  rtr 	err = fstat(fd, &st);
    140  1.1  rtr 	if (err == -1) {
    141  1.1  rtr 		close(fd);
    142  1.1  rtr 		return;
    143  1.1  rtr 	}
    144  1.1  rtr 
    145  1.1  rtr 	/* if a maximum size is being requested for the boot.cfg enforce it. */
    146  1.1  rtr 	if (0 < maxsz && st.st_size > maxsz) {
    147  1.1  rtr 		close(fd);
    148  1.1  rtr 		return;
    149  1.1  rtr 	}
    150  1.1  rtr 
    151  1.1  rtr 	bc = alloc(st.st_size + 1);
    152  1.1  rtr 	if (bc == NULL) {
    153  1.1  rtr 		printf("Could not allocate memory for boot configuration\n");
    154  1.1  rtr 		close(fd);
    155  1.1  rtr 		return;
    156  1.1  rtr 	}
    157  1.1  rtr 
    158  1.1  rtr 	/*
    159  1.1  rtr 	 * XXX original code, assumes error or eof return from read()
    160  1.1  rtr 	 *     results in the entire boot.cfg being buffered.
    161  1.1  rtr 	 *     - should bail out on read() failing.
    162  1.1  rtr 	 *     - assumption is made that the file size doesn't change between
    163  1.1  rtr 	 *       fstat() and read()ing.  probably safe in this context
    164  1.1  rtr 	 *       arguably should check that reading the file won't overflow
    165  1.1  rtr 	 *       the storage anyway.
    166  1.1  rtr 	 */
    167  1.1  rtr 	off = 0;
    168  1.1  rtr 	do {
    169  1.1  rtr 		len = read(fd, bc + off, 1024);
    170  1.1  rtr 		if (len <= 0)
    171  1.1  rtr 			break;
    172  1.1  rtr 		off += len;
    173  1.1  rtr 	} while (len > 0);
    174  1.1  rtr 	bc[off] = '\0';
    175  1.1  rtr 
    176  1.1  rtr 	close(fd);
    177  1.1  rtr 
    178  1.1  rtr 	/* bc is now assumed to contain the whole boot.cfg file (see above) */
    179  1.1  rtr 
    180  1.1  rtr 	cmenu = 0;
    181  1.1  rtr 	cbanner = 0;
    182  1.1  rtr 	for (c = bc; *c; c = next) {
    183  1.1  rtr 		key = c;
    184  1.1  rtr 		/* find end of line */
    185  1.1  rtr 		for (; *c && *c != '\n'; c++)
    186  1.1  rtr 			/* zero terminate line on start of comment */
    187  1.1  rtr 			if (*c == '#')
    188  1.1  rtr 				*c = 0;
    189  1.1  rtr 		/* zero terminate line */
    190  1.1  rtr 		if (*(next = c))
    191  1.1  rtr 			*next++ = 0;
    192  1.1  rtr 		/* Look for = separator between key and value */
    193  1.1  rtr 		for (c = key; *c && *c != '='; c++)
    194  1.1  rtr 			continue;
    195  1.1  rtr 		/* Ignore lines with no key=value pair */
    196  1.1  rtr 		if (*c == '\0')
    197  1.1  rtr 			continue;
    198  1.1  rtr 
    199  1.1  rtr 		/* zero terminate key which points to keyword */
    200  1.1  rtr 		*c++ = 0;
    201  1.1  rtr 		value = c;
    202  1.1  rtr 		/* Look for end of line (or file) and zero terminate value */
    203  1.1  rtr 		for (; *c && *c != '\n'; c++)
    204  1.1  rtr 			continue;
    205  1.1  rtr 		*c = 0;
    206  1.1  rtr 
    207  1.1  rtr 		if (!strncmp(key, "menu", 4)) {
    208  1.1  rtr 			/*
    209  1.1  rtr 			 * Parse "menu=<description>:<command>".  If the
    210  1.1  rtr 			 * description is empty ("menu=:<command>)",
    211  1.1  rtr 			 * then re-use the command as the description.
    212  1.1  rtr 			 * Note that the command may contain embedded
    213  1.1  rtr 			 * colons.
    214  1.1  rtr 			 */
    215  1.1  rtr 			if (cmenu >= BOOTCFG_MAXMENU)
    216  1.1  rtr 				continue;
    217  1.1  rtr 			bootcfg_info.desc[cmenu] = value;
    218  1.1  rtr 			for (v2 = value; *v2 && *v2 != ':'; v2++)
    219  1.1  rtr 				continue;
    220  1.1  rtr 			if (*v2) {
    221  1.1  rtr 				*v2++ = 0;
    222  1.1  rtr 				bootcfg_info.command[cmenu] = v2;
    223  1.1  rtr 				if (! *value)
    224  1.1  rtr 					bootcfg_info.desc[cmenu] = v2;
    225  1.1  rtr 				cmenu++;
    226  1.1  rtr 			} else {
    227  1.1  rtr 				/* No delimiter means invalid line */
    228  1.1  rtr 				bootcfg_info.desc[cmenu] = NULL;
    229  1.1  rtr 			}
    230  1.1  rtr 		} else if (!strncmp(key, "banner", 6)) {
    231  1.1  rtr 			if (cbanner < BOOTCFG_MAXBANNER)
    232  1.1  rtr 				bootcfg_info.banner[cbanner++] = value;
    233  1.1  rtr 		} else if (!strncmp(key, "timeout", 7)) {
    234  1.1  rtr 			if (!isnum(*value))
    235  1.1  rtr 				bootcfg_info.timeout = -1;
    236  1.1  rtr 			else
    237  1.1  rtr 				bootcfg_info.timeout = atoi(value);
    238  1.1  rtr 		} else if (!strncmp(key, "default", 7)) {
    239  1.1  rtr 			bootcfg_info.def = atoi(value) - 1;
    240  1.1  rtr 		} else if (!strncmp(key, "consdev", 7)) {
    241  1.1  rtr 			bootcfg_info.consdev = value;
    242  1.1  rtr 		} else if (!strncmp(key, BOOTCFG_CMD_LOAD, 4)) {
    243  1.1  rtr 			command(BOOTCFG_CMD_LOAD, value);
    244  1.1  rtr 		} else if (!strncmp(key, "format", 6)) {
    245  1.1  rtr 			printf("value:%c\n", *value);
    246  1.1  rtr 			switch (*value) {
    247  1.1  rtr 			case 'a':
    248  1.1  rtr 			case 'A':
    249  1.1  rtr 				bootcfg_info.menuformat = MENUFORMAT_AUTO;
    250  1.1  rtr 				break;
    251  1.1  rtr 
    252  1.1  rtr 			case 'n':
    253  1.1  rtr 			case 'N':
    254  1.1  rtr 			case 'd':
    255  1.1  rtr 			case 'D':
    256  1.1  rtr 				bootcfg_info.menuformat = MENUFORMAT_NUMBER;
    257  1.1  rtr 				break;
    258  1.1  rtr 
    259  1.1  rtr 			case 'l':
    260  1.1  rtr 			case 'L':
    261  1.1  rtr 				bootcfg_info.menuformat = MENUFORMAT_LETTER;
    262  1.1  rtr 				break;
    263  1.1  rtr 			}
    264  1.1  rtr 		} else if (!strncmp(key, "clear", 5)) {
    265  1.1  rtr 			bootcfg_info.clear = !!atoi(value);
    266  1.1  rtr 		} else if (!strncmp(key, BOOTCFG_CMD_USERCONF, 8)) {
    267  1.1  rtr 			command(BOOTCFG_CMD_USERCONF, value);
    268  1.1  rtr 		} else {
    269  1.1  rtr 			command(key, value);
    270  1.1  rtr 		}
    271  1.1  rtr 	}
    272  1.1  rtr 
    273  1.1  rtr 	switch (bootcfg_info.menuformat) {
    274  1.1  rtr 	case MENUFORMAT_AUTO:
    275  1.1  rtr 		if (cmenu > 9 && bootcfg_info.timeout > 0)
    276  1.1  rtr 			bootcfg_info.menuformat = MENUFORMAT_LETTER;
    277  1.1  rtr 		else
    278  1.1  rtr 			bootcfg_info.menuformat = MENUFORMAT_NUMBER;
    279  1.1  rtr 		break;
    280  1.1  rtr 
    281  1.1  rtr 	case MENUFORMAT_NUMBER:
    282  1.1  rtr 		if (cmenu > 9 && bootcfg_info.timeout > 0)
    283  1.1  rtr 			cmenu = 9;
    284  1.1  rtr 		break;
    285  1.1  rtr 	}
    286  1.1  rtr 
    287  1.1  rtr 	bootcfg_info.nummenu = cmenu;
    288  1.1  rtr 	if (bootcfg_info.def < 0)
    289  1.1  rtr 		bootcfg_info.def = 0;
    290  1.1  rtr 	if (bootcfg_info.def >= cmenu)
    291  1.1  rtr 		bootcfg_info.def = cmenu - 1;
    292  1.1  rtr }
    293