which included commits to RCS files with non-trunk default branches. git-svn-id: svn://10.65.10.50/trunk@5403 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			269 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			269 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
/*---------------------------------------------------------------------------
 | 
						|
 | 
						|
  vms.h
 | 
						|
 | 
						|
  Generic VMS header file for Info-ZIP's Zip and UnZip.
 | 
						|
 | 
						|
  ---------------------------------------------------------------------------*/
 | 
						|
 | 
						|
#ifndef __vms_h
 | 
						|
#define __vms_h 1
 | 
						|
 | 
						|
#ifndef __DESCRIP_LOADED
 | 
						|
#include <descrip.h>
 | 
						|
#endif
 | 
						|
#ifndef __STARLET_LOADED
 | 
						|
#include <starlet.h>
 | 
						|
#endif
 | 
						|
#ifndef __SYIDEF_LOADED
 | 
						|
#include <syidef.h>
 | 
						|
#endif
 | 
						|
#ifndef __ATRDEF_LOADED
 | 
						|
#include <atrdef.h>
 | 
						|
#endif
 | 
						|
#ifndef __FIBDEF_LOADED
 | 
						|
#include <fibdef.h>
 | 
						|
#endif
 | 
						|
#ifndef __IODEF_LOADED
 | 
						|
#include <iodef.h>
 | 
						|
#endif
 | 
						|
#if !defined(_RMS_H) && !defined(__RMS_LOADED)
 | 
						|
#include <rms.h>
 | 
						|
#endif
 | 
						|
 | 
						|
#define ERR(s) !((s) & 1)       /* VMS system error */
 | 
						|
 | 
						|
#ifndef SYI$_VERSION
 | 
						|
#define SYI$_VERSION 4096       /* VMS 5.4 definition */
 | 
						|
#endif
 | 
						|
 | 
						|
/*
 | 
						|
 *  Under Alpha (DEC C?), the FIB unions are declared as variant_unions.
 | 
						|
 *  FIBDEF.H includes the definition of __union, which we check
 | 
						|
 *  below to make sure we access the structure correctly.
 | 
						|
 */
 | 
						|
#define variant_union 1
 | 
						|
#if defined(fib$w_did) || (defined(__union) && (__union == variant_union))
 | 
						|
#  define FIB$W_DID       fib$w_did
 | 
						|
#  define FIB$W_FID       fib$w_fid
 | 
						|
#  define FIB$L_ACCTL     fib$l_acctl
 | 
						|
#  define FIB$W_EXCTL     fib$w_exctl
 | 
						|
#else
 | 
						|
#  define FIB$W_DID       fib$r_did_overlay.fib$w_did
 | 
						|
#  define FIB$W_FID       fib$r_fid_overlay.fib$w_fid
 | 
						|
#  define FIB$L_ACCTL     fib$r_acctl_overlay.fib$l_acctl
 | 
						|
#  define FIB$W_EXCTL     fib$r_exctl_overlay.fib$w_exctl
 | 
						|
#endif
 | 
						|
#undef variant_union
 | 
						|
 | 
						|
 | 
						|
struct EB_header    /* Common header of extra block */
 | 
						|
{   ush tag;
 | 
						|
    ush size;
 | 
						|
    uch data[1];
 | 
						|
};
 | 
						|
 | 
						|
#ifndef EB_HEADSIZE
 | 
						|
#  define EB_HEADSIZE 4
 | 
						|
#endif
 | 
						|
 | 
						|
/*------ Old style Info-ZIP extra field definitions -----*/
 | 
						|
 | 
						|
#if (!defined(VAXC) && !defined(_RMS_H) && !defined(__RMS_LOADED))
 | 
						|
 | 
						|
struct XAB {                    /* This definition may be skipped */
 | 
						|
    unsigned char xab$b_cod;
 | 
						|
    unsigned char xab$b_bln;
 | 
						|
    short int xabdef$$_fill_1;
 | 
						|
    char *xab$l_nxt;
 | 
						|
};
 | 
						|
 | 
						|
#endif /* !VAXC && !_RMS_H && !__RMS_LOADED */
 | 
						|
 | 
						|
#define BC_MASK    07   /* 3 bits for compression type */
 | 
						|
#define BC_STORED  0    /* Stored */
 | 
						|
#define BC_00      1    /* 0byte -> 0bit compression */
 | 
						|
#define BC_DEFL    2    /* Deflated */
 | 
						|
 | 
						|
/*
 | 
						|
 *  Extra record format
 | 
						|
 *  ===================
 | 
						|
 *  signature       (2 bytes)   = 'I','M'
 | 
						|
 *  size            (2 bytes)
 | 
						|
 *  block signature (4 bytes)
 | 
						|
 *  flags           (2 bytes)
 | 
						|
 *  uncomprssed size(2 bytes)
 | 
						|
 *  reserved        (4 bytes)
 | 
						|
 *  data            ((size-12) bytes)
 | 
						|
 *  ....
 | 
						|
 */
 | 
						|
 | 
						|
struct IZ_block                 /* Extra field block header structure */
 | 
						|
{
 | 
						|
    ush sig;
 | 
						|
    ush size;
 | 
						|
    ulg bid;
 | 
						|
    ush flags;
 | 
						|
    ush length;
 | 
						|
    ulg reserved;
 | 
						|
    uch body[1];                /* The actual size is unknown */
 | 
						|
};
 | 
						|
 | 
						|
/*
 | 
						|
 *   Extra field signature and block signatures
 | 
						|
 */
 | 
						|
 | 
						|
#define IZ_SIGNATURE "IM"
 | 
						|
#define FABSIG  "VFAB"
 | 
						|
#define XALLSIG "VALL"
 | 
						|
#define XFHCSIG "VFHC"
 | 
						|
#define XDATSIG "VDAT"
 | 
						|
#define XRDTSIG "VRDT"
 | 
						|
#define XPROSIG "VPRO"
 | 
						|
#define XKEYSIG "VKEY"
 | 
						|
#define XNAMSIG "VNAM"
 | 
						|
#define VERSIG  "VMSV"
 | 
						|
 | 
						|
/*
 | 
						|
 *   Block sizes
 | 
						|
 */
 | 
						|
 | 
						|
#define FABL    (cc$rms_fab.fab$b_bln)
 | 
						|
#define RABL    (cc$rms_rab.rab$b_bln)
 | 
						|
#define XALLL   (cc$rms_xaball.xab$b_bln)
 | 
						|
#define XDATL   (cc$rms_xabdat.xab$b_bln)
 | 
						|
#define XFHCL   (cc$rms_xabfhc.xab$b_bln)
 | 
						|
#define XKEYL   (cc$rms_xabkey.xab$b_bln)
 | 
						|
#define XPROL   (cc$rms_xabpro.xab$b_bln)
 | 
						|
#define XRDTL   (cc$rms_xabrdt.xab$b_bln)
 | 
						|
#define XSUML   (cc$rms_xabsum.xab$b_bln)
 | 
						|
#define EXTBSL  4               /* Block signature length */
 | 
						|
#define RESL    8               /* Reserved 8 bytes */
 | 
						|
#define EXTHL   (EB_HEADSIZE+EXTBSL+RESL)
 | 
						|
 | 
						|
typedef unsigned char byte;
 | 
						|
 | 
						|
struct iosb
 | 
						|
{
 | 
						|
    ush status;
 | 
						|
    ush count;
 | 
						|
    ulg spec;
 | 
						|
};
 | 
						|
 | 
						|
/*------------ PKWARE extra block definitions ----------*/
 | 
						|
 | 
						|
/* Structure of PKWARE extra header */
 | 
						|
 | 
						|
#ifdef VMS_ZIP
 | 
						|
 | 
						|
#if defined(__DECC) || defined(__DECCXX)
 | 
						|
#pragma __nostandard
 | 
						|
#endif /* __DECC || __DECCXX */
 | 
						|
 | 
						|
#if defined(__DECC) || defined(__DECCXX)
 | 
						|
#pragma __member_alignment __save
 | 
						|
#pragma __nomember_alignment
 | 
						|
#endif /* __DECC || __DECCXX */
 | 
						|
 | 
						|
#ifdef VMS_ORIGINAL_PK_LAYOUT
 | 
						|
/*  The original order of ATR fields in the PKZIP VMS-extra field leads
 | 
						|
 *  to unaligned fields in the PK_info structure representing the
 | 
						|
 *  extra field layout.  When compiled for Alpha AXP, this results in
 | 
						|
 *  some performance (and code size) penalty.  It is not allowed to
 | 
						|
 *  apply structure padding, since this is explicitely forbidden in
 | 
						|
 *  the specification (APPNOTE.TXT) for the PK VMS extra field.
 | 
						|
 */
 | 
						|
struct PK_info
 | 
						|
{
 | 
						|
    ush tag_ra; ush len_ra;     byte ra[ATR$S_RECATTR];
 | 
						|
    ush tag_uc; ush len_uc;     byte uc[ATR$S_UCHAR];
 | 
						|
    ush tag_jr; ush len_jr;     byte jr[ATR$S_JOURNAL];
 | 
						|
    ush tag_cd; ush len_cd;     byte cd[ATR$S_CREDATE];
 | 
						|
    ush tag_rd; ush len_rd;     byte rd[ATR$S_REVDATE];
 | 
						|
    ush tag_ed; ush len_ed;     byte ed[ATR$S_EXPDATE];
 | 
						|
    ush tag_bd; ush len_bd;     byte bd[ATR$S_BAKDATE];
 | 
						|
    ush tag_rn; ush len_rn;     ush  rn;
 | 
						|
    ush tag_ui; ush len_ui;     byte ui[ATR$S_UIC];
 | 
						|
    ush tag_fp; ush len_fp;     byte fp[ATR$S_FPRO];
 | 
						|
    ush tag_rp; ush len_rp;     byte rp[ATR$S_RPRO];
 | 
						|
};
 | 
						|
#else /* !VMS_ORIGINAL_PK_LAYOUT */
 | 
						|
/*  The Info-ZIP support for the PK VMS extra field uses a reordered
 | 
						|
 *  field layout to achieve ``natural alignment'' of the PK_info structure
 | 
						|
 *  members whenever possible.  This rearrangement does not violate the
 | 
						|
 *  PK's VMS extra field specification and should not break any ``well
 | 
						|
 *  behaving'' (PK)Unzip utility. (`Well behaving' means that (PK)Unzip
 | 
						|
 *  should use the field tag to identify the ATR$ field rather than
 | 
						|
 *  assuming a fixed order of ATR$ fields in the PK VMS extra field.)
 | 
						|
 */
 | 
						|
struct PK_info
 | 
						|
{
 | 
						|
    ush tag_ra; ush len_ra;     byte ra[ATR$S_RECATTR];
 | 
						|
    ush tag_uc; ush len_uc;     byte uc[ATR$S_UCHAR];
 | 
						|
    ush tag_cd; ush len_cd;     byte cd[ATR$S_CREDATE];
 | 
						|
    ush tag_rd; ush len_rd;     byte rd[ATR$S_REVDATE];
 | 
						|
    ush tag_ed; ush len_ed;     byte ed[ATR$S_EXPDATE];
 | 
						|
    ush tag_bd; ush len_bd;     byte bd[ATR$S_BAKDATE];
 | 
						|
    ush tag_rn; ush len_rn;     ush  rn;
 | 
						|
    ush tag_ui; ush len_ui;     byte ui[ATR$S_UIC];
 | 
						|
    ush tag_fp; ush len_fp;     byte fp[ATR$S_FPRO];
 | 
						|
    ush tag_rp; ush len_rp;     byte rp[ATR$S_RPRO];
 | 
						|
    ush tag_jr; ush len_jr;     byte jr[ATR$S_JOURNAL];
 | 
						|
};
 | 
						|
#endif /* ?VMS_ORIGINAL_PK_LAYOUT */
 | 
						|
 | 
						|
#if defined(__DECC) || defined(__DECCXX)
 | 
						|
#pragma __member_alignment __restore
 | 
						|
#endif /* __DECC || __DECCXX */
 | 
						|
 | 
						|
#if defined(__DECC) || defined(__DECCXX)
 | 
						|
#pragma __standard
 | 
						|
#endif /* __DECC || __DECCXX */
 | 
						|
 | 
						|
#endif /* VMS_ZIP */
 | 
						|
 | 
						|
/* PKWARE "VMS" tag */
 | 
						|
#define PK_SIGNATURE        0x000C
 | 
						|
 | 
						|
/* Total number of attributes to be saved */
 | 
						|
#define VMS_ATTR_COUNT  11
 | 
						|
#define VMS_MAX_ATRCNT  20
 | 
						|
 | 
						|
struct PK_field
 | 
						|
{
 | 
						|
    ush         tag;
 | 
						|
    ush         size;
 | 
						|
    byte        value[1];
 | 
						|
};
 | 
						|
 | 
						|
#define PK_FLDHDR_SIZE  4
 | 
						|
 | 
						|
struct PK_header
 | 
						|
{
 | 
						|
    ush tag;
 | 
						|
    ush size;
 | 
						|
    ulg crc32;
 | 
						|
    byte data[1];
 | 
						|
};
 | 
						|
 | 
						|
#define PK_HEADER_SIZE  8
 | 
						|
 | 
						|
#ifdef VMS_ZIP
 | 
						|
/* File description structure for Zip low level I/O */
 | 
						|
struct ioctx
 | 
						|
{
 | 
						|
    struct iosb         iosb;
 | 
						|
    long                vbn;
 | 
						|
    long                size;
 | 
						|
    long                rest;
 | 
						|
    int                 status;
 | 
						|
    ush                 chan;
 | 
						|
    ush                 chan_pad;       /* alignment member */
 | 
						|
    long                acllen;
 | 
						|
    uch                 aclbuf[ATR$S_READACL];
 | 
						|
    struct PK_info      PKi;
 | 
						|
};
 | 
						|
#endif /* VMS_ZIP */
 | 
						|
 | 
						|
#endif /* !__vms_h */
 |