Home | History | Annotate | Line # | Download | only in makefs
udf.c revision 1.4
      1  1.4  reinoud /* $NetBSD: udf.c,v 1.4 2013/08/05 18:44:16 reinoud Exp $ */
      2  1.1  reinoud 
      3  1.1  reinoud /*
      4  1.1  reinoud  * Copyright (c) 2006, 2008, 2013 Reinoud Zandijk
      5  1.1  reinoud  * All rights reserved.
      6  1.1  reinoud  *
      7  1.1  reinoud  * Redistribution and use in source and binary forms, with or without
      8  1.1  reinoud  * modification, are permitted provided that the following conditions
      9  1.1  reinoud  * are met:
     10  1.1  reinoud  * 1. Redistributions of source code must retain the above copyright
     11  1.1  reinoud  *    notice, this list of conditions and the following disclaimer.
     12  1.1  reinoud  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  reinoud  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  reinoud  *    documentation and/or other materials provided with the distribution.
     15  1.1  reinoud  *
     16  1.1  reinoud  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17  1.1  reinoud  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18  1.1  reinoud  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19  1.1  reinoud  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20  1.1  reinoud  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     21  1.1  reinoud  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     22  1.1  reinoud  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     23  1.1  reinoud  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     24  1.1  reinoud  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     25  1.1  reinoud  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     26  1.1  reinoud  *
     27  1.1  reinoud  */
     28  1.3    joerg #if HAVE_NBTOOL_CONFIG_H
     29  1.3    joerg #include "nbtool_config.h"
     30  1.3    joerg #endif
     31  1.1  reinoud 
     32  1.1  reinoud #include <sys/cdefs.h>
     33  1.4  reinoud __RCSID("$NetBSD: udf.c,v 1.4 2013/08/05 18:44:16 reinoud Exp $");
     34  1.1  reinoud 
     35  1.1  reinoud #include <stdio.h>
     36  1.1  reinoud #include <stdlib.h>
     37  1.1  reinoud #include <string.h>
     38  1.1  reinoud #include <errno.h>
     39  1.1  reinoud #include <time.h>
     40  1.1  reinoud #include <assert.h>
     41  1.1  reinoud #include <err.h>
     42  1.1  reinoud #include <unistd.h>
     43  1.1  reinoud #include <fcntl.h>
     44  1.1  reinoud #include <sys/types.h>
     45  1.1  reinoud #include <sys/param.h>
     46  1.4  reinoud #include <sys/stat.h>
     47  1.4  reinoud #include <util.h>
     48  1.4  reinoud 
     49  1.3    joerg #if !HAVE_NBTOOL_CONFIG_H
     50  1.4  reinoud #define _EXPOSE_MMC
     51  1.1  reinoud #include <sys/cdio.h>
     52  1.4  reinoud #else
     53  1.4  reinoud #include "udf/cdio_mmc_structs.h"
     54  1.3    joerg #endif
     55  1.1  reinoud 
     56  1.1  reinoud #include "makefs.h"
     57  1.1  reinoud #include "udf_create.h"
     58  1.1  reinoud #include "udf_write.h"
     59  1.1  reinoud #include "newfs_udf.h"
     60  1.1  reinoud 
     61  1.1  reinoud 
     62  1.1  reinoud /*
     63  1.1  reinoud  * Note: due to the setup of the newfs code, the current state of the program
     64  1.1  reinoud  * and its options are helt in a few global variables. The FS specific parts
     65  1.1  reinoud  * are in a global `context' structure.
     66  1.1  reinoud  */
     67  1.1  reinoud 
     68  1.1  reinoud /* global variables describing disc and format requests */
     69  1.1  reinoud int	 fd;				/* device: file descriptor */
     70  1.1  reinoud char	*dev;				/* device: name		   */
     71  1.1  reinoud struct mmc_discinfo mmc_discinfo;	/* device: disc info	   */
     72  1.1  reinoud 
     73  1.1  reinoud char	*format_str;			/* format: string representation */
     74  1.1  reinoud int	 format_flags;			/* format: attribute flags	 */
     75  1.1  reinoud int	 media_accesstype;		/* derived from current mmc cap  */
     76  1.1  reinoud int	 check_surface;			/* for rewritables               */
     77  1.1  reinoud int	 imagefile_secsize;		/* for files			 */
     78  1.1  reinoud 
     79  1.1  reinoud int	 display_progressbar;
     80  1.1  reinoud 
     81  1.1  reinoud int	 wrtrack_skew;
     82  1.1  reinoud float	 meta_fract = (float) UDF_META_PERC / 100.0;
     83  1.1  reinoud 
     84  1.1  reinoud int	 mmc_profile;			/* emulated profile */
     85  1.1  reinoud int	 req_enable, req_disable;
     86  1.1  reinoud 
     87  1.1  reinoud 
     88  1.1  reinoud /* --------------------------------------------------------------------- */
     89  1.1  reinoud 
     90  1.1  reinoud int
     91  1.1  reinoud udf_write_sector(void *sector, uint32_t location)
     92  1.1  reinoud {
     93  1.1  reinoud 	uint64_t wpos;
     94  1.1  reinoud 	ssize_t ret;
     95  1.1  reinoud 
     96  1.1  reinoud 	wpos = (uint64_t) location * context.sector_size;
     97  1.1  reinoud 	ret = pwrite(fd, sector, context.sector_size, wpos);
     98  1.1  reinoud 	if (ret == -1)
     99  1.1  reinoud 		return errno;
    100  1.1  reinoud 	if (ret < context.sector_size)
    101  1.1  reinoud 		return EIO;
    102  1.1  reinoud 	return 0;
    103  1.1  reinoud }
    104  1.1  reinoud 
    105  1.1  reinoud 
    106  1.1  reinoud /* not implemented for files */
    107  1.1  reinoud int
    108  1.1  reinoud udf_surface_check(void)
    109  1.1  reinoud {
    110  1.1  reinoud 	return 0;
    111  1.1  reinoud }
    112  1.1  reinoud 
    113  1.1  reinoud 
    114  1.1  reinoud /*
    115  1.1  reinoud  * mmc_discinfo and mmc_trackinfo readers modified from origional in udf main
    116  1.1  reinoud  * code in sys/fs/udf/
    117  1.1  reinoud  */
    118  1.1  reinoud 
    119  1.1  reinoud #ifdef DEBUG
    120  1.1  reinoud static void
    121  1.1  reinoud udf_dump_discinfo(struct mmc_discinfo *di)
    122  1.1  reinoud {
    123  1.1  reinoud 	char bits[128];
    124  1.1  reinoud 
    125  1.1  reinoud 	printf("Device/media info  :\n");
    126  1.1  reinoud 	printf("\tMMC profile        0x%02x\n", di->mmc_profile);
    127  1.1  reinoud 	printf("\tderived class      %d\n", di->mmc_class);
    128  1.1  reinoud 	printf("\tsector size        %d\n", di->sector_size);
    129  1.1  reinoud 	printf("\tdisc state         %d\n", di->disc_state);
    130  1.1  reinoud 	printf("\tlast ses state     %d\n", di->last_session_state);
    131  1.1  reinoud 	printf("\tbg format state    %d\n", di->bg_format_state);
    132  1.1  reinoud 	printf("\tfrst track         %d\n", di->first_track);
    133  1.1  reinoud 	printf("\tfst on last ses    %d\n", di->first_track_last_session);
    134  1.1  reinoud 	printf("\tlst on last ses    %d\n", di->last_track_last_session);
    135  1.1  reinoud 	printf("\tlink block penalty %d\n", di->link_block_penalty);
    136  1.1  reinoud 	snprintb(bits, sizeof(bits), MMC_DFLAGS_FLAGBITS, (uint64_t) di->disc_flags);
    137  1.1  reinoud 	printf("\tdisc flags         %s\n", bits);
    138  1.1  reinoud 	printf("\tdisc id            %x\n", di->disc_id);
    139  1.1  reinoud 	printf("\tdisc barcode       %"PRIx64"\n", di->disc_barcode);
    140  1.1  reinoud 
    141  1.1  reinoud 	printf("\tnum sessions       %d\n", di->num_sessions);
    142  1.1  reinoud 	printf("\tnum tracks         %d\n", di->num_tracks);
    143  1.1  reinoud 
    144  1.1  reinoud 	snprintb(bits, sizeof(bits), MMC_CAP_FLAGBITS, di->mmc_cur);
    145  1.1  reinoud 	printf("\tcapabilities cur   %s\n", bits);
    146  1.1  reinoud 	snprintb(bits, sizeof(bits), MMC_CAP_FLAGBITS, di->mmc_cap);
    147  1.1  reinoud 	printf("\tcapabilities cap   %s\n", bits);
    148  1.1  reinoud 	printf("\n");
    149  1.1  reinoud 	printf("\tlast_possible_lba  %d\n", di->last_possible_lba);
    150  1.1  reinoud 	printf("\n");
    151  1.1  reinoud }
    152  1.1  reinoud #else
    153  1.1  reinoud #define udf_dump_discinfo(a);
    154  1.1  reinoud #endif
    155  1.1  reinoud 
    156  1.1  reinoud /* --------------------------------------------------------------------- */
    157  1.1  reinoud 
    158  1.1  reinoud static int
    159  1.1  reinoud udf_emulate_discinfo(fsinfo_t *fsopts, struct mmc_discinfo *di,
    160  1.1  reinoud 		int mmc_emuprofile)
    161  1.1  reinoud {
    162  1.1  reinoud 	off_t sectors;
    163  1.1  reinoud 
    164  1.2  reinoud 	memset(di, 0, sizeof(*di));
    165  1.1  reinoud 
    166  1.1  reinoud 	/* file support */
    167  1.1  reinoud 	if ((mmc_emuprofile != 0x01) && (fsopts->sectorsize != 2048))
    168  1.1  reinoud 		warnx("cd/dvd/bd sectorsize is not set to default 2048");
    169  1.1  reinoud 
    170  1.1  reinoud 	sectors = fsopts->size / fsopts->sectorsize;
    171  1.1  reinoud 
    172  1.1  reinoud 	/* commons */
    173  1.1  reinoud 	di->mmc_profile		= mmc_emuprofile;
    174  1.1  reinoud 	di->disc_state		= MMC_STATE_CLOSED;
    175  1.1  reinoud 	di->last_session_state	= MMC_STATE_CLOSED;
    176  1.1  reinoud 	di->bg_format_state	= MMC_BGFSTATE_COMPLETED;
    177  1.1  reinoud 	di->link_block_penalty	= 0;
    178  1.1  reinoud 
    179  1.1  reinoud 	di->disc_flags = MMC_DFLAGS_UNRESTRICTED;
    180  1.1  reinoud 
    181  1.1  reinoud 	di->last_possible_lba = sectors - 1;
    182  1.1  reinoud 	di->sector_size       = fsopts->sectorsize;
    183  1.1  reinoud 
    184  1.1  reinoud 	di->num_sessions = 1;
    185  1.1  reinoud 	di->num_tracks   = 1;
    186  1.1  reinoud 
    187  1.1  reinoud 	di->first_track  = 1;
    188  1.1  reinoud 	di->first_track_last_session = di->last_track_last_session = 1;
    189  1.1  reinoud 
    190  1.1  reinoud 	di->mmc_cur = MMC_CAP_RECORDABLE | MMC_CAP_ZEROLINKBLK;
    191  1.1  reinoud 	switch (mmc_emuprofile) {
    192  1.1  reinoud 	case 0x00:	/* unknown, treat as CDROM */
    193  1.1  reinoud 	case 0x08:	/* CDROM */
    194  1.1  reinoud 	case 0x10:	/* DVD-ROM */
    195  1.1  reinoud 		req_enable |= FORMAT_READONLY;
    196  1.1  reinoud 		/* FALLTROUGH */
    197  1.1  reinoud 	case 0x01:	/* disc */
    198  1.1  reinoud 		/* set up a disc info profile for partitions/files */
    199  1.1  reinoud 		di->mmc_class	= MMC_CLASS_DISC;
    200  1.1  reinoud 		di->mmc_cur    |= MMC_CAP_REWRITABLE | MMC_CAP_HW_DEFECTFREE;
    201  1.1  reinoud 		break;
    202  1.1  reinoud 	case 0x09:	/* CD-R */
    203  1.1  reinoud 		di->mmc_class	= MMC_CLASS_CD;
    204  1.1  reinoud 		di->mmc_cur    |= MMC_CAP_SEQUENTIAL;
    205  1.1  reinoud 		di->disc_state  = MMC_STATE_EMPTY;
    206  1.1  reinoud 		break;
    207  1.1  reinoud 	case 0x0a:	/* CD-RW + CD-MRW (regretably) */
    208  1.1  reinoud 		di->mmc_class	= MMC_CLASS_CD;
    209  1.1  reinoud 		di->mmc_cur    |= MMC_CAP_REWRITABLE;
    210  1.1  reinoud 		break;
    211  1.1  reinoud 	case 0x13:	/* DVD-RW */
    212  1.1  reinoud 		di->mmc_class	= MMC_CLASS_DVD;
    213  1.1  reinoud 		di->mmc_cur    |= MMC_CAP_REWRITABLE;
    214  1.1  reinoud 		break;
    215  1.1  reinoud 	case 0x11:	/* DVD-R */
    216  1.1  reinoud 	case 0x14:	/* DVD-RW sequential */
    217  1.1  reinoud 	case 0x1b:	/* DVD+R */
    218  1.1  reinoud 	case 0x2b:	/* DVD+R DL */
    219  1.1  reinoud 	case 0x51:	/* HD DVD-R */
    220  1.1  reinoud 		di->mmc_class	= MMC_CLASS_DVD;
    221  1.1  reinoud 		di->mmc_cur    |= MMC_CAP_SEQUENTIAL;
    222  1.1  reinoud 		di->disc_state  = MMC_STATE_EMPTY;
    223  1.1  reinoud 		break;
    224  1.1  reinoud 	case 0x41:	/* BD-R */
    225  1.1  reinoud 		di->mmc_class   = MMC_CLASS_BD;
    226  1.1  reinoud 		di->mmc_cur    |= MMC_CAP_SEQUENTIAL | MMC_CAP_HW_DEFECTFREE;
    227  1.1  reinoud 		di->disc_state  = MMC_STATE_EMPTY;
    228  1.1  reinoud 		break;
    229  1.1  reinoud 	case 0x43:	/* BD-RE */
    230  1.1  reinoud 		di->mmc_class   = MMC_CLASS_BD;
    231  1.1  reinoud 		di->mmc_cur    |= MMC_CAP_REWRITABLE | MMC_CAP_HW_DEFECTFREE;
    232  1.1  reinoud 		break;
    233  1.1  reinoud 	default:
    234  1.1  reinoud 		err(EINVAL, "makefs_udf: unknown or unimplemented device type");
    235  1.1  reinoud 		return EINVAL;
    236  1.1  reinoud 	}
    237  1.1  reinoud 	di->mmc_cap    = di->mmc_cur;
    238  1.1  reinoud 
    239  1.1  reinoud 	udf_dump_discinfo(di);
    240  1.1  reinoud 	return 0;
    241  1.1  reinoud }
    242  1.1  reinoud 
    243  1.1  reinoud 
    244  1.1  reinoud int
    245  1.1  reinoud udf_update_trackinfo(struct mmc_discinfo *di, struct mmc_trackinfo *ti)
    246  1.1  reinoud {
    247  1.1  reinoud 	/* discs partition support */
    248  1.1  reinoud 	if (ti->tracknr != 1)
    249  1.1  reinoud 		return EIO;
    250  1.1  reinoud 
    251  1.1  reinoud 	/* create fake ti */
    252  1.1  reinoud 	ti->sessionnr  = 1;
    253  1.1  reinoud 
    254  1.1  reinoud 	ti->track_mode = 0;	/* XXX */
    255  1.1  reinoud 	ti->data_mode  = 0;	/* XXX */
    256  1.1  reinoud 	ti->flags = MMC_TRACKINFO_LRA_VALID | MMC_TRACKINFO_NWA_VALID;
    257  1.1  reinoud 
    258  1.1  reinoud 	ti->track_start    = 0;
    259  1.1  reinoud 	ti->packet_size    = 32;	/* take sensible default */
    260  1.1  reinoud 
    261  1.1  reinoud 	ti->track_size    = di->last_possible_lba;
    262  1.1  reinoud 	ti->next_writable = di->last_possible_lba;
    263  1.1  reinoud 	ti->last_recorded = ti->next_writable;
    264  1.1  reinoud 	ti->free_blocks   = 0;
    265  1.1  reinoud 
    266  1.1  reinoud 	return 0;
    267  1.1  reinoud }
    268  1.1  reinoud 
    269  1.1  reinoud #define OPT_STR(letter, name, desc)  \
    270  1.1  reinoud 	{ letter, name, NULL, OPT_STRBUF, 0, 0, desc }
    271  1.1  reinoud 
    272  1.1  reinoud #define OPT_NUM(letter, name, field, min, max, desc) \
    273  1.1  reinoud 	{ letter, name, &diskStructure->field, \
    274  1.1  reinoud 	  sizeof(diskStructure->field) == 8 ? OPT_INT64 : \
    275  1.1  reinoud 	  (sizeof(diskStructure->field) == 4 ? OPT_INT32 : \
    276  1.1  reinoud 	  (sizeof(diskStructure->field) == 2 ? OPT_INT16 : OPT_INT8)), \
    277  1.1  reinoud 	  min, max, desc }
    278  1.1  reinoud 
    279  1.1  reinoud #define OPT_BOOL(letter, name, field, desc) \
    280  1.1  reinoud 	OPT_NUM(letter, name, field, 0, 1, desc)
    281  1.1  reinoud 
    282  1.1  reinoud void
    283  1.1  reinoud udf_prep_opts(fsinfo_t *fsopts)
    284  1.1  reinoud {
    285  1.1  reinoud 	struct tm *tm;
    286  1.1  reinoud 	time_t now;
    287  1.1  reinoud 
    288  1.1  reinoud 	const option_t udf_options[] = {
    289  1.1  reinoud 		OPT_STR('T', "disctype", "disc type (cdrom,dvdrom,dvdram,bdre,disk,cdr,dvdr,cdrw,dvdrw)"),
    290  1.1  reinoud //		{ 'P', "progress", &display_progressbar, OPT_INT32, false, true,
    291  1.1  reinoud //		  "display progress bar" },
    292  1.1  reinoud 		{ .name = NULL }
    293  1.1  reinoud 	};
    294  1.1  reinoud 
    295  1.1  reinoud 	/* initialise */
    296  1.1  reinoud 	format_str    = strdup("");
    297  1.1  reinoud 	req_enable    = req_disable = 0;
    298  1.1  reinoud 	format_flags  = FORMAT_INVALID;
    299  1.1  reinoud 	fsopts->sectorsize = 512;	/* minimum allowed sector size */
    300  1.1  reinoud 
    301  1.1  reinoud 	srandom((unsigned long) time(NULL));
    302  1.1  reinoud 
    303  1.1  reinoud 	mmc_profile = 0x01;		/* 'disc'/file */
    304  1.1  reinoud 
    305  1.1  reinoud 	udf_init_create_context();
    306  1.1  reinoud 	context.app_name  = APP_NAME;
    307  1.1  reinoud 	context.impl_name = IMPL_NAME;
    308  1.1  reinoud 	context.app_version_main = APP_VERSION_MAIN;
    309  1.1  reinoud 	context.app_version_sub  = APP_VERSION_SUB;
    310  1.1  reinoud 
    311  1.1  reinoud 	/* minimum and maximum UDF versions we advise */
    312  1.1  reinoud 	context.min_udf = 0x102;
    313  1.1  reinoud 	context.max_udf = 0x201;
    314  1.1  reinoud 
    315  1.1  reinoud 	/* use user's time zone as default */
    316  1.1  reinoud 	(void)time(&now);
    317  1.1  reinoud 	tm = localtime(&now);
    318  1.1  reinoud 	context.gmtoff = tm->tm_gmtoff;
    319  1.1  reinoud 
    320  1.1  reinoud 	/* return info */
    321  1.1  reinoud 	fsopts->fs_specific = NULL;
    322  1.1  reinoud 	fsopts->fs_options = copy_opts(udf_options);
    323  1.1  reinoud }
    324  1.1  reinoud 
    325  1.1  reinoud 
    326  1.1  reinoud void
    327  1.1  reinoud udf_cleanup_opts(fsinfo_t *fsopts)
    328  1.1  reinoud {
    329  1.1  reinoud 	free(fsopts->fs_options);
    330  1.1  reinoud }
    331  1.1  reinoud 
    332  1.1  reinoud 
    333  1.1  reinoud int
    334  1.1  reinoud udf_parse_opts(const char *option, fsinfo_t *fsopts)
    335  1.1  reinoud {
    336  1.1  reinoud 	option_t *udf_options = fsopts->fs_options;
    337  1.1  reinoud 	const char *name, *desc;
    338  1.1  reinoud 	char buf[1024];
    339  1.1  reinoud 	int i;
    340  1.1  reinoud 
    341  1.1  reinoud 	assert(option != NULL);
    342  1.1  reinoud 
    343  1.1  reinoud 	if (debug & DEBUG_FS_PARSE_OPTS)
    344  1.1  reinoud 		printf("udf_parse_opts: got `%s'\n", option);
    345  1.1  reinoud 
    346  1.1  reinoud 	i = set_option(udf_options, option, buf, sizeof(buf));
    347  1.1  reinoud 	if (i == -1)
    348  1.1  reinoud 		return 0;
    349  1.1  reinoud 
    350  1.1  reinoud 	if (udf_options[i].name == NULL)
    351  1.1  reinoud 		abort();
    352  1.1  reinoud 
    353  1.1  reinoud 	name = udf_options[i].name;
    354  1.1  reinoud 	desc = udf_options[i].desc;
    355  1.1  reinoud 	switch (udf_options[i].letter) {
    356  1.1  reinoud 	case 'T':
    357  1.1  reinoud 		if (strcmp(buf, "cdrom") == 0) {
    358  1.1  reinoud 			mmc_profile = 0x00;
    359  1.1  reinoud 		} else if (strcmp(buf, "dvdrom") == 0) {
    360  1.1  reinoud 			mmc_profile = 0x10;
    361  1.1  reinoud 		} else if (strcmp(buf, "dvdram") == 0) {
    362  1.1  reinoud 			mmc_profile = 0x12;
    363  1.1  reinoud 		} else if (strcmp(buf, "bdre") == 0) {
    364  1.1  reinoud 			mmc_profile = 0x43;
    365  1.1  reinoud 		} else if (strcmp(buf, "disk") == 0) {
    366  1.1  reinoud 			mmc_profile = 0x01;
    367  1.1  reinoud 		} else if (strcmp(buf, "cdr") == 0) {
    368  1.1  reinoud 			mmc_profile = 0x09;
    369  1.1  reinoud 		} else if (strcmp(buf, "dvdr") == 0) {
    370  1.1  reinoud 			mmc_profile = 0x1b;
    371  1.1  reinoud 		} else if (strcmp(buf, "cdrw") == 0) {
    372  1.1  reinoud 			mmc_profile = 0x0a;
    373  1.1  reinoud 		} else if (strcmp(buf, "dvdrw") == 0) {
    374  1.1  reinoud 			mmc_profile = 0x13;
    375  1.1  reinoud 		} else {
    376  1.1  reinoud 			errx(EINVAL, "Unknown or unimplemented disc format");
    377  1.1  reinoud 			return 0;
    378  1.1  reinoud 		}
    379  1.1  reinoud 	}
    380  1.1  reinoud 	return 1;
    381  1.1  reinoud }
    382  1.1  reinoud 
    383  1.1  reinoud /* --------------------------------------------------------------------- */
    384  1.1  reinoud 
    385  1.1  reinoud struct udf_stats {
    386  1.1  reinoud 	uint32_t nfiles;
    387  1.1  reinoud 	uint32_t ndirs;
    388  1.1  reinoud 	uint32_t ndescr;
    389  1.1  reinoud 	uint32_t nmetadatablocks;
    390  1.1  reinoud 	uint32_t ndatablocks;
    391  1.1  reinoud };
    392  1.1  reinoud 
    393  1.1  reinoud 
    394  1.1  reinoud /* node reference administration */
    395  1.1  reinoud static void
    396  1.1  reinoud udf_inc_link(union dscrptr *dscr)
    397  1.1  reinoud {
    398  1.1  reinoud 	struct file_entry *fe;
    399  1.1  reinoud 	struct extfile_entry *efe;
    400  1.1  reinoud 
    401  1.1  reinoud 	if (udf_rw16(dscr->tag.id) == TAGID_FENTRY) {
    402  1.1  reinoud 		fe        = &dscr->fe;
    403  1.1  reinoud 		fe->link_cnt = udf_rw16(udf_rw16(fe->link_cnt) + 1);
    404  1.1  reinoud 	} else if (udf_rw16(dscr->tag.id) == TAGID_EXTFENTRY) {
    405  1.1  reinoud 		efe       = &dscr->efe;
    406  1.1  reinoud 		efe->link_cnt = udf_rw16(udf_rw16(efe->link_cnt) + 1);
    407  1.1  reinoud 	} else {
    408  1.1  reinoud 		errx(1, "Bad tag passed to udf_inc_link");
    409  1.1  reinoud 	}
    410  1.1  reinoud }
    411  1.1  reinoud 
    412  1.1  reinoud 
    413  1.1  reinoud static void
    414  1.1  reinoud udf_set_link_cnt(union dscrptr *dscr, int num)
    415  1.1  reinoud {
    416  1.1  reinoud 	struct file_entry *fe;
    417  1.1  reinoud 	struct extfile_entry *efe;
    418  1.1  reinoud 
    419  1.1  reinoud 	if (udf_rw16(dscr->tag.id) == TAGID_FENTRY) {
    420  1.1  reinoud 		fe        = &dscr->fe;
    421  1.1  reinoud 		fe->link_cnt = udf_rw16(num);
    422  1.1  reinoud 	} else if (udf_rw16(dscr->tag.id) == TAGID_EXTFENTRY) {
    423  1.1  reinoud 		efe       = &dscr->efe;
    424  1.1  reinoud 		efe->link_cnt = udf_rw16(num);
    425  1.1  reinoud 	} else {
    426  1.1  reinoud 		errx(1, "Bad tag passed to udf_set_link_cnt");
    427  1.1  reinoud 	}
    428  1.1  reinoud }
    429  1.1  reinoud 
    430  1.1  reinoud 
    431  1.1  reinoud static uint32_t
    432  1.1  reinoud udf_datablocks(off_t sz)
    433  1.1  reinoud {
    434  1.1  reinoud 	/* predictor if it can be written inside the node */
    435  1.1  reinoud 	if (sz < context.sector_size - UDF_EXTFENTRY_SIZE - 16)
    436  1.1  reinoud 		return 0;
    437  1.1  reinoud 
    438  1.1  reinoud 	return UDF_ROUNDUP(sz, context.sector_size) / context.sector_size;
    439  1.1  reinoud }
    440  1.1  reinoud 
    441  1.1  reinoud 
    442  1.1  reinoud static void
    443  1.1  reinoud udf_prepare_fids(struct long_ad *dir_icb, struct long_ad *dirdata_icb,
    444  1.1  reinoud 		uint8_t *dirdata, uint32_t dirdata_size)
    445  1.1  reinoud {
    446  1.1  reinoud 	struct fileid_desc *fid;
    447  1.1  reinoud 	struct long_ad     *icb;
    448  1.1  reinoud 	uint32_t fidsize, offset;
    449  1.1  reinoud 	uint32_t location;
    450  1.1  reinoud 
    451  1.1  reinoud 	if (udf_datablocks(dirdata_size) == 0) {
    452  1.1  reinoud 		/* going internal */
    453  1.1  reinoud 		icb = dir_icb;
    454  1.1  reinoud 	} else {
    455  1.1  reinoud 		/* external blocks to write to */
    456  1.1  reinoud 		icb = dirdata_icb;
    457  1.1  reinoud 	}
    458  1.1  reinoud 
    459  1.1  reinoud 	for (offset = 0; offset < dirdata_size; offset += fidsize) {
    460  1.1  reinoud 		/* for each FID: */
    461  1.1  reinoud 		fid = (struct fileid_desc *) (dirdata + offset);
    462  1.1  reinoud 		assert(udf_rw16(fid->tag.id) == TAGID_FID);
    463  1.1  reinoud 
    464  1.1  reinoud 		location  = udf_rw32(icb->loc.lb_num);
    465  1.1  reinoud 		location += offset / context.sector_size;
    466  1.1  reinoud 
    467  1.1  reinoud 		fid->tag.tag_loc = udf_rw32(location);
    468  1.1  reinoud 		udf_validate_tag_and_crc_sums((union dscrptr *) fid);
    469  1.1  reinoud 
    470  1.1  reinoud 		fidsize = udf_fidsize(fid);
    471  1.1  reinoud 	}
    472  1.1  reinoud }
    473  1.1  reinoud 
    474  1.1  reinoud static int
    475  1.1  reinoud udf_file_inject_blob(union dscrptr *dscr,  uint8_t *blob, size_t size)
    476  1.1  reinoud {
    477  1.1  reinoud 	struct icb_tag *icb;
    478  1.1  reinoud 	struct file_entry *fe;
    479  1.1  reinoud 	struct extfile_entry *efe;
    480  1.1  reinoud 	uint64_t inf_len, obj_size;
    481  1.1  reinoud 	uint32_t l_ea, l_ad;
    482  1.1  reinoud 	uint32_t free_space, desc_size;
    483  1.1  reinoud 	uint16_t crclen;
    484  1.1  reinoud 	uint8_t *data, *pos;
    485  1.1  reinoud 
    486  1.1  reinoud 	fe = NULL;
    487  1.1  reinoud 	efe = NULL;
    488  1.1  reinoud 	if (udf_rw16(dscr->tag.id) == TAGID_FENTRY) {
    489  1.1  reinoud 		fe        = &dscr->fe;
    490  1.1  reinoud 		data      = fe->data;
    491  1.1  reinoud 		l_ea      = udf_rw32(fe->l_ea);
    492  1.1  reinoud 		l_ad      = udf_rw32(fe->l_ad);
    493  1.1  reinoud 		icb       = &fe->icbtag;
    494  1.1  reinoud 		inf_len   = udf_rw64(fe->inf_len);
    495  1.1  reinoud 		obj_size  = 0;
    496  1.1  reinoud 		desc_size = sizeof(struct file_entry);
    497  1.1  reinoud 	} else if (udf_rw16(dscr->tag.id) == TAGID_EXTFENTRY) {
    498  1.1  reinoud 		efe       = &dscr->efe;
    499  1.1  reinoud 		data      = efe->data;
    500  1.1  reinoud 		l_ea      = udf_rw32(efe->l_ea);
    501  1.1  reinoud 		l_ad      = udf_rw32(efe->l_ad);
    502  1.1  reinoud 		icb       = &efe->icbtag;
    503  1.1  reinoud 		inf_len   = udf_rw64(efe->inf_len);
    504  1.1  reinoud 		obj_size  = udf_rw64(efe->obj_size);
    505  1.1  reinoud 		desc_size = sizeof(struct extfile_entry);
    506  1.1  reinoud 	} else {
    507  1.1  reinoud 		errx(1, "Bad tag passed to udf_file_inject_blob");
    508  1.1  reinoud 	}
    509  1.1  reinoud 	crclen = udf_rw16(dscr->tag.desc_crc_len);
    510  1.1  reinoud 
    511  1.1  reinoud 	/* calculate free space */
    512  1.1  reinoud 	free_space = context.sector_size - (l_ea + l_ad) - desc_size;
    513  1.1  reinoud 	if (udf_datablocks(size)) {
    514  1.1  reinoud 		assert(free_space < size);
    515  1.1  reinoud 		return 1;
    516  1.1  reinoud 	}
    517  1.1  reinoud 
    518  1.1  reinoud 	/* going internal */
    519  1.1  reinoud 	assert(l_ad == 0);
    520  1.1  reinoud 	assert(udf_rw16(icb->flags) == UDF_ICB_INTERN_ALLOC);
    521  1.1  reinoud 
    522  1.1  reinoud 	// assert(free_space >= size);
    523  1.1  reinoud 	pos = data + l_ea + l_ad;
    524  1.1  reinoud 	memcpy(pos, blob, size);
    525  1.1  reinoud 	l_ad   += size;
    526  1.1  reinoud 	crclen += size;
    527  1.1  reinoud 
    528  1.1  reinoud 	inf_len  += size;
    529  1.1  reinoud 	obj_size += size;
    530  1.1  reinoud 
    531  1.1  reinoud 	if (fe) {
    532  1.1  reinoud 		fe->l_ad = udf_rw32(l_ad);
    533  1.1  reinoud 		fe->inf_len = udf_rw64(inf_len);
    534  1.1  reinoud 	} else if (efe) {
    535  1.1  reinoud 		efe->l_ad = udf_rw32(l_ad);
    536  1.1  reinoud 		efe->inf_len  = udf_rw64(inf_len);
    537  1.1  reinoud 		efe->obj_size = udf_rw64(inf_len);
    538  1.1  reinoud 	}
    539  1.1  reinoud 
    540  1.1  reinoud 	/* make sure the header sums stays correct */
    541  1.1  reinoud 	dscr->tag.desc_crc_len = udf_rw16(crclen);
    542  1.1  reinoud 	udf_validate_tag_and_crc_sums(dscr);
    543  1.1  reinoud 
    544  1.1  reinoud 	return 0;
    545  1.1  reinoud }
    546  1.1  reinoud 
    547  1.1  reinoud 
    548  1.1  reinoud /* XXX no sparse file support */
    549  1.1  reinoud static void
    550  1.1  reinoud udf_append_file_mapping(union dscrptr *dscr, struct long_ad *piece)
    551  1.1  reinoud {
    552  1.1  reinoud 	struct icb_tag *icb;
    553  1.1  reinoud 	struct file_entry *fe;
    554  1.1  reinoud 	struct extfile_entry *efe;
    555  1.1  reinoud 	struct long_ad *last_long, last_piece;
    556  1.1  reinoud 	struct short_ad *last_short, new_short;
    557  1.1  reinoud 	uint64_t inf_len, obj_size, logblks_rec;
    558  1.1  reinoud 	uint32_t l_ea, l_ad, size;
    559  1.1  reinoud 	uint32_t last_lb_num, piece_lb_num;
    560  1.1  reinoud 	uint32_t last_len, piece_len, last_flags;
    561  1.1  reinoud 	uint32_t rest_len, merge_len, last_end;
    562  1.1  reinoud 	uint16_t last_part_num, piece_part_num;
    563  1.1  reinoud 	uint16_t crclen, cur_alloc;
    564  1.1  reinoud 	uint8_t *data, *pos;
    565  1.1  reinoud 	const int short_len = sizeof(struct short_ad);
    566  1.1  reinoud 	const int long_len  = sizeof(struct long_ad);
    567  1.1  reinoud 	const int sector_size = context.sector_size;
    568  1.1  reinoud 	const int use_shorts = (context.data_part == context.metadata_part);
    569  1.1  reinoud 	uint64_t max_len = UDF_ROUNDDOWN(UDF_EXT_MAXLEN, sector_size);
    570  1.1  reinoud 
    571  1.1  reinoud 	if (udf_rw16(dscr->tag.id) == TAGID_FENTRY) {
    572  1.1  reinoud 		fe          = &dscr->fe;
    573  1.1  reinoud 		data        =    fe->data;
    574  1.1  reinoud 		l_ea        = fe->l_ea;
    575  1.1  reinoud 		l_ad        = udf_rw32(fe->l_ad);
    576  1.1  reinoud 		icb         = &fe->icbtag;
    577  1.1  reinoud 		inf_len     = udf_rw64(fe->inf_len);
    578  1.1  reinoud 		logblks_rec = udf_rw64(fe->logblks_rec);
    579  1.1  reinoud 		obj_size = 0;
    580  1.1  reinoud 	} else if (udf_rw16(dscr->tag.id) == TAGID_EXTFENTRY) {
    581  1.1  reinoud 		efe         = &dscr->efe;
    582  1.1  reinoud 		data        = efe->data;
    583  1.1  reinoud 		l_ea        = efe->l_ea;
    584  1.1  reinoud 		l_ad        = udf_rw32(efe->l_ad);
    585  1.1  reinoud 		icb         = &efe->icbtag;
    586  1.1  reinoud 		inf_len     = udf_rw64(efe->inf_len);
    587  1.1  reinoud 		obj_size    = udf_rw64(efe->obj_size);
    588  1.1  reinoud 		logblks_rec = udf_rw64(efe->logblks_rec);
    589  1.1  reinoud 	} else {
    590  1.1  reinoud 		errx(1, "Bad tag passed to udf_file_append_blob");
    591  1.1  reinoud 	}
    592  1.1  reinoud 	crclen = udf_rw16(dscr->tag.desc_crc_len);
    593  1.1  reinoud 
    594  1.1  reinoud 	pos = data + l_ea;
    595  1.1  reinoud 	cur_alloc = udf_rw16(icb->flags);
    596  1.1  reinoud 	size = UDF_EXT_LEN(udf_rw32(piece->len));
    597  1.1  reinoud 
    598  1.1  reinoud 	/* extract last entry as a long_ad */
    599  1.2  reinoud 	memset(&last_piece, 0, sizeof(last_piece));
    600  1.2  reinoud 	last_len      = 0;
    601  1.2  reinoud 	last_lb_num   = 0;
    602  1.2  reinoud 	last_part_num = 0;
    603  1.1  reinoud 	if (l_ad != 0) {
    604  1.1  reinoud 		if (use_shorts) {
    605  1.1  reinoud 			assert(cur_alloc == UDF_ICB_SHORT_ALLOC);
    606  1.1  reinoud 			pos += l_ad - short_len;
    607  1.1  reinoud 			last_short   = (struct short_ad *) pos;
    608  1.1  reinoud 			last_lb_num  = udf_rw32(last_short->lb_num);
    609  1.1  reinoud 			last_part_num = udf_rw16(piece->loc.part_num);
    610  1.1  reinoud 			last_len     = UDF_EXT_LEN(udf_rw32(last_short->len));
    611  1.1  reinoud 			last_flags   = UDF_EXT_FLAGS(udf_rw32(last_short->len));
    612  1.1  reinoud 		} else {
    613  1.1  reinoud 			assert(cur_alloc == UDF_ICB_LONG_ALLOC);
    614  1.1  reinoud 			pos += l_ad - long_len;
    615  1.1  reinoud 			last_long    = (struct long_ad *) pos;
    616  1.1  reinoud 			last_lb_num  = udf_rw32(last_long->loc.lb_num);
    617  1.1  reinoud 			last_part_num = udf_rw16(last_long->loc.part_num);
    618  1.1  reinoud 			last_len     = UDF_EXT_LEN(udf_rw32(last_long->len));
    619  1.1  reinoud 			last_flags   = UDF_EXT_FLAGS(udf_rw32(last_long->len));
    620  1.1  reinoud 		}
    621  1.1  reinoud 	}
    622  1.1  reinoud 
    623  1.1  reinoud 	piece_len      = UDF_EXT_LEN(udf_rw32(piece->len));
    624  1.1  reinoud 	piece_lb_num   = udf_rw32(piece->loc.lb_num);
    625  1.1  reinoud 	piece_part_num = udf_rw16(piece->loc.part_num);
    626  1.1  reinoud 
    627  1.1  reinoud 	/* try merging */
    628  1.1  reinoud 	rest_len  = max_len - last_len;
    629  1.1  reinoud 
    630  1.1  reinoud 	merge_len = MIN(udf_rw32(piece->len), rest_len);
    631  1.1  reinoud 	last_end  = last_lb_num + (last_len / sector_size);
    632  1.1  reinoud 
    633  1.1  reinoud 	if ((piece_lb_num == last_end) && (last_part_num == piece_part_num)) {
    634  1.1  reinoud 		/* we can merge */
    635  1.1  reinoud 		last_len  += merge_len;
    636  1.1  reinoud 		piece_len -= merge_len;
    637  1.1  reinoud 
    638  1.1  reinoud 		/* write back merge result */
    639  1.1  reinoud 		if (use_shorts) {
    640  1.1  reinoud 			last_short->len = udf_rw32(last_len | last_flags);
    641  1.1  reinoud 		} else {
    642  1.1  reinoud 			last_long->len  = udf_rw32(last_len | last_flags);
    643  1.1  reinoud 		}
    644  1.1  reinoud 		piece_lb_num += merge_len / sector_size;
    645  1.1  reinoud 	}
    646  1.1  reinoud 
    647  1.1  reinoud 	if (piece_len) {
    648  1.1  reinoud 		/* append new entry */
    649  1.1  reinoud 		pos = data + l_ea + l_ad;
    650  1.1  reinoud 		if (use_shorts) {
    651  1.1  reinoud 			icb->flags = udf_rw16(UDF_ICB_SHORT_ALLOC);
    652  1.1  reinoud 			memset(&new_short, 0, short_len);
    653  1.1  reinoud 			new_short.len    = udf_rw32(piece_len);
    654  1.1  reinoud 			new_short.lb_num = udf_rw32(piece_lb_num);
    655  1.1  reinoud 			memcpy(pos, &new_short, short_len);
    656  1.1  reinoud 			l_ad += short_len;
    657  1.1  reinoud 			crclen += short_len;
    658  1.1  reinoud 		} else {
    659  1.1  reinoud 			icb->flags = udf_rw16(UDF_ICB_LONG_ALLOC);
    660  1.1  reinoud 			piece->len        = udf_rw32(piece_len);
    661  1.1  reinoud 			piece->loc.lb_num = udf_rw32(piece_lb_num);
    662  1.1  reinoud 			memcpy(pos, piece, long_len);
    663  1.1  reinoud 			l_ad += long_len;
    664  1.1  reinoud 			crclen += long_len;
    665  1.1  reinoud 		}
    666  1.1  reinoud 	}
    667  1.1  reinoud 	piece->len = udf_rw32(0);
    668  1.1  reinoud 
    669  1.1  reinoud 	inf_len  += size;
    670  1.1  reinoud 	obj_size += size;
    671  1.1  reinoud 	logblks_rec += UDF_ROUNDUP(size, sector_size) / sector_size;
    672  1.1  reinoud 
    673  1.1  reinoud 	dscr->tag.desc_crc_len = udf_rw16(crclen);
    674  1.1  reinoud 	if (udf_rw16(dscr->tag.id) == TAGID_FENTRY) {
    675  1.1  reinoud 		fe->l_ad = udf_rw32(l_ad);
    676  1.1  reinoud 		fe->inf_len = udf_rw64(inf_len);
    677  1.1  reinoud 		fe->logblks_rec = udf_rw64(logblks_rec);
    678  1.1  reinoud 	} else if (udf_rw16(dscr->tag.id) == TAGID_EXTFENTRY) {
    679  1.1  reinoud 		efe->l_ad = udf_rw32(l_ad);
    680  1.1  reinoud 		efe->inf_len  = udf_rw64(inf_len);
    681  1.1  reinoud 		efe->obj_size = udf_rw64(inf_len);
    682  1.1  reinoud 		efe->logblks_rec = udf_rw64(logblks_rec);
    683  1.1  reinoud 	}
    684  1.1  reinoud }
    685  1.1  reinoud 
    686  1.1  reinoud 
    687  1.1  reinoud static int
    688  1.1  reinoud udf_append_file_contents(union dscrptr *dscr, struct long_ad *data_icb,
    689  1.1  reinoud 		uint8_t *fdata, size_t flen)
    690  1.1  reinoud {
    691  1.1  reinoud 	struct long_ad icb;
    692  1.1  reinoud 	uint32_t location;
    693  1.1  reinoud 	uint32_t phys;
    694  1.1  reinoud 	uint16_t vpart;
    695  1.1  reinoud 	uint8_t *bpos;
    696  1.1  reinoud 	int cnt, sects;
    697  1.1  reinoud 	int error;
    698  1.1  reinoud 
    699  1.1  reinoud 	if (udf_file_inject_blob(dscr, fdata, flen) == 0)
    700  1.1  reinoud 		return 0;
    701  1.1  reinoud 
    702  1.1  reinoud 	/* has to be appended in mappings */
    703  1.1  reinoud 	icb = *data_icb;
    704  1.1  reinoud 	icb.len = udf_rw32(flen);
    705  1.1  reinoud 	while (udf_rw32(icb.len) > 0)
    706  1.1  reinoud 		udf_append_file_mapping(dscr, &icb);
    707  1.1  reinoud 	udf_validate_tag_and_crc_sums(dscr);
    708  1.1  reinoud 
    709  1.1  reinoud 	/* write out data piece */
    710  1.1  reinoud 	vpart    = udf_rw16(data_icb->loc.part_num);
    711  1.1  reinoud 	location = udf_rw32(data_icb->loc.lb_num);
    712  1.1  reinoud 	sects    = udf_datablocks(flen);
    713  1.1  reinoud 	for (cnt = 0; cnt < sects; cnt++) {
    714  1.1  reinoud 		bpos = fdata + cnt*context.sector_size;
    715  1.1  reinoud 		phys = context.vtop_offset[vpart] + location + cnt;
    716  1.1  reinoud 		error = udf_write_sector(bpos, phys);
    717  1.1  reinoud 		if (error)
    718  1.1  reinoud 			return error;
    719  1.1  reinoud 	}
    720  1.1  reinoud 	return 0;
    721  1.1  reinoud }
    722  1.1  reinoud 
    723  1.1  reinoud 
    724  1.1  reinoud static int
    725  1.1  reinoud udf_create_new_file(struct stat *st, union dscrptr **dscr,
    726  1.1  reinoud 	int filetype, struct long_ad *icb)
    727  1.1  reinoud {
    728  1.1  reinoud 	struct file_entry *fe;
    729  1.1  reinoud 	struct extfile_entry *efe;
    730  1.1  reinoud 	int error;
    731  1.1  reinoud 
    732  1.1  reinoud 	fe = NULL;
    733  1.1  reinoud 	efe = NULL;
    734  1.1  reinoud 	if (context.dscrver == 2) {
    735  1.1  reinoud 		error = udf_create_new_fe(&fe, filetype, st);
    736  1.1  reinoud 		if (error)
    737  1.1  reinoud 			errx(error, "can't create fe");
    738  1.1  reinoud 		*dscr = (union dscrptr *) fe;
    739  1.1  reinoud 		icb->longad_uniqueid = fe->unique_id;
    740  1.1  reinoud 	} else {
    741  1.1  reinoud 		error = udf_create_new_efe(&efe, filetype, st);
    742  1.1  reinoud 		if (error)
    743  1.1  reinoud 			errx(error, "can't create fe");
    744  1.1  reinoud 		*dscr = (union dscrptr *) efe;
    745  1.1  reinoud 		icb->longad_uniqueid = efe->unique_id;
    746  1.1  reinoud 	}
    747  1.1  reinoud 
    748  1.1  reinoud 	return 0;
    749  1.1  reinoud }
    750  1.1  reinoud 
    751  1.1  reinoud 
    752  1.1  reinoud static void
    753  1.1  reinoud udf_estimate_walk(fsinfo_t *fsopts,
    754  1.1  reinoud 		fsnode *root, char *dir, struct udf_stats *stats)
    755  1.1  reinoud {
    756  1.1  reinoud 	struct fileid_desc *fid;
    757  1.1  reinoud 	struct long_ad dummy_ref;
    758  1.1  reinoud 	fsnode *cur;
    759  1.1  reinoud 	fsinode *fnode;
    760  1.1  reinoud 	size_t pathlen = strlen(dir);
    761  1.1  reinoud 	char *mydir = dir + pathlen;
    762  1.1  reinoud 	off_t sz;
    763  1.1  reinoud 	uint32_t nblk, ddoff;
    764  1.1  reinoud 	uint32_t softlink_len;
    765  1.1  reinoud 	uint8_t *softlink_buf;
    766  1.1  reinoud 	int nentries;
    767  1.1  reinoud 	int error;
    768  1.1  reinoud 
    769  1.1  reinoud 	stats->ndirs++;
    770  1.1  reinoud 
    771  1.1  reinoud 	/*
    772  1.1  reinoud 	 * Count number of directory entries and count directory size; needed
    773  1.1  reinoud 	 * for the reservation of enough space for the directory. Pity we
    774  1.1  reinoud 	 * don't keep the FIDs we created. If it turns out to be a issue we
    775  1.1  reinoud 	 * can cache it later.
    776  1.1  reinoud 	 */
    777  1.1  reinoud 	fid = (struct fileid_desc *) malloc(context.sector_size);
    778  1.1  reinoud 	assert(fid);
    779  1.1  reinoud 
    780  1.1  reinoud 	ddoff = 40;	/* '..' entry */
    781  1.1  reinoud 	for (cur = root, nentries = 0; cur != NULL; cur = cur->next) {
    782  1.1  reinoud 		switch (cur->type & S_IFMT) {
    783  1.1  reinoud 		default:
    784  1.1  reinoud 			/* what kind of nodes? */
    785  1.1  reinoud 			break;
    786  1.1  reinoud 		case S_IFCHR:
    787  1.1  reinoud 		case S_IFBLK:
    788  1.1  reinoud 			/* not supported yet */
    789  1.1  reinoud 			continue;
    790  1.1  reinoud 		case S_IFDIR:
    791  1.1  reinoud 			if (strcmp(cur->name, ".") == 0)
    792  1.1  reinoud 				continue;
    793  1.1  reinoud 		case S_IFLNK:
    794  1.1  reinoud 		case S_IFREG:
    795  1.1  reinoud 			/* create dummy FID to see how long name will become */
    796  1.1  reinoud 			udf_create_fid(ddoff, fid, cur->name, 0, &dummy_ref);
    797  1.1  reinoud 
    798  1.1  reinoud 			nentries++;
    799  1.1  reinoud 			ddoff += udf_fidsize(fid);
    800  1.1  reinoud 		}
    801  1.1  reinoud 	}
    802  1.1  reinoud 	sz = ddoff;
    803  1.1  reinoud 
    804  1.1  reinoud 	root->inode->st.st_size = sz;	/* max now */
    805  1.1  reinoud 	root->inode->flags |= FI_SIZED;
    806  1.1  reinoud 
    807  1.1  reinoud 	nblk = udf_datablocks(sz);
    808  1.1  reinoud 	stats->nmetadatablocks += nblk;
    809  1.1  reinoud 
    810  1.1  reinoud 	/* for each entry in the directory, there needs to be a (E)FE */
    811  1.1  reinoud 	stats->nmetadatablocks += nentries + 1;
    812  1.1  reinoud 
    813  1.1  reinoud 	/* recurse */
    814  1.1  reinoud 	for (cur = root; cur != NULL; cur = cur->next) {
    815  1.1  reinoud 		switch (cur->type & S_IFMT) {
    816  1.1  reinoud 		default:
    817  1.1  reinoud 			/* what kind of nodes? */
    818  1.1  reinoud 			break;
    819  1.1  reinoud 		case S_IFCHR:
    820  1.1  reinoud 		case S_IFBLK:
    821  1.1  reinoud 			/* not supported yet */
    822  1.1  reinoud 			// stats->nfiles++;
    823  1.1  reinoud 			break;
    824  1.1  reinoud 		case S_IFDIR:
    825  1.1  reinoud 			if (strcmp(cur->name, ".") == 0)
    826  1.1  reinoud 				continue;
    827  1.1  reinoud 			/* empty dir? */
    828  1.1  reinoud 			if (!cur->child)
    829  1.1  reinoud 				break;
    830  1.1  reinoud 			mydir[0] = '/';
    831  1.1  reinoud 			strncpy(&mydir[1], cur->name, MAXPATHLEN - pathlen);
    832  1.1  reinoud 			udf_estimate_walk(fsopts, cur->child, dir, stats);
    833  1.1  reinoud 			mydir[0] = '\0';
    834  1.1  reinoud 			break;
    835  1.1  reinoud 		case S_IFREG:
    836  1.1  reinoud 			fnode = cur->inode;
    837  1.1  reinoud 			/* don't double-count hard-links */
    838  1.1  reinoud 			if (!(fnode->flags & FI_SIZED)) {
    839  1.1  reinoud 				sz = fnode->st.st_size;
    840  1.1  reinoud 				nblk = udf_datablocks(sz);
    841  1.1  reinoud 				stats->ndatablocks += nblk;
    842  1.1  reinoud 				/* ... */
    843  1.1  reinoud 				fnode->flags |= FI_SIZED;
    844  1.1  reinoud 			}
    845  1.1  reinoud 			stats->nfiles++;
    846  1.1  reinoud 			break;
    847  1.1  reinoud 		case S_IFLNK:
    848  1.1  reinoud 			/* softlink */
    849  1.1  reinoud 			fnode = cur->inode;
    850  1.1  reinoud 			/* don't double-count hard-links */
    851  1.1  reinoud 			if (!(fnode->flags & FI_SIZED)) {
    852  1.1  reinoud 				error = udf_encode_symlink(&softlink_buf,
    853  1.1  reinoud 						&softlink_len, cur->symlink);
    854  1.1  reinoud 				if (error) {
    855  1.1  reinoud 					printf("SOFTLINK error %d\n", error);
    856  1.1  reinoud 					break;
    857  1.1  reinoud 				}
    858  1.1  reinoud 				nblk = udf_datablocks(softlink_len);
    859  1.1  reinoud 				stats->ndatablocks += nblk;
    860  1.1  reinoud 				fnode->flags |= FI_SIZED;
    861  1.1  reinoud 
    862  1.1  reinoud 				free(softlink_buf);
    863  1.1  reinoud 			}
    864  1.1  reinoud 			stats->nfiles++;
    865  1.1  reinoud 			break;
    866  1.1  reinoud 		}
    867  1.1  reinoud 	}
    868  1.1  reinoud }
    869  1.1  reinoud 
    870  1.1  reinoud 
    871  1.1  reinoud #define UDF_MAX_CHUNK_SIZE (4*1024*1024)
    872  1.1  reinoud static int
    873  1.1  reinoud udf_copy_file(struct stat *st, char *path, fsnode *cur, struct fileid_desc *fid,
    874  1.1  reinoud 	struct long_ad *icb)
    875  1.1  reinoud {
    876  1.1  reinoud 	union dscrptr *dscr;
    877  1.1  reinoud 	struct long_ad data_icb;
    878  1.1  reinoud 	fsinode *fnode;
    879  1.1  reinoud 	size_t sz, chunk, rd;
    880  1.1  reinoud 	uint8_t *data;
    881  1.1  reinoud 	int nblk;
    882  1.1  reinoud 	int i, f;
    883  1.1  reinoud 
    884  1.1  reinoud 	fnode = cur->inode;
    885  1.1  reinoud 
    886  1.3    joerg 	f = open(path, O_RDONLY);
    887  1.1  reinoud 	if (f < 0) {
    888  1.1  reinoud 		warn("Can't open file %s for reading", cur->name);
    889  1.1  reinoud 		return errno;
    890  1.1  reinoud 	}
    891  1.1  reinoud 
    892  1.1  reinoud 	/* claim disc space for the (e)fe descriptor for this file */
    893  1.1  reinoud 	udf_metadata_alloc(1, icb);
    894  1.1  reinoud 	udf_create_new_file(st, &dscr, UDF_ICB_FILETYPE_RANDOMACCESS, icb);
    895  1.1  reinoud 
    896  1.1  reinoud 	sz = fnode->st.st_size;
    897  1.1  reinoud 
    898  1.1  reinoud 	chunk = MIN(sz, UDF_MAX_CHUNK_SIZE);
    899  1.1  reinoud 	data = malloc(MAX(chunk, context.sector_size));
    900  1.1  reinoud 	assert(data);
    901  1.1  reinoud 
    902  1.1  reinoud 	printf("  ");
    903  1.1  reinoud 	i = 0;
    904  1.1  reinoud 	while (chunk) {
    905  1.1  reinoud 		rd = read(f, data, chunk);
    906  1.1  reinoud 		if (rd != chunk) {
    907  1.1  reinoud 			warn("Short read of file %s\n", cur->name);
    908  1.1  reinoud 			close(f);
    909  1.1  reinoud 			free(data);
    910  1.1  reinoud 			return errno;
    911  1.1  reinoud 		}
    912  1.1  reinoud 		printf("\b%c", "\\|/-"[i++ % 4]); fflush(stdout);fflush(stderr);
    913  1.1  reinoud 
    914  1.1  reinoud 		nblk = udf_datablocks(chunk);
    915  1.1  reinoud 		if (nblk > 0)
    916  1.1  reinoud 			udf_data_alloc(nblk, &data_icb);
    917  1.1  reinoud 		udf_append_file_contents(dscr, &data_icb, data, chunk);
    918  1.1  reinoud 
    919  1.1  reinoud 		sz -= chunk;
    920  1.1  reinoud 		chunk = MIN(sz, UDF_MAX_CHUNK_SIZE);
    921  1.1  reinoud 	}
    922  1.1  reinoud 	printf("\b \n");
    923  1.1  reinoud 	close(f);
    924  1.1  reinoud 	free(data);
    925  1.1  reinoud 
    926  1.1  reinoud 	/* write out dscr (e)fe */
    927  1.1  reinoud 	udf_set_link_cnt(dscr, fnode->nlink);
    928  1.1  reinoud 	udf_write_dscr_virt(dscr, udf_rw32(icb->loc.lb_num),
    929  1.1  reinoud 		udf_rw16(icb->loc.part_num), 1);
    930  1.1  reinoud 
    931  1.1  reinoud 	/* remember our location for hardlinks */
    932  1.1  reinoud 	cur->inode->fsuse = malloc(sizeof(struct long_ad));
    933  1.1  reinoud 	memcpy(cur->inode->fsuse, icb, sizeof(struct long_ad));
    934  1.1  reinoud 
    935  1.1  reinoud 	return 0;
    936  1.1  reinoud }
    937  1.1  reinoud 
    938  1.1  reinoud 
    939  1.1  reinoud static int
    940  1.1  reinoud udf_populate_walk(fsinfo_t *fsopts, fsnode *root, char *dir,
    941  1.1  reinoud 		struct long_ad *parent_icb, struct long_ad *dir_icb)
    942  1.1  reinoud {
    943  1.1  reinoud 	union dscrptr *dir_dscr, *dscr;
    944  1.1  reinoud 	struct fileid_desc *fid;
    945  1.1  reinoud 	struct long_ad icb, data_icb, dirdata_icb;
    946  1.1  reinoud 	fsnode *cur;
    947  1.1  reinoud 	fsinode *fnode;
    948  1.1  reinoud 	size_t pathlen = strlen(dir);
    949  1.1  reinoud 	size_t dirlen;
    950  1.1  reinoud 	char *mydir = dir + pathlen;
    951  1.1  reinoud 	uint32_t nblk, ddoff;
    952  1.1  reinoud 	uint32_t softlink_len;
    953  1.1  reinoud 	uint8_t *softlink_buf;
    954  1.1  reinoud 	uint8_t *dirdata;
    955  1.1  reinoud 	int error, ret, retval;
    956  1.1  reinoud 
    957  1.1  reinoud 	/* claim disc space for the (e)fe descriptor for this dir */
    958  1.1  reinoud 	udf_metadata_alloc(1, dir_icb);
    959  1.1  reinoud 
    960  1.1  reinoud 	/* create new e(fe) */
    961  1.1  reinoud 	udf_create_new_file(&root->inode->st, &dir_dscr,
    962  1.1  reinoud 		UDF_ICB_FILETYPE_DIRECTORY, dir_icb);
    963  1.1  reinoud 
    964  1.1  reinoud 	/* claim space for the directory contents */
    965  1.1  reinoud 	dirlen = root->inode->st.st_size;
    966  1.1  reinoud 	nblk = udf_datablocks(dirlen);
    967  1.1  reinoud 	if (nblk > 0) {
    968  1.1  reinoud 		/* claim disc space for the dir contents */
    969  1.1  reinoud 		udf_data_alloc(nblk, &dirdata_icb);
    970  1.1  reinoud 	}
    971  1.1  reinoud 
    972  1.1  reinoud 	/* allocate memory for the directory contents */
    973  1.1  reinoud 	nblk++;
    974  1.1  reinoud 	dirdata = malloc(nblk * context.sector_size);
    975  1.1  reinoud 	assert(dirdata);
    976  1.1  reinoud 	memset(dirdata, 0, nblk * context.sector_size);
    977  1.1  reinoud 
    978  1.1  reinoud 	/* create and append '..' */
    979  1.1  reinoud 	fid = (struct fileid_desc *) dirdata;
    980  1.1  reinoud 	ddoff = udf_create_parentfid(fid, parent_icb);
    981  1.1  reinoud 
    982  1.1  reinoud 	/* for '..' */
    983  1.1  reinoud 	udf_inc_link(dir_dscr);
    984  1.1  reinoud 
    985  1.1  reinoud 	/* recurse */
    986  1.1  reinoud 	retval = 0;
    987  1.1  reinoud 	for (cur = root; cur != NULL; cur = cur->next) {
    988  1.1  reinoud 		mydir[0] = '/';
    989  1.1  reinoud 		strncpy(&mydir[1], cur->name, MAXPATHLEN - pathlen);
    990  1.1  reinoud 
    991  1.1  reinoud 		fid = (struct fileid_desc *) (dirdata + ddoff);
    992  1.1  reinoud 		switch (cur->type & S_IFMT) {
    993  1.1  reinoud 		default:
    994  1.1  reinoud 			/* what kind of nodes? */
    995  1.1  reinoud 			retval = 2;
    996  1.1  reinoud 			break;
    997  1.1  reinoud 		case S_IFCHR:
    998  1.1  reinoud 		case S_IFBLK:
    999  1.1  reinoud 			/* not supported */
   1000  1.1  reinoud 			retval = 2;
   1001  1.1  reinoud 			warnx("device node %s not supported", dir);
   1002  1.1  reinoud 			break;
   1003  1.1  reinoud 		case S_IFDIR:
   1004  1.1  reinoud 			/* not an empty dir? */
   1005  1.1  reinoud 			if (strcmp(cur->name, ".") == 0)
   1006  1.1  reinoud 				break;
   1007  1.1  reinoud 			assert(cur->child);
   1008  1.1  reinoud 			if (cur->child) {
   1009  1.1  reinoud 				ret = udf_populate_walk(fsopts, cur->child,
   1010  1.1  reinoud 					dir, dir_icb, &icb);
   1011  1.1  reinoud 				if (ret)
   1012  1.1  reinoud 					retval = 2;
   1013  1.1  reinoud 			}
   1014  1.1  reinoud 			udf_create_fid(ddoff, fid, cur->name,
   1015  1.1  reinoud 					UDF_FILE_CHAR_DIR, &icb);
   1016  1.1  reinoud 			udf_inc_link(dir_dscr);
   1017  1.1  reinoud 			ddoff += udf_fidsize(fid);
   1018  1.1  reinoud 			break;
   1019  1.1  reinoud 		case S_IFREG:
   1020  1.1  reinoud 			fnode = cur->inode;
   1021  1.1  reinoud 			/* don't re-copy hard-links */
   1022  1.1  reinoud 			if (!(fnode->flags & FI_WRITTEN)) {
   1023  1.1  reinoud 				printf("%s", dir);
   1024  1.1  reinoud 				error = udf_copy_file(&fnode->st, dir, cur,
   1025  1.1  reinoud 					fid, &icb);
   1026  1.1  reinoud 				if (!error) {
   1027  1.1  reinoud 					fnode->flags |= FI_WRITTEN;
   1028  1.1  reinoud 					udf_create_fid(ddoff, fid, cur->name,
   1029  1.1  reinoud 						0, &icb);
   1030  1.1  reinoud 					ddoff += udf_fidsize(fid);
   1031  1.1  reinoud 				} else {
   1032  1.1  reinoud 					retval = 2;
   1033  1.1  reinoud 				}
   1034  1.1  reinoud 			} else {
   1035  1.1  reinoud 				/* hardlink! */
   1036  1.1  reinoud 				printf("%s (hardlink)\n", dir);
   1037  1.1  reinoud 				udf_create_fid(ddoff, fid, cur->name,
   1038  1.1  reinoud 					0, (struct long_ad *) (fnode->fsuse));
   1039  1.1  reinoud 				ddoff += udf_fidsize(fid);
   1040  1.1  reinoud 			}
   1041  1.1  reinoud 			fnode->nlink--;
   1042  1.1  reinoud 			if (fnode->nlink == 0)
   1043  1.1  reinoud 				free(fnode->fsuse);
   1044  1.1  reinoud 			break;
   1045  1.1  reinoud 		case S_IFLNK:
   1046  1.1  reinoud 			/* softlink */
   1047  1.1  reinoud 			fnode = cur->inode;
   1048  1.1  reinoud 			printf("%s -> %s\n", dir, cur->symlink);
   1049  1.1  reinoud 			error = udf_encode_symlink(&softlink_buf,
   1050  1.1  reinoud 					&softlink_len, cur->symlink);
   1051  1.1  reinoud 			if (error) {
   1052  1.1  reinoud 				printf("SOFTLINK error %d\n", error);
   1053  1.1  reinoud 				retval = 2;
   1054  1.1  reinoud 				break;
   1055  1.1  reinoud 			}
   1056  1.1  reinoud 
   1057  1.1  reinoud 			udf_metadata_alloc(1, &icb);
   1058  1.1  reinoud 			udf_create_new_file(&fnode->st, &dscr,
   1059  1.1  reinoud 				UDF_ICB_FILETYPE_SYMLINK, &icb);
   1060  1.1  reinoud 
   1061  1.1  reinoud 			nblk = udf_datablocks(softlink_len);
   1062  1.1  reinoud 			if (nblk > 0)
   1063  1.1  reinoud 				udf_data_alloc(nblk, &data_icb);
   1064  1.1  reinoud 			udf_append_file_contents(dscr, &data_icb,
   1065  1.1  reinoud 					softlink_buf, softlink_len);
   1066  1.1  reinoud 
   1067  1.1  reinoud 			/* write out dscr (e)fe */
   1068  1.1  reinoud 			udf_inc_link(dscr);
   1069  1.1  reinoud 			udf_write_dscr_virt(dscr, udf_rw32(icb.loc.lb_num),
   1070  1.1  reinoud 				udf_rw16(icb.loc.part_num), 1);
   1071  1.1  reinoud 
   1072  1.1  reinoud 			free(softlink_buf);
   1073  1.1  reinoud 
   1074  1.1  reinoud 			udf_create_fid(ddoff, fid, cur->name, 0, &icb);
   1075  1.1  reinoud 			ddoff += udf_fidsize(fid);
   1076  1.1  reinoud 			break;
   1077  1.1  reinoud 		}
   1078  1.1  reinoud 		mydir[0] = '\0';
   1079  1.1  reinoud 	}
   1080  1.1  reinoud 
   1081  1.1  reinoud 	/* writeout directory contents */
   1082  1.1  reinoud 	dirlen = ddoff;	/* XXX might bite back */
   1083  1.1  reinoud 
   1084  1.1  reinoud 	udf_prepare_fids(dir_icb, &dirdata_icb, dirdata, dirlen);
   1085  1.1  reinoud 	udf_append_file_contents(dir_dscr, &dirdata_icb, dirdata, dirlen);
   1086  1.1  reinoud 
   1087  1.1  reinoud 	/* write out dir_dscr (e)fe */
   1088  1.1  reinoud 	udf_write_dscr_virt(dir_dscr, udf_rw32(dir_icb->loc.lb_num),
   1089  1.1  reinoud 			udf_rw16(dir_icb->loc.part_num), 1);
   1090  1.1  reinoud 
   1091  1.1  reinoud 	return retval;
   1092  1.1  reinoud }
   1093  1.1  reinoud 
   1094  1.1  reinoud 
   1095  1.1  reinoud static int
   1096  1.1  reinoud udf_populate(const char *dir, fsnode *root, fsinfo_t *fsopts,
   1097  1.1  reinoud 		struct udf_stats *stats)
   1098  1.1  reinoud {
   1099  1.1  reinoud 	struct long_ad rooticb;
   1100  1.1  reinoud 	static char path[MAXPATHLEN+1];
   1101  1.1  reinoud 	int error;
   1102  1.1  reinoud 
   1103  1.1  reinoud 	/* make sure the root gets the rootdir entry */
   1104  1.1  reinoud 	context.metadata_alloc_pos = layout.rootdir;
   1105  1.1  reinoud 	context.data_alloc_pos = layout.rootdir;
   1106  1.1  reinoud 
   1107  1.1  reinoud 	strncpy(path, dir, sizeof(path));
   1108  1.1  reinoud 	error = udf_populate_walk(fsopts, root, path, &rooticb, &rooticb);
   1109  1.1  reinoud 
   1110  1.1  reinoud 	return error;
   1111  1.1  reinoud }
   1112  1.1  reinoud 
   1113  1.1  reinoud 
   1114  1.1  reinoud static void
   1115  1.1  reinoud udf_enumerate_and_estimate(const char *dir, fsnode *root, fsinfo_t *fsopts,
   1116  1.1  reinoud 		struct udf_stats *stats)
   1117  1.1  reinoud {
   1118  1.1  reinoud 	char path[MAXPATHLEN + 1];
   1119  1.1  reinoud 	uint32_t n, nblk;
   1120  1.1  reinoud 
   1121  1.1  reinoud 	strncpy(path, dir, sizeof(path));
   1122  1.1  reinoud 
   1123  1.1  reinoud 	/* calculate strict minimal size */
   1124  1.1  reinoud 	udf_estimate_walk(fsopts, root, path, stats);
   1125  1.1  reinoud 	printf("ndirs\t\t%d\n", stats->ndirs);
   1126  1.1  reinoud 	printf("nfiles\t\t%d\n", stats->nfiles);
   1127  1.1  reinoud 	printf("ndata_blocks\t%d\n", stats->ndatablocks);
   1128  1.1  reinoud 	printf("nmetadata_blocks\t%d\n", stats->nmetadatablocks);
   1129  1.1  reinoud 
   1130  1.1  reinoud 	/* adjust for options : free file nodes */
   1131  1.1  reinoud 	if (fsopts->freefiles) {
   1132  1.1  reinoud 		/* be mercifull and reserve more for the FID */
   1133  1.1  reinoud 		stats->nmetadatablocks += fsopts->freefiles * 1.5;
   1134  1.1  reinoud 	} else if ((n = fsopts->freefilepc)) {
   1135  1.1  reinoud 		stats->nmetadatablocks += (stats->nmetadatablocks*n) / (100-n);
   1136  1.1  reinoud 	}
   1137  1.1  reinoud 
   1138  1.1  reinoud 	/* adjust for options : free data blocks */
   1139  1.1  reinoud 	if (fsopts->freeblocks) {
   1140  1.1  reinoud 		stats->ndatablocks += fsopts->freeblocks;
   1141  1.1  reinoud 	} else if ((n = fsopts->freeblockpc)) {
   1142  1.1  reinoud 		stats->ndatablocks += (stats->ndatablocks * n) / (100-n);
   1143  1.1  reinoud 	}
   1144  1.1  reinoud 
   1145  1.1  reinoud 	/* rough predictor of minimum disc size */
   1146  1.1  reinoud 	nblk  = stats->ndatablocks + stats->nmetadatablocks;
   1147  1.1  reinoud 	nblk = (double) nblk * (1.0 + 1.0/8.0);		/* free space map    */
   1148  1.1  reinoud 	nblk += 256;					/* pre-volume space  */
   1149  1.1  reinoud 	nblk += 256;					/* post-volume space */
   1150  1.1  reinoud 	nblk += 64;					/* safeguard	     */
   1151  1.1  reinoud 
   1152  1.1  reinoud 	/* try to honour minimum size */
   1153  1.1  reinoud 	n = fsopts->minsize / fsopts->sectorsize;
   1154  1.1  reinoud 	if (nblk < n) {
   1155  1.1  reinoud 		stats->ndatablocks += (n - nblk);
   1156  1.1  reinoud 		nblk += n - nblk;
   1157  1.1  reinoud 	}
   1158  1.1  reinoud 	fsopts->size = (uint64_t) nblk * fsopts->sectorsize;
   1159  1.1  reinoud 
   1160  1.1  reinoud 	/* sanity size */
   1161  1.1  reinoud 	if (fsopts->size < 512*1024)
   1162  1.1  reinoud 		fsopts->size = 512*1024;
   1163  1.1  reinoud 
   1164  1.1  reinoud 	fsopts->inodes = stats->nfiles + stats->ndirs;
   1165  1.1  reinoud }
   1166  1.1  reinoud 
   1167  1.1  reinoud 
   1168  1.1  reinoud void
   1169  1.1  reinoud udf_makefs(const char *image, const char *dir, fsnode *root, fsinfo_t *fsopts)
   1170  1.1  reinoud {
   1171  1.1  reinoud 	struct udf_stats stats;
   1172  1.1  reinoud 	uint64_t truncate_len;
   1173  1.1  reinoud 	int error;
   1174  1.1  reinoud 
   1175  1.1  reinoud 	/* determine format */
   1176  1.1  reinoud 	udf_emulate_discinfo(fsopts, &mmc_discinfo, mmc_profile);
   1177  1.1  reinoud 	printf("req_enable %d, req_disable %d\n", req_enable, req_disable);
   1178  1.1  reinoud 
   1179  1.1  reinoud 	context.sector_size = fsopts->sectorsize;
   1180  1.1  reinoud 	error = udf_derive_format(req_enable, req_disable, false);
   1181  1.1  reinoud 	if (error)
   1182  1.1  reinoud 		err(EINVAL, "makefs_udf: can't determine format");
   1183  1.1  reinoud 
   1184  1.1  reinoud 	/* names */
   1185  1.1  reinoud 	error = udf_proces_names();
   1186  1.1  reinoud 	if (error)
   1187  1.1  reinoud 		err(EINVAL, "makefs_udf: bad names given");
   1188  1.1  reinoud 
   1189  1.1  reinoud 	/* set return value to 1 indicating error */
   1190  1.1  reinoud 	error = 1;
   1191  1.1  reinoud 
   1192  1.1  reinoud 	/* estimate the amount of space needed */
   1193  1.2  reinoud 	memset(&stats, 0, sizeof(stats));
   1194  1.1  reinoud 	udf_enumerate_and_estimate(dir, root, fsopts, &stats);
   1195  1.1  reinoud 
   1196  1.1  reinoud 	printf("Calculated size of `%s': %lld bytes, %ld inodes\n",
   1197  1.1  reinoud 	    image, (long long)fsopts->size, (long)fsopts->inodes);
   1198  1.1  reinoud 
   1199  1.1  reinoud 	/* create file image */
   1200  1.1  reinoud 	if ((fd = open(image, O_RDWR | O_CREAT | O_TRUNC, 0666)) == -1) {
   1201  1.1  reinoud 		err(EXIT_FAILURE, "%s", image);
   1202  1.1  reinoud 	}
   1203  1.1  reinoud 	if (lseek(fd, fsopts->size - 1, SEEK_SET) == -1) {
   1204  1.1  reinoud 		goto err_exit;
   1205  1.1  reinoud 	}
   1206  1.1  reinoud 	if (write(fd, &fd, 1) != 1) {
   1207  1.1  reinoud 		goto err_exit;
   1208  1.1  reinoud 	}
   1209  1.1  reinoud 	if (lseek(fd, 0, SEEK_SET) == -1) {
   1210  1.1  reinoud 		goto err_exit;
   1211  1.1  reinoud 	}
   1212  1.1  reinoud 	fsopts->fd = fd;
   1213  1.1  reinoud 
   1214  1.1  reinoud 	/* calculate metadata percentage */
   1215  1.1  reinoud 	meta_fract = fsopts->size / (stats.nmetadatablocks*fsopts->sectorsize);
   1216  1.1  reinoud 	meta_fract = ((int) ((meta_fract + 0.005)*100.0)) / 100;
   1217  1.1  reinoud 
   1218  1.1  reinoud 	/* update mmc info but now with correct size */
   1219  1.1  reinoud 	udf_emulate_discinfo(fsopts, &mmc_discinfo, mmc_profile);
   1220  1.1  reinoud 
   1221  1.1  reinoud 	udf_do_newfs_prefix();
   1222  1.1  reinoud 
   1223  1.1  reinoud 	/* update context */
   1224  1.1  reinoud 	context.unique_id = 0;
   1225  1.1  reinoud 
   1226  1.1  reinoud 	/* XXX are the next two needed? or should be re-count them? */
   1227  1.1  reinoud 	context.num_files = stats.nfiles;
   1228  1.1  reinoud 	context.num_directories = stats.ndirs;
   1229  1.1  reinoud 
   1230  1.1  reinoud 	error = udf_populate(dir, root, fsopts, &stats);
   1231  1.1  reinoud 
   1232  1.1  reinoud 	udf_do_newfs_postfix();
   1233  1.1  reinoud 
   1234  1.1  reinoud 	if (format_flags & FORMAT_VAT) {
   1235  1.1  reinoud 		truncate_len = context.vtop_offset[context.data_part] +
   1236  1.1  reinoud 			context.data_alloc_pos;
   1237  1.1  reinoud 		truncate_len *= context.sector_size;
   1238  1.1  reinoud 
   1239  1.1  reinoud 		printf("\nTruncing the disc-image to allow for VAT\n");
   1240  1.1  reinoud 		ftruncate(fd, truncate_len);
   1241  1.1  reinoud 	}
   1242  1.1  reinoud 
   1243  1.1  reinoud 	if (error) {
   1244  1.1  reinoud 		error = 2;	/* some files couldn't be added */
   1245  1.1  reinoud 		goto err_exit;
   1246  1.1  reinoud 	}
   1247  1.1  reinoud 
   1248  1.1  reinoud 	close(fd);
   1249  1.1  reinoud 	return;
   1250  1.1  reinoud 
   1251  1.1  reinoud err_exit:
   1252  1.1  reinoud 	close(fd);
   1253  1.1  reinoud 	if (error == 2) {
   1254  1.1  reinoud 		errx(error, "Not all files could be added");
   1255  1.1  reinoud 	} else {
   1256  1.1  reinoud 		errx(error, "creation of %s failed", image);
   1257  1.1  reinoud 	}
   1258  1.1  reinoud }
   1259  1.1  reinoud 
   1260