zip.c 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007
  1. /* zip.c -- IO on .zip files using zlib
  2. Version 1.1, February 14h, 2010
  3. part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html )
  4. Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html )
  5. Modifications for Zip64 support
  6. Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com )
  7. For more info read MiniZip_info.txt
  8. Changes
  9. Oct-2009 - Mathias Svensson - Remove old C style function prototypes
  10. Oct-2009 - Mathias Svensson - Added Zip64 Support when creating new file archives
  11. Oct-2009 - Mathias Svensson - Did some code cleanup and refactoring to get better overview of some functions.
  12. Oct-2009 - Mathias Svensson - Added zipRemoveExtraInfoBlock to strip extra field data from its ZIP64 data
  13. It is used when recreting zip archive with RAW when deleting items from a zip.
  14. ZIP64 data is automaticly added to items that needs it, and existing ZIP64 data need to be removed.
  15. Oct-2009 - Mathias Svensson - Added support for BZIP2 as compression mode (bzip2 lib is required)
  16. Jan-2010 - back to unzip and minizip 1.0 name scheme, with compatibility layer
  17. */
  18. #include <stdio.h>
  19. #include <stdlib.h>
  20. #include <string.h>
  21. #include <time.h>
  22. #include "zlib.h"
  23. #include "zip.h"
  24. #ifdef STDC
  25. # include <stddef.h>
  26. # include <string.h>
  27. # include <stdlib.h>
  28. #endif
  29. #ifdef NO_ERRNO_H
  30. extern int errno;
  31. #else
  32. # include <errno.h>
  33. #endif
  34. #ifndef local
  35. # define local static
  36. #endif
  37. /* compile with -Dlocal if your debugger can't find static symbols */
  38. #ifndef VERSIONMADEBY
  39. # define VERSIONMADEBY (0x0) /* platform depedent */
  40. #endif
  41. #ifndef Z_BUFSIZE
  42. #define Z_BUFSIZE (64*1024) //(16384)
  43. #endif
  44. #ifndef Z_MAXFILENAMEINZIP
  45. #define Z_MAXFILENAMEINZIP (256)
  46. #endif
  47. #ifndef ALLOC
  48. # define ALLOC(size) (malloc(size))
  49. #endif
  50. #ifndef TRYFREE
  51. # define TRYFREE(p) {if (p) free(p);}
  52. #endif
  53. /*
  54. #define SIZECENTRALDIRITEM (0x2e)
  55. #define SIZEZIPLOCALHEADER (0x1e)
  56. */
  57. /* I've found an old Unix (a SunOS 4.1.3_U1) without all SEEK_* defined.... */
  58. // NOT sure that this work on ALL platform
  59. #define MAKEULONG64(a, b) ((ZPOS64_T)(((unsigned long)(a)) | ((ZPOS64_T)((unsigned long)(b))) << 32))
  60. #ifndef SEEK_CUR
  61. #define SEEK_CUR 1
  62. #endif
  63. #ifndef SEEK_END
  64. #define SEEK_END 2
  65. #endif
  66. #ifndef SEEK_SET
  67. #define SEEK_SET 0
  68. #endif
  69. #ifndef DEF_MEM_LEVEL
  70. #if MAX_MEM_LEVEL >= 8
  71. # define DEF_MEM_LEVEL 8
  72. #else
  73. # define DEF_MEM_LEVEL MAX_MEM_LEVEL
  74. #endif
  75. #endif
  76. const char zip_copyright[] =" zip 1.01 Copyright 1998-2004 Gilles Vollant - http://www.winimage.com/zLibDll";
  77. #define SIZEDATA_INDATABLOCK (4096-(4*4))
  78. #define LOCALHEADERMAGIC (0x04034b50)
  79. #define CENTRALHEADERMAGIC (0x02014b50)
  80. #define ENDHEADERMAGIC (0x06054b50)
  81. #define ZIP64ENDHEADERMAGIC (0x6064b50)
  82. #define ZIP64ENDLOCHEADERMAGIC (0x7064b50)
  83. #define FLAG_LOCALHEADER_OFFSET (0x06)
  84. #define CRC_LOCALHEADER_OFFSET (0x0e)
  85. #define SIZECENTRALHEADER (0x2e) /* 46 */
  86. typedef struct linkedlist_datablock_internal_s
  87. {
  88. struct linkedlist_datablock_internal_s* next_datablock;
  89. uLong avail_in_this_block;
  90. uLong filled_in_this_block;
  91. uLong unused; /* for future use and alignement */
  92. unsigned char data[SIZEDATA_INDATABLOCK];
  93. } linkedlist_datablock_internal;
  94. typedef struct linkedlist_data_s
  95. {
  96. linkedlist_datablock_internal* first_block;
  97. linkedlist_datablock_internal* last_block;
  98. } linkedlist_data;
  99. typedef struct
  100. {
  101. z_stream stream; /* zLib stream structure for inflate */
  102. #ifdef HAVE_BZIP2
  103. bz_stream bstream; /* bzLib stream structure for bziped */
  104. #endif
  105. int stream_initialised; /* 1 is stream is initialised */
  106. uInt pos_in_buffered_data; /* last written byte in buffered_data */
  107. ZPOS64_T pos_local_header; /* offset of the local header of the file
  108. currenty writing */
  109. char* central_header; /* central header data for the current file */
  110. uLong size_centralExtra;
  111. uLong size_centralheader; /* size of the central header for cur file */
  112. uLong size_centralExtraFree; /* Extra bytes allocated to the centralheader but that are not used */
  113. uLong flag; /* flag of the file currently writing */
  114. int method; /* compression method of file currenty wr.*/
  115. int raw; /* 1 for directly writing raw data */
  116. Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/
  117. uLong dosDate;
  118. uLong crc32;
  119. int encrypt;
  120. int zip64; /* Add ZIP64 extened information in the extra field */
  121. ZPOS64_T pos_zip64extrainfo;
  122. ZPOS64_T totalCompressedData;
  123. ZPOS64_T totalUncompressedData;
  124. #ifndef NOCRYPT
  125. unsigned long keys[3]; /* keys defining the pseudo-random sequence */
  126. const z_crc_t* pcrc_32_tab;
  127. int crypt_header_size;
  128. #endif
  129. } curfile64_info;
  130. typedef struct
  131. {
  132. zlib_filefunc64_32_def z_filefunc;
  133. voidpf filestream; /* io structore of the zipfile */
  134. linkedlist_data central_dir;/* datablock with central dir in construction*/
  135. int in_opened_file_inzip; /* 1 if a file in the zip is currently writ.*/
  136. curfile64_info ci; /* info on the file curretly writing */
  137. ZPOS64_T begin_pos; /* position of the beginning of the zipfile */
  138. ZPOS64_T add_position_when_writting_offset;
  139. ZPOS64_T number_entry;
  140. #ifndef NO_ADDFILEINEXISTINGZIP
  141. char *globalcomment;
  142. #endif
  143. } zip64_internal;
  144. #ifndef NOCRYPT
  145. #define INCLUDECRYPTINGCODE_IFCRYPTALLOWED
  146. #include "crypt.h"
  147. #endif
  148. local linkedlist_datablock_internal* allocate_new_datablock()
  149. {
  150. linkedlist_datablock_internal* ldi;
  151. ldi = (linkedlist_datablock_internal*)
  152. ALLOC(sizeof(linkedlist_datablock_internal));
  153. if (ldi!=NULL)
  154. {
  155. ldi->next_datablock = NULL ;
  156. ldi->filled_in_this_block = 0 ;
  157. ldi->avail_in_this_block = SIZEDATA_INDATABLOCK ;
  158. }
  159. return ldi;
  160. }
  161. local void free_datablock(linkedlist_datablock_internal* ldi)
  162. {
  163. while (ldi!=NULL)
  164. {
  165. linkedlist_datablock_internal* ldinext = ldi->next_datablock;
  166. TRYFREE(ldi);
  167. ldi = ldinext;
  168. }
  169. }
  170. local void init_linkedlist(linkedlist_data* ll)
  171. {
  172. ll->first_block = ll->last_block = NULL;
  173. }
  174. local void free_linkedlist(linkedlist_data* ll)
  175. {
  176. free_datablock(ll->first_block);
  177. ll->first_block = ll->last_block = NULL;
  178. }
  179. local int add_data_in_datablock(linkedlist_data* ll, const void* buf, uLong len)
  180. {
  181. linkedlist_datablock_internal* ldi;
  182. const unsigned char* from_copy;
  183. if (ll==NULL)
  184. return ZIP_INTERNALERROR;
  185. if (ll->last_block == NULL)
  186. {
  187. ll->first_block = ll->last_block = allocate_new_datablock();
  188. if (ll->first_block == NULL)
  189. return ZIP_INTERNALERROR;
  190. }
  191. ldi = ll->last_block;
  192. from_copy = (unsigned char*)buf;
  193. while (len>0)
  194. {
  195. uInt copy_this;
  196. uInt i;
  197. unsigned char* to_copy;
  198. if (ldi->avail_in_this_block==0)
  199. {
  200. ldi->next_datablock = allocate_new_datablock();
  201. if (ldi->next_datablock == NULL)
  202. return ZIP_INTERNALERROR;
  203. ldi = ldi->next_datablock ;
  204. ll->last_block = ldi;
  205. }
  206. if (ldi->avail_in_this_block < len)
  207. copy_this = (uInt)ldi->avail_in_this_block;
  208. else
  209. copy_this = (uInt)len;
  210. to_copy = &(ldi->data[ldi->filled_in_this_block]);
  211. for (i=0;i<copy_this;i++)
  212. *(to_copy+i)=*(from_copy+i);
  213. ldi->filled_in_this_block += copy_this;
  214. ldi->avail_in_this_block -= copy_this;
  215. from_copy += copy_this ;
  216. len -= copy_this;
  217. }
  218. return ZIP_OK;
  219. }
  220. /****************************************************************************/
  221. #ifndef NO_ADDFILEINEXISTINGZIP
  222. /* ===========================================================================
  223. Inputs a long in LSB order to the given file
  224. nbByte == 1, 2 ,4 or 8 (byte, short or long, ZPOS64_T)
  225. */
  226. local int zip64local_putValue OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, ZPOS64_T x, int nbByte));
  227. local int zip64local_putValue (const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, ZPOS64_T x, int nbByte)
  228. {
  229. unsigned char buf[8];
  230. int n;
  231. for (n = 0; n < nbByte; n++)
  232. {
  233. buf[n] = (unsigned char)(x & 0xff);
  234. x >>= 8;
  235. }
  236. if (x != 0)
  237. { /* data overflow - hack for ZIP64 (X Roche) */
  238. for (n = 0; n < nbByte; n++)
  239. {
  240. buf[n] = 0xff;
  241. }
  242. }
  243. if (ZWRITE64(*pzlib_filefunc_def,filestream,buf,nbByte)!=(uLong)nbByte)
  244. return ZIP_ERRNO;
  245. else
  246. return ZIP_OK;
  247. }
  248. local void zip64local_putValue_inmemory OF((void* dest, ZPOS64_T x, int nbByte));
  249. local void zip64local_putValue_inmemory (void* dest, ZPOS64_T x, int nbByte)
  250. {
  251. unsigned char* buf=(unsigned char*)dest;
  252. int n;
  253. for (n = 0; n < nbByte; n++) {
  254. buf[n] = (unsigned char)(x & 0xff);
  255. x >>= 8;
  256. }
  257. if (x != 0)
  258. { /* data overflow - hack for ZIP64 */
  259. for (n = 0; n < nbByte; n++)
  260. {
  261. buf[n] = 0xff;
  262. }
  263. }
  264. }
  265. /****************************************************************************/
  266. local uLong zip64local_TmzDateToDosDate(const tm_zip* ptm)
  267. {
  268. uLong year = (uLong)ptm->tm_year;
  269. if (year>=1980)
  270. year-=1980;
  271. else if (year>=80)
  272. year-=80;
  273. return
  274. (uLong) (((ptm->tm_mday) + (32 * (ptm->tm_mon+1)) + (512 * year)) << 16) |
  275. ((ptm->tm_sec/2) + (32* ptm->tm_min) + (2048 * (uLong)ptm->tm_hour));
  276. }
  277. /****************************************************************************/
  278. local int zip64local_getByte OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, int *pi));
  279. local int zip64local_getByte(const zlib_filefunc64_32_def* pzlib_filefunc_def,voidpf filestream,int* pi)
  280. {
  281. unsigned char c;
  282. int err = (int)ZREAD64(*pzlib_filefunc_def,filestream,&c,1);
  283. if (err==1)
  284. {
  285. *pi = (int)c;
  286. return ZIP_OK;
  287. }
  288. else
  289. {
  290. if (ZERROR64(*pzlib_filefunc_def,filestream))
  291. return ZIP_ERRNO;
  292. else
  293. return ZIP_EOF;
  294. }
  295. }
  296. /* ===========================================================================
  297. Reads a long in LSB order from the given gz_stream. Sets
  298. */
  299. local int zip64local_getShort OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong *pX));
  300. local int zip64local_getShort (const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong* pX)
  301. {
  302. uLong x ;
  303. int i = 0;
  304. int err;
  305. err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
  306. x = (uLong)i;
  307. if (err==ZIP_OK)
  308. err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
  309. x += ((uLong)i)<<8;
  310. if (err==ZIP_OK)
  311. *pX = x;
  312. else
  313. *pX = 0;
  314. return err;
  315. }
  316. local int zip64local_getLong OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong *pX));
  317. local int zip64local_getLong (const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, uLong* pX)
  318. {
  319. uLong x ;
  320. int i = 0;
  321. int err;
  322. err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
  323. x = (uLong)i;
  324. if (err==ZIP_OK)
  325. err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
  326. x += ((uLong)i)<<8;
  327. if (err==ZIP_OK)
  328. err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
  329. x += ((uLong)i)<<16;
  330. if (err==ZIP_OK)
  331. err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
  332. x += ((uLong)i)<<24;
  333. if (err==ZIP_OK)
  334. *pX = x;
  335. else
  336. *pX = 0;
  337. return err;
  338. }
  339. local int zip64local_getLong64 OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, ZPOS64_T *pX));
  340. local int zip64local_getLong64 (const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream, ZPOS64_T *pX)
  341. {
  342. ZPOS64_T x;
  343. int i = 0;
  344. int err;
  345. err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
  346. x = (ZPOS64_T)i;
  347. if (err==ZIP_OK)
  348. err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
  349. x += ((ZPOS64_T)i)<<8;
  350. if (err==ZIP_OK)
  351. err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
  352. x += ((ZPOS64_T)i)<<16;
  353. if (err==ZIP_OK)
  354. err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
  355. x += ((ZPOS64_T)i)<<24;
  356. if (err==ZIP_OK)
  357. err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
  358. x += ((ZPOS64_T)i)<<32;
  359. if (err==ZIP_OK)
  360. err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
  361. x += ((ZPOS64_T)i)<<40;
  362. if (err==ZIP_OK)
  363. err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
  364. x += ((ZPOS64_T)i)<<48;
  365. if (err==ZIP_OK)
  366. err = zip64local_getByte(pzlib_filefunc_def,filestream,&i);
  367. x += ((ZPOS64_T)i)<<56;
  368. if (err==ZIP_OK)
  369. *pX = x;
  370. else
  371. *pX = 0;
  372. return err;
  373. }
  374. #ifndef BUFREADCOMMENT
  375. #define BUFREADCOMMENT (0x400)
  376. #endif
  377. /*
  378. Locate the Central directory of a zipfile (at the end, just before
  379. the global comment)
  380. */
  381. local ZPOS64_T zip64local_SearchCentralDir OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream));
  382. local ZPOS64_T zip64local_SearchCentralDir(const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream)
  383. {
  384. unsigned char* buf;
  385. ZPOS64_T uSizeFile;
  386. ZPOS64_T uBackRead;
  387. ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */
  388. ZPOS64_T uPosFound=0;
  389. if (ZSEEK64(*pzlib_filefunc_def,filestream,0,ZLIB_FILEFUNC_SEEK_END) != 0)
  390. return 0;
  391. uSizeFile = ZTELL64(*pzlib_filefunc_def,filestream);
  392. if (uMaxBack>uSizeFile)
  393. uMaxBack = uSizeFile;
  394. buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
  395. if (buf==NULL)
  396. return 0;
  397. uBackRead = 4;
  398. while (uBackRead<uMaxBack)
  399. {
  400. uLong uReadSize;
  401. ZPOS64_T uReadPos ;
  402. int i;
  403. if (uBackRead+BUFREADCOMMENT>uMaxBack)
  404. uBackRead = uMaxBack;
  405. else
  406. uBackRead+=BUFREADCOMMENT;
  407. uReadPos = uSizeFile-uBackRead ;
  408. uReadSize = ((BUFREADCOMMENT+4) < (uSizeFile-uReadPos)) ?
  409. (BUFREADCOMMENT+4) : (uLong)(uSizeFile-uReadPos);
  410. if (ZSEEK64(*pzlib_filefunc_def,filestream,uReadPos,ZLIB_FILEFUNC_SEEK_SET)!=0)
  411. break;
  412. if (ZREAD64(*pzlib_filefunc_def,filestream,buf,uReadSize)!=uReadSize)
  413. break;
  414. for (i=(int)uReadSize-3; (i--)>0;)
  415. if (((*(buf+i))==0x50) && ((*(buf+i+1))==0x4b) &&
  416. ((*(buf+i+2))==0x05) && ((*(buf+i+3))==0x06))
  417. {
  418. uPosFound = uReadPos+i;
  419. break;
  420. }
  421. if (uPosFound!=0)
  422. break;
  423. }
  424. TRYFREE(buf);
  425. return uPosFound;
  426. }
  427. /*
  428. Locate the End of Zip64 Central directory locator and from there find the CD of a zipfile (at the end, just before
  429. the global comment)
  430. */
  431. local ZPOS64_T zip64local_SearchCentralDir64 OF((const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream));
  432. local ZPOS64_T zip64local_SearchCentralDir64(const zlib_filefunc64_32_def* pzlib_filefunc_def, voidpf filestream)
  433. {
  434. unsigned char* buf;
  435. ZPOS64_T uSizeFile;
  436. ZPOS64_T uBackRead;
  437. ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */
  438. ZPOS64_T uPosFound=0;
  439. uLong uL;
  440. ZPOS64_T relativeOffset;
  441. if (ZSEEK64(*pzlib_filefunc_def,filestream,0,ZLIB_FILEFUNC_SEEK_END) != 0)
  442. return 0;
  443. uSizeFile = ZTELL64(*pzlib_filefunc_def,filestream);
  444. if (uMaxBack>uSizeFile)
  445. uMaxBack = uSizeFile;
  446. buf = (unsigned char*)ALLOC(BUFREADCOMMENT+4);
  447. if (buf==NULL)
  448. return 0;
  449. uBackRead = 4;
  450. while (uBackRead<uMaxBack)
  451. {
  452. uLong uReadSize;
  453. ZPOS64_T uReadPos;
  454. int i;
  455. if (uBackRead+BUFREADCOMMENT>uMaxBack)
  456. uBackRead = uMaxBack;
  457. else
  458. uBackRead+=BUFREADCOMMENT;
  459. uReadPos = uSizeFile-uBackRead ;
  460. uReadSize = ((BUFREADCOMMENT+4) < (uSizeFile-uReadPos)) ?
  461. (BUFREADCOMMENT+4) : (uLong)(uSizeFile-uReadPos);
  462. if (ZSEEK64(*pzlib_filefunc_def,filestream,uReadPos,ZLIB_FILEFUNC_SEEK_SET)!=0)
  463. break;
  464. if (ZREAD64(*pzlib_filefunc_def,filestream,buf,uReadSize)!=uReadSize)
  465. break;
  466. for (i=(int)uReadSize-3; (i--)>0;)
  467. {
  468. // Signature "0x07064b50" Zip64 end of central directory locater
  469. if (((*(buf+i))==0x50) && ((*(buf+i+1))==0x4b) && ((*(buf+i+2))==0x06) && ((*(buf+i+3))==0x07))
  470. {
  471. uPosFound = uReadPos+i;
  472. break;
  473. }
  474. }
  475. if (uPosFound!=0)
  476. break;
  477. }
  478. TRYFREE(buf);
  479. if (uPosFound == 0)
  480. return 0;
  481. /* Zip64 end of central directory locator */
  482. if (ZSEEK64(*pzlib_filefunc_def,filestream, uPosFound,ZLIB_FILEFUNC_SEEK_SET)!=0)
  483. return 0;
  484. /* the signature, already checked */
  485. if (zip64local_getLong(pzlib_filefunc_def,filestream,&uL)!=ZIP_OK)
  486. return 0;
  487. /* number of the disk with the start of the zip64 end of central directory */
  488. if (zip64local_getLong(pzlib_filefunc_def,filestream,&uL)!=ZIP_OK)
  489. return 0;
  490. if (uL != 0)
  491. return 0;
  492. /* relative offset of the zip64 end of central directory record */
  493. if (zip64local_getLong64(pzlib_filefunc_def,filestream,&relativeOffset)!=ZIP_OK)
  494. return 0;
  495. /* total number of disks */
  496. if (zip64local_getLong(pzlib_filefunc_def,filestream,&uL)!=ZIP_OK)
  497. return 0;
  498. if (uL != 1)
  499. return 0;
  500. /* Goto Zip64 end of central directory record */
  501. if (ZSEEK64(*pzlib_filefunc_def,filestream, relativeOffset,ZLIB_FILEFUNC_SEEK_SET)!=0)
  502. return 0;
  503. /* the signature */
  504. if (zip64local_getLong(pzlib_filefunc_def,filestream,&uL)!=ZIP_OK)
  505. return 0;
  506. if (uL != 0x06064b50) // signature of 'Zip64 end of central directory'
  507. return 0;
  508. return relativeOffset;
  509. }
  510. int LoadCentralDirectoryRecord(zip64_internal* pziinit)
  511. {
  512. int err=ZIP_OK;
  513. ZPOS64_T byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/
  514. ZPOS64_T size_central_dir; /* size of the central directory */
  515. ZPOS64_T offset_central_dir; /* offset of start of central directory */
  516. ZPOS64_T central_pos;
  517. uLong uL;
  518. uLong number_disk; /* number of the current dist, used for
  519. spaning ZIP, unsupported, always 0*/
  520. uLong number_disk_with_CD; /* number the the disk with central dir, used
  521. for spaning ZIP, unsupported, always 0*/
  522. ZPOS64_T number_entry;
  523. ZPOS64_T number_entry_CD; /* total number of entries in
  524. the central dir
  525. (same than number_entry on nospan) */
  526. uLong VersionMadeBy;
  527. uLong VersionNeeded;
  528. uLong size_comment;
  529. int hasZIP64Record = 0;
  530. // check first if we find a ZIP64 record
  531. central_pos = zip64local_SearchCentralDir64(&pziinit->z_filefunc,pziinit->filestream);
  532. if(central_pos > 0)
  533. {
  534. hasZIP64Record = 1;
  535. }
  536. else if(central_pos == 0)
  537. {
  538. central_pos = zip64local_SearchCentralDir(&pziinit->z_filefunc,pziinit->filestream);
  539. }
  540. /* disable to allow appending to empty ZIP archive
  541. if (central_pos==0)
  542. err=ZIP_ERRNO;
  543. */
  544. if(hasZIP64Record)
  545. {
  546. ZPOS64_T sizeEndOfCentralDirectory;
  547. if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, central_pos, ZLIB_FILEFUNC_SEEK_SET) != 0)
  548. err=ZIP_ERRNO;
  549. /* the signature, already checked */
  550. if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream,&uL)!=ZIP_OK)
  551. err=ZIP_ERRNO;
  552. /* size of zip64 end of central directory record */
  553. if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream, &sizeEndOfCentralDirectory)!=ZIP_OK)
  554. err=ZIP_ERRNO;
  555. /* version made by */
  556. if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &VersionMadeBy)!=ZIP_OK)
  557. err=ZIP_ERRNO;
  558. /* version needed to extract */
  559. if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &VersionNeeded)!=ZIP_OK)
  560. err=ZIP_ERRNO;
  561. /* number of this disk */
  562. if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream,&number_disk)!=ZIP_OK)
  563. err=ZIP_ERRNO;
  564. /* number of the disk with the start of the central directory */
  565. if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream,&number_disk_with_CD)!=ZIP_OK)
  566. err=ZIP_ERRNO;
  567. /* total number of entries in the central directory on this disk */
  568. if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream, &number_entry)!=ZIP_OK)
  569. err=ZIP_ERRNO;
  570. /* total number of entries in the central directory */
  571. if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream,&number_entry_CD)!=ZIP_OK)
  572. err=ZIP_ERRNO;
  573. if ((number_entry_CD!=number_entry) || (number_disk_with_CD!=0) || (number_disk!=0))
  574. err=ZIP_BADZIPFILE;
  575. /* size of the central directory */
  576. if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream,&size_central_dir)!=ZIP_OK)
  577. err=ZIP_ERRNO;
  578. /* offset of start of central directory with respect to the
  579. starting disk number */
  580. if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream,&offset_central_dir)!=ZIP_OK)
  581. err=ZIP_ERRNO;
  582. // TODO..
  583. // read the comment from the standard central header.
  584. size_comment = 0;
  585. }
  586. else
  587. {
  588. // Read End of central Directory info
  589. if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, central_pos,ZLIB_FILEFUNC_SEEK_SET)!=0)
  590. err=ZIP_ERRNO;
  591. /* the signature, already checked */
  592. if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream,&uL)!=ZIP_OK)
  593. err=ZIP_ERRNO;
  594. /* number of this disk */
  595. if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream,&number_disk)!=ZIP_OK)
  596. err=ZIP_ERRNO;
  597. /* number of the disk with the start of the central directory */
  598. if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream,&number_disk_with_CD)!=ZIP_OK)
  599. err=ZIP_ERRNO;
  600. /* total number of entries in the central dir on this disk */
  601. number_entry = 0;
  602. if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &uL)!=ZIP_OK)
  603. err=ZIP_ERRNO;
  604. else
  605. number_entry = uL;
  606. /* total number of entries in the central dir */
  607. number_entry_CD = 0;
  608. if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &uL)!=ZIP_OK)
  609. err=ZIP_ERRNO;
  610. else
  611. number_entry_CD = uL;
  612. if ((number_entry_CD!=number_entry) || (number_disk_with_CD!=0) || (number_disk!=0))
  613. err=ZIP_BADZIPFILE;
  614. /* size of the central directory */
  615. size_central_dir = 0;
  616. if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream, &uL)!=ZIP_OK)
  617. err=ZIP_ERRNO;
  618. else
  619. size_central_dir = uL;
  620. /* offset of start of central directory with respect to the starting disk number */
  621. offset_central_dir = 0;
  622. if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream, &uL)!=ZIP_OK)
  623. err=ZIP_ERRNO;
  624. else
  625. offset_central_dir = uL;
  626. /* zipfile global comment length */
  627. if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &size_comment)!=ZIP_OK)
  628. err=ZIP_ERRNO;
  629. }
  630. if ((central_pos<offset_central_dir+size_central_dir) &&
  631. (err==ZIP_OK))
  632. err=ZIP_BADZIPFILE;
  633. if (err!=ZIP_OK)
  634. {
  635. ZCLOSE64(pziinit->z_filefunc, pziinit->filestream);
  636. return ZIP_ERRNO;
  637. }
  638. if (size_comment>0)
  639. {
  640. pziinit->globalcomment = (char*)ALLOC(size_comment+1);
  641. if (pziinit->globalcomment)
  642. {
  643. size_comment = ZREAD64(pziinit->z_filefunc, pziinit->filestream, pziinit->globalcomment,size_comment);
  644. pziinit->globalcomment[size_comment]=0;
  645. }
  646. }
  647. byte_before_the_zipfile = central_pos - (offset_central_dir+size_central_dir);
  648. pziinit->add_position_when_writting_offset = byte_before_the_zipfile;
  649. {
  650. ZPOS64_T size_central_dir_to_read = size_central_dir;
  651. size_t buf_size = SIZEDATA_INDATABLOCK;
  652. void* buf_read = (void*)ALLOC(buf_size);
  653. if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, offset_central_dir + byte_before_the_zipfile, ZLIB_FILEFUNC_SEEK_SET) != 0)
  654. err=ZIP_ERRNO;
  655. while ((size_central_dir_to_read>0) && (err==ZIP_OK))
  656. {
  657. ZPOS64_T read_this = SIZEDATA_INDATABLOCK;
  658. if (read_this > size_central_dir_to_read)
  659. read_this = size_central_dir_to_read;
  660. if (ZREAD64(pziinit->z_filefunc, pziinit->filestream,buf_read,(uLong)read_this) != read_this)
  661. err=ZIP_ERRNO;
  662. if (err==ZIP_OK)
  663. err = add_data_in_datablock(&pziinit->central_dir,buf_read, (uLong)read_this);
  664. size_central_dir_to_read-=read_this;
  665. }
  666. TRYFREE(buf_read);
  667. }
  668. pziinit->begin_pos = byte_before_the_zipfile;
  669. pziinit->number_entry = number_entry_CD;
  670. if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, offset_central_dir+byte_before_the_zipfile,ZLIB_FILEFUNC_SEEK_SET) != 0)
  671. err=ZIP_ERRNO;
  672. return err;
  673. }
  674. #endif /* !NO_ADDFILEINEXISTINGZIP*/
  675. /************************************************************/
  676. extern zipFile ZEXPORT zipOpen3 (const void *pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_32_def* pzlib_filefunc64_32_def)
  677. {
  678. zip64_internal ziinit;
  679. zip64_internal* zi;
  680. int err=ZIP_OK;
  681. ziinit.z_filefunc.zseek32_file = NULL;
  682. ziinit.z_filefunc.ztell32_file = NULL;
  683. if (pzlib_filefunc64_32_def==NULL)
  684. fill_fopen64_filefunc(&ziinit.z_filefunc.zfile_func64);
  685. else
  686. ziinit.z_filefunc = *pzlib_filefunc64_32_def;
  687. ziinit.filestream = ZOPEN64(ziinit.z_filefunc,
  688. pathname,
  689. (append == APPEND_STATUS_CREATE) ?
  690. (ZLIB_FILEFUNC_MODE_READ | ZLIB_FILEFUNC_MODE_WRITE | ZLIB_FILEFUNC_MODE_CREATE) :
  691. (ZLIB_FILEFUNC_MODE_READ | ZLIB_FILEFUNC_MODE_WRITE | ZLIB_FILEFUNC_MODE_EXISTING));
  692. if (ziinit.filestream == NULL)
  693. return NULL;
  694. if (append == APPEND_STATUS_CREATEAFTER)
  695. ZSEEK64(ziinit.z_filefunc,ziinit.filestream,0,SEEK_END);
  696. ziinit.begin_pos = ZTELL64(ziinit.z_filefunc,ziinit.filestream);
  697. ziinit.in_opened_file_inzip = 0;
  698. ziinit.ci.stream_initialised = 0;
  699. ziinit.number_entry = 0;
  700. ziinit.add_position_when_writting_offset = 0;
  701. init_linkedlist(&(ziinit.central_dir));
  702. zi = (zip64_internal*)ALLOC(sizeof(zip64_internal));
  703. if (zi==NULL)
  704. {
  705. ZCLOSE64(ziinit.z_filefunc,ziinit.filestream);
  706. return NULL;
  707. }
  708. /* now we add file in a zipfile */
  709. # ifndef NO_ADDFILEINEXISTINGZIP
  710. ziinit.globalcomment = NULL;
  711. if (append == APPEND_STATUS_ADDINZIP)
  712. {
  713. // Read and Cache Central Directory Records
  714. err = LoadCentralDirectoryRecord(&ziinit);
  715. }
  716. if (globalcomment)
  717. {
  718. *globalcomment = ziinit.globalcomment;
  719. }
  720. # endif /* !NO_ADDFILEINEXISTINGZIP*/
  721. if (err != ZIP_OK)
  722. {
  723. # ifndef NO_ADDFILEINEXISTINGZIP
  724. TRYFREE(ziinit.globalcomment);
  725. # endif /* !NO_ADDFILEINEXISTINGZIP*/
  726. TRYFREE(zi);
  727. return NULL;
  728. }
  729. else
  730. {
  731. *zi = ziinit;
  732. return (zipFile)zi;
  733. }
  734. }
  735. extern zipFile ZEXPORT zipOpen2 (const char *pathname, int append, zipcharpc* globalcomment, zlib_filefunc_def* pzlib_filefunc32_def)
  736. {
  737. if (pzlib_filefunc32_def != NULL)
  738. {
  739. zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
  740. fill_zlib_filefunc64_32_def_from_filefunc32(&zlib_filefunc64_32_def_fill,pzlib_filefunc32_def);
  741. return zipOpen3(pathname, append, globalcomment, &zlib_filefunc64_32_def_fill);
  742. }
  743. else
  744. return zipOpen3(pathname, append, globalcomment, NULL);
  745. }
  746. extern zipFile ZEXPORT zipOpen2_64 (const void *pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_def* pzlib_filefunc_def)
  747. {
  748. if (pzlib_filefunc_def != NULL)
  749. {
  750. zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
  751. zlib_filefunc64_32_def_fill.zfile_func64 = *pzlib_filefunc_def;
  752. zlib_filefunc64_32_def_fill.ztell32_file = NULL;
  753. zlib_filefunc64_32_def_fill.zseek32_file = NULL;
  754. return zipOpen3(pathname, append, globalcomment, &zlib_filefunc64_32_def_fill);
  755. }
  756. else
  757. return zipOpen3(pathname, append, globalcomment, NULL);
  758. }
  759. extern zipFile ZEXPORT zipOpen (const char* pathname, int append)
  760. {
  761. return zipOpen3((const void*)pathname,append,NULL,NULL);
  762. }
  763. extern zipFile ZEXPORT zipOpen64 (const void* pathname, int append)
  764. {
  765. return zipOpen3(pathname,append,NULL,NULL);
  766. }
  767. int Write_LocalFileHeader(zip64_internal* zi, const char* filename, uInt size_extrafield_local, const void* extrafield_local)
  768. {
  769. /* write the local header */
  770. int err;
  771. uInt size_filename = (uInt)strlen(filename);
  772. uInt size_extrafield = size_extrafield_local;
  773. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)LOCALHEADERMAGIC, 4);
  774. if (err==ZIP_OK)
  775. {
  776. if(zi->ci.zip64)
  777. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)45,2);/* version needed to extract */
  778. else
  779. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)20,2);/* version needed to extract */
  780. }
  781. if (err==ZIP_OK)
  782. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.flag,2);
  783. if (err==ZIP_OK)
  784. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.method,2);
  785. if (err==ZIP_OK)
  786. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.dosDate,4);
  787. // CRC / Compressed size / Uncompressed size will be filled in later and rewritten later
  788. if (err==ZIP_OK)
  789. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4); /* crc 32, unknown */
  790. if (err==ZIP_OK)
  791. {
  792. if(zi->ci.zip64)
  793. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0xFFFFFFFF,4); /* compressed size, unknown */
  794. else
  795. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4); /* compressed size, unknown */
  796. }
  797. if (err==ZIP_OK)
  798. {
  799. if(zi->ci.zip64)
  800. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0xFFFFFFFF,4); /* uncompressed size, unknown */
  801. else
  802. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4); /* uncompressed size, unknown */
  803. }
  804. if (err==ZIP_OK)
  805. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)size_filename,2);
  806. if(zi->ci.zip64)
  807. {
  808. size_extrafield += 20;
  809. }
  810. if (err==ZIP_OK)
  811. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)size_extrafield,2);
  812. if ((err==ZIP_OK) && (size_filename > 0))
  813. {
  814. if (ZWRITE64(zi->z_filefunc,zi->filestream,filename,size_filename)!=size_filename)
  815. err = ZIP_ERRNO;
  816. }
  817. if ((err==ZIP_OK) && (size_extrafield_local > 0))
  818. {
  819. if (ZWRITE64(zi->z_filefunc, zi->filestream, extrafield_local, size_extrafield_local) != size_extrafield_local)
  820. err = ZIP_ERRNO;
  821. }
  822. if ((err==ZIP_OK) && (zi->ci.zip64))
  823. {
  824. // write the Zip64 extended info
  825. short HeaderID = 1;
  826. short DataSize = 16;
  827. ZPOS64_T CompressedSize = 0;
  828. ZPOS64_T UncompressedSize = 0;
  829. // Remember position of Zip64 extended info for the local file header. (needed when we update size after done with file)
  830. zi->ci.pos_zip64extrainfo = ZTELL64(zi->z_filefunc,zi->filestream);
  831. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (short)HeaderID,2);
  832. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (short)DataSize,2);
  833. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (ZPOS64_T)UncompressedSize,8);
  834. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (ZPOS64_T)CompressedSize,8);
  835. }
  836. return err;
  837. }
  838. /*
  839. NOTE.
  840. When writing RAW the ZIP64 extended information in extrafield_local and extrafield_global needs to be stripped
  841. before calling this function it can be done with zipRemoveExtraInfoBlock
  842. It is not done here because then we need to realloc a new buffer since parameters are 'const' and I want to minimize
  843. unnecessary allocations.
  844. */
  845. extern int ZEXPORT zipOpenNewFileInZip4_64 (zipFile file, const char* filename, const zip_fileinfo* zipfi,
  846. const void* extrafield_local, uInt size_extrafield_local,
  847. const void* extrafield_global, uInt size_extrafield_global,
  848. const char* comment, int method, int level, int raw,
  849. int windowBits,int memLevel, int strategy,
  850. const char* password, uLong crcForCrypting,
  851. uLong versionMadeBy, uLong flagBase, int zip64)
  852. {
  853. zip64_internal* zi;
  854. uInt size_filename;
  855. uInt size_comment;
  856. uInt i;
  857. int err = ZIP_OK;
  858. # ifdef NOCRYPT
  859. (crcForCrypting);
  860. if (password != NULL)
  861. return ZIP_PARAMERROR;
  862. # endif
  863. if (file == NULL)
  864. return ZIP_PARAMERROR;
  865. #ifdef HAVE_BZIP2
  866. if ((method!=0) && (method!=Z_DEFLATED) && (method!=Z_BZIP2ED))
  867. return ZIP_PARAMERROR;
  868. #else
  869. if ((method!=0) && (method!=Z_DEFLATED))
  870. return ZIP_PARAMERROR;
  871. #endif
  872. zi = (zip64_internal*)file;
  873. if (zi->in_opened_file_inzip == 1)
  874. {
  875. err = zipCloseFileInZip (file);
  876. if (err != ZIP_OK)
  877. return err;
  878. }
  879. if (filename==NULL)
  880. filename="-";
  881. if (comment==NULL)
  882. size_comment = 0;
  883. else
  884. size_comment = (uInt)strlen(comment);
  885. size_filename = (uInt)strlen(filename);
  886. if (zipfi == NULL)
  887. zi->ci.dosDate = 0;
  888. else
  889. {
  890. if (zipfi->dosDate != 0)
  891. zi->ci.dosDate = zipfi->dosDate;
  892. else
  893. zi->ci.dosDate = zip64local_TmzDateToDosDate(&zipfi->tmz_date);
  894. }
  895. zi->ci.flag = flagBase;
  896. if ((level==8) || (level==9))
  897. zi->ci.flag |= 2;
  898. if (level==2)
  899. zi->ci.flag |= 4;
  900. if (level==1)
  901. zi->ci.flag |= 6;
  902. if (password != NULL)
  903. zi->ci.flag |= 1;
  904. zi->ci.crc32 = 0;
  905. zi->ci.method = method;
  906. zi->ci.encrypt = 0;
  907. zi->ci.stream_initialised = 0;
  908. zi->ci.pos_in_buffered_data = 0;
  909. zi->ci.raw = raw;
  910. zi->ci.pos_local_header = ZTELL64(zi->z_filefunc,zi->filestream);
  911. zi->ci.size_centralheader = SIZECENTRALHEADER + size_filename + size_extrafield_global + size_comment;
  912. zi->ci.size_centralExtraFree = 32; // Extra space we have reserved in case we need to add ZIP64 extra info data
  913. zi->ci.central_header = (char*)ALLOC((uInt)zi->ci.size_centralheader + zi->ci.size_centralExtraFree);
  914. zi->ci.size_centralExtra = size_extrafield_global;
  915. zip64local_putValue_inmemory(zi->ci.central_header,(uLong)CENTRALHEADERMAGIC,4);
  916. /* version info */
  917. zip64local_putValue_inmemory(zi->ci.central_header+4,(uLong)versionMadeBy,2);
  918. zip64local_putValue_inmemory(zi->ci.central_header+6,(uLong)20,2);
  919. zip64local_putValue_inmemory(zi->ci.central_header+8,(uLong)zi->ci.flag,2);
  920. zip64local_putValue_inmemory(zi->ci.central_header+10,(uLong)zi->ci.method,2);
  921. zip64local_putValue_inmemory(zi->ci.central_header+12,(uLong)zi->ci.dosDate,4);
  922. zip64local_putValue_inmemory(zi->ci.central_header+16,(uLong)0,4); /*crc*/
  923. zip64local_putValue_inmemory(zi->ci.central_header+20,(uLong)0,4); /*compr size*/
  924. zip64local_putValue_inmemory(zi->ci.central_header+24,(uLong)0,4); /*uncompr size*/
  925. zip64local_putValue_inmemory(zi->ci.central_header+28,(uLong)size_filename,2);
  926. zip64local_putValue_inmemory(zi->ci.central_header+30,(uLong)size_extrafield_global,2);
  927. zip64local_putValue_inmemory(zi->ci.central_header+32,(uLong)size_comment,2);
  928. zip64local_putValue_inmemory(zi->ci.central_header+34,(uLong)0,2); /*disk nm start*/
  929. if (zipfi==NULL)
  930. zip64local_putValue_inmemory(zi->ci.central_header+36,(uLong)0,2);
  931. else
  932. zip64local_putValue_inmemory(zi->ci.central_header+36,(uLong)zipfi->internal_fa,2);
  933. if (zipfi==NULL)
  934. zip64local_putValue_inmemory(zi->ci.central_header+38,(uLong)0,4);
  935. else
  936. zip64local_putValue_inmemory(zi->ci.central_header+38,(uLong)zipfi->external_fa,4);
  937. if(zi->ci.pos_local_header >= 0xffffffff)
  938. zip64local_putValue_inmemory(zi->ci.central_header+42,(uLong)0xffffffff,4);
  939. else
  940. zip64local_putValue_inmemory(zi->ci.central_header+42,(uLong)zi->ci.pos_local_header - zi->add_position_when_writting_offset,4);
  941. for (i=0;i<size_filename;i++)
  942. *(zi->ci.central_header+SIZECENTRALHEADER+i) = *(filename+i);
  943. for (i=0;i<size_extrafield_global;i++)
  944. *(zi->ci.central_header+SIZECENTRALHEADER+size_filename+i) =
  945. *(((const char*)extrafield_global)+i);
  946. for (i=0;i<size_comment;i++)
  947. *(zi->ci.central_header+SIZECENTRALHEADER+size_filename+
  948. size_extrafield_global+i) = *(comment+i);
  949. if (zi->ci.central_header == NULL)
  950. return ZIP_INTERNALERROR;
  951. zi->ci.zip64 = zip64;
  952. zi->ci.totalCompressedData = 0;
  953. zi->ci.totalUncompressedData = 0;
  954. zi->ci.pos_zip64extrainfo = 0;
  955. err = Write_LocalFileHeader(zi, filename, size_extrafield_local, extrafield_local);
  956. #ifdef HAVE_BZIP2
  957. zi->ci.bstream.avail_in = (uInt)0;
  958. zi->ci.bstream.avail_out = (uInt)Z_BUFSIZE;
  959. zi->ci.bstream.next_out = (char*)zi->ci.buffered_data;
  960. zi->ci.bstream.total_in_hi32 = 0;
  961. zi->ci.bstream.total_in_lo32 = 0;
  962. zi->ci.bstream.total_out_hi32 = 0;
  963. zi->ci.bstream.total_out_lo32 = 0;
  964. #endif
  965. zi->ci.stream.avail_in = (uInt)0;
  966. zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
  967. zi->ci.stream.next_out = zi->ci.buffered_data;
  968. zi->ci.stream.total_in = 0;
  969. zi->ci.stream.total_out = 0;
  970. zi->ci.stream.data_type = Z_BINARY;
  971. #ifdef HAVE_BZIP2
  972. if ((err==ZIP_OK) && (zi->ci.method == Z_DEFLATED || zi->ci.method == Z_BZIP2ED) && (!zi->ci.raw))
  973. #else
  974. if ((err==ZIP_OK) && (zi->ci.method == Z_DEFLATED) && (!zi->ci.raw))
  975. #endif
  976. {
  977. if(zi->ci.method == Z_DEFLATED)
  978. {
  979. zi->ci.stream.zalloc = (alloc_func)0;
  980. zi->ci.stream.zfree = (free_func)0;
  981. zi->ci.stream.opaque = (voidpf)0;
  982. if (windowBits>0)
  983. windowBits = -windowBits;
  984. err = deflateInit2(&zi->ci.stream, level, Z_DEFLATED, windowBits, memLevel, strategy);
  985. if (err==Z_OK)
  986. zi->ci.stream_initialised = Z_DEFLATED;
  987. }
  988. else if(zi->ci.method == Z_BZIP2ED)
  989. {
  990. #ifdef HAVE_BZIP2
  991. // Init BZip stuff here
  992. zi->ci.bstream.bzalloc = 0;
  993. zi->ci.bstream.bzfree = 0;
  994. zi->ci.bstream.opaque = (voidpf)0;
  995. err = BZ2_bzCompressInit(&zi->ci.bstream, level, 0,35);
  996. if(err == BZ_OK)
  997. zi->ci.stream_initialised = Z_BZIP2ED;
  998. #endif
  999. }
  1000. }
  1001. # ifndef NOCRYPT
  1002. zi->ci.crypt_header_size = 0;
  1003. if ((err==Z_OK) && (password != NULL))
  1004. {
  1005. unsigned char bufHead[RAND_HEAD_LEN];
  1006. unsigned int sizeHead;
  1007. zi->ci.encrypt = 1;
  1008. zi->ci.pcrc_32_tab = get_crc_table();
  1009. /*init_keys(password,zi->ci.keys,zi->ci.pcrc_32_tab);*/
  1010. sizeHead=crypthead(password,bufHead,RAND_HEAD_LEN,zi->ci.keys,zi->ci.pcrc_32_tab,crcForCrypting);
  1011. zi->ci.crypt_header_size = sizeHead;
  1012. if (ZWRITE64(zi->z_filefunc,zi->filestream,bufHead,sizeHead) != sizeHead)
  1013. err = ZIP_ERRNO;
  1014. }
  1015. # endif
  1016. if (err==Z_OK)
  1017. zi->in_opened_file_inzip = 1;
  1018. return err;
  1019. }
  1020. extern int ZEXPORT zipOpenNewFileInZip4 (zipFile file, const char* filename, const zip_fileinfo* zipfi,
  1021. const void* extrafield_local, uInt size_extrafield_local,
  1022. const void* extrafield_global, uInt size_extrafield_global,
  1023. const char* comment, int method, int level, int raw,
  1024. int windowBits,int memLevel, int strategy,
  1025. const char* password, uLong crcForCrypting,
  1026. uLong versionMadeBy, uLong flagBase)
  1027. {
  1028. return zipOpenNewFileInZip4_64 (file, filename, zipfi,
  1029. extrafield_local, size_extrafield_local,
  1030. extrafield_global, size_extrafield_global,
  1031. comment, method, level, raw,
  1032. windowBits, memLevel, strategy,
  1033. password, crcForCrypting, versionMadeBy, flagBase, 0);
  1034. }
  1035. extern int ZEXPORT zipOpenNewFileInZip3 (zipFile file, const char* filename, const zip_fileinfo* zipfi,
  1036. const void* extrafield_local, uInt size_extrafield_local,
  1037. const void* extrafield_global, uInt size_extrafield_global,
  1038. const char* comment, int method, int level, int raw,
  1039. int windowBits,int memLevel, int strategy,
  1040. const char* password, uLong crcForCrypting)
  1041. {
  1042. return zipOpenNewFileInZip4_64 (file, filename, zipfi,
  1043. extrafield_local, size_extrafield_local,
  1044. extrafield_global, size_extrafield_global,
  1045. comment, method, level, raw,
  1046. windowBits, memLevel, strategy,
  1047. password, crcForCrypting, VERSIONMADEBY, 0, 0);
  1048. }
  1049. extern int ZEXPORT zipOpenNewFileInZip3_64(zipFile file, const char* filename, const zip_fileinfo* zipfi,
  1050. const void* extrafield_local, uInt size_extrafield_local,
  1051. const void* extrafield_global, uInt size_extrafield_global,
  1052. const char* comment, int method, int level, int raw,
  1053. int windowBits,int memLevel, int strategy,
  1054. const char* password, uLong crcForCrypting, int zip64)
  1055. {
  1056. return zipOpenNewFileInZip4_64 (file, filename, zipfi,
  1057. extrafield_local, size_extrafield_local,
  1058. extrafield_global, size_extrafield_global,
  1059. comment, method, level, raw,
  1060. windowBits, memLevel, strategy,
  1061. password, crcForCrypting, VERSIONMADEBY, 0, zip64);
  1062. }
  1063. extern int ZEXPORT zipOpenNewFileInZip2(zipFile file, const char* filename, const zip_fileinfo* zipfi,
  1064. const void* extrafield_local, uInt size_extrafield_local,
  1065. const void* extrafield_global, uInt size_extrafield_global,
  1066. const char* comment, int method, int level, int raw)
  1067. {
  1068. return zipOpenNewFileInZip4_64 (file, filename, zipfi,
  1069. extrafield_local, size_extrafield_local,
  1070. extrafield_global, size_extrafield_global,
  1071. comment, method, level, raw,
  1072. -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY,
  1073. NULL, 0, VERSIONMADEBY, 0, 0);
  1074. }
  1075. extern int ZEXPORT zipOpenNewFileInZip2_64(zipFile file, const char* filename, const zip_fileinfo* zipfi,
  1076. const void* extrafield_local, uInt size_extrafield_local,
  1077. const void* extrafield_global, uInt size_extrafield_global,
  1078. const char* comment, int method, int level, int raw, int zip64)
  1079. {
  1080. return zipOpenNewFileInZip4_64 (file, filename, zipfi,
  1081. extrafield_local, size_extrafield_local,
  1082. extrafield_global, size_extrafield_global,
  1083. comment, method, level, raw,
  1084. -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY,
  1085. NULL, 0, VERSIONMADEBY, 0, zip64);
  1086. }
  1087. extern int ZEXPORT zipOpenNewFileInZip64 (zipFile file, const char* filename, const zip_fileinfo* zipfi,
  1088. const void* extrafield_local, uInt size_extrafield_local,
  1089. const void*extrafield_global, uInt size_extrafield_global,
  1090. const char* comment, int method, int level, int zip64)
  1091. {
  1092. return zipOpenNewFileInZip4_64 (file, filename, zipfi,
  1093. extrafield_local, size_extrafield_local,
  1094. extrafield_global, size_extrafield_global,
  1095. comment, method, level, 0,
  1096. -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY,
  1097. NULL, 0, VERSIONMADEBY, 0, zip64);
  1098. }
  1099. extern int ZEXPORT zipOpenNewFileInZip (zipFile file, const char* filename, const zip_fileinfo* zipfi,
  1100. const void* extrafield_local, uInt size_extrafield_local,
  1101. const void*extrafield_global, uInt size_extrafield_global,
  1102. const char* comment, int method, int level)
  1103. {
  1104. return zipOpenNewFileInZip4_64 (file, filename, zipfi,
  1105. extrafield_local, size_extrafield_local,
  1106. extrafield_global, size_extrafield_global,
  1107. comment, method, level, 0,
  1108. -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY,
  1109. NULL, 0, VERSIONMADEBY, 0, 0);
  1110. }
  1111. local int zip64FlushWriteBuffer(zip64_internal* zi)
  1112. {
  1113. int err=ZIP_OK;
  1114. if (zi->ci.encrypt != 0)
  1115. {
  1116. #ifndef NOCRYPT
  1117. uInt i;
  1118. int t;
  1119. for (i=0;i<zi->ci.pos_in_buffered_data;i++)
  1120. zi->ci.buffered_data[i] = zencode(zi->ci.keys, zi->ci.pcrc_32_tab, zi->ci.buffered_data[i],t);
  1121. #endif
  1122. }
  1123. if (ZWRITE64(zi->z_filefunc,zi->filestream,zi->ci.buffered_data,zi->ci.pos_in_buffered_data) != zi->ci.pos_in_buffered_data)
  1124. err = ZIP_ERRNO;
  1125. zi->ci.totalCompressedData += zi->ci.pos_in_buffered_data;
  1126. #ifdef HAVE_BZIP2
  1127. if(zi->ci.method == Z_BZIP2ED)
  1128. {
  1129. zi->ci.totalUncompressedData += zi->ci.bstream.total_in_lo32;
  1130. zi->ci.bstream.total_in_lo32 = 0;
  1131. zi->ci.bstream.total_in_hi32 = 0;
  1132. }
  1133. else
  1134. #endif
  1135. {
  1136. zi->ci.totalUncompressedData += zi->ci.stream.total_in;
  1137. zi->ci.stream.total_in = 0;
  1138. }
  1139. zi->ci.pos_in_buffered_data = 0;
  1140. return err;
  1141. }
  1142. extern int ZEXPORT zipWriteInFileInZip (zipFile file,const void* buf,unsigned int len)
  1143. {
  1144. zip64_internal* zi;
  1145. int err=ZIP_OK;
  1146. if (file == NULL)
  1147. return ZIP_PARAMERROR;
  1148. zi = (zip64_internal*)file;
  1149. if (zi->in_opened_file_inzip == 0)
  1150. return ZIP_PARAMERROR;
  1151. zi->ci.crc32 = crc32(zi->ci.crc32,buf,(uInt)len);
  1152. #ifdef HAVE_BZIP2
  1153. if(zi->ci.method == Z_BZIP2ED && (!zi->ci.raw))
  1154. {
  1155. zi->ci.bstream.next_in = (void*)buf;
  1156. zi->ci.bstream.avail_in = len;
  1157. err = BZ_RUN_OK;
  1158. while ((err==BZ_RUN_OK) && (zi->ci.bstream.avail_in>0))
  1159. {
  1160. if (zi->ci.bstream.avail_out == 0)
  1161. {
  1162. if (zip64FlushWriteBuffer(zi) == ZIP_ERRNO)
  1163. err = ZIP_ERRNO;
  1164. zi->ci.bstream.avail_out = (uInt)Z_BUFSIZE;
  1165. zi->ci.bstream.next_out = (char*)zi->ci.buffered_data;
  1166. }
  1167. if(err != BZ_RUN_OK)
  1168. break;
  1169. if ((zi->ci.method == Z_BZIP2ED) && (!zi->ci.raw))
  1170. {
  1171. uLong uTotalOutBefore_lo = zi->ci.bstream.total_out_lo32;
  1172. // uLong uTotalOutBefore_hi = zi->ci.bstream.total_out_hi32;
  1173. err=BZ2_bzCompress(&zi->ci.bstream, BZ_RUN);
  1174. zi->ci.pos_in_buffered_data += (uInt)(zi->ci.bstream.total_out_lo32 - uTotalOutBefore_lo) ;
  1175. }
  1176. }
  1177. if(err == BZ_RUN_OK)
  1178. err = ZIP_OK;
  1179. }
  1180. else
  1181. #endif
  1182. {
  1183. zi->ci.stream.next_in = (Bytef*)buf;
  1184. zi->ci.stream.avail_in = len;
  1185. while ((err==ZIP_OK) && (zi->ci.stream.avail_in>0))
  1186. {
  1187. if (zi->ci.stream.avail_out == 0)
  1188. {
  1189. if (zip64FlushWriteBuffer(zi) == ZIP_ERRNO)
  1190. err = ZIP_ERRNO;
  1191. zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
  1192. zi->ci.stream.next_out = zi->ci.buffered_data;
  1193. }
  1194. if(err != ZIP_OK)
  1195. break;
  1196. if ((zi->ci.method == Z_DEFLATED) && (!zi->ci.raw))
  1197. {
  1198. uLong uTotalOutBefore = zi->ci.stream.total_out;
  1199. err=deflate(&zi->ci.stream, Z_NO_FLUSH);
  1200. if(uTotalOutBefore > zi->ci.stream.total_out)
  1201. {
  1202. int bBreak = 0;
  1203. bBreak++;
  1204. }
  1205. zi->ci.pos_in_buffered_data += (uInt)(zi->ci.stream.total_out - uTotalOutBefore) ;
  1206. }
  1207. else
  1208. {
  1209. uInt copy_this,i;
  1210. if (zi->ci.stream.avail_in < zi->ci.stream.avail_out)
  1211. copy_this = zi->ci.stream.avail_in;
  1212. else
  1213. copy_this = zi->ci.stream.avail_out;
  1214. for (i = 0; i < copy_this; i++)
  1215. *(((char*)zi->ci.stream.next_out)+i) =
  1216. *(((const char*)zi->ci.stream.next_in)+i);
  1217. {
  1218. zi->ci.stream.avail_in -= copy_this;
  1219. zi->ci.stream.avail_out-= copy_this;
  1220. zi->ci.stream.next_in+= copy_this;
  1221. zi->ci.stream.next_out+= copy_this;
  1222. zi->ci.stream.total_in+= copy_this;
  1223. zi->ci.stream.total_out+= copy_this;
  1224. zi->ci.pos_in_buffered_data += copy_this;
  1225. }
  1226. }
  1227. }// while(...)
  1228. }
  1229. return err;
  1230. }
  1231. extern int ZEXPORT zipCloseFileInZipRaw (zipFile file, uLong uncompressed_size, uLong crc32)
  1232. {
  1233. return zipCloseFileInZipRaw64 (file, uncompressed_size, crc32);
  1234. }
  1235. extern int ZEXPORT zipCloseFileInZipRaw64 (zipFile file, ZPOS64_T uncompressed_size, uLong crc32)
  1236. {
  1237. zip64_internal* zi;
  1238. ZPOS64_T compressed_size;
  1239. uLong invalidValue = 0xffffffff;
  1240. short datasize = 0;
  1241. int err=ZIP_OK;
  1242. if (file == NULL)
  1243. return ZIP_PARAMERROR;
  1244. zi = (zip64_internal*)file;
  1245. if (zi->in_opened_file_inzip == 0)
  1246. return ZIP_PARAMERROR;
  1247. zi->ci.stream.avail_in = 0;
  1248. if ((zi->ci.method == Z_DEFLATED) && (!zi->ci.raw))
  1249. {
  1250. while (err==ZIP_OK)
  1251. {
  1252. uLong uTotalOutBefore;
  1253. if (zi->ci.stream.avail_out == 0)
  1254. {
  1255. if (zip64FlushWriteBuffer(zi) == ZIP_ERRNO)
  1256. err = ZIP_ERRNO;
  1257. zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
  1258. zi->ci.stream.next_out = zi->ci.buffered_data;
  1259. }
  1260. uTotalOutBefore = zi->ci.stream.total_out;
  1261. err=deflate(&zi->ci.stream, Z_FINISH);
  1262. zi->ci.pos_in_buffered_data += (uInt)(zi->ci.stream.total_out - uTotalOutBefore) ;
  1263. }
  1264. }
  1265. else if ((zi->ci.method == Z_BZIP2ED) && (!zi->ci.raw))
  1266. {
  1267. #ifdef HAVE_BZIP2
  1268. err = BZ_FINISH_OK;
  1269. while (err==BZ_FINISH_OK)
  1270. {
  1271. uLong uTotalOutBefore;
  1272. if (zi->ci.bstream.avail_out == 0)
  1273. {
  1274. if (zip64FlushWriteBuffer(zi) == ZIP_ERRNO)
  1275. err = ZIP_ERRNO;
  1276. zi->ci.bstream.avail_out = (uInt)Z_BUFSIZE;
  1277. zi->ci.bstream.next_out = (char*)zi->ci.buffered_data;
  1278. }
  1279. uTotalOutBefore = zi->ci.bstream.total_out_lo32;
  1280. err=BZ2_bzCompress(&zi->ci.bstream, BZ_FINISH);
  1281. if(err == BZ_STREAM_END)
  1282. err = Z_STREAM_END;
  1283. zi->ci.pos_in_buffered_data += (uInt)(zi->ci.bstream.total_out_lo32 - uTotalOutBefore);
  1284. }
  1285. if(err == BZ_FINISH_OK)
  1286. err = ZIP_OK;
  1287. #endif
  1288. }
  1289. if (err==Z_STREAM_END)
  1290. err=ZIP_OK; /* this is normal */
  1291. if ((zi->ci.pos_in_buffered_data>0) && (err==ZIP_OK))
  1292. {
  1293. if (zip64FlushWriteBuffer(zi)==ZIP_ERRNO)
  1294. err = ZIP_ERRNO;
  1295. }
  1296. if ((zi->ci.method == Z_DEFLATED) && (!zi->ci.raw))
  1297. {
  1298. int tmp_err = deflateEnd(&zi->ci.stream);
  1299. if (err == ZIP_OK)
  1300. err = tmp_err;
  1301. zi->ci.stream_initialised = 0;
  1302. }
  1303. #ifdef HAVE_BZIP2
  1304. else if((zi->ci.method == Z_BZIP2ED) && (!zi->ci.raw))
  1305. {
  1306. int tmperr = BZ2_bzCompressEnd(&zi->ci.bstream);
  1307. if (err==ZIP_OK)
  1308. err = tmperr;
  1309. zi->ci.stream_initialised = 0;
  1310. }
  1311. #endif
  1312. if (!zi->ci.raw)
  1313. {
  1314. crc32 = (uLong)zi->ci.crc32;
  1315. uncompressed_size = zi->ci.totalUncompressedData;
  1316. }
  1317. compressed_size = zi->ci.totalCompressedData;
  1318. # ifndef NOCRYPT
  1319. compressed_size += zi->ci.crypt_header_size;
  1320. # endif
  1321. // update Current Item crc and sizes,
  1322. if(compressed_size >= 0xffffffff || uncompressed_size >= 0xffffffff || zi->ci.pos_local_header >= 0xffffffff)
  1323. {
  1324. /*version Made by*/
  1325. zip64local_putValue_inmemory(zi->ci.central_header+4,(uLong)45,2);
  1326. /*version needed*/
  1327. zip64local_putValue_inmemory(zi->ci.central_header+6,(uLong)45,2);
  1328. }
  1329. zip64local_putValue_inmemory(zi->ci.central_header+16,crc32,4); /*crc*/
  1330. if(compressed_size >= 0xffffffff)
  1331. zip64local_putValue_inmemory(zi->ci.central_header+20, invalidValue,4); /*compr size*/
  1332. else
  1333. zip64local_putValue_inmemory(zi->ci.central_header+20, compressed_size,4); /*compr size*/
  1334. /// set internal file attributes field
  1335. if (zi->ci.stream.data_type == Z_ASCII)
  1336. zip64local_putValue_inmemory(zi->ci.central_header+36,(uLong)Z_ASCII,2);
  1337. if(uncompressed_size >= 0xffffffff)
  1338. zip64local_putValue_inmemory(zi->ci.central_header+24, invalidValue,4); /*uncompr size*/
  1339. else
  1340. zip64local_putValue_inmemory(zi->ci.central_header+24, uncompressed_size,4); /*uncompr size*/
  1341. // Add ZIP64 extra info field for uncompressed size
  1342. if(uncompressed_size >= 0xffffffff)
  1343. datasize += 8;
  1344. // Add ZIP64 extra info field for compressed size
  1345. if(compressed_size >= 0xffffffff)
  1346. datasize += 8;
  1347. // Add ZIP64 extra info field for relative offset to local file header of current file
  1348. if(zi->ci.pos_local_header >= 0xffffffff)
  1349. datasize += 8;
  1350. if(datasize > 0)
  1351. {
  1352. char* p = NULL;
  1353. if((uLong)(datasize + 4) > zi->ci.size_centralExtraFree)
  1354. {
  1355. // we can not write more data to the buffer that we have room for.
  1356. return ZIP_BADZIPFILE;
  1357. }
  1358. p = zi->ci.central_header + zi->ci.size_centralheader;
  1359. // Add Extra Information Header for 'ZIP64 information'
  1360. zip64local_putValue_inmemory(p, 0x0001, 2); // HeaderID
  1361. p += 2;
  1362. zip64local_putValue_inmemory(p, datasize, 2); // DataSize
  1363. p += 2;
  1364. if(uncompressed_size >= 0xffffffff)
  1365. {
  1366. zip64local_putValue_inmemory(p, uncompressed_size, 8);
  1367. p += 8;
  1368. }
  1369. if(compressed_size >= 0xffffffff)
  1370. {
  1371. zip64local_putValue_inmemory(p, compressed_size, 8);
  1372. p += 8;
  1373. }
  1374. if(zi->ci.pos_local_header >= 0xffffffff)
  1375. {
  1376. zip64local_putValue_inmemory(p, zi->ci.pos_local_header, 8);
  1377. p += 8;
  1378. }
  1379. // Update how much extra free space we got in the memory buffer
  1380. // and increase the centralheader size so the new ZIP64 fields are included
  1381. // ( 4 below is the size of HeaderID and DataSize field )
  1382. zi->ci.size_centralExtraFree -= datasize + 4;
  1383. zi->ci.size_centralheader += datasize + 4;
  1384. // Update the extra info size field
  1385. zi->ci.size_centralExtra += datasize + 4;
  1386. zip64local_putValue_inmemory(zi->ci.central_header+30,(uLong)zi->ci.size_centralExtra,2);
  1387. }
  1388. if (err==ZIP_OK)
  1389. err = add_data_in_datablock(&zi->central_dir, zi->ci.central_header, (uLong)zi->ci.size_centralheader);
  1390. free(zi->ci.central_header);
  1391. if (err==ZIP_OK)
  1392. {
  1393. // Update the LocalFileHeader with the new values.
  1394. ZPOS64_T cur_pos_inzip = ZTELL64(zi->z_filefunc,zi->filestream);
  1395. if (ZSEEK64(zi->z_filefunc,zi->filestream, zi->ci.pos_local_header + 14,ZLIB_FILEFUNC_SEEK_SET)!=0)
  1396. err = ZIP_ERRNO;
  1397. if (err==ZIP_OK)
  1398. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,crc32,4); /* crc 32, unknown */
  1399. if(uncompressed_size >= 0xffffffff || compressed_size >= 0xffffffff )
  1400. {
  1401. if(zi->ci.pos_zip64extrainfo > 0)
  1402. {
  1403. // Update the size in the ZIP64 extended field.
  1404. if (ZSEEK64(zi->z_filefunc,zi->filestream, zi->ci.pos_zip64extrainfo + 4,ZLIB_FILEFUNC_SEEK_SET)!=0)
  1405. err = ZIP_ERRNO;
  1406. if (err==ZIP_OK) /* compressed size, unknown */
  1407. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, uncompressed_size, 8);
  1408. if (err==ZIP_OK) /* uncompressed size, unknown */
  1409. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, compressed_size, 8);
  1410. }
  1411. else
  1412. err = ZIP_BADZIPFILE; // Caller passed zip64 = 0, so no room for zip64 info -> fatal
  1413. }
  1414. else
  1415. {
  1416. if (err==ZIP_OK) /* compressed size, unknown */
  1417. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,compressed_size,4);
  1418. if (err==ZIP_OK) /* uncompressed size, unknown */
  1419. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,uncompressed_size,4);
  1420. }
  1421. if (ZSEEK64(zi->z_filefunc,zi->filestream, cur_pos_inzip,ZLIB_FILEFUNC_SEEK_SET)!=0)
  1422. err = ZIP_ERRNO;
  1423. }
  1424. zi->number_entry ++;
  1425. zi->in_opened_file_inzip = 0;
  1426. return err;
  1427. }
  1428. extern int ZEXPORT zipCloseFileInZip (zipFile file)
  1429. {
  1430. return zipCloseFileInZipRaw (file,0,0);
  1431. }
  1432. int Write_Zip64EndOfCentralDirectoryLocator(zip64_internal* zi, ZPOS64_T zip64eocd_pos_inzip)
  1433. {
  1434. int err = ZIP_OK;
  1435. ZPOS64_T pos = zip64eocd_pos_inzip - zi->add_position_when_writting_offset;
  1436. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)ZIP64ENDLOCHEADERMAGIC,4);
  1437. /*num disks*/
  1438. if (err==ZIP_OK) /* number of the disk with the start of the central directory */
  1439. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4);
  1440. /*relative offset*/
  1441. if (err==ZIP_OK) /* Relative offset to the Zip64EndOfCentralDirectory */
  1442. err = zip64local_putValue(&zi->z_filefunc,zi->filestream, pos,8);
  1443. /*total disks*/ /* Do not support spawning of disk so always say 1 here*/
  1444. if (err==ZIP_OK) /* number of the disk with the start of the central directory */
  1445. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)1,4);
  1446. return err;
  1447. }
  1448. int Write_Zip64EndOfCentralDirectoryRecord(zip64_internal* zi, uLong size_centraldir, ZPOS64_T centraldir_pos_inzip)
  1449. {
  1450. int err = ZIP_OK;
  1451. uLong Zip64DataSize = 44;
  1452. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)ZIP64ENDHEADERMAGIC,4);
  1453. if (err==ZIP_OK) /* size of this 'zip64 end of central directory' */
  1454. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(ZPOS64_T)Zip64DataSize,8); // why ZPOS64_T of this ?
  1455. if (err==ZIP_OK) /* version made by */
  1456. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)45,2);
  1457. if (err==ZIP_OK) /* version needed */
  1458. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)45,2);
  1459. if (err==ZIP_OK) /* number of this disk */
  1460. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4);
  1461. if (err==ZIP_OK) /* number of the disk with the start of the central directory */
  1462. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4);
  1463. if (err==ZIP_OK) /* total number of entries in the central dir on this disk */
  1464. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, zi->number_entry, 8);
  1465. if (err==ZIP_OK) /* total number of entries in the central dir */
  1466. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, zi->number_entry, 8);
  1467. if (err==ZIP_OK) /* size of the central directory */
  1468. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(ZPOS64_T)size_centraldir,8);
  1469. if (err==ZIP_OK) /* offset of start of central directory with respect to the starting disk number */
  1470. {
  1471. ZPOS64_T pos = centraldir_pos_inzip - zi->add_position_when_writting_offset;
  1472. err = zip64local_putValue(&zi->z_filefunc,zi->filestream, (ZPOS64_T)pos,8);
  1473. }
  1474. return err;
  1475. }
  1476. int Write_EndOfCentralDirectoryRecord(zip64_internal* zi, uLong size_centraldir, ZPOS64_T centraldir_pos_inzip)
  1477. {
  1478. int err = ZIP_OK;
  1479. /*signature*/
  1480. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)ENDHEADERMAGIC,4);
  1481. if (err==ZIP_OK) /* number of this disk */
  1482. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,2);
  1483. if (err==ZIP_OK) /* number of the disk with the start of the central directory */
  1484. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,2);
  1485. if (err==ZIP_OK) /* total number of entries in the central dir on this disk */
  1486. {
  1487. {
  1488. if(zi->number_entry >= 0xFFFF)
  1489. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0xffff,2); // use value in ZIP64 record
  1490. else
  1491. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->number_entry,2);
  1492. }
  1493. }
  1494. if (err==ZIP_OK) /* total number of entries in the central dir */
  1495. {
  1496. if(zi->number_entry >= 0xFFFF)
  1497. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0xffff,2); // use value in ZIP64 record
  1498. else
  1499. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->number_entry,2);
  1500. }
  1501. if (err==ZIP_OK) /* size of the central directory */
  1502. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)size_centraldir,4);
  1503. if (err==ZIP_OK) /* offset of start of central directory with respect to the starting disk number */
  1504. {
  1505. ZPOS64_T pos = centraldir_pos_inzip - zi->add_position_when_writting_offset;
  1506. if(pos >= 0xffffffff)
  1507. {
  1508. err = zip64local_putValue(&zi->z_filefunc,zi->filestream, (uLong)0xffffffff,4);
  1509. }
  1510. else
  1511. err = zip64local_putValue(&zi->z_filefunc,zi->filestream, (uLong)(centraldir_pos_inzip - zi->add_position_when_writting_offset),4);
  1512. }
  1513. return err;
  1514. }
  1515. int Write_GlobalComment(zip64_internal* zi, const char* global_comment)
  1516. {
  1517. int err = ZIP_OK;
  1518. uInt size_global_comment = 0;
  1519. if(global_comment != NULL)
  1520. size_global_comment = (uInt)strlen(global_comment);
  1521. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)size_global_comment,2);
  1522. if (err == ZIP_OK && size_global_comment > 0)
  1523. {
  1524. if (ZWRITE64(zi->z_filefunc,zi->filestream, global_comment, size_global_comment) != size_global_comment)
  1525. err = ZIP_ERRNO;
  1526. }
  1527. return err;
  1528. }
  1529. extern int ZEXPORT zipClose (zipFile file, const char* global_comment)
  1530. {
  1531. zip64_internal* zi;
  1532. int err = 0;
  1533. uLong size_centraldir = 0;
  1534. ZPOS64_T centraldir_pos_inzip;
  1535. ZPOS64_T pos;
  1536. if (file == NULL)
  1537. return ZIP_PARAMERROR;
  1538. zi = (zip64_internal*)file;
  1539. if (zi->in_opened_file_inzip == 1)
  1540. {
  1541. err = zipCloseFileInZip (file);
  1542. }
  1543. #ifndef NO_ADDFILEINEXISTINGZIP
  1544. if (global_comment==NULL)
  1545. global_comment = zi->globalcomment;
  1546. #endif
  1547. centraldir_pos_inzip = ZTELL64(zi->z_filefunc,zi->filestream);
  1548. if (err==ZIP_OK)
  1549. {
  1550. linkedlist_datablock_internal* ldi = zi->central_dir.first_block;
  1551. while (ldi!=NULL)
  1552. {
  1553. if ((err==ZIP_OK) && (ldi->filled_in_this_block>0))
  1554. {
  1555. if (ZWRITE64(zi->z_filefunc,zi->filestream, ldi->data, ldi->filled_in_this_block) != ldi->filled_in_this_block)
  1556. err = ZIP_ERRNO;
  1557. }
  1558. size_centraldir += ldi->filled_in_this_block;
  1559. ldi = ldi->next_datablock;
  1560. }
  1561. }
  1562. free_linkedlist(&(zi->central_dir));
  1563. pos = centraldir_pos_inzip - zi->add_position_when_writting_offset;
  1564. if(pos >= 0xffffffff || zi->number_entry > 0xFFFF)
  1565. {
  1566. ZPOS64_T Zip64EOCDpos = ZTELL64(zi->z_filefunc,zi->filestream);
  1567. Write_Zip64EndOfCentralDirectoryRecord(zi, size_centraldir, centraldir_pos_inzip);
  1568. Write_Zip64EndOfCentralDirectoryLocator(zi, Zip64EOCDpos);
  1569. }
  1570. if (err==ZIP_OK)
  1571. err = Write_EndOfCentralDirectoryRecord(zi, size_centraldir, centraldir_pos_inzip);
  1572. if(err == ZIP_OK)
  1573. err = Write_GlobalComment(zi, global_comment);
  1574. if (ZCLOSE64(zi->z_filefunc,zi->filestream) != 0)
  1575. if (err == ZIP_OK)
  1576. err = ZIP_ERRNO;
  1577. #ifndef NO_ADDFILEINEXISTINGZIP
  1578. TRYFREE(zi->globalcomment);
  1579. #endif
  1580. TRYFREE(zi);
  1581. return err;
  1582. }
  1583. extern int ZEXPORT zipRemoveExtraInfoBlock (char* pData, int* dataLen, short sHeader)
  1584. {
  1585. char* p = pData;
  1586. int size = 0;
  1587. char* pNewHeader;
  1588. char* pTmp;
  1589. short header;
  1590. short dataSize;
  1591. int retVal = ZIP_OK;
  1592. if(pData == NULL || *dataLen < 4)
  1593. return ZIP_PARAMERROR;
  1594. pNewHeader = (char*)ALLOC(*dataLen);
  1595. pTmp = pNewHeader;
  1596. while(p < (pData + *dataLen))
  1597. {
  1598. header = *(short*)p;
  1599. dataSize = *(((short*)p)+1);
  1600. if( header == sHeader ) // Header found.
  1601. {
  1602. p += dataSize + 4; // skip it. do not copy to temp buffer
  1603. }
  1604. else
  1605. {
  1606. // Extra Info block should not be removed, So copy it to the temp buffer.
  1607. memcpy(pTmp, p, dataSize + 4);
  1608. p += dataSize + 4;
  1609. size += dataSize + 4;
  1610. }
  1611. }
  1612. if(size < *dataLen)
  1613. {
  1614. // clean old extra info block.
  1615. memset(pData,0, *dataLen);
  1616. // copy the new extra info block over the old
  1617. if(size > 0)
  1618. memcpy(pData, pNewHeader, size);
  1619. // set the new extra info size
  1620. *dataLen = size;
  1621. retVal = ZIP_OK;
  1622. }
  1623. else
  1624. retVal = ZIP_ERRNO;
  1625. TRYFREE(pNewHeader);
  1626. return retVal;
  1627. }