annotate src/zlib-1.2.8/FAQ @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 5b4145a0d408
children
rev   line source
cannam@128 1
cannam@128 2 Frequently Asked Questions about zlib
cannam@128 3
cannam@128 4
cannam@128 5 If your question is not there, please check the zlib home page
cannam@128 6 http://zlib.net/ which may have more recent information.
cannam@128 7 The lastest zlib FAQ is at http://zlib.net/zlib_faq.html
cannam@128 8
cannam@128 9
cannam@128 10 1. Is zlib Y2K-compliant?
cannam@128 11
cannam@128 12 Yes. zlib doesn't handle dates.
cannam@128 13
cannam@128 14 2. Where can I get a Windows DLL version?
cannam@128 15
cannam@128 16 The zlib sources can be compiled without change to produce a DLL. See the
cannam@128 17 file win32/DLL_FAQ.txt in the zlib distribution. Pointers to the
cannam@128 18 precompiled DLL are found in the zlib web site at http://zlib.net/ .
cannam@128 19
cannam@128 20 3. Where can I get a Visual Basic interface to zlib?
cannam@128 21
cannam@128 22 See
cannam@128 23 * http://marknelson.us/1997/01/01/zlib-engine/
cannam@128 24 * win32/DLL_FAQ.txt in the zlib distribution
cannam@128 25
cannam@128 26 4. compress() returns Z_BUF_ERROR.
cannam@128 27
cannam@128 28 Make sure that before the call of compress(), the length of the compressed
cannam@128 29 buffer is equal to the available size of the compressed buffer and not
cannam@128 30 zero. For Visual Basic, check that this parameter is passed by reference
cannam@128 31 ("as any"), not by value ("as long").
cannam@128 32
cannam@128 33 5. deflate() or inflate() returns Z_BUF_ERROR.
cannam@128 34
cannam@128 35 Before making the call, make sure that avail_in and avail_out are not zero.
cannam@128 36 When setting the parameter flush equal to Z_FINISH, also make sure that
cannam@128 37 avail_out is big enough to allow processing all pending input. Note that a
cannam@128 38 Z_BUF_ERROR is not fatal--another call to deflate() or inflate() can be
cannam@128 39 made with more input or output space. A Z_BUF_ERROR may in fact be
cannam@128 40 unavoidable depending on how the functions are used, since it is not
cannam@128 41 possible to tell whether or not there is more output pending when
cannam@128 42 strm.avail_out returns with zero. See http://zlib.net/zlib_how.html for a
cannam@128 43 heavily annotated example.
cannam@128 44
cannam@128 45 6. Where's the zlib documentation (man pages, etc.)?
cannam@128 46
cannam@128 47 It's in zlib.h . Examples of zlib usage are in the files test/example.c
cannam@128 48 and test/minigzip.c, with more in examples/ .
cannam@128 49
cannam@128 50 7. Why don't you use GNU autoconf or libtool or ...?
cannam@128 51
cannam@128 52 Because we would like to keep zlib as a very small and simple package.
cannam@128 53 zlib is rather portable and doesn't need much configuration.
cannam@128 54
cannam@128 55 8. I found a bug in zlib.
cannam@128 56
cannam@128 57 Most of the time, such problems are due to an incorrect usage of zlib.
cannam@128 58 Please try to reproduce the problem with a small program and send the
cannam@128 59 corresponding source to us at zlib@gzip.org . Do not send multi-megabyte
cannam@128 60 data files without prior agreement.
cannam@128 61
cannam@128 62 9. Why do I get "undefined reference to gzputc"?
cannam@128 63
cannam@128 64 If "make test" produces something like
cannam@128 65
cannam@128 66 example.o(.text+0x154): undefined reference to `gzputc'
cannam@128 67
cannam@128 68 check that you don't have old files libz.* in /usr/lib, /usr/local/lib or
cannam@128 69 /usr/X11R6/lib. Remove any old versions, then do "make install".
cannam@128 70
cannam@128 71 10. I need a Delphi interface to zlib.
cannam@128 72
cannam@128 73 See the contrib/delphi directory in the zlib distribution.
cannam@128 74
cannam@128 75 11. Can zlib handle .zip archives?
cannam@128 76
cannam@128 77 Not by itself, no. See the directory contrib/minizip in the zlib
cannam@128 78 distribution.
cannam@128 79
cannam@128 80 12. Can zlib handle .Z files?
cannam@128 81
cannam@128 82 No, sorry. You have to spawn an uncompress or gunzip subprocess, or adapt
cannam@128 83 the code of uncompress on your own.
cannam@128 84
cannam@128 85 13. How can I make a Unix shared library?
cannam@128 86
cannam@128 87 By default a shared (and a static) library is built for Unix. So:
cannam@128 88
cannam@128 89 make distclean
cannam@128 90 ./configure
cannam@128 91 make
cannam@128 92
cannam@128 93 14. How do I install a shared zlib library on Unix?
cannam@128 94
cannam@128 95 After the above, then:
cannam@128 96
cannam@128 97 make install
cannam@128 98
cannam@128 99 However, many flavors of Unix come with a shared zlib already installed.
cannam@128 100 Before going to the trouble of compiling a shared version of zlib and
cannam@128 101 trying to install it, you may want to check if it's already there! If you
cannam@128 102 can #include <zlib.h>, it's there. The -lz option will probably link to
cannam@128 103 it. You can check the version at the top of zlib.h or with the
cannam@128 104 ZLIB_VERSION symbol defined in zlib.h .
cannam@128 105
cannam@128 106 15. I have a question about OttoPDF.
cannam@128 107
cannam@128 108 We are not the authors of OttoPDF. The real author is on the OttoPDF web
cannam@128 109 site: Joel Hainley, jhainley@myndkryme.com.
cannam@128 110
cannam@128 111 16. Can zlib decode Flate data in an Adobe PDF file?
cannam@128 112
cannam@128 113 Yes. See http://www.pdflib.com/ . To modify PDF forms, see
cannam@128 114 http://sourceforge.net/projects/acroformtool/ .
cannam@128 115
cannam@128 116 17. Why am I getting this "register_frame_info not found" error on Solaris?
cannam@128 117
cannam@128 118 After installing zlib 1.1.4 on Solaris 2.6, running applications using zlib
cannam@128 119 generates an error such as:
cannam@128 120
cannam@128 121 ld.so.1: rpm: fatal: relocation error: file /usr/local/lib/libz.so:
cannam@128 122 symbol __register_frame_info: referenced symbol not found
cannam@128 123
cannam@128 124 The symbol __register_frame_info is not part of zlib, it is generated by
cannam@128 125 the C compiler (cc or gcc). You must recompile applications using zlib
cannam@128 126 which have this problem. This problem is specific to Solaris. See
cannam@128 127 http://www.sunfreeware.com for Solaris versions of zlib and applications
cannam@128 128 using zlib.
cannam@128 129
cannam@128 130 18. Why does gzip give an error on a file I make with compress/deflate?
cannam@128 131
cannam@128 132 The compress and deflate functions produce data in the zlib format, which
cannam@128 133 is different and incompatible with the gzip format. The gz* functions in
cannam@128 134 zlib on the other hand use the gzip format. Both the zlib and gzip formats
cannam@128 135 use the same compressed data format internally, but have different headers
cannam@128 136 and trailers around the compressed data.
cannam@128 137
cannam@128 138 19. Ok, so why are there two different formats?
cannam@128 139
cannam@128 140 The gzip format was designed to retain the directory information about a
cannam@128 141 single file, such as the name and last modification date. The zlib format
cannam@128 142 on the other hand was designed for in-memory and communication channel
cannam@128 143 applications, and has a much more compact header and trailer and uses a
cannam@128 144 faster integrity check than gzip.
cannam@128 145
cannam@128 146 20. Well that's nice, but how do I make a gzip file in memory?
cannam@128 147
cannam@128 148 You can request that deflate write the gzip format instead of the zlib
cannam@128 149 format using deflateInit2(). You can also request that inflate decode the
cannam@128 150 gzip format using inflateInit2(). Read zlib.h for more details.
cannam@128 151
cannam@128 152 21. Is zlib thread-safe?
cannam@128 153
cannam@128 154 Yes. However any library routines that zlib uses and any application-
cannam@128 155 provided memory allocation routines must also be thread-safe. zlib's gz*
cannam@128 156 functions use stdio library routines, and most of zlib's functions use the
cannam@128 157 library memory allocation routines by default. zlib's *Init* functions
cannam@128 158 allow for the application to provide custom memory allocation routines.
cannam@128 159
cannam@128 160 Of course, you should only operate on any given zlib or gzip stream from a
cannam@128 161 single thread at a time.
cannam@128 162
cannam@128 163 22. Can I use zlib in my commercial application?
cannam@128 164
cannam@128 165 Yes. Please read the license in zlib.h.
cannam@128 166
cannam@128 167 23. Is zlib under the GNU license?
cannam@128 168
cannam@128 169 No. Please read the license in zlib.h.
cannam@128 170
cannam@128 171 24. The license says that altered source versions must be "plainly marked". So
cannam@128 172 what exactly do I need to do to meet that requirement?
cannam@128 173
cannam@128 174 You need to change the ZLIB_VERSION and ZLIB_VERNUM #defines in zlib.h. In
cannam@128 175 particular, the final version number needs to be changed to "f", and an
cannam@128 176 identification string should be appended to ZLIB_VERSION. Version numbers
cannam@128 177 x.x.x.f are reserved for modifications to zlib by others than the zlib
cannam@128 178 maintainers. For example, if the version of the base zlib you are altering
cannam@128 179 is "1.2.3.4", then in zlib.h you should change ZLIB_VERNUM to 0x123f, and
cannam@128 180 ZLIB_VERSION to something like "1.2.3.f-zachary-mods-v3". You can also
cannam@128 181 update the version strings in deflate.c and inftrees.c.
cannam@128 182
cannam@128 183 For altered source distributions, you should also note the origin and
cannam@128 184 nature of the changes in zlib.h, as well as in ChangeLog and README, along
cannam@128 185 with the dates of the alterations. The origin should include at least your
cannam@128 186 name (or your company's name), and an email address to contact for help or
cannam@128 187 issues with the library.
cannam@128 188
cannam@128 189 Note that distributing a compiled zlib library along with zlib.h and
cannam@128 190 zconf.h is also a source distribution, and so you should change
cannam@128 191 ZLIB_VERSION and ZLIB_VERNUM and note the origin and nature of the changes
cannam@128 192 in zlib.h as you would for a full source distribution.
cannam@128 193
cannam@128 194 25. Will zlib work on a big-endian or little-endian architecture, and can I
cannam@128 195 exchange compressed data between them?
cannam@128 196
cannam@128 197 Yes and yes.
cannam@128 198
cannam@128 199 26. Will zlib work on a 64-bit machine?
cannam@128 200
cannam@128 201 Yes. It has been tested on 64-bit machines, and has no dependence on any
cannam@128 202 data types being limited to 32-bits in length. If you have any
cannam@128 203 difficulties, please provide a complete problem report to zlib@gzip.org
cannam@128 204
cannam@128 205 27. Will zlib decompress data from the PKWare Data Compression Library?
cannam@128 206
cannam@128 207 No. The PKWare DCL uses a completely different compressed data format than
cannam@128 208 does PKZIP and zlib. However, you can look in zlib's contrib/blast
cannam@128 209 directory for a possible solution to your problem.
cannam@128 210
cannam@128 211 28. Can I access data randomly in a compressed stream?
cannam@128 212
cannam@128 213 No, not without some preparation. If when compressing you periodically use
cannam@128 214 Z_FULL_FLUSH, carefully write all the pending data at those points, and
cannam@128 215 keep an index of those locations, then you can start decompression at those
cannam@128 216 points. You have to be careful to not use Z_FULL_FLUSH too often, since it
cannam@128 217 can significantly degrade compression. Alternatively, you can scan a
cannam@128 218 deflate stream once to generate an index, and then use that index for
cannam@128 219 random access. See examples/zran.c .
cannam@128 220
cannam@128 221 29. Does zlib work on MVS, OS/390, CICS, etc.?
cannam@128 222
cannam@128 223 It has in the past, but we have not heard of any recent evidence. There
cannam@128 224 were working ports of zlib 1.1.4 to MVS, but those links no longer work.
cannam@128 225 If you know of recent, successful applications of zlib on these operating
cannam@128 226 systems, please let us know. Thanks.
cannam@128 227
cannam@128 228 30. Is there some simpler, easier to read version of inflate I can look at to
cannam@128 229 understand the deflate format?
cannam@128 230
cannam@128 231 First off, you should read RFC 1951. Second, yes. Look in zlib's
cannam@128 232 contrib/puff directory.
cannam@128 233
cannam@128 234 31. Does zlib infringe on any patents?
cannam@128 235
cannam@128 236 As far as we know, no. In fact, that was originally the whole point behind
cannam@128 237 zlib. Look here for some more information:
cannam@128 238
cannam@128 239 http://www.gzip.org/#faq11
cannam@128 240
cannam@128 241 32. Can zlib work with greater than 4 GB of data?
cannam@128 242
cannam@128 243 Yes. inflate() and deflate() will process any amount of data correctly.
cannam@128 244 Each call of inflate() or deflate() is limited to input and output chunks
cannam@128 245 of the maximum value that can be stored in the compiler's "unsigned int"
cannam@128 246 type, but there is no limit to the number of chunks. Note however that the
cannam@128 247 strm.total_in and strm_total_out counters may be limited to 4 GB. These
cannam@128 248 counters are provided as a convenience and are not used internally by
cannam@128 249 inflate() or deflate(). The application can easily set up its own counters
cannam@128 250 updated after each call of inflate() or deflate() to count beyond 4 GB.
cannam@128 251 compress() and uncompress() may be limited to 4 GB, since they operate in a
cannam@128 252 single call. gzseek() and gztell() may be limited to 4 GB depending on how
cannam@128 253 zlib is compiled. See the zlibCompileFlags() function in zlib.h.
cannam@128 254
cannam@128 255 The word "may" appears several times above since there is a 4 GB limit only
cannam@128 256 if the compiler's "long" type is 32 bits. If the compiler's "long" type is
cannam@128 257 64 bits, then the limit is 16 exabytes.
cannam@128 258
cannam@128 259 33. Does zlib have any security vulnerabilities?
cannam@128 260
cannam@128 261 The only one that we are aware of is potentially in gzprintf(). If zlib is
cannam@128 262 compiled to use sprintf() or vsprintf(), then there is no protection
cannam@128 263 against a buffer overflow of an 8K string space (or other value as set by
cannam@128 264 gzbuffer()), other than the caller of gzprintf() assuring that the output
cannam@128 265 will not exceed 8K. On the other hand, if zlib is compiled to use
cannam@128 266 snprintf() or vsnprintf(), which should normally be the case, then there is
cannam@128 267 no vulnerability. The ./configure script will display warnings if an
cannam@128 268 insecure variation of sprintf() will be used by gzprintf(). Also the
cannam@128 269 zlibCompileFlags() function will return information on what variant of
cannam@128 270 sprintf() is used by gzprintf().
cannam@128 271
cannam@128 272 If you don't have snprintf() or vsnprintf() and would like one, you can
cannam@128 273 find a portable implementation here:
cannam@128 274
cannam@128 275 http://www.ijs.si/software/snprintf/
cannam@128 276
cannam@128 277 Note that you should be using the most recent version of zlib. Versions
cannam@128 278 1.1.3 and before were subject to a double-free vulnerability, and versions
cannam@128 279 1.2.1 and 1.2.2 were subject to an access exception when decompressing
cannam@128 280 invalid compressed data.
cannam@128 281
cannam@128 282 34. Is there a Java version of zlib?
cannam@128 283
cannam@128 284 Probably what you want is to use zlib in Java. zlib is already included
cannam@128 285 as part of the Java SDK in the java.util.zip package. If you really want
cannam@128 286 a version of zlib written in the Java language, look on the zlib home
cannam@128 287 page for links: http://zlib.net/ .
cannam@128 288
cannam@128 289 35. I get this or that compiler or source-code scanner warning when I crank it
cannam@128 290 up to maximally-pedantic. Can't you guys write proper code?
cannam@128 291
cannam@128 292 Many years ago, we gave up attempting to avoid warnings on every compiler
cannam@128 293 in the universe. It just got to be a waste of time, and some compilers
cannam@128 294 were downright silly as well as contradicted each other. So now, we simply
cannam@128 295 make sure that the code always works.
cannam@128 296
cannam@128 297 36. Valgrind (or some similar memory access checker) says that deflate is
cannam@128 298 performing a conditional jump that depends on an uninitialized value.
cannam@128 299 Isn't that a bug?
cannam@128 300
cannam@128 301 No. That is intentional for performance reasons, and the output of deflate
cannam@128 302 is not affected. This only started showing up recently since zlib 1.2.x
cannam@128 303 uses malloc() by default for allocations, whereas earlier versions used
cannam@128 304 calloc(), which zeros out the allocated memory. Even though the code was
cannam@128 305 correct, versions 1.2.4 and later was changed to not stimulate these
cannam@128 306 checkers.
cannam@128 307
cannam@128 308 37. Will zlib read the (insert any ancient or arcane format here) compressed
cannam@128 309 data format?
cannam@128 310
cannam@128 311 Probably not. Look in the comp.compression FAQ for pointers to various
cannam@128 312 formats and associated software.
cannam@128 313
cannam@128 314 38. How can I encrypt/decrypt zip files with zlib?
cannam@128 315
cannam@128 316 zlib doesn't support encryption. The original PKZIP encryption is very
cannam@128 317 weak and can be broken with freely available programs. To get strong
cannam@128 318 encryption, use GnuPG, http://www.gnupg.org/ , which already includes zlib
cannam@128 319 compression. For PKZIP compatible "encryption", look at
cannam@128 320 http://www.info-zip.org/
cannam@128 321
cannam@128 322 39. What's the difference between the "gzip" and "deflate" HTTP 1.1 encodings?
cannam@128 323
cannam@128 324 "gzip" is the gzip format, and "deflate" is the zlib format. They should
cannam@128 325 probably have called the second one "zlib" instead to avoid confusion with
cannam@128 326 the raw deflate compressed data format. While the HTTP 1.1 RFC 2616
cannam@128 327 correctly points to the zlib specification in RFC 1950 for the "deflate"
cannam@128 328 transfer encoding, there have been reports of servers and browsers that
cannam@128 329 incorrectly produce or expect raw deflate data per the deflate
cannam@128 330 specification in RFC 1951, most notably Microsoft. So even though the
cannam@128 331 "deflate" transfer encoding using the zlib format would be the more
cannam@128 332 efficient approach (and in fact exactly what the zlib format was designed
cannam@128 333 for), using the "gzip" transfer encoding is probably more reliable due to
cannam@128 334 an unfortunate choice of name on the part of the HTTP 1.1 authors.
cannam@128 335
cannam@128 336 Bottom line: use the gzip format for HTTP 1.1 encoding.
cannam@128 337
cannam@128 338 40. Does zlib support the new "Deflate64" format introduced by PKWare?
cannam@128 339
cannam@128 340 No. PKWare has apparently decided to keep that format proprietary, since
cannam@128 341 they have not documented it as they have previous compression formats. In
cannam@128 342 any case, the compression improvements are so modest compared to other more
cannam@128 343 modern approaches, that it's not worth the effort to implement.
cannam@128 344
cannam@128 345 41. I'm having a problem with the zip functions in zlib, can you help?
cannam@128 346
cannam@128 347 There are no zip functions in zlib. You are probably using minizip by
cannam@128 348 Giles Vollant, which is found in the contrib directory of zlib. It is not
cannam@128 349 part of zlib. In fact none of the stuff in contrib is part of zlib. The
cannam@128 350 files in there are not supported by the zlib authors. You need to contact
cannam@128 351 the authors of the respective contribution for help.
cannam@128 352
cannam@128 353 42. The match.asm code in contrib is under the GNU General Public License.
cannam@128 354 Since it's part of zlib, doesn't that mean that all of zlib falls under the
cannam@128 355 GNU GPL?
cannam@128 356
cannam@128 357 No. The files in contrib are not part of zlib. They were contributed by
cannam@128 358 other authors and are provided as a convenience to the user within the zlib
cannam@128 359 distribution. Each item in contrib has its own license.
cannam@128 360
cannam@128 361 43. Is zlib subject to export controls? What is its ECCN?
cannam@128 362
cannam@128 363 zlib is not subject to export controls, and so is classified as EAR99.
cannam@128 364
cannam@128 365 44. Can you please sign these lengthy legal documents and fax them back to us
cannam@128 366 so that we can use your software in our product?
cannam@128 367
cannam@128 368 No. Go away. Shoo.