Home | History | Annotate | Line # | Download | only in mkboot
mkboot.c revision 1.17
      1  1.17   tsutsui /*	$NetBSD: mkboot.c,v 1.17 2024/05/05 07:36:37 tsutsui Exp $	*/
      2   1.1   thorpej 
      3   1.1   thorpej /*
      4   1.1   thorpej  * Copyright (c) 1990, 1993
      5   1.1   thorpej  *	The Regents of the University of California.  All rights reserved.
      6   1.1   thorpej  *
      7   1.1   thorpej  * Redistribution and use in source and binary forms, with or without
      8   1.1   thorpej  * modification, are permitted provided that the following conditions
      9   1.1   thorpej  * are met:
     10   1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     11   1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     12   1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     14   1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     15   1.5       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1   thorpej  *    may be used to endorse or promote products derived from this software
     17   1.1   thorpej  *    without specific prior written permission.
     18   1.1   thorpej  *
     19   1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1   thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1   thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1   thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1   thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1   thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1   thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1   thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1   thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1   thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1   thorpej  * SUCH DAMAGE.
     30   1.1   thorpej  *
     31   1.1   thorpej  *	@(#)mkboot.c	8.1 (Berkeley) 7/15/93
     32   1.1   thorpej  */
     33   1.1   thorpej 
     34   1.7       jmc #if HAVE_NBTOOL_CONFIG_H
     35   1.7       jmc #include "nbtool_config.h"
     36   1.7       jmc #endif
     37   1.7       jmc 
     38   1.2    simonb #include <sys/cdefs.h>
     39   1.2    simonb 
     40   1.1   thorpej #ifndef lint
     41  1.15  christos __COPYRIGHT("@(#) Copyright (c) 1990, 1993\
     42  1.15  christos The Regents of the University of California.  All rights reserved.");
     43   1.1   thorpej #endif /* not lint */
     44   1.1   thorpej 
     45   1.1   thorpej #ifndef lint
     46   1.1   thorpej #ifdef notdef
     47   1.1   thorpej static char sccsid[] = "@(#)mkboot.c	7.2 (Berkeley) 12/16/90";
     48   1.1   thorpej #endif
     49  1.17   tsutsui __RCSID("$NetBSD: mkboot.c,v 1.17 2024/05/05 07:36:37 tsutsui Exp $");
     50   1.1   thorpej #endif /* not lint */
     51   1.1   thorpej 
     52   1.1   thorpej #include <sys/param.h>
     53   1.1   thorpej #include <sys/file.h>
     54   1.2    simonb #include <sys/stat.h>
     55  1.10   gdamore #ifndef HAVE_NBTOOL_CONFIG_H
     56   1.3  gmcgarry #include <sys/endian.h>
     57  1.10   gdamore #endif
     58   1.2    simonb 
     59   1.7       jmc #include <time.h>
     60   1.7       jmc 
     61   1.2    simonb #include <ctype.h>
     62  1.12  christos #include <err.h>
     63   1.2    simonb #include <stdio.h>
     64   1.2    simonb #include <stdlib.h>
     65   1.2    simonb #include <string.h>
     66   1.2    simonb #include <unistd.h>
     67   1.1   thorpej 
     68   1.1   thorpej #include "volhdr.h"
     69   1.1   thorpej 
     70   1.1   thorpej #define LIF_NUMDIR	8
     71   1.1   thorpej 
     72   1.1   thorpej #define LIF_VOLSTART	0
     73   1.1   thorpej #define LIF_VOLSIZE	sizeof(struct lifvol)
     74   1.1   thorpej #define LIF_DIRSTART	512
     75   1.1   thorpej #define LIF_DIRSIZE	(LIF_NUMDIR * sizeof(struct lifdir))
     76   1.1   thorpej #define LIF_FILESTART	8192
     77   1.1   thorpej 
     78   1.1   thorpej #define btolifs(b)	(((b) + (SECTSIZE - 1)) / SECTSIZE)
     79   1.1   thorpej #define lifstob(s)	((s) * SECTSIZE)
     80   1.1   thorpej 
     81  1.17   tsutsui uint32_t loadpoint = ULONG_MAX;
     82   1.3  gmcgarry struct  load ld;
     83   1.2    simonb struct	lifvol lifv;
     84   1.2    simonb struct	lifdir lifd[LIF_NUMDIR];
     85  1.12  christos time_t repro_epoch = 0;
     86   1.2    simonb 
     87   1.2    simonb int	 main(int, char **);
     88   1.2    simonb void	 bcddate(char *, char *);
     89   1.2    simonb char	*lifname(char *);
     90   1.3  gmcgarry int	 putfile(char *, int);
     91   1.2    simonb void	 usage(void);
     92   1.1   thorpej 
     93  1.16  christos #ifndef __CTASSERT
     94  1.16  christos #define	__CTASSERT(X)
     95  1.16  christos #endif
     96  1.16  christos 
     97  1.15  christos #define CLEAR(a, b, c)	\
     98  1.15  christos __CTASSERT(sizeof(b) - 1 == c); \
     99  1.15  christos memcpy((a), (b), (c))
    100  1.15  christos 
    101   1.1   thorpej /*
    102   1.1   thorpej  * Old Format:
    103   1.1   thorpej  *	sector 0:	LIF volume header (40 bytes)
    104   1.1   thorpej  *	sector 1:	<unused>
    105   1.1   thorpej  *	sector 2:	LIF directory (8 x 32 == 256 bytes)
    106   1.1   thorpej  *	sector 3-:	LIF file 0, LIF file 1, etc.
    107   1.1   thorpej  * where sectors are 256 bytes.
    108   1.1   thorpej  *
    109   1.1   thorpej  * New Format:
    110   1.1   thorpej  *	sector 0:	LIF volume header (40 bytes)
    111   1.1   thorpej  *	sector 1:	<unused>
    112   1.1   thorpej  *	sector 2:	LIF directory (8 x 32 == 256 bytes)
    113   1.1   thorpej  *	sector 3:	<unused>
    114   1.1   thorpej  *	sector 4-31:	disklabel (~300 bytes right now)
    115   1.1   thorpej  *	sector 32-:	LIF file 0, LIF file 1, etc.
    116   1.1   thorpej  */
    117   1.2    simonb int
    118   1.2    simonb main(int argc, char **argv)
    119   1.1   thorpej {
    120   1.2    simonb 	char *n1, *n2, *n3;
    121  1.12  christos 	int n, to, ch;
    122   1.3  gmcgarry 	int count;
    123   1.2    simonb 
    124  1.12  christos 
    125  1.12  christos 	while ((ch = getopt(argc, argv, "l:t:")) != -1)
    126  1.12  christos 		switch (ch) {
    127  1.12  christos 		case 'l':
    128  1.17   tsutsui 			loadpoint = strtoul(optarg, NULL, 0);
    129  1.12  christos 			break;
    130  1.12  christos 		case 't':
    131  1.12  christos 			repro_epoch = (time_t)atoll(optarg);
    132  1.12  christos 			break;
    133  1.12  christos 		default:
    134   1.1   thorpej 			usage();
    135  1.12  christos 		}
    136  1.12  christos 
    137  1.12  christos 	argc -= optind;
    138  1.12  christos 	argv += optind;
    139  1.17   tsutsui 	if (loadpoint == ULONG_MAX || argc == 0)
    140   1.1   thorpej 		usage();
    141   1.2    simonb 	n1 = argv[0];
    142   1.2    simonb 	argv++;
    143   1.2    simonb 	argc--;
    144   1.2    simonb 	if (argc == 0)
    145   1.1   thorpej 		usage();
    146   1.2    simonb 	if (argc > 1) {
    147   1.2    simonb 		n2 = argv[0];
    148   1.2    simonb 		argv++;
    149   1.2    simonb 		argc--;
    150   1.2    simonb 		if (argc > 1) {
    151   1.2    simonb 			n3 = argv[0];
    152   1.2    simonb 			argv++;
    153   1.2    simonb 			argc--;
    154   1.1   thorpej 		} else
    155   1.2    simonb 			n3 = NULL;
    156   1.1   thorpej 	} else
    157   1.2    simonb 		n2 = n3 = NULL;
    158   1.3  gmcgarry 
    159  1.12  christos 	if ((to = open(argv[0], O_WRONLY | O_TRUNC | O_CREAT, 0644)) == -1)
    160  1.12  christos 		err(1, "Can't open `%s'", argv[0]);
    161   1.1   thorpej 	/* clear possibly unused directory entries */
    162  1.15  christos 	CLEAR(lifd[1].dir_name, "          ", sizeof(lifd[1].dir_name));
    163   1.3  gmcgarry 	lifd[1].dir_type = htobe16(-1);
    164   1.3  gmcgarry 	lifd[1].dir_addr = htobe32(0);
    165   1.3  gmcgarry 	lifd[1].dir_length = htobe32(0);
    166   1.3  gmcgarry 	lifd[1].dir_flag = htobe16(0xFF);
    167   1.3  gmcgarry 	lifd[1].dir_exec = htobe32(0);
    168   1.1   thorpej 	lifd[7] = lifd[6] = lifd[5] = lifd[4] = lifd[3] = lifd[2] = lifd[1];
    169   1.1   thorpej 	/* record volume info */
    170   1.3  gmcgarry 	lifv.vol_id = htobe16(VOL_ID);
    171  1.15  christos 	CLEAR(lifv.vol_label, "BOOT43", sizeof(lifv.vol_label));
    172   1.3  gmcgarry 	lifv.vol_addr = htobe32(btolifs(LIF_DIRSTART));
    173   1.3  gmcgarry 	lifv.vol_oct = htobe16(VOL_OCT);
    174   1.3  gmcgarry 	lifv.vol_dirsize = htobe32(btolifs(LIF_DIRSIZE));
    175   1.3  gmcgarry 	lifv.vol_version = htobe16(1);
    176   1.1   thorpej 	/* output bootfile one */
    177   1.2    simonb 	lseek(to, LIF_FILESTART, SEEK_SET);
    178   1.3  gmcgarry 	count = putfile(n1, to);
    179   1.3  gmcgarry 	n = btolifs(count);
    180   1.1   thorpej 	strcpy(lifd[0].dir_name, lifname(n1));
    181   1.3  gmcgarry 	lifd[0].dir_type = htobe16(DIR_TYPE);
    182   1.3  gmcgarry 	lifd[0].dir_addr = htobe32(btolifs(LIF_FILESTART));
    183   1.3  gmcgarry 	lifd[0].dir_length = htobe32(n);
    184   1.2    simonb 	bcddate(n1, lifd[0].dir_toc);
    185   1.3  gmcgarry 	lifd[0].dir_flag = htobe16(DIR_FLAG);
    186   1.3  gmcgarry 	lifd[0].dir_exec = htobe32(loadpoint);
    187   1.3  gmcgarry 	lifv.vol_length = htobe32(be32toh(lifd[0].dir_addr) +
    188   1.3  gmcgarry 				  be32toh(lifd[0].dir_length));
    189   1.1   thorpej 	/* if there is an optional second boot program, output it */
    190   1.2    simonb 	if (n2) {
    191   1.2    simonb 		lseek(to, LIF_FILESTART+lifstob(n), SEEK_SET);
    192   1.3  gmcgarry 		count = putfile(n2, to);
    193   1.3  gmcgarry 		n = btolifs(count);
    194   1.1   thorpej 		strcpy(lifd[1].dir_name, lifname(n2));
    195   1.3  gmcgarry 		lifd[1].dir_type = htobe16(DIR_TYPE);
    196   1.3  gmcgarry 		lifd[1].dir_addr = htobe32(lifv.vol_length);
    197   1.3  gmcgarry 		lifd[1].dir_length = htobe32(n);
    198   1.2    simonb 		bcddate(n2, lifd[1].dir_toc);
    199   1.6   tsutsui 		lifd[1].dir_flag = htobe16(DIR_FLAG);
    200   1.3  gmcgarry 		lifd[1].dir_exec = htobe32(loadpoint);
    201   1.3  gmcgarry 		lifv.vol_length = htobe32(be32toh(lifd[1].dir_addr) +
    202   1.3  gmcgarry 					  be32toh(lifd[1].dir_length));
    203   1.1   thorpej 	}
    204   1.1   thorpej 	/* ditto for three */
    205   1.2    simonb 	if (n3) {
    206   1.3  gmcgarry 		lseek(to, LIF_FILESTART+lifstob(lifd[0].dir_length+n),
    207   1.3  gmcgarry 		      SEEK_SET);
    208   1.3  gmcgarry 		count = putfile(n3, to);
    209   1.3  gmcgarry 		n = btolifs(count);
    210   1.1   thorpej 		strcpy(lifd[2].dir_name, lifname(n3));
    211   1.3  gmcgarry 		lifd[2].dir_type = htobe16(DIR_TYPE);
    212   1.3  gmcgarry 		lifd[2].dir_addr = htobe32(lifv.vol_length);
    213   1.3  gmcgarry 		lifd[2].dir_length = htobe32(n);
    214   1.2    simonb 		bcddate(n3, lifd[2].dir_toc);
    215   1.6   tsutsui 		lifd[2].dir_flag = htobe16(DIR_FLAG);
    216   1.3  gmcgarry 		lifd[2].dir_exec = htobe32(loadpoint);
    217   1.3  gmcgarry 		lifv.vol_length = htobe32(be32toh(lifd[2].dir_addr) +
    218   1.3  gmcgarry 					  be32toh(lifd[2].dir_length));
    219   1.1   thorpej 	}
    220   1.1   thorpej 	/* output volume/directory header info */
    221   1.2    simonb 	lseek(to, LIF_VOLSTART, SEEK_SET);
    222   1.1   thorpej 	write(to, &lifv, LIF_VOLSIZE);
    223   1.2    simonb 	lseek(to, LIF_DIRSTART, SEEK_SET);
    224   1.1   thorpej 	write(to, lifd, LIF_DIRSIZE);
    225  1.13  christos 	return EXIT_SUCCESS;
    226   1.1   thorpej }
    227   1.1   thorpej 
    228   1.3  gmcgarry int
    229   1.8   tsutsui putfile(char *from, int to)
    230   1.1   thorpej {
    231   1.2    simonb 	int fd;
    232   1.3  gmcgarry 	struct stat statb;
    233   1.3  gmcgarry 	void *bp;
    234   1.3  gmcgarry 
    235  1.13  christos 	if ((fd = open(from, 0)) < 0)
    236  1.13  christos 		err(EXIT_FAILURE, "Unable to open file `%s'", from);
    237   1.3  gmcgarry 	fstat(fd, &statb);
    238   1.3  gmcgarry 	ld.address = htobe32(loadpoint);
    239   1.3  gmcgarry 	ld.count = htobe32(statb.st_size);
    240  1.13  christos 	if ((bp = malloc(statb.st_size)) == NULL)
    241  1.13  christos 		err(EXIT_FAILURE, "Can't allocate buffer");
    242  1.13  christos 	if (read(fd, bp, statb.st_size) < 0)
    243  1.13  christos 		err(EXIT_FAILURE, "Error reading from file `%s'", from);
    244   1.2    simonb 	(void)close(fd);
    245   1.1   thorpej 	write(to, &ld, sizeof(ld));
    246   1.3  gmcgarry 	write(to, bp, statb.st_size);
    247   1.3  gmcgarry 	free(bp);
    248   1.3  gmcgarry 	return (statb.st_size + sizeof(ld));
    249   1.1   thorpej }
    250   1.1   thorpej 
    251   1.2    simonb void
    252   1.2    simonb usage(void)
    253   1.1   thorpej {
    254   1.2    simonb 
    255  1.13  christos 	fprintf(stderr, "Usage:	%s -l <loadpoint> [-t <timestamp>] prog1 "
    256  1.13  christos 	    "[ prog2 ] outfile\n", getprogname());
    257  1.13  christos 	exit(EXIT_FAILURE);
    258   1.1   thorpej }
    259   1.1   thorpej 
    260   1.1   thorpej char *
    261   1.2    simonb lifname(char *str)
    262   1.1   thorpej {
    263   1.1   thorpej 	static char lname[10] = "SYS_XXXXX";
    264   1.2    simonb 	char *cp;
    265   1.2    simonb 	int i;
    266   1.1   thorpej 
    267   1.2    simonb 	if ((cp = strrchr(str, '/')) != NULL)
    268   1.2    simonb 		str = ++cp;
    269   1.1   thorpej 	for (i = 4; i < 9; i++) {
    270  1.14  christos 		if (islower((unsigned char)*str))
    271  1.14  christos 			lname[i] = toupper((unsigned char)*str);
    272  1.14  christos 		else if (isalnum((unsigned char)*str) || *str == '_')
    273   1.1   thorpej 			lname[i] = *str;
    274   1.1   thorpej 		else
    275   1.1   thorpej 			break;
    276   1.1   thorpej 		str++;
    277   1.1   thorpej 	}
    278   1.1   thorpej 	for ( ; i < 10; i++)
    279   1.1   thorpej 		lname[i] = '\0';
    280   1.1   thorpej 	return(lname);
    281   1.1   thorpej }
    282   1.1   thorpej 
    283   1.2    simonb void
    284   1.2    simonb bcddate(char *name, char *toc)
    285   1.1   thorpej {
    286   1.1   thorpej 	struct stat statb;
    287   1.1   thorpej 	struct tm *tm;
    288   1.1   thorpej 
    289  1.14  christos 	if (repro_epoch)
    290  1.14  christos 		tm = gmtime(&repro_epoch);
    291  1.14  christos 	else {
    292  1.14  christos 		stat(name, &statb);
    293  1.14  christos 		tm = localtime(&statb.st_ctime);
    294  1.14  christos 	}
    295   1.1   thorpej 	*toc = ((tm->tm_mon+1) / 10) << 4;
    296   1.1   thorpej 	*toc++ |= (tm->tm_mon+1) % 10;
    297   1.1   thorpej 	*toc = (tm->tm_mday / 10) << 4;
    298   1.1   thorpej 	*toc++ |= tm->tm_mday % 10;
    299   1.1   thorpej 	*toc = (tm->tm_year / 10) << 4;
    300   1.1   thorpej 	*toc++ |= tm->tm_year % 10;
    301   1.1   thorpej 	*toc = (tm->tm_hour / 10) << 4;
    302   1.1   thorpej 	*toc++ |= tm->tm_hour % 10;
    303   1.1   thorpej 	*toc = (tm->tm_min / 10) << 4;
    304   1.1   thorpej 	*toc++ |= tm->tm_min % 10;
    305   1.1   thorpej 	*toc = (tm->tm_sec / 10) << 4;
    306   1.1   thorpej 	*toc |= tm->tm_sec % 10;
    307   1.1   thorpej }
    308