Home | History | Annotate | Line # | Download | only in makefs
      1  1.39   reinoud /*	$nEtBSD: makefs.h,v 1.38 2022/04/09 10:05:35 riastradh Exp $	*/
      2   1.1     lukem 
      3   1.1     lukem /*
      4   1.2     lukem  * Copyright (c) 2001 Wasabi Systems, Inc.
      5   1.1     lukem  * All rights reserved.
      6   1.1     lukem  *
      7   1.1     lukem  * Written by Luke Mewburn for Wasabi Systems, Inc.
      8   1.1     lukem  *
      9   1.1     lukem  * Redistribution and use in source and binary forms, with or without
     10   1.1     lukem  * modification, are permitted provided that the following conditions
     11   1.1     lukem  * are met:
     12   1.1     lukem  * 1. Redistributions of source code must retain the above copyright
     13   1.1     lukem  *    notice, this list of conditions and the following disclaimer.
     14   1.1     lukem  * 2. Redistributions in binary form must reproduce the above copyright
     15   1.1     lukem  *    notice, this list of conditions and the following disclaimer in the
     16   1.1     lukem  *    documentation and/or other materials provided with the distribution.
     17   1.1     lukem  * 3. All advertising materials mentioning features or use of this software
     18   1.1     lukem  *    must display the following acknowledgement:
     19   1.1     lukem  *      This product includes software developed for the NetBSD Project by
     20   1.1     lukem  *      Wasabi Systems, Inc.
     21   1.1     lukem  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22   1.1     lukem  *    or promote products derived from this software without specific prior
     23   1.1     lukem  *    written permission.
     24   1.1     lukem  *
     25   1.1     lukem  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26   1.1     lukem  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27   1.1     lukem  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28   1.1     lukem  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29   1.1     lukem  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30   1.1     lukem  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31   1.1     lukem  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32   1.1     lukem  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33   1.1     lukem  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34   1.1     lukem  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35   1.1     lukem  * POSSIBILITY OF SUCH DAMAGE.
     36   1.1     lukem  */
     37   1.1     lukem 
     38   1.5     lukem #ifndef	_MAKEFS_H
     39   1.5     lukem #define	_MAKEFS_H
     40   1.5     lukem 
     41  1.12     lukem #if HAVE_NBTOOL_CONFIG_H
     42  1.12     lukem #include "nbtool_config.h"
     43   1.7        tv #else
     44   1.7        tv #define HAVE_STRUCT_STAT_ST_FLAGS 1
     45   1.7        tv #define HAVE_STRUCT_STAT_ST_GEN 1
     46   1.7        tv #define HAVE_STRUCT_STAT_ST_MTIMENSEC 1
     47  1.40   reinoud #define HAVE_STRUCT_STATVFS_F_IOSIZE 1
     48  1.11      fvdl #define HAVE_STRUCT_STAT_BIRTHTIME 1
     49  1.15       jmc #define HAVE_FSTATVFS 1
     50   1.7        tv #endif
     51   1.7        tv 
     52  1.41  christos #include <stdio.h>
     53   1.1     lukem #include <sys/stat.h>
     54   1.7        tv #include <err.h>
     55   1.1     lukem 
     56   1.1     lukem /*
     57   1.4     lukem  * fsnode -
     58   1.4     lukem  *	a component of the tree; contains a filename, a pointer to
     59   1.4     lukem  *	fsinode, optional symlink name, and tree pointers
     60   1.4     lukem  *
     61  1.38  riastrad  * fsinode -
     62   1.4     lukem  *	equivalent to an inode, containing target file system inode number,
     63   1.4     lukem  *	refcount (nlink), and stat buffer
     64   1.1     lukem  *
     65   1.4     lukem  * A tree of fsnodes looks like this:
     66   1.1     lukem  *
     67   1.1     lukem  *	name	"."		"bin"		"netbsd"
     68   1.1     lukem  *	type	S_IFDIR		S_IFDIR		S_IFREG
     69   1.1     lukem  *	next 	  >		  >		NULL
     70   1.1     lukem  *	parent	NULL		NULL		NULL
     71   1.1     lukem  *	child	NULL		  v
     72   1.1     lukem  *
     73   1.1     lukem  *	name			"."		"ls"
     74   1.1     lukem  *	type			S_IFDIR		S_IFREG
     75   1.1     lukem  *	next			  >		NULL
     76   1.1     lukem  *	parent			  ^		^ (to "bin")
     77   1.1     lukem  *	child			NULL		NULL
     78   1.1     lukem  *
     79   1.1     lukem  * Notes:
     80   1.1     lukem  *	-   first always points to first entry, at current level, which
     81   1.1     lukem  *	    must be "." when the tree has been built; during build it may
     82   1.1     lukem  *	    not be if "." hasn't yet been found by readdir(2).
     83   1.1     lukem  */
     84   1.4     lukem 
     85   1.4     lukem enum fi_flags {
     86   1.4     lukem 	FI_SIZED =	1<<0,		/* inode sized */
     87   1.4     lukem 	FI_ALLOCATED =	1<<1,		/* fsinode->ino allocated */
     88   1.4     lukem 	FI_WRITTEN =	1<<2,		/* inode written */
     89   1.4     lukem };
     90   1.4     lukem 
     91   1.4     lukem typedef struct {
     92  1.42   reinoud 	uint64_t	 ino;		/* inode number used on target fs */
     93   1.4     lukem 	uint32_t	 nlink;		/* number of links to this entry */
     94   1.4     lukem 	enum fi_flags	 flags;		/* flags used by fs specific code */
     95   1.4     lukem 	struct stat	 st;		/* stat entry */
     96  1.35   reinoud 	void		*fsuse;		/* for storing FS dependent info */
     97  1.44  christos #if !HAVE_STRUCT_STAT_ST_FLAGS
     98  1.44  christos 	uint32_t	 st_flags;	/* stand-in for st.st_flags */
     99  1.44  christos #endif
    100   1.4     lukem } fsinode;
    101   1.4     lukem 
    102  1.44  christos #if HAVE_STRUCT_STAT_ST_FLAGS
    103  1.44  christos #define	FSINODE_ST_FLAGS(inode)	(inode).st.st_flags
    104  1.44  christos #else
    105  1.44  christos #define	FSINODE_ST_FLAGS(inode)	(inode).st_flags
    106  1.44  christos #endif
    107  1.44  christos 
    108   1.1     lukem typedef struct _fsnode {
    109   1.1     lukem 	struct _fsnode	*parent;	/* parent (NULL if root) */
    110   1.1     lukem 	struct _fsnode	*child;		/* child (if type == S_IFDIR) */
    111   1.1     lukem 	struct _fsnode	*next;		/* next */
    112   1.1     lukem 	struct _fsnode	*first;		/* first node of current level (".") */
    113   1.4     lukem 	uint32_t	 type;		/* type of entry */
    114   1.4     lukem 	fsinode		*inode;		/* actual inode data */
    115   1.1     lukem 	char		*symlink;	/* symlink target */
    116  1.24  christos 	const char	*root;		/* root path */
    117  1.24  christos 	char		*path;		/* directory name */
    118   1.1     lukem 	char		*name;		/* file name */
    119   1.9   thorpej 	int		flags;		/* misc flags */
    120   1.1     lukem } fsnode;
    121   1.1     lukem 
    122   1.9   thorpej #define	FSNODE_F_HASSPEC	0x01	/* fsnode has a spec entry */
    123   1.1     lukem 
    124   1.1     lukem /*
    125  1.30  christos  * option_t - contains option name, description, pointer to location to store
    126  1.30  christos  * result, and range checks for the result. Used to simplify fs specific
    127  1.30  christos  * option setting
    128  1.30  christos  */
    129  1.30  christos typedef enum {
    130  1.30  christos 	OPT_STRARRAY,
    131  1.30  christos 	OPT_STRPTR,
    132  1.31  christos 	OPT_STRBUF,
    133  1.30  christos 	OPT_BOOL,
    134  1.30  christos 	OPT_INT8,
    135  1.30  christos 	OPT_INT16,
    136  1.30  christos 	OPT_INT32,
    137  1.30  christos 	OPT_INT64
    138  1.30  christos } opttype_t;
    139  1.30  christos 
    140  1.30  christos typedef struct {
    141  1.30  christos 	char		letter;		/* option letter NUL for none */
    142  1.30  christos 	const char	*name;		/* option name */
    143  1.30  christos 	void		*value;		/* where to stuff the value */
    144  1.30  christos 	opttype_t	type;		/* type of entry */
    145  1.30  christos 	long long	minimum;	/* minimum for value */
    146  1.30  christos 	long long	maximum;	/* maximum for value */
    147  1.30  christos 	const char	*desc;		/* option description */
    148  1.30  christos } option_t;
    149  1.30  christos 
    150  1.30  christos /*
    151   1.1     lukem  * fsinfo_t - contains various settings and parameters pertaining to
    152   1.1     lukem  * the image, including current settings, global options, and fs
    153   1.1     lukem  * specific options
    154   1.1     lukem  */
    155  1.32  christos typedef struct makefs_fsinfo {
    156   1.1     lukem 		/* current settings */
    157   1.1     lukem 	off_t	size;		/* total size */
    158   1.1     lukem 	off_t	inodes;		/* number of inodes */
    159   1.1     lukem 	uint32_t curinode;	/* current inode */
    160   1.1     lukem 
    161   1.1     lukem 		/* image settings */
    162   1.1     lukem 	int	fd;		/* file descriptor of image */
    163   1.1     lukem 	void	*superblock;	/* superblock */
    164  1.10     lukem 	int	onlyspec;	/* only add entries in specfile */
    165   1.1     lukem 
    166   1.1     lukem 
    167   1.1     lukem 		/* global options */
    168   1.1     lukem 	off_t	minsize;	/* minimum size image should be */
    169   1.1     lukem 	off_t	maxsize;	/* maximum size image can be */
    170   1.1     lukem 	off_t	freefiles;	/* free file entries to leave */
    171  1.33  christos 	off_t	freeblocks;	/* free blocks to leave */
    172  1.33  christos 	off_t	offset;		/* offset from start of file */
    173   1.1     lukem 	int	freefilepc;	/* free file % */
    174   1.1     lukem 	int	freeblockpc;	/* free block % */
    175   1.1     lukem 	int	needswap;	/* non-zero if byte swapping needed */
    176   1.1     lukem 	int	sectorsize;	/* sector size */
    177  1.27       sjg 	int	sparse;		/* sparse image, don't fill it with zeros */
    178  1.34  christos 	int	replace;	/* replace files when merging */
    179  1.37    simonb 	int	follow;		/* follow symlinks */
    180   1.1     lukem 
    181  1.16       jmc 	void	*fs_specific;	/* File system specific additions. */
    182  1.30  christos 	option_t *fs_options;	/* File system specific options */
    183   1.1     lukem } fsinfo_t;
    184   1.1     lukem 
    185   1.1     lukem 
    186   1.1     lukem 
    187   1.1     lukem 
    188  1.19       dbj void		apply_specfile(const char *, const char *, fsnode *, int);
    189  1.24  christos void		dump_fsnodes(fsnode *);
    190   1.1     lukem const char *	inode_type(mode_t);
    191  1.31  christos int		set_option(const option_t *, const char *, char *, size_t);
    192  1.41  christos void		print_options(FILE *, const option_t *);
    193  1.31  christos int		set_option_var(const option_t *, const char *, const char *,
    194  1.31  christos     char *, size_t);
    195  1.37    simonb fsnode *	walk_dir(const char *, const char *, fsnode *, fsnode *, int,
    196  1.37    simonb     int);
    197  1.18       dbj void		free_fsnodes(fsnode *);
    198  1.30  christos option_t *	copy_opts(const option_t *);
    199   1.1     lukem 
    200  1.28  christos #define DECLARE_FUN(fs)							\
    201  1.28  christos void		fs ## _prep_opts(fsinfo_t *);				\
    202  1.28  christos int		fs ## _parse_opts(const char *, fsinfo_t *);		\
    203  1.28  christos void		fs ## _cleanup_opts(fsinfo_t *);			\
    204  1.28  christos void		fs ## _makefs(const char *, const char *, fsnode *, fsinfo_t *)
    205  1.28  christos 
    206  1.28  christos DECLARE_FUN(ffs);
    207  1.28  christos DECLARE_FUN(cd9660);
    208  1.28  christos DECLARE_FUN(chfs);
    209  1.28  christos DECLARE_FUN(v7fs);
    210  1.28  christos DECLARE_FUN(msdos);
    211  1.35   reinoud DECLARE_FUN(udf);
    212   1.1     lukem 
    213  1.14       jmc extern	u_int		debug;
    214   1.1     lukem extern	struct timespec	start_time;
    215  1.36  christos extern	struct stat stampst;
    216   1.9   thorpej 
    217   1.9   thorpej /*
    218   1.9   thorpej  * If -x is specified, we want to exclude nodes which do not appear
    219   1.9   thorpej  * in the spec file.
    220   1.9   thorpej  */
    221  1.10     lukem #define	FSNODE_EXCLUDE_P(opts, fsnode)	\
    222  1.10     lukem 	((opts)->onlyspec != 0 && ((fsnode)->flags & FSNODE_F_HASSPEC) == 0)
    223   1.1     lukem 
    224   1.1     lukem #define	DEBUG_TIME			0x00000001
    225   1.3     lukem 		/* debug bits 1..3 unused at this time */
    226   1.1     lukem #define	DEBUG_WALK_DIR			0x00000010
    227   1.1     lukem #define	DEBUG_WALK_DIR_NODE		0x00000020
    228   1.1     lukem #define	DEBUG_WALK_DIR_LINKCHECK	0x00000040
    229   1.1     lukem #define	DEBUG_DUMP_FSNODES		0x00000080
    230   1.1     lukem #define	DEBUG_DUMP_FSNODES_VERBOSE	0x00000100
    231   1.1     lukem #define	DEBUG_FS_PARSE_OPTS		0x00000200
    232   1.1     lukem #define	DEBUG_FS_MAKEFS			0x00000400
    233   1.1     lukem #define	DEBUG_FS_VALIDATE		0x00000800
    234   1.1     lukem #define	DEBUG_FS_CREATE_IMAGE		0x00001000
    235   1.1     lukem #define	DEBUG_FS_SIZE_DIR		0x00002000
    236   1.1     lukem #define	DEBUG_FS_SIZE_DIR_NODE		0x00004000
    237   1.1     lukem #define	DEBUG_FS_SIZE_DIR_ADD_DIRENT	0x00008000
    238   1.1     lukem #define	DEBUG_FS_POPULATE		0x00010000
    239   1.1     lukem #define	DEBUG_FS_POPULATE_DIRBUF	0x00020000
    240   1.1     lukem #define	DEBUG_FS_POPULATE_NODE		0x00040000
    241   1.1     lukem #define	DEBUG_FS_WRITE_FILE		0x00080000
    242   1.1     lukem #define	DEBUG_FS_WRITE_FILE_BLOCK	0x00100000
    243   1.1     lukem #define	DEBUG_FS_MAKE_DIRBUF		0x00200000
    244   1.1     lukem #define	DEBUG_FS_WRITE_INODE		0x00400000
    245   1.1     lukem #define	DEBUG_BUF_BREAD			0x00800000
    246   1.1     lukem #define	DEBUG_BUF_BWRITE		0x01000000
    247   1.1     lukem #define	DEBUG_BUF_GETBLK		0x02000000
    248   1.1     lukem #define	DEBUG_APPLY_SPECFILE		0x04000000
    249   1.1     lukem #define	DEBUG_APPLY_SPECENTRY		0x08000000
    250  1.19       dbj #define	DEBUG_APPLY_SPECONLY		0x10000000
    251   1.1     lukem 
    252  1.43  christos #define DEBUG_STRINGS \
    253  1.43  christos 	{ "time",	DEBUG_TIME }, \
    254  1.43  christos 	{ "walk_dir",	DEBUG_WALK_DIR }, \
    255  1.43  christos 	{ "walk_dir_node",	DEBUG_WALK_DIR_NODE }, \
    256  1.43  christos 	{ "walk_dir_linkcheck",	DEBUG_WALK_DIR_LINKCHECK }, \
    257  1.43  christos 	{ "dump_fsnodes",	DEBUG_DUMP_FSNODES }, \
    258  1.43  christos 	{ "dump_fsnodes_verbose",	DEBUG_DUMP_FSNODES_VERBOSE }, \
    259  1.43  christos 	{ "fs_parse_opts",	DEBUG_FS_PARSE_OPTS }, \
    260  1.43  christos 	{ "fs_makefs",	DEBUG_FS_MAKEFS }, \
    261  1.43  christos 	{ "fs_validate",	DEBUG_FS_VALIDATE }, \
    262  1.43  christos 	{ "fs_create_image",	DEBUG_FS_CREATE_IMAGE }, \
    263  1.43  christos 	{ "fs_size_dir",	DEBUG_FS_SIZE_DIR }, \
    264  1.43  christos 	{ "fs_size_dir_node",	DEBUG_FS_SIZE_DIR_NODE }, \
    265  1.43  christos 	{ "fs_size_dir_add_dirent",	DEBUG_FS_SIZE_DIR_ADD_DIRENT }, \
    266  1.43  christos 	{ "fs_populate",	DEBUG_FS_POPULATE }, \
    267  1.43  christos 	{ "fs_populate_dirbuf",	DEBUG_FS_POPULATE_DIRBUF }, \
    268  1.43  christos 	{ "fs_populate_node",	DEBUG_FS_POPULATE_NODE }, \
    269  1.43  christos 	{ "fs_write_file",	DEBUG_FS_WRITE_FILE }, \
    270  1.43  christos 	{ "fs_write_file_block",	DEBUG_FS_WRITE_FILE_BLOCK }, \
    271  1.43  christos 	{ "fs_make_dirbuf",	DEBUG_FS_MAKE_DIRBUF }, \
    272  1.43  christos 	{ "fs_write_inode",	DEBUG_FS_WRITE_INODE }, \
    273  1.43  christos 	{ "buf_bread",	DEBUG_BUF_BREAD }, \
    274  1.43  christos 	{ "buf_bwrite",	DEBUG_BUF_BWRITE }, \
    275  1.43  christos 	{ "buf_getblk",	DEBUG_BUF_GETBLK }, \
    276  1.43  christos 	{ "apply_specfile",	DEBUG_APPLY_SPECFILE }, \
    277  1.43  christos 	{ "apply_specentry",	DEBUG_APPLY_SPECENTRY }, \
    278  1.43  christos 	{ "apply_speconly",	DEBUG_APPLY_SPECONLY },
    279   1.1     lukem 
    280   1.1     lukem #define	TIMER_START(x)				\
    281   1.1     lukem 	if (debug & DEBUG_TIME)			\
    282   1.1     lukem 		gettimeofday(&(x), NULL)
    283   1.1     lukem 
    284   1.1     lukem #define	TIMER_RESULTS(x,d)				\
    285   1.1     lukem 	if (debug & DEBUG_TIME) {			\
    286   1.1     lukem 		struct timeval end, td;			\
    287   1.1     lukem 		gettimeofday(&end, NULL);		\
    288   1.1     lukem 		timersub(&end, &(x), &td);		\
    289  1.20  christos 		printf("%s took %lld.%06ld seconds\n",	\
    290  1.20  christos 		    (d), (long long)td.tv_sec,		\
    291  1.20  christos 		    (long)td.tv_usec);			\
    292   1.1     lukem 	}
    293   1.1     lukem 
    294   1.1     lukem 
    295   1.1     lukem #ifndef	DEFAULT_FSTYPE
    296   1.1     lukem #define	DEFAULT_FSTYPE	"ffs"
    297   1.1     lukem #endif
    298   1.5     lukem 
    299   1.5     lukem 
    300   1.5     lukem /*
    301   1.5     lukem  *	ffs specific settings
    302   1.5     lukem  *	---------------------
    303   1.5     lukem  */
    304   1.5     lukem 
    305   1.5     lukem #define	FFS_EI		/* for opposite endian support in ffs headers */
    306   1.5     lukem 
    307   1.5     lukem 
    308   1.5     lukem #endif	/* _MAKEFS_H */
    309