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
)
93 extern int write_batch
; /* dw */
94 int hold_int
; /* dw */
99 int n1
= MIN(CHUNK_SIZE
,n
-l
);
101 write_buf(f
,map_ptr(buf
,offset
+l
,n1
),n1
);
103 write_batch_delta_file( (char *) &n1
, sizeof(int) );
104 write_batch_delta_file(map_ptr(buf
,offset
+l
,n1
),n1
);
109 /* a -2 token means to send data only and no token */
111 write_int(f
,-(token
+1));
113 hold_int
= -(token
+1);
114 write_batch_delta_file( (char *) &hold_int
, sizeof(int) );
120 /* Flag bytes in compressed stream are encoded as follows: */
121 #define END_FLAG 0 /* that's all folks */
122 #define TOKEN_LONG 0x20 /* followed by 32-bit token number */
123 #define TOKENRUN_LONG 0x21 /* ditto with 16-bit run count */
124 #define DEFLATED_DATA 0x40 /* + 6-bit high len, then low len byte */
125 #define TOKEN_REL 0x80 /* + 6-bit relative token number */
126 #define TOKENRUN_REL 0xc0 /* ditto with 16-bit run count */
128 #define MAX_DATA_COUNT 16383 /* fit 14 bit count into 2 bytes with flags */
130 /* For coding runs of tokens */
131 static int last_token
= -1;
132 static int run_start
;
133 static int last_run_end
;
135 /* Deflation state */
136 static z_stream tx_strm
;
141 /* Send a deflated token */
143 send_deflated_token(int f
, int token
,
144 struct map_struct
*buf
, OFF_T offset
, int nb
, int toklen
)
147 static int init_done
, flush_pending
;
148 extern int write_batch
; /* dw */
149 char temp_byte
; /* dw */
151 if (last_token
== -1) {
154 tx_strm
.next_in
= NULL
;
155 tx_strm
.zalloc
= NULL
;
156 tx_strm
.zfree
= NULL
;
157 if (deflateInit2(&tx_strm
, compression_level
,
159 Z_DEFAULT_STRATEGY
) != Z_OK
) {
160 rprintf(FERROR
, "compression init failed\n");
161 exit_cleanup(RERR_STREAMIO
);
163 if ((obuf
= malloc(MAX_DATA_COUNT
+2)) == NULL
)
164 out_of_memory("send_deflated_token");
167 deflateReset(&tx_strm
);
172 } else if (last_token
== -2) {
175 } else if (nb
!= 0 || token
!= last_token
+ 1
176 || token
>= run_start
+ 65536) {
177 /* output previous run */
178 r
= run_start
- last_run_end
;
179 n
= last_token
- run_start
;
180 if (r
>= 0 && r
<= 63) {
181 write_byte(f
, (n
==0? TOKEN_REL
: TOKENRUN_REL
) + r
);
182 if (write_batch
) { /* dw */
183 temp_byte
= (char)( (n
==0? TOKEN_REL
: TOKENRUN_REL
) + r
);
184 write_batch_delta_file(&temp_byte
,sizeof(char));
187 write_byte(f
, (n
==0? TOKEN_LONG
: TOKENRUN_LONG
));
188 write_int(f
, run_start
);
189 if (write_batch
) { /* dw */
190 temp_byte
= (char)(n
==0? TOKEN_LONG
: TOKENRUN_LONG
);
191 write_batch_delta_file(&temp_byte
,sizeof(temp_byte
));
192 write_batch_delta_file((char *)&run_start
,sizeof(run_start
));
197 write_byte(f
, n
>> 8);
198 if (write_batch
) { /* dw */
199 write_batch_delta_file((char *)&n
,sizeof(char));
200 temp_byte
= (char) n
>> 8;
201 write_batch_delta_file(&temp_byte
,sizeof(temp_byte
));
204 last_run_end
= last_token
;
210 if (nb
!= 0 || flush_pending
) {
211 /* deflate the data starting at offset */
212 int flush
= Z_NO_FLUSH
;
213 tx_strm
.avail_in
= 0;
214 tx_strm
.avail_out
= 0;
216 if (tx_strm
.avail_in
== 0 && nb
!= 0) {
217 /* give it some more input */
218 n
= MIN(nb
, CHUNK_SIZE
);
219 tx_strm
.next_in
= (Bytef
*)
220 map_ptr(buf
, offset
, n
);
221 tx_strm
.avail_in
= n
;
225 if (tx_strm
.avail_out
== 0) {
226 tx_strm
.next_out
= (Bytef
*)(obuf
+ 2);
227 tx_strm
.avail_out
= MAX_DATA_COUNT
;
228 if (flush
!= Z_NO_FLUSH
) {
230 * We left the last 4 bytes in the
231 * buffer, in case they are the
232 * last 4. Move them to the front.
234 memcpy(tx_strm
.next_out
,
235 obuf
+MAX_DATA_COUNT
-2, 4);
236 tx_strm
.next_out
+= 4;
237 tx_strm
.avail_out
-= 4;
240 if (nb
== 0 && token
!= -2)
241 flush
= Z_SYNC_FLUSH
;
242 r
= deflate(&tx_strm
, flush
);
244 rprintf(FERROR
, "deflate returned %d\n", r
);
245 exit_cleanup(RERR_STREAMIO
);
247 if (nb
== 0 || tx_strm
.avail_out
== 0) {
248 n
= MAX_DATA_COUNT
- tx_strm
.avail_out
;
249 if (flush
!= Z_NO_FLUSH
) {
251 * We have to trim off the last 4
252 * bytes of output when flushing
253 * (they are just 0, 0, ff, ff).
258 obuf
[0] = DEFLATED_DATA
+ (n
>> 8);
260 write_buf(f
, obuf
, n
+2);
261 if (write_batch
) /* dw */
262 write_batch_delta_file(obuf
,n
+2);
265 } while (nb
!= 0 || tx_strm
.avail_out
== 0);
266 flush_pending
= token
== -2;
270 /* end of file - clean up */
271 write_byte(f
, END_FLAG
);
272 if (write_batch
) { /* dw */
273 temp_byte
= END_FLAG
;
274 write_batch_delta_file((char *)&temp_byte
,sizeof(temp_byte
));
277 } else if (token
!= -2) {
278 /* add the data in the current block to the compressor's
279 history and hash table */
280 tx_strm
.next_in
= (Bytef
*) map_ptr(buf
, offset
, toklen
);
281 tx_strm
.avail_in
= toklen
;
282 tx_strm
.next_out
= (Bytef
*) obuf
;
283 tx_strm
.avail_out
= MAX_DATA_COUNT
;
284 r
= deflate(&tx_strm
, Z_INSERT_ONLY
);
285 if (r
!= Z_OK
|| tx_strm
.avail_in
!= 0) {
286 rprintf(FERROR
, "deflate on token returned %d (%d bytes left)\n",
287 r
, tx_strm
.avail_in
);
288 exit_cleanup(RERR_STREAMIO
);
294 /* tells us what the receiver is in the middle of doing */
295 static enum { r_init
, r_idle
, r_running
, r_inflating
, r_inflated
} recv_state
;
297 /* for inflating stuff */
298 static z_stream rx_strm
;
302 /* for decoding runs of tokens */
306 /* Receive a deflated token and inflate it */
308 recv_deflated_token(int f
, char **data
)
311 static int init_done
;
312 static int saved_flag
;
315 switch (recv_state
) {
318 rx_strm
.next_out
= NULL
;
319 rx_strm
.zalloc
= NULL
;
320 rx_strm
.zfree
= NULL
;
321 if (inflateInit2(&rx_strm
, -15) != Z_OK
) {
322 rprintf(FERROR
, "inflate init failed\n");
323 exit_cleanup(RERR_STREAMIO
);
325 if ((cbuf
= malloc(MAX_DATA_COUNT
)) == NULL
326 || (dbuf
= malloc(CHUNK_SIZE
)) == NULL
)
327 out_of_memory("recv_deflated_token");
330 inflateReset(&rx_strm
);
339 flag
= saved_flag
& 0xff;
343 if ((flag
& 0xC0) == DEFLATED_DATA
) {
344 n
= ((flag
& 0x3f) << 8) + read_byte(f
);
345 read_buf(f
, cbuf
, n
);
346 rx_strm
.next_in
= (Bytef
*)cbuf
;
347 rx_strm
.avail_in
= n
;
348 recv_state
= r_inflating
;
351 if (recv_state
== r_inflated
) {
352 /* check previous inflated stuff ended correctly */
353 rx_strm
.avail_in
= 0;
354 rx_strm
.next_out
= (Bytef
*)dbuf
;
355 rx_strm
.avail_out
= CHUNK_SIZE
;
356 r
= inflate(&rx_strm
, Z_SYNC_FLUSH
);
357 n
= CHUNK_SIZE
- rx_strm
.avail_out
;
359 * Z_BUF_ERROR just means no progress was
360 * made, i.e. the decompressor didn't have
361 * any pending output for us.
363 if (r
!= Z_OK
&& r
!= Z_BUF_ERROR
) {
364 rprintf(FERROR
, "inflate flush returned %d (%d bytes)\n",
366 exit_cleanup(RERR_STREAMIO
);
368 if (n
!= 0 && r
!= Z_BUF_ERROR
) {
369 /* have to return some more data and
370 save the flag for later. */
371 saved_flag
= flag
+ 0x10000;
376 * At this point the decompressor should
377 * be expecting to see the 0, 0, ff, ff bytes.
379 if (!inflateSyncPoint(&rx_strm
)) {
380 rprintf(FERROR
, "decompressor lost sync!\n");
381 exit_cleanup(RERR_STREAMIO
);
383 rx_strm
.avail_in
= 4;
384 rx_strm
.next_in
= (Bytef
*)cbuf
;
385 cbuf
[0] = cbuf
[1] = 0;
386 cbuf
[2] = cbuf
[3] = 0xff;
387 inflate(&rx_strm
, Z_SYNC_FLUSH
);
390 if (flag
== END_FLAG
) {
391 /* that's all folks */
396 /* here we have a token of some kind */
397 if (flag
& TOKEN_REL
) {
398 rx_token
+= flag
& 0x3f;
401 rx_token
= read_int(f
);
403 rx_run
= read_byte(f
);
404 rx_run
+= read_byte(f
) << 8;
405 recv_state
= r_running
;
407 return -1 - rx_token
;
410 rx_strm
.next_out
= (Bytef
*)dbuf
;
411 rx_strm
.avail_out
= CHUNK_SIZE
;
412 r
= inflate(&rx_strm
, Z_NO_FLUSH
);
413 n
= CHUNK_SIZE
- rx_strm
.avail_out
;
415 rprintf(FERROR
, "inflate returned %d (%d bytes)\n", r
, n
);
416 exit_cleanup(RERR_STREAMIO
);
418 if (rx_strm
.avail_in
== 0)
419 recv_state
= r_inflated
;
430 return -1 - rx_token
;
436 * put the data corresponding to a token that we've just returned
437 * from recv_deflated_token into the decompressor's history buffer.
439 static void see_deflate_token(char *buf
, int len
)
442 unsigned char hdr
[5];
444 rx_strm
.avail_in
= 0;
448 if (rx_strm
.avail_in
== 0 && len
!= 0) {
450 /* Give it a fake stored-block header. */
451 rx_strm
.next_in
= (Bytef
*)hdr
;
452 rx_strm
.avail_in
= 5;
457 hdr
[2] = blklen
>> 8;
461 rx_strm
.next_in
= (Bytef
*)buf
;
462 rx_strm
.avail_in
= blklen
;
467 rx_strm
.next_out
= (Bytef
*)dbuf
;
468 rx_strm
.avail_out
= CHUNK_SIZE
;
469 r
= inflate(&rx_strm
, Z_SYNC_FLUSH
);
471 rprintf(FERROR
, "inflate (token) returned %d\n", r
);
472 exit_cleanup(RERR_STREAMIO
);
474 } while (len
|| rx_strm
.avail_out
== 0);
478 * transmit a verbatim buffer of length n followed by a token
479 * If token == -1 then we have reached EOF
480 * If n == 0 then don't send a buffer
482 void send_token(int f
,int token
,struct map_struct
*buf
,OFF_T offset
,
485 if (!do_compression
) {
486 simple_send_token(f
,token
,buf
,offset
,n
);
488 send_deflated_token(f
, token
, buf
, offset
, n
, toklen
);
494 * receive a token or buffer from the other end. If the reurn value is >0 then
495 * it is a data buffer of that length, and *data will point at the data.
496 * if the return value is -i then it represents token i-1
497 * if the return value is 0 then the end has been reached
499 int recv_token(int f
,char **data
)
503 if (!do_compression
) {
504 tok
= simple_recv_token(f
,data
);
506 tok
= recv_deflated_token(f
, data
);
512 * look at the data corresponding to a token, if necessary
514 void see_token(char *data
, int toklen
)
517 see_deflate_token(data
, toklen
);