2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "zlib/zlib.h"
23 extern int do_compression
;
24 static int compression_level
= Z_DEFAULT_COMPRESSION
;
26 /* determine the compression level based on a wildcard filename list */
27 void set_compression(char *fname
)
33 if (!do_compression
) return;
35 compression_level
= Z_DEFAULT_COMPRESSION
;
36 dont
= lp_dont_compress(module_id
);
38 if (!dont
|| !*dont
) return;
40 if ((dont
[0] == '*') && (!dont
[1])) {
41 /* an optimization to skip the rest of this routine */
42 compression_level
= 0;
47 fname
= strdup(fname
);
48 if (!dont
|| !fname
) return;
53 for (tok
=strtok(dont
," ");tok
;tok
=strtok(NULL
," ")) {
54 if (fnmatch(tok
, fname
, 0) == 0) {
55 compression_level
= 0;
63 /* non-compressing recv token */
64 static int simple_recv_token(int f
,char **data
)
71 buf
= (char *)malloc(CHUNK_SIZE
);
72 if (!buf
) out_of_memory("simple_recv_token");
82 n
= MIN(CHUNK_SIZE
,residue
);
89 /* non-compressing send token */
90 static void simple_send_token(int f
,int token
,
91 struct map_struct
*buf
,OFF_T offset
,int n
)
96 int n1
= MIN(CHUNK_SIZE
,n
-l
);
98 write_buf(f
,map_ptr(buf
,offset
+l
,n1
),n1
);
102 /* a -2 token means to send data only and no token */
104 write_int(f
,-(token
+1));
109 /* Flag bytes in compressed stream are encoded as follows: */
110 #define END_FLAG 0 /* that's all folks */
111 #define TOKEN_LONG 0x20 /* followed by 32-bit token number */
112 #define TOKENRUN_LONG 0x21 /* ditto with 16-bit run count */
113 #define DEFLATED_DATA 0x40 /* + 6-bit high len, then low len byte */
114 #define TOKEN_REL 0x80 /* + 6-bit relative token number */
115 #define TOKENRUN_REL 0xc0 /* ditto with 16-bit run count */
117 #define MAX_DATA_COUNT 16383 /* fit 14 bit count into 2 bytes with flags */
119 /* For coding runs of tokens */
120 static int last_token
= -1;
121 static int run_start
;
122 static int last_run_end
;
124 /* Deflation state */
125 static z_stream tx_strm
;
130 /* Send a deflated token */
132 send_deflated_token(int f
, int token
,
133 struct map_struct
*buf
, OFF_T offset
, int nb
, int toklen
)
136 static int init_done
, flush_pending
;
138 if (last_token
== -1) {
141 tx_strm
.next_in
= NULL
;
142 tx_strm
.zalloc
= NULL
;
143 tx_strm
.zfree
= NULL
;
144 if (deflateInit2(&tx_strm
, compression_level
,
146 Z_DEFAULT_STRATEGY
) != Z_OK
) {
147 rprintf(FERROR
, "compression init failed\n");
148 exit_cleanup(RERR_STREAMIO
);
150 if ((obuf
= malloc(MAX_DATA_COUNT
+2)) == NULL
)
151 out_of_memory("send_deflated_token");
154 deflateReset(&tx_strm
);
159 } else if (last_token
== -2) {
162 } else if (nb
!= 0 || token
!= last_token
+ 1
163 || token
>= run_start
+ 65536) {
164 /* output previous run */
165 r
= run_start
- last_run_end
;
166 n
= last_token
- run_start
;
167 if (r
>= 0 && r
<= 63) {
168 write_byte(f
, (n
==0? TOKEN_REL
: TOKENRUN_REL
) + r
);
170 write_byte(f
, (n
==0? TOKEN_LONG
: TOKENRUN_LONG
));
171 write_int(f
, run_start
);
175 write_byte(f
, n
>> 8);
177 last_run_end
= last_token
;
183 if (nb
!= 0 || flush_pending
) {
184 /* deflate the data starting at offset */
185 int flush
= Z_NO_FLUSH
;
186 tx_strm
.avail_in
= 0;
187 tx_strm
.avail_out
= 0;
189 if (tx_strm
.avail_in
== 0 && nb
!= 0) {
190 /* give it some more input */
191 n
= MIN(nb
, CHUNK_SIZE
);
192 tx_strm
.next_in
= (Bytef
*)
193 map_ptr(buf
, offset
, n
);
194 tx_strm
.avail_in
= n
;
198 if (tx_strm
.avail_out
== 0) {
199 tx_strm
.next_out
= (Bytef
*)(obuf
+ 2);
200 tx_strm
.avail_out
= MAX_DATA_COUNT
;
201 if (flush
!= Z_NO_FLUSH
) {
203 * We left the last 4 bytes in the
204 * buffer, in case they are the
205 * last 4. Move them to the front.
207 memcpy(tx_strm
.next_out
,
208 obuf
+MAX_DATA_COUNT
-2, 4);
209 tx_strm
.next_out
+= 4;
210 tx_strm
.avail_out
-= 4;
213 if (nb
== 0 && token
!= -2)
214 flush
= Z_SYNC_FLUSH
;
215 r
= deflate(&tx_strm
, flush
);
217 rprintf(FERROR
, "deflate returned %d\n", r
);
218 exit_cleanup(RERR_STREAMIO
);
220 if (nb
== 0 || tx_strm
.avail_out
== 0) {
221 n
= MAX_DATA_COUNT
- tx_strm
.avail_out
;
222 if (flush
!= Z_NO_FLUSH
) {
224 * We have to trim off the last 4
225 * bytes of output when flushing
226 * (they are just 0, 0, ff, ff).
231 obuf
[0] = DEFLATED_DATA
+ (n
>> 8);
233 write_buf(f
, obuf
, n
+2);
236 } while (nb
!= 0 || tx_strm
.avail_out
== 0);
237 flush_pending
= token
== -2;
241 /* end of file - clean up */
242 write_byte(f
, END_FLAG
);
244 } else if (token
!= -2) {
245 /* add the data in the current block to the compressor's
246 history and hash table */
247 tx_strm
.next_in
= (Bytef
*) map_ptr(buf
, offset
, toklen
);
248 tx_strm
.avail_in
= toklen
;
249 tx_strm
.next_out
= (Bytef
*) obuf
;
250 tx_strm
.avail_out
= MAX_DATA_COUNT
;
251 r
= deflate(&tx_strm
, Z_INSERT_ONLY
);
252 if (r
!= Z_OK
|| tx_strm
.avail_in
!= 0) {
253 rprintf(FERROR
, "deflate on token returned %d (%d bytes left)\n",
254 r
, tx_strm
.avail_in
);
255 exit_cleanup(RERR_STREAMIO
);
261 /* tells us what the receiver is in the middle of doing */
262 static enum { r_init
, r_idle
, r_running
, r_inflating
, r_inflated
} recv_state
;
264 /* for inflating stuff */
265 static z_stream rx_strm
;
269 /* for decoding runs of tokens */
273 /* Receive a deflated token and inflate it */
275 recv_deflated_token(int f
, char **data
)
278 static int init_done
;
279 static int saved_flag
;
282 switch (recv_state
) {
285 rx_strm
.next_out
= NULL
;
286 rx_strm
.zalloc
= NULL
;
287 rx_strm
.zfree
= NULL
;
288 if (inflateInit2(&rx_strm
, -15) != Z_OK
) {
289 rprintf(FERROR
, "inflate init failed\n");
290 exit_cleanup(RERR_STREAMIO
);
292 if ((cbuf
= malloc(MAX_DATA_COUNT
)) == NULL
293 || (dbuf
= malloc(CHUNK_SIZE
)) == NULL
)
294 out_of_memory("recv_deflated_token");
297 inflateReset(&rx_strm
);
306 flag
= saved_flag
& 0xff;
310 if ((flag
& 0xC0) == DEFLATED_DATA
) {
311 n
= ((flag
& 0x3f) << 8) + read_byte(f
);
312 read_buf(f
, cbuf
, n
);
313 rx_strm
.next_in
= (Bytef
*)cbuf
;
314 rx_strm
.avail_in
= n
;
315 recv_state
= r_inflating
;
318 if (recv_state
== r_inflated
) {
319 /* check previous inflated stuff ended correctly */
320 rx_strm
.avail_in
= 0;
321 rx_strm
.next_out
= (Bytef
*)dbuf
;
322 rx_strm
.avail_out
= CHUNK_SIZE
;
323 r
= inflate(&rx_strm
, Z_SYNC_FLUSH
);
324 n
= CHUNK_SIZE
- rx_strm
.avail_out
;
326 * Z_BUF_ERROR just means no progress was
327 * made, i.e. the decompressor didn't have
328 * any pending output for us.
330 if (r
!= Z_OK
&& r
!= Z_BUF_ERROR
) {
331 rprintf(FERROR
, "inflate flush returned %d (%d bytes)\n",
333 exit_cleanup(RERR_STREAMIO
);
335 if (n
!= 0 && r
!= Z_BUF_ERROR
) {
336 /* have to return some more data and
337 save the flag for later. */
338 saved_flag
= flag
+ 0x10000;
343 * At this point the decompressor should
344 * be expecting to see the 0, 0, ff, ff bytes.
346 if (!inflateSyncPoint(&rx_strm
)) {
347 rprintf(FERROR
, "decompressor lost sync!\n");
348 exit_cleanup(RERR_STREAMIO
);
350 rx_strm
.avail_in
= 4;
351 rx_strm
.next_in
= (Bytef
*)cbuf
;
352 cbuf
[0] = cbuf
[1] = 0;
353 cbuf
[2] = cbuf
[3] = 0xff;
354 inflate(&rx_strm
, Z_SYNC_FLUSH
);
357 if (flag
== END_FLAG
) {
358 /* that's all folks */
363 /* here we have a token of some kind */
364 if (flag
& TOKEN_REL
) {
365 rx_token
+= flag
& 0x3f;
368 rx_token
= read_int(f
);
370 rx_run
= read_byte(f
);
371 rx_run
+= read_byte(f
) << 8;
372 recv_state
= r_running
;
374 return -1 - rx_token
;
377 rx_strm
.next_out
= (Bytef
*)dbuf
;
378 rx_strm
.avail_out
= CHUNK_SIZE
;
379 r
= inflate(&rx_strm
, Z_NO_FLUSH
);
380 n
= CHUNK_SIZE
- rx_strm
.avail_out
;
382 rprintf(FERROR
, "inflate returned %d (%d bytes)\n", r
, n
);
383 exit_cleanup(RERR_STREAMIO
);
385 if (rx_strm
.avail_in
== 0)
386 recv_state
= r_inflated
;
397 return -1 - rx_token
;
403 * put the data corresponding to a token that we've just returned
404 * from recv_deflated_token into the decompressor's history buffer.
406 static void see_deflate_token(char *buf
, int len
)
409 unsigned char hdr
[5];
411 rx_strm
.avail_in
= 0;
415 if (rx_strm
.avail_in
== 0 && len
!= 0) {
417 /* Give it a fake stored-block header. */
418 rx_strm
.next_in
= (Bytef
*)hdr
;
419 rx_strm
.avail_in
= 5;
424 hdr
[2] = blklen
>> 8;
428 rx_strm
.next_in
= (Bytef
*)buf
;
429 rx_strm
.avail_in
= blklen
;
434 rx_strm
.next_out
= (Bytef
*)dbuf
;
435 rx_strm
.avail_out
= CHUNK_SIZE
;
436 r
= inflate(&rx_strm
, Z_SYNC_FLUSH
);
438 rprintf(FERROR
, "inflate (token) returned %d\n", r
);
439 exit_cleanup(RERR_STREAMIO
);
441 } while (len
|| rx_strm
.avail_out
== 0);
445 * transmit a verbatim buffer of length n followed by a token
446 * If token == -1 then we have reached EOF
447 * If n == 0 then don't send a buffer
449 void send_token(int f
,int token
,struct map_struct
*buf
,OFF_T offset
,
452 if (!do_compression
) {
453 simple_send_token(f
,token
,buf
,offset
,n
);
455 send_deflated_token(f
, token
, buf
, offset
, n
, toklen
);
461 * receive a token or buffer from the other end. If the reurn value is >0 then
462 * it is a data buffer of that length, and *data will point at the data.
463 * if the return value is -i then it represents token i-1
464 * if the return value is 0 then the end has been reached
466 int recv_token(int f
,char **data
)
470 if (!do_compression
) {
471 tok
= simple_recv_token(f
,data
);
473 tok
= recv_deflated_token(f
, data
);
479 * look at the data corresponding to a token, if necessary
481 void see_token(char *data
, int toklen
)
484 see_deflate_token(data
, toklen
);