summaryrefslogtreecommitdiffstats
path: root/src/VBox/Runtime/common/fs/isomakercmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/Runtime/common/fs/isomakercmd.cpp')
-rw-r--r--src/VBox/Runtime/common/fs/isomakercmd.cpp3689
1 files changed, 3689 insertions, 0 deletions
diff --git a/src/VBox/Runtime/common/fs/isomakercmd.cpp b/src/VBox/Runtime/common/fs/isomakercmd.cpp
new file mode 100644
index 00000000..271c28a6
--- /dev/null
+++ b/src/VBox/Runtime/common/fs/isomakercmd.cpp
@@ -0,0 +1,3689 @@
+/* $Id: isomakercmd.cpp $ */
+/** @file
+ * IPRT - ISO Image Maker Command.
+ */
+
+/*
+ * Copyright (C) 2017-2023 Oracle and/or its affiliates.
+ *
+ * This file is part of VirtualBox base platform packages, as
+ * available from https://www.virtualbox.org.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation, in version 3 of the
+ * License.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <https://www.gnu.org/licenses>.
+ *
+ * The contents of this file may alternatively be used under the terms
+ * of the Common Development and Distribution License Version 1.0
+ * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
+ * in the VirtualBox distribution, in which case the provisions of the
+ * CDDL are applicable instead of those of the GPL.
+ *
+ * You may elect to license modified versions of this file under the
+ * terms and conditions of either the GPL or the CDDL or both.
+ *
+ * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
+ */
+
+
+/*********************************************************************************************************************************
+* Header Files *
+*********************************************************************************************************************************/
+#define LOG_GROUP RTLOGGROUP_FS
+#include "internal/iprt.h"
+#include <iprt/fsisomaker.h>
+
+#include <iprt/asm.h>
+#include <iprt/assert.h>
+#include <iprt/buildconfig.h>
+#include <iprt/ctype.h>
+#include <iprt/file.h>
+#include <iprt/fsvfs.h>
+#include <iprt/err.h>
+#include <iprt/getopt.h>
+#include <iprt/log.h>
+#include <iprt/mem.h>
+#include <iprt/message.h>
+#include <iprt/path.h>
+#include <iprt/rand.h>
+#include <iprt/stream.h>
+#include <iprt/string.h>
+#include <iprt/vfs.h>
+#include <iprt/formats/iso9660.h>
+
+
+/*********************************************************************************************************************************
+* Defined Constants And Macros *
+*********************************************************************************************************************************/
+/** Maximum number of name specifiers we allow. */
+#define RTFSISOMAKERCMD_MAX_NAMES 8
+
+/** Maximum directory recursions when adding a directory tree. */
+#define RTFSISOMAKERCMD_MAX_DIR_RECURSIONS 32
+
+/** @name Name specifiers
+ * @{ */
+#define RTFSISOMAKERCMDNAME_PRIMARY_ISO RTFSISOMAKER_NAMESPACE_ISO_9660
+#define RTFSISOMAKERCMDNAME_JOLIET RTFSISOMAKER_NAMESPACE_JOLIET
+#define RTFSISOMAKERCMDNAME_UDF RTFSISOMAKER_NAMESPACE_UDF
+#define RTFSISOMAKERCMDNAME_HFS RTFSISOMAKER_NAMESPACE_HFS
+
+#define RTFSISOMAKERCMDNAME_PRIMARY_ISO_ROCK_RIDGE RT_BIT_32(16)
+#define RTFSISOMAKERCMDNAME_JOLIET_ROCK_RIDGE RT_BIT_32(17)
+
+#define RTFSISOMAKERCMDNAME_JOLIET_TRANS_TBL RT_BIT_32(20)
+#define RTFSISOMAKERCMDNAME_PRIMARY_ISO_TRANS_TBL RT_BIT_32(21)
+#define RTFSISOMAKERCMDNAME_UDF_TRANS_TBL RT_BIT_32(22)
+#define RTFSISOMAKERCMDNAME_HFS_TRANS_TBL RT_BIT_32(23)
+
+#define RTFSISOMAKERCMDNAME_MAJOR_MASK \
+ (RTFSISOMAKERCMDNAME_PRIMARY_ISO | RTFSISOMAKERCMDNAME_JOLIET | RTFSISOMAKERCMDNAME_UDF | RTFSISOMAKERCMDNAME_HFS)
+
+#define RTFSISOMAKERCMDNAME_MINOR_MASK \
+ ( RTFSISOMAKERCMDNAME_PRIMARY_ISO_ROCK_RIDGE | RTFSISOMAKERCMDNAME_PRIMARY_ISO_TRANS_TBL \
+ | RTFSISOMAKERCMDNAME_JOLIET_ROCK_RIDGE | RTFSISOMAKERCMDNAME_JOLIET_TRANS_TBL \
+ | RTFSISOMAKERCMDNAME_UDF_TRANS_TBL \
+ | RTFSISOMAKERCMDNAME_HFS_TRANS_TBL)
+AssertCompile((RTFSISOMAKERCMDNAME_MAJOR_MASK & RTFSISOMAKERCMDNAME_MINOR_MASK) == 0);
+/** @} */
+
+
+/*********************************************************************************************************************************
+* Structures and Typedefs *
+*********************************************************************************************************************************/
+typedef enum RTFSISOMAKERCMDOPT
+{
+ RTFSISOMAKERCMD_OPT_FIRST = 1000,
+
+ RTFSISOMAKERCMD_OPT_IPRT_ISO_MAKER_FILE_MARKER,
+ RTFSISOMAKERCMD_OPT_OUTPUT_BUFFER_SIZE,
+ RTFSISOMAKERCMD_OPT_RANDOM_OUTPUT_BUFFER_SIZE,
+ RTFSISOMAKERCMD_OPT_RANDOM_ORDER_VERIFICATION,
+ RTFSISOMAKERCMD_OPT_NAME_SETUP,
+ RTFSISOMAKERCMD_OPT_NAME_SETUP_FROM_IMPORT,
+
+ RTFSISOMAKERCMD_OPT_ROCK_RIDGE,
+ RTFSISOMAKERCMD_OPT_LIMITED_ROCK_RIDGE,
+ RTFSISOMAKERCMD_OPT_NO_ROCK_RIDGE,
+ RTFSISOMAKERCMD_OPT_NO_JOLIET,
+
+ RTFSISOMAKERCMD_OPT_IMPORT_ISO,
+ RTFSISOMAKERCMD_OPT_PUSH_ISO,
+ RTFSISOMAKERCMD_OPT_PUSH_ISO_NO_JOLIET,
+ RTFSISOMAKERCMD_OPT_PUSH_ISO_NO_ROCK,
+ RTFSISOMAKERCMD_OPT_PUSH_ISO_NO_ROCK_NO_JOLIET,
+ RTFSISOMAKERCMD_OPT_POP,
+
+ RTFSISOMAKERCMD_OPT_ELTORITO_NEW_ENTRY,
+ RTFSISOMAKERCMD_OPT_ELTORITO_ADD_IMAGE,
+ RTFSISOMAKERCMD_OPT_ELTORITO_FLOPPY_12,
+ RTFSISOMAKERCMD_OPT_ELTORITO_FLOPPY_144,
+ RTFSISOMAKERCMD_OPT_ELTORITO_FLOPPY_288,
+
+ RTFSISOMAKERCMD_OPT_RATIONAL_ATTRIBS,
+ RTFSISOMAKERCMD_OPT_STRICT_ATTRIBS,
+ RTFSISOMAKERCMD_OPT_NO_FILE_MODE,
+ RTFSISOMAKERCMD_OPT_NO_DIR_MODE,
+ RTFSISOMAKERCMD_OPT_CHMOD,
+ RTFSISOMAKERCMD_OPT_CHOWN,
+ RTFSISOMAKERCMD_OPT_CHGRP,
+
+ /*
+ * Compatibility options:
+ */
+ RTFSISOMAKERCMD_OPT_ABSTRACT_FILE_ID,
+ RTFSISOMAKERCMD_OPT_ALLOW_LEADING_DOTS,
+ RTFSISOMAKERCMD_OPT_ALLOW_LIMITED_SIZE,
+ RTFSISOMAKERCMD_OPT_ALLOW_LOWERCASE,
+ RTFSISOMAKERCMD_OPT_ALLOW_MULTI_DOT,
+ RTFSISOMAKERCMD_OPT_ALPHA_BOOT,
+ RTFSISOMAKERCMD_OPT_APPLE,
+ RTFSISOMAKERCMD_OPT_BIBLIOGRAPHIC_FILE_ID,
+ RTFSISOMAKERCMD_OPT_CHECK_OLD_NAMES,
+ RTFSISOMAKERCMD_OPT_CHECK_SESSION,
+ RTFSISOMAKERCMD_OPT_COPYRIGHT_FILE_ID,
+ RTFSISOMAKERCMD_OPT_DETECT_HARDLINKS,
+ RTFSISOMAKERCMD_OPT_DIR_MODE,
+ RTFSISOMAKERCMD_OPT_DVD_VIDEO,
+ RTFSISOMAKERCMD_OPT_ELTORITO_PLATFORM_ID,
+ RTFSISOMAKERCMD_OPT_ELTORITO_HARD_DISK_BOOT,
+ RTFSISOMAKERCMD_OPT_ELTORITO_INFO_TABLE,
+ RTFSISOMAKERCMD_OPT_ELTORITO_LOAD_SEG,
+ RTFSISOMAKERCMD_OPT_ELTORITO_LOAD_SIZE,
+ RTFSISOMAKERCMD_OPT_ELTORITO_NO_BOOT,
+ RTFSISOMAKERCMD_OPT_ELTORITO_NO_EMULATION_BOOT,
+ RTFSISOMAKERCMD_OPT_EXCLUDE_LIST,
+ RTFSISOMAKERCMD_OPT_FILE_MODE,
+ RTFSISOMAKERCMD_OPT_FORCE_RR,
+ RTFSISOMAKERCMD_OPT_GID,
+ RTFSISOMAKERCMD_OPT_GRAFT_POINTS,
+ RTFSISOMAKERCMD_OPT_GUI,
+ RTFSISOMAKERCMD_OPT_HFS_AUTO,
+ RTFSISOMAKERCMD_OPT_HFS_BLESS,
+ RTFSISOMAKERCMD_OPT_HFS_BOOT_FILE,
+ RTFSISOMAKERCMD_OPT_HFS_CAP,
+ RTFSISOMAKERCMD_OPT_HFS_CHRP_BOOT,
+ RTFSISOMAKERCMD_OPT_HFS_CLUSTER_SIZE,
+ RTFSISOMAKERCMD_OPT_HFS_CREATOR,
+ RTFSISOMAKERCMD_OPT_HFS_DAVE,
+ RTFSISOMAKERCMD_OPT_HFS_DOUBLE,
+ RTFSISOMAKERCMD_OPT_HFS_ENABLE,
+ RTFSISOMAKERCMD_OPT_HFS_ETHERSHARE,
+ RTFSISOMAKERCMD_OPT_HFS_EXCHANGE,
+ RTFSISOMAKERCMD_OPT_HFS_HIDE,
+ RTFSISOMAKERCMD_OPT_HFS_HIDE_LIST,
+ RTFSISOMAKERCMD_OPT_HFS_ICON_POSITION,
+ RTFSISOMAKERCMD_OPT_HFS_INPUT_CHARSET,
+ RTFSISOMAKERCMD_OPT_HFS_MAC_NAME,
+ RTFSISOMAKERCMD_OPT_HFS_MACBIN,
+ RTFSISOMAKERCMD_OPT_HFS_MAGIC,
+ RTFSISOMAKERCMD_OPT_HFS_MAP,
+ RTFSISOMAKERCMD_OPT_HFS_NETATALK,
+ RTFSISOMAKERCMD_OPT_HFS_NO_DESKTOP,
+ RTFSISOMAKERCMD_OPT_HFS_OSX_DOUBLE,
+ RTFSISOMAKERCMD_OPT_HFS_OSX_HFS,
+ RTFSISOMAKERCMD_OPT_HFS_OUTPUT_CHARSET,
+ RTFSISOMAKERCMD_OPT_HFS_PARMS,
+ RTFSISOMAKERCMD_OPT_HFS_PART,
+ RTFSISOMAKERCMD_OPT_HFS_PREP_BOOT,
+ RTFSISOMAKERCMD_OPT_HFS_PROBE,
+ RTFSISOMAKERCMD_OPT_HFS_ROOT_INFO,
+ RTFSISOMAKERCMD_OPT_HFS_SFM,
+ RTFSISOMAKERCMD_OPT_HFS_SGI,
+ RTFSISOMAKERCMD_OPT_HFS_SINGLE,
+ RTFSISOMAKERCMD_OPT_HFS_TYPE,
+ RTFSISOMAKERCMD_OPT_HFS_UNLOCK,
+ RTFSISOMAKERCMD_OPT_HFS_USHARE,
+ RTFSISOMAKERCMD_OPT_HFS_VOL_ID,
+ RTFSISOMAKERCMD_OPT_HFS_XINET,
+ RTFSISOMAKERCMD_OPT_HIDDEN,
+ RTFSISOMAKERCMD_OPT_HIDDEN_LIST,
+ RTFSISOMAKERCMD_OPT_HIDE,
+ RTFSISOMAKERCMD_OPT_HIDE_JOLIET,
+ RTFSISOMAKERCMD_OPT_HIDE_JOLIET_LIST,
+ RTFSISOMAKERCMD_OPT_HIDE_JOLIET_TRANS_TBL,
+ RTFSISOMAKERCMD_OPT_HIDE_LIST,
+ RTFSISOMAKERCMD_OPT_HIDE_RR_MOVED,
+ RTFSISOMAKERCMD_OPT_HPPA_BOOTLOADER,
+ RTFSISOMAKERCMD_OPT_HPPA_CMDLINE,
+ RTFSISOMAKERCMD_OPT_HPPA_KERNEL_32,
+ RTFSISOMAKERCMD_OPT_HPPA_KERNEL_64,
+ RTFSISOMAKERCMD_OPT_HPPA_RAMDISK,
+ RTFSISOMAKERCMD_OPT_INPUT_CHARSET,
+ RTFSISOMAKERCMD_OPT_ISO_LEVEL,
+ RTFSISOMAKERCMD_OPT_JIGDO_COMPRESS,
+ RTFSISOMAKERCMD_OPT_JIGDO_EXCLUDE,
+ RTFSISOMAKERCMD_OPT_JIGDO_FORCE_MD5,
+ RTFSISOMAKERCMD_OPT_JIGDO_JIGDO,
+ RTFSISOMAKERCMD_OPT_JIGDO_MAP,
+ RTFSISOMAKERCMD_OPT_JIGDO_MD5_LIST,
+ RTFSISOMAKERCMD_OPT_JIGDO_MIN_FILE_SIZE,
+ RTFSISOMAKERCMD_OPT_JIGDO_TEMPLATE,
+ RTFSISOMAKERCMD_OPT_JOLIET_CHARSET,
+ RTFSISOMAKERCMD_OPT_JOLIET_LEVEL,
+ RTFSISOMAKERCMD_OPT_JOLIET_LONG,
+ RTFSISOMAKERCMD_OPT_LOG_FILE,
+ RTFSISOMAKERCMD_OPT_MAX_ISO9660_FILENAMES,
+ RTFSISOMAKERCMD_OPT_MIPS_BOOT,
+ RTFSISOMAKERCMD_OPT_MIPSEL_BOOT,
+ RTFSISOMAKERCMD_OPT_NEW_DIR_MODE,
+ RTFSISOMAKERCMD_OPT_NO_BACKUP_FILES,
+ RTFSISOMAKERCMD_OPT_NO_DETECT_HARDLINKS,
+ RTFSISOMAKERCMD_OPT_NO_ISO_TRANSLATE,
+ RTFSISOMAKERCMD_OPT_NO_PAD,
+ RTFSISOMAKERCMD_OPT_NO_RR,
+ RTFSISOMAKERCMD_OPT_NO_SPLIT_SYMLINK_COMPONENTS,
+ RTFSISOMAKERCMD_OPT_NO_SPLIT_SYMLINK_FIELDS,
+ RTFSISOMAKERCMD_OPT_OLD_ROOT,
+ RTFSISOMAKERCMD_OPT_OUTPUT_CHARSET,
+ RTFSISOMAKERCMD_OPT_PAD,
+ RTFSISOMAKERCMD_OPT_PATH_LIST,
+ RTFSISOMAKERCMD_OPT_PRINT_SIZE,
+ RTFSISOMAKERCMD_OPT_QUIET,
+ RTFSISOMAKERCMD_OPT_RELAXED_FILENAMES,
+ RTFSISOMAKERCMD_OPT_ROOT,
+ RTFSISOMAKERCMD_OPT_SORT,
+ RTFSISOMAKERCMD_OPT_SPARC_BOOT,
+ RTFSISOMAKERCMD_OPT_SPARC_LABEL,
+ RTFSISOMAKERCMD_OPT_SPLIT_OUTPUT,
+ RTFSISOMAKERCMD_OPT_STREAM_FILE_NAME,
+ RTFSISOMAKERCMD_OPT_STREAM_MEDIA_SIZE,
+ RTFSISOMAKERCMD_OPT_SUNX86_BOOT,
+ RTFSISOMAKERCMD_OPT_SUNX86_LABEL,
+ RTFSISOMAKERCMD_OPT_SYSTEM_ID,
+ RTFSISOMAKERCMD_OPT_TRANS_TBL_NAME,
+ RTFSISOMAKERCMD_OPT_UDF,
+ RTFSISOMAKERCMD_OPT_UID,
+ RTFSISOMAKERCMD_OPT_USE_FILE_VERSION,
+ RTFSISOMAKERCMD_OPT_VOLUME_ID,
+ RTFSISOMAKERCMD_OPT_VOLUME_SET_ID,
+ RTFSISOMAKERCMD_OPT_VOLUME_SET_SEQ_NO,
+ RTFSISOMAKERCMD_OPT_VOLUME_SET_SIZE,
+ RTFSISOMAKERCMD_OPT_END
+} RTFSISOMAKERCMDOPT;
+
+
+/**
+ * El Torito boot entry.
+ */
+typedef struct RTFSISOMKCMDELTORITOENTRY
+{
+ /** The type of this entry. */
+ enum
+ {
+ kEntryType_Invalid = 0,
+ kEntryType_Validation, /**< Same as kEntryType_SectionHeader, just hardcoded #0. */
+ kEntryType_SectionHeader,
+ kEntryType_Default, /**< Same as kEntryType_Section, just hardcoded #1. */
+ kEntryType_Section
+ } enmType;
+ /** Type specific data. */
+ union
+ {
+ struct
+ {
+ /** The platform ID (ISO9660_ELTORITO_PLATFORM_ID_XXX). */
+ uint8_t idPlatform;
+ /** Some string for the header. */
+ const char *pszString;
+ } Validation,
+ SectionHeader;
+ struct
+ {
+ /** The name of the boot image wihtin the ISO (-b option). */
+ const char *pszImageNameInIso;
+ /** The object ID of the image in the ISO. This is set to UINT32_MAX when
+ * pszImageNameInIso is used (i.e. -b option) and we've delayed everything
+ * boot related till after all files have been added to the image. */
+ uint32_t idxImageObj;
+ /** Whether to insert boot info table into the image. */
+ bool fInsertBootInfoTable;
+ /** Bootble or not. Possible to make BIOS set up emulation w/o booting it. */
+ bool fBootable;
+ /** The media type (ISO9660_ELTORITO_BOOT_MEDIA_TYPE_XXX). */
+ uint8_t bBootMediaType;
+ /** File system / partition type. */
+ uint8_t bSystemType;
+ /** Load address divided by 0x10. */
+ uint16_t uLoadSeg;
+ /** Number of sectors (512) to load. */
+ uint16_t cSectorsToLoad;
+ } Section,
+ Default;
+ } u;
+} RTFSISOMKCMDELTORITOENTRY;
+/** Pointer to an el torito boot entry. */
+typedef RTFSISOMKCMDELTORITOENTRY *PRTFSISOMKCMDELTORITOENTRY;
+
+/**
+ * ISO maker command options & state.
+ */
+typedef struct RTFSISOMAKERCMDOPTS
+{
+ /** The handle to the ISO maker. */
+ RTFSISOMAKER hIsoMaker;
+ /** Set if we're creating a virtual image maker, i.e. producing something
+ * that is going to be read from only and not written to disk. */
+ bool fVirtualImageMaker;
+ /** Extended error info. This is a stderr alternative for the
+ * fVirtualImageMaker case (stdout goes to LogRel). */
+ PRTERRINFO pErrInfo;
+
+ /** The output file.
+ * This is NULL when fVirtualImageMaker is set. */
+ const char *pszOutFile;
+ /** Special buffer size to use for testing the ISO maker code reading. */
+ uint32_t cbOutputReadBuffer;
+ /** Use random output read buffer size. cbOutputReadBuffer works as maximum
+ * when this is enabled. */
+ bool fRandomOutputReadBufferSize;
+ /** Do output verification, but do it in random order if non-zero. The
+ * values gives the block size to use. */
+ uint32_t cbRandomOrderVerifciationBlock;
+
+ /** Index of the top source stack entry, -1 if empty. */
+ int32_t iSrcStack;
+ struct
+ {
+ /** The root VFS dir or the CWD for relative paths. */
+ RTVFSDIR hSrcDir;
+ /** The current source VFS, NIL_RTVFS if the regular file system is used. */
+ RTVFS hSrcVfs;
+ /** The specifier for hSrcVfs (error messages). */
+ const char *pszSrcVfs;
+ /** The option for hSrcVfs.
+ * This is NULL for a CWD passed via the API that shouldn't be popped. */
+ const char *pszSrcVfsOption;
+ } aSrcStack[5];
+
+ /** @name Processing of inputs
+ * @{ */
+ /** The namespaces (RTFSISOMAKER_NAMESPACE_XXX) we're currently adding
+ * input to. */
+ uint32_t fDstNamespaces;
+ /** The number of name specifiers we're currently operating with. */
+ uint32_t cNameSpecifiers;
+ /** Name specifier configurations.
+ * For instance given "name0=name1=name2=name3=source-file" we will add
+ * source-file to the image with name0 as the name in the namespace and
+ * sub-name specified by aNameSpecifiers[0], name1 in aNameSpecifiers[1],
+ * and so on. This allows exact control over which names a file will
+ * have in each namespace (primary-iso, joliet, udf, hfs) and sub-namespace
+ * (rock-ridge, trans.tbl).
+ */
+ uint32_t afNameSpecifiers[RTFSISOMAKERCMD_MAX_NAMES];
+ /** The forced directory mode. */
+ RTFMODE fDirMode;
+ /** Set if fDirMode should be applied. */
+ bool fDirModeActive;
+ /** Set if fFileMode should be applied. */
+ bool fFileModeActive;
+ /** The force file mode. */
+ RTFMODE fFileMode;
+ /** @} */
+
+ /** @name Booting related options and state.
+ * @{ */
+ /** Number of boot catalog entries (aBootCatEntries). */
+ uint32_t cBootCatEntries;
+ /** Boot catalog entries. */
+ RTFSISOMKCMDELTORITOENTRY aBootCatEntries[64];
+ /** @} */
+
+ /** @name Filtering
+ * @{ */
+ /** The trans.tbl filename when enabled. We must not import these files. */
+ const char *pszTransTbl;
+ /** @} */
+
+ /** Number of items (files, directories, images, whatever) we've added. */
+ uint32_t cItemsAdded;
+} RTFSISOMAKERCMDOPTS;
+typedef RTFSISOMAKERCMDOPTS *PRTFSISOMAKERCMDOPTS;
+typedef RTFSISOMAKERCMDOPTS const *PCRTFSISOMAKERCMDOPTS;
+
+
+/**
+ * One parsed name.
+ */
+typedef struct RTFSISOMKCMDPARSEDNAME
+{
+ /** Copy of the corresponding RTFSISOMAKERCMDOPTS::afNameSpecifiers
+ * value. */
+ uint32_t fNameSpecifiers;
+ /** The length of the specified path. */
+ uint32_t cchPath;
+ /** Specified path. */
+ char szPath[RTPATH_MAX];
+} RTFSISOMKCMDPARSEDNAME;
+/** Pointer to a parsed name. */
+typedef RTFSISOMKCMDPARSEDNAME *PRTFSISOMKCMDPARSEDNAME;
+/** Pointer to a const parsed name. */
+typedef RTFSISOMKCMDPARSEDNAME const *PCRTFSISOMKCMDPARSEDNAME;
+
+
+/**
+ * Parsed names.
+ */
+typedef struct RTFSISOMKCMDPARSEDNAMES
+{
+ /** Number of names. */
+ uint32_t cNames;
+ /** Number of names with the source. */
+ uint32_t cNamesWithSrc;
+ /** Special source types.
+ * Used for conveying commands to do on names intead of adding a source.
+ * Only used when adding generic stuff w/o any options involved. */
+ enum
+ {
+ kSrcType_None,
+ kSrcType_Normal,
+ kSrcType_NormalSrcStack,
+ kSrcType_Remove,
+ kSrcType_MustRemove
+ } enmSrcType;
+ /** The parsed names. */
+ RTFSISOMKCMDPARSEDNAME aNames[RTFSISOMAKERCMD_MAX_NAMES + 1];
+} RTFSISOMKCMDPARSEDNAMES;
+/** Pointer to parsed names. */
+typedef RTFSISOMKCMDPARSEDNAMES *PRTFSISOMKCMDPARSEDNAMES;
+/** Pointer to const parsed names. */
+typedef RTFSISOMKCMDPARSEDNAMES *PCRTFSISOMKCMDPARSEDNAMES;
+
+
+/*********************************************************************************************************************************
+* Global Variables *
+*********************************************************************************************************************************/
+/*
+ * Parse the command line. This is similar to genisoimage and mkisofs,
+ * thus the single dash long name aliases.
+ */
+static const RTGETOPTDEF g_aRtFsIsoMakerOptions[] =
+{
+ /*
+ * Unique IPRT ISO maker options.
+ */
+ { "--name-setup", RTFSISOMAKERCMD_OPT_NAME_SETUP, RTGETOPT_REQ_STRING },
+ { "--name-setup-from-import", RTFSISOMAKERCMD_OPT_NAME_SETUP_FROM_IMPORT, RTGETOPT_REQ_NOTHING },
+ { "--import-iso", RTFSISOMAKERCMD_OPT_IMPORT_ISO, RTGETOPT_REQ_STRING },
+ { "--push-iso", RTFSISOMAKERCMD_OPT_PUSH_ISO, RTGETOPT_REQ_STRING },
+ { "--push-iso-no-joliet", RTFSISOMAKERCMD_OPT_PUSH_ISO_NO_JOLIET, RTGETOPT_REQ_STRING },
+ { "--push-iso-no-rock", RTFSISOMAKERCMD_OPT_PUSH_ISO_NO_ROCK, RTGETOPT_REQ_STRING },
+ { "--push-iso-no-rock-no-joliet", RTFSISOMAKERCMD_OPT_PUSH_ISO_NO_ROCK_NO_JOLIET, RTGETOPT_REQ_STRING },
+ { "--pop", RTFSISOMAKERCMD_OPT_POP, RTGETOPT_REQ_NOTHING },
+
+ { "--rock-ridge", RTFSISOMAKERCMD_OPT_ROCK_RIDGE, RTGETOPT_REQ_NOTHING },
+ { "--limited-rock-ridge", RTFSISOMAKERCMD_OPT_LIMITED_ROCK_RIDGE, RTGETOPT_REQ_NOTHING },
+ { "--no-rock-ridge", RTFSISOMAKERCMD_OPT_NO_ROCK_RIDGE, RTGETOPT_REQ_NOTHING },
+ { "--no-joliet", RTFSISOMAKERCMD_OPT_NO_JOLIET, RTGETOPT_REQ_NOTHING },
+ { "--joliet-ucs-level", RTFSISOMAKERCMD_OPT_JOLIET_LEVEL, RTGETOPT_REQ_UINT8 },
+
+ { "--rational-attribs", RTFSISOMAKERCMD_OPT_RATIONAL_ATTRIBS, RTGETOPT_REQ_NOTHING },
+ { "--strict-attribs", RTFSISOMAKERCMD_OPT_STRICT_ATTRIBS, RTGETOPT_REQ_NOTHING },
+ { "--no-file-mode", RTFSISOMAKERCMD_OPT_NO_FILE_MODE, RTGETOPT_REQ_NOTHING },
+ { "--no-dir-mode", RTFSISOMAKERCMD_OPT_NO_DIR_MODE, RTGETOPT_REQ_NOTHING },
+ { "--chmod", RTFSISOMAKERCMD_OPT_CHMOD, RTGETOPT_REQ_STRING },
+ { "--chown", RTFSISOMAKERCMD_OPT_CHOWN, RTGETOPT_REQ_STRING },
+ { "--chgrp", RTFSISOMAKERCMD_OPT_CHGRP, RTGETOPT_REQ_STRING },
+
+ { "--eltorito-new-entry", RTFSISOMAKERCMD_OPT_ELTORITO_NEW_ENTRY, RTGETOPT_REQ_NOTHING },
+ { "--eltorito-add-image", RTFSISOMAKERCMD_OPT_ELTORITO_ADD_IMAGE, RTGETOPT_REQ_STRING },
+ { "--eltorito-floppy-12", RTFSISOMAKERCMD_OPT_ELTORITO_FLOPPY_12, RTGETOPT_REQ_NOTHING },
+ { "--eltorito-floppy-144", RTFSISOMAKERCMD_OPT_ELTORITO_FLOPPY_144, RTGETOPT_REQ_NOTHING },
+ { "--eltorito-floppy-288", RTFSISOMAKERCMD_OPT_ELTORITO_FLOPPY_288, RTGETOPT_REQ_NOTHING },
+
+ { "--iprt-iso-maker-file-marker", RTFSISOMAKERCMD_OPT_IPRT_ISO_MAKER_FILE_MARKER, RTGETOPT_REQ_STRING },
+ { "--iprt-iso-maker-file-marker-ms", RTFSISOMAKERCMD_OPT_IPRT_ISO_MAKER_FILE_MARKER, RTGETOPT_REQ_STRING },
+ { "--iprt-iso-maker-file-marker-ms-crt", RTFSISOMAKERCMD_OPT_IPRT_ISO_MAKER_FILE_MARKER, RTGETOPT_REQ_STRING },
+ { "--iprt-iso-maker-file-marker-bourne", RTFSISOMAKERCMD_OPT_IPRT_ISO_MAKER_FILE_MARKER, RTGETOPT_REQ_STRING },
+ { "--iprt-iso-maker-file-marker-bourne-sh", RTFSISOMAKERCMD_OPT_IPRT_ISO_MAKER_FILE_MARKER, RTGETOPT_REQ_STRING },
+
+ { "--output-buffer-size", RTFSISOMAKERCMD_OPT_OUTPUT_BUFFER_SIZE, RTGETOPT_REQ_UINT32 },
+ { "--random-output-buffer-size", RTFSISOMAKERCMD_OPT_RANDOM_OUTPUT_BUFFER_SIZE, RTGETOPT_REQ_NOTHING },
+ { "--random-order-verification", RTFSISOMAKERCMD_OPT_RANDOM_ORDER_VERIFICATION, RTGETOPT_REQ_UINT32 },
+
+#define DD(a_szLong, a_chShort, a_fFlags) { a_szLong, a_chShort, a_fFlags }, { "-" a_szLong, a_chShort, a_fFlags }
+
+ /*
+ * genisoimage/mkisofs compatibility options we've implemented:
+ */
+ /* booting: */
+ { "--generic-boot", 'G', RTGETOPT_REQ_STRING },
+ DD("-eltorito-boot", 'b', RTGETOPT_REQ_STRING ),
+ DD("-eltorito-alt-boot", RTFSISOMAKERCMD_OPT_ELTORITO_NEW_ENTRY, RTGETOPT_REQ_NOTHING ),
+ DD("-eltorito-platform-id", RTFSISOMAKERCMD_OPT_ELTORITO_PLATFORM_ID, RTGETOPT_REQ_STRING ),
+ DD("-hard-disk-boot", RTFSISOMAKERCMD_OPT_ELTORITO_HARD_DISK_BOOT, RTGETOPT_REQ_NOTHING ),
+ DD("-no-emulation-boot", RTFSISOMAKERCMD_OPT_ELTORITO_NO_EMULATION_BOOT, RTGETOPT_REQ_NOTHING ),
+ DD("-no-boot", RTFSISOMAKERCMD_OPT_ELTORITO_NO_BOOT, RTGETOPT_REQ_NOTHING ),
+ DD("-boot-load-seg", RTFSISOMAKERCMD_OPT_ELTORITO_LOAD_SEG, RTGETOPT_REQ_UINT16 ),
+ DD("-boot-load-size", RTFSISOMAKERCMD_OPT_ELTORITO_LOAD_SIZE, RTGETOPT_REQ_UINT16 ),
+ DD("-boot-info-table", RTFSISOMAKERCMD_OPT_ELTORITO_INFO_TABLE, RTGETOPT_REQ_NOTHING ),
+ { "--boot-catalog", 'c', RTGETOPT_REQ_STRING },
+
+ /* String props: */
+ DD("-abstract", RTFSISOMAKERCMD_OPT_ABSTRACT_FILE_ID, RTGETOPT_REQ_STRING ),
+ { "--application-id", 'A', RTGETOPT_REQ_STRING },
+ DD("-biblio", RTFSISOMAKERCMD_OPT_BIBLIOGRAPHIC_FILE_ID, RTGETOPT_REQ_STRING ),
+ DD("-copyright", RTFSISOMAKERCMD_OPT_COPYRIGHT_FILE_ID, RTGETOPT_REQ_STRING ),
+ DD("-publisher", 'P', RTGETOPT_REQ_STRING ),
+ { "--preparer", 'p', RTGETOPT_REQ_STRING },
+ DD("-sysid", RTFSISOMAKERCMD_OPT_SYSTEM_ID, RTGETOPT_REQ_STRING ),
+ { "--volume-id", RTFSISOMAKERCMD_OPT_VOLUME_ID, RTGETOPT_REQ_STRING }, /* should've been '-V' */
+ DD("-volid", RTFSISOMAKERCMD_OPT_VOLUME_ID, RTGETOPT_REQ_STRING ),
+ DD("-volset", RTFSISOMAKERCMD_OPT_VOLUME_SET_ID, RTGETOPT_REQ_STRING ),
+
+ /* Other: */
+ DD("-file-mode", RTFSISOMAKERCMD_OPT_FILE_MODE, RTGETOPT_REQ_UINT32 | RTGETOPT_FLAG_OCT ),
+ DD("-dir-mode", RTFSISOMAKERCMD_OPT_DIR_MODE, RTGETOPT_REQ_UINT32 | RTGETOPT_FLAG_OCT ),
+ DD("-new-dir-mode", RTFSISOMAKERCMD_OPT_NEW_DIR_MODE, RTGETOPT_REQ_UINT32 | RTGETOPT_FLAG_OCT ),
+ DD("-graft-points", RTFSISOMAKERCMD_OPT_GRAFT_POINTS, RTGETOPT_REQ_NOTHING ),
+ DD("--iso-level", RTFSISOMAKERCMD_OPT_ISO_LEVEL, RTGETOPT_REQ_UINT8 ),
+ { "--long-names", 'l', RTGETOPT_REQ_NOTHING },
+ { "--output", 'o', RTGETOPT_REQ_STRING },
+ { "--joliet", 'J', RTGETOPT_REQ_NOTHING },
+ DD("-ucs-level", RTFSISOMAKERCMD_OPT_JOLIET_LEVEL, RTGETOPT_REQ_UINT8 ),
+ DD("-rock", 'R', RTGETOPT_REQ_NOTHING ),
+ DD("-rational-rock", 'r', RTGETOPT_REQ_NOTHING ),
+ DD("-pad", RTFSISOMAKERCMD_OPT_PAD, RTGETOPT_REQ_NOTHING ),
+ DD("-no-pad", RTFSISOMAKERCMD_OPT_NO_PAD, RTGETOPT_REQ_NOTHING ),
+
+ /*
+ * genisoimage/mkisofs compatibility:
+ */
+ DD("-allow-limited-size", RTFSISOMAKERCMD_OPT_ALLOW_LIMITED_SIZE, RTGETOPT_REQ_NOTHING ),
+ DD("-allow-leading-dots", RTFSISOMAKERCMD_OPT_ALLOW_LEADING_DOTS, RTGETOPT_REQ_NOTHING ),
+ DD("-ldots", RTFSISOMAKERCMD_OPT_ALLOW_LEADING_DOTS, RTGETOPT_REQ_NOTHING ),
+ DD("-allow-lowercase", RTFSISOMAKERCMD_OPT_ALLOW_LOWERCASE, RTGETOPT_REQ_NOTHING ),
+ DD("-allow-multidot", RTFSISOMAKERCMD_OPT_ALLOW_MULTI_DOT, RTGETOPT_REQ_NOTHING ),
+ DD("-cache-inodes", RTFSISOMAKERCMD_OPT_DETECT_HARDLINKS, RTGETOPT_REQ_NOTHING ),
+ DD("-no-cache-inodes", RTFSISOMAKERCMD_OPT_NO_DETECT_HARDLINKS, RTGETOPT_REQ_NOTHING ),
+ DD("-alpha-boot", RTFSISOMAKERCMD_OPT_ALPHA_BOOT, RTGETOPT_REQ_STRING ),
+ DD("-hppa-bootloader", RTFSISOMAKERCMD_OPT_HPPA_BOOTLOADER, RTGETOPT_REQ_STRING ),
+ DD("-hppa-cmdline", RTFSISOMAKERCMD_OPT_HPPA_CMDLINE, RTGETOPT_REQ_STRING ),
+ DD("-hppa-kernel-32", RTFSISOMAKERCMD_OPT_HPPA_KERNEL_32, RTGETOPT_REQ_STRING ),
+ DD("-hppa-kernel-64", RTFSISOMAKERCMD_OPT_HPPA_KERNEL_64, RTGETOPT_REQ_STRING ),
+ DD("-hppa-ramdisk", RTFSISOMAKERCMD_OPT_HPPA_RAMDISK, RTGETOPT_REQ_STRING ),
+ DD("-mips-boot", RTFSISOMAKERCMD_OPT_MIPS_BOOT, RTGETOPT_REQ_STRING ),
+ DD("-mipsel-boot", RTFSISOMAKERCMD_OPT_MIPSEL_BOOT, RTGETOPT_REQ_STRING ),
+ DD("-sparc-boot", 'B', RTGETOPT_REQ_STRING ),
+ { "--cd-extra", 'C', RTGETOPT_REQ_STRING },
+ DD("-check-oldnames", RTFSISOMAKERCMD_OPT_CHECK_OLD_NAMES, RTGETOPT_REQ_NOTHING ),
+ DD("-check-session", RTFSISOMAKERCMD_OPT_CHECK_SESSION, RTGETOPT_REQ_STRING ),
+ { "--dont-append-dot", 'd', RTGETOPT_REQ_NOTHING },
+ { "--deep-directories", 'D', RTGETOPT_REQ_NOTHING },
+ DD("-dvd-video", RTFSISOMAKERCMD_OPT_DVD_VIDEO, RTGETOPT_REQ_NOTHING ),
+ DD("-follow-symlinks", 'f', RTGETOPT_REQ_NOTHING ),
+ DD("-gid", RTFSISOMAKERCMD_OPT_GID, RTGETOPT_REQ_UINT32 ),
+ DD("-gui", RTFSISOMAKERCMD_OPT_GUI, RTGETOPT_REQ_NOTHING ),
+ DD("-hide", RTFSISOMAKERCMD_OPT_HIDE, RTGETOPT_REQ_STRING ),
+ DD("-hide-list", RTFSISOMAKERCMD_OPT_HIDE_LIST, RTGETOPT_REQ_STRING ),
+ DD("-hidden", RTFSISOMAKERCMD_OPT_HIDDEN, RTGETOPT_REQ_STRING ),
+ DD("-hidden-list", RTFSISOMAKERCMD_OPT_HIDDEN_LIST, RTGETOPT_REQ_STRING ),
+ DD("-hide-joliet", RTFSISOMAKERCMD_OPT_HIDE_JOLIET, RTGETOPT_REQ_STRING ),
+ DD("-hide-joliet-list", RTFSISOMAKERCMD_OPT_HIDE_JOLIET_LIST, RTGETOPT_REQ_STRING ),
+ DD("-hide-joliet-trans-tbl", RTFSISOMAKERCMD_OPT_HIDE_JOLIET_TRANS_TBL, RTGETOPT_REQ_NOTHING ),
+ DD("-hide-rr-moved", RTFSISOMAKERCMD_OPT_HIDE_RR_MOVED, RTGETOPT_REQ_NOTHING ),
+ DD("-input-charset", RTFSISOMAKERCMD_OPT_INPUT_CHARSET, RTGETOPT_REQ_STRING ),
+ DD("-output-charset", RTFSISOMAKERCMD_OPT_OUTPUT_CHARSET, RTGETOPT_REQ_STRING ),
+ DD("-joliet-long", RTFSISOMAKERCMD_OPT_JOLIET_LONG, RTGETOPT_REQ_NOTHING ),
+ DD("-jcharset", RTFSISOMAKERCMD_OPT_JOLIET_CHARSET, RTGETOPT_REQ_STRING ),
+ { "--leading-dot", 'L', RTGETOPT_REQ_NOTHING },
+ DD("-jigdo-jigdo", RTFSISOMAKERCMD_OPT_JIGDO_JIGDO, RTGETOPT_REQ_STRING ),
+ DD("-jigdo-template", RTFSISOMAKERCMD_OPT_JIGDO_TEMPLATE, RTGETOPT_REQ_STRING ),
+ DD("-jigdo-min-file-size", RTFSISOMAKERCMD_OPT_JIGDO_MIN_FILE_SIZE, RTGETOPT_REQ_UINT64 ),
+ DD("-jigdo-force-md5", RTFSISOMAKERCMD_OPT_JIGDO_FORCE_MD5, RTGETOPT_REQ_STRING ),
+ DD("-jigdo-exclude", RTFSISOMAKERCMD_OPT_JIGDO_EXCLUDE, RTGETOPT_REQ_STRING ),
+ DD("-jigdo-map", RTFSISOMAKERCMD_OPT_JIGDO_MAP, RTGETOPT_REQ_STRING ),
+ DD("-md5-list", RTFSISOMAKERCMD_OPT_JIGDO_MD5_LIST, RTGETOPT_REQ_STRING ),
+ DD("-jigdo-template-compress", RTFSISOMAKERCMD_OPT_JIGDO_COMPRESS, RTGETOPT_REQ_STRING ),
+ DD("-log-file", RTFSISOMAKERCMD_OPT_LOG_FILE, RTGETOPT_REQ_STRING ),
+ { "--exclude", 'm', RTGETOPT_REQ_STRING },
+ { "--exclude", 'x', RTGETOPT_REQ_STRING },
+ DD("-exclude-list", RTFSISOMAKERCMD_OPT_EXCLUDE_LIST, RTGETOPT_REQ_STRING ),
+ DD("-max-iso9660-filenames", RTFSISOMAKERCMD_OPT_MAX_ISO9660_FILENAMES, RTGETOPT_REQ_NOTHING ),
+ { "--merge", 'M', RTGETOPT_REQ_STRING },
+ DD("-dev", 'M', RTGETOPT_REQ_STRING ),
+ { "--omit-version-numbers", 'N', RTGETOPT_REQ_NOTHING },
+ DD("-nobak", RTFSISOMAKERCMD_OPT_NO_BACKUP_FILES, RTGETOPT_REQ_NOTHING ),
+ DD("-no-bak", RTFSISOMAKERCMD_OPT_NO_BACKUP_FILES, RTGETOPT_REQ_NOTHING ),
+ DD("-force-rr", RTFSISOMAKERCMD_OPT_FORCE_RR, RTGETOPT_REQ_NOTHING ),
+ DD("-no-rr", RTFSISOMAKERCMD_OPT_NO_RR, RTGETOPT_REQ_NOTHING ),
+ DD("-no-split-symlink-components", RTFSISOMAKERCMD_OPT_NO_SPLIT_SYMLINK_COMPONENTS, RTGETOPT_REQ_NOTHING ),
+ DD("-no-split-symlink-fields", RTFSISOMAKERCMD_OPT_NO_SPLIT_SYMLINK_FIELDS, RTGETOPT_REQ_NOTHING ),
+ DD("-path-list", RTFSISOMAKERCMD_OPT_PATH_LIST, RTGETOPT_REQ_STRING ),
+ DD("-print-size", RTFSISOMAKERCMD_OPT_PRINT_SIZE, RTGETOPT_REQ_NOTHING ),
+ DD("-quiet", RTFSISOMAKERCMD_OPT_QUIET, RTGETOPT_REQ_NOTHING ),
+ DD("-relaxed-filenames", RTFSISOMAKERCMD_OPT_RELAXED_FILENAMES, RTGETOPT_REQ_NOTHING ),
+ DD("-root", RTFSISOMAKERCMD_OPT_ROOT, RTGETOPT_REQ_STRING ),
+ DD("-old-root", RTFSISOMAKERCMD_OPT_OLD_ROOT, RTGETOPT_REQ_STRING ),
+ DD("-sort", RTFSISOMAKERCMD_OPT_SORT, RTGETOPT_REQ_STRING ),
+ DD("-sparc-boot", RTFSISOMAKERCMD_OPT_SPARC_BOOT, RTGETOPT_REQ_STRING ),
+ DD("-sparc-label", RTFSISOMAKERCMD_OPT_SPARC_LABEL, RTGETOPT_REQ_STRING ),
+ DD("-split-output", RTFSISOMAKERCMD_OPT_SPLIT_OUTPUT, RTGETOPT_REQ_NOTHING ),
+ DD("-stream-media-size", RTFSISOMAKERCMD_OPT_STREAM_MEDIA_SIZE, RTGETOPT_REQ_UINT64 ),
+ DD("-stream-file-name", RTFSISOMAKERCMD_OPT_STREAM_FILE_NAME, RTGETOPT_REQ_STRING ),
+ DD("-sunx86-boot", RTFSISOMAKERCMD_OPT_SUNX86_BOOT, RTGETOPT_REQ_STRING ),
+ DD("-sunx86-label", RTFSISOMAKERCMD_OPT_SUNX86_LABEL, RTGETOPT_REQ_STRING ),
+ { "--trans-tbl", 'T', RTGETOPT_REQ_NOTHING },
+ DD("-table-name", RTFSISOMAKERCMD_OPT_TRANS_TBL_NAME, RTGETOPT_REQ_STRING ),
+ DD("-udf", RTFSISOMAKERCMD_OPT_UDF, RTGETOPT_REQ_NOTHING ),
+ DD("-uid", RTFSISOMAKERCMD_OPT_UID, RTGETOPT_REQ_UINT32 ),
+ DD("-use-fileversion", RTFSISOMAKERCMD_OPT_USE_FILE_VERSION, RTGETOPT_REQ_NOTHING ),
+ { "--untranslated-filenames", 'U', RTGETOPT_REQ_NOTHING },
+ DD("-no-iso-translate", RTFSISOMAKERCMD_OPT_NO_ISO_TRANSLATE, RTGETOPT_REQ_NOTHING ),
+ DD("-volset-size", RTFSISOMAKERCMD_OPT_VOLUME_SET_SIZE, RTGETOPT_REQ_UINT32 ),
+ DD("-volset-seqno", RTFSISOMAKERCMD_OPT_VOLUME_SET_SEQ_NO, RTGETOPT_REQ_UINT32 ),
+ { "--transpared-compression", 'z', RTGETOPT_REQ_NOTHING },
+
+ /* HFS and ISO-9660 apple extensions. */
+ DD("-hfs", RTFSISOMAKERCMD_OPT_HFS_ENABLE, RTGETOPT_REQ_NOTHING ),
+ DD("-apple", RTFSISOMAKERCMD_OPT_APPLE, RTGETOPT_REQ_NOTHING ),
+ DD("-map", RTFSISOMAKERCMD_OPT_HFS_MAP, RTGETOPT_REQ_STRING ),
+ DD("-magic", RTFSISOMAKERCMD_OPT_HFS_MAGIC, RTGETOPT_REQ_STRING ),
+ DD("-hfs-creator", RTFSISOMAKERCMD_OPT_HFS_CREATOR, RTGETOPT_REQ_STRING ),
+ DD("-hfs-type", RTFSISOMAKERCMD_OPT_HFS_TYPE, RTGETOPT_REQ_STRING ),
+ DD("-probe", RTFSISOMAKERCMD_OPT_HFS_PROBE, RTGETOPT_REQ_NOTHING ),
+ DD("-no-desktop", RTFSISOMAKERCMD_OPT_HFS_NO_DESKTOP, RTGETOPT_REQ_NOTHING ),
+ DD("-mac-name", RTFSISOMAKERCMD_OPT_HFS_MAC_NAME, RTGETOPT_REQ_NOTHING ),
+ DD("-boot-hfs-file", RTFSISOMAKERCMD_OPT_HFS_BOOT_FILE, RTGETOPT_REQ_STRING ),
+ DD("-part", RTFSISOMAKERCMD_OPT_HFS_PART, RTGETOPT_REQ_NOTHING ),
+ DD("-auto", RTFSISOMAKERCMD_OPT_HFS_AUTO, RTGETOPT_REQ_STRING ),
+ DD("-cluster-size", RTFSISOMAKERCMD_OPT_HFS_CLUSTER_SIZE, RTGETOPT_REQ_UINT32 ),
+ DD("-hide-hfs", RTFSISOMAKERCMD_OPT_HFS_HIDE, RTGETOPT_REQ_STRING ),
+ DD("-hide-hfs-list", RTFSISOMAKERCMD_OPT_HFS_HIDE_LIST, RTGETOPT_REQ_STRING ),
+ DD("-hfs-volid", RTFSISOMAKERCMD_OPT_HFS_VOL_ID, RTGETOPT_REQ_STRING ),
+ DD("-icon-position", RTFSISOMAKERCMD_OPT_HFS_ICON_POSITION, RTGETOPT_REQ_NOTHING ),
+ DD("-root-info", RTFSISOMAKERCMD_OPT_HFS_ROOT_INFO, RTGETOPT_REQ_STRING ),
+ DD("-prep-boot", RTFSISOMAKERCMD_OPT_HFS_PREP_BOOT, RTGETOPT_REQ_STRING ),
+ DD("-chrp-boot", RTFSISOMAKERCMD_OPT_HFS_CHRP_BOOT, RTGETOPT_REQ_NOTHING ),
+ DD("-input-hfs-charset", RTFSISOMAKERCMD_OPT_HFS_INPUT_CHARSET, RTGETOPT_REQ_STRING ),
+ DD("-output-hfs-charset", RTFSISOMAKERCMD_OPT_HFS_OUTPUT_CHARSET, RTGETOPT_REQ_STRING ),
+ DD("-hfs-unlock", RTFSISOMAKERCMD_OPT_HFS_UNLOCK, RTGETOPT_REQ_NOTHING ),
+ DD("-hfs-bless", RTFSISOMAKERCMD_OPT_HFS_BLESS, RTGETOPT_REQ_STRING ),
+ DD("-hfs-parms", RTFSISOMAKERCMD_OPT_HFS_PARMS, RTGETOPT_REQ_STRING ),
+ { "--cap", RTFSISOMAKERCMD_OPT_HFS_CAP, RTGETOPT_REQ_NOTHING },
+ { "--netatalk", RTFSISOMAKERCMD_OPT_HFS_NETATALK, RTGETOPT_REQ_NOTHING },
+ { "--double", RTFSISOMAKERCMD_OPT_HFS_DOUBLE, RTGETOPT_REQ_NOTHING },
+ { "--ethershare", RTFSISOMAKERCMD_OPT_HFS_ETHERSHARE, RTGETOPT_REQ_NOTHING },
+ { "--ushare", RTFSISOMAKERCMD_OPT_HFS_USHARE, RTGETOPT_REQ_NOTHING },
+ { "--exchange", RTFSISOMAKERCMD_OPT_HFS_EXCHANGE, RTGETOPT_REQ_NOTHING },
+ { "--sgi", RTFSISOMAKERCMD_OPT_HFS_SGI, RTGETOPT_REQ_NOTHING },
+ { "--xinet", RTFSISOMAKERCMD_OPT_HFS_XINET, RTGETOPT_REQ_NOTHING },
+ { "--macbin", RTFSISOMAKERCMD_OPT_HFS_MACBIN, RTGETOPT_REQ_NOTHING },
+ { "--single", RTFSISOMAKERCMD_OPT_HFS_SINGLE, RTGETOPT_REQ_NOTHING },
+ { "--dave", RTFSISOMAKERCMD_OPT_HFS_DAVE, RTGETOPT_REQ_NOTHING },
+ { "--sfm", RTFSISOMAKERCMD_OPT_HFS_SFM, RTGETOPT_REQ_NOTHING },
+ { "--osx-double", RTFSISOMAKERCMD_OPT_HFS_OSX_DOUBLE, RTGETOPT_REQ_NOTHING },
+ { "--osx-hfs", RTFSISOMAKERCMD_OPT_HFS_OSX_HFS, RTGETOPT_REQ_NOTHING },
+#undef DD
+};
+
+#ifndef RT_OS_OS2 /* fixme */
+# include "isomakercmd-man.h"
+#endif
+
+
+/*********************************************************************************************************************************
+* Internal Functions *
+*********************************************************************************************************************************/
+static int rtFsIsoMakerCmdParse(PRTFSISOMAKERCMDOPTS pOpts, unsigned cArgs, char **papszArgs, unsigned cDepth);
+
+
+/**
+ * Wrapper around RTErrInfoSetV / RTMsgErrorV.
+ *
+ * @returns @a rc
+ * @param pOpts The ISO maker command instance.
+ * @param rc The return code.
+ * @param pszFormat The message format.
+ * @param ... The message format arguments.
+ */
+static int rtFsIsoMakerCmdErrorRc(PRTFSISOMAKERCMDOPTS pOpts, int rc, const char *pszFormat, ...)
+{
+ va_list va;
+ va_start(va, pszFormat);
+ if (pOpts->pErrInfo)
+ RTErrInfoSetV(pOpts->pErrInfo, rc, pszFormat, va);
+ else
+ RTMsgErrorV(pszFormat, va);
+ va_end(va);
+ return rc;
+}
+
+
+/**
+ * Wrapper around RTErrInfoSetV / RTMsgErrorV for doing the job of
+ * RTVfsChainMsgError.
+ *
+ * @returns @a rc
+ * @param pOpts The ISO maker command instance.
+ * @param pszFunction The API called.
+ * @param pszSpec The VFS chain specification or file path passed to the.
+ * @param rc The return code.
+ * @param offError The error offset value returned (0 if not captured).
+ * @param pErrInfo Additional error information. Optional.
+ */
+static int rtFsIsoMakerCmdChainError(PRTFSISOMAKERCMDOPTS pOpts, const char *pszFunction, const char *pszSpec, int rc,
+ uint32_t offError, PRTERRINFO pErrInfo)
+{
+ if (RTErrInfoIsSet(pErrInfo))
+ {
+ if (offError > 0)
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc,
+ "%s failed with rc=%Rrc: %s\n"
+ " '%s'\n"
+ " %*s^",
+ pszFunction, rc, pErrInfo->pszMsg, pszSpec, offError, "");
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "%s failed to open '%s': %Rrc: %s",
+ pszFunction, pszSpec, rc, pErrInfo->pszMsg);
+ }
+ else
+ {
+ if (offError > 0)
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc,
+ "%s failed with rc=%Rrc:\n"
+ " '%s'\n"
+ " %*s^",
+ pszFunction, rc, pszSpec, offError, "");
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "%s failed to open '%s': %Rrc", pszFunction, pszSpec, rc);
+ }
+ return rc;
+}
+
+
+/**
+ * Wrapper around RTErrInfoSetV / RTMsgErrorV for displaying syntax errors.
+ *
+ * @returns VERR_INVALID_PARAMETER
+ * @param pOpts The ISO maker command instance.
+ * @param pszFormat The message format.
+ * @param ... The message format arguments.
+ */
+static int rtFsIsoMakerCmdSyntaxError(PRTFSISOMAKERCMDOPTS pOpts, const char *pszFormat, ...)
+{
+ va_list va;
+ va_start(va, pszFormat);
+ if (pOpts->pErrInfo)
+ RTErrInfoSetV(pOpts->pErrInfo, VERR_INVALID_PARAMETER, pszFormat, va);
+ else
+ RTMsgErrorV(pszFormat, va);
+ va_end(va);
+ return VERR_INVALID_PARAMETER;
+}
+
+
+/**
+ * Wrapper around RTPrintfV / RTLogRelPrintfV.
+ *
+ * @param pOpts The ISO maker command instance.
+ * @param pszFormat The message format.
+ * @param ... The message format arguments.
+ */
+static void rtFsIsoMakerPrintf(PRTFSISOMAKERCMDOPTS pOpts, const char *pszFormat, ...)
+{
+ va_list va;
+ va_start(va, pszFormat);
+ if (pOpts->pErrInfo)
+ RTLogRelPrintfV(pszFormat, va);
+ else
+ RTPrintfV(pszFormat, va);
+ va_end(va);
+}
+
+/**
+ * Deletes the state and returns @a rc.
+ *
+ * @returns @a rc.
+ * @param pOpts The ISO maker command instance to delete.
+ * @param rc The status code to return.
+ */
+static int rtFsIsoMakerCmdDeleteState(PRTFSISOMAKERCMDOPTS pOpts, int rc)
+{
+ if (pOpts->hIsoMaker != NIL_RTFSISOMAKER)
+ {
+ RTFsIsoMakerRelease(pOpts->hIsoMaker);
+ pOpts->hIsoMaker = NIL_RTFSISOMAKER;
+ }
+
+ while (pOpts->iSrcStack >= 0)
+ {
+ RTVfsDirRelease(pOpts->aSrcStack[pOpts->iSrcStack].hSrcDir);
+ RTVfsRelease(pOpts->aSrcStack[pOpts->iSrcStack].hSrcVfs);
+ pOpts->aSrcStack[pOpts->iSrcStack].hSrcDir = NIL_RTVFSDIR;
+ pOpts->aSrcStack[pOpts->iSrcStack].hSrcVfs = NIL_RTVFS;
+ pOpts->iSrcStack--;
+ }
+
+ return rc;
+}
+
+
+/**
+ * Print the usage.
+ *
+ * @param pOpts Options for print metho.
+ * @param pszProgName The program name.
+ */
+static void rtFsIsoMakerCmdUsage(PRTFSISOMAKERCMDOPTS pOpts, const char *pszProgName)
+{
+#ifndef RT_OS_OS2 /* fixme */
+ if (!pOpts->pErrInfo)
+ RTMsgRefEntryHelp(g_pStdOut, &g_viso);
+ else
+#endif
+ rtFsIsoMakerPrintf(pOpts, "Usage: %s [options] [@commands.rsp] <filespec...>\n",
+ RTPathFilename(pszProgName));
+}
+
+
+/**
+ * Verifies the image content by reading blocks in random order.
+ *
+ * This is for exercise the virtual ISO code better and test that we get the
+ * same data when reading something twice.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param hVfsSrcFile The source file (virtual ISO).
+ * @param hVfsDstFile The destination file (image file on disk).
+ * @param cbImage The size of the ISO.
+ */
+static int rtFsIsoMakerCmdVerifyImageInRandomOrder(PRTFSISOMAKERCMDOPTS pOpts, RTVFSFILE hVfsSrcFile,
+ RTVFSFILE hVfsDstFile, uint64_t cbImage)
+{
+ /*
+ * Figure the buffer (block) size and allocate a bitmap for noting down blocks we've covered.
+ */
+ int rc;
+ size_t cbBuf = RT_MAX(pOpts->cbRandomOrderVerifciationBlock, 1);
+ uint64_t cBlocks64 = (cbImage + cbBuf - 1) / cbBuf;
+ if (cBlocks64 > _512M)
+ return rtFsIsoMakerCmdErrorRc(pOpts, VERR_OUT_OF_RANGE,
+ "verification block count too high: cBlocks=%#RX64 (cbBuf=%#zx), max 512M", cBlocks64, cbBuf);
+ uint32_t cBlocks = (uint32_t)cBlocks64;
+ uint32_t cbBitmap = (cBlocks + 63) / 8;
+ if (cbBitmap > _64M)
+ return rtFsIsoMakerCmdErrorRc(pOpts, VERR_OUT_OF_RANGE,
+ "verification bitmap too big: cbBitmap=%#RX32 (cbBuf=%#zx), max 64MB", cbBitmap, cbBuf);
+ void *pvSrcBuf = RTMemTmpAlloc(cbBuf);
+ void *pvDstBuf = RTMemTmpAlloc(cbBuf);
+ void *pvBitmap = RTMemTmpAllocZ(cbBitmap);
+ if (pvSrcBuf && pvDstBuf && pvBitmap)
+ {
+ /* Must set the unused bits in the top qword. */
+ for (uint32_t i = RT_ALIGN_32(cBlocks, 64) - 1; i >= cBlocks; i--)
+ ASMBitSet(pvBitmap, i);
+
+ /*
+ * Do the verification.
+ */
+ rtFsIsoMakerPrintf(pOpts, "Verifying image in random order using %zu (%#zx) byte blocks: %#RX32 in blocks\n",
+ cbBuf, cbBuf, cBlocks);
+
+ rc = VINF_SUCCESS;
+ uint64_t cLeft = cBlocks;
+ while (cLeft-- > 0)
+ {
+ /*
+ * Figure out which block to check next.
+ */
+ uint32_t iBlock = RTRandU32Ex(0, cBlocks - 1);
+ if (!ASMBitTestAndSet(pvBitmap, iBlock))
+ Assert(iBlock < cBlocks);
+ else
+ {
+ /* try 32 other random numbers. */
+ bool fBitSet;
+ unsigned cTries = 0;
+ do
+ {
+ iBlock = RTRandU32Ex(0, cBlocks - 1);
+ fBitSet = ASMBitTestAndSet(pvBitmap, iBlock);
+ } while (fBitSet && ++cTries < 32);
+ if (fBitSet)
+ {
+ /* Look for the next clear bit after it (with wrap around). */
+ int iHit = ASMBitNextClear(pvBitmap, RT_ALIGN_32(cBlocks, 64), iBlock);
+ Assert(iHit < (int32_t)cBlocks);
+ if (iHit < 0)
+ {
+ iHit = ASMBitFirstClear(pvBitmap, RT_ALIGN_32(iBlock, 64));
+ Assert(iHit < (int32_t)cBlocks);
+ }
+ if (iHit >= 0)
+ {
+ fBitSet = ASMBitTestAndSet(pvBitmap, iHit);
+ if (!fBitSet)
+ iBlock = iHit;
+ else
+ {
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_INTERNAL_ERROR_3,
+ "Bitmap weirdness: iHit=%#x iBlock=%#x cLeft=%#x cBlocks=%#x",
+ iHit, iBlock, cLeft, cBlocks);
+ if (!pOpts->pErrInfo)
+ RTMsgInfo("Bitmap: %#RX32 bytes\n%.*Rhxd", cbBitmap, cbBitmap, pvBitmap);
+ break;
+ }
+ }
+ else
+ {
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_INTERNAL_ERROR_2,
+ "Bitmap weirdness: iBlock=%#x cLeft=%#x cBlocks=%#x",
+ iBlock, cLeft, cBlocks);
+ if (!pOpts->pErrInfo)
+ RTMsgInfo("Bitmap: %#RX32 bytes\n%.*Rhxd", cbBitmap, cbBitmap, pvBitmap);
+ break;
+ }
+ }
+ }
+ Assert(ASMBitTest(pvBitmap, iBlock));
+
+ /*
+ * Figure out how much and where to read (last block fun).
+ */
+ uint64_t offBlock = iBlock * (uint64_t)cbBuf;
+ size_t cbToRead = cbBuf;
+ if (iBlock + 1 < cBlocks)
+ { /* likely */ }
+ else if (cbToRead > cbImage - offBlock)
+ cbToRead = (size_t)(cbImage - offBlock);
+ Assert(offBlock + cbToRead <= cbImage);
+
+ /*
+ * Read the blocks.
+ */
+ //RTPrintf("Reading block #%#x at %#RX64\n", iBlock, offBlock);
+ rc = RTVfsFileReadAt(hVfsDstFile, offBlock, pvDstBuf, cbToRead, NULL);
+ if (RT_SUCCESS(rc))
+ {
+ memset(pvSrcBuf, 0xdd, cbBuf);
+ rc = RTVfsFileReadAt(hVfsSrcFile, offBlock, pvSrcBuf, cbToRead, NULL);
+ if (RT_SUCCESS(rc))
+ {
+ if (memcmp(pvDstBuf, pvSrcBuf, cbToRead) == 0)
+ continue;
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_MISMATCH,
+ "Block #%#x differs! offBlock=%#RX64 cbToRead=%#zu\n"
+ "Virtual ISO (source):\n%.*Rhxd\nWritten ISO (destination):\n%.*Rhxd",
+ iBlock, offBlock, cbToRead, cbToRead, pvSrcBuf, cbToRead, pvDstBuf);
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc,
+ "Error reading %#zx bytes source (virtual ISO) block #%#x at %#RX64: %Rrc",
+ cbToRead, iBlock, offBlock, rc);
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc,
+ "Error reading %#zx bytes destination (written ISO) block #%#x at %#RX64: %Rrc",
+ cbToRead, iBlock, offBlock, rc);
+ break;
+ }
+
+ if (RT_SUCCESS(rc))
+ rtFsIsoMakerPrintf(pOpts, "Written image verified fine!\n");
+ }
+ else if (!pvSrcBuf || !pvDstBuf)
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_NO_TMP_MEMORY, "RTMemTmpAlloc(%#zx) failed", cbBuf);
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_NO_TMP_MEMORY, "RTMemTmpAlloc(%#zx) failed", cbBuf);
+ RTMemTmpFree(pvBitmap);
+ RTMemTmpFree(pvDstBuf);
+ RTMemTmpFree(pvSrcBuf);
+ return rc;
+}
+
+
+/**
+ * Writes the image to file, no checking, no special buffering.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param hVfsSrcFile The source file from the ISO maker.
+ * @param hVfsDstFile The destination file (image file on disk).
+ * @param cbImage The size of the ISO.
+ * @param ppvBuf Pointer to the buffer pointer. The buffer will
+ * be reallocated, but we want the luxary of the
+ * caller freeing it.
+ */
+static int rtFsIsoMakerCmdWriteImageRandomBufferSize(PRTFSISOMAKERCMDOPTS pOpts, RTVFSFILE hVfsSrcFile, RTVFSFILE hVfsDstFile,
+ uint64_t cbImage, void **ppvBuf)
+{
+ /*
+ * Copy the virtual image bits to the destination file.
+ */
+ void *pvBuf = *ppvBuf;
+ uint32_t cbMaxBuf = pOpts->cbOutputReadBuffer > 0 ? pOpts->cbOutputReadBuffer : _64K;
+ uint64_t offImage = 0;
+ while (offImage < cbImage)
+ {
+ /* Figure out how much to copy this time. */
+ size_t cbToCopy = RTRandU32Ex(1, cbMaxBuf - 1);
+ if (offImage + cbToCopy < cbImage)
+ { /* likely */ }
+ else
+ cbToCopy = (size_t)(cbImage - offImage);
+ RTMemFree(pvBuf);
+ *ppvBuf = pvBuf = RTMemTmpAlloc(cbToCopy);
+ if (pvBuf)
+ {
+ /* Do the copying. */
+ int rc = RTVfsFileReadAt(hVfsSrcFile, offImage, pvBuf, cbToCopy, NULL);
+ if (RT_SUCCESS(rc))
+ {
+ rc = RTVfsFileWriteAt(hVfsDstFile, offImage, pvBuf, cbToCopy, NULL);
+ if (RT_SUCCESS(rc))
+ offImage += cbToCopy;
+ else
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error %Rrc writing %#zx bytes at offset %#RX64 to '%s'",
+ rc, cbToCopy, offImage, pOpts->pszOutFile);
+ }
+ else
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error %Rrc read %#zx bytes at offset %#RX64", rc, cbToCopy, offImage);
+ }
+ else
+ return rtFsIsoMakerCmdErrorRc(pOpts, VERR_NO_TMP_MEMORY, "RTMemTmpAlloc(%#zx) failed", cbToCopy);
+ }
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Writes the image to file, no checking, no special buffering.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param hVfsSrcFile The source file from the ISO maker.
+ * @param hVfsDstFile The destination file (image file on disk).
+ * @param cbImage The size of the ISO.
+ * @param pvBuf Pointer to read buffer.
+ * @param cbBuf The buffer size.
+ */
+static int rtFsIsoMakerCmdWriteImageSimple(PRTFSISOMAKERCMDOPTS pOpts, RTVFSFILE hVfsSrcFile, RTVFSFILE hVfsDstFile,
+ uint64_t cbImage, void *pvBuf, size_t cbBuf)
+{
+ /*
+ * Copy the virtual image bits to the destination file.
+ */
+ uint64_t offImage = 0;
+ while (offImage < cbImage)
+ {
+ /* Figure out how much to copy this time. */
+ size_t cbToCopy = cbBuf;
+ if (offImage + cbToCopy < cbImage)
+ { /* likely */ }
+ else
+ cbToCopy = (size_t)(cbImage - offImage);
+
+ /* Do the copying. */
+ int rc = RTVfsFileReadAt(hVfsSrcFile, offImage, pvBuf, cbToCopy, NULL);
+ if (RT_SUCCESS(rc))
+ {
+ rc = RTVfsFileWriteAt(hVfsDstFile, offImage, pvBuf, cbToCopy, NULL);
+ if (RT_SUCCESS(rc))
+ offImage += cbToCopy;
+ else
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error %Rrc writing %#zx bytes at offset %#RX64 to '%s'",
+ rc, cbToCopy, offImage, pOpts->pszOutFile);
+ }
+ else
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error %Rrc read %#zx bytes at offset %#RX64", rc, cbToCopy, offImage);
+ }
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Writes the image to file.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param hVfsSrcFile The source file from the ISO maker.
+ */
+static int rtFsIsoMakerCmdWriteImage(PRTFSISOMAKERCMDOPTS pOpts, RTVFSFILE hVfsSrcFile)
+{
+ /*
+ * Get the image size and setup the copy buffer.
+ */
+ uint64_t cbImage;
+ int rc = RTVfsFileQuerySize(hVfsSrcFile, &cbImage);
+ if (RT_SUCCESS(rc))
+ {
+ rtFsIsoMakerPrintf(pOpts, "Image size: %'RU64 (%#RX64) bytes\n", cbImage, cbImage);
+
+ uint32_t cbBuf = pOpts->cbOutputReadBuffer == 0 ? _1M : pOpts->cbOutputReadBuffer;
+ void *pvBuf = RTMemTmpAlloc(cbBuf);
+ if (pvBuf)
+ {
+ /*
+ * Open the output file.
+ */
+ RTVFSFILE hVfsDstFile;
+ uint32_t offError;
+ RTERRINFOSTATIC ErrInfo;
+ rc = RTVfsChainOpenFile(pOpts->pszOutFile,
+ RTFILE_O_READWRITE | RTFILE_O_CREATE_REPLACE | RTFILE_O_DENY_WRITE
+ | (0664 << RTFILE_O_CREATE_MODE_SHIFT),
+ &hVfsDstFile, &offError, RTErrInfoInitStatic(&ErrInfo));
+ if (RT_SUCCESS(rc))
+ {
+ /*
+ * Apply the desired writing method.
+ */
+ if (!pOpts->fRandomOutputReadBufferSize)
+ rc = rtFsIsoMakerCmdWriteImageRandomBufferSize(pOpts, hVfsSrcFile, hVfsDstFile, cbImage, &pvBuf);
+ else
+ rc = rtFsIsoMakerCmdWriteImageSimple(pOpts, hVfsSrcFile, hVfsDstFile, cbImage, pvBuf, cbBuf);
+ RTMemTmpFree(pvBuf);
+
+ if (RT_SUCCESS(rc) && pOpts->cbRandomOrderVerifciationBlock > 0)
+ rc = rtFsIsoMakerCmdVerifyImageInRandomOrder(pOpts, hVfsSrcFile, hVfsDstFile, cbImage);
+
+ /*
+ * Flush the output file before releasing it.
+ */
+ if (RT_SUCCESS(rc))
+ {
+ rc = RTVfsFileFlush(hVfsDstFile);
+ if (RT_FAILURE(rc))
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTVfsFileFlush failed on '%s': %Rrc", pOpts->pszOutFile, rc);
+ }
+
+ RTVfsFileRelease(hVfsDstFile);
+ }
+ else
+ {
+ RTMemTmpFree(pvBuf);
+ rc = rtFsIsoMakerCmdChainError(pOpts, "RTVfsChainOpenFile", pOpts->pszOutFile, rc, offError, &ErrInfo.Core);
+ }
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_NO_TMP_MEMORY, "RTMemTmpAlloc(%zu) failed", cbBuf);
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTVfsFileQuerySize failed: %Rrc", rc);
+ return rc;
+}
+
+
+/**
+ * Formats @a fNameSpecifiers into a '+' separated list of names.
+ *
+ * @returns pszDst
+ * @param fNameSpecifiers The name specifiers.
+ * @param pszDst The destination bufer.
+ * @param cbDst The size of the destination buffer.
+ */
+static char *rtFsIsoMakerCmdNameSpecifiersToString(uint32_t fNameSpecifiers, char *pszDst, size_t cbDst)
+{
+ static struct { const char *pszName; uint32_t cchName; uint32_t fSpec; } const s_aSpecs[] =
+ {
+ { RT_STR_TUPLE("primary"), RTFSISOMAKERCMDNAME_PRIMARY_ISO },
+ { RT_STR_TUPLE("primary-rock"), RTFSISOMAKERCMDNAME_PRIMARY_ISO_ROCK_RIDGE },
+ { RT_STR_TUPLE("primary-trans-tbl"), RTFSISOMAKERCMDNAME_PRIMARY_ISO_TRANS_TBL },
+ { RT_STR_TUPLE("joliet"), RTFSISOMAKERCMDNAME_JOLIET },
+ { RT_STR_TUPLE("joliet-rock"), RTFSISOMAKERCMDNAME_JOLIET_ROCK_RIDGE },
+ { RT_STR_TUPLE("joliet-trans-tbl"), RTFSISOMAKERCMDNAME_JOLIET_TRANS_TBL },
+ { RT_STR_TUPLE("udf"), RTFSISOMAKERCMDNAME_UDF },
+ { RT_STR_TUPLE("udf-trans-tbl"), RTFSISOMAKERCMDNAME_UDF_TRANS_TBL },
+ { RT_STR_TUPLE("hfs"), RTFSISOMAKERCMDNAME_HFS },
+ { RT_STR_TUPLE("hfs-trans-tbl"), RTFSISOMAKERCMDNAME_HFS_TRANS_TBL },
+ };
+
+ Assert(cbDst > 0);
+ char *pszRet = pszDst;
+ for (uint32_t i = 0; i < RT_ELEMENTS(s_aSpecs); i++)
+ if (s_aSpecs[i].fSpec & fNameSpecifiers)
+ {
+ if (pszDst != pszRet && cbDst > 1)
+ {
+ *pszDst++ = '+';
+ cbDst--;
+ }
+ if (cbDst > s_aSpecs[i].cchName)
+ {
+ memcpy(pszDst, s_aSpecs[i].pszName, s_aSpecs[i].cchName);
+ cbDst -= s_aSpecs[i].cchName;
+ pszDst += s_aSpecs[i].cchName;
+ }
+ else if (cbDst > 1)
+ {
+ memcpy(pszDst, s_aSpecs[i].pszName, cbDst - 1);
+ pszDst += cbDst - 1;
+ cbDst = 1;
+ }
+
+ fNameSpecifiers &= ~s_aSpecs[i].fSpec;
+ if (!fNameSpecifiers)
+ break;
+ }
+ *pszDst = '\0';
+ return pszRet;
+}
+
+
+/**
+ * Parses the --name-setup option.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param pszSpec The name setup specification.
+ */
+static int rtFsIsoMakerCmdOptNameSetup(PRTFSISOMAKERCMDOPTS pOpts, const char *pszSpec)
+{
+ /*
+ * Comma separated list of one or more specifiers.
+ */
+ uint32_t fNamespaces = 0;
+ uint32_t fPrevMajor = 0;
+ uint32_t iNameSpecifier = 0;
+ uint32_t offSpec = 0;
+ do
+ {
+ /*
+ * Parse up to the next colon or end of string.
+ */
+ uint32_t fNameSpecifier = 0;
+ char ch;
+ while ( (ch = pszSpec[offSpec]) != '\0'
+ && ch != ',')
+ {
+ if (RT_C_IS_SPACE(ch) || ch == '+' || ch == '|') /* space, '+' and '|' are allowed as name separators. */
+ offSpec++;
+ else
+ {
+ /* Find the end of the name. */
+ uint32_t offEndSpec = offSpec + 1;
+ while ( (ch = pszSpec[offEndSpec]) != '\0'
+ && ch != ','
+ && ch != '+'
+ && ch != '|'
+ && !RT_C_IS_SPACE(ch))
+ offEndSpec++;
+
+#define IS_EQUAL(a_sz) (cchName == sizeof(a_sz) - 1U && strncmp(pchName, a_sz, sizeof(a_sz) - 1U) == 0)
+ const char * const pchName = &pszSpec[offSpec];
+ uint32_t const cchName = offEndSpec - offSpec;
+ /* major namespaces */
+ if ( IS_EQUAL("iso")
+ || IS_EQUAL("primary")
+ || IS_EQUAL("iso9660")
+ || IS_EQUAL("iso-9660")
+ || IS_EQUAL("primary-iso")
+ || IS_EQUAL("iso-primary") )
+ {
+ fNameSpecifier |= RTFSISOMAKERCMDNAME_PRIMARY_ISO;
+ fNamespaces |= fPrevMajor = RTFSISOMAKER_NAMESPACE_ISO_9660;
+ }
+ else if (IS_EQUAL("joliet"))
+ {
+ fNameSpecifier |= RTFSISOMAKERCMDNAME_JOLIET;
+ fNamespaces |= fPrevMajor = RTFSISOMAKER_NAMESPACE_JOLIET;
+ }
+ else if (IS_EQUAL("udf"))
+ {
+#if 0
+ fNameSpecifier |= RTFSISOMAKERCMDNAME_UDF;
+ fNamespaces |= fPrevMajor = RTFSISOMAKER_NAMESPACE_UDF;
+#else
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "UDF support is currently not implemented");
+#endif
+ }
+ else if (IS_EQUAL("hfs") || IS_EQUAL("hfsplus"))
+ {
+#if 0
+ fNameSpecifier |= RTFSISOMAKERCMDNAME_HFS;
+ fNamespaces |= fPrevMajor = RTFSISOMAKER_NAMESPACE_HFS;
+#else
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "Hybrid HFS+ support is currently not implemented");
+#endif
+ }
+ /* rock ridge */
+ else if ( IS_EQUAL("rr")
+ || IS_EQUAL("rock")
+ || IS_EQUAL("rock-ridge"))
+ {
+ if (fPrevMajor == RTFSISOMAKERCMDNAME_PRIMARY_ISO)
+ fNameSpecifier |= RTFSISOMAKERCMDNAME_PRIMARY_ISO_ROCK_RIDGE;
+ else if (fPrevMajor == RTFSISOMAKERCMDNAME_JOLIET)
+ fNameSpecifier |= RTFSISOMAKERCMDNAME_JOLIET_ROCK_RIDGE;
+ else
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "unqualified rock-ridge name specifier");
+ }
+ else if ( IS_EQUAL("iso-rr") || IS_EQUAL("iso-rock") || IS_EQUAL("iso-rock-ridge")
+ || IS_EQUAL("primary-rr") || IS_EQUAL("primary-rock") || IS_EQUAL("primary-rock-ridge")
+ || IS_EQUAL("iso9660-rr") || IS_EQUAL("iso9660-rock") || IS_EQUAL("iso9660-rock-ridge")
+ || IS_EQUAL("iso-9660-rr") || IS_EQUAL("iso-9660-rock") || IS_EQUAL("iso-9660-rock-ridge")
+ || IS_EQUAL("primaryiso-rr") || IS_EQUAL("primaryiso-rock") || IS_EQUAL("primaryiso-rock-ridge")
+ || IS_EQUAL("primary-iso-rr") || IS_EQUAL("primary-iso-rock") || IS_EQUAL("primary-iso-rock-ridge") )
+ {
+ fNameSpecifier |= RTFSISOMAKERCMDNAME_PRIMARY_ISO_ROCK_RIDGE;
+ if (!(fNamespaces & RTFSISOMAKERCMDNAME_PRIMARY_ISO))
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "iso-9660-rock-ridge must come after the iso-9660 name specifier");
+ }
+ else if (IS_EQUAL("joliet-rr") || IS_EQUAL("joliet-rock") || IS_EQUAL("joliet-rock-ridge"))
+ {
+ fNameSpecifier |= RTFSISOMAKERCMDNAME_JOLIET_ROCK_RIDGE;
+ if (!(fNamespaces & RTFSISOMAKERCMDNAME_JOLIET))
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "joliet-rock-ridge must come after the joliet name specifier");
+ }
+ /* trans.tbl */
+ else if (IS_EQUAL("trans") || IS_EQUAL("trans-tbl"))
+ {
+ if (fPrevMajor == RTFSISOMAKERCMDNAME_PRIMARY_ISO)
+ fNameSpecifier |= RTFSISOMAKERCMDNAME_PRIMARY_ISO_TRANS_TBL;
+ else if (fPrevMajor == RTFSISOMAKERCMDNAME_JOLIET)
+ fNameSpecifier |= RTFSISOMAKERCMDNAME_JOLIET_TRANS_TBL;
+ else
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "unqualified trans-tbl name specifier");
+ }
+ else if ( IS_EQUAL("iso-trans") || IS_EQUAL("iso-trans-tbl")
+ || IS_EQUAL("primary-trans") || IS_EQUAL("primary-trans-tbl")
+ || IS_EQUAL("iso9660-trans") || IS_EQUAL("iso9660-trans-tbl")
+ || IS_EQUAL("iso-9660-trans") || IS_EQUAL("iso-9660-trans-tbl")
+ || IS_EQUAL("primaryiso-trans") || IS_EQUAL("primaryiso-trans-tbl")
+ || IS_EQUAL("primary-iso-trans") || IS_EQUAL("primary-iso-trans-tbl") )
+ {
+ fNameSpecifier |= RTFSISOMAKERCMDNAME_PRIMARY_ISO_TRANS_TBL;
+ if (!(fNamespaces & RTFSISOMAKERCMDNAME_PRIMARY_ISO))
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "iso-9660-trans-tbl must come after the iso-9660 name specifier");
+ }
+ else if (IS_EQUAL("joliet-trans") || IS_EQUAL("joliet-trans-tbl"))
+ {
+ fNameSpecifier |= RTFSISOMAKERCMDNAME_JOLIET_TRANS_TBL;
+ if (!(fNamespaces & RTFSISOMAKERCMDNAME_JOLIET))
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "joliet-trans-tbl must come after the joliet name specifier");
+ }
+ else if (IS_EQUAL("udf-trans") || IS_EQUAL("udf-trans-tbl"))
+ {
+ fNameSpecifier |= RTFSISOMAKERCMDNAME_UDF_TRANS_TBL;
+ if (!(fNamespaces & RTFSISOMAKERCMDNAME_UDF))
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "udf-trans-tbl must come after the udf name specifier");
+ }
+ else if (IS_EQUAL("hfs-trans") || IS_EQUAL("hfs-trans-tbl"))
+ {
+ fNameSpecifier |= RTFSISOMAKERCMDNAME_HFS_TRANS_TBL;
+ if (!(fNamespaces & RTFSISOMAKERCMDNAME_HFS))
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "hfs-trans-tbl must come after the hfs name specifier");
+ }
+ else
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "unknown name specifier '%.*s'", cchName, pchName);
+#undef IS_EQUAL
+ offSpec = offEndSpec;
+ }
+ } /* while same specifier */
+
+ /*
+ * Check that it wasn't empty.
+ */
+ if (fNameSpecifier == 0)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "name specifier #%u (0-based) is empty ", iNameSpecifier);
+
+ /*
+ * Complain if a major namespace name is duplicated. The rock-ridge and
+ * trans.tbl names are simple to replace, the others affect the two former
+ * names and are therefore not allowed twice in the list.
+ */
+ uint32_t i = iNameSpecifier;
+ while (i-- > 0)
+ {
+ uint32_t fRepeated = (fNameSpecifier & RTFSISOMAKERCMDNAME_MAJOR_MASK)
+ & (pOpts->afNameSpecifiers[i] & RTFSISOMAKERCMDNAME_MAJOR_MASK);
+ if (fRepeated)
+ {
+ char szTmp[128];
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "repeating name specifier%s: %s", RT_IS_POWER_OF_TWO(fRepeated) ? "" : "s",
+ rtFsIsoMakerCmdNameSpecifiersToString(fRepeated, szTmp, sizeof(szTmp)));
+ }
+ }
+
+ /*
+ * Add it.
+ */
+ if (iNameSpecifier >= RT_ELEMENTS(pOpts->afNameSpecifiers))
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "too many name specifiers (max %d)", RT_ELEMENTS(pOpts->afNameSpecifiers));
+ pOpts->afNameSpecifiers[iNameSpecifier] = fNameSpecifier;
+ iNameSpecifier++;
+
+ /*
+ * Next, if any.
+ */
+ if (pszSpec[offSpec] == ',')
+ offSpec++;
+ } while (pszSpec[offSpec] != '\0');
+
+ pOpts->cNameSpecifiers = iNameSpecifier;
+ pOpts->fDstNamespaces = fNamespaces;
+
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Handles the --name-setup-from-import option.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ */
+static int rtFsIsoMakerCmdOptNameSetupFromImport(PRTFSISOMAKERCMDOPTS pOpts)
+{
+ /*
+ * Figure out what's on the ISO.
+ */
+ uint32_t fNamespaces = RTFsIsoMakerGetPopulatedNamespaces(pOpts->hIsoMaker);
+ AssertReturn(fNamespaces != UINT32_MAX, VERR_INVALID_HANDLE);
+ if (fNamespaces != 0)
+ {
+ if ( (fNamespaces & RTFSISOMAKER_NAMESPACE_ISO_9660)
+ && RTFsIsoMakerGetRockRidgeLevel(pOpts->hIsoMaker) > 0)
+ fNamespaces |= RTFSISOMAKERCMDNAME_PRIMARY_ISO_ROCK_RIDGE;
+
+ if ( (fNamespaces & RTFSISOMAKER_NAMESPACE_JOLIET)
+ && RTFsIsoMakerGetJolietRockRidgeLevel(pOpts->hIsoMaker) > 0)
+ fNamespaces |= RTFSISOMAKERCMDNAME_JOLIET_ROCK_RIDGE;
+
+ /*
+ * The TRANS.TBL files cannot be disabled at present and the importer
+ * doesn't check whether they are there or not, so carry them on from
+ * the previous setup.
+ */
+ uint32_t fOld = 0;
+ uint32_t i = pOpts->cNameSpecifiers;
+ while (i-- > 0)
+ fOld |= pOpts->afNameSpecifiers[0];
+ if (fNamespaces & RTFSISOMAKER_NAMESPACE_ISO_9660)
+ fNamespaces |= fOld & RTFSISOMAKERCMDNAME_PRIMARY_ISO_TRANS_TBL;
+ if (fNamespaces & RTFSISOMAKER_NAMESPACE_JOLIET)
+ fNamespaces |= fOld & RTFSISOMAKERCMDNAME_PRIMARY_ISO_TRANS_TBL;
+ if (fNamespaces & RTFSISOMAKER_NAMESPACE_UDF)
+ fNamespaces |= fOld & RTFSISOMAKERCMDNAME_UDF_TRANS_TBL;
+ if (fNamespaces & RTFSISOMAKER_NAMESPACE_HFS)
+ fNamespaces |= fOld & RTFSISOMAKERCMDNAME_HFS_TRANS_TBL;
+
+ /*
+ * Apply the new configuration.
+ */
+ pOpts->cNameSpecifiers = 1;
+ pOpts->afNameSpecifiers[0] = fNamespaces;
+ pOpts->fDstNamespaces = fNamespaces & RTFSISOMAKERCMDNAME_MAJOR_MASK;
+
+ char szTmp[128];
+ rtFsIsoMakerPrintf(pOpts, "info: --name-setup-from-import determined: --name-setup=%s\n",
+ rtFsIsoMakerCmdNameSpecifiersToString(fNamespaces, szTmp, sizeof(szTmp)));
+ return VINF_SUCCESS;
+ }
+ return rtFsIsoMakerCmdErrorRc(pOpts, VERR_DRIVE_IS_EMPTY, "--name-setup-from-import used on an empty ISO");
+}
+
+
+/**
+ * Checks if we should use the source stack or the regular file system for
+ * opening a source.
+ *
+ * @returns true / false.
+ * @param pOpts The ISO maker command instance.
+ * @param pszSrc The source path under consideration.
+ */
+static bool rtFsIsoMakerCmdUseSrcStack(PRTFSISOMAKERCMDOPTS pOpts, const char *pszSrc)
+{
+ /* Not if there isn't any stack. */
+ if (pOpts->iSrcStack < 0)
+ return false;
+
+ /* Not if we've got a :iprtvfs: incantation. */
+ if (RTVfsChainIsSpec(pszSrc))
+ return false;
+
+ /* If the top entry is a CWD rather than a VFS, we only do it for root-less paths. */
+ if (pOpts->aSrcStack[pOpts->iSrcStack].pszSrcVfsOption == NULL)
+ {
+ if (RTPathStartsWithRoot(pszSrc))
+ return false;
+ }
+ return true;
+}
+
+
+/**
+ * Processes a non-option argument.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param pszSpec The specification of what to add.
+ * @param fWithSrc Whether the specification includes a source path
+ * or not.
+ * @param pParsed Where to return the parsed name specification.
+ */
+static int rtFsIsoMakerCmdParseNameSpec(PRTFSISOMAKERCMDOPTS pOpts, const char *pszSpec, bool fWithSrc,
+ PRTFSISOMKCMDPARSEDNAMES pParsed)
+{
+ const char * const pszSpecIn = pszSpec;
+ uint32_t const cMaxNames = pOpts->cNameSpecifiers + fWithSrc;
+
+ /*
+ * Split it up by '='.
+ */
+ pParsed->cNames = 0;
+ pParsed->cNamesWithSrc = 0;
+ pParsed->enmSrcType = fWithSrc ? RTFSISOMKCMDPARSEDNAMES::kSrcType_Normal : RTFSISOMKCMDPARSEDNAMES::kSrcType_None;
+ for (;;)
+ {
+ const char *pszEqual = strchr(pszSpec, '=');
+ size_t cchName = pszEqual ? pszEqual - pszSpec : strlen(pszSpec);
+ bool fNeedSlash = (pszEqual || !fWithSrc) && !RTPATH_IS_SLASH(*pszSpec) && cchName > 0;
+ if (cchName + fNeedSlash >= sizeof(pParsed->aNames[pParsed->cNamesWithSrc].szPath))
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "name #%u (0-based) is too long: %s", pParsed->cNamesWithSrc, pszSpecIn);
+ if (pParsed->cNamesWithSrc >= cMaxNames)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "too many names specified (max %u%s): %s",
+ pOpts->cNameSpecifiers, fWithSrc ? " + source" : "", pszSpecIn);
+ if (!fNeedSlash)
+ memcpy(pParsed->aNames[pParsed->cNamesWithSrc].szPath, pszSpec, cchName);
+ else
+ {
+ memcpy(&pParsed->aNames[pParsed->cNamesWithSrc].szPath[1], pszSpec, cchName);
+ pParsed->aNames[pParsed->cNamesWithSrc].szPath[0] = RTPATH_SLASH;
+ cchName++;
+ }
+ pParsed->aNames[pParsed->cNamesWithSrc].szPath[cchName] = '\0';
+ pParsed->aNames[pParsed->cNamesWithSrc].cchPath = (uint32_t)cchName;
+ pParsed->cNamesWithSrc++;
+
+ if (!pszEqual)
+ {
+ if (fWithSrc)
+ {
+ if (!cchName)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "empty source file name: %s", pszSpecIn);
+ if (cchName == 8 && strcmp(pszSpec, ":remove:") == 0)
+ pParsed->enmSrcType = RTFSISOMKCMDPARSEDNAMES::kSrcType_Remove;
+ else if (cchName == 13 && strcmp(pszSpec, ":must-remove:") == 0)
+ pParsed->enmSrcType = RTFSISOMKCMDPARSEDNAMES::kSrcType_MustRemove;
+ else if (rtFsIsoMakerCmdUseSrcStack(pOpts, pszSpec))
+ pParsed->enmSrcType = RTFSISOMKCMDPARSEDNAMES::kSrcType_NormalSrcStack;
+ }
+ break;
+ }
+ pszSpec = pszEqual + 1;
+ }
+
+ /*
+ * If there are too few names specified, move the source and repeat the
+ * last non-source name. If only source, convert source into a name spec.
+ */
+ if (pParsed->cNamesWithSrc < cMaxNames)
+ {
+ uint32_t iSrc;
+ if (!fWithSrc)
+ iSrc = pParsed->cNamesWithSrc - 1;
+ else
+ {
+ pParsed->aNames[pOpts->cNameSpecifiers] = pParsed->aNames[pParsed->cNamesWithSrc - 1];
+ iSrc = pParsed->cNamesWithSrc >= 2 ? pParsed->cNamesWithSrc - 2 : 0;
+ }
+
+ /* If the source is a input file name specifier, reduce it to something that starts with a slash. */
+ if (pParsed->cNamesWithSrc == 1 && fWithSrc)
+ {
+ const char *pszSrc = pParsed->aNames[iSrc].szPath;
+ char *pszFinalPath = NULL;
+ if (RTVfsChainIsSpec(pParsed->aNames[iSrc].szPath))
+ {
+ uint32_t offError;
+ int rc = RTVfsChainQueryFinalPath(pParsed->aNames[iSrc].szPath, &pszFinalPath, &offError);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdChainError(pOpts, "RTVfsChainQueryFinalPath",
+ pParsed->aNames[iSrc].szPath, rc, offError, NULL);
+ pszSrc = pszFinalPath;
+ }
+
+ /* Find the start of the last component, ignoring trailing slashes. */
+ size_t cchSrc = strlen(pszSrc);
+ size_t offLast = cchSrc;
+ while (offLast > 0 && RTPATH_IS_SLASH(pszSrc[offLast - 1]))
+ offLast--;
+ while (offLast > 0 && !RTPATH_IS_SLASH(pszSrc[offLast - 1]))
+ offLast--;
+
+ /* Move it up front with a leading slash. */
+ if (offLast > 0 || !RTPATH_IS_SLASH(*pszSrc))
+ {
+ pParsed->aNames[iSrc].cchPath = 1 + (uint32_t)(cchSrc - offLast);
+ if (pParsed->aNames[iSrc].cchPath >= sizeof(pParsed->aNames[iSrc].szPath))
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "name too long: %s", pszSpecIn);
+
+ memmove(&pParsed->aNames[iSrc].szPath[1], &pszSrc[offLast], pParsed->aNames[iSrc].cchPath);
+ }
+ else
+ pParsed->aNames[iSrc].cchPath = 1;
+ pParsed->aNames[iSrc].szPath[0] = RTPATH_SLASH;
+
+ if (pszFinalPath)
+ RTStrFree(pszFinalPath);
+ }
+
+ for (uint32_t iDst = iSrc + 1; iDst < pOpts->cNameSpecifiers; iDst++)
+ pParsed->aNames[iDst] = pParsed->aNames[iSrc];
+
+ pParsed->cNamesWithSrc = cMaxNames;
+ }
+ pParsed->cNames = pOpts->cNameSpecifiers;
+
+ /*
+ * Copy the specifier flags and check that the paths all starts with slashes.
+ */
+ for (uint32_t i = 0; i < pOpts->cNameSpecifiers; i++)
+ {
+ pParsed->aNames[i].fNameSpecifiers = pOpts->afNameSpecifiers[i];
+ Assert( pParsed->aNames[i].cchPath == 0
+ || RTPATH_IS_SLASH(pParsed->aNames[i].szPath[0]));
+ }
+
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Enteres an object into the namespace by full paths.
+ *
+ * This is used by rtFsIsoMakerCmdOptEltoritoSetBootCatalogPath and
+ * rtFsIsoMakerCmdAddFile.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param idxObj The configuration index of the object to be named.
+ * @param pParsed The parsed names.
+ * @param pszSrcOrName Source file or name.
+ */
+static int rtFsIsoMakerCmdSetObjPaths(PRTFSISOMAKERCMDOPTS pOpts, uint32_t idxObj, PCRTFSISOMKCMDPARSEDNAMES pParsed,
+ const char *pszSrcOrName)
+{
+ int rc = VINF_SUCCESS;
+ for (uint32_t i = 0; i < pParsed->cNames; i++)
+ if (pParsed->aNames[i].cchPath > 0)
+ {
+ if (pParsed->aNames[i].fNameSpecifiers & RTFSISOMAKERCMDNAME_MAJOR_MASK)
+ {
+ rc = RTFsIsoMakerObjSetPath(pOpts->hIsoMaker, idxObj,
+ pParsed->aNames[i].fNameSpecifiers & RTFSISOMAKERCMDNAME_MAJOR_MASK,
+ pParsed->aNames[i].szPath);
+ if (RT_FAILURE(rc))
+ {
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error setting name '%s' on '%s': %Rrc",
+ pParsed->aNames[i].szPath, pszSrcOrName, rc);
+ break;
+ }
+ }
+ if (pParsed->aNames[i].fNameSpecifiers & RTFSISOMAKERCMDNAME_MINOR_MASK)
+ {
+ /** @todo add APIs for this. */
+ }
+ }
+ return rc;
+}
+
+
+/**
+ * Adds a file.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param pszSrc The path to the source file.
+ * @param pParsed The parsed names.
+ * @param pidxObj Where to return the configuration index for the
+ * added file. Optional.
+ */
+static int rtFsIsoMakerCmdAddFile(PRTFSISOMAKERCMDOPTS pOpts, const char *pszSrc, PCRTFSISOMKCMDPARSEDNAMES pParsed,
+ uint32_t *pidxObj)
+{
+ int rc;
+ uint32_t idxObj = UINT32_MAX;
+ if (pParsed->enmSrcType == RTFSISOMKCMDPARSEDNAMES::kSrcType_NormalSrcStack)
+ {
+ RTVFSFILE hVfsFileSrc;
+ rc = RTVfsDirOpenFile(pOpts->aSrcStack[pOpts->iSrcStack].hSrcDir, pszSrc,
+ RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE, &hVfsFileSrc);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error opening '%s' (%s '%s'): %Rrc",
+ pszSrc, pOpts->aSrcStack[pOpts->iSrcStack].pszSrcVfsOption ? "inside" : "relative to",
+ pOpts->aSrcStack[pOpts->iSrcStack].pszSrcVfs, rc);
+
+ rc = RTFsIsoMakerAddUnnamedFileWithVfsFile(pOpts->hIsoMaker, hVfsFileSrc, &idxObj);
+ RTVfsFileRelease(hVfsFileSrc);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error adding '%s' (VFS): %Rrc", pszSrc, rc);
+ }
+ else
+ {
+ rc = RTFsIsoMakerAddUnnamedFileWithSrcPath(pOpts->hIsoMaker, pszSrc, &idxObj);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error adding '%s': %Rrc", pszSrc, rc);
+ }
+
+
+ pOpts->cItemsAdded++;
+ if (pidxObj)
+ *pidxObj = idxObj;
+
+ return rtFsIsoMakerCmdSetObjPaths(pOpts, idxObj, pParsed, pszSrc);
+}
+
+
+/**
+ * Applies filtering rules.
+ *
+ * @returns true if filtered out, false if included.
+ * @param pOpts The ISO maker command instance.
+ * @param pszSrc The source source.
+ * @param pszName The name part (maybe different buffer from pszSrc).
+ * @param fIsDir Set if directory, clear if not.
+ */
+static bool rtFsIsoMakerCmdIsFilteredOut(PRTFSISOMAKERCMDOPTS pOpts, const char *pszDir, const char *pszName, bool fIsDir)
+{
+ /* Ignore trans.tbl files. */
+ if ( !fIsDir
+ && RTStrICmp(pszName, pOpts->pszTransTbl) == 0)
+ return true;
+
+ RT_NOREF(pOpts, pszDir, pszName, fIsDir);
+ return false;
+}
+
+
+/**
+ * Worker for rtFsIsoMakerCmdAddVfsDir that does the recursion.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param hVfsDir The directory to process.
+ * @param idxDirObj The configuration index of the directory.
+ * @param pszSrc Pointer to the source path buffer. RTPATH_MAX
+ * in size. Okay to modify beyond @a cchSrc.
+ * @param cchSrc Length of the path corresponding to @a hVfsDir.
+ * @param fNamespaces Which ISO maker namespaces to add the names to.
+ * @param cDepth Number of recursions. Used to deal with loopy
+ * directories.
+ * @param fFilesWithSrcPath Whether to add files using @a pszSrc or to add
+ * as VFS handles (open first). For saving native
+ * file descriptors.
+ */
+static int rtFsIsoMakerCmdAddVfsDirRecursive(PRTFSISOMAKERCMDOPTS pOpts, RTVFSDIR hVfsDir, uint32_t idxDirObj,
+ char *pszSrc, size_t cchSrc, uint32_t fNamespaces, uint8_t cDepth,
+ bool fFilesWithSrcPath)
+{
+ /*
+ * Check that we're not in too deep.
+ */
+ if (cDepth >= RTFSISOMAKERCMD_MAX_DIR_RECURSIONS)
+ return rtFsIsoMakerCmdErrorRc(pOpts, VERR_ISOMK_IMPORT_TOO_DEEP_DIR_TREE,
+ "Recursive (VFS) dir add too deep (depth=%u): %.*s", cDepth, cchSrc, pszSrc);
+ /*
+ * Enumerate the directory.
+ */
+ int rc;
+ size_t cbDirEntryAlloced = sizeof(RTDIRENTRYEX);
+ PRTDIRENTRYEX pDirEntry = (PRTDIRENTRYEX)RTMemTmpAlloc(cbDirEntryAlloced);
+ if (pDirEntry)
+ {
+ for (;;)
+ {
+ /*
+ * Read the next entry.
+ */
+ size_t cbDirEntry = cbDirEntryAlloced;
+ rc = RTVfsDirReadEx(hVfsDir, pDirEntry, &cbDirEntry, RTFSOBJATTRADD_UNIX);
+ if (RT_FAILURE(rc))
+ {
+ if (rc == VERR_NO_MORE_FILES)
+ rc = VINF_SUCCESS;
+ else if (rc == VERR_BUFFER_OVERFLOW)
+ {
+ RTMemTmpFree(pDirEntry);
+ cbDirEntryAlloced = RT_ALIGN_Z(RT_MIN(cbDirEntry, cbDirEntryAlloced) + 64, 64);
+ pDirEntry = (PRTDIRENTRYEX)RTMemTmpAlloc(cbDirEntryAlloced);
+ if (pDirEntry)
+ continue;
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_NO_TMP_MEMORY, "Out of memory (direntry buffer)");
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTVfsDirReadEx failed on %.*s: %Rrc", cchSrc, pszSrc, rc);
+ break;
+ }
+
+ /* Ignore '.' and '..' entries. */
+ if (RTDirEntryExIsStdDotLink(pDirEntry))
+ continue;
+
+ /*
+ * Process the entry.
+ */
+
+ /* Update the name. */
+ if (cchSrc + 1 + pDirEntry->cbName < RTPATH_MAX)
+ {
+ pszSrc[cchSrc] = '/'; /* VFS only groks unix slashes */
+ memcpy(&pszSrc[cchSrc + 1], pDirEntry->szName, pDirEntry->cbName);
+ pszSrc[cchSrc + 1 + pDirEntry->cbName] = '\0';
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_FILENAME_TOO_LONG, "Filename is too long (depth %u): '%.*s/%s'",
+ cDepth, cchSrc, pszSrc, pDirEntry->szName);
+
+ /* Okay? Check name filtering. */
+ if ( RT_SUCCESS(rc)
+ && !rtFsIsoMakerCmdIsFilteredOut(pOpts, pszSrc, pDirEntry->szName, RTFS_IS_DIRECTORY(pDirEntry->Info.Attr.fMode)))
+ {
+ /* Do type specific adding. */
+ uint32_t idxObj = UINT32_MAX;
+ if (RTFS_IS_FILE(pDirEntry->Info.Attr.fMode))
+ {
+ /*
+ * Files are either added with VFS handles or paths to the sources,
+ * depending on what's considered more efficient. We prefer the latter
+ * if hVfsDir maps to native handle and not a virtual one.
+ */
+ if (!fFilesWithSrcPath)
+ {
+ RTVFSFILE hVfsFileSrc;
+ rc = RTVfsDirOpenFile(hVfsDir, pDirEntry->szName,
+ RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE, &hVfsFileSrc);
+ if (RT_SUCCESS(rc))
+ {
+ rc = RTFsIsoMakerAddUnnamedFileWithVfsFile(pOpts->hIsoMaker, hVfsFileSrc, &idxObj);
+ RTVfsFileRelease(hVfsFileSrc);
+ if (RT_FAILURE(rc))
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error adding file '%s' (VFS recursive, handle): %Rrc",
+ pszSrc, rc);
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error opening file '%s' (VFS recursive): %Rrc", pszSrc, rc);
+ }
+ else
+ {
+ /* Add file with source path: */
+ rc = RTFsIsoMakerAddUnnamedFileWithSrcPath(pOpts->hIsoMaker, pszSrc, &idxObj);
+ if (RT_FAILURE(rc))
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error adding file '%s' (VFS recursive, path): %Rrc",
+ pszSrc, rc);
+ }
+ if (RT_SUCCESS(rc))
+ {
+ pOpts->cItemsAdded++;
+ rc = RTFsIsoMakerObjSetNameAndParent(pOpts->hIsoMaker, idxObj, idxDirObj, fNamespaces,
+ pDirEntry->szName, false /*fNoNormalize*/);
+ if (RT_FAILURE(rc))
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error setting parent & name on file '%s' to '%s': %Rrc",
+ pszSrc, pDirEntry->szName, rc);
+ }
+ }
+ else if (RTFS_IS_DIRECTORY(pDirEntry->Info.Attr.fMode))
+ {
+ /*
+ * Open and add the sub-directory.
+ */
+ RTVFSDIR hVfsSubDirSrc;
+ rc = RTVfsDirOpenDir(hVfsDir, pDirEntry->szName, 0 /*fFlags*/, &hVfsSubDirSrc);
+ if (RT_SUCCESS(rc))
+ {
+ rc = RTFsIsoMakerAddUnnamedDir(pOpts->hIsoMaker, &pDirEntry->Info, &idxObj);
+ if (RT_SUCCESS(rc))
+ {
+ pOpts->cItemsAdded++;
+ rc = RTFsIsoMakerObjSetNameAndParent(pOpts->hIsoMaker, idxObj, idxDirObj, fNamespaces,
+ pDirEntry->szName, false /*fNoNormalize*/);
+ if (RT_SUCCESS(rc))
+ /* Recurse into the sub-directory. */
+ rc = rtFsIsoMakerCmdAddVfsDirRecursive(pOpts, hVfsSubDirSrc, idxObj, pszSrc,
+ cchSrc + 1 + pDirEntry->cbName, fNamespaces, cDepth + 1,
+ fFilesWithSrcPath);
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc,
+ "Error setting parent & name on directory '%s' to '%s': %Rrc",
+ pszSrc, pDirEntry->szName, rc);
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error adding directory '%s' (VFS recursive): %Rrc", pszSrc, rc);
+ RTVfsDirRelease(hVfsSubDirSrc);
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error opening directory '%s' (VFS recursive): %Rrc", pszSrc, rc);
+ }
+ else if (RTFS_IS_SYMLINK(pDirEntry->Info.Attr.fMode))
+ {
+ /*
+ * TODO: ISO FS symlink support.
+ */
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_NOT_IMPLEMENTED,
+ "Adding symlink '%s' failed: not yet implemented", pszSrc);
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_NOT_IMPLEMENTED,
+ "Adding special file '%s' failed: not implemented", pszSrc);
+ }
+ if (RT_FAILURE(rc))
+ break;
+ }
+
+ RTMemTmpFree(pDirEntry);
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_NO_TMP_MEMORY, "Out of memory! (direntry buffer)");
+ return rc;
+}
+
+
+/**
+ * Common directory adding worker.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param hVfsSrcDir The directory being added.
+ * @param pszSrc The source directory name.
+ * @param pParsed The parsed names.
+ * @param fFilesWithSrcPath Whether to add files using @a pszSrc
+ * or to add as VFS handles (open first). For
+ * saving native file descriptors.
+ * @param pidxObj Where to return the configuration index for the
+ * added file. Optional.
+ */
+static int rtFsIsoMakerCmdAddVfsDirCommon(PRTFSISOMAKERCMDOPTS pOpts, RTVFSDIR hVfsDirSrc, char *pszSrc,
+ PCRTFSISOMKCMDPARSEDNAMES pParsed, bool fFilesWithSrcPath, PCRTFSOBJINFO pObjInfo)
+{
+ /*
+ * Add the directory if it doesn't exist.
+ */
+ uint32_t idxObj = UINT32_MAX;
+ for (uint32_t i = 0; i < pParsed->cNames; i++)
+ if (pParsed->aNames[i].fNameSpecifiers & RTFSISOMAKERCMDNAME_MAJOR_MASK)
+ {
+ idxObj = RTFsIsoMakerGetObjIdxForPath(pOpts->hIsoMaker,
+ pParsed->aNames[i].fNameSpecifiers & RTFSISOMAKERCMDNAME_MAJOR_MASK,
+ pParsed->aNames[i].szPath);
+ if (idxObj != UINT32_MAX)
+ {
+ /** @todo make sure the directory is present in the other namespace. */
+ break;
+ }
+ }
+ int rc = VINF_SUCCESS;
+ if (idxObj == UINT32_MAX)
+ {
+ rc = RTFsIsoMakerAddUnnamedDir(pOpts->hIsoMaker, pObjInfo, &idxObj);
+ if (RT_SUCCESS(rc))
+ rc = rtFsIsoMakerCmdSetObjPaths(pOpts, idxObj, pParsed, pParsed->aNames[pParsed->cNames - 1].szPath);
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTFsIsoMakerAddUnnamedDir failed: %Rrc", rc);
+ }
+ if (RT_SUCCESS(rc))
+ {
+ /*
+ * Add the directory content.
+ */
+ uint32_t fNamespaces = 0;
+ for (uint32_t i = 0; i < pParsed->cNames; i++)
+ fNamespaces |= pParsed->aNames[i].fNameSpecifiers & RTFSISOMAKERCMDNAME_MAJOR_MASK;
+ rc = rtFsIsoMakerCmdAddVfsDirRecursive(pOpts, hVfsDirSrc, idxObj, pszSrc,
+ pParsed->aNames[pParsed->cNamesWithSrc - 1].cchPath, fNamespaces, 0 /*cDepth*/,
+ fFilesWithSrcPath);
+ }
+
+ return rc;
+}
+
+
+/**
+ * Adds a directory, from the source VFS.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param pParsed The parsed names.
+ * @param pidxObj Where to return the configuration index for the
+ * added file. Optional.
+ */
+static int rtFsIsoMakerCmdAddVfsDir(PRTFSISOMAKERCMDOPTS pOpts, PCRTFSISOMKCMDPARSEDNAMES pParsed, PCRTFSOBJINFO pObjInfo)
+{
+ Assert(pParsed->cNames < pParsed->cNamesWithSrc);
+ char *pszSrc = pParsed->aNames[pParsed->cNamesWithSrc - 1].szPath;
+ RTPathChangeToUnixSlashes(pszSrc, true /*fForce*/); /* VFS currently only understand unix slashes. */
+ RTVFSDIR hVfsDirSrc;
+ int rc = RTVfsDirOpenDir(pOpts->aSrcStack[pOpts->iSrcStack].hSrcDir, pszSrc, 0 /*fFlags*/, &hVfsDirSrc);
+ if (RT_SUCCESS(rc))
+ {
+ rc = rtFsIsoMakerCmdAddVfsDirCommon(pOpts, hVfsDirSrc, pszSrc, pParsed, false /*fFilesWithSrcPath*/, pObjInfo);
+ RTVfsDirRelease(hVfsDirSrc);
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error opening directory '%s' (%s '%s'): %Rrc", pszSrc,
+ pOpts->aSrcStack[pOpts->iSrcStack].pszSrcVfsOption ? "inside" : "relative to",
+ pOpts->aSrcStack[pOpts->iSrcStack].pszSrcVfs, rc);
+ return rc;
+}
+
+
+/**
+ * Adds a directory, from a VFS chain or real file system.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param pszSrc The path to the source directory.
+ * @param pParsed The parsed names.
+ */
+static int rtFsIsoMakerCmdAddDir(PRTFSISOMAKERCMDOPTS pOpts, PCRTFSISOMKCMDPARSEDNAMES pParsed, PCRTFSOBJINFO pObjInfo)
+{
+ Assert(pParsed->cNames < pParsed->cNamesWithSrc);
+ char *pszSrc = pParsed->aNames[pParsed->cNamesWithSrc - 1].szPath;
+ RTERRINFOSTATIC ErrInfo;
+ uint32_t offError;
+ RTVFSDIR hVfsDirSrc;
+ int rc = RTVfsChainOpenDir(pszSrc, 0 /*fOpen*/, &hVfsDirSrc, &offError, RTErrInfoInitStatic(&ErrInfo));
+ if (RT_SUCCESS(rc))
+ {
+ rc = rtFsIsoMakerCmdAddVfsDirCommon(pOpts, hVfsDirSrc, pszSrc, pParsed,
+ RTVfsDirIsStdDir(hVfsDirSrc) /*fFilesWithSrcPath*/, pObjInfo);
+ RTVfsDirRelease(hVfsDirSrc);
+ }
+ else
+ rc = rtFsIsoMakerCmdChainError(pOpts, "RTVfsChainOpenDir", pszSrc, rc, offError, &ErrInfo.Core);
+ return rc;
+}
+
+
+/**
+ * Adds a file after first making sure it's a file.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param pszSrc The path to the source file.
+ * @param pParsed The parsed names.
+ * @param pidxObj Where to return the configuration index for the
+ * added file. Optional.
+ */
+static int rtFsIsoMakerCmdStatAndAddFile(PRTFSISOMAKERCMDOPTS pOpts, const char *pszSrc, PCRTFSISOMKCMDPARSEDNAMES pParsed,
+ uint32_t *pidxObj)
+{
+ int rc;
+ RTFSOBJINFO ObjInfo;
+ if (pParsed->enmSrcType == RTFSISOMKCMDPARSEDNAMES::kSrcType_NormalSrcStack)
+ {
+ rc = RTVfsDirQueryPathInfo(pOpts->aSrcStack[pOpts->iSrcStack].hSrcDir, pszSrc,
+ &ObjInfo, RTFSOBJATTRADD_UNIX, RTPATH_F_FOLLOW_LINK);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTVfsQueryPathInfo failed on %s (%s %s): %Rrc", pszSrc,
+ pOpts->aSrcStack[pOpts->iSrcStack].pszSrcVfsOption ? "inside" : "relative to",
+ pOpts->aSrcStack[pOpts->iSrcStack].pszSrcVfs, rc);
+ }
+ else
+ {
+ uint32_t offError;
+ RTERRINFOSTATIC ErrInfo;
+ rc = RTVfsChainQueryInfo(pszSrc, &ObjInfo, RTFSOBJATTRADD_UNIX,
+ RTPATH_F_FOLLOW_LINK, &offError, RTErrInfoInitStatic(&ErrInfo));
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdChainError(pOpts, "RTVfsChainQueryInfo", pszSrc, rc, offError, &ErrInfo.Core);
+ }
+
+ if (RTFS_IS_FILE(ObjInfo.Attr.fMode))
+ return rtFsIsoMakerCmdAddFile(pOpts, pszSrc, pParsed, pidxObj);
+ return rtFsIsoMakerCmdErrorRc(pOpts, VERR_NOT_A_FILE, "Not a file: %s", pszSrc);
+}
+
+
+/**
+ * Processes a non-option argument.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param pszSpec The specification of what to add.
+ */
+static int rtFsIsoMakerCmdAddSomething(PRTFSISOMAKERCMDOPTS pOpts, const char *pszSpec)
+{
+ /*
+ * Parse the name spec.
+ */
+ RTFSISOMKCMDPARSEDNAMES Parsed;
+ int rc = rtFsIsoMakerCmdParseNameSpec(pOpts, pszSpec, true /*fWithSrc*/, &Parsed);
+ if (RT_FAILURE(rc))
+ return rc;
+
+ /*
+ * Deal with special source filenames used to remove/change stuff.
+ */
+ if ( Parsed.enmSrcType == RTFSISOMKCMDPARSEDNAMES::kSrcType_Remove
+ || Parsed.enmSrcType == RTFSISOMKCMDPARSEDNAMES::kSrcType_MustRemove)
+ {
+ const char *pszFirstNm = NULL;
+ uint32_t cRemoved = 0;
+ for (uint32_t i = 0; i < pOpts->cNameSpecifiers; i++)
+ if ( Parsed.aNames[i].cchPath > 0
+ && (Parsed.aNames[i].fNameSpecifiers & RTFSISOMAKERCMDNAME_MAJOR_MASK))
+ {
+ /* Make sure we remove all objects by this name. */
+ pszFirstNm = Parsed.aNames[i].szPath;
+ for (;;)
+ {
+ uint32_t idxObj = RTFsIsoMakerGetObjIdxForPath(pOpts->hIsoMaker,
+ Parsed.aNames[i].fNameSpecifiers & RTFSISOMAKERCMDNAME_MAJOR_MASK,
+ Parsed.aNames[i].szPath);
+ if (idxObj == UINT32_MAX)
+ break;
+ rc = RTFsIsoMakerObjRemove(pOpts->hIsoMaker, idxObj);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Failed to remove '%s': %Rrc", pszSpec, rc);
+ cRemoved++;
+ }
+ }
+ if ( Parsed.enmSrcType == RTFSISOMKCMDPARSEDNAMES::kSrcType_MustRemove
+ && cRemoved == 0)
+ return rtFsIsoMakerCmdErrorRc(pOpts, VERR_NOT_FOUND, "Failed to locate '%s' for removal", pszSpec);
+ }
+ /*
+ * Add regular source.
+ */
+ else
+ {
+ const char *pszSrc = Parsed.aNames[Parsed.cNamesWithSrc - 1].szPath;
+ RTFSOBJINFO ObjInfo;
+ if (Parsed.enmSrcType == RTFSISOMKCMDPARSEDNAMES::kSrcType_NormalSrcStack)
+ {
+ rc = RTVfsDirQueryPathInfo(pOpts->aSrcStack[pOpts->iSrcStack].hSrcDir, pszSrc,
+ &ObjInfo, RTFSOBJATTRADD_UNIX, RTPATH_F_FOLLOW_LINK);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTVfsQueryPathInfo failed on %s (%s %s): %Rrc", pszSrc,
+ pOpts->aSrcStack[pOpts->iSrcStack].pszSrcVfsOption ? "inside" : "relative to",
+ pOpts->aSrcStack[pOpts->iSrcStack].pszSrcVfs, rc);
+ }
+ else
+ {
+ uint32_t offError;
+ RTERRINFOSTATIC ErrInfo;
+ rc = RTVfsChainQueryInfo(pszSrc, &ObjInfo, RTFSOBJATTRADD_UNIX,
+ RTPATH_F_FOLLOW_LINK, &offError, RTErrInfoInitStatic(&ErrInfo));
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdChainError(pOpts, "RTVfsChainQueryInfo", pszSrc, rc, offError, &ErrInfo.Core);
+ }
+
+ /* By type: */
+
+ if (RTFS_IS_FILE(ObjInfo.Attr.fMode))
+ return rtFsIsoMakerCmdAddFile(pOpts, pszSrc, &Parsed, NULL /*pidxObj*/);
+
+ if (RTFS_IS_DIRECTORY(ObjInfo.Attr.fMode))
+ {
+ if (Parsed.enmSrcType == RTFSISOMKCMDPARSEDNAMES::kSrcType_NormalSrcStack)
+ return rtFsIsoMakerCmdAddVfsDir(pOpts, &Parsed, &ObjInfo);
+ return rtFsIsoMakerCmdAddDir(pOpts, &Parsed, &ObjInfo);
+ }
+
+ if (RTFS_IS_SYMLINK(ObjInfo.Attr.fMode))
+ return rtFsIsoMakerCmdErrorRc(pOpts, VERR_NOT_IMPLEMENTED, "Adding symlink '%s' failed: not yet implemented", pszSpec);
+
+ return rtFsIsoMakerCmdErrorRc(pOpts, VERR_NOT_IMPLEMENTED, "Adding special file '%s' failed: not implemented", pszSpec);
+ }
+
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Opens an ISO and use it for subsequent file system accesses.
+ *
+ * This is handy for duplicating a part of an ISO in the new image.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param pszIsoSpec The ISO path specifier.
+ * @param pszOption The option we're being called on.
+ * @param fFlags RTFSISO9660_F_XXX
+ */
+static int rtFsIsoMakerCmdOptPushIso(PRTFSISOMAKERCMDOPTS pOpts, const char *pszIsoSpec, const char *pszOption, uint32_t fFlags)
+{
+ int32_t iSrcStack = pOpts->iSrcStack + 1;
+ if ((uint32_t)iSrcStack >= RT_ELEMENTS(pOpts->aSrcStack))
+ return rtFsIsoMakerCmdErrorRc(pOpts, VERR_NOT_IMPLEMENTED,
+ "Too many pushes %s %s (previous: %s %s, %s %s, %s %s, ...)",
+ pszOption, pszIsoSpec,
+ pOpts->aSrcStack[iSrcStack - 1].pszSrcVfsOption, pOpts->aSrcStack[iSrcStack - 1].pszSrcVfs,
+ pOpts->aSrcStack[iSrcStack - 2].pszSrcVfsOption, pOpts->aSrcStack[iSrcStack - 2].pszSrcVfs,
+ pOpts->aSrcStack[iSrcStack - 3].pszSrcVfsOption, pOpts->aSrcStack[iSrcStack - 3].pszSrcVfs);
+
+ /*
+ * Try open the file.
+ */
+ int rc;
+ RTVFSFILE hVfsFileIso = NIL_RTVFSFILE;
+ RTERRINFOSTATIC ErrInfo;
+ if (rtFsIsoMakerCmdUseSrcStack(pOpts, pszIsoSpec))
+ {
+ rc = RTVfsDirOpenFile(pOpts->aSrcStack[iSrcStack - 1].hSrcDir, pszIsoSpec,
+ RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE, &hVfsFileIso);
+ if (RT_FAILURE(rc))
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error opening '%s' relative to '%s'",
+ pszIsoSpec, pOpts->aSrcStack[iSrcStack - 1].pszSrcVfs);
+ }
+ else
+ {
+ uint32_t offError;
+ rc = RTVfsChainOpenFile(pszIsoSpec, RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE,
+ &hVfsFileIso, &offError, RTErrInfoInitStatic(&ErrInfo));
+ if (RT_FAILURE(rc))
+ rc = rtFsIsoMakerCmdChainError(pOpts, "RTVfsChainOpenFile", pszIsoSpec, rc, offError, &ErrInfo.Core);
+ }
+ if (RT_SUCCESS(rc))
+ {
+ RTVFS hSrcVfs;
+ rc = RTFsIso9660VolOpen(hVfsFileIso, fFlags, &hSrcVfs, RTErrInfoInitStatic(&ErrInfo));
+ RTVfsFileRelease(hVfsFileIso);
+ if (RT_SUCCESS(rc))
+ {
+ RTVFSDIR hVfsSrcRootDir;
+ rc = RTVfsOpenRoot(hSrcVfs, &hVfsSrcRootDir);
+ if (RT_SUCCESS(rc))
+ {
+ pOpts->aSrcStack[iSrcStack].hSrcDir = hVfsSrcRootDir;
+ pOpts->aSrcStack[iSrcStack].hSrcVfs = hSrcVfs;
+ pOpts->aSrcStack[iSrcStack].pszSrcVfs = pszIsoSpec;
+ pOpts->aSrcStack[iSrcStack].pszSrcVfsOption = pszOption;
+ pOpts->iSrcStack = iSrcStack;
+ return VINF_SUCCESS;
+ }
+ RTVfsRelease(hSrcVfs);
+ }
+ else if (RTErrInfoIsSet(&ErrInfo.Core))
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "Failed to open '%s' as ISO FS: %Rrc - %s",
+ pszIsoSpec, rc, ErrInfo.Core.pszMsg);
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "Failed to open '%s' as ISO FS: %Rrc", pszIsoSpec, rc);
+ }
+ return rc;
+}
+
+
+/**
+ * Counter part to --push-iso and friends.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ */
+static int rtFsIsoMakerCmdOptPop(PRTFSISOMAKERCMDOPTS pOpts)
+{
+ int32_t const iSrcStack = pOpts->iSrcStack;
+ if ( iSrcStack >= 0
+ && pOpts->aSrcStack[iSrcStack].pszSrcVfsOption)
+ {
+ RTVfsDirRelease(pOpts->aSrcStack[iSrcStack].hSrcDir);
+ RTVfsRelease(pOpts->aSrcStack[iSrcStack].hSrcVfs);
+ pOpts->aSrcStack[iSrcStack].hSrcDir = NIL_RTVFSDIR;
+ pOpts->aSrcStack[iSrcStack].hSrcVfs = NIL_RTVFS;
+ pOpts->aSrcStack[iSrcStack].pszSrcVfs = NULL;
+ pOpts->aSrcStack[iSrcStack].pszSrcVfsOption = NULL;
+ pOpts->iSrcStack = iSrcStack - 1;
+ return VINF_SUCCESS;
+ }
+ return rtFsIsoMakerCmdErrorRc(pOpts, VERR_NOT_FOUND, "--pop without --push-xxx");
+}
+
+
+/**
+ * Deals with the --import-iso {iso-file-spec} options.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param pszIsoSpec The ISO path specifier.
+ */
+static int rtFsIsoMakerCmdOptImportIso(PRTFSISOMAKERCMDOPTS pOpts, const char *pszIsoSpec)
+{
+ /*
+ * Open the input file.
+ */
+ RTERRINFOSTATIC ErrInfo;
+ RTVFSFILE hIsoFile;
+ int rc;
+ if (rtFsIsoMakerCmdUseSrcStack(pOpts, pszIsoSpec))
+ {
+ rc = RTVfsDirOpenFile(pOpts->aSrcStack[pOpts->iSrcStack].hSrcDir, pszIsoSpec,
+ RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE, &hIsoFile);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Failed to open '%s' %s %s for importing: %Rrc", pszIsoSpec,
+ pOpts->aSrcStack[pOpts->iSrcStack].pszSrcVfsOption ? "inside" : "relative to",
+ pOpts->aSrcStack[pOpts->iSrcStack].pszSrcVfs, rc);
+ }
+ else
+ {
+ uint32_t offError;
+ rc = RTVfsChainOpenFile(pszIsoSpec, RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE,
+ &hIsoFile, &offError, RTErrInfoInitStatic(&ErrInfo));
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdChainError(pOpts, "RTVfsChainOpenFile", pszIsoSpec, rc, offError, &ErrInfo.Core);
+ }
+
+ RTFSISOMAKERIMPORTRESULTS Results;
+ rc = RTFsIsoMakerImport(pOpts->hIsoMaker, hIsoFile, 0 /*fFlags*/, &Results, RTErrInfoInitStatic(&ErrInfo));
+
+ RTVfsFileRelease(hIsoFile);
+
+ pOpts->cItemsAdded += Results.cAddedFiles;
+ pOpts->cItemsAdded += Results.cAddedSymlinks;
+ pOpts->cItemsAdded += Results.cAddedDirs;
+ pOpts->cItemsAdded += Results.cBootCatEntries != UINT32_MAX ? Results.cBootCatEntries : 0;
+ pOpts->cItemsAdded += Results.cbSysArea != 0 ? 1 : 0;
+
+ rtFsIsoMakerPrintf(pOpts, "ISO imported statistics for '%s'\n", pszIsoSpec);
+ rtFsIsoMakerPrintf(pOpts, " cAddedNames: %'14RU32\n", Results.cAddedNames);
+ rtFsIsoMakerPrintf(pOpts, " cAddedDirs: %'14RU32\n", Results.cAddedDirs);
+ rtFsIsoMakerPrintf(pOpts, " cbAddedDataBlocks: %'14RU64 bytes\n", Results.cbAddedDataBlocks);
+ rtFsIsoMakerPrintf(pOpts, " cAddedFiles: %'14RU32\n", Results.cAddedFiles);
+ rtFsIsoMakerPrintf(pOpts, " cAddedSymlinks: %'14RU32\n", Results.cAddedSymlinks);
+ if (Results.cBootCatEntries == UINT32_MAX)
+ rtFsIsoMakerPrintf(pOpts, " cBootCatEntries: none\n");
+ else
+ rtFsIsoMakerPrintf(pOpts, " cBootCatEntries: %'14RU32\n", Results.cBootCatEntries);
+ rtFsIsoMakerPrintf(pOpts, " cbSysArea: %'14RU32\n", Results.cbSysArea);
+ rtFsIsoMakerPrintf(pOpts, " cErrors: %'14RU32\n", Results.cErrors);
+
+ if (RT_SUCCESS(rc))
+ return rc;
+ if (RTErrInfoIsSet(&ErrInfo.Core))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTFsIsoMakerImport failed: %Rrc - %s", rc, ErrInfo.Core.pszMsg);
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTFsIsoMakerImport failed: %Rrc", rc);
+}
+
+
+/**
+ * Deals with: --iso-level, -l
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param uLevel The new ISO level.
+ */
+static int rtFsIsoMakerCmdOptSetIsoLevel(PRTFSISOMAKERCMDOPTS pOpts, uint8_t uLevel)
+{
+ int rc = RTFsIsoMakerSetIso9660Level(pOpts->hIsoMaker, uLevel);
+ if (RT_SUCCESS(rc))
+ return rc;
+ if (rc == VERR_WRONG_ORDER)
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Cannot change ISO level to %d after having added files!", uLevel);
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Failed to set ISO level to %d: %Rrc", uLevel, rc);
+}
+
+
+/**
+ * Deals with: --rock-ridge, --limited-rock-ridge, --no-rock-ridge
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param uLevel The new rock ridge level.
+ */
+static int rtFsIsoMakerCmdOptSetPrimaryRockLevel(PRTFSISOMAKERCMDOPTS pOpts, uint8_t uLevel)
+{
+ int rc = RTFsIsoMakerSetRockRidgeLevel(pOpts->hIsoMaker, uLevel);
+ if (RT_SUCCESS(rc))
+ return rc;
+ if (rc == VERR_WRONG_ORDER)
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Cannot change rock ridge level to %d after having added files!", uLevel);
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Failed to set rock ridge level to %d: %Rrc", uLevel, rc);
+}
+
+
+/**
+ * Deals with: --joliet, --no-joliet, --joliet-ucs-level, --ucs-level
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param uLevel The new rock ridge level.
+ */
+static int rtFsIsoMakerCmdOptSetJolietUcs2Level(PRTFSISOMAKERCMDOPTS pOpts, uint8_t uLevel)
+{
+ int rc = RTFsIsoMakerSetJolietUcs2Level(pOpts->hIsoMaker, uLevel);
+ if (RT_SUCCESS(rc))
+ return rc;
+ if (rc == VERR_WRONG_ORDER)
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Cannot change joliet UCS level to %d after having added files!", uLevel);
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Failed to set joliet UCS level to %d: %Rrc", uLevel, rc);
+}
+
+
+/**
+ * Deals with: --rational-attribs, --strict-attribs, -R, -r
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param uLevel The new rock ridge level.
+ */
+static int rtFsIsoMakerCmdOptSetAttribInheritStyle(PRTFSISOMAKERCMDOPTS pOpts, bool fStrict)
+{
+ int rc = RTFsIsoMakerSetAttribInheritStyle(pOpts->hIsoMaker, fStrict);
+ if (RT_SUCCESS(rc))
+ return rc;
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Failed to change attributes handling style to %s: %Rrc",
+ fStrict ? "strict" : "rational", rc);
+}
+
+
+/**
+ * Deals with: -G|--generic-boot {file}
+ *
+ * This concers content the first 16 sectors of the image. We start loading the
+ * file at byte 0 in the image and stops at 32KB.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param pszGenericBootImage The generic boot image source.
+ */
+static int rtFsIsoMakerCmdOptGenericBoot(PRTFSISOMAKERCMDOPTS pOpts, const char *pszGenericBootImage)
+{
+ RTERRINFOSTATIC ErrInfo;
+ uint32_t offError;
+ RTVFSFILE hVfsFile;
+ int rc = RTVfsChainOpenFile(pszGenericBootImage, RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE, &hVfsFile,
+ &offError, RTErrInfoInitStatic(&ErrInfo));
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdChainError(pOpts, "RTVfsChainOpenFile", pszGenericBootImage, rc, offError, &ErrInfo.Core);
+
+ uint8_t abBuf[_32K];
+ size_t cbRead;
+ rc = RTVfsFileReadAt(hVfsFile, 0, abBuf, sizeof(abBuf), &cbRead);
+ RTVfsFileRelease(hVfsFile);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Error reading 32KB from generic boot image '%s': %Rrc", pszGenericBootImage, rc);
+
+ rc = RTFsIsoMakerSetSysAreaContent(pOpts->hIsoMaker, abBuf, cbRead, 0);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTFsIsoMakerSetSysAreaContent failed with a %zu bytes input: %Rrc", cbRead, rc);
+
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Helper that makes sure we've got a validation boot entry.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ */
+static void rtFsIsoMakerCmdOptEltoritoEnsureValidationEntry(PRTFSISOMAKERCMDOPTS pOpts)
+{
+ if (pOpts->cBootCatEntries == 0)
+ {
+ pOpts->aBootCatEntries[0].enmType = RTFSISOMKCMDELTORITOENTRY::kEntryType_Validation;
+ pOpts->aBootCatEntries[0].u.Validation.idPlatform = ISO9660_ELTORITO_PLATFORM_ID_X86;
+ pOpts->aBootCatEntries[0].u.Validation.pszString = NULL;
+ pOpts->cBootCatEntries = 1;
+ }
+}
+
+
+/**
+ * Helper that makes sure we've got a current boot entry.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param fForceNew Whether to force a new entry.
+ * @param pidxBootCat Where to return the boot catalog index.
+ */
+static int rtFsIsoMakerCmdOptEltoritoEnsureSectionEntry(PRTFSISOMAKERCMDOPTS pOpts, bool fForceNew, uint32_t *pidxBootCat)
+{
+ rtFsIsoMakerCmdOptEltoritoEnsureValidationEntry(pOpts);
+
+ uint32_t i = pOpts->cBootCatEntries;
+ if (i == 2 && fForceNew)
+ {
+ pOpts->aBootCatEntries[i].enmType = RTFSISOMKCMDELTORITOENTRY::kEntryType_SectionHeader;
+ pOpts->aBootCatEntries[i].u.SectionHeader.idPlatform = pOpts->aBootCatEntries[0].u.Validation.idPlatform;
+ pOpts->aBootCatEntries[i].u.SectionHeader.pszString = NULL;
+ pOpts->cBootCatEntries = ++i;
+ }
+
+ if ( i == 1
+ || fForceNew
+ || pOpts->aBootCatEntries[i - 1].enmType == RTFSISOMKCMDELTORITOENTRY::kEntryType_SectionHeader)
+ {
+ if (i >= RT_ELEMENTS(pOpts->aBootCatEntries))
+ {
+ *pidxBootCat = UINT32_MAX;
+ return rtFsIsoMakerCmdErrorRc(pOpts, VERR_BUFFER_OVERFLOW, "Too many boot catalog entries");
+ }
+
+ pOpts->aBootCatEntries[i].enmType = i == 1 ? RTFSISOMKCMDELTORITOENTRY::kEntryType_Default
+ : RTFSISOMKCMDELTORITOENTRY::kEntryType_Section;
+ pOpts->aBootCatEntries[i].u.Section.pszImageNameInIso = NULL;
+ pOpts->aBootCatEntries[i].u.Section.idxImageObj = UINT32_MAX;
+ pOpts->aBootCatEntries[i].u.Section.fInsertBootInfoTable = false;
+ pOpts->aBootCatEntries[i].u.Section.fBootable = true;
+ pOpts->aBootCatEntries[i].u.Section.bBootMediaType = ISO9660_ELTORITO_BOOT_MEDIA_TYPE_MASK;
+ pOpts->aBootCatEntries[i].u.Section.bSystemType = 1 /*FAT12*/;
+ pOpts->aBootCatEntries[i].u.Section.uLoadSeg = 0x7c0;
+ pOpts->aBootCatEntries[i].u.Section.cSectorsToLoad = 4;
+ pOpts->cBootCatEntries = ++i;
+ }
+
+ *pidxBootCat = i - 1;
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Deals with: --boot-catalog <path-spec>
+ *
+ * This enters the boot catalog into the namespaces of the image. The path-spec
+ * is similar to what rtFsIsoMakerCmdAddSomething processes, only there isn't a
+ * source file part.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param pszGenericBootImage The generic boot image source.
+ */
+static int rtFsIsoMakerCmdOptEltoritoSetBootCatalogPath(PRTFSISOMAKERCMDOPTS pOpts, const char *pszBootCat)
+{
+ /* Make sure we'll fail later if no other boot options are present. */
+ rtFsIsoMakerCmdOptEltoritoEnsureValidationEntry(pOpts);
+
+ /* Parse the name spec. */
+ RTFSISOMKCMDPARSEDNAMES Parsed;
+ int rc = rtFsIsoMakerCmdParseNameSpec(pOpts, pszBootCat, false /*fWithSrc*/, &Parsed);
+ if (RT_SUCCESS(rc))
+ {
+ /* Query/create the boot catalog and enter it into the name spaces. */
+ uint32_t idxBootCatObj;
+ rc = RTFsIsoMakerQueryObjIdxForBootCatalog(pOpts->hIsoMaker, &idxBootCatObj);
+ if (RT_SUCCESS(rc))
+ rc = rtFsIsoMakerCmdSetObjPaths(pOpts, idxBootCatObj, &Parsed, "boot catalog");
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTFsIsoMakerQueryBootCatalogPathObjIdx failed: %Rrc", rc);
+ }
+ return rc;
+}
+
+
+/**
+ * Deals with: --eltorito-add-image {file-spec}
+ *
+ * This differs from -b|--eltorito-boot in that it takes a source file
+ * specification identical to what rtFsIsoMakerCmdAddSomething processes instead
+ * of a reference to a file in the image.
+ *
+ * This operates on the current eltorito boot catalog entry.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param pszGenericBootImage The generic boot image source.
+ */
+static int rtFsIsoMakerCmdOptEltoritoAddImage(PRTFSISOMAKERCMDOPTS pOpts, const char *pszBootImageSpec)
+{
+ /* Parse the name spec. */
+ RTFSISOMKCMDPARSEDNAMES Parsed;
+ int rc = rtFsIsoMakerCmdParseNameSpec(pOpts, pszBootImageSpec, true /*fWithSrc*/, &Parsed);
+ if (RT_SUCCESS(rc))
+ {
+ uint32_t idxBootCat;
+ rc = rtFsIsoMakerCmdOptEltoritoEnsureSectionEntry(pOpts, false /*fForceNew*/, &idxBootCat);
+ if (RT_SUCCESS(rc))
+ {
+ if ( pOpts->aBootCatEntries[idxBootCat].u.Section.idxImageObj != UINT32_MAX
+ || pOpts->aBootCatEntries[idxBootCat].u.Section.pszImageNameInIso != NULL)
+ rc = rtFsIsoMakerCmdSyntaxError(pOpts, "boot image already given for current El Torito entry (%#u)", idxBootCat);
+ else
+ {
+ uint32_t idxImageObj;
+ rc = rtFsIsoMakerCmdStatAndAddFile(pOpts, Parsed.aNames[Parsed.cNamesWithSrc - 1].szPath, &Parsed, &idxImageObj);
+ if (RT_SUCCESS(rc))
+ pOpts->aBootCatEntries[idxBootCat].u.Section.idxImageObj = idxImageObj;
+ }
+ }
+ }
+
+ return rc;
+}
+
+
+/**
+ * Deals with: -b|--eltorito-boot {file-in-iso}
+ *
+ * This operates on the current eltorito boot catalog entry.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param pszGenericBootImage The generic boot image source.
+ */
+static int rtFsIsoMakerCmdOptEltoritoBoot(PRTFSISOMAKERCMDOPTS pOpts, const char *pszBootImage)
+{
+ uint32_t idxBootCat;
+ int rc = rtFsIsoMakerCmdOptEltoritoEnsureSectionEntry(pOpts, false /*fForceNew*/, &idxBootCat);
+ if (RT_SUCCESS(rc))
+ {
+ if ( pOpts->aBootCatEntries[idxBootCat].u.Section.idxImageObj != UINT32_MAX
+ || pOpts->aBootCatEntries[idxBootCat].u.Section.pszImageNameInIso != NULL)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "boot image already given for current El Torito entry (%#u)", idxBootCat);
+
+ uint32_t idxImageObj = RTFsIsoMakerGetObjIdxForPath(pOpts->hIsoMaker, RTFSISOMAKER_NAMESPACE_ALL, pszBootImage);
+ if (idxImageObj == UINT32_MAX)
+ pOpts->aBootCatEntries[idxBootCat].u.Section.pszImageNameInIso = pszBootImage;
+ pOpts->aBootCatEntries[idxBootCat].u.Section.idxImageObj = idxImageObj;
+ }
+ return rc;
+}
+
+
+/**
+ * Deals with: --eltorito-platform-id {x86|PPC|Mac|efi|number}
+ *
+ * Operates on the validation entry or a section header.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param pszPlatformId The platform ID.
+ */
+static int rtFsIsoMakerCmdOptEltoritoPlatformId(PRTFSISOMAKERCMDOPTS pOpts, const char *pszPlatformId)
+{
+ /* Decode it. */
+ uint8_t idPlatform;
+ if (strcmp(pszPlatformId, "x86") == 0)
+ idPlatform = ISO9660_ELTORITO_PLATFORM_ID_X86;
+ else if (strcmp(pszPlatformId, "PPC") == 0)
+ idPlatform = ISO9660_ELTORITO_PLATFORM_ID_PPC;
+ else if (strcmp(pszPlatformId, "Mac") == 0)
+ idPlatform = ISO9660_ELTORITO_PLATFORM_ID_MAC;
+ else if (strcmp(pszPlatformId, "efi") == 0)
+ idPlatform = ISO9660_ELTORITO_PLATFORM_ID_EFI;
+ else
+ {
+ int rc = RTStrToUInt8Full(pszPlatformId, 0, &idPlatform);
+ if (rc != VINF_SUCCESS)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "invalid or unknown platform ID: %s", pszPlatformId);
+ }
+
+ /* If this option comes before anything related to the default entry, work
+ on the validation entry. */
+ if (pOpts->cBootCatEntries <= 1)
+ {
+ rtFsIsoMakerCmdOptEltoritoEnsureValidationEntry(pOpts);
+ pOpts->aBootCatEntries[0].u.Validation.idPlatform = idPlatform;
+ }
+ /* Otherwise, work on the current section header, creating a new one if necessary. */
+ else
+ {
+ uint32_t idxBootCat = pOpts->cBootCatEntries - 1;
+ if (pOpts->aBootCatEntries[idxBootCat].enmType == RTFSISOMKCMDELTORITOENTRY::kEntryType_SectionHeader)
+ pOpts->aBootCatEntries[idxBootCat].u.SectionHeader.idPlatform = idPlatform;
+ else
+ {
+ idxBootCat++;
+ if (idxBootCat + 2 > RT_ELEMENTS(pOpts->aBootCatEntries))
+ return rtFsIsoMakerCmdErrorRc(pOpts, VERR_BUFFER_OVERFLOW, "Too many boot catalog entries");
+
+ pOpts->aBootCatEntries[idxBootCat].enmType = RTFSISOMKCMDELTORITOENTRY::kEntryType_SectionHeader;
+ pOpts->aBootCatEntries[idxBootCat].u.SectionHeader.idPlatform = idPlatform;
+ pOpts->aBootCatEntries[idxBootCat].u.SectionHeader.pszString = NULL;
+ pOpts->cBootCatEntries = idxBootCat + 1;
+ }
+ }
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Deals with: -no-boot
+ *
+ * This operates on the current eltorito boot catalog entry.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ */
+static int rtFsIsoMakerCmdOptEltoritoSetNotBootable(PRTFSISOMAKERCMDOPTS pOpts)
+{
+ uint32_t idxBootCat;
+ int rc = rtFsIsoMakerCmdOptEltoritoEnsureSectionEntry(pOpts, false /*fForceNew*/, &idxBootCat);
+ if (RT_SUCCESS(rc))
+ pOpts->aBootCatEntries[idxBootCat].u.Section.fBootable = false;
+ return rc;
+}
+
+
+/**
+ * Deals with: -hard-disk-boot, -no-emulation-boot, --eltorito-floppy-12,
+ * --eltorito-floppy-144, --eltorito-floppy-288
+ *
+ * This operates on the current eltorito boot catalog entry.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param bMediaType The media type.
+ */
+static int rtFsIsoMakerCmdOptEltoritoSetMediaType(PRTFSISOMAKERCMDOPTS pOpts, uint8_t bMediaType)
+{
+ uint32_t idxBootCat;
+ int rc = rtFsIsoMakerCmdOptEltoritoEnsureSectionEntry(pOpts, false /*fForceNew*/, &idxBootCat);
+ if (RT_SUCCESS(rc))
+ pOpts->aBootCatEntries[idxBootCat].u.Section.bBootMediaType = bMediaType;
+ return rc;
+}
+
+
+/**
+ * Deals with: -boot-load-seg {seg}
+ *
+ * This operates on the current eltorito boot catalog entry.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param uSeg The load segment.
+ */
+static int rtFsIsoMakerCmdOptEltoritoSetLoadSegment(PRTFSISOMAKERCMDOPTS pOpts, uint16_t uSeg)
+{
+ uint32_t idxBootCat;
+ int rc = rtFsIsoMakerCmdOptEltoritoEnsureSectionEntry(pOpts, false /*fForceNew*/, &idxBootCat);
+ if (RT_SUCCESS(rc))
+ pOpts->aBootCatEntries[idxBootCat].u.Section.uLoadSeg = uSeg;
+ return rc;
+}
+
+
+/**
+ * Deals with: -boot-load-size {sectors}
+ *
+ * This operates on the current eltorito boot catalog entry.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param cSectors Number of emulated sectors to load
+ */
+static int rtFsIsoMakerCmdOptEltoritoSetLoadSectorCount(PRTFSISOMAKERCMDOPTS pOpts, uint16_t cSectors)
+{
+ uint32_t idxBootCat;
+ int rc = rtFsIsoMakerCmdOptEltoritoEnsureSectionEntry(pOpts, false /*fForceNew*/, &idxBootCat);
+ if (RT_SUCCESS(rc))
+ pOpts->aBootCatEntries[idxBootCat].u.Section.cSectorsToLoad = cSectors;
+ return rc;
+}
+
+
+/**
+ * Deals with: -boot-info-table
+ *
+ * This operates on the current eltorito boot catalog entry.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ */
+static int rtFsIsoMakerCmdOptEltoritoEnableBootInfoTablePatching(PRTFSISOMAKERCMDOPTS pOpts)
+{
+ uint32_t idxBootCat;
+ int rc = rtFsIsoMakerCmdOptEltoritoEnsureSectionEntry(pOpts, false /*fForceNew*/, &idxBootCat);
+ if (RT_SUCCESS(rc))
+ pOpts->aBootCatEntries[idxBootCat].u.Section.fInsertBootInfoTable = true;
+ return rc;
+}
+
+
+/**
+ * Validates and commits the boot catalog stuff.
+ *
+ * ASSUMING this is called after all options are parsed and there is only this
+ * one call.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ */
+static int rtFsIsoMakerCmdOptEltoritoCommitBootCatalog(PRTFSISOMAKERCMDOPTS pOpts)
+{
+ if (pOpts->cBootCatEntries == 0)
+ return VINF_SUCCESS;
+
+ /*
+ * Locate and configure the boot images first.
+ */
+ int rc;
+ PRTFSISOMKCMDELTORITOENTRY pBootCatEntry = &pOpts->aBootCatEntries[1];
+ for (uint32_t idxBootCat = 1; idxBootCat < pOpts->cBootCatEntries; idxBootCat++, pBootCatEntry++)
+ if ( pBootCatEntry->enmType == RTFSISOMKCMDELTORITOENTRY::kEntryType_Default
+ || pBootCatEntry->enmType == RTFSISOMKCMDELTORITOENTRY::kEntryType_Section)
+ {
+ /* Make sure we've got a boot image. */
+ uint32_t idxImageObj = pBootCatEntry->u.Section.idxImageObj;
+ if (idxImageObj == UINT32_MAX)
+ {
+ const char *pszBootImage = pBootCatEntry->u.Section.pszImageNameInIso;
+ if (pszBootImage == NULL)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "No image name given for boot catalog entry #%u", idxBootCat);
+
+ idxImageObj = RTFsIsoMakerGetObjIdxForPath(pOpts->hIsoMaker, RTFSISOMAKER_NAMESPACE_ALL, pszBootImage);
+ if (idxImageObj == UINT32_MAX)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "Unable to locate image for boot catalog entry #%u: %s",
+ idxBootCat, pszBootImage);
+ pBootCatEntry->u.Section.idxImageObj = idxImageObj;
+ }
+
+ /* Enable patching it? */
+ if (pBootCatEntry->u.Section.fInsertBootInfoTable)
+ {
+ rc = RTFsIsoMakerObjEnableBootInfoTablePatching(pOpts->hIsoMaker, idxImageObj, true);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc,
+ "RTFsIsoMakerObjEnableBootInfoTablePatching failed on entry #%u: %Rrc",
+ idxBootCat, rc);
+ }
+
+ /* Figure out the floppy type given the object size. */
+ if (pBootCatEntry->u.Section.bBootMediaType == ISO9660_ELTORITO_BOOT_MEDIA_TYPE_MASK)
+ {
+ uint64_t cbImage;
+ rc = RTFsIsoMakerObjQueryDataSize(pOpts->hIsoMaker, idxImageObj, &cbImage);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTFsIsoMakerObjGetDataSize failed on entry #%u: %Rrc",
+ idxBootCat, rc);
+ if (cbImage == 1228800)
+ pBootCatEntry->u.Section.bBootMediaType = ISO9660_ELTORITO_BOOT_MEDIA_TYPE_FLOPPY_1_2_MB;
+ else if (cbImage <= 1474560)
+ pBootCatEntry->u.Section.bBootMediaType = ISO9660_ELTORITO_BOOT_MEDIA_TYPE_FLOPPY_1_44_MB;
+ else if (cbImage <= 2949120)
+ pBootCatEntry->u.Section.bBootMediaType = ISO9660_ELTORITO_BOOT_MEDIA_TYPE_FLOPPY_2_88_MB;
+ else
+ pBootCatEntry->u.Section.bBootMediaType = ISO9660_ELTORITO_BOOT_MEDIA_TYPE_HARD_DISK;
+ }
+ }
+
+ /*
+ * Add the boot catalog entries.
+ */
+ pBootCatEntry = &pOpts->aBootCatEntries[0];
+ for (uint32_t idxBootCat = 0; idxBootCat < pOpts->cBootCatEntries; idxBootCat++, pBootCatEntry++)
+ switch (pBootCatEntry->enmType)
+ {
+ case RTFSISOMKCMDELTORITOENTRY::kEntryType_Validation:
+ Assert(idxBootCat == 0);
+ rc = RTFsIsoMakerBootCatSetValidationEntry(pOpts->hIsoMaker, pBootCatEntry->u.Validation.idPlatform,
+ pBootCatEntry->u.Validation.pszString);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTFsIsoMakerBootCatSetValidationEntry failed: %Rrc", rc);
+ break;
+
+ case RTFSISOMKCMDELTORITOENTRY::kEntryType_Default:
+ case RTFSISOMKCMDELTORITOENTRY::kEntryType_Section:
+ Assert(pBootCatEntry->enmType == RTFSISOMKCMDELTORITOENTRY::kEntryType_Default ? idxBootCat == 1 : idxBootCat > 2);
+ rc = RTFsIsoMakerBootCatSetSectionEntry(pOpts->hIsoMaker, idxBootCat,
+ pBootCatEntry->u.Section.idxImageObj,
+ pBootCatEntry->u.Section.bBootMediaType,
+ pBootCatEntry->u.Section.bSystemType,
+ pBootCatEntry->u.Section.fBootable,
+ pBootCatEntry->u.Section.uLoadSeg,
+ pBootCatEntry->u.Section.cSectorsToLoad,
+ ISO9660_ELTORITO_SEL_CRIT_TYPE_NONE, NULL, 0);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTFsIsoMakerBootCatSetSectionEntry failed on entry #%u: %Rrc",
+ idxBootCat, rc);
+ break;
+
+ case RTFSISOMKCMDELTORITOENTRY::kEntryType_SectionHeader:
+ {
+ uint32_t cEntries = 1;
+ while ( idxBootCat + cEntries < pOpts->cBootCatEntries
+ && pBootCatEntry[cEntries].enmType != RTFSISOMKCMDELTORITOENTRY::kEntryType_SectionHeader)
+ cEntries++;
+ cEntries--;
+
+ Assert(idxBootCat > 1);
+ rc = RTFsIsoMakerBootCatSetSectionHeaderEntry(pOpts->hIsoMaker, idxBootCat, cEntries,
+ pBootCatEntry->u.SectionHeader.idPlatform,
+ pBootCatEntry->u.SectionHeader.pszString);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc,
+ "RTFsIsoMakerBootCatSetSectionHeaderEntry failed on entry #%u: %Rrc",
+ idxBootCat, rc);
+ break;
+ }
+
+ default:
+ AssertFailedReturn(VERR_INTERNAL_ERROR_3);
+ }
+
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Deals with: --eltorito-new-entry, --eltorito-alt-boot
+ *
+ * This operates on the current eltorito boot catalog entry.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ */
+static int rtFsIsoMakerCmdOptEltoritoNewEntry(PRTFSISOMAKERCMDOPTS pOpts)
+{
+ uint32_t idxBootCat;
+ return rtFsIsoMakerCmdOptEltoritoEnsureSectionEntry(pOpts, true /*fForceNew*/, &idxBootCat);
+}
+
+
+/**
+ * Sets a string property in all namespaces.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param pszValue The new string value.
+ * @param enmStringProp The string property.
+ */
+static int rtFsIsoMakerCmdOptSetStringProp(PRTFSISOMAKERCMDOPTS pOpts, const char *pszValue, RTFSISOMAKERSTRINGPROP enmStringProp)
+{
+ int rc = RTFsIsoMakerSetStringProp(pOpts->hIsoMaker, enmStringProp, pOpts->fDstNamespaces, pszValue);
+ if (RT_FAILURE(rc))
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "Failed to set string property %d to '%s': %Rrc", enmStringProp, pszValue, rc);
+ return rc;
+}
+
+
+/**
+ * Handles the --dir-mode and --file-mode options.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param fDir True if applies to dir, false if applies to
+ * files.
+ * @param fMode The forced mode.
+ */
+static int rtFsIsoMakerCmdOptSetFileOrDirMode(PRTFSISOMAKERCMDOPTS pOpts, bool fDir, RTFMODE fMode)
+{
+ /* Change the mode masks. */
+ int rc;
+ if (fDir)
+ rc = RTFsIsoMakerSetForcedDirMode(pOpts->hIsoMaker, fMode, true /*fForced*/);
+ else
+ rc = RTFsIsoMakerSetForcedFileMode(pOpts->hIsoMaker, fMode, true /*fForced*/);
+ if (RT_SUCCESS(rc))
+ {
+ /* Then enable rock.*/
+ rc = RTFsIsoMakerSetRockRidgeLevel(pOpts->hIsoMaker, 2);
+ if (RT_SUCCESS(rc))
+ return VINF_SUCCESS;
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Failed to enable rock ridge: %Rrc", rc);
+ }
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Failed to set %s force & default mode mask to %04o: %Rrc",
+ fMode, fDir ? "directory" : "file", rc);
+}
+
+
+/**
+ * Handles the --no-dir-mode and --no-file-mode options that counters
+ * --dir-mode and --file-mode.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param fDir True if applies to dir, false if applies to
+ * files.
+ */
+static int rtFsIsoMakerCmdOptDisableFileOrDirMode(PRTFSISOMAKERCMDOPTS pOpts, bool fDir)
+{
+ int rc;
+ if (fDir)
+ rc = RTFsIsoMakerSetForcedDirMode(pOpts->hIsoMaker, 0, false /*fForced*/);
+ else
+ rc = RTFsIsoMakerSetForcedFileMode(pOpts->hIsoMaker, 0, false /*fForced*/);
+ if (RT_SUCCESS(rc))
+ return VINF_SUCCESS;
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Failed to disable forced %s mode mask: %Rrc", fDir ? "directory" : "file", rc);
+}
+
+
+
+/**
+ * Handles the --new-dir-mode option.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param fMode The forced mode.
+ */
+static int rtFsIsoMakerCmdOptSetNewDirMode(PRTFSISOMAKERCMDOPTS pOpts, RTFMODE fMode)
+{
+ int rc = RTFsIsoMakerSetDefaultDirMode(pOpts->hIsoMaker, fMode);
+ if (RT_SUCCESS(rc))
+ return VINF_SUCCESS;
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "Failed to set default dir mode mask to %04o: %Rrc", fMode, rc);
+}
+
+
+/**
+ * Handles the --chmod option.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param pszSpec The option value.
+ */
+static int rtFsIsoMakerCmdOptChmod(PRTFSISOMAKERCMDOPTS pOpts, const char *pszSpec)
+{
+ /*
+ * Parse the mode part.
+ */
+ int rc;
+ uint32_t fUnset = 07777;
+ uint32_t fSet = 0;
+ const char *pszPath = pszSpec;
+ if (RT_C_IS_DIGIT(*pszPath))
+ {
+ rc = RTStrToUInt32Ex(pszSpec, (char **)&pszPath, 8, &fSet);
+ if (rc != VWRN_TRAILING_CHARS)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "Malformed --chmod, octal mode parse failed: %s (%Rrc)", pszSpec, rc);
+ if (fSet & ~07777)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "Malformed --chmod, invalid mode mask: 0%o, max 07777", fSet);
+ if (*pszPath != ':')
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "Malformed --chmod, expected colon after mode: %s", pszSpec);
+ }
+ else
+ {
+ pszPath = strchr(pszPath, ':');
+ if (pszPath == NULL)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "Malformed --chmod, expected colon after mode: %s", pszSpec);
+ size_t const cchMode = pszPath - pszSpec;
+
+ /* We currently only matches certain patterns. Later this needs to be generalized into a RTFile or RTPath method. */
+ fUnset = 0;
+#define MATCH_MODE_STR(a_szMode) (cchMode == sizeof(a_szMode) - 1U && memcmp(pszSpec, a_szMode, sizeof(a_szMode) - 1) == 0)
+ if (MATCH_MODE_STR("a+x"))
+ fSet = 0111;
+ else if (MATCH_MODE_STR("a+r"))
+ fSet = 0444;
+ else if (MATCH_MODE_STR("a+rx"))
+ fSet = 0555;
+ else
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "Sorry, --chmod doesn't understand complicated mode expressions: %s", pszSpec);
+#undef MATCH_MODE_STR
+ }
+
+ /*
+ * Check that the file starts with a slash.
+ */
+ pszPath++;
+ if (!RTPATH_IS_SLASH(*pszPath))
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "Malformed --chmod, path must start with a slash: %s", pszSpec);
+
+ /*
+ * Do the job.
+ */
+ rc = RTFsIsoMakerSetPathMode(pOpts->hIsoMaker, pszPath, pOpts->fDstNamespaces, fSet, fUnset, 0 /*fFlags*/, NULL /*pcHits*/);
+ if (rc == VWRN_NOT_FOUND)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "Could not find --chmod path: %s", pszPath);
+ if (RT_SUCCESS(rc))
+ return VINF_SUCCESS;
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "RTFsIsoMakerSetPathMode(,%s,%#x,%o,%o,0,) failed: %Rrc",
+ pszPath, pOpts->fDstNamespaces, fSet, fUnset, rc);
+}
+
+
+/**
+ * Handles the --chown and --chgrp options.
+ *
+ * @returns IPRT status code
+ * @param pOpts The ISO maker command instance.
+ * @param pszSpec The option value.
+ * @param fIsChOwn Set if 'chown', clear if 'chgrp'.
+ */
+static int rtFsIsoMakerCmdOptChangeOwnerGroup(PRTFSISOMAKERCMDOPTS pOpts, const char *pszSpec, bool fIsChOwn)
+{
+ const char * const pszOpt = fIsChOwn ? "chown" : "chgrp";
+
+ /*
+ * Parse out the ID and path .
+ */
+ uint32_t idValue;
+ const char *pszPath = pszSpec;
+ int rc = RTStrToUInt32Ex(pszSpec, (char **)&pszPath, 0, &idValue);
+ if (rc != VWRN_TRAILING_CHARS)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "Malformed --%s, numeric ID parse failed: %s (%Rrc)", pszOpt, pszSpec, rc);
+ if (*pszPath != ':')
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "Malformed --%s, expected colon after ID: %s", pszOpt, pszSpec);
+ pszPath++;
+ if (!RTPATH_IS_SLASH(*pszPath))
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "Malformed --%s, path must start with a slash: %s", pszOpt, pszSpec);
+
+ /*
+ * Do the job.
+ */
+ if (fIsChOwn)
+ rc = RTFsIsoMakerSetPathOwnerId(pOpts->hIsoMaker, pszPath, pOpts->fDstNamespaces, idValue, NULL /*pcHits*/);
+ else
+ rc = RTFsIsoMakerSetPathGroupId(pOpts->hIsoMaker, pszPath, pOpts->fDstNamespaces, idValue, NULL /*pcHits*/);
+ if (rc == VWRN_NOT_FOUND)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "Could not find --%s path: %s", pszOpt, pszPath);
+ if (RT_SUCCESS(rc))
+ return VINF_SUCCESS;
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "RTFsIsoMakerSetPath%sId(,%s,%#x,%u,) failed: %Rrc",
+ fIsChOwn ? "Owner" : "Group", pszPath, pOpts->fDstNamespaces, idValue, rc);
+}
+
+
+/**
+ * Loads an argument file (e.g. a .iso-file) and parses it.
+ *
+ * @returns IPRT status code.
+ * @param pOpts The ISO maker command instance.
+ * @param pszFileSpec The file to parse.
+ * @param cDepth The current nesting depth.
+ */
+static int rtFsIsoMakerCmdParseArgumentFile(PRTFSISOMAKERCMDOPTS pOpts, const char *pszFileSpec, unsigned cDepth)
+{
+ if (cDepth > 2)
+ return rtFsIsoMakerCmdErrorRc(pOpts, VERR_INVALID_PARAMETER, "Too many nested argument files!");
+
+ /*
+ * Read the file into memory.
+ */
+ RTERRINFOSTATIC ErrInfo;
+ uint32_t offError;
+ RTVFSFILE hVfsFile;
+ int rc = RTVfsChainOpenFile(pszFileSpec, RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE, &hVfsFile,
+ &offError, RTErrInfoInitStatic(&ErrInfo));
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdChainError(pOpts, "RTVfsChainOpenFile", pszFileSpec, rc, offError, &ErrInfo.Core);
+
+ uint64_t cbFile = 0;
+ rc = RTVfsFileQuerySize(hVfsFile, &cbFile);
+ if (RT_SUCCESS(rc))
+ {
+ if (cbFile < _2M)
+ {
+ char *pszContent = (char *)RTMemTmpAllocZ((size_t)cbFile + 1);
+ if (pszContent)
+ {
+ rc = RTVfsFileRead(hVfsFile, pszContent, (size_t)cbFile, NULL);
+ if (RT_SUCCESS(rc))
+ {
+ /*
+ * Check that it's valid UTF-8 and turn it into an argument vector.
+ */
+ rc = RTStrValidateEncodingEx(pszContent, (size_t)cbFile + 1,
+ RTSTR_VALIDATE_ENCODING_EXACT_LENGTH | RTSTR_VALIDATE_ENCODING_ZERO_TERMINATED);
+ if (RT_SUCCESS(rc))
+ {
+ uint32_t fGetOpt = strstr(pszContent, "--iprt-iso-maker-file-marker-ms") == NULL
+ ? RTGETOPTARGV_CNV_QUOTE_BOURNE_SH : RTGETOPTARGV_CNV_QUOTE_MS_CRT;
+ fGetOpt |= RTGETOPTARGV_CNV_MODIFY_INPUT;
+ char **papszArgs;
+ int cArgs;
+ rc = RTGetOptArgvFromString(&papszArgs, &cArgs, pszContent, fGetOpt, NULL);
+ if (RT_SUCCESS(rc))
+ {
+ /*
+ * Parse them.
+ */
+ rc = rtFsIsoMakerCmdParse(pOpts, cArgs, papszArgs, cDepth + 1);
+
+ RTGetOptArgvFreeEx(papszArgs, fGetOpt);
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "%s: RTGetOptArgvFromString failed: %Rrc", pszFileSpec, rc);
+
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "%s: invalid encoding", pszFileSpec);
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "%s: error to read it into memory: %Rrc", pszFileSpec, rc);
+ RTMemTmpFree(pszContent);
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_NO_TMP_MEMORY, "%s: failed to allocte %zu bytes for reading",
+ pszFileSpec, (size_t)cbFile + 1);
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_FILE_TOO_BIG, "%s: file is too big: %'RU64 bytes, max 2MB", pszFileSpec, cbFile);
+ }
+ else
+ rtFsIsoMakerCmdErrorRc(pOpts, rc, "%s: RTVfsFileQuerySize failed: %Rrc", pszFileSpec, rc);
+ RTVfsFileRelease(hVfsFile);
+ return rc;
+}
+
+
+/**
+ * Parses the given command line options.
+ *
+ * @returns IPRT status code.
+ * @retval VINF_CALLBACK_RETURN if exit successfully (help, version).
+ * @param pOpts The ISO maker command instance.
+ * @param cArgs Number of arguments in papszArgs.
+ * @param papszArgs The argument vector to parse.
+ */
+static int rtFsIsoMakerCmdParse(PRTFSISOMAKERCMDOPTS pOpts, unsigned cArgs, char **papszArgs, unsigned cDepth)
+{
+ /* Setup option parsing. */
+ RTGETOPTSTATE GetState;
+ int rc = RTGetOptInit(&GetState, cArgs, papszArgs, g_aRtFsIsoMakerOptions, RT_ELEMENTS(g_aRtFsIsoMakerOptions),
+ cDepth == 0 ? 1 : 0 /*iFirst*/, 0 /*fFlags*/);
+ if (RT_FAILURE(rc))
+ return rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTGetOpt failed: %Rrc", rc);
+
+ /*
+ * Parse parameters. Parameters are position dependent.
+ */
+ RTGETOPTUNION ValueUnion;
+ while ( RT_SUCCESS(rc)
+ && (rc = RTGetOpt(&GetState, &ValueUnion)) != 0)
+ {
+ switch (rc)
+ {
+ /*
+ * Files and directories.
+ */
+ case VINF_GETOPT_NOT_OPTION:
+ if ( *ValueUnion.psz != '@'
+ || strchr(ValueUnion.psz, '='))
+ rc = rtFsIsoMakerCmdAddSomething(pOpts, ValueUnion.psz);
+ else
+ rc = rtFsIsoMakerCmdParseArgumentFile(pOpts, ValueUnion.psz + 1, cDepth);
+ break;
+
+
+ /*
+ * General options
+ */
+ case 'o':
+ if (pOpts->fVirtualImageMaker)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "The --output option is not allowed");
+ if (pOpts->pszOutFile)
+ return rtFsIsoMakerCmdSyntaxError(pOpts, "The --output option is specified more than once");
+ pOpts->pszOutFile = ValueUnion.psz;
+ break;
+
+ case RTFSISOMAKERCMD_OPT_NAME_SETUP:
+ rc = rtFsIsoMakerCmdOptNameSetup(pOpts, ValueUnion.psz);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_NAME_SETUP_FROM_IMPORT:
+ rc = rtFsIsoMakerCmdOptNameSetupFromImport(pOpts);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_PUSH_ISO:
+ rc = rtFsIsoMakerCmdOptPushIso(pOpts, ValueUnion.psz, "--push-iso", 0);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_PUSH_ISO_NO_JOLIET:
+ rc = rtFsIsoMakerCmdOptPushIso(pOpts, ValueUnion.psz, "--push-iso-no-joliet", RTFSISO9660_F_NO_JOLIET);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_PUSH_ISO_NO_ROCK:
+ rc = rtFsIsoMakerCmdOptPushIso(pOpts, ValueUnion.psz, "--push-iso-no-rock", RTFSISO9660_F_NO_ROCK);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_PUSH_ISO_NO_ROCK_NO_JOLIET:
+ rc = rtFsIsoMakerCmdOptPushIso(pOpts, ValueUnion.psz, "--push-iso-no-rock-no-joliet",
+ RTFSISO9660_F_NO_ROCK | RTFSISO9660_F_NO_JOLIET);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_POP:
+ rc = rtFsIsoMakerCmdOptPop(pOpts);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_IMPORT_ISO:
+ rc = rtFsIsoMakerCmdOptImportIso(pOpts, ValueUnion.psz);
+ break;
+
+
+ /*
+ * Namespace configuration.
+ */
+ case RTFSISOMAKERCMD_OPT_ISO_LEVEL:
+ rc = rtFsIsoMakerCmdOptSetIsoLevel(pOpts, ValueUnion.u8);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_ROCK_RIDGE:
+ rc = rtFsIsoMakerCmdOptSetPrimaryRockLevel(pOpts, 2);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_LIMITED_ROCK_RIDGE:
+ rc = rtFsIsoMakerCmdOptSetPrimaryRockLevel(pOpts, 1);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_NO_ROCK_RIDGE:
+ rc = rtFsIsoMakerCmdOptSetPrimaryRockLevel(pOpts, 0);
+ break;
+
+ case 'J':
+ rc = rtFsIsoMakerCmdOptSetJolietUcs2Level(pOpts, 3);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_NO_JOLIET:
+ rc = rtFsIsoMakerCmdOptSetJolietUcs2Level(pOpts, 0);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_JOLIET_LEVEL:
+ rc = rtFsIsoMakerCmdOptSetJolietUcs2Level(pOpts, ValueUnion.u8);
+ break;
+
+
+ /*
+ * File attributes.
+ */
+ case RTFSISOMAKERCMD_OPT_RATIONAL_ATTRIBS:
+ rc = rtFsIsoMakerCmdOptSetAttribInheritStyle(pOpts, false /*fStrict*/);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_STRICT_ATTRIBS:
+ rc = rtFsIsoMakerCmdOptSetAttribInheritStyle(pOpts, true /*fStrict*/);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_FILE_MODE:
+ rc = rtFsIsoMakerCmdOptSetFileOrDirMode(pOpts, false /*fDir*/, ValueUnion.u32);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_NO_FILE_MODE:
+ rc = rtFsIsoMakerCmdOptDisableFileOrDirMode(pOpts, false /*fDir*/);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_DIR_MODE:
+ rc = rtFsIsoMakerCmdOptSetFileOrDirMode(pOpts, true /*fDir*/, ValueUnion.u32);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_NO_DIR_MODE:
+ rc = rtFsIsoMakerCmdOptDisableFileOrDirMode(pOpts, true /*fDir*/);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_NEW_DIR_MODE:
+ rc = rtFsIsoMakerCmdOptSetNewDirMode(pOpts, ValueUnion.u32);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_CHMOD:
+ rc = rtFsIsoMakerCmdOptChmod(pOpts, ValueUnion.psz);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_CHOWN:
+ rc = rtFsIsoMakerCmdOptChangeOwnerGroup(pOpts, ValueUnion.psz, true /*fIsChOwn*/);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_CHGRP:
+ rc = rtFsIsoMakerCmdOptChangeOwnerGroup(pOpts, ValueUnion.psz, false /*fIsChOwn*/);
+ break;
+
+
+ /*
+ * Boot related options.
+ */
+ case 'G': /* --generic-boot <file> */
+ rc = rtFsIsoMakerCmdOptGenericBoot(pOpts, ValueUnion.psz);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_ELTORITO_ADD_IMAGE:
+ rc = rtFsIsoMakerCmdOptEltoritoAddImage(pOpts, ValueUnion.psz);
+ break;
+
+ case 'b': /* --eltorito-boot <boot.img> */
+ rc = rtFsIsoMakerCmdOptEltoritoBoot(pOpts, ValueUnion.psz);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_ELTORITO_NEW_ENTRY:
+ rc = rtFsIsoMakerCmdOptEltoritoNewEntry(pOpts);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_ELTORITO_PLATFORM_ID:
+ rc = rtFsIsoMakerCmdOptEltoritoPlatformId(pOpts, ValueUnion.psz);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_ELTORITO_NO_BOOT:
+ rc = rtFsIsoMakerCmdOptEltoritoSetNotBootable(pOpts);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_ELTORITO_FLOPPY_12:
+ rc = rtFsIsoMakerCmdOptEltoritoSetMediaType(pOpts, ISO9660_ELTORITO_BOOT_MEDIA_TYPE_FLOPPY_1_2_MB);
+ break;
+ case RTFSISOMAKERCMD_OPT_ELTORITO_FLOPPY_144:
+ rc = rtFsIsoMakerCmdOptEltoritoSetMediaType(pOpts, ISO9660_ELTORITO_BOOT_MEDIA_TYPE_FLOPPY_1_44_MB);
+ break;
+ case RTFSISOMAKERCMD_OPT_ELTORITO_FLOPPY_288:
+ rc = rtFsIsoMakerCmdOptEltoritoSetMediaType(pOpts, ISO9660_ELTORITO_BOOT_MEDIA_TYPE_FLOPPY_2_88_MB);
+ break;
+ case RTFSISOMAKERCMD_OPT_ELTORITO_HARD_DISK_BOOT:
+ rc = rtFsIsoMakerCmdOptEltoritoSetMediaType(pOpts, ISO9660_ELTORITO_BOOT_MEDIA_TYPE_HARD_DISK);
+ break;
+ case RTFSISOMAKERCMD_OPT_ELTORITO_NO_EMULATION_BOOT:
+ rc = rtFsIsoMakerCmdOptEltoritoSetMediaType(pOpts, ISO9660_ELTORITO_BOOT_MEDIA_TYPE_NO_EMULATION);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_ELTORITO_LOAD_SEG:
+ rc = rtFsIsoMakerCmdOptEltoritoSetLoadSegment(pOpts, ValueUnion.u16);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_ELTORITO_LOAD_SIZE:
+ rc = rtFsIsoMakerCmdOptEltoritoSetLoadSectorCount(pOpts, ValueUnion.u16);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_ELTORITO_INFO_TABLE:
+ rc = rtFsIsoMakerCmdOptEltoritoEnableBootInfoTablePatching(pOpts);
+ break;
+
+ case 'c': /* --boot-catalog <cd-path> */
+ rc = rtFsIsoMakerCmdOptEltoritoSetBootCatalogPath(pOpts, ValueUnion.psz);
+ break;
+
+
+ /*
+ * Image/namespace property related options.
+ */
+ case RTFSISOMAKERCMD_OPT_ABSTRACT_FILE_ID:
+ rc = rtFsIsoMakerCmdOptSetStringProp(pOpts, ValueUnion.psz, RTFSISOMAKERSTRINGPROP_ABSTRACT_FILE_ID);
+ break;
+
+ case 'A': /* --application-id */
+ rc = rtFsIsoMakerCmdOptSetStringProp(pOpts, ValueUnion.psz, RTFSISOMAKERSTRINGPROP_APPLICATION_ID);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_BIBLIOGRAPHIC_FILE_ID:
+ rc = rtFsIsoMakerCmdOptSetStringProp(pOpts, ValueUnion.psz, RTFSISOMAKERSTRINGPROP_BIBLIOGRAPHIC_FILE_ID);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_COPYRIGHT_FILE_ID:
+ rc = rtFsIsoMakerCmdOptSetStringProp(pOpts, ValueUnion.psz, RTFSISOMAKERSTRINGPROP_COPYRIGHT_FILE_ID);
+ break;
+
+ case 'P': /* -publisher */
+ rc = rtFsIsoMakerCmdOptSetStringProp(pOpts, ValueUnion.psz, RTFSISOMAKERSTRINGPROP_PUBLISHER_ID);
+ break;
+
+ case 'p': /* --preparer*/
+ rc = rtFsIsoMakerCmdOptSetStringProp(pOpts, ValueUnion.psz, RTFSISOMAKERSTRINGPROP_DATA_PREPARER_ID);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_SYSTEM_ID:
+ rc = rtFsIsoMakerCmdOptSetStringProp(pOpts, ValueUnion.psz, RTFSISOMAKERSTRINGPROP_SYSTEM_ID);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_VOLUME_ID: /* (should've been '-V') */
+ rc = rtFsIsoMakerCmdOptSetStringProp(pOpts, ValueUnion.psz, RTFSISOMAKERSTRINGPROP_VOLUME_ID);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_VOLUME_SET_ID:
+ rc = rtFsIsoMakerCmdOptSetStringProp(pOpts, ValueUnion.psz, RTFSISOMAKERSTRINGPROP_VOLUME_SET_ID);
+ break;
+
+
+ /*
+ * Compatibility.
+ */
+ case RTFSISOMAKERCMD_OPT_GRAFT_POINTS:
+ rc = rtFsIsoMakerCmdOptNameSetup(pOpts, "iso+joliet+udf+hfs");
+ break;
+
+ case 'l':
+ if (RTFsIsoMakerGetIso9660Level(pOpts->hIsoMaker) >= 2)
+ rc = rtFsIsoMakerCmdOptSetIsoLevel(pOpts, 2);
+ break;
+
+ case 'R':
+ rc = rtFsIsoMakerCmdOptSetPrimaryRockLevel(pOpts, 2);
+ if (RT_SUCCESS(rc))
+ rc = rtFsIsoMakerCmdOptSetAttribInheritStyle(pOpts, true /*fStrict*/);
+ break;
+
+ case 'r':
+ rc = rtFsIsoMakerCmdOptSetPrimaryRockLevel(pOpts, 2);
+ if (RT_SUCCESS(rc))
+ rc = rtFsIsoMakerCmdOptSetAttribInheritStyle(pOpts, false /*fStrict*/);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_PAD:
+ rc = RTFsIsoMakerSetImagePadding(pOpts->hIsoMaker, 150);
+ if (RT_FAILURE(rc))
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTFsIsoMakerSetImagePadding failed: %Rrc", rc);
+ break;
+
+ case RTFSISOMAKERCMD_OPT_NO_PAD:
+ rc = RTFsIsoMakerSetImagePadding(pOpts->hIsoMaker, 0);
+ if (RT_FAILURE(rc))
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "RTFsIsoMakerSetImagePadding failed: %Rrc", rc);
+ break;
+
+
+ /*
+ * VISO specific
+ */
+ case RTFSISOMAKERCMD_OPT_IPRT_ISO_MAKER_FILE_MARKER:
+ /* ignored */
+ break;
+
+
+ /*
+ * Testing.
+ */
+ case RTFSISOMAKERCMD_OPT_OUTPUT_BUFFER_SIZE: /* --output-buffer-size {cb} */
+ pOpts->cbOutputReadBuffer = ValueUnion.u32;
+ break;
+
+ case RTFSISOMAKERCMD_OPT_RANDOM_OUTPUT_BUFFER_SIZE: /* --random-output-buffer-size */
+ pOpts->fRandomOutputReadBufferSize = true;
+ break;
+
+ case RTFSISOMAKERCMD_OPT_RANDOM_ORDER_VERIFICATION: /* --random-order-verification {cb} */
+ pOpts->cbRandomOrderVerifciationBlock = ValueUnion.u32;
+ break;
+
+
+ /*
+ * Standard bits.
+ */
+ case 'h':
+ rtFsIsoMakerCmdUsage(pOpts, papszArgs[0]);
+ return pOpts->fVirtualImageMaker ? VERR_NOT_FOUND : VINF_CALLBACK_RETURN;
+
+ case 'V':
+ rtFsIsoMakerPrintf(pOpts, "%sr%d\n", RTBldCfgVersion(), RTBldCfgRevision());
+ return pOpts->fVirtualImageMaker ? VERR_NOT_FOUND : VINF_CALLBACK_RETURN;
+
+ default:
+ if (rc > 0 && RT_C_IS_GRAPH(rc))
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_GETOPT_UNKNOWN_OPTION, "Unhandled option: -%c", rc);
+ else if (rc > 0)
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, VERR_GETOPT_UNKNOWN_OPTION, "Unhandled option: %i (%#x)", rc, rc);
+ else if (rc == VERR_GETOPT_UNKNOWN_OPTION)
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "Unknown option: '%s'", ValueUnion.psz);
+ else if (ValueUnion.pDef)
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "%s: %Rrs", ValueUnion.pDef->pszLong, rc);
+ else
+ rc = rtFsIsoMakerCmdErrorRc(pOpts, rc, "%Rrs", rc);
+ return rc;
+ }
+ if (RT_FAILURE(rc))
+ return rc;
+ }
+ return VINF_SUCCESS;
+}
+
+
+/**
+ * Extended ISO maker command.
+ *
+ * This can be used as a ISO maker command that produces a image file, or
+ * alternatively for setting up a virtual ISO in memory.
+ *
+ * @returns IPRT status code
+ * @param cArgs Number of arguments.
+ * @param papszArgs Pointer to argument array.
+ * @param hVfsCwd The current working directory to assume when processing
+ * relative file/dir references. Pass NIL_RTVFSDIR to use
+ * the current CWD of the process.
+ * @param pszCwd Path to @a hVfsCwdDir. Use for error reporting and
+ * optimizing the open file count if possible.
+ * @param phVfsFile Where to return the virtual ISO. Pass NULL to for
+ * normal operation (creates file on disk).
+ * @param pErrInfo Where to return extended error information in the
+ * virtual ISO mode.
+ */
+RTDECL(int) RTFsIsoMakerCmdEx(unsigned cArgs, char **papszArgs, RTVFSDIR hVfsCwd, const char *pszCwd,
+ PRTVFSFILE phVfsFile, PRTERRINFO pErrInfo)
+{
+ if (phVfsFile)
+ *phVfsFile = NIL_RTVFSFILE;
+
+ /*
+ * Create instance.
+ */
+ RTFSISOMAKERCMDOPTS Opts;
+ RT_ZERO(Opts);
+ Opts.hIsoMaker = NIL_RTFSISOMAKER;
+ Opts.pErrInfo = pErrInfo;
+ Opts.fVirtualImageMaker = phVfsFile != NULL;
+ Opts.cNameSpecifiers = 1;
+ Opts.afNameSpecifiers[0] = RTFSISOMAKERCMDNAME_MAJOR_MASK;
+ Opts.fDstNamespaces = RTFSISOMAKERCMDNAME_MAJOR_MASK;
+ Opts.pszTransTbl = "TRANS.TBL"; /** @todo query this below */
+ for (uint32_t i = 0; i < RT_ELEMENTS(Opts.aBootCatEntries); i++)
+ Opts.aBootCatEntries[i].u.Section.idxImageObj = UINT32_MAX;
+
+ /* Initialize the source stack with NILs (to be on the safe size). */
+ Opts.iSrcStack = -1;
+ for (uint32_t i = 0; i < RT_ELEMENTS(Opts.aSrcStack); i++)
+ {
+ Opts.aSrcStack[i].hSrcDir = NIL_RTVFSDIR;
+ Opts.aSrcStack[i].hSrcVfs = NIL_RTVFS;
+ }
+
+ /* Push the CWD if present. */
+ if (hVfsCwd != NIL_RTVFSDIR)
+ {
+ AssertReturn(pszCwd, VERR_INVALID_PARAMETER);
+ uint32_t cRefs = RTVfsDirRetain(hVfsCwd);
+ AssertReturn(cRefs != UINT32_MAX, VERR_INVALID_HANDLE);
+
+ Opts.aSrcStack[0].hSrcDir = hVfsCwd;
+ Opts.aSrcStack[0].pszSrcVfs = pszCwd;
+ Opts.iSrcStack = 0;
+ }
+
+ /* Create the ISO creator instance. */
+ int rc = RTFsIsoMakerCreate(&Opts.hIsoMaker);
+ if (RT_SUCCESS(rc))
+ {
+ /*
+ * Parse the command line and check for mandatory options.
+ */
+ rc = rtFsIsoMakerCmdParse(&Opts, cArgs, papszArgs, 0);
+ if (RT_SUCCESS(rc) && rc != VINF_CALLBACK_RETURN)
+ {
+ if (!Opts.cItemsAdded)
+ rc = rtFsIsoMakerCmdErrorRc(&Opts, VERR_NO_DATA, "Cowardly refuses to create empty ISO image");
+ else if (!Opts.pszOutFile && !Opts.fVirtualImageMaker)
+ rc = rtFsIsoMakerCmdErrorRc(&Opts, VERR_INVALID_PARAMETER, "No output file specified (--output <file>)");
+
+ /*
+ * Final actions.
+ */
+ if (RT_SUCCESS(rc))
+ rc = rtFsIsoMakerCmdOptEltoritoCommitBootCatalog(&Opts);
+ if (RT_SUCCESS(rc))
+ {
+ /*
+ * Finalize the image and get the virtual file.
+ */
+ rc = RTFsIsoMakerFinalize(Opts.hIsoMaker);
+ if (RT_SUCCESS(rc))
+ {
+ RTVFSFILE hVfsFile;
+ rc = RTFsIsoMakerCreateVfsOutputFile(Opts.hIsoMaker, &hVfsFile);
+ if (RT_SUCCESS(rc))
+ {
+ /*
+ * We're done now if we're only setting up a virtual image.
+ */
+ if (Opts.fVirtualImageMaker)
+ *phVfsFile = hVfsFile;
+ else
+ {
+ rc = rtFsIsoMakerCmdWriteImage(&Opts, hVfsFile);
+ RTVfsFileRelease(hVfsFile);
+ }
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(&Opts, rc, "RTFsIsoMakerCreateVfsOutputFile failed: %Rrc", rc);
+ }
+ else
+ rc = rtFsIsoMakerCmdErrorRc(&Opts, rc, "RTFsIsoMakerFinalize failed: %Rrc", rc);
+ }
+ }
+ }
+ else
+ {
+ rc = rtFsIsoMakerCmdErrorRc(&Opts, rc, "RTFsIsoMakerCreate failed: %Rrc", rc);
+ Opts.hIsoMaker = NIL_RTFSISOMAKER;
+ }
+
+ return rtFsIsoMakerCmdDeleteState(&Opts, rc);
+}
+
+
+/**
+ * ISO maker command (creates image file on disk).
+ *
+ * @returns IPRT status code
+ * @param cArgs Number of arguments.
+ * @param papszArgs Pointer to argument array.
+ */
+RTDECL(RTEXITCODE) RTFsIsoMakerCmd(unsigned cArgs, char **papszArgs)
+{
+ int rc = RTFsIsoMakerCmdEx(cArgs, papszArgs, NIL_RTVFSDIR, NULL, NULL, NULL);
+ return RT_SUCCESS(rc) ? RTEXITCODE_SUCCESS : RTEXITCODE_FAILURE;
+}
+