Rizin
unix-like reverse engineering framework and cli tools
zip.c File Reference
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "zlib.h"
#include "zip.h"
#include <errno.h>
#include "crypt.h"

Go to the source code of this file.

Classes

struct  linkedlist_datablock_internal_s
 
struct  linkedlist_data_s
 
struct  curfile64_info
 
struct  zip64_internal
 

Macros

#define local   static
 
#define VERSIONMADEBY   (0x0) /* platform depedent */
 
#define Z_BUFSIZE   (64*1024)
 
#define Z_MAXFILENAMEINZIP   (256)
 
#define ALLOC(size)   (malloc(size))
 
#define TRYFREE(p)   {if (p) free(p);}
 
#define MAKEULONG64(a, b)   ((ZPOS64_T)(((unsigned long)(a)) | ((ZPOS64_T)((unsigned long)(b))) << 32))
 
#define SEEK_CUR   1
 
#define SEEK_END   2
 
#define SEEK_SET   0
 
#define SIZEDATA_INDATABLOCK   (4096-(4*4))
 
#define LOCALHEADERMAGIC   (0x04034b50)
 
#define CENTRALHEADERMAGIC   (0x02014b50)
 
#define ENDHEADERMAGIC   (0x06054b50)
 
#define ZIP64ENDHEADERMAGIC   (0x6064b50)
 
#define ZIP64ENDLOCHEADERMAGIC   (0x7064b50)
 
#define FLAG_LOCALHEADER_OFFSET   (0x06)
 
#define CRC_LOCALHEADER_OFFSET   (0x0e)
 
#define SIZECENTRALHEADER   (0x2e) /* 46 */
 
#define INCLUDECRYPTINGCODE_IFCRYPTALLOWED
 
#define BUFREADCOMMENT   (0x400)
 

Typedefs

typedef struct linkedlist_datablock_internal_s linkedlist_datablock_internal
 
typedef struct linkedlist_data_s linkedlist_data
 

Functions

linkedlist_datablock_internalallocate_new_datablock ()
 
void free_datablock (linkedlist_datablock_internal *ldi)
 
void init_linkedlist (linkedlist_data *ll)
 
void free_linkedlist (linkedlist_data *ll)
 
int add_data_in_datablock (linkedlist_data *ll, const void *buf, uLong len)
 
int zip64local_putValue OF ((const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, ZPOS64_T x, int nbByte))
 
int zip64local_putValue (const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, ZPOS64_T x, int nbByte)
 
void zip64local_putValue_inmemory OF ((void *dest, ZPOS64_T x, int nbByte))
 
void zip64local_putValue_inmemory (void *dest, ZPOS64_T x, int nbByte)
 
uLong zip64local_TmzDateToDosDate (const tm_zip *ptm)
 
int zip64local_getByte OF ((const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, int *pi))
 
int zip64local_getByte (const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, int *pi)
 
int zip64local_getShort OF ((const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, uLong *pX))
 
int zip64local_getShort (const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, uLong *pX)
 
int zip64local_getLong (const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, uLong *pX)
 
int zip64local_getLong64 OF ((const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, ZPOS64_T *pX))
 
int zip64local_getLong64 (const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, ZPOS64_T *pX)
 
ZPOS64_T zip64local_SearchCentralDir OF ((const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream))
 
ZPOS64_T zip64local_SearchCentralDir (const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream)
 
ZPOS64_T zip64local_SearchCentralDir64 (const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream)
 
int LoadCentralDirectoryRecord (zip64_internal *pziinit)
 
zipFile ZEXPORT zipOpen3 (const void *pathname, int append, zipcharpc *globalcomment, zlib_filefunc64_32_def *pzlib_filefunc64_32_def)
 
zipFile ZEXPORT zipOpen2 (const char *pathname, int append, zipcharpc *globalcomment, zlib_filefunc_def *pzlib_filefunc32_def)
 
zipFile ZEXPORT zipOpen2_64 (const void *pathname, int append, zipcharpc *globalcomment, zlib_filefunc64_def *pzlib_filefunc_def)
 
zipFile ZEXPORT zipOpen (const char *pathname, int append)
 
zipFile ZEXPORT zipOpen64 (const void *pathname, int append)
 
int Write_LocalFileHeader (zip64_internal *zi, const char *filename, uInt size_extrafield_local, const void *extrafield_local)
 
int ZEXPORT zipOpenNewFileInZip4_64 (zipFile file, const char *filename, const zip_fileinfo *zipfi, const void *extrafield_local, uInt size_extrafield_local, const void *extrafield_global, uInt size_extrafield_global, const char *comment, int method, int level, int raw, int windowBits, int memLevel, int strategy, const char *password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase, int zip64)
 
int ZEXPORT zipOpenNewFileInZip4 (zipFile file, const char *filename, const zip_fileinfo *zipfi, const void *extrafield_local, uInt size_extrafield_local, const void *extrafield_global, uInt size_extrafield_global, const char *comment, int method, int level, int raw, int windowBits, int memLevel, int strategy, const char *password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase)
 
int ZEXPORT zipOpenNewFileInZip3 (zipFile file, const char *filename, const zip_fileinfo *zipfi, const void *extrafield_local, uInt size_extrafield_local, const void *extrafield_global, uInt size_extrafield_global, const char *comment, int method, int level, int raw, int windowBits, int memLevel, int strategy, const char *password, uLong crcForCrypting)
 
int ZEXPORT zipOpenNewFileInZip3_64 (zipFile file, const char *filename, const zip_fileinfo *zipfi, const void *extrafield_local, uInt size_extrafield_local, const void *extrafield_global, uInt size_extrafield_global, const char *comment, int method, int level, int raw, int windowBits, int memLevel, int strategy, const char *password, uLong crcForCrypting, int zip64)
 
int ZEXPORT zipOpenNewFileInZip2 (zipFile file, const char *filename, const zip_fileinfo *zipfi, const void *extrafield_local, uInt size_extrafield_local, const void *extrafield_global, uInt size_extrafield_global, const char *comment, int method, int level, int raw)
 
int ZEXPORT zipOpenNewFileInZip2_64 (zipFile file, const char *filename, const zip_fileinfo *zipfi, const void *extrafield_local, uInt size_extrafield_local, const void *extrafield_global, uInt size_extrafield_global, const char *comment, int method, int level, int raw, int zip64)
 
int ZEXPORT zipOpenNewFileInZip64 (zipFile file, const char *filename, const zip_fileinfo *zipfi, const void *extrafield_local, uInt size_extrafield_local, const void *extrafield_global, uInt size_extrafield_global, const char *comment, int method, int level, int zip64)
 
int ZEXPORT zipOpenNewFileInZip (zipFile file, const char *filename, const zip_fileinfo *zipfi, const void *extrafield_local, uInt size_extrafield_local, const void *extrafield_global, uInt size_extrafield_global, const char *comment, int method, int level)
 
int zip64FlushWriteBuffer (zip64_internal *zi)
 
int ZEXPORT zipWriteInFileInZip (zipFile file, const void *buf, unsigned int len)
 
int ZEXPORT zipCloseFileInZipRaw (zipFile file, uLong uncompressed_size, uLong crc32)
 
int ZEXPORT zipCloseFileInZipRaw64 (zipFile file, ZPOS64_T uncompressed_size, uLong crc32)
 
int ZEXPORT zipCloseFileInZip (zipFile file)
 
int Write_Zip64EndOfCentralDirectoryLocator (zip64_internal *zi, ZPOS64_T zip64eocd_pos_inzip)
 
int Write_Zip64EndOfCentralDirectoryRecord (zip64_internal *zi, uLong size_centraldir, ZPOS64_T centraldir_pos_inzip)
 
int Write_EndOfCentralDirectoryRecord (zip64_internal *zi, uLong size_centraldir, ZPOS64_T centraldir_pos_inzip)
 
int Write_GlobalComment (zip64_internal *zi, const char *global_comment)
 
int ZEXPORT zipClose (zipFile file, const char *global_comment)
 
int ZEXPORT zipRemoveExtraInfoBlock (char *pData, int *dataLen, short sHeader)
 

Variables

const char zip_copyright [] =" zip 1.01 Copyright 1998-2004 Gilles Vollant - http://www.winimage.com/zLibDll"
 

Macro Definition Documentation

◆ ALLOC

#define ALLOC (   size)    (malloc(size))

Definition at line 62 of file zip.c.

◆ BUFREADCOMMENT

#define BUFREADCOMMENT   (0x400)

Definition at line 472 of file zip.c.

◆ CENTRALHEADERMAGIC

#define CENTRALHEADERMAGIC   (0x02014b50)

Definition at line 104 of file zip.c.

◆ CRC_LOCALHEADER_OFFSET

#define CRC_LOCALHEADER_OFFSET   (0x0e)

Definition at line 110 of file zip.c.

◆ ENDHEADERMAGIC

#define ENDHEADERMAGIC   (0x06054b50)

Definition at line 105 of file zip.c.

◆ FLAG_LOCALHEADER_OFFSET

#define FLAG_LOCALHEADER_OFFSET   (0x06)

Definition at line 109 of file zip.c.

◆ INCLUDECRYPTINGCODE_IFCRYPTALLOWED

#define INCLUDECRYPTINGCODE_IFCRYPTALLOWED

Definition at line 185 of file zip.c.

◆ local

#define local   static

Definition at line 45 of file zip.c.

◆ LOCALHEADERMAGIC

#define LOCALHEADERMAGIC   (0x04034b50)

Definition at line 103 of file zip.c.

◆ MAKEULONG64

#define MAKEULONG64 (   a,
  b 
)    ((ZPOS64_T)(((unsigned long)(a)) | ((ZPOS64_T)((unsigned long)(b))) << 32))

Definition at line 77 of file zip.c.

◆ SEEK_CUR

#define SEEK_CUR   1

Definition at line 80 of file zip.c.

◆ SEEK_END

#define SEEK_END   2

Definition at line 84 of file zip.c.

◆ SEEK_SET

#define SEEK_SET   0

Definition at line 88 of file zip.c.

◆ SIZECENTRALHEADER

#define SIZECENTRALHEADER   (0x2e) /* 46 */

Definition at line 112 of file zip.c.

◆ SIZEDATA_INDATABLOCK

#define SIZEDATA_INDATABLOCK   (4096-(4*4))

Definition at line 101 of file zip.c.

◆ TRYFREE

#define TRYFREE (   p)    {if (p) free(p);}

Definition at line 65 of file zip.c.

◆ VERSIONMADEBY

#define VERSIONMADEBY   (0x0) /* platform depedent */

Definition at line 50 of file zip.c.

◆ Z_BUFSIZE

#define Z_BUFSIZE   (64*1024)

Definition at line 54 of file zip.c.

◆ Z_MAXFILENAMEINZIP

#define Z_MAXFILENAMEINZIP   (256)

Definition at line 58 of file zip.c.

◆ ZIP64ENDHEADERMAGIC

#define ZIP64ENDHEADERMAGIC   (0x6064b50)

Definition at line 106 of file zip.c.

◆ ZIP64ENDLOCHEADERMAGIC

#define ZIP64ENDLOCHEADERMAGIC   (0x7064b50)

Definition at line 107 of file zip.c.

Typedef Documentation

◆ linkedlist_data

◆ linkedlist_datablock_internal

Function Documentation

◆ add_data_in_datablock()

int add_data_in_datablock ( linkedlist_data ll,
const void *  buf,
uLong  len 
)

Definition at line 225 of file zip.c.

226 {
228  const unsigned char* from_copy;
229 
230  if (ll==NULL)
231  return ZIP_INTERNALERROR;
232 
233  if (ll->last_block == NULL)
234  {
236  if (ll->first_block == NULL)
237  return ZIP_INTERNALERROR;
238  }
239 
240  ldi = ll->last_block;
241  from_copy = (unsigned char*)buf;
242 
243  while (len>0)
244  {
245  uInt copy_this;
246  uInt i;
247  unsigned char* to_copy;
248 
249  if (ldi->avail_in_this_block==0)
250  {
252  if (ldi->next_datablock == NULL)
253  return ZIP_INTERNALERROR;
254  ldi = ldi->next_datablock ;
255  ll->last_block = ldi;
256  }
257 
258  if (ldi->avail_in_this_block < len)
259  copy_this = (uInt)ldi->avail_in_this_block;
260  else
261  copy_this = (uInt)len;
262 
263  to_copy = &(ldi->data[ldi->filled_in_this_block]);
264 
265  for (i=0;i<copy_this;i++)
266  *(to_copy+i)=*(from_copy+i);
267 
268  ldi->filled_in_this_block += copy_this;
269  ldi->avail_in_this_block -= copy_this;
270  from_copy += copy_this ;
271  len -= copy_this;
272  }
273  return ZIP_OK;
274 }
size_t len
Definition: 6502dis.c:15
lzma_index ** i
Definition: index.h:629
#define NULL
Definition: cris-opc.c:27
voidpf void * buf
Definition: ioapi.h:138
linkedlist_datablock_internal * last_block
Definition: zip.c:126
linkedlist_datablock_internal * first_block
Definition: zip.c:125
unsigned char data[SIZEDATA_INDATABLOCK]
Definition: zip.c:120
struct linkedlist_datablock_internal_s * next_datablock
Definition: zip.c:116
unsigned int uInt
Definition: zconf.h:393
linkedlist_datablock_internal * allocate_new_datablock()
Definition: zip.c:189
#define ZIP_OK
Definition: zip.h:72
#define ZIP_INTERNALERROR
Definition: zip.h:77

References allocate_new_datablock(), linkedlist_datablock_internal_s::avail_in_this_block, linkedlist_datablock_internal_s::data, linkedlist_datablock_internal_s::filled_in_this_block, linkedlist_data_s::first_block, i, linkedlist_data_s::last_block, len, linkedlist_datablock_internal_s::next_datablock, NULL, ZIP_INTERNALERROR, and ZIP_OK.

Referenced by LoadCentralDirectoryRecord(), and zipCloseFileInZipRaw64().

◆ allocate_new_datablock()

linkedlist_datablock_internal* allocate_new_datablock ( )

Definition at line 189 of file zip.c.

190 {
194  if (ldi!=NULL)
195  {
196  ldi->next_datablock = NULL ;
197  ldi->filled_in_this_block = 0 ;
199  }
200  return ldi;
201 }
#define SIZEDATA_INDATABLOCK
Definition: zip.c:101
#define ALLOC(size)
Definition: zip.c:62

References ALLOC, linkedlist_datablock_internal_s::avail_in_this_block, linkedlist_datablock_internal_s::filled_in_this_block, linkedlist_datablock_internal_s::next_datablock, NULL, and SIZEDATA_INDATABLOCK.

Referenced by add_data_in_datablock().

◆ free_datablock()

void free_datablock ( linkedlist_datablock_internal ldi)

Definition at line 203 of file zip.c.

204 {
205  while (ldi!=NULL)
206  {
208  TRYFREE(ldi);
209  ldi = ldinext;
210  }
211 }
#define TRYFREE(p)
Definition: zip.c:65

References linkedlist_datablock_internal_s::next_datablock, NULL, and TRYFREE.

Referenced by free_linkedlist().

◆ free_linkedlist()

void free_linkedlist ( linkedlist_data ll)

Definition at line 218 of file zip.c.

219 {
221  ll->first_block = ll->last_block = NULL;
222 }
void free_datablock(linkedlist_datablock_internal *ldi)
Definition: zip.c:203

References linkedlist_data_s::first_block, free_datablock(), linkedlist_data_s::last_block, and NULL.

Referenced by zipClose().

◆ init_linkedlist()

void init_linkedlist ( linkedlist_data ll)

Definition at line 213 of file zip.c.

214 {
215  ll->first_block = ll->last_block = NULL;
216 }

References linkedlist_data_s::first_block, linkedlist_data_s::last_block, and NULL.

Referenced by zipOpen3().

◆ LoadCentralDirectoryRecord()

int LoadCentralDirectoryRecord ( zip64_internal pziinit)

Definition at line 640 of file zip.c.

641 {
642  int err=ZIP_OK;
643  ZPOS64_T byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/
644 
645  ZPOS64_T size_central_dir; /* size of the central directory */
646  ZPOS64_T offset_central_dir; /* offset of start of central directory */
647  ZPOS64_T central_pos;
648  uLong uL;
649 
650  uLong number_disk; /* number of the current dist, used for
651  spaning ZIP, unsupported, always 0*/
652  uLong number_disk_with_CD; /* number the the disk with central dir, used
653  for spaning ZIP, unsupported, always 0*/
654  ZPOS64_T number_entry;
655  ZPOS64_T number_entry_CD; /* total number of entries in
656  the central dir
657  (same than number_entry on nospan) */
658  uLong VersionMadeBy;
659  uLong VersionNeeded;
660  uLong size_comment;
661 
662  int hasZIP64Record = 0;
663 
664  // check first if we find a ZIP64 record
665  central_pos = zip64local_SearchCentralDir64(&pziinit->z_filefunc,pziinit->filestream);
666  if(central_pos > 0)
667  {
668  hasZIP64Record = 1;
669  }
670  else if(central_pos == 0)
671  {
672  central_pos = zip64local_SearchCentralDir(&pziinit->z_filefunc,pziinit->filestream);
673  }
674 
675 /* disable to allow appending to empty ZIP archive
676  if (central_pos==0)
677  err=ZIP_ERRNO;
678 */
679 
680  if(hasZIP64Record)
681  {
682  ZPOS64_T sizeEndOfCentralDirectory;
683  if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, central_pos, ZLIB_FILEFUNC_SEEK_SET) != 0)
684  err=ZIP_ERRNO;
685 
686  /* the signature, already checked */
687  if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream,&uL)!=ZIP_OK)
688  err=ZIP_ERRNO;
689 
690  /* size of zip64 end of central directory record */
691  if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream, &sizeEndOfCentralDirectory)!=ZIP_OK)
692  err=ZIP_ERRNO;
693 
694  /* version made by */
695  if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &VersionMadeBy)!=ZIP_OK)
696  err=ZIP_ERRNO;
697 
698  /* version needed to extract */
699  if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &VersionNeeded)!=ZIP_OK)
700  err=ZIP_ERRNO;
701 
702  /* number of this disk */
703  if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream,&number_disk)!=ZIP_OK)
704  err=ZIP_ERRNO;
705 
706  /* number of the disk with the start of the central directory */
707  if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream,&number_disk_with_CD)!=ZIP_OK)
708  err=ZIP_ERRNO;
709 
710  /* total number of entries in the central directory on this disk */
711  if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream, &number_entry)!=ZIP_OK)
712  err=ZIP_ERRNO;
713 
714  /* total number of entries in the central directory */
715  if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream,&number_entry_CD)!=ZIP_OK)
716  err=ZIP_ERRNO;
717 
718  if ((number_entry_CD!=number_entry) || (number_disk_with_CD!=0) || (number_disk!=0))
720 
721  /* size of the central directory */
722  if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream,&size_central_dir)!=ZIP_OK)
723  err=ZIP_ERRNO;
724 
725  /* offset of start of central directory with respect to the
726  starting disk number */
727  if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream,&offset_central_dir)!=ZIP_OK)
728  err=ZIP_ERRNO;
729 
730  // TODO..
731  // read the comment from the standard central header.
732  size_comment = 0;
733  }
734  else
735  {
736  // Read End of central Directory info
737  if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, central_pos,ZLIB_FILEFUNC_SEEK_SET)!=0)
738  err=ZIP_ERRNO;
739 
740  /* the signature, already checked */
741  if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream,&uL)!=ZIP_OK)
742  err=ZIP_ERRNO;
743 
744  /* number of this disk */
745  if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream,&number_disk)!=ZIP_OK)
746  err=ZIP_ERRNO;
747 
748  /* number of the disk with the start of the central directory */
749  if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream,&number_disk_with_CD)!=ZIP_OK)
750  err=ZIP_ERRNO;
751 
752  /* total number of entries in the central dir on this disk */
753  number_entry = 0;
754  if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &uL)!=ZIP_OK)
755  err=ZIP_ERRNO;
756  else
757  number_entry = uL;
758 
759  /* total number of entries in the central dir */
760  number_entry_CD = 0;
761  if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &uL)!=ZIP_OK)
762  err=ZIP_ERRNO;
763  else
764  number_entry_CD = uL;
765 
766  if ((number_entry_CD!=number_entry) || (number_disk_with_CD!=0) || (number_disk!=0))
768 
769  /* size of the central directory */
770  size_central_dir = 0;
771  if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream, &uL)!=ZIP_OK)
772  err=ZIP_ERRNO;
773  else
774  size_central_dir = uL;
775 
776  /* offset of start of central directory with respect to the starting disk number */
777  offset_central_dir = 0;
778  if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream, &uL)!=ZIP_OK)
779  err=ZIP_ERRNO;
780  else
781  offset_central_dir = uL;
782 
783 
784  /* zipfile global comment length */
785  if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &size_comment)!=ZIP_OK)
786  err=ZIP_ERRNO;
787  }
788 
789  if ((central_pos<offset_central_dir+size_central_dir) &&
790  (err==ZIP_OK))
792 
793  if (err!=ZIP_OK)
794  {
795  ZCLOSE64(pziinit->z_filefunc, pziinit->filestream);
796  return ZIP_ERRNO;
797  }
798 
799  if (size_comment>0)
800  {
801  pziinit->globalcomment = (char*)ALLOC(size_comment+1);
802  if (pziinit->globalcomment)
803  {
804  size_comment = ZREAD64(pziinit->z_filefunc, pziinit->filestream, pziinit->globalcomment,size_comment);
805  pziinit->globalcomment[size_comment]=0;
806  }
807  }
808 
809  byte_before_the_zipfile = central_pos - (offset_central_dir+size_central_dir);
810  pziinit->add_position_when_writing_offset = byte_before_the_zipfile;
811 
812  {
813  ZPOS64_T size_central_dir_to_read = size_central_dir;
815  void* buf_read = (void*)ALLOC(buf_size);
816  if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, offset_central_dir + byte_before_the_zipfile, ZLIB_FILEFUNC_SEEK_SET) != 0)
817  err=ZIP_ERRNO;
818 
819  while ((size_central_dir_to_read>0) && (err==ZIP_OK))
820  {
821  ZPOS64_T read_this = SIZEDATA_INDATABLOCK;
822  if (read_this > size_central_dir_to_read)
823  read_this = size_central_dir_to_read;
824 
825  if (ZREAD64(pziinit->z_filefunc, pziinit->filestream,buf_read,(uLong)read_this) != read_this)
826  err=ZIP_ERRNO;
827 
828  if (err==ZIP_OK)
829  err = add_data_in_datablock(&pziinit->central_dir,buf_read, (uLong)read_this);
830 
831  size_central_dir_to_read-=read_this;
832  }
833  TRYFREE(buf_read);
834  }
835  pziinit->begin_pos = byte_before_the_zipfile;
836  pziinit->number_entry = number_entry_CD;
837 
838  if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, offset_central_dir+byte_before_the_zipfile,ZLIB_FILEFUNC_SEEK_SET) != 0)
839  err=ZIP_ERRNO;
840 
841  return err;
842 }
static bool err
Definition: armass.c:435
static int buf_size
Definition: debug_qnx.c:35
static st64 buf_read(RzBuffer *b, ut8 *buf, ut64 len)
#define ZSEEK64(filefunc, filestream, pos, mode)
Definition: ioapi.h:204
#define ZLIB_FILEFUNC_SEEK_SET
Definition: ioapi.h:116
#define ZREAD64(filefunc, filestream, buf, size)
Definition: ioapi.h:189
#define ZCLOSE64(filefunc, filestream)
Definition: ioapi.h:193
unsigned long long int ZPOS64_T
Definition: ioapi.h:99
ZPOS64_T add_position_when_writing_offset
Definition: zip.c:174
ZPOS64_T number_entry
Definition: zip.c:175
voidpf filestream
Definition: zip.c:168
linkedlist_data central_dir
Definition: zip.c:169
char * globalcomment
Definition: zip.c:178
zlib_filefunc64_32_def z_filefunc
Definition: zip.c:167
ZPOS64_T begin_pos
Definition: zip.c:173
unsigned long uLong
Definition: zconf.h:394
int add_data_in_datablock(linkedlist_data *ll, const void *buf, uLong len)
Definition: zip.c:225
ZPOS64_T zip64local_SearchCentralDir64(const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream)
Definition: zip.c:542
ZPOS64_T zip64local_SearchCentralDir(const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream)
Definition: zip.c:480
int zip64local_getShort(const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, uLong *pX)
Definition: zip.c:373
int zip64local_getLong(const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, uLong *pX)
Definition: zip.c:395
int zip64local_getLong64(const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, ZPOS64_T *pX)
Definition: zip.c:426
#define ZIP_ERRNO
Definition: zip.h:74
#define ZIP_BADZIPFILE
Definition: zip.h:76

References add_data_in_datablock(), zip64_internal::add_position_when_writing_offset, ALLOC, zip64_internal::begin_pos, buf_read(), buf_size, zip64_internal::central_dir, err, zip64_internal::filestream, zip64_internal::globalcomment, zip64_internal::number_entry, SIZEDATA_INDATABLOCK, TRYFREE, zip64_internal::z_filefunc, ZCLOSE64, zip64local_getLong(), zip64local_getLong64(), zip64local_getShort(), zip64local_SearchCentralDir(), zip64local_SearchCentralDir64(), ZIP_BADZIPFILE, ZIP_ERRNO, ZIP_OK, ZLIB_FILEFUNC_SEEK_SET, ZREAD64, and ZSEEK64.

Referenced by zipOpen3().

◆ OF() [1/6]

ZPOS64_T zip64local_SearchCentralDir OF ( (const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream)  )

◆ OF() [2/6]

int zip64local_getByte OF ( (const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, int *pi)  )

◆ OF() [3/6]

int zip64local_getShort OF ( (const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, uLong *pX)  )

◆ OF() [4/6]

int zip64local_getLong64 OF ( (const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, ZPOS64_T *pX)  )

◆ OF() [5/6]

int zip64local_putValue OF ( (const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, ZPOS64_T x, int nbByte)  )

◆ OF() [6/6]

void zip64local_putValue_inmemory OF ( (void *dest, ZPOS64_T x, int nbByte)  )

◆ Write_EndOfCentralDirectoryRecord()

int Write_EndOfCentralDirectoryRecord ( zip64_internal zi,
uLong  size_centraldir,
ZPOS64_T  centraldir_pos_inzip 
)

Definition at line 1816 of file zip.c.

1817 {
1818  int err = ZIP_OK;
1819 
1820  /*signature*/
1822 
1823  if (err==ZIP_OK) /* number of this disk */
1825 
1826  if (err==ZIP_OK) /* number of the disk with the start of the central directory */
1828 
1829  if (err==ZIP_OK) /* total number of entries in the central dir on this disk */
1830  {
1831  {
1832  if(zi->number_entry >= 0xFFFF)
1833  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0xffff,2); // use value in ZIP64 record
1834  else
1836  }
1837  }
1838 
1839  if (err==ZIP_OK) /* total number of entries in the central dir */
1840  {
1841  if(zi->number_entry >= 0xFFFF)
1842  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0xffff,2); // use value in ZIP64 record
1843  else
1845  }
1846 
1847  if (err==ZIP_OK) /* size of the central directory */
1848  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)size_centraldir,4);
1849 
1850  if (err==ZIP_OK) /* offset of start of central directory with respect to the starting disk number */
1851  {
1852  ZPOS64_T pos = centraldir_pos_inzip - zi->add_position_when_writing_offset;
1853  if(pos >= 0xffffffff)
1854  {
1855  err = zip64local_putValue(&zi->z_filefunc,zi->filestream, (uLong)0xffffffff,4);
1856  }
1857  else
1858  err = zip64local_putValue(&zi->z_filefunc,zi->filestream, (uLong)(centraldir_pos_inzip - zi->add_position_when_writing_offset),4);
1859  }
1860 
1861  return err;
1862 }
int pos
Definition: main.c:11
int zip64local_putValue(const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, ZPOS64_T x, int nbByte)
Definition: zip.c:287
#define ENDHEADERMAGIC
Definition: zip.c:105

References zip64_internal::add_position_when_writing_offset, ENDHEADERMAGIC, err, zip64_internal::filestream, zip64_internal::number_entry, pos, zip64_internal::z_filefunc, zip64local_putValue(), and ZIP_OK.

Referenced by zipClose().

◆ Write_GlobalComment()

int Write_GlobalComment ( zip64_internal zi,
const char *  global_comment 
)

Definition at line 1864 of file zip.c.

1865 {
1866  int err = ZIP_OK;
1867  uInt size_global_comment = 0;
1868 
1869  if(global_comment != NULL)
1870  size_global_comment = (uInt)strlen(global_comment);
1871 
1872  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)size_global_comment,2);
1873 
1874  if (err == ZIP_OK && size_global_comment > 0)
1875  {
1876  if (ZWRITE64(zi->z_filefunc,zi->filestream, global_comment, size_global_comment) != size_global_comment)
1877  err = ZIP_ERRNO;
1878  }
1879  return err;
1880 }
#define ZWRITE64(filefunc, filestream, buf, size)
Definition: ioapi.h:190

References err, zip64_internal::filestream, NULL, zip64_internal::z_filefunc, zip64local_putValue(), ZIP_ERRNO, ZIP_OK, and ZWRITE64.

Referenced by zipClose().

◆ Write_LocalFileHeader()

int Write_LocalFileHeader ( zip64_internal zi,
const char *  filename,
uInt  size_extrafield_local,
const void *  extrafield_local 
)

Definition at line 958 of file zip.c.

959 {
960  /* write the local header */
961  int err;
962  uInt size_filename = (uInt)strlen(filename);
963  uInt size_extrafield = size_extrafield_local;
964 
966 
967  if (err==ZIP_OK)
968  {
969  if(zi->ci.zip64)
970  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)45,2);/* version needed to extract */
971  else
972  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)20,2);/* version needed to extract */
973  }
974 
975  if (err==ZIP_OK)
977 
978  if (err==ZIP_OK)
980 
981  if (err==ZIP_OK)
983 
984  // CRC / Compressed size / Uncompressed size will be filled in later and rewritten later
985  if (err==ZIP_OK)
986  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4); /* crc 32, unknown */
987  if (err==ZIP_OK)
988  {
989  if(zi->ci.zip64)
990  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0xFFFFFFFF,4); /* compressed size, unknown */
991  else
992  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4); /* compressed size, unknown */
993  }
994  if (err==ZIP_OK)
995  {
996  if(zi->ci.zip64)
997  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0xFFFFFFFF,4); /* uncompressed size, unknown */
998  else
999  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4); /* uncompressed size, unknown */
1000  }
1001 
1002  if (err==ZIP_OK)
1003  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)size_filename,2);
1004 
1005  if(zi->ci.zip64)
1006  {
1007  size_extrafield += 20;
1008  }
1009 
1010  if (err==ZIP_OK)
1011  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)size_extrafield,2);
1012 
1013  if ((err==ZIP_OK) && (size_filename > 0))
1014  {
1015  if (ZWRITE64(zi->z_filefunc,zi->filestream,filename,size_filename)!=size_filename)
1016  err = ZIP_ERRNO;
1017  }
1018 
1019  if ((err==ZIP_OK) && (size_extrafield_local > 0))
1020  {
1021  if (ZWRITE64(zi->z_filefunc, zi->filestream, extrafield_local, size_extrafield_local) != size_extrafield_local)
1022  err = ZIP_ERRNO;
1023  }
1024 
1025 
1026  if ((err==ZIP_OK) && (zi->ci.zip64))
1027  {
1028  // write the Zip64 extended info
1029  short HeaderID = 1;
1030  short DataSize = 16;
1031  ZPOS64_T CompressedSize = 0;
1032  ZPOS64_T UncompressedSize = 0;
1033 
1034  // Remember position of Zip64 extended info for the local file header. (needed when we update size after done with file)
1036 
1037  err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (ZPOS64_T)HeaderID,2);
1038  err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (ZPOS64_T)DataSize,2);
1039 
1040  err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (ZPOS64_T)UncompressedSize,8);
1041  err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (ZPOS64_T)CompressedSize,8);
1042  }
1043 
1044  return err;
1045 }
const char * filename
Definition: ioapi.h:137
#define ZTELL64(filefunc, filestream)
Definition: ioapi.h:203
ZPOS64_T pos_zip64extrainfo
Definition: zip.c:155
uLong flag
Definition: zip.c:146
uLong dosDate
Definition: zip.c:151
int zip64
Definition: zip.c:154
int method
Definition: zip.c:148
curfile64_info ci
Definition: zip.c:171
#define LOCALHEADERMAGIC
Definition: zip.c:103

References zip64_internal::ci, curfile64_info::dosDate, err, zip64_internal::filestream, curfile64_info::flag, LOCALHEADERMAGIC, curfile64_info::method, curfile64_info::pos_zip64extrainfo, zip64_internal::z_filefunc, curfile64_info::zip64, zip64local_putValue(), ZIP_ERRNO, ZIP_OK, ZTELL64, and ZWRITE64.

Referenced by zipOpenNewFileInZip4_64().

◆ Write_Zip64EndOfCentralDirectoryLocator()

int Write_Zip64EndOfCentralDirectoryLocator ( zip64_internal zi,
ZPOS64_T  zip64eocd_pos_inzip 
)

Definition at line 1755 of file zip.c.

1756 {
1757  int err = ZIP_OK;
1758  ZPOS64_T pos = zip64eocd_pos_inzip - zi->add_position_when_writing_offset;
1759 
1761 
1762  /*num disks*/
1763  if (err==ZIP_OK) /* number of the disk with the start of the central directory */
1765 
1766  /*relative offset*/
1767  if (err==ZIP_OK) /* Relative offset to the Zip64EndOfCentralDirectory */
1769 
1770  /*total disks*/ /* Do not support spawning of disk so always say 1 here*/
1771  if (err==ZIP_OK) /* number of the disk with the start of the central directory */
1773 
1774  return err;
1775 }
#define ZIP64ENDLOCHEADERMAGIC
Definition: zip.c:107

References zip64_internal::add_position_when_writing_offset, err, zip64_internal::filestream, pos, zip64_internal::z_filefunc, ZIP64ENDLOCHEADERMAGIC, zip64local_putValue(), and ZIP_OK.

Referenced by zipClose().

◆ Write_Zip64EndOfCentralDirectoryRecord()

int Write_Zip64EndOfCentralDirectoryRecord ( zip64_internal zi,
uLong  size_centraldir,
ZPOS64_T  centraldir_pos_inzip 
)

Definition at line 1777 of file zip.c.

1778 {
1779  int err = ZIP_OK;
1780 
1781  uLong Zip64DataSize = 44;
1782 
1784 
1785  if (err==ZIP_OK) /* size of this 'zip64 end of central directory' */
1786  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(ZPOS64_T)Zip64DataSize,8); // why ZPOS64_T of this ?
1787 
1788  if (err==ZIP_OK) /* version made by */
1790 
1791  if (err==ZIP_OK) /* version needed */
1793 
1794  if (err==ZIP_OK) /* number of this disk */
1796 
1797  if (err==ZIP_OK) /* number of the disk with the start of the central directory */
1799 
1800  if (err==ZIP_OK) /* total number of entries in the central dir on this disk */
1802 
1803  if (err==ZIP_OK) /* total number of entries in the central dir */
1805 
1806  if (err==ZIP_OK) /* size of the central directory */
1807  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(ZPOS64_T)size_centraldir,8);
1808 
1809  if (err==ZIP_OK) /* offset of start of central directory with respect to the starting disk number */
1810  {
1811  ZPOS64_T pos = centraldir_pos_inzip - zi->add_position_when_writing_offset;
1813  }
1814  return err;
1815 }
#define ZIP64ENDHEADERMAGIC
Definition: zip.c:106

References zip64_internal::add_position_when_writing_offset, err, zip64_internal::filestream, zip64_internal::number_entry, pos, zip64_internal::z_filefunc, ZIP64ENDHEADERMAGIC, zip64local_putValue(), and ZIP_OK.

Referenced by zipClose().

◆ zip64FlushWriteBuffer()

int zip64FlushWriteBuffer ( zip64_internal zi)

Definition at line 1363 of file zip.c.

1364 {
1365  int err=ZIP_OK;
1366 
1367  if (zi->ci.encrypt != 0)
1368  {
1369 #ifndef NOCRYPT
1370  uInt i;
1371  int t;
1372  for (i=0;i<zi->ci.pos_in_buffered_data;i++)
1373  zi->ci.buffered_data[i] = zencode(zi->ci.keys, zi->ci.pcrc_32_tab, zi->ci.buffered_data[i],t);
1374 #endif
1375  }
1376 
1378  err = ZIP_ERRNO;
1379 
1381 
1382 #ifdef HAVE_BZIP2
1383  if(zi->ci.method == Z_BZIP2ED)
1384  {
1385  zi->ci.totalUncompressedData += zi->ci.bstream.total_in_lo32;
1386  zi->ci.bstream.total_in_lo32 = 0;
1387  zi->ci.bstream.total_in_hi32 = 0;
1388  }
1389  else
1390 #endif
1391  {
1393  zi->ci.stream.total_in = 0;
1394  }
1395 
1396 
1397  zi->ci.pos_in_buffered_data = 0;
1398 
1399  return err;
1400 }
#define zencode(pkeys, pcrc_32_tab, c, t)
Definition: crypt.h:80
unsigned long keys[3]
Definition: zip.c:159
Byte buffered_data[Z_BUFSIZE]
Definition: zip.c:150
uInt pos_in_buffered_data
Definition: zip.c:138
z_stream stream
Definition: zip.c:132
ZPOS64_T totalCompressedData
Definition: zip.c:156
const z_crc_t * pcrc_32_tab
Definition: zip.c:160
int encrypt
Definition: zip.c:153
ZPOS64_T totalUncompressedData
Definition: zip.c:157
uLong total_in
Definition: zlib.h:89
#define Z_BZIP2ED
Definition: unzip.h:62

References curfile64_info::buffered_data, zip64_internal::ci, curfile64_info::encrypt, err, zip64_internal::filestream, i, curfile64_info::keys, curfile64_info::method, curfile64_info::pcrc_32_tab, curfile64_info::pos_in_buffered_data, curfile64_info::stream, z_stream_s::total_in, curfile64_info::totalCompressedData, curfile64_info::totalUncompressedData, Z_BZIP2ED, zip64_internal::z_filefunc, zencode, ZIP_ERRNO, ZIP_OK, and ZWRITE64.

Referenced by zipCloseFileInZipRaw64(), and zipWriteInFileInZip().

◆ zip64local_getByte()

int zip64local_getByte ( const zlib_filefunc64_32_def pzlib_filefunc_def,
voidpf  filestream,
int pi 
)

Definition at line 349 of file zip.c.

350 {
351  unsigned char c;
352  int err = (int)ZREAD64(*pzlib_filefunc_def,filestream,&c,1);
353  if (err==1)
354  {
355  *pi = (int)c;
356  return ZIP_OK;
357  }
358  else
359  {
360  if (ZERROR64(*pzlib_filefunc_def,filestream))
361  return ZIP_ERRNO;
362  else
363  return ZIP_EOF;
364  }
365 }
#define ZERROR64(filefunc, filestream)
Definition: ioapi.h:194
static int
Definition: sfsocketcall.h:114
#define c(i)
Definition: sha256.c:43
#define ZIP_EOF
Definition: zip.h:73

References c, err, int, ZERROR64, ZIP_EOF, ZIP_ERRNO, ZIP_OK, and ZREAD64.

Referenced by zip64local_getLong(), zip64local_getLong64(), and zip64local_getShort().

◆ zip64local_getLong()

int zip64local_getLong ( const zlib_filefunc64_32_def pzlib_filefunc_def,
voidpf  filestream,
uLong pX 
)

Definition at line 395 of file zip.c.

396 {
397  uLong x ;
398  int i = 0;
399  int err;
400 
401  err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
402  x = (uLong)i;
403 
404  if (err==ZIP_OK)
405  err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
406  x += ((uLong)i)<<8;
407 
408  if (err==ZIP_OK)
409  err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
410  x += ((uLong)i)<<16;
411 
412  if (err==ZIP_OK)
413  err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
414  x += ((uLong)i)<<24;
415 
416  if (err==ZIP_OK)
417  *pX = x;
418  else
419  *pX = 0;
420  return err;
421 }
int x
Definition: mipsasm.c:20
int zip64local_getByte(const zlib_filefunc64_32_def *pzlib_filefunc_def, voidpf filestream, int *pi)
Definition: zip.c:349

References err, i, x, zip64local_getByte(), and ZIP_OK.

Referenced by LoadCentralDirectoryRecord(), and zip64local_SearchCentralDir64().

◆ zip64local_getLong64()

int zip64local_getLong64 ( const zlib_filefunc64_32_def pzlib_filefunc_def,
voidpf  filestream,
ZPOS64_T pX 
)

Definition at line 426 of file zip.c.

427 {
428  ZPOS64_T x;
429  int i = 0;
430  int err;
431 
432  err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
433  x = (ZPOS64_T)i;
434 
435  if (err==ZIP_OK)
436  err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
437  x += ((ZPOS64_T)i)<<8;
438 
439  if (err==ZIP_OK)
440  err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
441  x += ((ZPOS64_T)i)<<16;
442 
443  if (err==ZIP_OK)
444  err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
445  x += ((ZPOS64_T)i)<<24;
446 
447  if (err==ZIP_OK)
448  err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
449  x += ((ZPOS64_T)i)<<32;
450 
451  if (err==ZIP_OK)
452  err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
453  x += ((ZPOS64_T)i)<<40;
454 
455  if (err==ZIP_OK)
456  err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
457  x += ((ZPOS64_T)i)<<48;
458 
459  if (err==ZIP_OK)
460  err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
461  x += ((ZPOS64_T)i)<<56;
462 
463  if (err==ZIP_OK)
464  *pX = x;
465  else
466  *pX = 0;
467 
468  return err;
469 }

References err, i, x, zip64local_getByte(), and ZIP_OK.

Referenced by LoadCentralDirectoryRecord(), and zip64local_SearchCentralDir64().

◆ zip64local_getShort()

int zip64local_getShort ( const zlib_filefunc64_32_def pzlib_filefunc_def,
voidpf  filestream,
uLong pX 
)

Definition at line 373 of file zip.c.

374 {
375  uLong x ;
376  int i = 0;
377  int err;
378 
379  err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
380  x = (uLong)i;
381 
382  if (err==ZIP_OK)
383  err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
384  x += ((uLong)i)<<8;
385 
386  if (err==ZIP_OK)
387  *pX = x;
388  else
389  *pX = 0;
390  return err;
391 }

References err, i, x, zip64local_getByte(), and ZIP_OK.

Referenced by LoadCentralDirectoryRecord().

◆ zip64local_putValue()

int zip64local_putValue ( const zlib_filefunc64_32_def pzlib_filefunc_def,
voidpf  filestream,
ZPOS64_T  x,
int  nbByte 
)

Definition at line 287 of file zip.c.

288 {
289  unsigned char buf[8];
290  int n;
291  for (n = 0; n < nbByte; n++)
292  {
293  buf[n] = (unsigned char)(x & 0xff);
294  x >>= 8;
295  }
296  if (x != 0)
297  { /* data overflow - hack for ZIP64 (X Roche) */
298  for (n = 0; n < nbByte; n++)
299  {
300  buf[n] = 0xff;
301  }
302  }
303 
304  if (ZWRITE64(*pzlib_filefunc_def,filestream,buf,(uLong)nbByte)!=(uLong)nbByte)
305  return ZIP_ERRNO;
306  else
307  return ZIP_OK;
308 }
int n
Definition: mipsasm.c:19

References n, x, ZIP_ERRNO, ZIP_OK, and ZWRITE64.

Referenced by Write_EndOfCentralDirectoryRecord(), Write_GlobalComment(), Write_LocalFileHeader(), Write_Zip64EndOfCentralDirectoryLocator(), Write_Zip64EndOfCentralDirectoryRecord(), and zipCloseFileInZipRaw64().

◆ zip64local_putValue_inmemory()

void zip64local_putValue_inmemory ( void *  dest,
ZPOS64_T  x,
int  nbByte 
)

Definition at line 311 of file zip.c.

312 {
313  unsigned char* buf=(unsigned char*)dest;
314  int n;
315  for (n = 0; n < nbByte; n++) {
316  buf[n] = (unsigned char)(x & 0xff);
317  x >>= 8;
318  }
319 
320  if (x != 0)
321  { /* data overflow - hack for ZIP64 */
322  for (n = 0; n < nbByte; n++)
323  {
324  buf[n] = 0xff;
325  }
326  }
327 }
char * dest
Definition: lz4.h:697

References dest, n, and x.

Referenced by zipCloseFileInZipRaw64(), and zipOpenNewFileInZip4_64().

◆ zip64local_SearchCentralDir()

ZPOS64_T zip64local_SearchCentralDir ( const zlib_filefunc64_32_def pzlib_filefunc_def,
voidpf  filestream 
)

Definition at line 480 of file zip.c.

481 {
482  unsigned char* buf;
483  ZPOS64_T uSizeFile;
484  ZPOS64_T uBackRead;
485  ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */
486  ZPOS64_T uPosFound=0;
487 
488  if (ZSEEK64(*pzlib_filefunc_def,filestream,0,ZLIB_FILEFUNC_SEEK_END) != 0)
489  return 0;
490 
491 
492  uSizeFile = ZTELL64(*pzlib_filefunc_def,filestream);
493 
494  if (uMaxBack>uSizeFile)
495  uMaxBack = uSizeFile;
496 
497  buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
498  if (buf==NULL)
499  return 0;
500 
501  uBackRead = 4;
502  while (uBackRead<uMaxBack)
503  {
504  uLong uReadSize;
505  ZPOS64_T uReadPos ;
506  int i;
507  if (uBackRead+BUFREADCOMMENT>uMaxBack)
508  uBackRead = uMaxBack;
509  else
510  uBackRead+=BUFREADCOMMENT;
511  uReadPos = uSizeFile-uBackRead ;
512 
513  uReadSize = ((BUFREADCOMMENT+4) < (uSizeFile-uReadPos)) ?
514  (BUFREADCOMMENT+4) : (uLong)(uSizeFile-uReadPos);
515  if (ZSEEK64(*pzlib_filefunc_def,filestream,uReadPos,ZLIB_FILEFUNC_SEEK_SET)!=0)
516  break;
517 
518  if (ZREAD64(*pzlib_filefunc_def,filestream,buf,uReadSize)!=uReadSize)
519  break;
520 
521  for (i=(int)uReadSize-3; (i--)>0;)
522  if (((*(buf+i))==0x50) && ((*(buf+i+1))==0x4b) &&
523  ((*(buf+i+2))==0x05) && ((*(buf+i+3))==0x06))
524  {
525  uPosFound = uReadPos+(unsigned)i;
526  break;
527  }
528 
529  if (uPosFound!=0)
530  break;
531  }
532  TRYFREE(buf);
533  return uPosFound;
534 }
#define ZLIB_FILEFUNC_SEEK_END
Definition: ioapi.h:115
static void struct sockaddr socklen_t static fromlen static backlog static fork char char char static envp int struct rusage static rusage struct utsname static buf struct sembuf unsigned
Definition: sflib.h:97
#define BUFREADCOMMENT
Definition: zip.c:472

References ALLOC, BUFREADCOMMENT, i, NULL, TRYFREE, unsigned, ZLIB_FILEFUNC_SEEK_END, ZLIB_FILEFUNC_SEEK_SET, ZREAD64, ZSEEK64, and ZTELL64.

Referenced by LoadCentralDirectoryRecord().

◆ zip64local_SearchCentralDir64()

ZPOS64_T zip64local_SearchCentralDir64 ( const zlib_filefunc64_32_def pzlib_filefunc_def,
voidpf  filestream 
)

Definition at line 542 of file zip.c.

543 {
544  unsigned char* buf;
545  ZPOS64_T uSizeFile;
546  ZPOS64_T uBackRead;
547  ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */
548  ZPOS64_T uPosFound=0;
549  uLong uL;
550  ZPOS64_T relativeOffset;
551 
552  if (ZSEEK64(*pzlib_filefunc_def,filestream,0,ZLIB_FILEFUNC_SEEK_END) != 0)
553  return 0;
554 
555  uSizeFile = ZTELL64(*pzlib_filefunc_def,filestream);
556 
557  if (uMaxBack>uSizeFile)
558  uMaxBack = uSizeFile;
559 
560  buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
561  if (buf==NULL)
562  return 0;
563 
564  uBackRead = 4;
565  while (uBackRead<uMaxBack)
566  {
567  uLong uReadSize;
568  ZPOS64_T uReadPos;
569  int i;
570  if (uBackRead+BUFREADCOMMENT>uMaxBack)
571  uBackRead = uMaxBack;
572  else
573  uBackRead+=BUFREADCOMMENT;
574  uReadPos = uSizeFile-uBackRead ;
575 
576  uReadSize = ((BUFREADCOMMENT+4) < (uSizeFile-uReadPos)) ?
577  (BUFREADCOMMENT+4) : (uLong)(uSizeFile-uReadPos);
578  if (ZSEEK64(*pzlib_filefunc_def,filestream,uReadPos,ZLIB_FILEFUNC_SEEK_SET)!=0)
579  break;
580 
581  if (ZREAD64(*pzlib_filefunc_def,filestream,buf,uReadSize)!=uReadSize)
582  break;
583 
584  for (i=(int)uReadSize-3; (i--)>0;)
585  {
586  // Signature "0x07064b50" Zip64 end of central directory locater
587  if (((*(buf+i))==0x50) && ((*(buf+i+1))==0x4b) && ((*(buf+i+2))==0x06) && ((*(buf+i+3))==0x07))
588  {
589  uPosFound = uReadPos+(unsigned)i;
590  break;
591  }
592  }
593 
594  if (uPosFound!=0)
595  break;
596  }
597 
598  TRYFREE(buf);
599  if (uPosFound == 0)
600  return 0;
601 
602  /* Zip64 end of central directory locator */
603  if (ZSEEK64(*pzlib_filefunc_def,filestream, uPosFound,ZLIB_FILEFUNC_SEEK_SET)!=0)
604  return 0;
605 
606  /* the signature, already checked */
607  if (zip64local_getLong(pzlib_filefunc_def,filestream,&uL)!=ZIP_OK)
608  return 0;
609 
610  /* number of the disk with the start of the zip64 end of central directory */
611  if (zip64local_getLong(pzlib_filefunc_def,filestream,&uL)!=ZIP_OK)
612  return 0;
613  if (uL != 0)
614  return 0;
615 
616  /* relative offset of the zip64 end of central directory record */
617  if (zip64local_getLong64(pzlib_filefunc_def,filestream,&relativeOffset)!=ZIP_OK)
618  return 0;
619 
620  /* total number of disks */
621  if (zip64local_getLong(pzlib_filefunc_def,filestream,&uL)!=ZIP_OK)
622  return 0;
623  if (uL != 1)
624  return 0;
625 
626  /* Goto Zip64 end of central directory record */
627  if (ZSEEK64(*pzlib_filefunc_def,filestream, relativeOffset,ZLIB_FILEFUNC_SEEK_SET)!=0)
628  return 0;
629 
630  /* the signature */
631  if (zip64local_getLong(pzlib_filefunc_def,filestream,&uL)!=ZIP_OK)
632  return 0;
633 
634  if (uL != 0x06064b50) // signature of 'Zip64 end of central directory'
635  return 0;
636 
637  return relativeOffset;
638 }

References ALLOC, BUFREADCOMMENT, i, NULL, TRYFREE, unsigned, zip64local_getLong(), zip64local_getLong64(), ZIP_OK, ZLIB_FILEFUNC_SEEK_END, ZLIB_FILEFUNC_SEEK_SET, ZREAD64, ZSEEK64, and ZTELL64.

Referenced by LoadCentralDirectoryRecord().

◆ zip64local_TmzDateToDosDate()

uLong zip64local_TmzDateToDosDate ( const tm_zip ptm)

Definition at line 332 of file zip.c.

333 {
334  uLong year = (uLong)ptm->tm_year;
335  if (year>=1980)
336  year-=1980;
337  else if (year>=80)
338  year-=80;
339  return
340  (uLong) (((uLong)(ptm->tm_mday) + (32 * (uLong)(ptm->tm_mon+1)) + (512 * year)) << 16) |
341  (((uLong)ptm->tm_sec/2) + (32 * (uLong)ptm->tm_min) + (2048 * (uLong)ptm->tm_hour));
342 }
int tm_hour
Definition: zip.h:93
int tm_min
Definition: zip.h:92
int tm_sec
Definition: zip.h:91
int tm_mon
Definition: zip.h:95
int tm_year
Definition: zip.h:96
int tm_mday
Definition: zip.h:94
if(dbg->bits==RZ_SYS_BITS_64)
Definition: windows-arm64.h:4

References if(), tm_zip_s::tm_hour, tm_zip_s::tm_mday, tm_zip_s::tm_min, tm_zip_s::tm_mon, tm_zip_s::tm_sec, and tm_zip_s::tm_year.

Referenced by zipOpenNewFileInZip4_64().

◆ zipClose()

int ZEXPORT zipClose ( zipFile  file,
const char *  global_comment 
)

Definition at line 1882 of file zip.c.

1883 {
1884  zip64_internal* zi;
1885  int err = 0;
1886  uLong size_centraldir = 0;
1887  ZPOS64_T centraldir_pos_inzip;
1888  ZPOS64_T pos;
1889 
1890  if (file == NULL)
1891  return ZIP_PARAMERROR;
1892 
1893  zi = (zip64_internal*)file;
1894 
1895  if (zi->in_opened_file_inzip == 1)
1896  {
1898  }
1899 
1900 #ifndef NO_ADDFILEINEXISTINGZIP
1901  if (global_comment==NULL)
1902  global_comment = zi->globalcomment;
1903 #endif
1904 
1905  centraldir_pos_inzip = ZTELL64(zi->z_filefunc,zi->filestream);
1906 
1907  if (err==ZIP_OK)
1908  {
1910  while (ldi!=NULL)
1911  {
1912  if ((err==ZIP_OK) && (ldi->filled_in_this_block>0))
1913  {
1915  err = ZIP_ERRNO;
1916  }
1917 
1918  size_centraldir += ldi->filled_in_this_block;
1919  ldi = ldi->next_datablock;
1920  }
1921  }
1922  free_linkedlist(&(zi->central_dir));
1923 
1924  pos = centraldir_pos_inzip - zi->add_position_when_writing_offset;
1925  if(pos >= 0xffffffff || zi->number_entry > 0xFFFF)
1926  {
1927  ZPOS64_T Zip64EOCDpos = ZTELL64(zi->z_filefunc,zi->filestream);
1928  Write_Zip64EndOfCentralDirectoryRecord(zi, size_centraldir, centraldir_pos_inzip);
1929 
1930  Write_Zip64EndOfCentralDirectoryLocator(zi, Zip64EOCDpos);
1931  }
1932 
1933  if (err==ZIP_OK)
1934  err = Write_EndOfCentralDirectoryRecord(zi, size_centraldir, centraldir_pos_inzip);
1935 
1936  if(err == ZIP_OK)
1937  err = Write_GlobalComment(zi, global_comment);
1938 
1939  if (ZCLOSE64(zi->z_filefunc,zi->filestream) != 0)
1940  if (err == ZIP_OK)
1941  err = ZIP_ERRNO;
1942 
1943 #ifndef NO_ADDFILEINEXISTINGZIP
1944  TRYFREE(zi->globalcomment);
1945 #endif
1946  TRYFREE(zi);
1947 
1948  return err;
1949 }
Definition: gzappend.c:170
int in_opened_file_inzip
Definition: zip.c:170
int Write_EndOfCentralDirectoryRecord(zip64_internal *zi, uLong size_centraldir, ZPOS64_T centraldir_pos_inzip)
Definition: zip.c:1816
int Write_Zip64EndOfCentralDirectoryRecord(zip64_internal *zi, uLong size_centraldir, ZPOS64_T centraldir_pos_inzip)
Definition: zip.c:1777
int Write_Zip64EndOfCentralDirectoryLocator(zip64_internal *zi, ZPOS64_T zip64eocd_pos_inzip)
Definition: zip.c:1755
void free_linkedlist(linkedlist_data *ll)
Definition: zip.c:218
int ZEXPORT zipCloseFileInZip(zipFile file)
Definition: zip.c:1750
int Write_GlobalComment(zip64_internal *zi, const char *global_comment)
Definition: zip.c:1864
#define ZIP_PARAMERROR
Definition: zip.h:75

References zip64_internal::add_position_when_writing_offset, zip64_internal::central_dir, linkedlist_datablock_internal_s::data, err, zip64_internal::filestream, linkedlist_datablock_internal_s::filled_in_this_block, linkedlist_data_s::first_block, free_linkedlist(), zip64_internal::globalcomment, zip64_internal::in_opened_file_inzip, linkedlist_datablock_internal_s::next_datablock, NULL, zip64_internal::number_entry, pos, TRYFREE, Write_EndOfCentralDirectoryRecord(), Write_GlobalComment(), Write_Zip64EndOfCentralDirectoryLocator(), Write_Zip64EndOfCentralDirectoryRecord(), zip64_internal::z_filefunc, ZCLOSE64, ZIP_ERRNO, ZIP_OK, ZIP_PARAMERROR, zipCloseFileInZip(), ZTELL64, and ZWRITE64.

Referenced by main().

◆ zipCloseFileInZip()

int ZEXPORT zipCloseFileInZip ( zipFile  file)

Definition at line 1750 of file zip.c.

1751 {
1752  return zipCloseFileInZipRaw (file,0,0);
1753 }
int ZEXPORT zipCloseFileInZipRaw(zipFile file, uLong uncompressed_size, uLong crc32)
Definition: zip.c:1509

References zipCloseFileInZipRaw().

Referenced by main(), zipClose(), and zipOpenNewFileInZip4_64().

◆ zipCloseFileInZipRaw()

int ZEXPORT zipCloseFileInZipRaw ( zipFile  file,
uLong  uncompressed_size,
uLong  crc32 
)

Definition at line 1509 of file zip.c.

1510 {
1512 }
uint64_t uncompressed_size
Definition: list.c:106
int ZEXPORT zipCloseFileInZipRaw64(zipFile file, ZPOS64_T uncompressed_size, uLong crc32)
Definition: zip.c:1514
unsigned long ZEXPORT crc32(unsigned long crc, const unsigned char FAR *buf, uInt len)
Definition: crc32.c:1063

References crc32(), uncompressed_size, and zipCloseFileInZipRaw64().

Referenced by zipCloseFileInZip().

◆ zipCloseFileInZipRaw64()

int ZEXPORT zipCloseFileInZipRaw64 ( zipFile  file,
ZPOS64_T  uncompressed_size,
uLong  crc32 
)

set internal file attributes field

Definition at line 1514 of file zip.c.

1515 {
1516  zip64_internal* zi;
1518  uLong invalidValue = 0xffffffff;
1519  unsigned datasize = 0;
1520  int err=ZIP_OK;
1521 
1522  if (file == NULL)
1523  return ZIP_PARAMERROR;
1524  zi = (zip64_internal*)file;
1525 
1526  if (zi->in_opened_file_inzip == 0)
1527  return ZIP_PARAMERROR;
1528  zi->ci.stream.avail_in = 0;
1529 
1530  if ((zi->ci.method == Z_DEFLATED) && (!zi->ci.raw))
1531  {
1532  while (err==ZIP_OK)
1533  {
1534  uLong uTotalOutBefore;
1535  if (zi->ci.stream.avail_out == 0)
1536  {
1537  if (zip64FlushWriteBuffer(zi) == ZIP_ERRNO)
1538  err = ZIP_ERRNO;
1539  zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
1540  zi->ci.stream.next_out = zi->ci.buffered_data;
1541  }
1542  uTotalOutBefore = zi->ci.stream.total_out;
1543  err=deflate(&zi->ci.stream, Z_FINISH);
1544  zi->ci.pos_in_buffered_data += (uInt)(zi->ci.stream.total_out - uTotalOutBefore) ;
1545  }
1546  }
1547  else if ((zi->ci.method == Z_BZIP2ED) && (!zi->ci.raw))
1548  {
1549 #ifdef HAVE_BZIP2
1550  err = BZ_FINISH_OK;
1551  while (err==BZ_FINISH_OK)
1552  {
1553  uLong uTotalOutBefore;
1554  if (zi->ci.bstream.avail_out == 0)
1555  {
1556  if (zip64FlushWriteBuffer(zi) == ZIP_ERRNO)
1557  err = ZIP_ERRNO;
1558  zi->ci.bstream.avail_out = (uInt)Z_BUFSIZE;
1559  zi->ci.bstream.next_out = (char*)zi->ci.buffered_data;
1560  }
1561  uTotalOutBefore = zi->ci.bstream.total_out_lo32;
1562  err=BZ2_bzCompress(&zi->ci.bstream, BZ_FINISH);
1563  if(err == BZ_STREAM_END)
1564  err = Z_STREAM_END;
1565 
1566  zi->ci.pos_in_buffered_data += (uInt)(zi->ci.bstream.total_out_lo32 - uTotalOutBefore);
1567  }
1568 
1569  if(err == BZ_FINISH_OK)
1570  err = ZIP_OK;
1571 #endif
1572  }
1573 
1574  if (err==Z_STREAM_END)
1575  err=ZIP_OK; /* this is normal */
1576 
1577  if ((zi->ci.pos_in_buffered_data>0) && (err==ZIP_OK))
1578  {
1580  err = ZIP_ERRNO;
1581  }
1582 
1583  if ((zi->ci.method == Z_DEFLATED) && (!zi->ci.raw))
1584  {
1585  int tmp_err = deflateEnd(&zi->ci.stream);
1586  if (err == ZIP_OK)
1587  err = tmp_err;
1588  zi->ci.stream_initialised = 0;
1589  }
1590 #ifdef HAVE_BZIP2
1591  else if((zi->ci.method == Z_BZIP2ED) && (!zi->ci.raw))
1592  {
1593  int tmperr = BZ2_bzCompressEnd(&zi->ci.bstream);
1594  if (err==ZIP_OK)
1595  err = tmperr;
1596  zi->ci.stream_initialised = 0;
1597  }
1598 #endif
1599 
1600  if (!zi->ci.raw)
1601  {
1602  crc32 = (uLong)zi->ci.crc32;
1604  }
1606 
1607 # ifndef NOCRYPT
1609 # endif
1610 
1611  // update Current Item crc and sizes,
1612  if(compressed_size >= 0xffffffff || uncompressed_size >= 0xffffffff || zi->ci.pos_local_header >= 0xffffffff)
1613  {
1614  /*version Made by*/
1616  /*version needed*/
1618 
1619  }
1620 
1622 
1623 
1624  if(compressed_size >= 0xffffffff)
1625  zip64local_putValue_inmemory(zi->ci.central_header+20, invalidValue,4); /*compr size*/
1626  else
1628 
1630  if (zi->ci.stream.data_type == Z_ASCII)
1632 
1633  if(uncompressed_size >= 0xffffffff)
1634  zip64local_putValue_inmemory(zi->ci.central_header+24, invalidValue,4); /*uncompr size*/
1635  else
1637 
1638  // Add ZIP64 extra info field for uncompressed size
1639  if(uncompressed_size >= 0xffffffff)
1640  datasize += 8;
1641 
1642  // Add ZIP64 extra info field for compressed size
1643  if(compressed_size >= 0xffffffff)
1644  datasize += 8;
1645 
1646  // Add ZIP64 extra info field for relative offset to local file header of current file
1647  if(zi->ci.pos_local_header >= 0xffffffff)
1648  datasize += 8;
1649 
1650  if(datasize > 0)
1651  {
1652  char* p = NULL;
1653 
1654  if((uLong)(datasize + 4) > zi->ci.size_centralExtraFree)
1655  {
1656  // we can not write more data to the buffer that we have room for.
1657  return ZIP_BADZIPFILE;
1658  }
1659 
1660  p = zi->ci.central_header + zi->ci.size_centralheader;
1661 
1662  // Add Extra Information Header for 'ZIP64 information'
1663  zip64local_putValue_inmemory(p, 0x0001, 2); // HeaderID
1664  p += 2;
1665  zip64local_putValue_inmemory(p, datasize, 2); // DataSize
1666  p += 2;
1667 
1668  if(uncompressed_size >= 0xffffffff)
1669  {
1671  p += 8;
1672  }
1673 
1674  if(compressed_size >= 0xffffffff)
1675  {
1677  p += 8;
1678  }
1679 
1680  if(zi->ci.pos_local_header >= 0xffffffff)
1681  {
1683  p += 8;
1684  }
1685 
1686  // Update how much extra free space we got in the memory buffer
1687  // and increase the centralheader size so the new ZIP64 fields are included
1688  // ( 4 below is the size of HeaderID and DataSize field )
1689  zi->ci.size_centralExtraFree -= datasize + 4;
1690  zi->ci.size_centralheader += datasize + 4;
1691 
1692  // Update the extra info size field
1693  zi->ci.size_centralExtra += datasize + 4;
1695  }
1696 
1697  if (err==ZIP_OK)
1699 
1700  free(zi->ci.central_header);
1701 
1702  if (err==ZIP_OK)
1703  {
1704  // Update the LocalFileHeader with the new values.
1705 
1706  ZPOS64_T cur_pos_inzip = ZTELL64(zi->z_filefunc,zi->filestream);
1707 
1709  err = ZIP_ERRNO;
1710 
1711  if (err==ZIP_OK)
1712  err = zip64local_putValue(&zi->z_filefunc,zi->filestream,crc32,4); /* crc 32, unknown */
1713 
1714  if(uncompressed_size >= 0xffffffff || compressed_size >= 0xffffffff )
1715  {
1716  if(zi->ci.pos_zip64extrainfo > 0)
1717  {
1718  // Update the size in the ZIP64 extended field.
1720  err = ZIP_ERRNO;
1721 
1722  if (err==ZIP_OK) /* compressed size, unknown */
1724 
1725  if (err==ZIP_OK) /* uncompressed size, unknown */
1727  }
1728  else
1729  err = ZIP_BADZIPFILE; // Caller passed zip64 = 0, so no room for zip64 info -> fatal
1730  }
1731  else
1732  {
1733  if (err==ZIP_OK) /* compressed size, unknown */
1735 
1736  if (err==ZIP_OK) /* uncompressed size, unknown */
1738  }
1739 
1740  if (ZSEEK64(zi->z_filefunc,zi->filestream, cur_pos_inzip,ZLIB_FILEFUNC_SEEK_SET)!=0)
1741  err = ZIP_ERRNO;
1742  }
1743 
1744  zi->number_entry ++;
1745  zi->in_opened_file_inzip = 0;
1746 
1747  return err;
1748 }
int ZEXPORT deflateEnd(z_streamp strm)
Definition: deflate.c:1119
int ZEXPORT deflate(z_streamp strm, int flush)
Definition: deflate.c:804
RZ_API void Ht_() free(HtName_(Ht) *ht)
Definition: ht_inc.c:130
void * p
Definition: libc.cpp:67
uLong size_centralheader
Definition: zip.c:144
int stream_initialised
Definition: zip.c:137
unsigned crypt_header_size
Definition: zip.c:161
ZPOS64_T pos_local_header
Definition: zip.c:140
uLong size_centralExtraFree
Definition: zip.c:145
char * central_header
Definition: zip.c:142
uLong crc32
Definition: zip.c:152
uLong size_centralExtra
Definition: zip.c:143
int raw
Definition: zip.c:149
uInt avail_in
Definition: zlib.h:88
uInt avail_out
Definition: zlib.h:92
int data_type
Definition: zlib.h:102
uLong total_out
Definition: zlib.h:93
Bytef * next_out
Definition: zlib.h:91
uint64_t compressed_size
Definition: list.c:105
#define Z_BUFSIZE
Definition: zip.c:54
void zip64local_putValue_inmemory(void *dest, ZPOS64_T x, int nbByte)
Definition: zip.c:311
int zip64FlushWriteBuffer(zip64_internal *zi)
Definition: zip.c:1363
#define Z_DEFLATED
Definition: zlib.h:209
#define Z_STREAM_END
Definition: zlib.h:178
#define Z_FINISH
Definition: zlib.h:172
#define Z_ASCII
Definition: zlib.h:205

References add_data_in_datablock(), z_stream_s::avail_in, z_stream_s::avail_out, curfile64_info::buffered_data, zip64_internal::central_dir, curfile64_info::central_header, zip64_internal::ci, compressed_size, curfile64_info::crc32, crc32(), curfile64_info::crypt_header_size, z_stream_s::data_type, deflate(), deflateEnd(), err, zip64_internal::filestream, free(), zip64_internal::in_opened_file_inzip, curfile64_info::method, z_stream_s::next_out, NULL, zip64_internal::number_entry, p, curfile64_info::pos_in_buffered_data, curfile64_info::pos_local_header, curfile64_info::pos_zip64extrainfo, curfile64_info::raw, curfile64_info::size_centralExtra, curfile64_info::size_centralExtraFree, curfile64_info::size_centralheader, curfile64_info::stream, curfile64_info::stream_initialised, z_stream_s::total_out, curfile64_info::totalCompressedData, curfile64_info::totalUncompressedData, uncompressed_size, Z_ASCII, Z_BUFSIZE, Z_BZIP2ED, Z_DEFLATED, zip64_internal::z_filefunc, Z_FINISH, Z_STREAM_END, zip64FlushWriteBuffer(), zip64local_putValue(), zip64local_putValue_inmemory(), ZIP_BADZIPFILE, ZIP_ERRNO, ZIP_OK, ZIP_PARAMERROR, ZLIB_FILEFUNC_SEEK_SET, ZSEEK64, and ZTELL64.

Referenced by zipCloseFileInZipRaw().

◆ zipOpen()

zipFile ZEXPORT zipOpen ( const char *  pathname,
int  append 
)

Definition at line 948 of file zip.c.

949 {
950  return zipOpen3((const void*)pathname,append,NULL,NULL);
951 }
#define append(x, y)
Definition: cmd_print.c:1740
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char pathname
Definition: sflib.h:66
zipFile ZEXPORT zipOpen3(const void *pathname, int append, zipcharpc *globalcomment, zlib_filefunc64_32_def *pzlib_filefunc64_32_def)
Definition: zip.c:849

References append, NULL, pathname, and zipOpen3().

◆ zipOpen2()

zipFile ZEXPORT zipOpen2 ( const char *  pathname,
int  append,
zipcharpc globalcomment,
zlib_filefunc_def pzlib_filefunc32_def 
)

Definition at line 920 of file zip.c.

921 {
922  if (pzlib_filefunc32_def != NULL)
923  {
924  zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
925  fill_zlib_filefunc64_32_def_from_filefunc32(&zlib_filefunc64_32_def_fill,pzlib_filefunc32_def);
926  return zipOpen3(pathname, append, globalcomment, &zlib_filefunc64_32_def_fill);
927  }
928  else
929  return zipOpen3(pathname, append, globalcomment, NULL);
930 }
void fill_zlib_filefunc64_32_def_from_filefunc32(zlib_filefunc64_32_def *p_filefunc64_32, const zlib_filefunc_def *p_filefunc32)
Definition: ioapi.c:69

References append, fill_zlib_filefunc64_32_def_from_filefunc32(), NULL, pathname, and zipOpen3().

◆ zipOpen2_64()

zipFile ZEXPORT zipOpen2_64 ( const void *  pathname,
int  append,
zipcharpc globalcomment,
zlib_filefunc64_def pzlib_filefunc_def 
)

Definition at line 932 of file zip.c.

933 {
934  if (pzlib_filefunc_def != NULL)
935  {
936  zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
937  zlib_filefunc64_32_def_fill.zfile_func64 = *pzlib_filefunc_def;
938  zlib_filefunc64_32_def_fill.ztell32_file = NULL;
939  zlib_filefunc64_32_def_fill.zseek32_file = NULL;
940  return zipOpen3(pathname, append, globalcomment, &zlib_filefunc64_32_def_fill);
941  }
942  else
943  return zipOpen3(pathname, append, globalcomment, NULL);
944 }
seek_file_func zseek32_file
Definition: ioapi.h:185
zlib_filefunc64_def zfile_func64
Definition: ioapi.h:182
tell_file_func ztell32_file
Definition: ioapi.h:184

References append, NULL, pathname, zlib_filefunc64_32_def_s::zfile_func64, zipOpen3(), zlib_filefunc64_32_def_s::zseek32_file, and zlib_filefunc64_32_def_s::ztell32_file.

Referenced by main().

◆ zipOpen3()

zipFile ZEXPORT zipOpen3 ( const void *  pathname,
int  append,
zipcharpc globalcomment,
zlib_filefunc64_32_def pzlib_filefunc64_32_def 
)

Definition at line 849 of file zip.c.

850 {
851  zip64_internal ziinit;
852  zip64_internal* zi;
853  int err=ZIP_OK;
854 
855  ziinit.z_filefunc.zseek32_file = NULL;
856  ziinit.z_filefunc.ztell32_file = NULL;
857  if (pzlib_filefunc64_32_def==NULL)
859  else
860  ziinit.z_filefunc = *pzlib_filefunc64_32_def;
861 
862  ziinit.filestream = ZOPEN64(ziinit.z_filefunc,
863  pathname,
867 
868  if (ziinit.filestream == NULL)
869  return NULL;
870 
872  ZSEEK64(ziinit.z_filefunc,ziinit.filestream,0,SEEK_END);
873 
874  ziinit.begin_pos = ZTELL64(ziinit.z_filefunc,ziinit.filestream);
875  ziinit.in_opened_file_inzip = 0;
876  ziinit.ci.stream_initialised = 0;
877  ziinit.number_entry = 0;
879  init_linkedlist(&(ziinit.central_dir));
880 
881 
882 
883  zi = (zip64_internal*)ALLOC(sizeof(zip64_internal));
884  if (zi==NULL)
885  {
886  ZCLOSE64(ziinit.z_filefunc,ziinit.filestream);
887  return NULL;
888  }
889 
890  /* now we add file in a zipfile */
891 # ifndef NO_ADDFILEINEXISTINGZIP
892  ziinit.globalcomment = NULL;
894  {
895  // Read and Cache Central Directory Records
896  err = LoadCentralDirectoryRecord(&ziinit);
897  }
898 
899  if (globalcomment)
900  {
901  *globalcomment = ziinit.globalcomment;
902  }
903 # endif /* !NO_ADDFILEINEXISTINGZIP*/
904 
905  if (err != ZIP_OK)
906  {
907 # ifndef NO_ADDFILEINEXISTINGZIP
908  TRYFREE(ziinit.globalcomment);
909 # endif /* !NO_ADDFILEINEXISTINGZIP*/
910  TRYFREE(zi);
911  return NULL;
912  }
913  else
914  {
915  *zi = ziinit;
916  return (zipFile)zi;
917  }
918 }
void fill_fopen64_filefunc(zlib_filefunc64_def *pzlib_filefunc_def)
Definition: ioapi.c:247
#define ZLIB_FILEFUNC_MODE_EXISTING
Definition: ioapi.h:122
#define ZOPEN64(filefunc, filename, mode)
Definition: ioapi.h:202
#define ZLIB_FILEFUNC_MODE_CREATE
Definition: ioapi.h:123
#define ZLIB_FILEFUNC_MODE_WRITE
Definition: ioapi.h:119
#define ZLIB_FILEFUNC_MODE_READ
Definition: ioapi.h:118
int LoadCentralDirectoryRecord(zip64_internal *pziinit)
Definition: zip.c:640
void init_linkedlist(linkedlist_data *ll)
Definition: zip.c:213
#define SEEK_END
Definition: zip.c:84
#define APPEND_STATUS_ADDINZIP
Definition: zip.h:114
#define APPEND_STATUS_CREATEAFTER
Definition: zip.h:113
#define APPEND_STATUS_CREATE
Definition: zip.h:112
voidp zipFile
Definition: zip.h:69

References zip64_internal::add_position_when_writing_offset, ALLOC, append, APPEND_STATUS_ADDINZIP, APPEND_STATUS_CREATE, APPEND_STATUS_CREATEAFTER, zip64_internal::begin_pos, zip64_internal::central_dir, zip64_internal::ci, err, zip64_internal::filestream, fill_fopen64_filefunc(), zip64_internal::globalcomment, zip64_internal::in_opened_file_inzip, init_linkedlist(), LoadCentralDirectoryRecord(), NULL, zip64_internal::number_entry, pathname, SEEK_END, curfile64_info::stream_initialised, TRYFREE, zip64_internal::z_filefunc, ZCLOSE64, zlib_filefunc64_32_def_s::zfile_func64, ZIP_OK, ZLIB_FILEFUNC_MODE_CREATE, ZLIB_FILEFUNC_MODE_EXISTING, ZLIB_FILEFUNC_MODE_READ, ZLIB_FILEFUNC_MODE_WRITE, ZOPEN64, zlib_filefunc64_32_def_s::zseek32_file, ZSEEK64, zlib_filefunc64_32_def_s::ztell32_file, and ZTELL64.

Referenced by zipOpen(), zipOpen2(), zipOpen2_64(), and zipOpen64().

◆ zipOpen64()

zipFile ZEXPORT zipOpen64 ( const void *  pathname,
int  append 
)

Definition at line 953 of file zip.c.

954 {
955  return zipOpen3(pathname,append,NULL,NULL);
956 }

References append, NULL, pathname, and zipOpen3().

Referenced by main().

◆ zipOpenNewFileInZip()

int ZEXPORT zipOpenNewFileInZip ( zipFile  file,
const char *  filename,
const zip_fileinfo zipfi,
const void *  extrafield_local,
uInt  size_extrafield_local,
const void *  extrafield_global,
uInt  size_extrafield_global,
const char *  comment,
int  method,
int  level 
)

Definition at line 1350 of file zip.c.

1354 {
1355  return zipOpenNewFileInZip4_64 (file, filename, zipfi,
1356  extrafield_local, size_extrafield_local,
1357  extrafield_global, size_extrafield_global,
1358  comment, method, level, 0,
1360  NULL, 0, VERSIONMADEBY, 0, 0);
1361 }
#define MAX_WBITS
Definition: flirt.c:105
static int level
Definition: vmenus.c:2424
#define VERSIONMADEBY
Definition: zip.c:50
int ZEXPORT zipOpenNewFileInZip4_64(zipFile file, const char *filename, const zip_fileinfo *zipfi, const void *extrafield_local, uInt size_extrafield_local, const void *extrafield_global, uInt size_extrafield_global, const char *comment, int method, int level, int raw, int windowBits, int memLevel, int strategy, const char *password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase, int zip64)
Definition: zip.c:1055
#define DEF_MEM_LEVEL
Definition: zip.h:83
#define Z_DEFAULT_STRATEGY
Definition: zlib.h:200

References DEF_MEM_LEVEL, level, MAX_WBITS, NULL, VERSIONMADEBY, Z_DEFAULT_STRATEGY, and zipOpenNewFileInZip4_64().

◆ zipOpenNewFileInZip2()

int ZEXPORT zipOpenNewFileInZip2 ( zipFile  file,
const char *  filename,
const zip_fileinfo zipfi,
const void *  extrafield_local,
uInt  size_extrafield_local,
const void *  extrafield_global,
uInt  size_extrafield_global,
const char *  comment,
int  method,
int  level,
int  raw 
)

Definition at line 1311 of file zip.c.

1315 {
1316  return zipOpenNewFileInZip4_64 (file, filename, zipfi,
1317  extrafield_local, size_extrafield_local,
1318  extrafield_global, size_extrafield_global,
1319  comment, method, level, raw,
1321  NULL, 0, VERSIONMADEBY, 0, 0);
1322 }

References DEF_MEM_LEVEL, level, MAX_WBITS, NULL, VERSIONMADEBY, Z_DEFAULT_STRATEGY, and zipOpenNewFileInZip4_64().

◆ zipOpenNewFileInZip2_64()

int ZEXPORT zipOpenNewFileInZip2_64 ( zipFile  file,
const char *  filename,
const zip_fileinfo zipfi,
const void *  extrafield_local,
uInt  size_extrafield_local,
const void *  extrafield_global,
uInt  size_extrafield_global,
const char *  comment,
int  method,
int  level,
int  raw,
int  zip64 
)

Definition at line 1324 of file zip.c.

1328 {
1329  return zipOpenNewFileInZip4_64 (file, filename, zipfi,
1330  extrafield_local, size_extrafield_local,
1331  extrafield_global, size_extrafield_global,
1332  comment, method, level, raw,
1334  NULL, 0, VERSIONMADEBY, 0, zip64);
1335 }

References DEF_MEM_LEVEL, level, MAX_WBITS, NULL, VERSIONMADEBY, Z_DEFAULT_STRATEGY, and zipOpenNewFileInZip4_64().

◆ zipOpenNewFileInZip3()

int ZEXPORT zipOpenNewFileInZip3 ( zipFile  file,
const char *  filename,
const zip_fileinfo zipfi,
const void *  extrafield_local,
uInt  size_extrafield_local,
const void *  extrafield_global,
uInt  size_extrafield_global,
const char *  comment,
int  method,
int  level,
int  raw,
int  windowBits,
int  memLevel,
int  strategy,
const char *  password,
uLong  crcForCrypting 
)

Definition at line 1281 of file zip.c.

1287 {
1288  return zipOpenNewFileInZip4_64 (file, filename, zipfi,
1289  extrafield_local, size_extrafield_local,
1290  extrafield_global, size_extrafield_global,
1291  comment, method, level, raw,
1292  windowBits, memLevel, strategy,
1293  password, crcForCrypting, VERSIONMADEBY, 0, 0);
1294 }

References level, VERSIONMADEBY, and zipOpenNewFileInZip4_64().

◆ zipOpenNewFileInZip3_64()

int ZEXPORT zipOpenNewFileInZip3_64 ( zipFile  file,
const char *  filename,
const zip_fileinfo zipfi,
const void *  extrafield_local,
uInt  size_extrafield_local,
const void *  extrafield_global,
uInt  size_extrafield_global,
const char *  comment,
int  method,
int  level,
int  raw,
int  windowBits,
int  memLevel,
int  strategy,
const char *  password,
uLong  crcForCrypting,
int  zip64 
)

Definition at line 1296 of file zip.c.

1302 {
1303  return zipOpenNewFileInZip4_64 (file, filename, zipfi,
1304  extrafield_local, size_extrafield_local,
1305  extrafield_global, size_extrafield_global,
1306  comment, method, level, raw,
1307  windowBits, memLevel, strategy,
1308  password, crcForCrypting, VERSIONMADEBY, 0, zip64);
1309 }

References level, VERSIONMADEBY, and zipOpenNewFileInZip4_64().

Referenced by main().

◆ zipOpenNewFileInZip4()

int ZEXPORT zipOpenNewFileInZip4 ( zipFile  file,
const char *  filename,
const zip_fileinfo zipfi,
const void *  extrafield_local,
uInt  size_extrafield_local,
const void *  extrafield_global,
uInt  size_extrafield_global,
const char *  comment,
int  method,
int  level,
int  raw,
int  windowBits,
int  memLevel,
int  strategy,
const char *  password,
uLong  crcForCrypting,
uLong  versionMadeBy,
uLong  flagBase 
)

Definition at line 1265 of file zip.c.

1272 {
1273  return zipOpenNewFileInZip4_64 (file, filename, zipfi,
1274  extrafield_local, size_extrafield_local,
1275  extrafield_global, size_extrafield_global,
1276  comment, method, level, raw,
1277  windowBits, memLevel, strategy,
1278  password, crcForCrypting, versionMadeBy, flagBase, 0);
1279 }

References level, and zipOpenNewFileInZip4_64().

◆ zipOpenNewFileInZip4_64()

int ZEXPORT zipOpenNewFileInZip4_64 ( zipFile  file,
const char *  filename,
const zip_fileinfo zipfi,
const void *  extrafield_local,
uInt  size_extrafield_local,
const void *  extrafield_global,
uInt  size_extrafield_global,
const char *  comment,
int  method,
int  level,
int  raw,
int  windowBits,
int  memLevel,
int  strategy,
const char *  password,
uLong  crcForCrypting,
uLong  versionMadeBy,
uLong  flagBase,
int  zip64 
)

Definition at line 1055 of file zip.c.

1062 {
1063  zip64_internal* zi;
1064  uInt size_filename;
1065  uInt size_comment;
1066  uInt i;
1067  int err = ZIP_OK;
1068 
1069 # ifdef NOCRYPT
1070  (crcForCrypting);
1071  if (password != NULL)
1072  return ZIP_PARAMERROR;
1073 # endif
1074 
1075  if (file == NULL)
1076  return ZIP_PARAMERROR;
1077 
1078 #ifdef HAVE_BZIP2
1079  if ((method!=0) && (method!=Z_DEFLATED) && (method!=Z_BZIP2ED))
1080  return ZIP_PARAMERROR;
1081 #else
1082  if ((method!=0) && (method!=Z_DEFLATED))
1083  return ZIP_PARAMERROR;
1084 #endif
1085 
1086  zi = (zip64_internal*)file;
1087 
1088  if (zi->in_opened_file_inzip == 1)
1089  {
1091  if (err != ZIP_OK)
1092  return err;
1093  }
1094 
1095  if (filename==NULL)
1096  filename="-";
1097 
1098  if (comment==NULL)
1099  size_comment = 0;
1100  else
1101  size_comment = (uInt)strlen(comment);
1102 
1103  size_filename = (uInt)strlen(filename);
1104 
1105  if (zipfi == NULL)
1106  zi->ci.dosDate = 0;
1107  else
1108  {
1109  if (zipfi->dosDate != 0)
1110  zi->ci.dosDate = zipfi->dosDate;
1111  else
1113  }
1114 
1115  zi->ci.flag = flagBase;
1116  if ((level==8) || (level==9))
1117  zi->ci.flag |= 2;
1118  if (level==2)
1119  zi->ci.flag |= 4;
1120  if (level==1)
1121  zi->ci.flag |= 6;
1122  if (password != NULL)
1123  zi->ci.flag |= 1;
1124 
1125  zi->ci.crc32 = 0;
1126  zi->ci.method = method;
1127  zi->ci.encrypt = 0;
1128  zi->ci.stream_initialised = 0;
1129  zi->ci.pos_in_buffered_data = 0;
1130  zi->ci.raw = raw;
1132 
1133  zi->ci.size_centralheader = SIZECENTRALHEADER + size_filename + size_extrafield_global + size_comment;
1134  zi->ci.size_centralExtraFree = 32; // Extra space we have reserved in case we need to add ZIP64 extra info data
1135 
1137 
1138  zi->ci.size_centralExtra = size_extrafield_global;
1140  /* version info */
1141  zip64local_putValue_inmemory(zi->ci.central_header+4,(uLong)versionMadeBy,2);
1146  zip64local_putValue_inmemory(zi->ci.central_header+16,(uLong)0,4); /*crc*/
1147  zip64local_putValue_inmemory(zi->ci.central_header+20,(uLong)0,4); /*compr size*/
1148  zip64local_putValue_inmemory(zi->ci.central_header+24,(uLong)0,4); /*uncompr size*/
1149  zip64local_putValue_inmemory(zi->ci.central_header+28,(uLong)size_filename,2);
1150  zip64local_putValue_inmemory(zi->ci.central_header+30,(uLong)size_extrafield_global,2);
1151  zip64local_putValue_inmemory(zi->ci.central_header+32,(uLong)size_comment,2);
1152  zip64local_putValue_inmemory(zi->ci.central_header+34,(uLong)0,2); /*disk nm start*/
1153 
1154  if (zipfi==NULL)
1156  else
1158 
1159  if (zipfi==NULL)
1161  else
1163 
1164  if(zi->ci.pos_local_header >= 0xffffffff)
1165  zip64local_putValue_inmemory(zi->ci.central_header+42,(uLong)0xffffffff,4);
1166  else
1168 
1169  for (i=0;i<size_filename;i++)
1171 
1172  for (i=0;i<size_extrafield_global;i++)
1173  *(zi->ci.central_header+SIZECENTRALHEADER+size_filename+i) =
1174  *(((const char*)extrafield_global)+i);
1175 
1176  for (i=0;i<size_comment;i++)
1177  *(zi->ci.central_header+SIZECENTRALHEADER+size_filename+
1178  size_extrafield_global+i) = *(comment+i);
1179  if (zi->ci.central_header == NULL)
1180  return ZIP_INTERNALERROR;
1181 
1182  zi->ci.zip64 = zip64;
1183  zi->ci.totalCompressedData = 0;
1184  zi->ci.totalUncompressedData = 0;
1185  zi->ci.pos_zip64extrainfo = 0;
1186 
1187  err = Write_LocalFileHeader(zi, filename, size_extrafield_local, extrafield_local);
1188 
1189 #ifdef HAVE_BZIP2
1190  zi->ci.bstream.avail_in = (uInt)0;
1191  zi->ci.bstream.avail_out = (uInt)Z_BUFSIZE;
1192  zi->ci.bstream.next_out = (char*)zi->ci.buffered_data;
1193  zi->ci.bstream.total_in_hi32 = 0;
1194  zi->ci.bstream.total_in_lo32 = 0;
1195  zi->ci.bstream.total_out_hi32 = 0;
1196  zi->ci.bstream.total_out_lo32 = 0;
1197 #endif
1198 
1199  zi->ci.stream.avail_in = (uInt)0;
1200  zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
1201  zi->ci.stream.next_out = zi->ci.buffered_data;
1202  zi->ci.stream.total_in = 0;
1203  zi->ci.stream.total_out = 0;
1204  zi->ci.stream.data_type = Z_BINARY;
1205 
1206 #ifdef HAVE_BZIP2
1207  if ((err==ZIP_OK) && (zi->ci.method == Z_DEFLATED || zi->ci.method == Z_BZIP2ED) && (!zi->ci.raw))
1208 #else
1209  if ((err==ZIP_OK) && (zi->ci.method == Z_DEFLATED) && (!zi->ci.raw))
1210 #endif
1211  {
1212  if(zi->ci.method == Z_DEFLATED)
1213  {
1214  zi->ci.stream.zalloc = (alloc_func)0;
1215  zi->ci.stream.zfree = (free_func)0;
1216  zi->ci.stream.opaque = (voidpf)0;
1217 
1218  if (windowBits>0)
1219  windowBits = -windowBits;
1220 
1221  err = deflateInit2(&zi->ci.stream, level, Z_DEFLATED, windowBits, memLevel, strategy);
1222 
1223  if (err==Z_OK)
1225  }
1226  else if(zi->ci.method == Z_BZIP2ED)
1227  {
1228 #ifdef HAVE_BZIP2
1229  // Init BZip stuff here
1230  zi->ci.bstream.bzalloc = 0;
1231  zi->ci.bstream.bzfree = 0;
1232  zi->ci.bstream.opaque = (voidpf)0;
1233 
1234  err = BZ2_bzCompressInit(&zi->ci.bstream, level, 0,35);
1235  if(err == BZ_OK)
1237 #endif
1238  }
1239 
1240  }
1241 
1242 # ifndef NOCRYPT
1243  zi->ci.crypt_header_size = 0;
1244  if ((err==Z_OK) && (password != NULL))
1245  {
1246  unsigned char bufHead[RAND_HEAD_LEN];
1247  unsigned int sizeHead;
1248  zi->ci.encrypt = 1;
1249  zi->ci.pcrc_32_tab = get_crc_table();
1250  /*init_keys(password,zi->ci.keys,zi->ci.pcrc_32_tab);*/
1251 
1252  sizeHead=crypthead(password,bufHead,RAND_HEAD_LEN,zi->ci.keys,zi->ci.pcrc_32_tab,crcForCrypting);
1253  zi->ci.crypt_header_size = sizeHead;
1254 
1255  if (ZWRITE64(zi->z_filefunc,zi->filestream,bufHead,sizeHead) != sizeHead)
1256  err = ZIP_ERRNO;
1257  }
1258 # endif
1259 
1260  if (err==Z_OK)
1261  zi->in_opened_file_inzip = 1;
1262  return err;
1263 }
alloc_func zalloc
Definition: zlib.h:98
free_func zfree
Definition: zlib.h:99
voidpf opaque
Definition: zlib.h:100
uLong dosDate
Definition: zip.h:102
uLong internal_fa
Definition: zip.h:105
uLong external_fa
Definition: zip.h:106
tm_zip tmz_date
Definition: zip.h:101
Byte FAR * voidpf
Definition: zconf.h:413
#define SIZECENTRALHEADER
Definition: zip.c:112
uLong zip64local_TmzDateToDosDate(const tm_zip *ptm)
Definition: zip.c:332
#define CENTRALHEADERMAGIC
Definition: zip.c:104
int Write_LocalFileHeader(zip64_internal *zi, const char *filename, uInt size_extrafield_local, const void *extrafield_local)
Definition: zip.c:958
const z_crc_t FAR *ZEXPORT get_crc_table()
Definition: crc32.c:586
#define Z_BINARY
Definition: zlib.h:203
#define deflateInit2(strm, level, method, windowBits, memLevel, strategy)
Definition: zlib.h:1814
#define Z_OK
Definition: zlib.h:177

References zip64_internal::add_position_when_writing_offset, ALLOC, z_stream_s::avail_in, z_stream_s::avail_out, curfile64_info::buffered_data, curfile64_info::central_header, CENTRALHEADERMAGIC, zip64_internal::ci, curfile64_info::crc32, curfile64_info::crypt_header_size, z_stream_s::data_type, deflateInit2, curfile64_info::dosDate, zip_fileinfo::dosDate, curfile64_info::encrypt, err, zip_fileinfo::external_fa, zip64_internal::filestream, curfile64_info::flag, get_crc_table(), i, zip64_internal::in_opened_file_inzip, zip_fileinfo::internal_fa, curfile64_info::keys, level, curfile64_info::method, z_stream_s::next_out, NULL, z_stream_s::opaque, curfile64_info::pcrc_32_tab, curfile64_info::pos_in_buffered_data, curfile64_info::pos_local_header, curfile64_info::pos_zip64extrainfo, curfile64_info::raw, curfile64_info::size_centralExtra, curfile64_info::size_centralExtraFree, curfile64_info::size_centralheader, SIZECENTRALHEADER, curfile64_info::stream, curfile64_info::stream_initialised, zip_fileinfo::tmz_date, z_stream_s::total_in, z_stream_s::total_out, curfile64_info::totalCompressedData, curfile64_info::totalUncompressedData, Write_LocalFileHeader(), Z_BINARY, Z_BUFSIZE, Z_BZIP2ED, Z_DEFLATED, zip64_internal::z_filefunc, Z_OK, z_stream_s::zalloc, z_stream_s::zfree, curfile64_info::zip64, zip64local_putValue_inmemory(), zip64local_TmzDateToDosDate(), ZIP_ERRNO, ZIP_INTERNALERROR, ZIP_OK, ZIP_PARAMERROR, zipCloseFileInZip(), ZTELL64, and ZWRITE64.

Referenced by zipOpenNewFileInZip(), zipOpenNewFileInZip2(), zipOpenNewFileInZip2_64(), zipOpenNewFileInZip3(), zipOpenNewFileInZip3_64(), zipOpenNewFileInZip4(), and zipOpenNewFileInZip64().

◆ zipOpenNewFileInZip64()

int ZEXPORT zipOpenNewFileInZip64 ( zipFile  file,
const char *  filename,
const zip_fileinfo zipfi,
const void *  extrafield_local,
uInt  size_extrafield_local,
const void *  extrafield_global,
uInt  size_extrafield_global,
const char *  comment,
int  method,
int  level,
int  zip64 
)

Definition at line 1337 of file zip.c.

1341 {
1342  return zipOpenNewFileInZip4_64 (file, filename, zipfi,
1343  extrafield_local, size_extrafield_local,
1344  extrafield_global, size_extrafield_global,
1345  comment, method, level, 0,
1347  NULL, 0, VERSIONMADEBY, 0, zip64);
1348 }

References DEF_MEM_LEVEL, level, MAX_WBITS, NULL, VERSIONMADEBY, Z_DEFAULT_STRATEGY, and zipOpenNewFileInZip4_64().

◆ zipRemoveExtraInfoBlock()

int ZEXPORT zipRemoveExtraInfoBlock ( char *  pData,
int dataLen,
short  sHeader 
)

Definition at line 1951 of file zip.c.

1952 {
1953  char* p = pData;
1954  int size = 0;
1955  char* pNewHeader;
1956  char* pTmp;
1957  short header;
1958  short dataSize;
1959 
1960  int retVal = ZIP_OK;
1961 
1962  if(pData == NULL || *dataLen < 4)
1963  return ZIP_PARAMERROR;
1964 
1965  pNewHeader = (char*)ALLOC((unsigned)*dataLen);
1966  pTmp = pNewHeader;
1967 
1968  while(p < (pData + *dataLen))
1969  {
1970  header = *(short*)p;
1971  dataSize = *(((short*)p)+1);
1972 
1973  if( header == sHeader ) // Header found.
1974  {
1975  p += dataSize + 4; // skip it. do not copy to temp buffer
1976  }
1977  else
1978  {
1979  // Extra Info block should not be removed, So copy it to the temp buffer.
1980  memcpy(pTmp, p, dataSize + 4);
1981  p += dataSize + 4;
1982  size += dataSize + 4;
1983  }
1984 
1985  }
1986 
1987  if(size < *dataLen)
1988  {
1989  // clean old extra info block.
1990  memset(pData,0, *dataLen);
1991 
1992  // copy the new extra info block over the old
1993  if(size > 0)
1994  memcpy(pData, pNewHeader, size);
1995 
1996  // set the new extra info size
1997  *dataLen = size;
1998 
1999  retVal = ZIP_OK;
2000  }
2001  else
2002  retVal = ZIP_ERRNO;
2003 
2004  TRYFREE(pNewHeader);
2005 
2006  return retVal;
2007 }
voidpf void uLong size
Definition: ioapi.h:138
return memset(p, 0, total)
memcpy(mem, inblock.get(), min(CONTAINING_RECORD(inblock.get(), MEMBLOCK, data) ->size, size))
#define header(is_bt, len_min, ret_op)

References ALLOC, header, memcpy(), memset(), NULL, p, TRYFREE, ZIP_ERRNO, ZIP_OK, and ZIP_PARAMERROR.

◆ zipWriteInFileInZip()

int ZEXPORT zipWriteInFileInZip ( zipFile  file,
const void *  buf,
unsigned int  len 
)

Definition at line 1402 of file zip.c.

1403 {
1404  zip64_internal* zi;
1405  int err=ZIP_OK;
1406 
1407  if (file == NULL)
1408  return ZIP_PARAMERROR;
1409  zi = (zip64_internal*)file;
1410 
1411  if (zi->in_opened_file_inzip == 0)
1412  return ZIP_PARAMERROR;
1413 
1414  zi->ci.crc32 = crc32(zi->ci.crc32,buf,(uInt)len);
1415 
1416 #ifdef HAVE_BZIP2
1417  if(zi->ci.method == Z_BZIP2ED && (!zi->ci.raw))
1418  {
1419  zi->ci.bstream.next_in = (void*)buf;
1420  zi->ci.bstream.avail_in = len;
1421  err = BZ_RUN_OK;
1422 
1423  while ((err==BZ_RUN_OK) && (zi->ci.bstream.avail_in>0))
1424  {
1425  if (zi->ci.bstream.avail_out == 0)
1426  {
1427  if (zip64FlushWriteBuffer(zi) == ZIP_ERRNO)
1428  err = ZIP_ERRNO;
1429  zi->ci.bstream.avail_out = (uInt)Z_BUFSIZE;
1430  zi->ci.bstream.next_out = (char*)zi->ci.buffered_data;
1431  }
1432 
1433 
1434  if(err != BZ_RUN_OK)
1435  break;
1436 
1437  if ((zi->ci.method == Z_BZIP2ED) && (!zi->ci.raw))
1438  {
1439  uLong uTotalOutBefore_lo = zi->ci.bstream.total_out_lo32;
1440 // uLong uTotalOutBefore_hi = zi->ci.bstream.total_out_hi32;
1441  err=BZ2_bzCompress(&zi->ci.bstream, BZ_RUN);
1442 
1443  zi->ci.pos_in_buffered_data += (uInt)(zi->ci.bstream.total_out_lo32 - uTotalOutBefore_lo) ;
1444  }
1445  }
1446 
1447  if(err == BZ_RUN_OK)
1448  err = ZIP_OK;
1449  }
1450  else
1451 #endif
1452  {
1453  zi->ci.stream.next_in = (Bytef*)buf;
1454  zi->ci.stream.avail_in = len;
1455 
1456  while ((err==ZIP_OK) && (zi->ci.stream.avail_in>0))
1457  {
1458  if (zi->ci.stream.avail_out == 0)
1459  {
1460  if (zip64FlushWriteBuffer(zi) == ZIP_ERRNO)
1461  err = ZIP_ERRNO;
1462  zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
1463  zi->ci.stream.next_out = zi->ci.buffered_data;
1464  }
1465 
1466 
1467  if(err != ZIP_OK)
1468  break;
1469 
1470  if ((zi->ci.method == Z_DEFLATED) && (!zi->ci.raw))
1471  {
1472  uLong uTotalOutBefore = zi->ci.stream.total_out;
1473  err=deflate(&zi->ci.stream, Z_NO_FLUSH);
1474  if(uTotalOutBefore > zi->ci.stream.total_out)
1475  {
1476  int bBreak = 0;
1477  bBreak++;
1478  }
1479 
1480  zi->ci.pos_in_buffered_data += (uInt)(zi->ci.stream.total_out - uTotalOutBefore) ;
1481  }
1482  else
1483  {
1484  uInt copy_this,i;
1485  if (zi->ci.stream.avail_in < zi->ci.stream.avail_out)
1486  copy_this = zi->ci.stream.avail_in;
1487  else
1488  copy_this = zi->ci.stream.avail_out;
1489 
1490  for (i = 0; i < copy_this; i++)
1491  *(((char*)zi->ci.stream.next_out)+i) =
1492  *(((const char*)zi->ci.stream.next_in)+i);
1493  {
1494  zi->ci.stream.avail_in -= copy_this;
1495  zi->ci.stream.avail_out-= copy_this;
1496  zi->ci.stream.next_in+= copy_this;
1497  zi->ci.stream.next_out+= copy_this;
1498  zi->ci.stream.total_in+= copy_this;
1499  zi->ci.stream.total_out+= copy_this;
1500  zi->ci.pos_in_buffered_data += copy_this;
1501  }
1502  }
1503  }// while(...)
1504  }
1505 
1506  return err;
1507 }
static bool bBreak
Definition: debug_bochs.c:9
z_const Bytef * next_in
Definition: zlib.h:87
Byte FAR Bytef
Definition: zconf.h:400
#define Z_NO_FLUSH
Definition: zlib.h:168

References z_stream_s::avail_in, z_stream_s::avail_out, bBreak, curfile64_info::buffered_data, zip64_internal::ci, curfile64_info::crc32, crc32(), deflate(), err, i, zip64_internal::in_opened_file_inzip, len, curfile64_info::method, z_stream_s::next_in, z_stream_s::next_out, NULL, curfile64_info::pos_in_buffered_data, curfile64_info::raw, curfile64_info::stream, z_stream_s::total_in, z_stream_s::total_out, Z_BUFSIZE, Z_BZIP2ED, Z_DEFLATED, Z_NO_FLUSH, zip64FlushWriteBuffer(), ZIP_ERRNO, ZIP_OK, and ZIP_PARAMERROR.

Referenced by main().

Variable Documentation

◆ zip_copyright

const char zip_copyright[] =" zip 1.01 Copyright 1998-2004 Gilles Vollant - http://www.winimage.com/zLibDll"

Definition at line 98 of file zip.c.