Home | History | Annotate | Line # | Download | only in makefs
cd9660.h revision 1.3
      1  1.3  fvdl /*	$NetBSD: cd9660.h,v 1.3 2005/08/13 17:50:59 fvdl Exp $	*/
      2  1.1  fvdl 
      3  1.1  fvdl /*
      4  1.1  fvdl  * Copyright (c) 2005 Daniel Watt, Walter Deignan, Ryan Gabrys, Alan
      5  1.1  fvdl  * Perez-Rathke and Ram Vedam.  All rights reserved.
      6  1.1  fvdl  *
      7  1.1  fvdl  * This code was written by Daniel Watt, Walter Deignan, Ryan Gabrys,
      8  1.1  fvdl  * Alan Perez-Rathke and Ram Vedam.
      9  1.1  fvdl  *
     10  1.1  fvdl  * Redistribution and use in source and binary forms, with or
     11  1.1  fvdl  * without modification, are permitted provided that the following
     12  1.1  fvdl  * conditions are met:
     13  1.1  fvdl  * 1. Redistributions of source code must retain the above copyright
     14  1.1  fvdl  *    notice, this list of conditions and the following disclaimer.
     15  1.1  fvdl  * 2. Redistributions in binary form must reproduce the above
     16  1.1  fvdl  *    copyright notice, this list of conditions and the following
     17  1.1  fvdl  *    disclaimer in the documentation and/or other materials provided
     18  1.1  fvdl  *    with the distribution.
     19  1.1  fvdl  *
     20  1.1  fvdl  * THIS SOFTWARE IS PROVIDED BY DANIEL WATT, WALTER DEIGNAN, RYAN
     21  1.1  fvdl  * GABRYS, ALAN PEREZ-RATHKE AND RAM VEDAM ``AS IS'' AND ANY EXPRESS OR
     22  1.1  fvdl  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  1.1  fvdl  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     24  1.1  fvdl  * DISCLAIMED.  IN NO EVENT SHALL DANIEL WATT, WALTER DEIGNAN, RYAN
     25  1.1  fvdl  * GABRYS, ALAN PEREZ-RATHKE AND RAM VEDAM BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  1.1  fvdl  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  1.1  fvdl  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
     28  1.1  fvdl  * USE,DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
     29  1.1  fvdl  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     30  1.1  fvdl  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  1.1  fvdl  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
     32  1.1  fvdl  * OF SUCH DAMAGE.
     33  1.1  fvdl  */
     34  1.1  fvdl 
     35  1.1  fvdl #ifndef _MAKEFS_CD9660_H
     36  1.1  fvdl #define _MAKEFS_CD9660_H
     37  1.1  fvdl 
     38  1.2  fvdl #if HAVE_NBTOOL_CONFIG_H
     39  1.2  fvdl #include "nbtool_config.h"
     40  1.2  fvdl #endif
     41  1.2  fvdl 
     42  1.1  fvdl #include <assert.h>
     43  1.1  fvdl #include <errno.h>
     44  1.1  fvdl #include <fcntl.h>
     45  1.1  fvdl #include <stdarg.h>
     46  1.1  fvdl #include <stdio.h>
     47  1.1  fvdl #include <stdlib.h>
     48  1.1  fvdl #include <string.h>
     49  1.1  fvdl #include <unistd.h>
     50  1.1  fvdl #include <time.h>
     51  1.1  fvdl #include <limits.h>
     52  1.1  fvdl #include <sys/queue.h>
     53  1.1  fvdl #include <sys/param.h>
     54  1.1  fvdl 
     55  1.1  fvdl #include "makefs.h"
     56  1.1  fvdl #include "cd9660/iso.h"
     57  1.1  fvdl #include "cd9660/iso_rrip.h"
     58  1.1  fvdl #include "cd9660/cd9660_eltorito.h"
     59  1.1  fvdl 
     60  1.1  fvdl 
     61  1.1  fvdl #define CD9660MAXPATH 4096
     62  1.1  fvdl 
     63  1.1  fvdl #define ISO_STRING_FILTER_NONE = 0x00
     64  1.1  fvdl #define ISO_STRING_FILTER_DCHARS = 0x01
     65  1.1  fvdl #define ISO_STRING_FILTER_ACHARS = 0x02
     66  1.1  fvdl 
     67  1.1  fvdl /*
     68  1.1  fvdl Extended preferences type, in the spirit of what makefs gives us (only ints)
     69  1.1  fvdl */
     70  1.1  fvdl typedef struct {
     71  1.1  fvdl 	const char  *shortName;		/* Short option */
     72  1.1  fvdl 	const char	*name;		/* option name */
     73  1.1  fvdl 	char		*value;		/* where to stuff the value */
     74  1.1  fvdl 	int		minLength;	/* minimum for value */
     75  1.1  fvdl 	int		maxLength;	/* maximum for value */
     76  1.1  fvdl 	const char	*desc;		/* option description */
     77  1.1  fvdl 	int		filterFlags;
     78  1.1  fvdl } string_option_t;
     79  1.1  fvdl 
     80  1.1  fvdl /******** STRUCTURES **********/
     81  1.1  fvdl 
     82  1.1  fvdl /*Defaults*/
     83  1.1  fvdl #define ISO_DEFAULT_VOLUMEID "MAKEFS_CD9660_IMAGE"
     84  1.1  fvdl #define ISO_DEFAULT_APPID "MAKEFS"
     85  1.1  fvdl #define ISO_DEFAULT_PUBLISHER "MAKEFS"
     86  1.1  fvdl #define ISO_DEFAULT_PREPARER "MAKEFS"
     87  1.1  fvdl 
     88  1.1  fvdl #define ISO_VOLUME_DESCRIPTOR_STANDARD_ID "CD001"
     89  1.1  fvdl #define ISO_VOLUME_DESCRIPTOR_BOOT 0
     90  1.1  fvdl #define ISO_VOLUME_DESCRIPTOR_PVD 1
     91  1.1  fvdl #define ISO_VOLUME_DESCRIPTOR_TERMINATOR 255
     92  1.1  fvdl 
     93  1.1  fvdl /*30 for name and extension, as well as version number and padding bit*/
     94  1.1  fvdl #define ISO_FILENAME_MAXLENGTH_BEFORE_VERSION 30
     95  1.1  fvdl #define ISO_FILENAME_MAXLENGTH	36
     96  1.1  fvdl #define ISO_FILENAME_MAXLENGTH_WITH_PADDING 37
     97  1.1  fvdl 
     98  1.1  fvdl #define ISO_FLAG_CLEAR 0x00
     99  1.1  fvdl #define ISO_FLAG_HIDDEN 0x01
    100  1.1  fvdl #define ISO_FLAG_DIRECTORY 0x02
    101  1.1  fvdl #define ISO_FLAG_ASSOCIATED 0x04
    102  1.1  fvdl #define ISO_FLAG_PERMISSIONS 0x08
    103  1.1  fvdl #define ISO_FLAG_RESERVED5 0x10
    104  1.1  fvdl #define ISO_FLAG_RESERVED6 0x20
    105  1.1  fvdl #define ISO_FLAG_FINAL_RECORD 0x40
    106  1.1  fvdl 
    107  1.1  fvdl #define ISO_PATHTABLE_ENTRY_BASESIZE 8
    108  1.1  fvdl 
    109  1.1  fvdl #define ISO_RRIP_DEFAULT_MOVE_DIR_NAME "RR_MOVED"
    110  1.1  fvdl #define RRIP_DEFAULT_MOVE_DIR_NAME ".rr_moved"
    111  1.1  fvdl 
    112  1.1  fvdl #define	CD9660_BLOCKS(S,X)	(((X) / S) + (((X)%S)?1:0))
    113  1.1  fvdl 
    114  1.1  fvdl #define CD9660_MEM_ALLOC_ERROR(F) printf("%s: memory allocation error. File \"%s\", line %i.\n",(F),__FILE__,__LINE__);
    115  1.1  fvdl 
    116  1.1  fvdl #define CD9660_IS_COMMAND_ARG_DUAL(var,short,long)\
    117  1.1  fvdl 		(strcmp((var),(short)) == 0) || (strcmp((var),(long))==0)
    118  1.1  fvdl 
    119  1.1  fvdl #define CD9660_IS_COMMAND_ARG(var,arg)\
    120  1.1  fvdl 		(strcmp((var),(arg)) == 0)
    121  1.1  fvdl 
    122  1.1  fvdl #define CD9660_TYPE_FILE	0x01
    123  1.1  fvdl #define CD9660_TYPE_DIR		0x02
    124  1.1  fvdl #define CD9660_TYPE_DOT		0x04
    125  1.1  fvdl #define CD9660_TYPE_DOTDOT	0x08
    126  1.1  fvdl #define CD9660_TYPE_VIRTUAL 0x80
    127  1.1  fvdl 
    128  1.1  fvdl #define CD9660_HASH_SIZE 512
    129  1.1  fvdl 
    130  1.1  fvdl #define CD9660_END_PADDING 150
    131  1.1  fvdl 
    132  1.1  fvdl /* Slight modification of the ISO structure in iso.h */
    133  1.1  fvdl typedef struct _iso_directory_record_cd9660 {
    134  1.3  fvdl 	u_char length			[ISODCL (1, 1)];	/* 711 */
    135  1.1  fvdl 	u_char ext_attr_length		[ISODCL (2, 2)];	/* 711 */
    136  1.3  fvdl 	u_char extent			[ISODCL (3, 10)];	/* 733 */
    137  1.3  fvdl 	u_char size			[ISODCL (11, 18)];	/* 733 */
    138  1.3  fvdl 	u_char date			[ISODCL (19, 25)];	/* 7 by 711 */
    139  1.3  fvdl 	u_char flags			[ISODCL (26, 26)];
    140  1.3  fvdl 	u_char file_unit_size		[ISODCL (27, 27)];	/* 711 */
    141  1.3  fvdl 	u_char interleave		[ISODCL (28, 28)];	/* 711 */
    142  1.1  fvdl 	u_char volume_sequence_number	[ISODCL (29, 32)];	/* 723 */
    143  1.3  fvdl 	u_char name_len			[ISODCL (33, 33)];	/* 711 */
    144  1.3  fvdl 	char name			[ISO_FILENAME_MAXLENGTH_WITH_PADDING];
    145  1.1  fvdl } iso_directory_record_cd9660;
    146  1.1  fvdl 
    147  1.1  fvdl /* TODO: Lots of optimization of this structure */
    148  1.1  fvdl typedef struct _cd9660node {
    149  1.1  fvdl 	u_char	type;/* Used internally */
    150  1.1  fvdl 	/* Tree structure */
    151  1.1  fvdl 	struct _cd9660node	*parent;	/* parent (NULL if root) */
    152  1.1  fvdl 	struct _cd9660node	*child;		/* child (if type == S_IFDIR) */
    153  1.1  fvdl 	struct _cd9660node	*next;		/* next */
    154  1.1  fvdl 	struct _cd9660node	*prev;		/* previous - to facilitate faster sorting */
    155  1.1  fvdl 	struct _cd9660node	*first;		/* first node of current level (".") */
    156  1.1  fvdl 	struct _cd9660node	*last;		/* last node of current level, for faster sorting - probably not used */
    157  1.1  fvdl 
    158  1.1  fvdl 	struct _cd9660node *dot_record; /* For directories, used mainly in RRIP */
    159  1.1  fvdl 	struct _cd9660node *dot_dot_record;
    160  1.1  fvdl 
    161  1.1  fvdl 	fsnode		*node;		/* pointer to fsnode */
    162  1.1  fvdl 	struct _iso_directory_record_cd9660	*isoDirRecord;
    163  1.1  fvdl 	struct iso_extended_attributes	*isoExtAttributes;
    164  1.1  fvdl 
    165  1.1  fvdl 	/***** SIZE CALCULATION *****/
    166  1.1  fvdl 	/*already stored in isoDirRecord, but this is an int version, and will be
    167  1.1  fvdl 		copied to isoDirRecord on writing*/
    168  1.1  fvdl 	int fileDataSector;
    169  1.1  fvdl 
    170  1.1  fvdl 	/*
    171  1.1  fvdl 	 * same thing, though some notes:
    172  1.1  fvdl 	 * If a file, this is the file size
    173  1.1  fvdl 	 * If a directory, this is the size of all its children's
    174  1.1  fvdl 	 *	directory records
    175  1.1  fvdl 	 * plus necessary padding
    176  1.1  fvdl 	 */
    177  1.1  fvdl 	int64_t fileDataLength;
    178  1.1  fvdl 
    179  1.1  fvdl 	/*
    180  1.1  fvdl 	 * XXXfvdl sectors are int
    181  1.1  fvdl 	 */
    182  1.1  fvdl 	int fileSectorsUsed;
    183  1.1  fvdl 	int fileRecordSize;/*copy of a variable, int for quicker calculations*/
    184  1.1  fvdl 
    185  1.1  fvdl 	/* Old name, used for renaming - needs to be optimized but low priority */
    186  1.1  fvdl 	char o_name [ISO_FILENAME_MAXLENGTH_WITH_PADDING];
    187  1.1  fvdl 
    188  1.1  fvdl 	/***** SPACE RESERVED FOR EXTENSIONS *****/
    189  1.1  fvdl 	/* For memory efficiency's sake - we should move this to a separate struct
    190  1.1  fvdl 		and point to null if not needed */
    191  1.1  fvdl 	/* For Rock Ridge */
    192  1.1  fvdl 	struct _cd9660node *rr_real_parent, *rr_relocated;
    193  1.1  fvdl 
    194  1.1  fvdl 	int susp_entry_size;
    195  1.1  fvdl 	int susp_dot_entry_size;
    196  1.1  fvdl 	int susp_dot_dot_entry_size;
    197  1.1  fvdl 
    198  1.1  fvdl 	/* Continuation area stuff */
    199  1.1  fvdl 	int susp_entry_ce_start;
    200  1.1  fvdl 	int susp_dot_ce_start;
    201  1.1  fvdl 	int susp_dot_dot_ce_start;
    202  1.1  fvdl 
    203  1.1  fvdl 	int susp_entry_ce_length;
    204  1.1  fvdl 	int susp_dot_ce_length;
    205  1.1  fvdl 	int susp_dot_dot_ce_length;
    206  1.1  fvdl 
    207  1.1  fvdl 	/*** PATH TABLE STUFF ***/
    208  1.1  fvdl 	int level;			/*depth*/
    209  1.1  fvdl 	int ptnumber;
    210  1.1  fvdl 	struct _cd9660node *ptnext, *ptprev, *ptlast;
    211  1.1  fvdl 
    212  1.1  fvdl 	/* SUSP entries */
    213  1.1  fvdl 	LIST_HEAD(susp_linked_list, ISO_SUSP_ATTRIBUTES) head;
    214  1.1  fvdl } cd9660node;
    215  1.1  fvdl 
    216  1.1  fvdl #if 0
    217  1.1  fvdl struct cd9660hash_node {
    218  1.1  fvdl 	cd9660node *thenode;
    219  1.1  fvdl 	LIST_ENTRY(cd9660hash_node) ll_struct;
    220  1.1  fvdl };
    221  1.1  fvdl 
    222  1.1  fvdl struct cd9660hash_table {
    223  1.1  fvdl 	LIST_HEAD(node_hash_table,cd9660_node_hash) node_hash[CD9660_HASH_SIZE];
    224  1.1  fvdl };
    225  1.1  fvdl #endif
    226  1.1  fvdl 
    227  1.1  fvdl typedef struct _path_table_entry
    228  1.1  fvdl {
    229  1.1  fvdl 	u_char length[ISODCL (1, 1)];
    230  1.1  fvdl 	u_char extended_attribute_length[ISODCL (2, 2)];
    231  1.1  fvdl 	u_char first_sector[ISODCL (3, 6)];
    232  1.1  fvdl 	u_char parent_number[ISODCL (7, 8)];
    233  1.1  fvdl 	u_char name[ISO_FILENAME_MAXLENGTH_WITH_PADDING];
    234  1.1  fvdl } path_table_entry;
    235  1.1  fvdl 
    236  1.1  fvdl typedef struct _volume_descriptor
    237  1.1  fvdl {
    238  1.1  fvdl 	u_char *volumeDescriptorData; /*ALWAYS 2048 bytes long*/
    239  1.1  fvdl 	int sector;
    240  1.1  fvdl 	struct _volume_descriptor *next;
    241  1.1  fvdl } volume_descriptor;
    242  1.1  fvdl 
    243  1.1  fvdl typedef struct _iso9660_disk {
    244  1.1  fvdl 	int sectorSize;
    245  1.1  fvdl 	struct iso_primary_descriptor		primaryDescriptor;
    246  1.1  fvdl 	struct iso_supplementary_descriptor	supplementaryDescriptor;
    247  1.1  fvdl 
    248  1.1  fvdl 	volume_descriptor *firstVolumeDescriptor;
    249  1.1  fvdl 
    250  1.1  fvdl 	cd9660node *rootNode;
    251  1.1  fvdl 	/*struct cd9660hash_table name_hash;*/
    252  1.1  fvdl 
    253  1.1  fvdl 	const char *rootFilesystemPath;
    254  1.1  fvdl 
    255  1.1  fvdl 	/* Important sector numbers here */
    256  1.1  fvdl 	/* primaryDescriptor.type_l_path_table*/
    257  1.1  fvdl 	int primaryBigEndianTableSector;
    258  1.1  fvdl 
    259  1.1  fvdl 	/* primaryDescriptor.type_m_path_table*/
    260  1.1  fvdl 	int primaryLittleEndianTableSector;
    261  1.1  fvdl 
    262  1.1  fvdl 	/* primaryDescriptor.opt_type_l_path_table*/
    263  1.1  fvdl 	int secondaryBigEndianTableSector;
    264  1.1  fvdl 
    265  1.1  fvdl 	/* primaryDescriptor.opt_type_m_path_table*/
    266  1.1  fvdl 	int secondaryLittleEndianTableSector;
    267  1.1  fvdl 
    268  1.1  fvdl 	/* primaryDescriptor.path_table_size*/
    269  1.1  fvdl 	int pathTableLength;
    270  1.1  fvdl 	int dataFirstSector;
    271  1.1  fvdl 
    272  1.1  fvdl 	int totalSectors;
    273  1.1  fvdl 	/* OPTIONS GO HERE */
    274  1.1  fvdl 	int	isoLevel;
    275  1.1  fvdl 
    276  1.1  fvdl 	int include_padding_areas;
    277  1.1  fvdl 
    278  1.1  fvdl 	int follow_sym_links;
    279  1.1  fvdl 	int verbose_level;
    280  1.1  fvdl 	int displayHelp;
    281  1.1  fvdl 	int keep_bad_images;
    282  1.1  fvdl 
    283  1.1  fvdl 	/* SUSP options and variables */
    284  1.1  fvdl 	int susp_continuation_area_start_sector;
    285  1.1  fvdl 	int susp_continuation_area_size;
    286  1.1  fvdl 	int susp_continuation_area_current_free;
    287  1.1  fvdl 
    288  1.1  fvdl 	int rock_ridge_enabled;
    289  1.1  fvdl 	/* Other Rock Ridge Variables */
    290  1.1  fvdl 	char *rock_ridge_renamed_dir_name;
    291  1.1  fvdl 	int rock_ridge_move_count;
    292  1.1  fvdl 	cd9660node *rr_moved_dir;
    293  1.1  fvdl 
    294  1.1  fvdl 
    295  1.1  fvdl 	/* Spec breaking options */
    296  1.1  fvdl 	u_char allow_deep_trees;
    297  1.1  fvdl 	u_char allow_start_dot;
    298  1.1  fvdl 	u_char allow_max_name; /* Allow 37 char filenames*/
    299  1.1  fvdl 	u_char allow_illegal_chars; /* ~, !, # */
    300  1.1  fvdl 	u_char allow_lowercase;
    301  1.1  fvdl 	u_char allow_multidot;
    302  1.1  fvdl 	u_char omit_trailing_period;
    303  1.1  fvdl 
    304  1.1  fvdl 	/* BOOT INFORMATION HERE */
    305  1.1  fvdl 	int is_bootable;/* Default to 0 */
    306  1.1  fvdl 	int boot_catalog_sector;
    307  1.1  fvdl 	boot_volume_descriptor *boot_descriptor;
    308  1.1  fvdl 	char * boot_image_directory;
    309  1.1  fvdl 
    310  1.1  fvdl 	LIST_HEAD(boot_image_list,cd9660_boot_image) boot_images;
    311  1.1  fvdl 	LIST_HEAD(boot_catalog_entries,boot_catalog_entry) boot_entries;
    312  1.1  fvdl 
    313  1.1  fvdl } iso9660_disk;
    314  1.1  fvdl 
    315  1.1  fvdl /******** GLOBAL VARIABLES ***********/
    316  1.1  fvdl extern iso9660_disk diskStructure;
    317  1.1  fvdl 
    318  1.1  fvdl /************ FUNCTIONS **************/
    319  1.1  fvdl int			cd9660_valid_a_chars(const char *);
    320  1.1  fvdl int			cd9660_valid_d_chars(const char *);
    321  1.1  fvdl void			cd9660_uppercase_characters(char *, int);
    322  1.1  fvdl 
    323  1.1  fvdl /* ISO Data Types */
    324  1.1  fvdl void			cd9660_721(uint16_t, unsigned char *);
    325  1.1  fvdl void			cd9660_731(uint32_t, unsigned char *);
    326  1.1  fvdl void			cd9660_722(uint16_t, unsigned char *);
    327  1.1  fvdl void			cd9660_732(uint32_t, unsigned char *);
    328  1.1  fvdl void 			cd9660_bothendian_dword(uint32_t dw, unsigned char *);
    329  1.1  fvdl void 			cd9660_bothendian_word(uint16_t dw, unsigned char *);
    330  1.1  fvdl void			cd9660_set_date(char *, time_t);
    331  1.1  fvdl void			cd9660_time_8426(unsigned char *, time_t);
    332  1.1  fvdl void			cd9660_time_915(unsigned char *, time_t);
    333  1.1  fvdl 
    334  1.1  fvdl /*** Boot Functions ***/
    335  1.1  fvdl int	cd9660_write_boot(FILE *);
    336  1.1  fvdl int	cd9660_add_boot_disk(const char *);
    337  1.1  fvdl int	cd9660_eltorito_add_boot_option(const char *, const char *);
    338  1.1  fvdl int	cd9660_setup_boot(int);
    339  1.1  fvdl int	cd9660_setup_boot_volume_descritpor(volume_descriptor *);
    340  1.1  fvdl 
    341  1.1  fvdl 
    342  1.1  fvdl /*** Write Functions ***/
    343  1.1  fvdl int	cd9660_write_image(const char *image);
    344  1.1  fvdl int	cd9660_copy_file(FILE *, int, const char *);
    345  1.1  fvdl 
    346  1.1  fvdl void	cd9660_compute_full_filename(cd9660node *, char *, int);
    347  1.1  fvdl int	cd9660_compute_record_size(cd9660node *);
    348  1.1  fvdl 
    349  1.1  fvdl /* Debugging functions */
    350  1.1  fvdl void	debug_print_tree(cd9660node *,int);
    351  1.1  fvdl void	debug_print_path_tree(cd9660node *);
    352  1.1  fvdl void	debug_print_volume_descriptor_information(void);
    353  1.1  fvdl void	debug_dump_to_xml_ptentry(path_table_entry *,int, int);
    354  1.1  fvdl void	debug_dump_to_xml_path_table(FILE *, int, int, int);
    355  1.1  fvdl void	debug_dump_to_xml(FILE *);
    356  1.1  fvdl int	debug_get_encoded_number(unsigned char *, int);
    357  1.1  fvdl void	debug_dump_integer(const char *, char *,int);
    358  1.1  fvdl void	debug_dump_string(const char *,unsigned char *,int);
    359  1.1  fvdl void	debug_dump_directory_record_9_1(unsigned char *);
    360  1.1  fvdl void	debug_dump_to_xml_volume_descriptor(unsigned char *,int);
    361  1.1  fvdl 
    362  1.1  fvdl void	cd9660_pad_string_spaces(char *, int);
    363  1.1  fvdl 
    364  1.1  fvdl #endif
    365