zip.c 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022
  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 unsigned long* 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. int LoadCentralDirectoryRecord(zip64_internal* pziinit)
  512. {
  513. int err=ZIP_OK;
  514. ZPOS64_T byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/
  515. ZPOS64_T size_central_dir; /* size of the central directory */
  516. ZPOS64_T offset_central_dir; /* offset of start of central directory */
  517. ZPOS64_T central_pos;
  518. uLong uL;
  519. uLong number_disk; /* number of the current dist, used for
  520. spaning ZIP, unsupported, always 0*/
  521. uLong number_disk_with_CD; /* number the the disk with central dir, used
  522. for spaning ZIP, unsupported, always 0*/
  523. ZPOS64_T number_entry;
  524. ZPOS64_T number_entry_CD; /* total number of entries in
  525. the central dir
  526. (same than number_entry on nospan) */
  527. uLong VersionMadeBy;
  528. uLong VersionNeeded;
  529. uLong size_comment;
  530. int hasZIP64Record = 0;
  531. // check first if we find a ZIP64 record
  532. central_pos = zip64local_SearchCentralDir64(&pziinit->z_filefunc,pziinit->filestream);
  533. if(central_pos > 0)
  534. {
  535. hasZIP64Record = 1;
  536. }
  537. else if(central_pos == 0)
  538. {
  539. central_pos = zip64local_SearchCentralDir(&pziinit->z_filefunc,pziinit->filestream);
  540. }
  541. /* disable to allow appending to empty ZIP archive
  542. if (central_pos==0)
  543. err=ZIP_ERRNO;
  544. */
  545. if(hasZIP64Record)
  546. {
  547. ZPOS64_T sizeEndOfCentralDirectory;
  548. if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, central_pos, ZLIB_FILEFUNC_SEEK_SET) != 0)
  549. err=ZIP_ERRNO;
  550. /* the signature, already checked */
  551. if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream,&uL)!=ZIP_OK)
  552. err=ZIP_ERRNO;
  553. /* size of zip64 end of central directory record */
  554. if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream, &sizeEndOfCentralDirectory)!=ZIP_OK)
  555. err=ZIP_ERRNO;
  556. /* version made by */
  557. if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &VersionMadeBy)!=ZIP_OK)
  558. err=ZIP_ERRNO;
  559. /* version needed to extract */
  560. if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &VersionNeeded)!=ZIP_OK)
  561. err=ZIP_ERRNO;
  562. /* number of this disk */
  563. if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream,&number_disk)!=ZIP_OK)
  564. err=ZIP_ERRNO;
  565. /* number of the disk with the start of the central directory */
  566. if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream,&number_disk_with_CD)!=ZIP_OK)
  567. err=ZIP_ERRNO;
  568. /* total number of entries in the central directory on this disk */
  569. if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream, &number_entry)!=ZIP_OK)
  570. err=ZIP_ERRNO;
  571. /* total number of entries in the central directory */
  572. if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream,&number_entry_CD)!=ZIP_OK)
  573. err=ZIP_ERRNO;
  574. if ((number_entry_CD!=number_entry) || (number_disk_with_CD!=0) || (number_disk!=0))
  575. err=ZIP_BADZIPFILE;
  576. /* size of the central directory */
  577. if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream,&size_central_dir)!=ZIP_OK)
  578. err=ZIP_ERRNO;
  579. /* offset of start of central directory with respect to the
  580. starting disk number */
  581. if (zip64local_getLong64(&pziinit->z_filefunc, pziinit->filestream,&offset_central_dir)!=ZIP_OK)
  582. err=ZIP_ERRNO;
  583. // TODO..
  584. // read the comment from the standard central header.
  585. size_comment = 0;
  586. }
  587. else
  588. {
  589. // Read End of central Directory info
  590. if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, central_pos,ZLIB_FILEFUNC_SEEK_SET)!=0)
  591. err=ZIP_ERRNO;
  592. /* the signature, already checked */
  593. if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream,&uL)!=ZIP_OK)
  594. err=ZIP_ERRNO;
  595. /* number of this disk */
  596. if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream,&number_disk)!=ZIP_OK)
  597. err=ZIP_ERRNO;
  598. /* number of the disk with the start of the central directory */
  599. if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream,&number_disk_with_CD)!=ZIP_OK)
  600. err=ZIP_ERRNO;
  601. /* total number of entries in the central dir on this disk */
  602. number_entry = 0;
  603. if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &uL)!=ZIP_OK)
  604. err=ZIP_ERRNO;
  605. else
  606. number_entry = uL;
  607. /* total number of entries in the central dir */
  608. number_entry_CD = 0;
  609. if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &uL)!=ZIP_OK)
  610. err=ZIP_ERRNO;
  611. else
  612. number_entry_CD = uL;
  613. if ((number_entry_CD!=number_entry) || (number_disk_with_CD!=0) || (number_disk!=0))
  614. err=ZIP_BADZIPFILE;
  615. /* size of the central directory */
  616. size_central_dir = 0;
  617. if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream, &uL)!=ZIP_OK)
  618. err=ZIP_ERRNO;
  619. else
  620. size_central_dir = uL;
  621. /* offset of start of central directory with respect to the starting disk number */
  622. offset_central_dir = 0;
  623. if (zip64local_getLong(&pziinit->z_filefunc, pziinit->filestream, &uL)!=ZIP_OK)
  624. err=ZIP_ERRNO;
  625. else
  626. offset_central_dir = uL;
  627. /* zipfile global comment length */
  628. if (zip64local_getShort(&pziinit->z_filefunc, pziinit->filestream, &size_comment)!=ZIP_OK)
  629. err=ZIP_ERRNO;
  630. }
  631. if ((central_pos<offset_central_dir+size_central_dir) &&
  632. (err==ZIP_OK))
  633. err=ZIP_BADZIPFILE;
  634. if (err!=ZIP_OK)
  635. {
  636. ZCLOSE64(pziinit->z_filefunc, pziinit->filestream);
  637. return ZIP_ERRNO;
  638. }
  639. if (size_comment>0)
  640. {
  641. pziinit->globalcomment = (char*)ALLOC(size_comment+1);
  642. if (pziinit->globalcomment)
  643. {
  644. size_comment = ZREAD64(pziinit->z_filefunc, pziinit->filestream, pziinit->globalcomment,size_comment);
  645. pziinit->globalcomment[size_comment]=0;
  646. }
  647. }
  648. byte_before_the_zipfile = central_pos - (offset_central_dir+size_central_dir);
  649. pziinit->add_position_when_writting_offset = byte_before_the_zipfile;
  650. {
  651. ZPOS64_T size_central_dir_to_read = size_central_dir;
  652. size_t buf_size = SIZEDATA_INDATABLOCK;
  653. void* buf_read = (void*)ALLOC(buf_size);
  654. if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, offset_central_dir + byte_before_the_zipfile, ZLIB_FILEFUNC_SEEK_SET) != 0)
  655. err=ZIP_ERRNO;
  656. while ((size_central_dir_to_read>0) && (err==ZIP_OK))
  657. {
  658. ZPOS64_T read_this = SIZEDATA_INDATABLOCK;
  659. if (read_this > size_central_dir_to_read)
  660. read_this = size_central_dir_to_read;
  661. if (ZREAD64(pziinit->z_filefunc, pziinit->filestream,buf_read,(uLong)read_this) != read_this)
  662. err=ZIP_ERRNO;
  663. if (err==ZIP_OK)
  664. err = add_data_in_datablock(&pziinit->central_dir,buf_read, (uLong)read_this);
  665. size_central_dir_to_read-=read_this;
  666. }
  667. TRYFREE(buf_read);
  668. }
  669. pziinit->begin_pos = byte_before_the_zipfile;
  670. pziinit->number_entry = number_entry_CD;
  671. if (ZSEEK64(pziinit->z_filefunc, pziinit->filestream, offset_central_dir+byte_before_the_zipfile,ZLIB_FILEFUNC_SEEK_SET) != 0)
  672. err=ZIP_ERRNO;
  673. return err;
  674. }
  675. #endif /* !NO_ADDFILEINEXISTINGZIP*/
  676. /************************************************************/
  677. extern zipFile ZEXPORT zipOpen3 (const void *pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_32_def* pzlib_filefunc64_32_def);
  678. extern zipFile ZEXPORT zipOpen3 (const void *pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_32_def* pzlib_filefunc64_32_def)
  679. {
  680. zip64_internal ziinit;
  681. zip64_internal* zi;
  682. int err=ZIP_OK;
  683. ziinit.z_filefunc.zseek32_file = NULL;
  684. ziinit.z_filefunc.ztell32_file = NULL;
  685. if (pzlib_filefunc64_32_def==NULL)
  686. fill_fopen64_filefunc(&ziinit.z_filefunc.zfile_func64);
  687. else
  688. ziinit.z_filefunc = *pzlib_filefunc64_32_def;
  689. ziinit.filestream = ZOPEN64(ziinit.z_filefunc,
  690. pathname,
  691. (append == APPEND_STATUS_CREATE) ?
  692. (ZLIB_FILEFUNC_MODE_READ | ZLIB_FILEFUNC_MODE_WRITE | ZLIB_FILEFUNC_MODE_CREATE) :
  693. (ZLIB_FILEFUNC_MODE_READ | ZLIB_FILEFUNC_MODE_WRITE | ZLIB_FILEFUNC_MODE_EXISTING));
  694. if (ziinit.filestream == NULL)
  695. return NULL;
  696. if (append == APPEND_STATUS_CREATEAFTER)
  697. ZSEEK64(ziinit.z_filefunc,ziinit.filestream,0,SEEK_END);
  698. ziinit.begin_pos = ZTELL64(ziinit.z_filefunc,ziinit.filestream);
  699. ziinit.in_opened_file_inzip = 0;
  700. ziinit.ci.stream_initialised = 0;
  701. ziinit.number_entry = 0;
  702. ziinit.add_position_when_writting_offset = 0;
  703. init_linkedlist(&(ziinit.central_dir));
  704. zi = (zip64_internal*)ALLOC(sizeof(zip64_internal));
  705. if (zi==NULL)
  706. {
  707. ZCLOSE64(ziinit.z_filefunc,ziinit.filestream);
  708. return NULL;
  709. }
  710. /* now we add file in a zipfile */
  711. # ifndef NO_ADDFILEINEXISTINGZIP
  712. ziinit.globalcomment = NULL;
  713. if (append == APPEND_STATUS_ADDINZIP)
  714. {
  715. // Read and Cache Central Directory Records
  716. err = LoadCentralDirectoryRecord(&ziinit);
  717. }
  718. if (globalcomment)
  719. {
  720. *globalcomment = ziinit.globalcomment;
  721. }
  722. # endif /* !NO_ADDFILEINEXISTINGZIP*/
  723. if (err != ZIP_OK)
  724. {
  725. # ifndef NO_ADDFILEINEXISTINGZIP
  726. TRYFREE(ziinit.globalcomment);
  727. # endif /* !NO_ADDFILEINEXISTINGZIP*/
  728. TRYFREE(zi);
  729. return NULL;
  730. }
  731. else
  732. {
  733. *zi = ziinit;
  734. return (zipFile)zi;
  735. }
  736. }
  737. extern zipFile ZEXPORT zipOpen2 (const char *pathname, int append, zipcharpc* globalcomment, zlib_filefunc_def* pzlib_filefunc32_def)
  738. {
  739. if (pzlib_filefunc32_def != NULL)
  740. {
  741. zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
  742. fill_zlib_filefunc64_32_def_from_filefunc32(&zlib_filefunc64_32_def_fill,pzlib_filefunc32_def);
  743. return zipOpen3(pathname, append, globalcomment, &zlib_filefunc64_32_def_fill);
  744. }
  745. else
  746. return zipOpen3(pathname, append, globalcomment, NULL);
  747. }
  748. extern zipFile ZEXPORT zipOpen2_64 (const void *pathname, int append, zipcharpc* globalcomment, zlib_filefunc64_def* pzlib_filefunc_def)
  749. {
  750. if (pzlib_filefunc_def != NULL)
  751. {
  752. zlib_filefunc64_32_def zlib_filefunc64_32_def_fill;
  753. zlib_filefunc64_32_def_fill.zfile_func64 = *pzlib_filefunc_def;
  754. zlib_filefunc64_32_def_fill.ztell32_file = NULL;
  755. zlib_filefunc64_32_def_fill.zseek32_file = NULL;
  756. return zipOpen3(pathname, append, globalcomment, &zlib_filefunc64_32_def_fill);
  757. }
  758. else
  759. return zipOpen3(pathname, append, globalcomment, NULL);
  760. }
  761. extern zipFile ZEXPORT zipOpen (const char* pathname, int append)
  762. {
  763. return zipOpen3((const void*)pathname,append,NULL,NULL);
  764. }
  765. extern zipFile ZEXPORT zipOpen64 (const void* pathname, int append)
  766. {
  767. return zipOpen3(pathname,append,NULL,NULL);
  768. }
  769. int Write_LocalFileHeader(zip64_internal* zi, const char* filename, uInt size_extrafield_local, const void* extrafield_local);
  770. int Write_LocalFileHeader(zip64_internal* zi, const char* filename, uInt size_extrafield_local, const void* extrafield_local)
  771. {
  772. /* write the local header */
  773. int err;
  774. uInt size_filename = (uInt)strlen(filename);
  775. uInt size_extrafield = size_extrafield_local;
  776. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)LOCALHEADERMAGIC, 4);
  777. if (err==ZIP_OK)
  778. {
  779. if(zi->ci.zip64)
  780. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)45,2);/* version needed to extract */
  781. else
  782. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)20,2);/* version needed to extract */
  783. }
  784. if (err==ZIP_OK)
  785. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.flag,2);
  786. if (err==ZIP_OK)
  787. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.method,2);
  788. if (err==ZIP_OK)
  789. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.dosDate,4);
  790. // CRC / Compressed size / Uncompressed size will be filled in later and rewritten later
  791. if (err==ZIP_OK)
  792. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4); /* crc 32, unknown */
  793. if (err==ZIP_OK)
  794. {
  795. if(zi->ci.zip64)
  796. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0xFFFFFFFF,4); /* compressed size, unknown */
  797. else
  798. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4); /* compressed size, unknown */
  799. }
  800. if (err==ZIP_OK)
  801. {
  802. if(zi->ci.zip64)
  803. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0xFFFFFFFF,4); /* uncompressed size, unknown */
  804. else
  805. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4); /* uncompressed size, unknown */
  806. }
  807. if (err==ZIP_OK)
  808. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)size_filename,2);
  809. if(zi->ci.zip64)
  810. {
  811. size_extrafield += 20;
  812. }
  813. if (err==ZIP_OK)
  814. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)size_extrafield,2);
  815. if ((err==ZIP_OK) && (size_filename > 0))
  816. {
  817. if (ZWRITE64(zi->z_filefunc,zi->filestream,filename,size_filename)!=size_filename)
  818. err = ZIP_ERRNO;
  819. }
  820. if ((err==ZIP_OK) && (size_extrafield_local > 0))
  821. {
  822. if (ZWRITE64(zi->z_filefunc, zi->filestream, extrafield_local, size_extrafield_local) != size_extrafield_local)
  823. err = ZIP_ERRNO;
  824. }
  825. if ((err==ZIP_OK) && (zi->ci.zip64))
  826. {
  827. // write the Zip64 extended info
  828. short HeaderID = 1;
  829. short DataSize = 16;
  830. ZPOS64_T CompressedSize = 0;
  831. ZPOS64_T UncompressedSize = 0;
  832. // Remember position of Zip64 extended info for the local file header. (needed when we update size after done with file)
  833. zi->ci.pos_zip64extrainfo = ZTELL64(zi->z_filefunc,zi->filestream);
  834. #ifndef __clang_analyzer__
  835. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (short)HeaderID,2);
  836. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (short)DataSize,2);
  837. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (ZPOS64_T)UncompressedSize,8);
  838. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (ZPOS64_T)CompressedSize,8);
  839. #endif
  840. }
  841. return err;
  842. }
  843. /*
  844. NOTE.
  845. When writing RAW the ZIP64 extended information in extrafield_local and extrafield_global needs to be stripped
  846. before calling this function it can be done with zipRemoveExtraInfoBlock
  847. It is not done here because then we need to realloc a new buffer since parameters are 'const' and I want to minimize
  848. unnecessary allocations.
  849. */
  850. extern int ZEXPORT zipOpenNewFileInZip4_64 (zipFile file, const char* filename, const zip_fileinfo* zipfi,
  851. const void* extrafield_local, uInt size_extrafield_local,
  852. const void* extrafield_global, uInt size_extrafield_global,
  853. const char* comment, int method, int level, int raw,
  854. int windowBits,int memLevel, int strategy,
  855. const char* password, uLong crcForCrypting,
  856. uLong versionMadeBy, uLong flagBase, int zip64)
  857. {
  858. zip64_internal* zi;
  859. uInt size_filename;
  860. uInt size_comment;
  861. uInt i;
  862. int err = ZIP_OK;
  863. # ifdef NOCRYPT
  864. if (password != NULL)
  865. return ZIP_PARAMERROR;
  866. # endif
  867. if (file == NULL)
  868. return ZIP_PARAMERROR;
  869. #ifdef HAVE_BZIP2
  870. if ((method!=0) && (method!=Z_DEFLATED) && (method!=Z_BZIP2ED))
  871. return ZIP_PARAMERROR;
  872. #else
  873. if ((method!=0) && (method!=Z_DEFLATED))
  874. return ZIP_PARAMERROR;
  875. #endif
  876. zi = (zip64_internal*)file;
  877. if (zi->in_opened_file_inzip == 1)
  878. {
  879. err = zipCloseFileInZip (file);
  880. if (err != ZIP_OK)
  881. return err;
  882. }
  883. if (filename==NULL)
  884. filename="-";
  885. if (comment==NULL)
  886. size_comment = 0;
  887. else
  888. size_comment = (uInt)strlen(comment);
  889. size_filename = (uInt)strlen(filename);
  890. if (zipfi == NULL)
  891. zi->ci.dosDate = 0;
  892. else
  893. {
  894. if (zipfi->dosDate != 0)
  895. zi->ci.dosDate = zipfi->dosDate;
  896. else
  897. zi->ci.dosDate = zip64local_TmzDateToDosDate(&zipfi->tmz_date);
  898. }
  899. zi->ci.flag = flagBase;
  900. if (level==8 || level==9)
  901. zi->ci.flag |= 2;
  902. if (level==2)
  903. zi->ci.flag |= 4;
  904. if (level==1)
  905. zi->ci.flag |= 6;
  906. if (password != NULL)
  907. zi->ci.flag |= 1;
  908. zi->ci.crc32 = 0;
  909. zi->ci.method = method;
  910. zi->ci.encrypt = 0;
  911. zi->ci.stream_initialised = 0;
  912. zi->ci.pos_in_buffered_data = 0;
  913. zi->ci.raw = raw;
  914. zi->ci.pos_local_header = ZTELL64(zi->z_filefunc,zi->filestream);
  915. zi->ci.size_centralheader = SIZECENTRALHEADER + size_filename + size_extrafield_global + size_comment;
  916. zi->ci.size_centralExtraFree = 32; // Extra space we have reserved in case we need to add ZIP64 extra info data
  917. zi->ci.central_header = (char*)ALLOC((uInt)zi->ci.size_centralheader + zi->ci.size_centralExtraFree);
  918. zi->ci.size_centralExtra = size_extrafield_global;
  919. zip64local_putValue_inmemory(zi->ci.central_header,(uLong)CENTRALHEADERMAGIC,4);
  920. /* version info */
  921. zip64local_putValue_inmemory(zi->ci.central_header+4,(uLong)versionMadeBy,2);
  922. zip64local_putValue_inmemory(zi->ci.central_header+6,(uLong)20,2);
  923. zip64local_putValue_inmemory(zi->ci.central_header+8,(uLong)zi->ci.flag,2);
  924. zip64local_putValue_inmemory(zi->ci.central_header+10,(uLong)zi->ci.method,2);
  925. zip64local_putValue_inmemory(zi->ci.central_header+12,(uLong)zi->ci.dosDate,4);
  926. zip64local_putValue_inmemory(zi->ci.central_header+16,(uLong)0,4); /*crc*/
  927. zip64local_putValue_inmemory(zi->ci.central_header+20,(uLong)0,4); /*compr size*/
  928. zip64local_putValue_inmemory(zi->ci.central_header+24,(uLong)0,4); /*uncompr size*/
  929. zip64local_putValue_inmemory(zi->ci.central_header+28,(uLong)size_filename,2);
  930. zip64local_putValue_inmemory(zi->ci.central_header+30,(uLong)size_extrafield_global,2);
  931. zip64local_putValue_inmemory(zi->ci.central_header+32,(uLong)size_comment,2);
  932. zip64local_putValue_inmemory(zi->ci.central_header+34,(uLong)0,2); /*disk nm start*/
  933. if (zipfi==NULL)
  934. zip64local_putValue_inmemory(zi->ci.central_header+36,(uLong)0,2);
  935. else
  936. zip64local_putValue_inmemory(zi->ci.central_header+36,(uLong)zipfi->internal_fa,2);
  937. if (zipfi==NULL)
  938. zip64local_putValue_inmemory(zi->ci.central_header+38,(uLong)0,4);
  939. else
  940. zip64local_putValue_inmemory(zi->ci.central_header+38,(uLong)zipfi->external_fa,4);
  941. if(zi->ci.pos_local_header >= 0xffffffff)
  942. zip64local_putValue_inmemory(zi->ci.central_header+42,(uLong)0xffffffff,4);
  943. else
  944. zip64local_putValue_inmemory(zi->ci.central_header+42,(uLong)zi->ci.pos_local_header - zi->add_position_when_writting_offset,4);
  945. for (i=0;i<size_filename;i++)
  946. *(zi->ci.central_header+SIZECENTRALHEADER+i) = *(filename+i);
  947. for (i=0;i<size_extrafield_global;i++)
  948. *(zi->ci.central_header+SIZECENTRALHEADER+size_filename+i) =
  949. *(((const char*)extrafield_global)+i);
  950. for (i=0;i<size_comment;i++)
  951. *(zi->ci.central_header+SIZECENTRALHEADER+size_filename+
  952. size_extrafield_global+i) = *(comment+i);
  953. if (zi->ci.central_header == NULL)
  954. return ZIP_INTERNALERROR;
  955. zi->ci.zip64 = zip64;
  956. zi->ci.totalCompressedData = 0;
  957. zi->ci.totalUncompressedData = 0;
  958. zi->ci.pos_zip64extrainfo = 0;
  959. err = Write_LocalFileHeader(zi, filename, size_extrafield_local, extrafield_local);
  960. #ifdef HAVE_BZIP2
  961. zi->ci.bstream.avail_in = (uInt)0;
  962. zi->ci.bstream.avail_out = (uInt)Z_BUFSIZE;
  963. zi->ci.bstream.next_out = (char*)zi->ci.buffered_data;
  964. zi->ci.bstream.total_in_hi32 = 0;
  965. zi->ci.bstream.total_in_lo32 = 0;
  966. zi->ci.bstream.total_out_hi32 = 0;
  967. zi->ci.bstream.total_out_lo32 = 0;
  968. #endif
  969. zi->ci.stream.avail_in = (uInt)0;
  970. zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
  971. zi->ci.stream.next_out = zi->ci.buffered_data;
  972. zi->ci.stream.total_in = 0;
  973. zi->ci.stream.total_out = 0;
  974. zi->ci.stream.data_type = Z_BINARY;
  975. #ifdef HAVE_BZIP2
  976. if ((err==ZIP_OK) && (zi->ci.method == Z_DEFLATED || zi->ci.method == Z_BZIP2ED) && (!zi->ci.raw))
  977. #else
  978. if ((err==ZIP_OK) && (zi->ci.method == Z_DEFLATED) && (!zi->ci.raw))
  979. #endif
  980. {
  981. if(zi->ci.method == Z_DEFLATED)
  982. {
  983. zi->ci.stream.zalloc = (alloc_func)0;
  984. zi->ci.stream.zfree = (free_func)0;
  985. zi->ci.stream.opaque = (voidpf)0;
  986. if (windowBits>0)
  987. windowBits = -windowBits;
  988. err = deflateInit2(&zi->ci.stream, level, Z_DEFLATED, windowBits, memLevel, strategy);
  989. if (err==Z_OK)
  990. zi->ci.stream_initialised = Z_DEFLATED;
  991. }
  992. else if(zi->ci.method == Z_BZIP2ED)
  993. {
  994. #ifdef HAVE_BZIP2
  995. // Init BZip stuff here
  996. zi->ci.bstream.bzalloc = 0;
  997. zi->ci.bstream.bzfree = 0;
  998. zi->ci.bstream.opaque = (voidpf)0;
  999. err = BZ2_bzCompressInit(&zi->ci.bstream, level, 0,35);
  1000. if(err == BZ_OK)
  1001. zi->ci.stream_initialised = Z_BZIP2ED;
  1002. #endif
  1003. }
  1004. }
  1005. # ifndef NOCRYPT
  1006. zi->ci.crypt_header_size = 0;
  1007. if ((err==Z_OK) && (password != NULL))
  1008. {
  1009. unsigned char bufHead[RAND_HEAD_LEN];
  1010. unsigned int sizeHead;
  1011. zi->ci.encrypt = 1;
  1012. zi->ci.pcrc_32_tab = (const unsigned long*)get_crc_table();
  1013. /*init_keys(password,zi->ci.keys,zi->ci.pcrc_32_tab);*/
  1014. sizeHead=crypthead(password,bufHead,RAND_HEAD_LEN,zi->ci.keys,zi->ci.pcrc_32_tab,crcForCrypting);
  1015. zi->ci.crypt_header_size = sizeHead;
  1016. if (ZWRITE64(zi->z_filefunc,zi->filestream,bufHead,sizeHead) != sizeHead)
  1017. err = ZIP_ERRNO;
  1018. }
  1019. # endif
  1020. if (err==Z_OK)
  1021. zi->in_opened_file_inzip = 1;
  1022. return err;
  1023. }
  1024. extern int ZEXPORT zipOpenNewFileInZip4 (zipFile file, const char* filename, const zip_fileinfo* zipfi,
  1025. const void* extrafield_local, uInt size_extrafield_local,
  1026. const void* extrafield_global, uInt size_extrafield_global,
  1027. const char* comment, int method, int level, int raw,
  1028. int windowBits,int memLevel, int strategy,
  1029. const char* password, uLong crcForCrypting,
  1030. uLong versionMadeBy, uLong flagBase)
  1031. {
  1032. return zipOpenNewFileInZip4_64 (file, filename, zipfi,
  1033. extrafield_local, size_extrafield_local,
  1034. extrafield_global, size_extrafield_global,
  1035. comment, method, level, raw,
  1036. windowBits, memLevel, strategy,
  1037. password, crcForCrypting, versionMadeBy, flagBase, 0);
  1038. }
  1039. extern int ZEXPORT zipOpenNewFileInZip3 (zipFile file, const char* filename, const zip_fileinfo* zipfi,
  1040. const void* extrafield_local, uInt size_extrafield_local,
  1041. const void* extrafield_global, uInt size_extrafield_global,
  1042. const char* comment, int method, int level, int raw,
  1043. int windowBits,int memLevel, int strategy,
  1044. const char* password, uLong crcForCrypting)
  1045. {
  1046. return zipOpenNewFileInZip4_64 (file, filename, zipfi,
  1047. extrafield_local, size_extrafield_local,
  1048. extrafield_global, size_extrafield_global,
  1049. comment, method, level, raw,
  1050. windowBits, memLevel, strategy,
  1051. password, crcForCrypting, VERSIONMADEBY, 0, 0);
  1052. }
  1053. extern int ZEXPORT zipOpenNewFileInZip3_64(zipFile file, const char* filename, const zip_fileinfo* zipfi,
  1054. const void* extrafield_local, uInt size_extrafield_local,
  1055. const void* extrafield_global, uInt size_extrafield_global,
  1056. const char* comment, int method, int level, int raw,
  1057. int windowBits,int memLevel, int strategy,
  1058. const char* password, uLong crcForCrypting, int zip64)
  1059. {
  1060. return zipOpenNewFileInZip4_64 (file, filename, zipfi,
  1061. extrafield_local, size_extrafield_local,
  1062. extrafield_global, size_extrafield_global,
  1063. comment, method, level, raw,
  1064. windowBits, memLevel, strategy,
  1065. password, crcForCrypting, VERSIONMADEBY, 0, zip64);
  1066. }
  1067. extern int ZEXPORT zipOpenNewFileInZip2(zipFile file, const char* filename, const zip_fileinfo* zipfi,
  1068. const void* extrafield_local, uInt size_extrafield_local,
  1069. const void* extrafield_global, uInt size_extrafield_global,
  1070. const char* comment, int method, int level, int raw)
  1071. {
  1072. return zipOpenNewFileInZip4_64 (file, filename, zipfi,
  1073. extrafield_local, size_extrafield_local,
  1074. extrafield_global, size_extrafield_global,
  1075. comment, method, level, raw,
  1076. -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY,
  1077. NULL, 0, VERSIONMADEBY, 0, 0);
  1078. }
  1079. extern int ZEXPORT zipOpenNewFileInZip2_64(zipFile file, const char* filename, const zip_fileinfo* zipfi,
  1080. const void* extrafield_local, uInt size_extrafield_local,
  1081. const void* extrafield_global, uInt size_extrafield_global,
  1082. const char* comment, int method, int level, int raw, int zip64)
  1083. {
  1084. return zipOpenNewFileInZip4_64 (file, filename, zipfi,
  1085. extrafield_local, size_extrafield_local,
  1086. extrafield_global, size_extrafield_global,
  1087. comment, method, level, raw,
  1088. -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY,
  1089. NULL, 0, VERSIONMADEBY, 0, zip64);
  1090. }
  1091. extern int ZEXPORT zipOpenNewFileInZip64 (zipFile file, const char* filename, const zip_fileinfo* zipfi,
  1092. const void* extrafield_local, uInt size_extrafield_local,
  1093. const void*extrafield_global, uInt size_extrafield_global,
  1094. const char* comment, int method, int level, int zip64)
  1095. {
  1096. return zipOpenNewFileInZip4_64 (file, filename, zipfi,
  1097. extrafield_local, size_extrafield_local,
  1098. extrafield_global, size_extrafield_global,
  1099. comment, method, level, 0,
  1100. -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY,
  1101. NULL, 0, VERSIONMADEBY, 0, zip64);
  1102. }
  1103. extern int ZEXPORT zipOpenNewFileInZip (zipFile file, const char* filename, const zip_fileinfo* zipfi,
  1104. const void* extrafield_local, uInt size_extrafield_local,
  1105. const void*extrafield_global, uInt size_extrafield_global,
  1106. const char* comment, int method, int level)
  1107. {
  1108. return zipOpenNewFileInZip4_64 (file, filename, zipfi,
  1109. extrafield_local, size_extrafield_local,
  1110. extrafield_global, size_extrafield_global,
  1111. comment, method, level, 0,
  1112. -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY,
  1113. NULL, 0, VERSIONMADEBY, 0, 0);
  1114. }
  1115. local int zip64FlushWriteBuffer(zip64_internal* zi)
  1116. {
  1117. int err=ZIP_OK;
  1118. if (zi->ci.encrypt != 0)
  1119. {
  1120. #ifndef NOCRYPT
  1121. uInt i;
  1122. int t;
  1123. for (i=0;i<zi->ci.pos_in_buffered_data;i++)
  1124. zi->ci.buffered_data[i] = zencode(zi->ci.keys, zi->ci.pcrc_32_tab, zi->ci.buffered_data[i],t);
  1125. #endif
  1126. }
  1127. if (ZWRITE64(zi->z_filefunc,zi->filestream,zi->ci.buffered_data,zi->ci.pos_in_buffered_data) != zi->ci.pos_in_buffered_data)
  1128. err = ZIP_ERRNO;
  1129. zi->ci.totalCompressedData += zi->ci.pos_in_buffered_data;
  1130. #ifdef HAVE_BZIP2
  1131. if(zi->ci.method == Z_BZIP2ED)
  1132. {
  1133. zi->ci.totalUncompressedData += zi->ci.bstream.total_in_lo32;
  1134. zi->ci.bstream.total_in_lo32 = 0;
  1135. zi->ci.bstream.total_in_hi32 = 0;
  1136. }
  1137. else
  1138. #endif
  1139. {
  1140. zi->ci.totalUncompressedData += zi->ci.stream.total_in;
  1141. zi->ci.stream.total_in = 0;
  1142. }
  1143. zi->ci.pos_in_buffered_data = 0;
  1144. return err;
  1145. }
  1146. extern int ZEXPORT zipWriteInFileInZip (zipFile file,const void* buf,unsigned int len)
  1147. {
  1148. zip64_internal* zi;
  1149. int err=ZIP_OK;
  1150. if (file == NULL)
  1151. return ZIP_PARAMERROR;
  1152. zi = (zip64_internal*)file;
  1153. if (zi->in_opened_file_inzip == 0)
  1154. return ZIP_PARAMERROR;
  1155. zi->ci.crc32 = crc32(zi->ci.crc32,buf,(uInt)len);
  1156. #ifdef HAVE_BZIP2
  1157. if(zi->ci.method == Z_BZIP2ED && (!zi->ci.raw))
  1158. {
  1159. zi->ci.bstream.next_in = (void*)buf;
  1160. zi->ci.bstream.avail_in = len;
  1161. err = BZ_RUN_OK;
  1162. while ((err==BZ_RUN_OK) && (zi->ci.bstream.avail_in>0))
  1163. {
  1164. if (zi->ci.bstream.avail_out == 0)
  1165. {
  1166. if (zip64FlushWriteBuffer(zi) == ZIP_ERRNO)
  1167. err = ZIP_ERRNO;
  1168. zi->ci.bstream.avail_out = (uInt)Z_BUFSIZE;
  1169. zi->ci.bstream.next_out = (char*)zi->ci.buffered_data;
  1170. }
  1171. if(err != BZ_RUN_OK)
  1172. break;
  1173. if ((zi->ci.method == Z_BZIP2ED) && (!zi->ci.raw))
  1174. {
  1175. uLong uTotalOutBefore_lo = zi->ci.bstream.total_out_lo32;
  1176. // uLong uTotalOutBefore_hi = zi->ci.bstream.total_out_hi32;
  1177. err=BZ2_bzCompress(&zi->ci.bstream, BZ_RUN);
  1178. zi->ci.pos_in_buffered_data += (uInt)(zi->ci.bstream.total_out_lo32 - uTotalOutBefore_lo) ;
  1179. }
  1180. }
  1181. if(err == BZ_RUN_OK)
  1182. err = ZIP_OK;
  1183. }
  1184. else
  1185. #endif
  1186. {
  1187. zi->ci.stream.next_in = (Bytef*)buf;
  1188. zi->ci.stream.avail_in = len;
  1189. while ((err==ZIP_OK) && (zi->ci.stream.avail_in>0))
  1190. {
  1191. if (zi->ci.stream.avail_out == 0)
  1192. {
  1193. if (zip64FlushWriteBuffer(zi) == ZIP_ERRNO)
  1194. err = ZIP_ERRNO;
  1195. zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
  1196. zi->ci.stream.next_out = zi->ci.buffered_data;
  1197. }
  1198. if(err != ZIP_OK)
  1199. break;
  1200. if ((zi->ci.method == Z_DEFLATED) && (!zi->ci.raw))
  1201. {
  1202. uLong uTotalOutBefore = zi->ci.stream.total_out;
  1203. err=deflate(&zi->ci.stream, Z_NO_FLUSH);
  1204. if(uTotalOutBefore > zi->ci.stream.total_out)
  1205. {
  1206. int bBreak = 0;
  1207. bBreak++;
  1208. }
  1209. zi->ci.pos_in_buffered_data += (uInt)(zi->ci.stream.total_out - uTotalOutBefore) ;
  1210. }
  1211. else
  1212. {
  1213. uInt copy_this,i;
  1214. if (zi->ci.stream.avail_in < zi->ci.stream.avail_out)
  1215. copy_this = zi->ci.stream.avail_in;
  1216. else
  1217. copy_this = zi->ci.stream.avail_out;
  1218. for (i = 0; i < copy_this; i++)
  1219. *(((char*)zi->ci.stream.next_out)+i) =
  1220. *(((const char*)zi->ci.stream.next_in)+i);
  1221. {
  1222. zi->ci.stream.avail_in -= copy_this;
  1223. zi->ci.stream.avail_out-= copy_this;
  1224. zi->ci.stream.next_in+= copy_this;
  1225. zi->ci.stream.next_out+= copy_this;
  1226. zi->ci.stream.total_in+= copy_this;
  1227. zi->ci.stream.total_out+= copy_this;
  1228. zi->ci.pos_in_buffered_data += copy_this;
  1229. }
  1230. }
  1231. }// while(...)
  1232. }
  1233. return err;
  1234. }
  1235. extern int ZEXPORT zipCloseFileInZipRaw (zipFile file, uLong uncompressed_size, uLong crc32)
  1236. {
  1237. return zipCloseFileInZipRaw64 (file, uncompressed_size, crc32);
  1238. }
  1239. extern int ZEXPORT zipCloseFileInZipRaw64 (zipFile file, ZPOS64_T uncompressed_size, uLong crc32)
  1240. {
  1241. zip64_internal* zi;
  1242. ZPOS64_T compressed_size;
  1243. uLong invalidValue = 0xffffffff;
  1244. short datasize = 0;
  1245. int err=ZIP_OK;
  1246. if (file == NULL)
  1247. return ZIP_PARAMERROR;
  1248. zi = (zip64_internal*)file;
  1249. if (zi->in_opened_file_inzip == 0)
  1250. return ZIP_PARAMERROR;
  1251. zi->ci.stream.avail_in = 0;
  1252. if ((zi->ci.method == Z_DEFLATED) && (!zi->ci.raw))
  1253. {
  1254. while (err==ZIP_OK)
  1255. {
  1256. uLong uTotalOutBefore;
  1257. if (zi->ci.stream.avail_out == 0)
  1258. {
  1259. if (zip64FlushWriteBuffer(zi) == ZIP_ERRNO)
  1260. {
  1261. #ifndef __clang_analyzer__
  1262. err = ZIP_ERRNO;
  1263. #endif
  1264. }
  1265. zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
  1266. #ifndef __clang_analyzer__
  1267. zi->ci.stream.next_out = zi->ci.buffered_data;
  1268. #endif
  1269. }
  1270. uTotalOutBefore = zi->ci.stream.total_out;
  1271. err=deflate(&zi->ci.stream, Z_FINISH);
  1272. zi->ci.pos_in_buffered_data += (uInt)(zi->ci.stream.total_out - uTotalOutBefore) ;
  1273. }
  1274. }
  1275. else if ((zi->ci.method == Z_BZIP2ED) && (!zi->ci.raw))
  1276. {
  1277. #ifdef HAVE_BZIP2
  1278. err = BZ_FINISH_OK;
  1279. while (err==BZ_FINISH_OK)
  1280. {
  1281. uLong uTotalOutBefore;
  1282. if (zi->ci.bstream.avail_out == 0)
  1283. {
  1284. if (zip64FlushWriteBuffer(zi) == ZIP_ERRNO)
  1285. err = ZIP_ERRNO;
  1286. zi->ci.bstream.avail_out = (uInt)Z_BUFSIZE;
  1287. zi->ci.bstream.next_out = (char*)zi->ci.buffered_data;
  1288. }
  1289. uTotalOutBefore = zi->ci.bstream.total_out_lo32;
  1290. err=BZ2_bzCompress(&zi->ci.bstream, BZ_FINISH);
  1291. if(err == BZ_STREAM_END)
  1292. err = Z_STREAM_END;
  1293. zi->ci.pos_in_buffered_data += (uInt)(zi->ci.bstream.total_out_lo32 - uTotalOutBefore);
  1294. }
  1295. if(err == BZ_FINISH_OK)
  1296. err = ZIP_OK;
  1297. #endif
  1298. }
  1299. if (err==Z_STREAM_END)
  1300. err=ZIP_OK; /* this is normal */
  1301. if ((zi->ci.pos_in_buffered_data>0) && (err==ZIP_OK))
  1302. {
  1303. if (zip64FlushWriteBuffer(zi)==ZIP_ERRNO)
  1304. err = ZIP_ERRNO;
  1305. }
  1306. if ((zi->ci.method == Z_DEFLATED) && (!zi->ci.raw))
  1307. {
  1308. int tmp_err = deflateEnd(&zi->ci.stream);
  1309. if (err == ZIP_OK)
  1310. err = tmp_err;
  1311. zi->ci.stream_initialised = 0;
  1312. }
  1313. #ifdef HAVE_BZIP2
  1314. else if((zi->ci.method == Z_BZIP2ED) && (!zi->ci.raw))
  1315. {
  1316. int tmperr = BZ2_bzCompressEnd(&zi->ci.bstream);
  1317. if (err==ZIP_OK)
  1318. err = tmperr;
  1319. zi->ci.stream_initialised = 0;
  1320. }
  1321. #endif
  1322. if (!zi->ci.raw)
  1323. {
  1324. crc32 = (uLong)zi->ci.crc32;
  1325. uncompressed_size = zi->ci.totalUncompressedData;
  1326. }
  1327. compressed_size = zi->ci.totalCompressedData;
  1328. # ifndef NOCRYPT
  1329. compressed_size += zi->ci.crypt_header_size;
  1330. # endif
  1331. // update Current Item crc and sizes,
  1332. if(compressed_size >= 0xffffffff || uncompressed_size >= 0xffffffff || zi->ci.pos_local_header >= 0xffffffff)
  1333. {
  1334. /*version Made by*/
  1335. zip64local_putValue_inmemory(zi->ci.central_header+4,(uLong)45,2);
  1336. /*version needed*/
  1337. zip64local_putValue_inmemory(zi->ci.central_header+6,(uLong)45,2);
  1338. }
  1339. zip64local_putValue_inmemory(zi->ci.central_header+16,crc32,4); /*crc*/
  1340. if(compressed_size >= 0xffffffff)
  1341. zip64local_putValue_inmemory(zi->ci.central_header+20, invalidValue,4); /*compr size*/
  1342. else
  1343. zip64local_putValue_inmemory(zi->ci.central_header+20, compressed_size,4); /*compr size*/
  1344. /// set internal file attributes field
  1345. if (zi->ci.stream.data_type == Z_ASCII)
  1346. zip64local_putValue_inmemory(zi->ci.central_header+36,(uLong)Z_ASCII,2);
  1347. if(uncompressed_size >= 0xffffffff)
  1348. zip64local_putValue_inmemory(zi->ci.central_header+24, invalidValue,4); /*uncompr size*/
  1349. else
  1350. zip64local_putValue_inmemory(zi->ci.central_header+24, uncompressed_size,4); /*uncompr size*/
  1351. // Add ZIP64 extra info field for uncompressed size
  1352. if(uncompressed_size >= 0xffffffff)
  1353. datasize += 8;
  1354. // Add ZIP64 extra info field for compressed size
  1355. if(compressed_size >= 0xffffffff)
  1356. datasize += 8;
  1357. // Add ZIP64 extra info field for relative offset to local file header of current file
  1358. if(zi->ci.pos_local_header >= 0xffffffff)
  1359. datasize += 8;
  1360. if(datasize > 0)
  1361. {
  1362. char* p = NULL;
  1363. if((uLong)(datasize + 4) > zi->ci.size_centralExtraFree)
  1364. {
  1365. // we can not write more data to the buffer that we have room for.
  1366. return ZIP_BADZIPFILE;
  1367. }
  1368. p = zi->ci.central_header + zi->ci.size_centralheader;
  1369. // Add Extra Information Header for 'ZIP64 information'
  1370. zip64local_putValue_inmemory(p, 0x0001, 2); // HeaderID
  1371. p += 2;
  1372. zip64local_putValue_inmemory(p, datasize, 2); // DataSize
  1373. p += 2;
  1374. if(uncompressed_size >= 0xffffffff)
  1375. {
  1376. zip64local_putValue_inmemory(p, uncompressed_size, 8);
  1377. p += 8;
  1378. }
  1379. if(compressed_size >= 0xffffffff)
  1380. {
  1381. zip64local_putValue_inmemory(p, compressed_size, 8);
  1382. p += 8;
  1383. }
  1384. if(zi->ci.pos_local_header >= 0xffffffff)
  1385. {
  1386. zip64local_putValue_inmemory(p, zi->ci.pos_local_header, 8);
  1387. #ifndef __clang_analyzer__
  1388. p += 8;
  1389. #endif
  1390. }
  1391. // Update how much extra free space we got in the memory buffer
  1392. // and increase the centralheader size so the new ZIP64 fields are included
  1393. // ( 4 below is the size of HeaderID and DataSize field )
  1394. zi->ci.size_centralExtraFree -= datasize + 4;
  1395. zi->ci.size_centralheader += datasize + 4;
  1396. // Update the extra info size field
  1397. zi->ci.size_centralExtra += datasize + 4;
  1398. zip64local_putValue_inmemory(zi->ci.central_header+30,(uLong)zi->ci.size_centralExtra,2);
  1399. }
  1400. if (err==ZIP_OK)
  1401. err = add_data_in_datablock(&zi->central_dir, zi->ci.central_header, (uLong)zi->ci.size_centralheader);
  1402. free(zi->ci.central_header);
  1403. if (err==ZIP_OK)
  1404. {
  1405. // Update the LocalFileHeader with the new values.
  1406. ZPOS64_T cur_pos_inzip = ZTELL64(zi->z_filefunc,zi->filestream);
  1407. if (ZSEEK64(zi->z_filefunc,zi->filestream, zi->ci.pos_local_header + 14,ZLIB_FILEFUNC_SEEK_SET)!=0)
  1408. err = ZIP_ERRNO;
  1409. if (err==ZIP_OK)
  1410. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,crc32,4); /* crc 32, unknown */
  1411. if(uncompressed_size >= 0xffffffff)
  1412. {
  1413. if(zi->ci.pos_zip64extrainfo > 0)
  1414. {
  1415. // Update the size in the ZIP64 extended field.
  1416. if (ZSEEK64(zi->z_filefunc,zi->filestream, zi->ci.pos_zip64extrainfo + 4,ZLIB_FILEFUNC_SEEK_SET)!=0)
  1417. err = ZIP_ERRNO;
  1418. if (err==ZIP_OK) /* compressed size, unknown */
  1419. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, uncompressed_size, 8);
  1420. if (err==ZIP_OK) /* uncompressed size, unknown */
  1421. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, compressed_size, 8);
  1422. }
  1423. }
  1424. else
  1425. {
  1426. if (err==ZIP_OK) /* compressed size, unknown */
  1427. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,compressed_size,4);
  1428. if (err==ZIP_OK) /* uncompressed size, unknown */
  1429. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,uncompressed_size,4);
  1430. }
  1431. if (ZSEEK64(zi->z_filefunc,zi->filestream, cur_pos_inzip,ZLIB_FILEFUNC_SEEK_SET)!=0)
  1432. err = ZIP_ERRNO;
  1433. }
  1434. zi->number_entry ++;
  1435. zi->in_opened_file_inzip = 0;
  1436. return err;
  1437. }
  1438. extern int ZEXPORT zipCloseFileInZip (zipFile file)
  1439. {
  1440. return zipCloseFileInZipRaw (file,0,0);
  1441. }
  1442. int Write_Zip64EndOfCentralDirectoryLocator(zip64_internal* zi, ZPOS64_T zip64eocd_pos_inzip);
  1443. int Write_Zip64EndOfCentralDirectoryLocator(zip64_internal* zi, ZPOS64_T zip64eocd_pos_inzip)
  1444. {
  1445. int err = ZIP_OK;
  1446. ZPOS64_T pos = zip64eocd_pos_inzip - zi->add_position_when_writting_offset;
  1447. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)ZIP64ENDLOCHEADERMAGIC,4);
  1448. /*num disks*/
  1449. if (err==ZIP_OK) /* number of the disk with the start of the central directory */
  1450. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4);
  1451. /*relative offset*/
  1452. if (err==ZIP_OK) /* Relative offset to the Zip64EndOfCentralDirectory */
  1453. err = zip64local_putValue(&zi->z_filefunc,zi->filestream, pos,8);
  1454. /*total disks*/ /* Do not support spawning of disk so always say 1 here*/
  1455. if (err==ZIP_OK) /* number of the disk with the start of the central directory */
  1456. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)1,4);
  1457. return err;
  1458. }
  1459. int Write_Zip64EndOfCentralDirectoryRecord(zip64_internal* zi, uLong size_centraldir, ZPOS64_T centraldir_pos_inzip);
  1460. int Write_Zip64EndOfCentralDirectoryRecord(zip64_internal* zi, uLong size_centraldir, ZPOS64_T centraldir_pos_inzip)
  1461. {
  1462. int err = ZIP_OK;
  1463. uLong Zip64DataSize = 44;
  1464. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)ZIP64ENDHEADERMAGIC,4);
  1465. if (err==ZIP_OK) /* size of this 'zip64 end of central directory' */
  1466. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(ZPOS64_T)Zip64DataSize,8); // why ZPOS64_T of this ?
  1467. if (err==ZIP_OK) /* version made by */
  1468. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)45,2);
  1469. if (err==ZIP_OK) /* version needed */
  1470. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)45,2);
  1471. if (err==ZIP_OK) /* number of this disk */
  1472. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4);
  1473. if (err==ZIP_OK) /* number of the disk with the start of the central directory */
  1474. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4);
  1475. if (err==ZIP_OK) /* total number of entries in the central dir on this disk */
  1476. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, zi->number_entry, 8);
  1477. if (err==ZIP_OK) /* total number of entries in the central dir */
  1478. err = zip64local_putValue(&zi->z_filefunc, zi->filestream, zi->number_entry, 8);
  1479. if (err==ZIP_OK) /* size of the central directory */
  1480. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(ZPOS64_T)size_centraldir,8);
  1481. if (err==ZIP_OK) /* offset of start of central directory with respect to the starting disk number */
  1482. {
  1483. ZPOS64_T pos = centraldir_pos_inzip - zi->add_position_when_writting_offset;
  1484. err = zip64local_putValue(&zi->z_filefunc,zi->filestream, (ZPOS64_T)pos,8);
  1485. }
  1486. return err;
  1487. }
  1488. int Write_EndOfCentralDirectoryRecord(zip64_internal* zi, uLong size_centraldir, ZPOS64_T centraldir_pos_inzip);
  1489. int Write_EndOfCentralDirectoryRecord(zip64_internal* zi, uLong size_centraldir, ZPOS64_T centraldir_pos_inzip)
  1490. {
  1491. int err = ZIP_OK;
  1492. /*signature*/
  1493. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)ENDHEADERMAGIC,4);
  1494. if (err==ZIP_OK) /* number of this disk */
  1495. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,2);
  1496. if (err==ZIP_OK) /* number of the disk with the start of the central directory */
  1497. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,2);
  1498. if (err==ZIP_OK) /* total number of entries in the central dir on this disk */
  1499. {
  1500. {
  1501. if(zi->number_entry >= 0xFFFF)
  1502. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0xffff,2); // use value in ZIP64 record
  1503. else
  1504. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->number_entry,2);
  1505. }
  1506. }
  1507. if (err==ZIP_OK) /* total number of entries in the central dir */
  1508. {
  1509. if(zi->number_entry >= 0xFFFF)
  1510. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0xffff,2); // use value in ZIP64 record
  1511. else
  1512. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->number_entry,2);
  1513. }
  1514. if (err==ZIP_OK) /* size of the central directory */
  1515. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)size_centraldir,4);
  1516. if (err==ZIP_OK) /* offset of start of central directory with respect to the starting disk number */
  1517. {
  1518. ZPOS64_T pos = centraldir_pos_inzip - zi->add_position_when_writting_offset;
  1519. if(pos >= 0xffffffff)
  1520. {
  1521. err = zip64local_putValue(&zi->z_filefunc,zi->filestream, (uLong)0xffffffff,4);
  1522. }
  1523. else
  1524. err = zip64local_putValue(&zi->z_filefunc,zi->filestream, (uLong)(centraldir_pos_inzip - zi->add_position_when_writting_offset),4);
  1525. }
  1526. return err;
  1527. }
  1528. int Write_GlobalComment(zip64_internal* zi, const char* global_comment);
  1529. int Write_GlobalComment(zip64_internal* zi, const char* global_comment)
  1530. {
  1531. int err = ZIP_OK;
  1532. uInt size_global_comment = 0;
  1533. if(global_comment != NULL)
  1534. size_global_comment = (uInt)strlen(global_comment);
  1535. err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)size_global_comment,2);
  1536. if (err == ZIP_OK && size_global_comment > 0)
  1537. {
  1538. if (ZWRITE64(zi->z_filefunc,zi->filestream, global_comment, size_global_comment) != size_global_comment)
  1539. err = ZIP_ERRNO;
  1540. }
  1541. return err;
  1542. }
  1543. extern int ZEXPORT zipClose (zipFile file, const char* global_comment)
  1544. {
  1545. zip64_internal* zi;
  1546. int err = 0;
  1547. uLong size_centraldir = 0;
  1548. ZPOS64_T centraldir_pos_inzip;
  1549. ZPOS64_T pos;
  1550. if (file == NULL)
  1551. return ZIP_PARAMERROR;
  1552. zi = (zip64_internal*)file;
  1553. if (zi->in_opened_file_inzip == 1)
  1554. {
  1555. err = zipCloseFileInZip (file);
  1556. }
  1557. #ifndef NO_ADDFILEINEXISTINGZIP
  1558. if (global_comment==NULL)
  1559. global_comment = zi->globalcomment;
  1560. #endif
  1561. centraldir_pos_inzip = ZTELL64(zi->z_filefunc,zi->filestream);
  1562. if (err==ZIP_OK)
  1563. {
  1564. linkedlist_datablock_internal* ldi = zi->central_dir.first_block;
  1565. while (ldi!=NULL)
  1566. {
  1567. if ((err==ZIP_OK) && (ldi->filled_in_this_block>0))
  1568. {
  1569. if (ZWRITE64(zi->z_filefunc,zi->filestream, ldi->data, ldi->filled_in_this_block) != ldi->filled_in_this_block)
  1570. err = ZIP_ERRNO;
  1571. }
  1572. size_centraldir += ldi->filled_in_this_block;
  1573. ldi = ldi->next_datablock;
  1574. }
  1575. }
  1576. free_linkedlist(&(zi->central_dir));
  1577. pos = centraldir_pos_inzip - zi->add_position_when_writting_offset;
  1578. if(pos >= 0xffffffff)
  1579. {
  1580. ZPOS64_T Zip64EOCDpos = ZTELL64(zi->z_filefunc,zi->filestream);
  1581. Write_Zip64EndOfCentralDirectoryRecord(zi, size_centraldir, centraldir_pos_inzip);
  1582. Write_Zip64EndOfCentralDirectoryLocator(zi, Zip64EOCDpos);
  1583. }
  1584. if (err==ZIP_OK)
  1585. err = Write_EndOfCentralDirectoryRecord(zi, size_centraldir, centraldir_pos_inzip);
  1586. if(err == ZIP_OK)
  1587. err = Write_GlobalComment(zi, global_comment);
  1588. if (ZCLOSE64(zi->z_filefunc,zi->filestream) != 0)
  1589. if (err == ZIP_OK)
  1590. err = ZIP_ERRNO;
  1591. #ifndef NO_ADDFILEINEXISTINGZIP
  1592. TRYFREE(zi->globalcomment);
  1593. #endif
  1594. TRYFREE(zi);
  1595. return err;
  1596. }
  1597. extern int ZEXPORT zipRemoveExtraInfoBlock (char* pData, int* dataLen, short sHeader)
  1598. {
  1599. char* p = pData;
  1600. int size = 0;
  1601. char* pNewHeader;
  1602. char* pTmp;
  1603. short header;
  1604. short dataSize;
  1605. int retVal = ZIP_OK;
  1606. if(pData == NULL || *dataLen < 4)
  1607. return ZIP_PARAMERROR;
  1608. pNewHeader = (char*)ALLOC(*dataLen);
  1609. pTmp = pNewHeader;
  1610. while(p < (pData + *dataLen))
  1611. {
  1612. header = *(short*)p;
  1613. dataSize = *(((short*)p)+1);
  1614. if( header == sHeader ) // Header found.
  1615. {
  1616. p += dataSize + 4; // skip it. do not copy to temp buffer
  1617. }
  1618. else
  1619. {
  1620. // Extra Info block should not be removed, So copy it to the temp buffer.
  1621. memcpy(pTmp, p, dataSize + 4);
  1622. p += dataSize + 4;
  1623. size += dataSize + 4;
  1624. }
  1625. }
  1626. if(size < *dataLen)
  1627. {
  1628. // clean old extra info block.
  1629. memset(pData,0, *dataLen);
  1630. // copy the new extra info block over the old
  1631. if(size > 0)
  1632. memcpy(pData, pNewHeader, size);
  1633. // set the new extra info size
  1634. *dataLen = size;
  1635. retVal = ZIP_OK;
  1636. }
  1637. else
  1638. retVal = ZIP_ERRNO;
  1639. TRYFREE(pNewHeader);
  1640. return retVal;
  1641. }