Line | Count | Source |
1 | | /* gzwrite.c -- zlib functions for writing gzip files |
2 | | * Copyright (C) 2004-2025 Mark Adler |
3 | | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | | */ |
5 | | |
6 | | #include "gzguts.h" |
7 | | |
8 | | /* Initialize state for writing a gzip file. Mark initialization by setting |
9 | | state->size to non-zero. Return -1 on a memory allocation failure, or 0 on |
10 | | success. */ |
11 | 4.63k | local int gz_init(gz_statep state) { |
12 | 4.63k | int ret; |
13 | 4.63k | z_streamp strm = &(state->strm); |
14 | | |
15 | | /* allocate input buffer (double size for gzprintf) */ |
16 | 4.63k | state->in = (unsigned char *)malloc(state->want << 1); |
17 | 4.63k | if (state->in == NULL) { |
18 | 0 | gz_error(state, Z_MEM_ERROR, "out of memory"); |
19 | 0 | return -1; |
20 | 0 | } |
21 | | |
22 | | /* only need output buffer and deflate state if compressing */ |
23 | 4.63k | if (!state->direct) { |
24 | | /* allocate output buffer */ |
25 | 4.62k | state->out = (unsigned char *)malloc(state->want); |
26 | 4.62k | if (state->out == NULL) { |
27 | 0 | free(state->in); |
28 | 0 | gz_error(state, Z_MEM_ERROR, "out of memory"); |
29 | 0 | return -1; |
30 | 0 | } |
31 | | |
32 | | /* allocate deflate memory, set up for gzip compression */ |
33 | 4.62k | strm->zalloc = Z_NULL; |
34 | 4.62k | strm->zfree = Z_NULL; |
35 | 4.62k | strm->opaque = Z_NULL; |
36 | 4.62k | ret = deflateInit2(strm, state->level, Z_DEFLATED, |
37 | 4.62k | MAX_WBITS + 16, DEF_MEM_LEVEL, state->strategy); |
38 | 4.62k | if (ret != Z_OK) { |
39 | 47 | free(state->out); |
40 | 47 | free(state->in); |
41 | 47 | gz_error(state, Z_MEM_ERROR, "out of memory"); |
42 | 47 | return -1; |
43 | 47 | } |
44 | 4.57k | strm->next_in = NULL; |
45 | 4.57k | } |
46 | | |
47 | | /* mark state as initialized */ |
48 | 4.59k | state->size = state->want; |
49 | | |
50 | | /* initialize write buffer if compressing */ |
51 | 4.59k | if (!state->direct) { |
52 | 4.57k | strm->avail_out = state->size; |
53 | 4.57k | strm->next_out = state->out; |
54 | 4.57k | state->x.next = strm->next_out; |
55 | 4.57k | } |
56 | 4.59k | return 0; |
57 | 4.63k | } |
58 | | |
59 | | /* Compress whatever is at avail_in and next_in and write to the output file. |
60 | | Return -1 if there is an error writing to the output file or if gz_init() |
61 | | fails to allocate memory, otherwise 0. flush is assumed to be a valid |
62 | | deflate() flush value. If flush is Z_FINISH, then the deflate() state is |
63 | | reset to start a new gzip stream. If gz->direct is true, then simply write |
64 | | to the output file without compressing, and ignore flush. */ |
65 | 18.9k | local int gz_comp(gz_statep state, int flush) { |
66 | 18.9k | int ret, writ; |
67 | 18.9k | unsigned have, put, max = ((unsigned)-1 >> 2) + 1; |
68 | 18.9k | z_streamp strm = &(state->strm); |
69 | | |
70 | | /* allocate memory if this is the first time through */ |
71 | 18.9k | if (state->size == 0 && gz_init(state) == -1) |
72 | 42 | return -1; |
73 | | |
74 | | /* write directly if requested */ |
75 | 18.9k | if (state->direct) { |
76 | 184 | while (strm->avail_in) { |
77 | 85 | errno = 0; |
78 | 85 | state->again = 0; |
79 | 85 | put = strm->avail_in > max ? max : strm->avail_in; |
80 | 85 | writ = write(state->fd, strm->next_in, put); |
81 | 85 | if (writ < 0) { |
82 | 0 | if (errno == EAGAIN || errno == EWOULDBLOCK) |
83 | 0 | state->again = 1; |
84 | 0 | gz_error(state, Z_ERRNO, zstrerror()); |
85 | 0 | return -1; |
86 | 0 | } |
87 | 85 | strm->avail_in -= (unsigned)writ; |
88 | 85 | strm->next_in += writ; |
89 | 85 | } |
90 | 99 | return 0; |
91 | 99 | } |
92 | | |
93 | | /* check for a pending reset */ |
94 | 18.8k | if (state->reset) { |
95 | | /* don't start a new gzip member unless there is data to write and |
96 | | we're not flushing */ |
97 | 12 | if (strm->avail_in == 0 && flush == Z_NO_FLUSH) |
98 | 0 | return 0; |
99 | 12 | deflateReset(strm); |
100 | 12 | state->reset = 0; |
101 | 12 | } |
102 | | |
103 | | /* run deflate() on provided input until it produces no more output */ |
104 | 18.8k | ret = Z_OK; |
105 | 50.4k | do { |
106 | | /* write out current buffer contents if full, or if flushing, but if |
107 | | doing Z_FINISH then don't write until we get to Z_STREAM_END */ |
108 | 50.4k | if (strm->avail_out == 0 || (flush != Z_NO_FLUSH && |
109 | 20.9k | (flush != Z_FINISH || ret == Z_STREAM_END))) { |
110 | 41.8k | while (strm->next_out > state->x.next) { |
111 | 20.8k | errno = 0; |
112 | 20.8k | state->again = 0; |
113 | 20.8k | put = strm->next_out - state->x.next > (int)max ? max : |
114 | 20.8k | (unsigned)(strm->next_out - state->x.next); |
115 | 20.8k | writ = write(state->fd, state->x.next, put); |
116 | 20.8k | if (writ < 0) { |
117 | 0 | if (errno == EAGAIN || errno == EWOULDBLOCK) |
118 | 0 | state->again = 1; |
119 | 0 | gz_error(state, Z_ERRNO, zstrerror()); |
120 | 0 | return -1; |
121 | 0 | } |
122 | 20.8k | state->x.next += writ; |
123 | 20.8k | } |
124 | 20.9k | if (strm->avail_out == 0) { |
125 | 16.2k | strm->avail_out = state->size; |
126 | 16.2k | strm->next_out = state->out; |
127 | 16.2k | state->x.next = state->out; |
128 | 16.2k | } |
129 | 20.9k | } |
130 | | |
131 | | /* compress */ |
132 | 50.4k | have = strm->avail_out; |
133 | 50.4k | ret = deflate(strm, flush); |
134 | 50.4k | if (ret == Z_STREAM_ERROR) { |
135 | 0 | gz_error(state, Z_STREAM_ERROR, |
136 | 0 | "internal error: deflate stream corrupt"); |
137 | 0 | return -1; |
138 | 0 | } |
139 | 50.4k | have -= strm->avail_out; |
140 | 50.4k | } while (have); |
141 | | |
142 | | /* if that completed a deflate stream, allow another to start */ |
143 | 18.8k | if (flush == Z_FINISH) |
144 | 4.58k | state->reset = 1; |
145 | | |
146 | | /* all done, no errors */ |
147 | 18.8k | return 0; |
148 | 18.8k | } |
149 | | |
150 | | /* Compress state->skip (> 0) zeros to output. Return -1 on a write error or |
151 | | memory allocation failure by gz_comp(), or 0 on success. state->skip is |
152 | | updated with the number of successfully written zeros, in case there is a |
153 | | stall on a non-blocking write destination. */ |
154 | 177 | local int gz_zero(gz_statep state) { |
155 | 177 | int first, ret; |
156 | 177 | unsigned n; |
157 | 177 | z_streamp strm = &(state->strm); |
158 | | |
159 | | /* consume whatever's left in the input buffer */ |
160 | 177 | if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1) |
161 | 0 | return -1; |
162 | | |
163 | | /* compress state->skip zeros */ |
164 | 177 | first = 1; |
165 | 721 | do { |
166 | 721 | n = GT_OFF(state->size) || (z_off64_t)state->size > state->skip ? |
167 | 552 | (unsigned)state->skip : state->size; |
168 | 721 | if (first) { |
169 | 177 | memset(state->in, 0, n); |
170 | 177 | first = 0; |
171 | 177 | } |
172 | 721 | strm->avail_in = n; |
173 | 721 | strm->next_in = state->in; |
174 | 721 | ret = gz_comp(state, Z_NO_FLUSH); |
175 | 721 | n -= strm->avail_in; |
176 | 721 | state->x.pos += n; |
177 | 721 | state->skip -= n; |
178 | 721 | if (ret == -1) |
179 | 3 | return -1; |
180 | 721 | } while (state->skip); |
181 | 174 | return 0; |
182 | 177 | } |
183 | | |
184 | | /* Write len bytes from buf to file. Return the number of bytes written. If |
185 | | the returned value is less than len, then there was an error. If the error |
186 | | was a non-blocking stall, then the number of bytes consumed is returned. |
187 | | For any other error, 0 is returned. */ |
188 | 17.0k | local z_size_t gz_write(gz_statep state, voidpc buf, z_size_t len) { |
189 | 17.0k | z_size_t put = len; |
190 | 17.0k | int ret; |
191 | | |
192 | | /* if len is zero, avoid unnecessary operations */ |
193 | 17.0k | if (len == 0) |
194 | 11 | return 0; |
195 | | |
196 | | /* allocate memory if this is the first time through */ |
197 | 17.0k | if (state->size == 0 && gz_init(state) == -1) |
198 | 4 | return 0; |
199 | | |
200 | | /* check for seek request */ |
201 | 17.0k | if (state->skip && gz_zero(state) == -1) |
202 | 0 | return 0; |
203 | | |
204 | | /* for small len, copy to input buffer, otherwise compress directly */ |
205 | 17.0k | if (len < state->size) { |
206 | | /* copy to input buffer, compress when full */ |
207 | 3.54k | for (;;) { |
208 | 3.54k | unsigned have, copy; |
209 | | |
210 | 3.54k | if (state->strm.avail_in == 0) |
211 | 3.32k | state->strm.next_in = state->in; |
212 | 3.54k | have = (unsigned)((state->strm.next_in + state->strm.avail_in) - |
213 | 3.54k | state->in); |
214 | 3.54k | copy = state->size - have; |
215 | 3.54k | if (copy > len) |
216 | 3.54k | copy = (unsigned)len; |
217 | 3.54k | memcpy(state->in + have, buf, copy); |
218 | 3.54k | state->strm.avail_in += copy; |
219 | 3.54k | state->x.pos += copy; |
220 | 3.54k | buf = (const char *)buf + copy; |
221 | 3.54k | len -= copy; |
222 | 3.54k | if (len == 0) |
223 | 3.54k | break; |
224 | 0 | if (gz_comp(state, Z_NO_FLUSH) == -1) |
225 | 0 | return state->again ? put - len : 0; |
226 | 0 | } |
227 | 3.54k | } |
228 | 13.5k | else { |
229 | | /* consume whatever's left in the input buffer */ |
230 | 13.5k | if (state->strm.avail_in && gz_comp(state, Z_NO_FLUSH) == -1) |
231 | 0 | return 0; |
232 | | |
233 | | /* directly compress user buffer to file */ |
234 | 13.5k | state->strm.next_in = (z_const Bytef *)buf; |
235 | 13.5k | do { |
236 | 13.5k | unsigned n = (unsigned)-1; |
237 | | |
238 | 13.5k | if (n > len) |
239 | 13.5k | n = (unsigned)len; |
240 | 13.5k | state->strm.avail_in = n; |
241 | 13.5k | ret = gz_comp(state, Z_NO_FLUSH); |
242 | 13.5k | n -= state->strm.avail_in; |
243 | 13.5k | state->x.pos += n; |
244 | 13.5k | len -= n; |
245 | 13.5k | if (ret == -1) |
246 | 0 | return state->again ? put - len : 0; |
247 | 13.5k | } while (len); |
248 | 13.5k | } |
249 | | |
250 | | /* input was all buffered or compressed */ |
251 | 17.0k | return put; |
252 | 17.0k | } |
253 | | |
254 | | /* -- see zlib.h -- */ |
255 | 16.3k | int ZEXPORT gzwrite(gzFile file, voidpc buf, unsigned len) { |
256 | 16.3k | gz_statep state; |
257 | | |
258 | | /* get internal structure */ |
259 | 16.3k | if (file == NULL) |
260 | 0 | return 0; |
261 | 16.3k | state = (gz_statep)file; |
262 | | |
263 | | /* check that we're writing and that there's no (serious) error */ |
264 | 16.3k | if (state->mode != GZ_WRITE || (state->err != Z_OK && !state->again)) |
265 | 0 | return 0; |
266 | 16.3k | gz_error(state, Z_OK, NULL); |
267 | | |
268 | | /* since an int is returned, make sure len fits in one, otherwise return |
269 | | with an error (this avoids a flaw in the interface) */ |
270 | 16.3k | if ((int)len < 0) { |
271 | 0 | gz_error(state, Z_DATA_ERROR, "requested length does not fit in int"); |
272 | 0 | return 0; |
273 | 0 | } |
274 | | |
275 | | /* write len bytes from buf (the return value will fit in an int) */ |
276 | 16.3k | return (int)gz_write(state, buf, len); |
277 | 16.3k | } |
278 | | |
279 | | /* -- see zlib.h -- */ |
280 | | z_size_t ZEXPORT gzfwrite(voidpc buf, z_size_t size, z_size_t nitems, |
281 | 707 | gzFile file) { |
282 | 707 | z_size_t len; |
283 | 707 | gz_statep state; |
284 | | |
285 | | /* get internal structure */ |
286 | 707 | if (file == NULL) |
287 | 44 | return 0; |
288 | 663 | state = (gz_statep)file; |
289 | | |
290 | | /* check that we're writing and that there's no (serious) error */ |
291 | 663 | if (state->mode != GZ_WRITE || (state->err != Z_OK && !state->again)) |
292 | 1 | return 0; |
293 | 662 | gz_error(state, Z_OK, NULL); |
294 | | |
295 | | /* compute bytes to read -- error on overflow */ |
296 | 662 | len = nitems * size; |
297 | 662 | if (size && len / size != nitems) { |
298 | 0 | gz_error(state, Z_STREAM_ERROR, "request does not fit in a size_t"); |
299 | 0 | return 0; |
300 | 0 | } |
301 | | |
302 | | /* write len bytes to buf, return the number of full items written */ |
303 | 662 | return len ? gz_write(state, buf, len) / size : 0; |
304 | 662 | } |
305 | | |
306 | | /* -- see zlib.h -- */ |
307 | 91 | int ZEXPORT gzputc(gzFile file, int c) { |
308 | 91 | unsigned have; |
309 | 91 | unsigned char buf[1]; |
310 | 91 | gz_statep state; |
311 | 91 | z_streamp strm; |
312 | | |
313 | | /* get internal structure */ |
314 | 91 | if (file == NULL) |
315 | 47 | return -1; |
316 | 44 | state = (gz_statep)file; |
317 | 44 | strm = &(state->strm); |
318 | | |
319 | | /* check that we're writing and that there's no (serious) error */ |
320 | 44 | if (state->mode != GZ_WRITE || (state->err != Z_OK && !state->again)) |
321 | 2 | return -1; |
322 | 42 | gz_error(state, Z_OK, NULL); |
323 | | |
324 | | /* check for seek request */ |
325 | 42 | if (state->skip && gz_zero(state) == -1) |
326 | 0 | return -1; |
327 | | |
328 | | /* try writing to input buffer for speed (state->size == 0 if buffer not |
329 | | initialized) */ |
330 | 42 | if (state->size) { |
331 | 23 | if (strm->avail_in == 0) |
332 | 5 | strm->next_in = state->in; |
333 | 23 | have = (unsigned)((strm->next_in + strm->avail_in) - state->in); |
334 | 23 | if (have < state->size) { |
335 | 23 | state->in[have] = (unsigned char)c; |
336 | 23 | strm->avail_in++; |
337 | 23 | state->x.pos++; |
338 | 23 | return c & 0xff; |
339 | 23 | } |
340 | 23 | } |
341 | | |
342 | | /* no room in buffer or not initialized, use gz_write() */ |
343 | 19 | buf[0] = (unsigned char)c; |
344 | 19 | if (gz_write(state, buf, 1) != 1) |
345 | 1 | return -1; |
346 | 18 | return c & 0xff; |
347 | 19 | } |
348 | | |
349 | | /* -- see zlib.h -- */ |
350 | 124 | int ZEXPORT gzputs(gzFile file, const char *s) { |
351 | 124 | z_size_t len, put; |
352 | 124 | gz_statep state; |
353 | | |
354 | | /* get internal structure */ |
355 | 124 | if (file == NULL) |
356 | 35 | return -1; |
357 | 89 | state = (gz_statep)file; |
358 | | |
359 | | /* check that we're writing and that there's no (serious) error */ |
360 | 89 | if (state->mode != GZ_WRITE || (state->err != Z_OK && !state->again)) |
361 | 9 | return -1; |
362 | 80 | gz_error(state, Z_OK, NULL); |
363 | | |
364 | | /* write string */ |
365 | 80 | len = strlen(s); |
366 | 80 | if ((int)len < 0 || (unsigned)len != len) { |
367 | 0 | gz_error(state, Z_STREAM_ERROR, "string length does not fit in int"); |
368 | 0 | return -1; |
369 | 0 | } |
370 | 80 | put = gz_write(state, s, len); |
371 | 80 | return len && put == 0 ? -1 : (int)put; |
372 | 80 | } |
373 | | |
374 | | #if (((!defined(STDC) && !defined(Z_HAVE_STDARG_H)) || !defined(NO_vsnprintf)) && \ |
375 | | (defined(STDC) || defined(Z_HAVE_STDARG_H) || !defined(NO_snprintf))) || \ |
376 | | defined(ZLIB_INSECURE) |
377 | | /* If the second half of the input buffer is occupied, write out the contents. |
378 | | If there is any input remaining due to a non-blocking stall on write, move |
379 | | it to the start of the buffer. Return true if this did not open up the |
380 | | second half of the buffer. state->err should be checked after this to |
381 | | handle a gz_comp() error. */ |
382 | 208 | local int gz_vacate(gz_statep state) { |
383 | 208 | z_streamp strm; |
384 | | |
385 | 208 | strm = &(state->strm); |
386 | 208 | if (strm->next_in + strm->avail_in <= state->in + state->size) |
387 | 208 | return 0; |
388 | 0 | (void)gz_comp(state, Z_NO_FLUSH); |
389 | 0 | if (strm->avail_in == 0) { |
390 | 0 | strm->next_in = state->in; |
391 | 0 | return 0; |
392 | 0 | } |
393 | 0 | memmove(state->in, strm->next_in, strm->avail_in); |
394 | 0 | strm->next_in = state->in; |
395 | 0 | return strm->avail_in > state->size; |
396 | 0 | } |
397 | | #endif |
398 | | |
399 | | #if defined(STDC) || defined(Z_HAVE_STDARG_H) |
400 | | #include <stdarg.h> |
401 | | |
402 | | /* -- see zlib.h -- */ |
403 | 335 | int ZEXPORTVA gzvprintf(gzFile file, const char *format, va_list va) { |
404 | | #if defined(NO_vsnprintf) && !defined(ZLIB_INSECURE) |
405 | | #warning "vsnprintf() not available -- gzprintf() stub returns Z_STREAM_ERROR" |
406 | | #warning "you can recompile with ZLIB_INSECURE defined to use vsprintf()" |
407 | | /* prevent use of insecure vsprintf(), unless purposefully requested */ |
408 | | (void)file, (void)format, (void)va; |
409 | | return Z_STREAM_ERROR; |
410 | | #else |
411 | 335 | int len, ret; |
412 | 335 | char *next; |
413 | 335 | gz_statep state; |
414 | 335 | z_streamp strm; |
415 | | |
416 | | /* get internal structure */ |
417 | 335 | if (file == NULL) |
418 | 202 | return Z_STREAM_ERROR; |
419 | 133 | state = (gz_statep)file; |
420 | 133 | strm = &(state->strm); |
421 | | |
422 | | /* check that we're writing and that there's no (serious) error */ |
423 | 133 | if (state->mode != GZ_WRITE || (state->err != Z_OK && !state->again)) |
424 | 23 | return Z_STREAM_ERROR; |
425 | 110 | gz_error(state, Z_OK, NULL); |
426 | | |
427 | | /* make sure we have some buffer space */ |
428 | 110 | if (state->size == 0 && gz_init(state) == -1) |
429 | 1 | return state->err; |
430 | | |
431 | | /* check for seek request */ |
432 | 109 | if (state->skip && gz_zero(state) == -1) |
433 | 0 | return state->err; |
434 | | |
435 | | /* do the printf() into the input buffer, put length in len -- the input |
436 | | buffer is double-sized just for this function, so there should be |
437 | | state->size bytes available after the current contents */ |
438 | 109 | ret = gz_vacate(state); |
439 | 109 | if (state->err) { |
440 | 0 | if (ret && state->again) { |
441 | | /* There was a non-blocking stall on write, resulting in the part |
442 | | of the second half of the output buffer being occupied. Return |
443 | | a Z_BUF_ERROR to let the application know that this gzprintf() |
444 | | needs to be retried. */ |
445 | 0 | gz_error(state, Z_BUF_ERROR, "stalled write on gzprintf"); |
446 | 0 | } |
447 | 0 | if (!state->again) |
448 | 0 | return state->err; |
449 | 0 | } |
450 | 109 | if (strm->avail_in == 0) |
451 | 90 | strm->next_in = state->in; |
452 | 109 | next = (char *)(state->in + (strm->next_in - state->in) + strm->avail_in); |
453 | 109 | next[state->size - 1] = 0; |
454 | | #ifdef NO_vsnprintf |
455 | | # ifdef HAS_vsprintf_void |
456 | | (void)vsprintf(next, format, va); |
457 | | for (len = 0; len < state->size; len++) |
458 | | if (next[len] == 0) break; |
459 | | # else |
460 | | len = vsprintf(next, format, va); |
461 | | # endif |
462 | | #else |
463 | | # ifdef HAS_vsnprintf_void |
464 | | (void)vsnprintf(next, state->size, format, va); |
465 | | len = strlen(next); |
466 | | # else |
467 | 109 | len = vsnprintf(next, state->size, format, va); |
468 | 109 | # endif |
469 | 109 | #endif |
470 | | |
471 | | /* check that printf() results fit in buffer */ |
472 | 109 | if (len == 0 || (unsigned)len >= state->size || next[state->size - 1] != 0) |
473 | 10 | return 0; |
474 | | |
475 | | /* update buffer and position */ |
476 | 99 | strm->avail_in += (unsigned)len; |
477 | 99 | state->x.pos += len; |
478 | | |
479 | | /* write out buffer if more than half is occupied */ |
480 | 99 | ret = gz_vacate(state); |
481 | 99 | if (state->err && !state->again) |
482 | 0 | return state->err; |
483 | 99 | return len; |
484 | 99 | #endif |
485 | 99 | } |
486 | | |
487 | 335 | int ZEXPORTVA gzprintf(gzFile file, const char *format, ...) { |
488 | 335 | va_list va; |
489 | 335 | int ret; |
490 | | |
491 | 335 | va_start(va, format); |
492 | 335 | ret = gzvprintf(file, format, va); |
493 | 335 | va_end(va); |
494 | 335 | return ret; |
495 | 335 | } |
496 | | |
497 | | #else /* !STDC && !Z_HAVE_STDARG_H */ |
498 | | |
499 | | /* -- see zlib.h -- */ |
500 | | int ZEXPORTVA gzprintf(gzFile file, const char *format, int a1, int a2, int a3, |
501 | | int a4, int a5, int a6, int a7, int a8, int a9, int a10, |
502 | | int a11, int a12, int a13, int a14, int a15, int a16, |
503 | | int a17, int a18, int a19, int a20) { |
504 | | #if defined(NO_snprintf) && !defined(ZLIB_INSECURE) |
505 | | #warning "snprintf() not available -- gzprintf() stub returns Z_STREAM_ERROR" |
506 | | #warning "you can recompile with ZLIB_INSECURE defined to use sprintf()" |
507 | | /* prevent use of insecure sprintf(), unless purposefully requested */ |
508 | | (void)file, (void)format, (void)a1, (void)a2, (void)a3, (void)a4, (void)a5, |
509 | | (void)a6, (void)a7, (void)a8, (void)a9, (void)a10, (void)a11, (void)a12, |
510 | | (void)a13, (void)a14, (void)a15, (void)a16, (void)a17, (void)a18, |
511 | | (void)a19, (void)a20; |
512 | | return Z_STREAM_ERROR; |
513 | | #else |
514 | | int ret; |
515 | | unsigned len, left; |
516 | | char *next; |
517 | | gz_statep state; |
518 | | z_streamp strm; |
519 | | |
520 | | /* get internal structure */ |
521 | | if (file == NULL) |
522 | | return Z_STREAM_ERROR; |
523 | | state = (gz_statep)file; |
524 | | strm = &(state->strm); |
525 | | |
526 | | /* check that can really pass pointer in ints */ |
527 | | if (sizeof(int) != sizeof(void *)) |
528 | | return Z_STREAM_ERROR; |
529 | | |
530 | | /* check that we're writing and that there's no (serious) error */ |
531 | | if (state->mode != GZ_WRITE || (state->err != Z_OK && !state->again)) |
532 | | return Z_STREAM_ERROR; |
533 | | gz_error(state, Z_OK, NULL); |
534 | | |
535 | | /* make sure we have some buffer space */ |
536 | | if (state->size == 0 && gz_init(state) == -1) |
537 | | return state->err; |
538 | | |
539 | | /* check for seek request */ |
540 | | if (state->skip && gz_zero(state) == -1) |
541 | | return state->err; |
542 | | |
543 | | /* do the printf() into the input buffer, put length in len -- the input |
544 | | buffer is double-sized just for this function, so there is guaranteed to |
545 | | be state->size bytes available after the current contents */ |
546 | | ret = gz_vacate(state); |
547 | | if (state->err) { |
548 | | if (ret && state->again) { |
549 | | /* There was a non-blocking stall on write, resulting in the part |
550 | | of the second half of the output buffer being occupied. Return |
551 | | a Z_BUF_ERROR to let the application know that this gzprintf() |
552 | | needs to be retried. */ |
553 | | gz_error(state, Z_BUF_ERROR, "stalled write on gzprintf"); |
554 | | } |
555 | | if (!state->again) |
556 | | return state->err; |
557 | | } |
558 | | if (strm->avail_in == 0) |
559 | | strm->next_in = state->in; |
560 | | next = (char *)(strm->next_in + strm->avail_in); |
561 | | next[state->size - 1] = 0; |
562 | | #ifdef NO_snprintf |
563 | | # ifdef HAS_sprintf_void |
564 | | sprintf(next, format, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, |
565 | | a13, a14, a15, a16, a17, a18, a19, a20); |
566 | | for (len = 0; len < size; len++) |
567 | | if (next[len] == 0) |
568 | | break; |
569 | | # else |
570 | | len = sprintf(next, format, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, |
571 | | a12, a13, a14, a15, a16, a17, a18, a19, a20); |
572 | | # endif |
573 | | #else |
574 | | # ifdef HAS_snprintf_void |
575 | | snprintf(next, state->size, format, a1, a2, a3, a4, a5, a6, a7, a8, a9, |
576 | | a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20); |
577 | | len = strlen(next); |
578 | | # else |
579 | | len = snprintf(next, state->size, format, a1, a2, a3, a4, a5, a6, a7, a8, |
580 | | a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20); |
581 | | # endif |
582 | | #endif |
583 | | |
584 | | /* check that printf() results fit in buffer */ |
585 | | if (len == 0 || len >= state->size || next[state->size - 1] != 0) |
586 | | return 0; |
587 | | |
588 | | /* update buffer and position, compress first half if past that */ |
589 | | strm->avail_in += len; |
590 | | state->x.pos += len; |
591 | | |
592 | | /* write out buffer if more than half is occupied */ |
593 | | ret = gz_vacate(state); |
594 | | if (state->err && !state->again) |
595 | | return state->err; |
596 | | return (int)len; |
597 | | #endif |
598 | | } |
599 | | |
600 | | #endif |
601 | | |
602 | | /* -- see zlib.h -- */ |
603 | 91 | int ZEXPORT gzflush(gzFile file, int flush) { |
604 | 91 | gz_statep state; |
605 | | |
606 | | /* get internal structure */ |
607 | 91 | if (file == NULL) |
608 | 26 | return Z_STREAM_ERROR; |
609 | 65 | state = (gz_statep)file; |
610 | | |
611 | | /* check that we're writing and that there's no (serious) error */ |
612 | 65 | if (state->mode != GZ_WRITE || (state->err != Z_OK && !state->again)) |
613 | 25 | return Z_STREAM_ERROR; |
614 | 40 | gz_error(state, Z_OK, NULL); |
615 | | |
616 | | /* check flush parameter */ |
617 | 40 | if (flush < 0 || flush > Z_FINISH) |
618 | 14 | return Z_STREAM_ERROR; |
619 | | |
620 | | /* check for seek request */ |
621 | 26 | if (state->skip && gz_zero(state) == -1) |
622 | 0 | return state->err; |
623 | | |
624 | | /* compress remaining data with requested flush */ |
625 | 26 | (void)gz_comp(state, flush); |
626 | 26 | return state->err; |
627 | 26 | } |
628 | | |
629 | | /* -- see zlib.h -- */ |
630 | 136 | int ZEXPORT gzsetparams(gzFile file, int level, int strategy) { |
631 | 136 | gz_statep state; |
632 | 136 | z_streamp strm; |
633 | | |
634 | | /* get internal structure */ |
635 | 136 | if (file == NULL) |
636 | 16 | return Z_STREAM_ERROR; |
637 | 120 | state = (gz_statep)file; |
638 | 120 | strm = &(state->strm); |
639 | | |
640 | | /* check that we're compressing and that there's no (serious) error */ |
641 | 120 | if (state->mode != GZ_WRITE || (state->err != Z_OK && !state->again) || |
642 | 118 | state->direct) |
643 | 3 | return Z_STREAM_ERROR; |
644 | 117 | gz_error(state, Z_OK, NULL); |
645 | | |
646 | | /* if no change is requested, then do nothing */ |
647 | 117 | if (level == state->level && strategy == state->strategy) |
648 | 1 | return Z_OK; |
649 | | |
650 | | /* check for seek request */ |
651 | 116 | if (state->skip && gz_zero(state) == -1) |
652 | 0 | return state->err; |
653 | | |
654 | | /* change compression parameters for subsequent input */ |
655 | 116 | if (state->size) { |
656 | | /* flush previous input with previous parameters before changing */ |
657 | 69 | if (strm->avail_in && gz_comp(state, Z_BLOCK) == -1) |
658 | 0 | return state->err; |
659 | 69 | deflateParams(strm, level, strategy); |
660 | 69 | } |
661 | 116 | state->level = level; |
662 | 116 | state->strategy = strategy; |
663 | 116 | return Z_OK; |
664 | 116 | } |
665 | | |
666 | | /* -- see zlib.h -- */ |
667 | 4.62k | int ZEXPORT gzclose_w(gzFile file) { |
668 | 4.62k | int ret = Z_OK; |
669 | 4.62k | gz_statep state; |
670 | | |
671 | | /* get internal structure */ |
672 | 4.62k | if (file == NULL) |
673 | 0 | return Z_STREAM_ERROR; |
674 | 4.62k | state = (gz_statep)file; |
675 | | |
676 | | /* check that we're writing */ |
677 | 4.62k | if (state->mode != GZ_WRITE) |
678 | 0 | return Z_STREAM_ERROR; |
679 | | |
680 | | /* check for seek request */ |
681 | 4.62k | if (state->skip && gz_zero(state) == -1) |
682 | 3 | ret = state->err; |
683 | | |
684 | | /* flush, free memory, and close file */ |
685 | 4.62k | if (gz_comp(state, Z_FINISH) == -1) |
686 | 39 | ret = state->err; |
687 | 4.62k | if (state->size) { |
688 | 4.58k | if (!state->direct) { |
689 | 4.57k | (void)deflateEnd(&(state->strm)); |
690 | 4.57k | free(state->out); |
691 | 4.57k | } |
692 | 4.58k | free(state->in); |
693 | 4.58k | } |
694 | 4.62k | gz_error(state, Z_OK, NULL); |
695 | 4.62k | free(state->path); |
696 | 4.62k | if (close(state->fd) == -1) |
697 | 0 | ret = Z_ERRNO; |
698 | 4.62k | free(state); |
699 | 4.62k | return ret; |
700 | 4.62k | } |