deflate.c 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217
  1. /* deflate.c -- compress data using the deflation algorithm
  2. * Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler
  3. * For conditions of distribution and use, see copyright notice in zlib.h
  4. */
  5. /*
  6. * ALGORITHM
  7. *
  8. * The "deflation" process depends on being able to identify portions
  9. * of the input text which are identical to earlier input (within a
  10. * sliding window trailing behind the input currently being processed).
  11. *
  12. * The most straightforward technique turns out to be the fastest for
  13. * most input files: try all possible matches and select the longest.
  14. * The key feature of this algorithm is that insertions into the string
  15. * dictionary are very simple and thus fast, and deletions are avoided
  16. * completely. Insertions are performed at each input character, whereas
  17. * string matches are performed only when the previous match ends. So it
  18. * is preferable to spend more time in matches to allow very fast string
  19. * insertions and avoid deletions. The matching algorithm for small
  20. * strings is inspired from that of Rabin & Karp. A brute force approach
  21. * is used to find longer strings when a small match has been found.
  22. * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
  23. * (by Leonid Broukhis).
  24. * A previous version of this file used a more sophisticated algorithm
  25. * (by Fiala and Greene) which is guaranteed to run in linear amortized
  26. * time, but has a larger average cost, uses more memory and is patented.
  27. * However the F&G algorithm may be faster for some highly redundant
  28. * files if the parameter max_chain_length (described below) is too large.
  29. *
  30. * ACKNOWLEDGEMENTS
  31. *
  32. * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
  33. * I found it in 'freeze' written by Leonid Broukhis.
  34. * Thanks to many people for bug reports and testing.
  35. *
  36. * REFERENCES
  37. *
  38. * Deutsch, L.P.,"DEFLATE Compressed Data Format Specification".
  39. * Available in http://tools.ietf.org/html/rfc1951
  40. *
  41. * A description of the Rabin and Karp algorithm is given in the book
  42. * "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
  43. *
  44. * Fiala,E.R., and Greene,D.H.
  45. * Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
  46. *
  47. */
  48. /* @(#) $Id$ */
  49. #include "deflate.h"
  50. const char deflate_copyright[] =
  51. " deflate 1.2.13 Copyright 1995-2022 Jean-loup Gailly and Mark Adler ";
  52. /*
  53. If you use the zlib library in a product, an acknowledgment is welcome
  54. in the documentation of your product. If for some reason you cannot
  55. include such an acknowledgment, I would appreciate that you keep this
  56. copyright string in the executable of your product.
  57. */
  58. /* ===========================================================================
  59. * Function prototypes.
  60. */
  61. typedef enum {
  62. need_more, /* block not completed, need more input or more output */
  63. block_done, /* block flush performed */
  64. finish_started, /* finish started, need only more output at next deflate */
  65. finish_done /* finish done, accept no more input or output */
  66. } block_state;
  67. typedef block_state (*compress_func) OF((deflate_state *s, int flush));
  68. /* Compression function. Returns the block state after the call. */
  69. local int deflateStateCheck OF((z_streamp strm));
  70. local void slide_hash OF((deflate_state *s));
  71. local void fill_window OF((deflate_state *s));
  72. local block_state deflate_stored OF((deflate_state *s, int flush));
  73. local block_state deflate_fast OF((deflate_state *s, int flush));
  74. #ifndef FASTEST
  75. local block_state deflate_slow OF((deflate_state *s, int flush));
  76. #endif
  77. local block_state deflate_rle OF((deflate_state *s, int flush));
  78. local block_state deflate_huff OF((deflate_state *s, int flush));
  79. local void lm_init OF((deflate_state *s));
  80. local void putShortMSB OF((deflate_state *s, uInt b));
  81. local void flush_pending OF((z_streamp strm));
  82. local unsigned read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
  83. local uInt longest_match OF((deflate_state *s, IPos cur_match));
  84. #ifdef ZLIB_DEBUG
  85. local void check_match OF((deflate_state *s, IPos start, IPos match,
  86. int length));
  87. #endif
  88. /* ===========================================================================
  89. * Local data
  90. */
  91. #define NIL 0
  92. /* Tail of hash chains */
  93. #ifndef TOO_FAR
  94. # define TOO_FAR 4096
  95. #endif
  96. /* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
  97. /* Values for max_lazy_match, good_match and max_chain_length, depending on
  98. * the desired pack level (0..9). The values given below have been tuned to
  99. * exclude worst case performance for pathological files. Better values may be
  100. * found for specific files.
  101. */
  102. typedef struct config_s {
  103. ush good_length; /* reduce lazy search above this match length */
  104. ush max_lazy; /* do not perform lazy search above this match length */
  105. ush nice_length; /* quit search above this match length */
  106. ush max_chain;
  107. compress_func func;
  108. } config;
  109. #ifdef FASTEST
  110. local const config configuration_table[2] = {
  111. /* good lazy nice chain */
  112. /* 0 */ {0, 0, 0, 0, deflate_stored}, /* store only */
  113. /* 1 */ {4, 4, 8, 4, deflate_fast}}; /* max speed, no lazy matches */
  114. #else
  115. local const config configuration_table[10] = {
  116. /* good lazy nice chain */
  117. /* 0 */ {0, 0, 0, 0, deflate_stored}, /* store only */
  118. /* 1 */ {4, 4, 8, 4, deflate_fast}, /* max speed, no lazy matches */
  119. /* 2 */ {4, 5, 16, 8, deflate_fast},
  120. /* 3 */ {4, 6, 32, 32, deflate_fast},
  121. /* 4 */ {4, 4, 16, 16, deflate_slow}, /* lazy matches */
  122. /* 5 */ {8, 16, 32, 32, deflate_slow},
  123. /* 6 */ {8, 16, 128, 128, deflate_slow},
  124. /* 7 */ {8, 32, 128, 256, deflate_slow},
  125. /* 8 */ {32, 128, 258, 1024, deflate_slow},
  126. /* 9 */ {32, 258, 258, 4096, deflate_slow}}; /* max compression */
  127. #endif
  128. /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
  129. * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
  130. * meaning.
  131. */
  132. /* rank Z_BLOCK between Z_NO_FLUSH and Z_PARTIAL_FLUSH */
  133. #define RANK(f) (((f) * 2) - ((f) > 4 ? 9 : 0))
  134. /* ===========================================================================
  135. * Update a hash value with the given input byte
  136. * IN assertion: all calls to UPDATE_HASH are made with consecutive input
  137. * characters, so that a running hash key can be computed from the previous
  138. * key instead of complete recalculation each time.
  139. */
  140. #define UPDATE_HASH(s,h,c) (h = (((h) << s->hash_shift) ^ (c)) & s->hash_mask)
  141. /* ===========================================================================
  142. * Insert string str in the dictionary and set match_head to the previous head
  143. * of the hash chain (the most recent string with same hash key). Return
  144. * the previous length of the hash chain.
  145. * If this file is compiled with -DFASTEST, the compression level is forced
  146. * to 1, and no hash chains are maintained.
  147. * IN assertion: all calls to INSERT_STRING are made with consecutive input
  148. * characters and the first MIN_MATCH bytes of str are valid (except for
  149. * the last MIN_MATCH-1 bytes of the input file).
  150. */
  151. #ifdef FASTEST
  152. #define INSERT_STRING(s, str, match_head) \
  153. (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
  154. match_head = s->head[s->ins_h], \
  155. s->head[s->ins_h] = (Pos)(str))
  156. #else
  157. #define INSERT_STRING(s, str, match_head) \
  158. (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
  159. match_head = s->prev[(str) & s->w_mask] = s->head[s->ins_h], \
  160. s->head[s->ins_h] = (Pos)(str))
  161. #endif
  162. /* ===========================================================================
  163. * Initialize the hash table (avoiding 64K overflow for 16 bit systems).
  164. * prev[] will be initialized on the fly.
  165. */
  166. #define CLEAR_HASH(s) \
  167. do { \
  168. s->head[s->hash_size - 1] = NIL; \
  169. zmemzero((Bytef *)s->head, \
  170. (unsigned)(s->hash_size - 1)*sizeof(*s->head)); \
  171. } while (0)
  172. /* ===========================================================================
  173. * Slide the hash table when sliding the window down (could be avoided with 32
  174. * bit values at the expense of memory usage). We slide even when level == 0 to
  175. * keep the hash table consistent if we switch back to level > 0 later.
  176. */
  177. local void slide_hash(s)
  178. deflate_state *s;
  179. {
  180. unsigned n, m;
  181. Posf *p;
  182. uInt wsize = s->w_size;
  183. n = s->hash_size;
  184. p = &s->head[n];
  185. do {
  186. m = *--p;
  187. *p = (Pos)(m >= wsize ? m - wsize : NIL);
  188. } while (--n);
  189. n = wsize;
  190. #ifndef FASTEST
  191. p = &s->prev[n];
  192. do {
  193. m = *--p;
  194. *p = (Pos)(m >= wsize ? m - wsize : NIL);
  195. /* If n is not on any hash chain, prev[n] is garbage but
  196. * its value will never be used.
  197. */
  198. } while (--n);
  199. #endif
  200. }
  201. /* ========================================================================= */
  202. int ZEXPORT deflateInit_(strm, level, version, stream_size)
  203. z_streamp strm;
  204. int level;
  205. const char *version;
  206. int stream_size;
  207. {
  208. return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL,
  209. Z_DEFAULT_STRATEGY, version, stream_size);
  210. /* To do: ignore strm->next_in if we use it as window */
  211. }
  212. /* ========================================================================= */
  213. int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
  214. version, stream_size)
  215. z_streamp strm;
  216. int level;
  217. int method;
  218. int windowBits;
  219. int memLevel;
  220. int strategy;
  221. const char *version;
  222. int stream_size;
  223. {
  224. deflate_state *s;
  225. int wrap = 1;
  226. static const char my_version[] = ZLIB_VERSION;
  227. if (version == Z_NULL || version[0] != my_version[0] ||
  228. stream_size != sizeof(z_stream)) {
  229. return Z_VERSION_ERROR;
  230. }
  231. if (strm == Z_NULL) return Z_STREAM_ERROR;
  232. strm->msg = Z_NULL;
  233. if (strm->zalloc == (alloc_func)0) {
  234. #ifdef Z_SOLO
  235. return Z_STREAM_ERROR;
  236. #else
  237. strm->zalloc = zcalloc;
  238. strm->opaque = (voidpf)0;
  239. #endif
  240. }
  241. if (strm->zfree == (free_func)0)
  242. #ifdef Z_SOLO
  243. return Z_STREAM_ERROR;
  244. #else
  245. strm->zfree = zcfree;
  246. #endif
  247. #ifdef FASTEST
  248. if (level != 0) level = 1;
  249. #else
  250. if (level == Z_DEFAULT_COMPRESSION) level = 6;
  251. #endif
  252. if (windowBits < 0) { /* suppress zlib wrapper */
  253. wrap = 0;
  254. if (windowBits < -15)
  255. return Z_STREAM_ERROR;
  256. windowBits = -windowBits;
  257. }
  258. #ifdef GZIP
  259. else if (windowBits > 15) {
  260. wrap = 2; /* write gzip wrapper instead */
  261. windowBits -= 16;
  262. }
  263. #endif
  264. if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED ||
  265. windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
  266. strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) {
  267. return Z_STREAM_ERROR;
  268. }
  269. if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
  270. s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
  271. if (s == Z_NULL) return Z_MEM_ERROR;
  272. strm->state = (struct internal_state FAR *)s;
  273. s->strm = strm;
  274. s->status = INIT_STATE; /* to pass state test in deflateReset() */
  275. s->wrap = wrap;
  276. s->gzhead = Z_NULL;
  277. s->w_bits = (uInt)windowBits;
  278. s->w_size = 1 << s->w_bits;
  279. s->w_mask = s->w_size - 1;
  280. s->hash_bits = (uInt)memLevel + 7;
  281. s->hash_size = 1 << s->hash_bits;
  282. s->hash_mask = s->hash_size - 1;
  283. s->hash_shift = ((s->hash_bits + MIN_MATCH-1) / MIN_MATCH);
  284. s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
  285. s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
  286. s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
  287. s->high_water = 0; /* nothing written to s->window yet */
  288. s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
  289. /* We overlay pending_buf and sym_buf. This works since the average size
  290. * for length/distance pairs over any compressed block is assured to be 31
  291. * bits or less.
  292. *
  293. * Analysis: The longest fixed codes are a length code of 8 bits plus 5
  294. * extra bits, for lengths 131 to 257. The longest fixed distance codes are
  295. * 5 bits plus 13 extra bits, for distances 16385 to 32768. The longest
  296. * possible fixed-codes length/distance pair is then 31 bits total.
  297. *
  298. * sym_buf starts one-fourth of the way into pending_buf. So there are
  299. * three bytes in sym_buf for every four bytes in pending_buf. Each symbol
  300. * in sym_buf is three bytes -- two for the distance and one for the
  301. * literal/length. As each symbol is consumed, the pointer to the next
  302. * sym_buf value to read moves forward three bytes. From that symbol, up to
  303. * 31 bits are written to pending_buf. The closest the written pending_buf
  304. * bits gets to the next sym_buf symbol to read is just before the last
  305. * code is written. At that time, 31*(n - 2) bits have been written, just
  306. * after 24*(n - 2) bits have been consumed from sym_buf. sym_buf starts at
  307. * 8*n bits into pending_buf. (Note that the symbol buffer fills when n - 1
  308. * symbols are written.) The closest the writing gets to what is unread is
  309. * then n + 14 bits. Here n is lit_bufsize, which is 16384 by default, and
  310. * can range from 128 to 32768.
  311. *
  312. * Therefore, at a minimum, there are 142 bits of space between what is
  313. * written and what is read in the overlain buffers, so the symbols cannot
  314. * be overwritten by the compressed data. That space is actually 139 bits,
  315. * due to the three-bit fixed-code block header.
  316. *
  317. * That covers the case where either Z_FIXED is specified, forcing fixed
  318. * codes, or when the use of fixed codes is chosen, because that choice
  319. * results in a smaller compressed block than dynamic codes. That latter
  320. * condition then assures that the above analysis also covers all dynamic
  321. * blocks. A dynamic-code block will only be chosen to be emitted if it has
  322. * fewer bits than a fixed-code block would for the same set of symbols.
  323. * Therefore its average symbol length is assured to be less than 31. So
  324. * the compressed data for a dynamic block also cannot overwrite the
  325. * symbols from which it is being constructed.
  326. */
  327. s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4);
  328. s->pending_buf_size = (ulg)s->lit_bufsize * 4;
  329. if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
  330. s->pending_buf == Z_NULL) {
  331. s->status = FINISH_STATE;
  332. strm->msg = ERR_MSG(Z_MEM_ERROR);
  333. deflateEnd (strm);
  334. return Z_MEM_ERROR;
  335. }
  336. s->sym_buf = s->pending_buf + s->lit_bufsize;
  337. s->sym_end = (s->lit_bufsize - 1) * 3;
  338. /* We avoid equality with lit_bufsize*3 because of wraparound at 64K
  339. * on 16 bit machines and because stored blocks are restricted to
  340. * 64K-1 bytes.
  341. */
  342. s->level = level;
  343. s->strategy = strategy;
  344. s->method = (Byte)method;
  345. return deflateReset(strm);
  346. }
  347. /* =========================================================================
  348. * Check for a valid deflate stream state. Return 0 if ok, 1 if not.
  349. */
  350. local int deflateStateCheck(strm)
  351. z_streamp strm;
  352. {
  353. deflate_state *s;
  354. if (strm == Z_NULL ||
  355. strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0)
  356. return 1;
  357. s = strm->state;
  358. if (s == Z_NULL || s->strm != strm || (s->status != INIT_STATE &&
  359. #ifdef GZIP
  360. s->status != GZIP_STATE &&
  361. #endif
  362. s->status != EXTRA_STATE &&
  363. s->status != NAME_STATE &&
  364. s->status != COMMENT_STATE &&
  365. s->status != HCRC_STATE &&
  366. s->status != BUSY_STATE &&
  367. s->status != FINISH_STATE))
  368. return 1;
  369. return 0;
  370. }
  371. /* ========================================================================= */
  372. int ZEXPORT deflateSetDictionary(strm, dictionary, dictLength)
  373. z_streamp strm;
  374. const Bytef *dictionary;
  375. uInt dictLength;
  376. {
  377. deflate_state *s;
  378. uInt str, n;
  379. int wrap;
  380. unsigned avail;
  381. z_const unsigned char *next;
  382. if (deflateStateCheck(strm) || dictionary == Z_NULL)
  383. return Z_STREAM_ERROR;
  384. s = strm->state;
  385. wrap = s->wrap;
  386. if (wrap == 2 || (wrap == 1 && s->status != INIT_STATE) || s->lookahead)
  387. return Z_STREAM_ERROR;
  388. /* when using zlib wrappers, compute Adler-32 for provided dictionary */
  389. if (wrap == 1)
  390. strm->adler = adler32(strm->adler, dictionary, dictLength);
  391. s->wrap = 0; /* avoid computing Adler-32 in read_buf */
  392. /* if dictionary would fill window, just replace the history */
  393. if (dictLength >= s->w_size) {
  394. if (wrap == 0) { /* already empty otherwise */
  395. CLEAR_HASH(s);
  396. s->strstart = 0;
  397. s->block_start = 0L;
  398. s->insert = 0;
  399. }
  400. dictionary += dictLength - s->w_size; /* use the tail */
  401. dictLength = s->w_size;
  402. }
  403. /* insert dictionary into window and hash */
  404. avail = strm->avail_in;
  405. next = strm->next_in;
  406. strm->avail_in = dictLength;
  407. strm->next_in = (z_const Bytef *)dictionary;
  408. fill_window(s);
  409. while (s->lookahead >= MIN_MATCH) {
  410. str = s->strstart;
  411. n = s->lookahead - (MIN_MATCH-1);
  412. do {
  413. UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
  414. #ifndef FASTEST
  415. s->prev[str & s->w_mask] = s->head[s->ins_h];
  416. #endif
  417. s->head[s->ins_h] = (Pos)str;
  418. str++;
  419. } while (--n);
  420. s->strstart = str;
  421. s->lookahead = MIN_MATCH-1;
  422. fill_window(s);
  423. }
  424. s->strstart += s->lookahead;
  425. s->block_start = (long)s->strstart;
  426. s->insert = s->lookahead;
  427. s->lookahead = 0;
  428. s->match_length = s->prev_length = MIN_MATCH-1;
  429. s->match_available = 0;
  430. strm->next_in = next;
  431. strm->avail_in = avail;
  432. s->wrap = wrap;
  433. return Z_OK;
  434. }
  435. /* ========================================================================= */
  436. int ZEXPORT deflateGetDictionary(strm, dictionary, dictLength)
  437. z_streamp strm;
  438. Bytef *dictionary;
  439. uInt *dictLength;
  440. {
  441. deflate_state *s;
  442. uInt len;
  443. if (deflateStateCheck(strm))
  444. return Z_STREAM_ERROR;
  445. s = strm->state;
  446. len = s->strstart + s->lookahead;
  447. if (len > s->w_size)
  448. len = s->w_size;
  449. if (dictionary != Z_NULL && len)
  450. zmemcpy(dictionary, s->window + s->strstart + s->lookahead - len, len);
  451. if (dictLength != Z_NULL)
  452. *dictLength = len;
  453. return Z_OK;
  454. }
  455. /* ========================================================================= */
  456. int ZEXPORT deflateResetKeep(strm)
  457. z_streamp strm;
  458. {
  459. deflate_state *s;
  460. if (deflateStateCheck(strm)) {
  461. return Z_STREAM_ERROR;
  462. }
  463. strm->total_in = strm->total_out = 0;
  464. strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
  465. strm->data_type = Z_UNKNOWN;
  466. s = (deflate_state *)strm->state;
  467. s->pending = 0;
  468. s->pending_out = s->pending_buf;
  469. if (s->wrap < 0) {
  470. s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
  471. }
  472. s->status =
  473. #ifdef GZIP
  474. s->wrap == 2 ? GZIP_STATE :
  475. #endif
  476. INIT_STATE;
  477. strm->adler =
  478. #ifdef GZIP
  479. s->wrap == 2 ? crc32(0L, Z_NULL, 0) :
  480. #endif
  481. adler32(0L, Z_NULL, 0);
  482. s->last_flush = -2;
  483. _tr_init(s);
  484. return Z_OK;
  485. }
  486. /* ========================================================================= */
  487. int ZEXPORT deflateReset(strm)
  488. z_streamp strm;
  489. {
  490. int ret;
  491. ret = deflateResetKeep(strm);
  492. if (ret == Z_OK)
  493. lm_init(strm->state);
  494. return ret;
  495. }
  496. /* ========================================================================= */
  497. int ZEXPORT deflateSetHeader(strm, head)
  498. z_streamp strm;
  499. gz_headerp head;
  500. {
  501. if (deflateStateCheck(strm) || strm->state->wrap != 2)
  502. return Z_STREAM_ERROR;
  503. strm->state->gzhead = head;
  504. return Z_OK;
  505. }
  506. /* ========================================================================= */
  507. int ZEXPORT deflatePending(strm, pending, bits)
  508. unsigned *pending;
  509. int *bits;
  510. z_streamp strm;
  511. {
  512. if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
  513. if (pending != Z_NULL)
  514. *pending = strm->state->pending;
  515. if (bits != Z_NULL)
  516. *bits = strm->state->bi_valid;
  517. return Z_OK;
  518. }
  519. /* ========================================================================= */
  520. int ZEXPORT deflatePrime(strm, bits, value)
  521. z_streamp strm;
  522. int bits;
  523. int value;
  524. {
  525. deflate_state *s;
  526. int put;
  527. if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
  528. s = strm->state;
  529. if (bits < 0 || bits > 16 ||
  530. s->sym_buf < s->pending_out + ((Buf_size + 7) >> 3))
  531. return Z_BUF_ERROR;
  532. do {
  533. put = Buf_size - s->bi_valid;
  534. if (put > bits)
  535. put = bits;
  536. s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
  537. s->bi_valid += put;
  538. _tr_flush_bits(s);
  539. value >>= put;
  540. bits -= put;
  541. } while (bits);
  542. return Z_OK;
  543. }
  544. /* ========================================================================= */
  545. int ZEXPORT deflateParams(strm, level, strategy)
  546. z_streamp strm;
  547. int level;
  548. int strategy;
  549. {
  550. deflate_state *s;
  551. compress_func func;
  552. if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
  553. s = strm->state;
  554. #ifdef FASTEST
  555. if (level != 0) level = 1;
  556. #else
  557. if (level == Z_DEFAULT_COMPRESSION) level = 6;
  558. #endif
  559. if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXED) {
  560. return Z_STREAM_ERROR;
  561. }
  562. func = configuration_table[s->level].func;
  563. if ((strategy != s->strategy || func != configuration_table[level].func) &&
  564. s->last_flush != -2) {
  565. /* Flush the last buffer: */
  566. int err = deflate(strm, Z_BLOCK);
  567. if (err == Z_STREAM_ERROR)
  568. return err;
  569. if (strm->avail_in || (s->strstart - s->block_start) + s->lookahead)
  570. return Z_BUF_ERROR;
  571. }
  572. if (s->level != level) {
  573. if (s->level == 0 && s->matches != 0) {
  574. if (s->matches == 1)
  575. slide_hash(s);
  576. else
  577. CLEAR_HASH(s);
  578. s->matches = 0;
  579. }
  580. s->level = level;
  581. s->max_lazy_match = configuration_table[level].max_lazy;
  582. s->good_match = configuration_table[level].good_length;
  583. s->nice_match = configuration_table[level].nice_length;
  584. s->max_chain_length = configuration_table[level].max_chain;
  585. }
  586. s->strategy = strategy;
  587. return Z_OK;
  588. }
  589. /* ========================================================================= */
  590. int ZEXPORT deflateTune(strm, good_length, max_lazy, nice_length, max_chain)
  591. z_streamp strm;
  592. int good_length;
  593. int max_lazy;
  594. int nice_length;
  595. int max_chain;
  596. {
  597. deflate_state *s;
  598. if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
  599. s = strm->state;
  600. s->good_match = (uInt)good_length;
  601. s->max_lazy_match = (uInt)max_lazy;
  602. s->nice_match = nice_length;
  603. s->max_chain_length = (uInt)max_chain;
  604. return Z_OK;
  605. }
  606. /* =========================================================================
  607. * For the default windowBits of 15 and memLevel of 8, this function returns a
  608. * close to exact, as well as small, upper bound on the compressed size. This
  609. * is an expansion of ~0.03%, plus a small constant.
  610. *
  611. * For any setting other than those defaults for windowBits and memLevel, one
  612. * of two worst case bounds is returned. This is at most an expansion of ~4% or
  613. * ~13%, plus a small constant.
  614. *
  615. * Both the 0.03% and 4% derive from the overhead of stored blocks. The first
  616. * one is for stored blocks of 16383 bytes (memLevel == 8), whereas the second
  617. * is for stored blocks of 127 bytes (the worst case memLevel == 1). The
  618. * expansion results from five bytes of header for each stored block.
  619. *
  620. * The larger expansion of 13% results from a window size less than or equal to
  621. * the symbols buffer size (windowBits <= memLevel + 7). In that case some of
  622. * the data being compressed may have slid out of the sliding window, impeding
  623. * a stored block from being emitted. Then the only choice is a fixed or
  624. * dynamic block, where a fixed block limits the maximum expansion to 9 bits
  625. * per 8-bit byte, plus 10 bits for every block. The smallest block size for
  626. * which this can occur is 255 (memLevel == 2).
  627. *
  628. * Shifts are used to approximate divisions, for speed.
  629. */
  630. uLong ZEXPORT deflateBound(strm, sourceLen)
  631. z_streamp strm;
  632. uLong sourceLen;
  633. {
  634. deflate_state *s;
  635. uLong fixedlen, storelen, wraplen;
  636. /* upper bound for fixed blocks with 9-bit literals and length 255
  637. (memLevel == 2, which is the lowest that may not use stored blocks) --
  638. ~13% overhead plus a small constant */
  639. fixedlen = sourceLen + (sourceLen >> 3) + (sourceLen >> 8) +
  640. (sourceLen >> 9) + 4;
  641. /* upper bound for stored blocks with length 127 (memLevel == 1) --
  642. ~4% overhead plus a small constant */
  643. storelen = sourceLen + (sourceLen >> 5) + (sourceLen >> 7) +
  644. (sourceLen >> 11) + 7;
  645. /* if can't get parameters, return larger bound plus a zlib wrapper */
  646. if (deflateStateCheck(strm))
  647. return (fixedlen > storelen ? fixedlen : storelen) + 6;
  648. /* compute wrapper length */
  649. s = strm->state;
  650. switch (s->wrap) {
  651. case 0: /* raw deflate */
  652. wraplen = 0;
  653. break;
  654. case 1: /* zlib wrapper */
  655. wraplen = 6 + (s->strstart ? 4 : 0);
  656. break;
  657. #ifdef GZIP
  658. case 2: /* gzip wrapper */
  659. wraplen = 18;
  660. if (s->gzhead != Z_NULL) { /* user-supplied gzip header */
  661. Bytef *str;
  662. if (s->gzhead->extra != Z_NULL)
  663. wraplen += 2 + s->gzhead->extra_len;
  664. str = s->gzhead->name;
  665. if (str != Z_NULL)
  666. do {
  667. wraplen++;
  668. } while (*str++);
  669. str = s->gzhead->comment;
  670. if (str != Z_NULL)
  671. do {
  672. wraplen++;
  673. } while (*str++);
  674. if (s->gzhead->hcrc)
  675. wraplen += 2;
  676. }
  677. break;
  678. #endif
  679. default: /* for compiler happiness */
  680. wraplen = 6;
  681. }
  682. /* if not default parameters, return one of the conservative bounds */
  683. if (s->w_bits != 15 || s->hash_bits != 8 + 7)
  684. return (s->w_bits <= s->hash_bits ? fixedlen : storelen) + wraplen;
  685. /* default settings: return tight bound for that case -- ~0.03% overhead
  686. plus a small constant */
  687. return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
  688. (sourceLen >> 25) + 13 - 6 + wraplen;
  689. }
  690. /* =========================================================================
  691. * Put a short in the pending buffer. The 16-bit value is put in MSB order.
  692. * IN assertion: the stream state is correct and there is enough room in
  693. * pending_buf.
  694. */
  695. local void putShortMSB(s, b)
  696. deflate_state *s;
  697. uInt b;
  698. {
  699. put_byte(s, (Byte)(b >> 8));
  700. put_byte(s, (Byte)(b & 0xff));
  701. }
  702. /* =========================================================================
  703. * Flush as much pending output as possible. All deflate() output, except for
  704. * some deflate_stored() output, goes through this function so some
  705. * applications may wish to modify it to avoid allocating a large
  706. * strm->next_out buffer and copying into it. (See also read_buf()).
  707. */
  708. local void flush_pending(strm)
  709. z_streamp strm;
  710. {
  711. unsigned len;
  712. deflate_state *s = strm->state;
  713. _tr_flush_bits(s);
  714. len = s->pending;
  715. if (len > strm->avail_out) len = strm->avail_out;
  716. if (len == 0) return;
  717. zmemcpy(strm->next_out, s->pending_out, len);
  718. strm->next_out += len;
  719. s->pending_out += len;
  720. strm->total_out += len;
  721. strm->avail_out -= len;
  722. s->pending -= len;
  723. if (s->pending == 0) {
  724. s->pending_out = s->pending_buf;
  725. }
  726. }
  727. /* ===========================================================================
  728. * Update the header CRC with the bytes s->pending_buf[beg..s->pending - 1].
  729. */
  730. #define HCRC_UPDATE(beg) \
  731. do { \
  732. if (s->gzhead->hcrc && s->pending > (beg)) \
  733. strm->adler = crc32(strm->adler, s->pending_buf + (beg), \
  734. s->pending - (beg)); \
  735. } while (0)
  736. /* ========================================================================= */
  737. int ZEXPORT deflate(strm, flush)
  738. z_streamp strm;
  739. int flush;
  740. {
  741. int old_flush; /* value of flush param for previous deflate call */
  742. deflate_state *s;
  743. if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) {
  744. return Z_STREAM_ERROR;
  745. }
  746. s = strm->state;
  747. if (strm->next_out == Z_NULL ||
  748. (strm->avail_in != 0 && strm->next_in == Z_NULL) ||
  749. (s->status == FINISH_STATE && flush != Z_FINISH)) {
  750. ERR_RETURN(strm, Z_STREAM_ERROR);
  751. }
  752. if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
  753. old_flush = s->last_flush;
  754. s->last_flush = flush;
  755. /* Flush as much pending output as possible */
  756. if (s->pending != 0) {
  757. flush_pending(strm);
  758. if (strm->avail_out == 0) {
  759. /* Since avail_out is 0, deflate will be called again with
  760. * more output space, but possibly with both pending and
  761. * avail_in equal to zero. There won't be anything to do,
  762. * but this is not an error situation so make sure we
  763. * return OK instead of BUF_ERROR at next call of deflate:
  764. */
  765. s->last_flush = -1;
  766. return Z_OK;
  767. }
  768. /* Make sure there is something to do and avoid duplicate consecutive
  769. * flushes. For repeated and useless calls with Z_FINISH, we keep
  770. * returning Z_STREAM_END instead of Z_BUF_ERROR.
  771. */
  772. } else if (strm->avail_in == 0 && RANK(flush) <= RANK(old_flush) &&
  773. flush != Z_FINISH) {
  774. ERR_RETURN(strm, Z_BUF_ERROR);
  775. }
  776. /* User must not provide more input after the first FINISH: */
  777. if (s->status == FINISH_STATE && strm->avail_in != 0) {
  778. ERR_RETURN(strm, Z_BUF_ERROR);
  779. }
  780. /* Write the header */
  781. if (s->status == INIT_STATE && s->wrap == 0)
  782. s->status = BUSY_STATE;
  783. if (s->status == INIT_STATE) {
  784. /* zlib header */
  785. uInt header = (Z_DEFLATED + ((s->w_bits - 8) << 4)) << 8;
  786. uInt level_flags;
  787. if (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2)
  788. level_flags = 0;
  789. else if (s->level < 6)
  790. level_flags = 1;
  791. else if (s->level == 6)
  792. level_flags = 2;
  793. else
  794. level_flags = 3;
  795. header |= (level_flags << 6);
  796. if (s->strstart != 0) header |= PRESET_DICT;
  797. header += 31 - (header % 31);
  798. putShortMSB(s, header);
  799. /* Save the adler32 of the preset dictionary: */
  800. if (s->strstart != 0) {
  801. putShortMSB(s, (uInt)(strm->adler >> 16));
  802. putShortMSB(s, (uInt)(strm->adler & 0xffff));
  803. }
  804. strm->adler = adler32(0L, Z_NULL, 0);
  805. s->status = BUSY_STATE;
  806. /* Compression must start with an empty pending buffer */
  807. flush_pending(strm);
  808. if (s->pending != 0) {
  809. s->last_flush = -1;
  810. return Z_OK;
  811. }
  812. }
  813. #ifdef GZIP
  814. if (s->status == GZIP_STATE) {
  815. /* gzip header */
  816. strm->adler = crc32(0L, Z_NULL, 0);
  817. put_byte(s, 31);
  818. put_byte(s, 139);
  819. put_byte(s, 8);
  820. if (s->gzhead == Z_NULL) {
  821. put_byte(s, 0);
  822. put_byte(s, 0);
  823. put_byte(s, 0);
  824. put_byte(s, 0);
  825. put_byte(s, 0);
  826. put_byte(s, s->level == 9 ? 2 :
  827. (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
  828. 4 : 0));
  829. put_byte(s, OS_CODE);
  830. s->status = BUSY_STATE;
  831. /* Compression must start with an empty pending buffer */
  832. flush_pending(strm);
  833. if (s->pending != 0) {
  834. s->last_flush = -1;
  835. return Z_OK;
  836. }
  837. }
  838. else {
  839. put_byte(s, (s->gzhead->text ? 1 : 0) +
  840. (s->gzhead->hcrc ? 2 : 0) +
  841. (s->gzhead->extra == Z_NULL ? 0 : 4) +
  842. (s->gzhead->name == Z_NULL ? 0 : 8) +
  843. (s->gzhead->comment == Z_NULL ? 0 : 16)
  844. );
  845. put_byte(s, (Byte)(s->gzhead->time & 0xff));
  846. put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
  847. put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
  848. put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
  849. put_byte(s, s->level == 9 ? 2 :
  850. (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
  851. 4 : 0));
  852. put_byte(s, s->gzhead->os & 0xff);
  853. if (s->gzhead->extra != Z_NULL) {
  854. put_byte(s, s->gzhead->extra_len & 0xff);
  855. put_byte(s, (s->gzhead->extra_len >> 8) & 0xff);
  856. }
  857. if (s->gzhead->hcrc)
  858. strm->adler = crc32(strm->adler, s->pending_buf,
  859. s->pending);
  860. s->gzindex = 0;
  861. s->status = EXTRA_STATE;
  862. }
  863. }
  864. if (s->status == EXTRA_STATE) {
  865. if (s->gzhead->extra != Z_NULL) {
  866. ulg beg = s->pending; /* start of bytes to update crc */
  867. uInt left = (s->gzhead->extra_len & 0xffff) - s->gzindex;
  868. while (s->pending + left > s->pending_buf_size) {
  869. uInt copy = s->pending_buf_size - s->pending;
  870. zmemcpy(s->pending_buf + s->pending,
  871. s->gzhead->extra + s->gzindex, copy);
  872. s->pending = s->pending_buf_size;
  873. HCRC_UPDATE(beg);
  874. s->gzindex += copy;
  875. flush_pending(strm);
  876. if (s->pending != 0) {
  877. s->last_flush = -1;
  878. return Z_OK;
  879. }
  880. beg = 0;
  881. left -= copy;
  882. }
  883. zmemcpy(s->pending_buf + s->pending,
  884. s->gzhead->extra + s->gzindex, left);
  885. s->pending += left;
  886. HCRC_UPDATE(beg);
  887. s->gzindex = 0;
  888. }
  889. s->status = NAME_STATE;
  890. }
  891. if (s->status == NAME_STATE) {
  892. if (s->gzhead->name != Z_NULL) {
  893. ulg beg = s->pending; /* start of bytes to update crc */
  894. int val;
  895. do {
  896. if (s->pending == s->pending_buf_size) {
  897. HCRC_UPDATE(beg);
  898. flush_pending(strm);
  899. if (s->pending != 0) {
  900. s->last_flush = -1;
  901. return Z_OK;
  902. }
  903. beg = 0;
  904. }
  905. val = s->gzhead->name[s->gzindex++];
  906. put_byte(s, val);
  907. } while (val != 0);
  908. HCRC_UPDATE(beg);
  909. s->gzindex = 0;
  910. }
  911. s->status = COMMENT_STATE;
  912. }
  913. if (s->status == COMMENT_STATE) {
  914. if (s->gzhead->comment != Z_NULL) {
  915. ulg beg = s->pending; /* start of bytes to update crc */
  916. int val;
  917. do {
  918. if (s->pending == s->pending_buf_size) {
  919. HCRC_UPDATE(beg);
  920. flush_pending(strm);
  921. if (s->pending != 0) {
  922. s->last_flush = -1;
  923. return Z_OK;
  924. }
  925. beg = 0;
  926. }
  927. val = s->gzhead->comment[s->gzindex++];
  928. put_byte(s, val);
  929. } while (val != 0);
  930. HCRC_UPDATE(beg);
  931. }
  932. s->status = HCRC_STATE;
  933. }
  934. if (s->status == HCRC_STATE) {
  935. if (s->gzhead->hcrc) {
  936. if (s->pending + 2 > s->pending_buf_size) {
  937. flush_pending(strm);
  938. if (s->pending != 0) {
  939. s->last_flush = -1;
  940. return Z_OK;
  941. }
  942. }
  943. put_byte(s, (Byte)(strm->adler & 0xff));
  944. put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
  945. strm->adler = crc32(0L, Z_NULL, 0);
  946. }
  947. s->status = BUSY_STATE;
  948. /* Compression must start with an empty pending buffer */
  949. flush_pending(strm);
  950. if (s->pending != 0) {
  951. s->last_flush = -1;
  952. return Z_OK;
  953. }
  954. }
  955. #endif
  956. /* Start a new block or continue the current one.
  957. */
  958. if (strm->avail_in != 0 || s->lookahead != 0 ||
  959. (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
  960. block_state bstate;
  961. bstate = s->level == 0 ? deflate_stored(s, flush) :
  962. s->strategy == Z_HUFFMAN_ONLY ? deflate_huff(s, flush) :
  963. s->strategy == Z_RLE ? deflate_rle(s, flush) :
  964. (*(configuration_table[s->level].func))(s, flush);
  965. if (bstate == finish_started || bstate == finish_done) {
  966. s->status = FINISH_STATE;
  967. }
  968. if (bstate == need_more || bstate == finish_started) {
  969. if (strm->avail_out == 0) {
  970. s->last_flush = -1; /* avoid BUF_ERROR next call, see above */
  971. }
  972. return Z_OK;
  973. /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
  974. * of deflate should use the same flush parameter to make sure
  975. * that the flush is complete. So we don't have to output an
  976. * empty block here, this will be done at next call. This also
  977. * ensures that for a very small output buffer, we emit at most
  978. * one empty block.
  979. */
  980. }
  981. if (bstate == block_done) {
  982. if (flush == Z_PARTIAL_FLUSH) {
  983. _tr_align(s);
  984. } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
  985. _tr_stored_block(s, (char*)0, 0L, 0);
  986. /* For a full flush, this empty block will be recognized
  987. * as a special marker by inflate_sync().
  988. */
  989. if (flush == Z_FULL_FLUSH) {
  990. CLEAR_HASH(s); /* forget history */
  991. if (s->lookahead == 0) {
  992. s->strstart = 0;
  993. s->block_start = 0L;
  994. s->insert = 0;
  995. }
  996. }
  997. }
  998. flush_pending(strm);
  999. if (strm->avail_out == 0) {
  1000. s->last_flush = -1; /* avoid BUF_ERROR at next call, see above */
  1001. return Z_OK;
  1002. }
  1003. }
  1004. }
  1005. if (flush != Z_FINISH) return Z_OK;
  1006. if (s->wrap <= 0) return Z_STREAM_END;
  1007. /* Write the trailer */
  1008. #ifdef GZIP
  1009. if (s->wrap == 2) {
  1010. put_byte(s, (Byte)(strm->adler & 0xff));
  1011. put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
  1012. put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
  1013. put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
  1014. put_byte(s, (Byte)(strm->total_in & 0xff));
  1015. put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
  1016. put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
  1017. put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
  1018. }
  1019. else
  1020. #endif
  1021. {
  1022. putShortMSB(s, (uInt)(strm->adler >> 16));
  1023. putShortMSB(s, (uInt)(strm->adler & 0xffff));
  1024. }
  1025. flush_pending(strm);
  1026. /* If avail_out is zero, the application will call deflate again
  1027. * to flush the rest.
  1028. */
  1029. if (s->wrap > 0) s->wrap = -s->wrap; /* write the trailer only once! */
  1030. return s->pending != 0 ? Z_OK : Z_STREAM_END;
  1031. }
  1032. /* ========================================================================= */
  1033. int ZEXPORT deflateEnd(strm)
  1034. z_streamp strm;
  1035. {
  1036. int status;
  1037. if (deflateStateCheck(strm)) return Z_STREAM_ERROR;
  1038. status = strm->state->status;
  1039. /* Deallocate in reverse order of allocations: */
  1040. TRY_FREE(strm, strm->state->pending_buf);
  1041. TRY_FREE(strm, strm->state->head);
  1042. TRY_FREE(strm, strm->state->prev);
  1043. TRY_FREE(strm, strm->state->window);
  1044. ZFREE(strm, strm->state);
  1045. strm->state = Z_NULL;
  1046. return status == BUSY_STATE ? Z_DATA_ERROR : Z_OK;
  1047. }
  1048. /* =========================================================================
  1049. * Copy the source state to the destination state.
  1050. * To simplify the source, this is not supported for 16-bit MSDOS (which
  1051. * doesn't have enough memory anyway to duplicate compression states).
  1052. */
  1053. int ZEXPORT deflateCopy(dest, source)
  1054. z_streamp dest;
  1055. z_streamp source;
  1056. {
  1057. #ifdef MAXSEG_64K
  1058. return Z_STREAM_ERROR;
  1059. #else
  1060. deflate_state *ds;
  1061. deflate_state *ss;
  1062. if (deflateStateCheck(source) || dest == Z_NULL) {
  1063. return Z_STREAM_ERROR;
  1064. }
  1065. ss = source->state;
  1066. zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream));
  1067. ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
  1068. if (ds == Z_NULL) return Z_MEM_ERROR;
  1069. dest->state = (struct internal_state FAR *) ds;
  1070. zmemcpy((voidpf)ds, (voidpf)ss, sizeof(deflate_state));
  1071. ds->strm = dest;
  1072. ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
  1073. ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
  1074. ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
  1075. ds->pending_buf = (uchf *) ZALLOC(dest, ds->lit_bufsize, 4);
  1076. if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
  1077. ds->pending_buf == Z_NULL) {
  1078. deflateEnd (dest);
  1079. return Z_MEM_ERROR;
  1080. }
  1081. /* following zmemcpy do not work for 16-bit MSDOS */
  1082. zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
  1083. zmemcpy((voidpf)ds->prev, (voidpf)ss->prev, ds->w_size * sizeof(Pos));
  1084. zmemcpy((voidpf)ds->head, (voidpf)ss->head, ds->hash_size * sizeof(Pos));
  1085. zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
  1086. ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
  1087. ds->sym_buf = ds->pending_buf + ds->lit_bufsize;
  1088. ds->l_desc.dyn_tree = ds->dyn_ltree;
  1089. ds->d_desc.dyn_tree = ds->dyn_dtree;
  1090. ds->bl_desc.dyn_tree = ds->bl_tree;
  1091. return Z_OK;
  1092. #endif /* MAXSEG_64K */
  1093. }
  1094. /* ===========================================================================
  1095. * Read a new buffer from the current input stream, update the adler32
  1096. * and total number of bytes read. All deflate() input goes through
  1097. * this function so some applications may wish to modify it to avoid
  1098. * allocating a large strm->next_in buffer and copying from it.
  1099. * (See also flush_pending()).
  1100. */
  1101. local unsigned read_buf(strm, buf, size)
  1102. z_streamp strm;
  1103. Bytef *buf;
  1104. unsigned size;
  1105. {
  1106. unsigned len = strm->avail_in;
  1107. if (len > size) len = size;
  1108. if (len == 0) return 0;
  1109. strm->avail_in -= len;
  1110. zmemcpy(buf, strm->next_in, len);
  1111. if (strm->state->wrap == 1) {
  1112. strm->adler = adler32(strm->adler, buf, len);
  1113. }
  1114. #ifdef GZIP
  1115. else if (strm->state->wrap == 2) {
  1116. strm->adler = crc32(strm->adler, buf, len);
  1117. }
  1118. #endif
  1119. strm->next_in += len;
  1120. strm->total_in += len;
  1121. return len;
  1122. }
  1123. /* ===========================================================================
  1124. * Initialize the "longest match" routines for a new zlib stream
  1125. */
  1126. local void lm_init(s)
  1127. deflate_state *s;
  1128. {
  1129. s->window_size = (ulg)2L*s->w_size;
  1130. CLEAR_HASH(s);
  1131. /* Set the default configuration parameters:
  1132. */
  1133. s->max_lazy_match = configuration_table[s->level].max_lazy;
  1134. s->good_match = configuration_table[s->level].good_length;
  1135. s->nice_match = configuration_table[s->level].nice_length;
  1136. s->max_chain_length = configuration_table[s->level].max_chain;
  1137. s->strstart = 0;
  1138. s->block_start = 0L;
  1139. s->lookahead = 0;
  1140. s->insert = 0;
  1141. s->match_length = s->prev_length = MIN_MATCH-1;
  1142. s->match_available = 0;
  1143. s->ins_h = 0;
  1144. }
  1145. #ifndef FASTEST
  1146. /* ===========================================================================
  1147. * Set match_start to the longest match starting at the given string and
  1148. * return its length. Matches shorter or equal to prev_length are discarded,
  1149. * in which case the result is equal to prev_length and match_start is
  1150. * garbage.
  1151. * IN assertions: cur_match is the head of the hash chain for the current
  1152. * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
  1153. * OUT assertion: the match length is not greater than s->lookahead.
  1154. */
  1155. local uInt longest_match(s, cur_match)
  1156. deflate_state *s;
  1157. IPos cur_match; /* current match */
  1158. {
  1159. unsigned chain_length = s->max_chain_length;/* max hash chain length */
  1160. register Bytef *scan = s->window + s->strstart; /* current string */
  1161. register Bytef *match; /* matched string */
  1162. register int len; /* length of current match */
  1163. int best_len = (int)s->prev_length; /* best match length so far */
  1164. int nice_match = s->nice_match; /* stop if match long enough */
  1165. IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
  1166. s->strstart - (IPos)MAX_DIST(s) : NIL;
  1167. /* Stop when cur_match becomes <= limit. To simplify the code,
  1168. * we prevent matches with the string of window index 0.
  1169. */
  1170. Posf *prev = s->prev;
  1171. uInt wmask = s->w_mask;
  1172. #ifdef UNALIGNED_OK
  1173. /* Compare two bytes at a time. Note: this is not always beneficial.
  1174. * Try with and without -DUNALIGNED_OK to check.
  1175. */
  1176. register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
  1177. register ush scan_start = *(ushf*)scan;
  1178. register ush scan_end = *(ushf*)(scan + best_len - 1);
  1179. #else
  1180. register Bytef *strend = s->window + s->strstart + MAX_MATCH;
  1181. register Byte scan_end1 = scan[best_len - 1];
  1182. register Byte scan_end = scan[best_len];
  1183. #endif
  1184. /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
  1185. * It is easy to get rid of this optimization if necessary.
  1186. */
  1187. Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
  1188. /* Do not waste too much time if we already have a good match: */
  1189. if (s->prev_length >= s->good_match) {
  1190. chain_length >>= 2;
  1191. }
  1192. /* Do not look for matches beyond the end of the input. This is necessary
  1193. * to make deflate deterministic.
  1194. */
  1195. if ((uInt)nice_match > s->lookahead) nice_match = (int)s->lookahead;
  1196. Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
  1197. "need lookahead");
  1198. do {
  1199. Assert(cur_match < s->strstart, "no future");
  1200. match = s->window + cur_match;
  1201. /* Skip to next match if the match length cannot increase
  1202. * or if the match length is less than 2. Note that the checks below
  1203. * for insufficient lookahead only occur occasionally for performance
  1204. * reasons. Therefore uninitialized memory will be accessed, and
  1205. * conditional jumps will be made that depend on those values.
  1206. * However the length of the match is limited to the lookahead, so
  1207. * the output of deflate is not affected by the uninitialized values.
  1208. */
  1209. #if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
  1210. /* This code assumes sizeof(unsigned short) == 2. Do not use
  1211. * UNALIGNED_OK if your compiler uses a different size.
  1212. */
  1213. if (*(ushf*)(match + best_len - 1) != scan_end ||
  1214. *(ushf*)match != scan_start) continue;
  1215. /* It is not necessary to compare scan[2] and match[2] since they are
  1216. * always equal when the other bytes match, given that the hash keys
  1217. * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
  1218. * strstart + 3, + 5, up to strstart + 257. We check for insufficient
  1219. * lookahead only every 4th comparison; the 128th check will be made
  1220. * at strstart + 257. If MAX_MATCH-2 is not a multiple of 8, it is
  1221. * necessary to put more guard bytes at the end of the window, or
  1222. * to check more often for insufficient lookahead.
  1223. */
  1224. Assert(scan[2] == match[2], "scan[2]?");
  1225. scan++, match++;
  1226. do {
  1227. } while (*(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
  1228. *(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
  1229. *(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
  1230. *(ushf*)(scan += 2) == *(ushf*)(match += 2) &&
  1231. scan < strend);
  1232. /* The funny "do {}" generates better code on most compilers */
  1233. /* Here, scan <= window + strstart + 257 */
  1234. Assert(scan <= s->window + (unsigned)(s->window_size - 1),
  1235. "wild scan");
  1236. if (*scan == *match) scan++;
  1237. len = (MAX_MATCH - 1) - (int)(strend - scan);
  1238. scan = strend - (MAX_MATCH-1);
  1239. #else /* UNALIGNED_OK */
  1240. if (match[best_len] != scan_end ||
  1241. match[best_len - 1] != scan_end1 ||
  1242. *match != *scan ||
  1243. *++match != scan[1]) continue;
  1244. /* The check at best_len - 1 can be removed because it will be made
  1245. * again later. (This heuristic is not always a win.)
  1246. * It is not necessary to compare scan[2] and match[2] since they
  1247. * are always equal when the other bytes match, given that
  1248. * the hash keys are equal and that HASH_BITS >= 8.
  1249. */
  1250. scan += 2, match++;
  1251. Assert(*scan == *match, "match[2]?");
  1252. /* We check for insufficient lookahead only every 8th comparison;
  1253. * the 256th check will be made at strstart + 258.
  1254. */
  1255. do {
  1256. } while (*++scan == *++match && *++scan == *++match &&
  1257. *++scan == *++match && *++scan == *++match &&
  1258. *++scan == *++match && *++scan == *++match &&
  1259. *++scan == *++match && *++scan == *++match &&
  1260. scan < strend);
  1261. Assert(scan <= s->window + (unsigned)(s->window_size - 1),
  1262. "wild scan");
  1263. len = MAX_MATCH - (int)(strend - scan);
  1264. scan = strend - MAX_MATCH;
  1265. #endif /* UNALIGNED_OK */
  1266. if (len > best_len) {
  1267. s->match_start = cur_match;
  1268. best_len = len;
  1269. if (len >= nice_match) break;
  1270. #ifdef UNALIGNED_OK
  1271. scan_end = *(ushf*)(scan + best_len - 1);
  1272. #else
  1273. scan_end1 = scan[best_len - 1];
  1274. scan_end = scan[best_len];
  1275. #endif
  1276. }
  1277. } while ((cur_match = prev[cur_match & wmask]) > limit
  1278. && --chain_length != 0);
  1279. if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
  1280. return s->lookahead;
  1281. }
  1282. #else /* FASTEST */
  1283. /* ---------------------------------------------------------------------------
  1284. * Optimized version for FASTEST only
  1285. */
  1286. local uInt longest_match(s, cur_match)
  1287. deflate_state *s;
  1288. IPos cur_match; /* current match */
  1289. {
  1290. register Bytef *scan = s->window + s->strstart; /* current string */
  1291. register Bytef *match; /* matched string */
  1292. register int len; /* length of current match */
  1293. register Bytef *strend = s->window + s->strstart + MAX_MATCH;
  1294. /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
  1295. * It is easy to get rid of this optimization if necessary.
  1296. */
  1297. Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
  1298. Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
  1299. "need lookahead");
  1300. Assert(cur_match < s->strstart, "no future");
  1301. match = s->window + cur_match;
  1302. /* Return failure if the match length is less than 2:
  1303. */
  1304. if (match[0] != scan[0] || match[1] != scan[1]) return MIN_MATCH-1;
  1305. /* The check at best_len - 1 can be removed because it will be made
  1306. * again later. (This heuristic is not always a win.)
  1307. * It is not necessary to compare scan[2] and match[2] since they
  1308. * are always equal when the other bytes match, given that
  1309. * the hash keys are equal and that HASH_BITS >= 8.
  1310. */
  1311. scan += 2, match += 2;
  1312. Assert(*scan == *match, "match[2]?");
  1313. /* We check for insufficient lookahead only every 8th comparison;
  1314. * the 256th check will be made at strstart + 258.
  1315. */
  1316. do {
  1317. } while (*++scan == *++match && *++scan == *++match &&
  1318. *++scan == *++match && *++scan == *++match &&
  1319. *++scan == *++match && *++scan == *++match &&
  1320. *++scan == *++match && *++scan == *++match &&
  1321. scan < strend);
  1322. Assert(scan <= s->window + (unsigned)(s->window_size - 1), "wild scan");
  1323. len = MAX_MATCH - (int)(strend - scan);
  1324. if (len < MIN_MATCH) return MIN_MATCH - 1;
  1325. s->match_start = cur_match;
  1326. return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
  1327. }
  1328. #endif /* FASTEST */
  1329. #ifdef ZLIB_DEBUG
  1330. #define EQUAL 0
  1331. /* result of memcmp for equal strings */
  1332. /* ===========================================================================
  1333. * Check that the match at match_start is indeed a match.
  1334. */
  1335. local void check_match(s, start, match, length)
  1336. deflate_state *s;
  1337. IPos start, match;
  1338. int length;
  1339. {
  1340. /* check that the match is indeed a match */
  1341. if (zmemcmp(s->window + match,
  1342. s->window + start, length) != EQUAL) {
  1343. fprintf(stderr, " start %u, match %u, length %d\n",
  1344. start, match, length);
  1345. do {
  1346. fprintf(stderr, "%c%c", s->window[match++], s->window[start++]);
  1347. } while (--length != 0);
  1348. z_error("invalid match");
  1349. }
  1350. if (z_verbose > 1) {
  1351. fprintf(stderr,"\\[%d,%d]", start - match, length);
  1352. do { putc(s->window[start++], stderr); } while (--length != 0);
  1353. }
  1354. }
  1355. #else
  1356. # define check_match(s, start, match, length)
  1357. #endif /* ZLIB_DEBUG */
  1358. /* ===========================================================================
  1359. * Fill the window when the lookahead becomes insufficient.
  1360. * Updates strstart and lookahead.
  1361. *
  1362. * IN assertion: lookahead < MIN_LOOKAHEAD
  1363. * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD
  1364. * At least one byte has been read, or avail_in == 0; reads are
  1365. * performed for at least two bytes (required for the zip translate_eol
  1366. * option -- not supported here).
  1367. */
  1368. local void fill_window(s)
  1369. deflate_state *s;
  1370. {
  1371. unsigned n;
  1372. unsigned more; /* Amount of free space at the end of the window. */
  1373. uInt wsize = s->w_size;
  1374. Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead");
  1375. do {
  1376. more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
  1377. /* Deal with !@#$% 64K limit: */
  1378. if (sizeof(int) <= 2) {
  1379. if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
  1380. more = wsize;
  1381. } else if (more == (unsigned)(-1)) {
  1382. /* Very unlikely, but possible on 16 bit machine if
  1383. * strstart == 0 && lookahead == 1 (input done a byte at time)
  1384. */
  1385. more--;
  1386. }
  1387. }
  1388. /* If the window is almost full and there is insufficient lookahead,
  1389. * move the upper half to the lower one to make room in the upper half.
  1390. */
  1391. if (s->strstart >= wsize + MAX_DIST(s)) {
  1392. zmemcpy(s->window, s->window + wsize, (unsigned)wsize - more);
  1393. s->match_start -= wsize;
  1394. s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
  1395. s->block_start -= (long) wsize;
  1396. if (s->insert > s->strstart)
  1397. s->insert = s->strstart;
  1398. slide_hash(s);
  1399. more += wsize;
  1400. }
  1401. if (s->strm->avail_in == 0) break;
  1402. /* If there was no sliding:
  1403. * strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&
  1404. * more == window_size - lookahead - strstart
  1405. * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
  1406. * => more >= window_size - 2*WSIZE + 2
  1407. * In the BIG_MEM or MMAP case (not yet supported),
  1408. * window_size == input_size + MIN_LOOKAHEAD &&
  1409. * strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.
  1410. * Otherwise, window_size == 2*WSIZE so more >= 2.
  1411. * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
  1412. */
  1413. Assert(more >= 2, "more < 2");
  1414. n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
  1415. s->lookahead += n;
  1416. /* Initialize the hash value now that we have some input: */
  1417. if (s->lookahead + s->insert >= MIN_MATCH) {
  1418. uInt str = s->strstart - s->insert;
  1419. s->ins_h = s->window[str];
  1420. UPDATE_HASH(s, s->ins_h, s->window[str + 1]);
  1421. #if MIN_MATCH != 3
  1422. Call UPDATE_HASH() MIN_MATCH-3 more times
  1423. #endif
  1424. while (s->insert) {
  1425. UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
  1426. #ifndef FASTEST
  1427. s->prev[str & s->w_mask] = s->head[s->ins_h];
  1428. #endif
  1429. s->head[s->ins_h] = (Pos)str;
  1430. str++;
  1431. s->insert--;
  1432. if (s->lookahead + s->insert < MIN_MATCH)
  1433. break;
  1434. }
  1435. }
  1436. /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,
  1437. * but this is not important since only literal bytes will be emitted.
  1438. */
  1439. } while (s->lookahead < MIN_LOOKAHEAD && s->strm->avail_in != 0);
  1440. /* If the WIN_INIT bytes after the end of the current data have never been
  1441. * written, then zero those bytes in order to avoid memory check reports of
  1442. * the use of uninitialized (or uninitialised as Julian writes) bytes by
  1443. * the longest match routines. Update the high water mark for the next
  1444. * time through here. WIN_INIT is set to MAX_MATCH since the longest match
  1445. * routines allow scanning to strstart + MAX_MATCH, ignoring lookahead.
  1446. */
  1447. if (s->high_water < s->window_size) {
  1448. ulg curr = s->strstart + (ulg)(s->lookahead);
  1449. ulg init;
  1450. if (s->high_water < curr) {
  1451. /* Previous high water mark below current data -- zero WIN_INIT
  1452. * bytes or up to end of window, whichever is less.
  1453. */
  1454. init = s->window_size - curr;
  1455. if (init > WIN_INIT)
  1456. init = WIN_INIT;
  1457. zmemzero(s->window + curr, (unsigned)init);
  1458. s->high_water = curr + init;
  1459. }
  1460. else if (s->high_water < (ulg)curr + WIN_INIT) {
  1461. /* High water mark at or above current data, but below current data
  1462. * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
  1463. * to end of window, whichever is less.
  1464. */
  1465. init = (ulg)curr + WIN_INIT - s->high_water;
  1466. if (init > s->window_size - s->high_water)
  1467. init = s->window_size - s->high_water;
  1468. zmemzero(s->window + s->high_water, (unsigned)init);
  1469. s->high_water += init;
  1470. }
  1471. }
  1472. Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
  1473. "not enough room for search");
  1474. }
  1475. /* ===========================================================================
  1476. * Flush the current block, with given end-of-file flag.
  1477. * IN assertion: strstart is set to the end of the current match.
  1478. */
  1479. #define FLUSH_BLOCK_ONLY(s, last) { \
  1480. _tr_flush_block(s, (s->block_start >= 0L ? \
  1481. (charf *)&s->window[(unsigned)s->block_start] : \
  1482. (charf *)Z_NULL), \
  1483. (ulg)((long)s->strstart - s->block_start), \
  1484. (last)); \
  1485. s->block_start = s->strstart; \
  1486. flush_pending(s->strm); \
  1487. Tracev((stderr,"[FLUSH]")); \
  1488. }
  1489. /* Same but force premature exit if necessary. */
  1490. #define FLUSH_BLOCK(s, last) { \
  1491. FLUSH_BLOCK_ONLY(s, last); \
  1492. if (s->strm->avail_out == 0) return (last) ? finish_started : need_more; \
  1493. }
  1494. /* Maximum stored block length in deflate format (not including header). */
  1495. #define MAX_STORED 65535
  1496. /* Minimum of a and b. */
  1497. #define MIN(a, b) ((a) > (b) ? (b) : (a))
  1498. /* ===========================================================================
  1499. * Copy without compression as much as possible from the input stream, return
  1500. * the current block state.
  1501. *
  1502. * In case deflateParams() is used to later switch to a non-zero compression
  1503. * level, s->matches (otherwise unused when storing) keeps track of the number
  1504. * of hash table slides to perform. If s->matches is 1, then one hash table
  1505. * slide will be done when switching. If s->matches is 2, the maximum value
  1506. * allowed here, then the hash table will be cleared, since two or more slides
  1507. * is the same as a clear.
  1508. *
  1509. * deflate_stored() is written to minimize the number of times an input byte is
  1510. * copied. It is most efficient with large input and output buffers, which
  1511. * maximizes the opportunities to have a single copy from next_in to next_out.
  1512. */
  1513. local block_state deflate_stored(s, flush)
  1514. deflate_state *s;
  1515. int flush;
  1516. {
  1517. /* Smallest worthy block size when not flushing or finishing. By default
  1518. * this is 32K. This can be as small as 507 bytes for memLevel == 1. For
  1519. * large input and output buffers, the stored block size will be larger.
  1520. */
  1521. unsigned min_block = MIN(s->pending_buf_size - 5, s->w_size);
  1522. /* Copy as many min_block or larger stored blocks directly to next_out as
  1523. * possible. If flushing, copy the remaining available input to next_out as
  1524. * stored blocks, if there is enough space.
  1525. */
  1526. unsigned len, left, have, last = 0;
  1527. unsigned used = s->strm->avail_in;
  1528. do {
  1529. /* Set len to the maximum size block that we can copy directly with the
  1530. * available input data and output space. Set left to how much of that
  1531. * would be copied from what's left in the window.
  1532. */
  1533. len = MAX_STORED; /* maximum deflate stored block length */
  1534. have = (s->bi_valid + 42) >> 3; /* number of header bytes */
  1535. if (s->strm->avail_out < have) /* need room for header */
  1536. break;
  1537. /* maximum stored block length that will fit in avail_out: */
  1538. have = s->strm->avail_out - have;
  1539. left = s->strstart - s->block_start; /* bytes left in window */
  1540. if (len > (ulg)left + s->strm->avail_in)
  1541. len = left + s->strm->avail_in; /* limit len to the input */
  1542. if (len > have)
  1543. len = have; /* limit len to the output */
  1544. /* If the stored block would be less than min_block in length, or if
  1545. * unable to copy all of the available input when flushing, then try
  1546. * copying to the window and the pending buffer instead. Also don't
  1547. * write an empty block when flushing -- deflate() does that.
  1548. */
  1549. if (len < min_block && ((len == 0 && flush != Z_FINISH) ||
  1550. flush == Z_NO_FLUSH ||
  1551. len != left + s->strm->avail_in))
  1552. break;
  1553. /* Make a dummy stored block in pending to get the header bytes,
  1554. * including any pending bits. This also updates the debugging counts.
  1555. */
  1556. last = flush == Z_FINISH && len == left + s->strm->avail_in ? 1 : 0;
  1557. _tr_stored_block(s, (char *)0, 0L, last);
  1558. /* Replace the lengths in the dummy stored block with len. */
  1559. s->pending_buf[s->pending - 4] = len;
  1560. s->pending_buf[s->pending - 3] = len >> 8;
  1561. s->pending_buf[s->pending - 2] = ~len;
  1562. s->pending_buf[s->pending - 1] = ~len >> 8;
  1563. /* Write the stored block header bytes. */
  1564. flush_pending(s->strm);
  1565. #ifdef ZLIB_DEBUG
  1566. /* Update debugging counts for the data about to be copied. */
  1567. s->compressed_len += len << 3;
  1568. s->bits_sent += len << 3;
  1569. #endif
  1570. /* Copy uncompressed bytes from the window to next_out. */
  1571. if (left) {
  1572. if (left > len)
  1573. left = len;
  1574. zmemcpy(s->strm->next_out, s->window + s->block_start, left);
  1575. s->strm->next_out += left;
  1576. s->strm->avail_out -= left;
  1577. s->strm->total_out += left;
  1578. s->block_start += left;
  1579. len -= left;
  1580. }
  1581. /* Copy uncompressed bytes directly from next_in to next_out, updating
  1582. * the check value.
  1583. */
  1584. if (len) {
  1585. read_buf(s->strm, s->strm->next_out, len);
  1586. s->strm->next_out += len;
  1587. s->strm->avail_out -= len;
  1588. s->strm->total_out += len;
  1589. }
  1590. } while (last == 0);
  1591. /* Update the sliding window with the last s->w_size bytes of the copied
  1592. * data, or append all of the copied data to the existing window if less
  1593. * than s->w_size bytes were copied. Also update the number of bytes to
  1594. * insert in the hash tables, in the event that deflateParams() switches to
  1595. * a non-zero compression level.
  1596. */
  1597. used -= s->strm->avail_in; /* number of input bytes directly copied */
  1598. if (used) {
  1599. /* If any input was used, then no unused input remains in the window,
  1600. * therefore s->block_start == s->strstart.
  1601. */
  1602. if (used >= s->w_size) { /* supplant the previous history */
  1603. s->matches = 2; /* clear hash */
  1604. zmemcpy(s->window, s->strm->next_in - s->w_size, s->w_size);
  1605. s->strstart = s->w_size;
  1606. s->insert = s->strstart;
  1607. }
  1608. else {
  1609. if (s->window_size - s->strstart <= used) {
  1610. /* Slide the window down. */
  1611. s->strstart -= s->w_size;
  1612. zmemcpy(s->window, s->window + s->w_size, s->strstart);
  1613. if (s->matches < 2)
  1614. s->matches++; /* add a pending slide_hash() */
  1615. if (s->insert > s->strstart)
  1616. s->insert = s->strstart;
  1617. }
  1618. zmemcpy(s->window + s->strstart, s->strm->next_in - used, used);
  1619. s->strstart += used;
  1620. s->insert += MIN(used, s->w_size - s->insert);
  1621. }
  1622. s->block_start = s->strstart;
  1623. }
  1624. if (s->high_water < s->strstart)
  1625. s->high_water = s->strstart;
  1626. /* If the last block was written to next_out, then done. */
  1627. if (last)
  1628. return finish_done;
  1629. /* If flushing and all input has been consumed, then done. */
  1630. if (flush != Z_NO_FLUSH && flush != Z_FINISH &&
  1631. s->strm->avail_in == 0 && (long)s->strstart == s->block_start)
  1632. return block_done;
  1633. /* Fill the window with any remaining input. */
  1634. have = s->window_size - s->strstart;
  1635. if (s->strm->avail_in > have && s->block_start >= (long)s->w_size) {
  1636. /* Slide the window down. */
  1637. s->block_start -= s->w_size;
  1638. s->strstart -= s->w_size;
  1639. zmemcpy(s->window, s->window + s->w_size, s->strstart);
  1640. if (s->matches < 2)
  1641. s->matches++; /* add a pending slide_hash() */
  1642. have += s->w_size; /* more space now */
  1643. if (s->insert > s->strstart)
  1644. s->insert = s->strstart;
  1645. }
  1646. if (have > s->strm->avail_in)
  1647. have = s->strm->avail_in;
  1648. if (have) {
  1649. read_buf(s->strm, s->window + s->strstart, have);
  1650. s->strstart += have;
  1651. s->insert += MIN(have, s->w_size - s->insert);
  1652. }
  1653. if (s->high_water < s->strstart)
  1654. s->high_water = s->strstart;
  1655. /* There was not enough avail_out to write a complete worthy or flushed
  1656. * stored block to next_out. Write a stored block to pending instead, if we
  1657. * have enough input for a worthy block, or if flushing and there is enough
  1658. * room for the remaining input as a stored block in the pending buffer.
  1659. */
  1660. have = (s->bi_valid + 42) >> 3; /* number of header bytes */
  1661. /* maximum stored block length that will fit in pending: */
  1662. have = MIN(s->pending_buf_size - have, MAX_STORED);
  1663. min_block = MIN(have, s->w_size);
  1664. left = s->strstart - s->block_start;
  1665. if (left >= min_block ||
  1666. ((left || flush == Z_FINISH) && flush != Z_NO_FLUSH &&
  1667. s->strm->avail_in == 0 && left <= have)) {
  1668. len = MIN(left, have);
  1669. last = flush == Z_FINISH && s->strm->avail_in == 0 &&
  1670. len == left ? 1 : 0;
  1671. _tr_stored_block(s, (charf *)s->window + s->block_start, len, last);
  1672. s->block_start += len;
  1673. flush_pending(s->strm);
  1674. }
  1675. /* We've done all we can with the available input and output. */
  1676. return last ? finish_started : need_more;
  1677. }
  1678. /* ===========================================================================
  1679. * Compress as much as possible from the input stream, return the current
  1680. * block state.
  1681. * This function does not perform lazy evaluation of matches and inserts
  1682. * new strings in the dictionary only for unmatched strings or for short
  1683. * matches. It is used only for the fast compression options.
  1684. */
  1685. local block_state deflate_fast(s, flush)
  1686. deflate_state *s;
  1687. int flush;
  1688. {
  1689. IPos hash_head; /* head of the hash chain */
  1690. int bflush; /* set if current block must be flushed */
  1691. for (;;) {
  1692. /* Make sure that we always have enough lookahead, except
  1693. * at the end of the input file. We need MAX_MATCH bytes
  1694. * for the next match, plus MIN_MATCH bytes to insert the
  1695. * string following the next match.
  1696. */
  1697. if (s->lookahead < MIN_LOOKAHEAD) {
  1698. fill_window(s);
  1699. if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
  1700. return need_more;
  1701. }
  1702. if (s->lookahead == 0) break; /* flush the current block */
  1703. }
  1704. /* Insert the string window[strstart .. strstart + 2] in the
  1705. * dictionary, and set hash_head to the head of the hash chain:
  1706. */
  1707. hash_head = NIL;
  1708. if (s->lookahead >= MIN_MATCH) {
  1709. INSERT_STRING(s, s->strstart, hash_head);
  1710. }
  1711. /* Find the longest match, discarding those <= prev_length.
  1712. * At this point we have always match_length < MIN_MATCH
  1713. */
  1714. if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
  1715. /* To simplify the code, we prevent matches with the string
  1716. * of window index 0 (in particular we have to avoid a match
  1717. * of the string with itself at the start of the input file).
  1718. */
  1719. s->match_length = longest_match (s, hash_head);
  1720. /* longest_match() sets match_start */
  1721. }
  1722. if (s->match_length >= MIN_MATCH) {
  1723. check_match(s, s->strstart, s->match_start, s->match_length);
  1724. _tr_tally_dist(s, s->strstart - s->match_start,
  1725. s->match_length - MIN_MATCH, bflush);
  1726. s->lookahead -= s->match_length;
  1727. /* Insert new strings in the hash table only if the match length
  1728. * is not too large. This saves time but degrades compression.
  1729. */
  1730. #ifndef FASTEST
  1731. if (s->match_length <= s->max_insert_length &&
  1732. s->lookahead >= MIN_MATCH) {
  1733. s->match_length--; /* string at strstart already in table */
  1734. do {
  1735. s->strstart++;
  1736. INSERT_STRING(s, s->strstart, hash_head);
  1737. /* strstart never exceeds WSIZE-MAX_MATCH, so there are
  1738. * always MIN_MATCH bytes ahead.
  1739. */
  1740. } while (--s->match_length != 0);
  1741. s->strstart++;
  1742. } else
  1743. #endif
  1744. {
  1745. s->strstart += s->match_length;
  1746. s->match_length = 0;
  1747. s->ins_h = s->window[s->strstart];
  1748. UPDATE_HASH(s, s->ins_h, s->window[s->strstart + 1]);
  1749. #if MIN_MATCH != 3
  1750. Call UPDATE_HASH() MIN_MATCH-3 more times
  1751. #endif
  1752. /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not
  1753. * matter since it will be recomputed at next deflate call.
  1754. */
  1755. }
  1756. } else {
  1757. /* No match, output a literal byte */
  1758. Tracevv((stderr,"%c", s->window[s->strstart]));
  1759. _tr_tally_lit(s, s->window[s->strstart], bflush);
  1760. s->lookahead--;
  1761. s->strstart++;
  1762. }
  1763. if (bflush) FLUSH_BLOCK(s, 0);
  1764. }
  1765. s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
  1766. if (flush == Z_FINISH) {
  1767. FLUSH_BLOCK(s, 1);
  1768. return finish_done;
  1769. }
  1770. if (s->sym_next)
  1771. FLUSH_BLOCK(s, 0);
  1772. return block_done;
  1773. }
  1774. #ifndef FASTEST
  1775. /* ===========================================================================
  1776. * Same as above, but achieves better compression. We use a lazy
  1777. * evaluation for matches: a match is finally adopted only if there is
  1778. * no better match at the next window position.
  1779. */
  1780. local block_state deflate_slow(s, flush)
  1781. deflate_state *s;
  1782. int flush;
  1783. {
  1784. IPos hash_head; /* head of hash chain */
  1785. int bflush; /* set if current block must be flushed */
  1786. /* Process the input block. */
  1787. for (;;) {
  1788. /* Make sure that we always have enough lookahead, except
  1789. * at the end of the input file. We need MAX_MATCH bytes
  1790. * for the next match, plus MIN_MATCH bytes to insert the
  1791. * string following the next match.
  1792. */
  1793. if (s->lookahead < MIN_LOOKAHEAD) {
  1794. fill_window(s);
  1795. if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
  1796. return need_more;
  1797. }
  1798. if (s->lookahead == 0) break; /* flush the current block */
  1799. }
  1800. /* Insert the string window[strstart .. strstart + 2] in the
  1801. * dictionary, and set hash_head to the head of the hash chain:
  1802. */
  1803. hash_head = NIL;
  1804. if (s->lookahead >= MIN_MATCH) {
  1805. INSERT_STRING(s, s->strstart, hash_head);
  1806. }
  1807. /* Find the longest match, discarding those <= prev_length.
  1808. */
  1809. s->prev_length = s->match_length, s->prev_match = s->match_start;
  1810. s->match_length = MIN_MATCH-1;
  1811. if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
  1812. s->strstart - hash_head <= MAX_DIST(s)) {
  1813. /* To simplify the code, we prevent matches with the string
  1814. * of window index 0 (in particular we have to avoid a match
  1815. * of the string with itself at the start of the input file).
  1816. */
  1817. s->match_length = longest_match (s, hash_head);
  1818. /* longest_match() sets match_start */
  1819. if (s->match_length <= 5 && (s->strategy == Z_FILTERED
  1820. #if TOO_FAR <= 32767
  1821. || (s->match_length == MIN_MATCH &&
  1822. s->strstart - s->match_start > TOO_FAR)
  1823. #endif
  1824. )) {
  1825. /* If prev_match is also MIN_MATCH, match_start is garbage
  1826. * but we will ignore the current match anyway.
  1827. */
  1828. s->match_length = MIN_MATCH-1;
  1829. }
  1830. }
  1831. /* If there was a match at the previous step and the current
  1832. * match is not better, output the previous match:
  1833. */
  1834. if (s->prev_length >= MIN_MATCH && s->match_length <= s->prev_length) {
  1835. uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
  1836. /* Do not insert strings in hash table beyond this. */
  1837. check_match(s, s->strstart - 1, s->prev_match, s->prev_length);
  1838. _tr_tally_dist(s, s->strstart - 1 - s->prev_match,
  1839. s->prev_length - MIN_MATCH, bflush);
  1840. /* Insert in hash table all strings up to the end of the match.
  1841. * strstart - 1 and strstart are already inserted. If there is not
  1842. * enough lookahead, the last two strings are not inserted in
  1843. * the hash table.
  1844. */
  1845. s->lookahead -= s->prev_length - 1;
  1846. s->prev_length -= 2;
  1847. do {
  1848. if (++s->strstart <= max_insert) {
  1849. INSERT_STRING(s, s->strstart, hash_head);
  1850. }
  1851. } while (--s->prev_length != 0);
  1852. s->match_available = 0;
  1853. s->match_length = MIN_MATCH-1;
  1854. s->strstart++;
  1855. if (bflush) FLUSH_BLOCK(s, 0);
  1856. } else if (s->match_available) {
  1857. /* If there was no match at the previous position, output a
  1858. * single literal. If there was a match but the current match
  1859. * is longer, truncate the previous match to a single literal.
  1860. */
  1861. Tracevv((stderr,"%c", s->window[s->strstart - 1]));
  1862. _tr_tally_lit(s, s->window[s->strstart - 1], bflush);
  1863. if (bflush) {
  1864. FLUSH_BLOCK_ONLY(s, 0);
  1865. }
  1866. s->strstart++;
  1867. s->lookahead--;
  1868. if (s->strm->avail_out == 0) return need_more;
  1869. } else {
  1870. /* There is no previous match to compare with, wait for
  1871. * the next step to decide.
  1872. */
  1873. s->match_available = 1;
  1874. s->strstart++;
  1875. s->lookahead--;
  1876. }
  1877. }
  1878. Assert (flush != Z_NO_FLUSH, "no flush?");
  1879. if (s->match_available) {
  1880. Tracevv((stderr,"%c", s->window[s->strstart - 1]));
  1881. _tr_tally_lit(s, s->window[s->strstart - 1], bflush);
  1882. s->match_available = 0;
  1883. }
  1884. s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
  1885. if (flush == Z_FINISH) {
  1886. FLUSH_BLOCK(s, 1);
  1887. return finish_done;
  1888. }
  1889. if (s->sym_next)
  1890. FLUSH_BLOCK(s, 0);
  1891. return block_done;
  1892. }
  1893. #endif /* FASTEST */
  1894. /* ===========================================================================
  1895. * For Z_RLE, simply look for runs of bytes, generate matches only of distance
  1896. * one. Do not maintain a hash table. (It will be regenerated if this run of
  1897. * deflate switches away from Z_RLE.)
  1898. */
  1899. local block_state deflate_rle(s, flush)
  1900. deflate_state *s;
  1901. int flush;
  1902. {
  1903. int bflush; /* set if current block must be flushed */
  1904. uInt prev; /* byte at distance one to match */
  1905. Bytef *scan, *strend; /* scan goes up to strend for length of run */
  1906. for (;;) {
  1907. /* Make sure that we always have enough lookahead, except
  1908. * at the end of the input file. We need MAX_MATCH bytes
  1909. * for the longest run, plus one for the unrolled loop.
  1910. */
  1911. if (s->lookahead <= MAX_MATCH) {
  1912. fill_window(s);
  1913. if (s->lookahead <= MAX_MATCH && flush == Z_NO_FLUSH) {
  1914. return need_more;
  1915. }
  1916. if (s->lookahead == 0) break; /* flush the current block */
  1917. }
  1918. /* See how many times the previous byte repeats */
  1919. s->match_length = 0;
  1920. if (s->lookahead >= MIN_MATCH && s->strstart > 0) {
  1921. scan = s->window + s->strstart - 1;
  1922. prev = *scan;
  1923. if (prev == *++scan && prev == *++scan && prev == *++scan) {
  1924. strend = s->window + s->strstart + MAX_MATCH;
  1925. do {
  1926. } while (prev == *++scan && prev == *++scan &&
  1927. prev == *++scan && prev == *++scan &&
  1928. prev == *++scan && prev == *++scan &&
  1929. prev == *++scan && prev == *++scan &&
  1930. scan < strend);
  1931. s->match_length = MAX_MATCH - (uInt)(strend - scan);
  1932. if (s->match_length > s->lookahead)
  1933. s->match_length = s->lookahead;
  1934. }
  1935. Assert(scan <= s->window + (uInt)(s->window_size - 1),
  1936. "wild scan");
  1937. }
  1938. /* Emit match if have run of MIN_MATCH or longer, else emit literal */
  1939. if (s->match_length >= MIN_MATCH) {
  1940. check_match(s, s->strstart, s->strstart - 1, s->match_length);
  1941. _tr_tally_dist(s, 1, s->match_length - MIN_MATCH, bflush);
  1942. s->lookahead -= s->match_length;
  1943. s->strstart += s->match_length;
  1944. s->match_length = 0;
  1945. } else {
  1946. /* No match, output a literal byte */
  1947. Tracevv((stderr,"%c", s->window[s->strstart]));
  1948. _tr_tally_lit(s, s->window[s->strstart], bflush);
  1949. s->lookahead--;
  1950. s->strstart++;
  1951. }
  1952. if (bflush) FLUSH_BLOCK(s, 0);
  1953. }
  1954. s->insert = 0;
  1955. if (flush == Z_FINISH) {
  1956. FLUSH_BLOCK(s, 1);
  1957. return finish_done;
  1958. }
  1959. if (s->sym_next)
  1960. FLUSH_BLOCK(s, 0);
  1961. return block_done;
  1962. }
  1963. /* ===========================================================================
  1964. * For Z_HUFFMAN_ONLY, do not look for matches. Do not maintain a hash table.
  1965. * (It will be regenerated if this run of deflate switches away from Huffman.)
  1966. */
  1967. local block_state deflate_huff(s, flush)
  1968. deflate_state *s;
  1969. int flush;
  1970. {
  1971. int bflush; /* set if current block must be flushed */
  1972. for (;;) {
  1973. /* Make sure that we have a literal to write. */
  1974. if (s->lookahead == 0) {
  1975. fill_window(s);
  1976. if (s->lookahead == 0) {
  1977. if (flush == Z_NO_FLUSH)
  1978. return need_more;
  1979. break; /* flush the current block */
  1980. }
  1981. }
  1982. /* Output a literal byte */
  1983. s->match_length = 0;
  1984. Tracevv((stderr,"%c", s->window[s->strstart]));
  1985. _tr_tally_lit(s, s->window[s->strstart], bflush);
  1986. s->lookahead--;
  1987. s->strstart++;
  1988. if (bflush) FLUSH_BLOCK(s, 0);
  1989. }
  1990. s->insert = 0;
  1991. if (flush == Z_FINISH) {
  1992. FLUSH_BLOCK(s, 1);
  1993. return finish_done;
  1994. }
  1995. if (s->sym_next)
  1996. FLUSH_BLOCK(s, 0);
  1997. return block_done;
  1998. }