2 * Routines used by the file-transfer code.
4 * Copyright (C) 1996 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2003-2020 Wayne Davison
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, visit the http://fsf.org website.
32 extern int do_compression
;
33 extern int protocol_version
;
35 extern int do_compression_level
;
36 extern char *skip_compress
;
39 #define Z_INSERT_ONLY Z_SYNC_FLUSH
42 static int compression_level
; /* The compression level for the current file. */
43 static int skip_compression_level
; /* The least possible compressing for handling skip-compress files. */
44 static int per_file_default_level
; /* The default level that each new file gets prior to checking its suffix. */
47 struct suffix_tree
*sibling
;
48 struct suffix_tree
*child
;
49 char letter
, word_end
;
52 static char *match_list
;
53 static struct suffix_tree
*suftree
;
55 void init_compression_level(void)
57 int min_level
, max_level
, def_level
, off_level
;
59 switch (do_compression
) {
65 max_level
= Z_BEST_COMPRESSION
;
66 def_level
= 6; /* Z_DEFAULT_COMPRESSION is -1, so set it to the real default */
67 off_level
= skip_compression_level
= Z_NO_COMPRESSION
;
68 if (do_compression_level
== Z_DEFAULT_COMPRESSION
)
69 do_compression_level
= def_level
;
73 min_level
= skip_compression_level
= ZSTD_minCLevel();
74 max_level
= ZSTD_maxCLevel();
75 def_level
= ZSTD_CLEVEL_DEFAULT
;
76 off_level
= CLVL_NOT_SPECIFIED
;
77 if (do_compression_level
== 0)
78 do_compression_level
= def_level
;
83 min_level
= skip_compression_level
= 0;
86 off_level
= CLVL_NOT_SPECIFIED
;
89 default: /* paranoia to prevent missing case values */
93 if (do_compression_level
== CLVL_NOT_SPECIFIED
)
94 do_compression_level
= def_level
;
95 else if (do_compression_level
== off_level
) {
96 do_compression
= CPRES_NONE
;
100 /* We don't bother with any errors or warnings -- just make sure that the values are valid. */
101 if (do_compression_level
< min_level
)
102 do_compression_level
= min_level
;
103 else if (do_compression_level
> max_level
)
104 do_compression_level
= max_level
;
107 static void add_suffix(struct suffix_tree
**prior
, char ltr
, const char *str
)
109 struct suffix_tree
*node
, *newnode
;
112 const char *after
= strchr(str
, ']');
113 /* Treat "[foo" and "[]" as having a literal '['. */
114 if (after
&& after
++ != str
+1) {
115 while ((ltr
= *str
++) != ']')
116 add_suffix(prior
, ltr
, after
);
121 for (node
= *prior
; node
; prior
= &node
->sibling
, node
= node
->sibling
) {
122 if (node
->letter
== ltr
) {
124 add_suffix(&node
->child
, *str
, str
+1);
129 if (node
->letter
> ltr
)
132 if (!(newnode
= new(struct suffix_tree
)))
133 out_of_memory("add_suffix");
134 newnode
->sibling
= node
;
135 newnode
->child
= NULL
;
136 newnode
->letter
= ltr
;
139 add_suffix(&newnode
->child
, *str
, str
+1);
140 newnode
->word_end
= 0;
142 newnode
->word_end
= 1;
145 static void add_nocompress_suffixes(const char *str
)
150 if (!(buf
= new_array(char, strlen(f
) + 1)))
151 out_of_memory("add_nocompress_suffixes");
165 } while (*++f
!= '/' && *f
);
168 add_suffix(&suftree
, *buf
, buf
+1);
174 static void init_set_compression(void)
180 add_nocompress_suffixes(skip_compress
);
182 /* A non-daemon transfer skips the default suffix list if the
183 * user specified --skip-compress. */
184 if (skip_compress
&& module_id
< 0)
187 f
= lp_dont_compress(module_id
);
189 if (!(match_list
= t
= new_array(char, strlen(f
) + 2)))
190 out_of_memory("set_compression");
192 per_file_default_level
= do_compression_level
;
206 } while (*++f
!= ' ' && *f
);
209 if (t
- start
== 1+1 && *start
== '*') {
210 /* Optimize a match-string of "*". */
213 per_file_default_level
= skip_compression_level
;
217 /* Move *.foo items into the stuffix tree. */
218 if (*start
== '*' && start
[1] == '.' && start
[2]
219 && !strpbrk(start
+2, ".?*")) {
220 add_suffix(&suftree
, start
[2], start
+3);
227 /* determine the compression level based on a wildcard filename list */
228 void set_compression(const char *fname
)
230 const struct suffix_tree
*node
;
238 init_set_compression();
240 compression_level
= per_file_default_level
;
242 if (!*match_list
&& !suftree
)
245 if ((s
= strrchr(fname
, '/')) != NULL
)
248 for (s
= match_list
; *s
; s
+= strlen(s
) + 1) {
249 if (iwildmatch(s
, fname
)) {
250 compression_level
= skip_compression_level
;
255 if (!(node
= suftree
) || !(s
= strrchr(fname
, '.'))
256 || s
== fname
|| !(ltr
= *++s
))
262 while (node
->letter
!= ltr
) {
263 if (node
->letter
> ltr
)
265 if (!(node
= node
->sibling
))
268 if ((ltr
= *++s
) == '\0') {
270 compression_level
= skip_compression_level
;
273 if (!(node
= node
->child
))
278 /* non-compressing recv token */
279 static int32
simple_recv_token(int f
, char **data
)
281 static int32 residue
;
286 buf
= new_array(char, CHUNK_SIZE
);
288 out_of_memory("simple_recv_token");
292 int32 i
= read_int(f
);
299 n
= MIN(CHUNK_SIZE
,residue
);
305 /* non-compressing send token */
306 static void simple_send_token(int f
, int32 token
, struct map_struct
*buf
, OFF_T offset
, int32 n
)
311 int32 n1
= MIN(CHUNK_SIZE
, n
-len
);
313 write_buf(f
, map_ptr(buf
, offset
+len
, n1
), n1
);
317 /* a -2 token means to send data only and no token */
319 write_int(f
, -(token
+1));
322 /* Flag bytes in compressed stream are encoded as follows: */
323 #define END_FLAG 0 /* that's all folks */
324 #define TOKEN_LONG 0x20 /* followed by 32-bit token number */
325 #define TOKENRUN_LONG 0x21 /* ditto with 16-bit run count */
326 #define DEFLATED_DATA 0x40 /* + 6-bit high len, then low len byte */
327 #define TOKEN_REL 0x80 /* + 6-bit relative token number */
328 #define TOKENRUN_REL 0xc0 /* ditto with 16-bit run count */
330 #define MAX_DATA_COUNT 16383 /* fit 14 bit count into 2 bytes with flags */
332 /* zlib.h says that if we want to be able to compress something in a single
333 * call, avail_out must be at least 0.1% larger than avail_in plus 12 bytes.
334 * We'll add in 0.1%+16, just to be safe (and we'll avoid floating point,
335 * to ensure that this is a compile-time value). */
336 #define AVAIL_OUT_SIZE(avail_in_size) ((avail_in_size)*1001/1000+16)
338 /* For coding runs of tokens */
339 static int32 last_token
= -1;
340 static int32 run_start
;
341 static int32 last_run_end
;
343 /* Deflation state */
344 static z_stream tx_strm
;
349 /* We want obuf to be able to hold both MAX_DATA_COUNT+2 bytes as well as
350 * AVAIL_OUT_SIZE(CHUNK_SIZE) bytes, so make sure that it's large enough. */
351 #if MAX_DATA_COUNT+2 > AVAIL_OUT_SIZE(CHUNK_SIZE)
352 #define OBUF_SIZE (MAX_DATA_COUNT+2)
354 #define OBUF_SIZE AVAIL_OUT_SIZE(CHUNK_SIZE)
357 /* Send a deflated token */
359 send_deflated_token(int f
, int32 token
, struct map_struct
*buf
, OFF_T offset
, int32 nb
, int32 toklen
)
361 static int init_done
, flush_pending
;
364 if (last_token
== -1) {
367 tx_strm
.next_in
= NULL
;
368 tx_strm
.zalloc
= NULL
;
369 tx_strm
.zfree
= NULL
;
370 if (deflateInit2(&tx_strm
, compression_level
,
372 Z_DEFAULT_STRATEGY
) != Z_OK
) {
373 rprintf(FERROR
, "compression init failed\n");
374 exit_cleanup(RERR_PROTOCOL
);
376 if ((obuf
= new_array(char, OBUF_SIZE
)) == NULL
)
377 out_of_memory("send_deflated_token");
380 deflateReset(&tx_strm
);
384 } else if (last_token
== -2) {
386 } else if (nb
!= 0 || token
!= last_token
+ 1
387 || token
>= run_start
+ 65536) {
388 /* output previous run */
389 r
= run_start
- last_run_end
;
390 n
= last_token
- run_start
;
391 if (r
>= 0 && r
<= 63) {
392 write_byte(f
, (n
==0? TOKEN_REL
: TOKENRUN_REL
) + r
);
394 write_byte(f
, (n
==0? TOKEN_LONG
: TOKENRUN_LONG
));
395 write_int(f
, run_start
);
399 write_byte(f
, n
>> 8);
401 last_run_end
= last_token
;
407 if (nb
!= 0 || flush_pending
) {
408 /* deflate the data starting at offset */
409 int flush
= Z_NO_FLUSH
;
410 tx_strm
.avail_in
= 0;
411 tx_strm
.avail_out
= 0;
413 if (tx_strm
.avail_in
== 0 && nb
!= 0) {
414 /* give it some more input */
415 n
= MIN(nb
, CHUNK_SIZE
);
416 tx_strm
.next_in
= (Bytef
*)
417 map_ptr(buf
, offset
, n
);
418 tx_strm
.avail_in
= n
;
422 if (tx_strm
.avail_out
== 0) {
423 tx_strm
.next_out
= (Bytef
*)(obuf
+ 2);
424 tx_strm
.avail_out
= MAX_DATA_COUNT
;
425 if (flush
!= Z_NO_FLUSH
) {
427 * We left the last 4 bytes in the
428 * buffer, in case they are the
429 * last 4. Move them to the front.
431 memcpy(tx_strm
.next_out
, obuf
+MAX_DATA_COUNT
-2, 4);
432 tx_strm
.next_out
+= 4;
433 tx_strm
.avail_out
-= 4;
436 if (nb
== 0 && token
!= -2)
437 flush
= Z_SYNC_FLUSH
;
438 r
= deflate(&tx_strm
, flush
);
440 rprintf(FERROR
, "deflate returned %d\n", r
);
441 exit_cleanup(RERR_STREAMIO
);
443 if (nb
== 0 || tx_strm
.avail_out
== 0) {
444 n
= MAX_DATA_COUNT
- tx_strm
.avail_out
;
445 if (flush
!= Z_NO_FLUSH
) {
447 * We have to trim off the last 4
448 * bytes of output when flushing
449 * (they are just 0, 0, ff, ff).
454 obuf
[0] = DEFLATED_DATA
+ (n
>> 8);
456 write_buf(f
, obuf
, n
+2);
459 } while (nb
!= 0 || tx_strm
.avail_out
== 0);
460 flush_pending
= token
== -2;
464 /* end of file - clean up */
465 write_byte(f
, END_FLAG
);
466 } else if (token
!= -2 && do_compression
== CPRES_ZLIB
) {
467 /* Add the data in the current block to the compressor's
468 * history and hash table. */
470 /* Break up long sections in the same way that
471 * see_deflate_token() does. */
472 int32 n1
= toklen
> 0xffff ? 0xffff : toklen
;
474 tx_strm
.next_in
= (Bytef
*)map_ptr(buf
, offset
, n1
);
475 tx_strm
.avail_in
= n1
;
476 if (protocol_version
>= 31) /* Newer protocols avoid a data-duplicating bug */
478 tx_strm
.next_out
= (Bytef
*) obuf
;
479 tx_strm
.avail_out
= AVAIL_OUT_SIZE(CHUNK_SIZE
);
480 r
= deflate(&tx_strm
, Z_INSERT_ONLY
);
481 if (r
!= Z_OK
|| tx_strm
.avail_in
!= 0) {
482 rprintf(FERROR
, "deflate on token returned %d (%d bytes left)\n",
483 r
, tx_strm
.avail_in
);
484 exit_cleanup(RERR_STREAMIO
);
486 } while (toklen
> 0);
490 /* tells us what the receiver is in the middle of doing */
491 static enum { r_init
, r_idle
, r_running
, r_inflating
, r_inflated
} recv_state
;
493 /* for inflating stuff */
494 static z_stream rx_strm
;
498 /* for decoding runs of tokens */
499 static int32 rx_token
;
502 /* Receive a deflated token and inflate it */
503 static int32
recv_deflated_token(int f
, char **data
)
505 static int init_done
;
506 static int32 saved_flag
;
511 switch (recv_state
) {
514 rx_strm
.next_out
= NULL
;
515 rx_strm
.zalloc
= NULL
;
516 rx_strm
.zfree
= NULL
;
517 if (inflateInit2(&rx_strm
, -15) != Z_OK
) {
518 rprintf(FERROR
, "inflate init failed\n");
519 exit_cleanup(RERR_PROTOCOL
);
521 if (!(cbuf
= new_array(char, MAX_DATA_COUNT
))
522 || !(dbuf
= new_array(char, AVAIL_OUT_SIZE(CHUNK_SIZE
))))
523 out_of_memory("recv_deflated_token");
526 inflateReset(&rx_strm
);
535 flag
= saved_flag
& 0xff;
539 if ((flag
& 0xC0) == DEFLATED_DATA
) {
540 n
= ((flag
& 0x3f) << 8) + read_byte(f
);
541 read_buf(f
, cbuf
, n
);
542 rx_strm
.next_in
= (Bytef
*)cbuf
;
543 rx_strm
.avail_in
= n
;
544 recv_state
= r_inflating
;
547 if (recv_state
== r_inflated
) {
548 /* check previous inflated stuff ended correctly */
549 rx_strm
.avail_in
= 0;
550 rx_strm
.next_out
= (Bytef
*)dbuf
;
551 rx_strm
.avail_out
= AVAIL_OUT_SIZE(CHUNK_SIZE
);
552 r
= inflate(&rx_strm
, Z_SYNC_FLUSH
);
553 n
= AVAIL_OUT_SIZE(CHUNK_SIZE
) - rx_strm
.avail_out
;
555 * Z_BUF_ERROR just means no progress was
556 * made, i.e. the decompressor didn't have
557 * any pending output for us.
559 if (r
!= Z_OK
&& r
!= Z_BUF_ERROR
) {
560 rprintf(FERROR
, "inflate flush returned %d (%d bytes)\n",
562 exit_cleanup(RERR_STREAMIO
);
564 if (n
!= 0 && r
!= Z_BUF_ERROR
) {
565 /* have to return some more data and
566 save the flag for later. */
567 saved_flag
= flag
+ 0x10000;
572 * At this point the decompressor should
573 * be expecting to see the 0, 0, ff, ff bytes.
575 if (!inflateSyncPoint(&rx_strm
)) {
576 rprintf(FERROR
, "decompressor lost sync!\n");
577 exit_cleanup(RERR_STREAMIO
);
579 rx_strm
.avail_in
= 4;
580 rx_strm
.next_in
= (Bytef
*)cbuf
;
581 cbuf
[0] = cbuf
[1] = 0;
582 cbuf
[2] = cbuf
[3] = 0xff;
583 inflate(&rx_strm
, Z_SYNC_FLUSH
);
586 if (flag
== END_FLAG
) {
587 /* that's all folks */
592 /* here we have a token of some kind */
593 if (flag
& TOKEN_REL
) {
594 rx_token
+= flag
& 0x3f;
597 rx_token
= read_int(f
);
599 rx_run
= read_byte(f
);
600 rx_run
+= read_byte(f
) << 8;
601 recv_state
= r_running
;
603 return -1 - rx_token
;
606 rx_strm
.next_out
= (Bytef
*)dbuf
;
607 rx_strm
.avail_out
= AVAIL_OUT_SIZE(CHUNK_SIZE
);
608 r
= inflate(&rx_strm
, Z_NO_FLUSH
);
609 n
= AVAIL_OUT_SIZE(CHUNK_SIZE
) - rx_strm
.avail_out
;
611 rprintf(FERROR
, "inflate returned %d (%d bytes)\n", r
, n
);
612 exit_cleanup(RERR_STREAMIO
);
614 if (rx_strm
.avail_in
== 0)
615 recv_state
= r_inflated
;
626 return -1 - rx_token
;
632 * put the data corresponding to a token that we've just returned
633 * from recv_deflated_token into the decompressor's history buffer.
635 static void see_deflate_token(char *buf
, int32 len
)
639 unsigned char hdr
[5];
641 rx_strm
.avail_in
= 0;
645 if (rx_strm
.avail_in
== 0 && len
!= 0) {
647 /* Give it a fake stored-block header. */
648 rx_strm
.next_in
= (Bytef
*)hdr
;
649 rx_strm
.avail_in
= 5;
654 hdr
[2] = blklen
>> 8;
658 rx_strm
.next_in
= (Bytef
*)buf
;
659 rx_strm
.avail_in
= blklen
;
660 if (protocol_version
>= 31) /* Newer protocols avoid a data-duplicating bug */
666 rx_strm
.next_out
= (Bytef
*)dbuf
;
667 rx_strm
.avail_out
= AVAIL_OUT_SIZE(CHUNK_SIZE
);
668 r
= inflate(&rx_strm
, Z_SYNC_FLUSH
);
669 if (r
!= Z_OK
&& r
!= Z_BUF_ERROR
) {
670 rprintf(FERROR
, "inflate (token) returned %d\n", r
);
671 exit_cleanup(RERR_STREAMIO
);
673 } while (len
|| rx_strm
.avail_out
== 0);
678 static ZSTD_inBuffer zstd_in_buff
;
679 static ZSTD_outBuffer zstd_out_buff
;
680 static ZSTD_CCtx
*zstd_cctx
;
682 static void send_zstd_token(int f
, int32 token
, struct map_struct
*buf
, OFF_T offset
, int32 nb
)
684 static int comp_init_done
, flush_pending
;
685 ZSTD_EndDirective flush
= ZSTD_e_continue
;
689 if (!comp_init_done
) {
691 zstd_cctx
= ZSTD_createCCtx();
693 rprintf(FERROR
, "compression init failed\n");
694 exit_cleanup(RERR_PROTOCOL
);
697 obuf
= new_array(char, OBUF_SIZE
);
699 out_of_memory("send_deflated_token");
701 ZSTD_CCtx_setParameter(zstd_cctx
, ZSTD_c_compressionLevel
, do_compression_level
);
702 zstd_out_buff
.dst
= obuf
+ 2;
707 if (last_token
== -1) {
711 } else if (last_token
== -2) {
714 } else if (nb
!= 0 || token
!= last_token
+ 1
715 || token
>= run_start
+ 65536) {
717 /* output previous run */
718 r
= run_start
- last_run_end
;
719 n
= last_token
- run_start
;
721 if (r
>= 0 && r
<= 63) {
722 write_byte(f
, (n
==0? TOKEN_REL
: TOKENRUN_REL
) + r
);
724 write_byte(f
, (n
==0? TOKEN_LONG
: TOKENRUN_LONG
));
725 write_int(f
, run_start
);
729 write_byte(f
, n
>> 8);
731 last_run_end
= last_token
;
737 if (nb
|| flush_pending
) {
739 zstd_in_buff
.src
= map_ptr(buf
, offset
, nb
);
740 zstd_in_buff
.size
= nb
;
741 zstd_in_buff
.pos
= 0;
744 if (zstd_out_buff
.size
== 0) {
745 zstd_out_buff
.size
= MAX_DATA_COUNT
;
746 zstd_out_buff
.pos
= 0;
749 /* File ended, flush */
751 flush
= ZSTD_e_flush
;
753 r
= ZSTD_compressStream2(zstd_cctx
, &zstd_out_buff
, &zstd_in_buff
, flush
);
754 if (ZSTD_isError(r
)) {
755 rprintf(FERROR
, "ZSTD_compressStream returned %d\n", r
);
756 exit_cleanup(RERR_STREAMIO
);
760 * Nothing is sent if the buffer isn't full so avoid smaller
761 * transfers. If a file is finished then we flush the internal
762 * state and send a smaller buffer so that the remote side can
765 if (zstd_out_buff
.pos
== zstd_out_buff
.size
|| flush
== ZSTD_e_flush
) {
766 n
= zstd_out_buff
.pos
;
768 obuf
[0] = DEFLATED_DATA
+ (n
>> 8);
770 write_buf(f
, obuf
, n
+2);
772 zstd_out_buff
.size
= 0;
775 * Loop while the input buffer isn't full consumed or the
776 * internal state isn't fully flushed.
778 } while (zstd_in_buff
.pos
< zstd_in_buff
.size
|| r
> 0);
779 flush_pending
= token
== -2;
783 /* end of file - clean up */
784 write_byte(f
, END_FLAG
);
788 static ZSTD_DCtx
*zstd_dctx
;
790 static int32
recv_zstd_token(int f
, char **data
)
792 static int decomp_init_done
;
793 static int out_buffer_size
;
797 if (!decomp_init_done
) {
799 zstd_dctx
= ZSTD_createDCtx();
801 rprintf(FERROR
, "ZSTD_createDStream failed\n");
802 exit_cleanup(RERR_PROTOCOL
);
805 /* Output buffer fits two decompressed blocks */
806 out_buffer_size
= ZSTD_DStreamOutSize() * 2;
807 cbuf
= new_array(char, MAX_DATA_COUNT
);
808 dbuf
= new_array(char, out_buffer_size
);
810 out_of_memory("recv_zstd_token");
812 zstd_in_buff
.src
= cbuf
;
813 zstd_out_buff
.dst
= dbuf
;
815 decomp_init_done
= 1;
819 switch (recv_state
) {
827 if ((flag
& 0xC0) == DEFLATED_DATA
) {
828 n
= ((flag
& 0x3f) << 8) + read_byte(f
);
829 read_buf(f
, cbuf
, n
);
831 zstd_in_buff
.size
= n
;
832 zstd_in_buff
.pos
= 0;
834 recv_state
= r_inflating
;
836 } else if (flag
== END_FLAG
) {
837 /* that's all folks */
842 /* here we have a token of some kind */
843 if (flag
& TOKEN_REL
) {
844 rx_token
+= flag
& 0x3f;
847 rx_token
= read_int(f
);
849 rx_run
= read_byte(f
);
850 rx_run
+= read_byte(f
) << 8;
851 recv_state
= r_running
;
853 return -1 - rx_token
;
858 zstd_out_buff
.size
= out_buffer_size
;
859 zstd_out_buff
.pos
= 0;
861 r
= ZSTD_decompressStream(zstd_dctx
, &zstd_out_buff
, &zstd_in_buff
);
862 n
= zstd_out_buff
.pos
;
863 if (ZSTD_isError(r
)) {
864 rprintf(FERROR
, "ZSTD decomp returned %d (%d bytes)\n", r
, n
);
865 exit_cleanup(RERR_STREAMIO
);
869 * If the input buffer is fully consumed and the output
870 * buffer is not full then next step is to read more
873 if (zstd_in_buff
.size
== zstd_in_buff
.pos
&& n
< out_buffer_size
)
886 return -1 - rx_token
;
894 #endif /* SUPPORT_ZSTD */
898 send_compressed_token(int f
, int32 token
, struct map_struct
*buf
, OFF_T offset
, int32 nb
)
900 static int init_done
, flush_pending
;
901 int size
= MAX(LZ4_compressBound(CHUNK_SIZE
), MAX_DATA_COUNT
+2);
904 if (last_token
== -1) {
906 if ((obuf
= new_array(char, size
)) == NULL
)
907 out_of_memory("send_compressed_token");
913 } else if (last_token
== -2) {
915 } else if (nb
!= 0 || token
!= last_token
+ 1
916 || token
>= run_start
+ 65536) {
917 /* output previous run */
918 r
= run_start
- last_run_end
;
919 n
= last_token
- run_start
;
920 if (r
>= 0 && r
<= 63) {
921 write_byte(f
, (n
==0? TOKEN_REL
: TOKENRUN_REL
) + r
);
923 write_byte(f
, (n
==0? TOKEN_LONG
: TOKENRUN_LONG
));
924 write_int(f
, run_start
);
928 write_byte(f
, n
>> 8);
930 last_run_end
= last_token
;
936 if (nb
!= 0 || flush_pending
) {
937 int available_in
, available_out
= 0;
942 char *next_out
= obuf
+ 2;
944 if (available_out
== 0) {
945 available_in
= MIN(nb
, MAX_DATA_COUNT
);
946 next_in
= map_ptr(buf
, offset
, available_in
);
950 available_out
= LZ4_compress_default(next_in
, next_out
, available_in
, size
- 2);
951 if (!available_out
) {
952 rprintf(FERROR
, "compress returned %d\n", available_out
);
953 exit_cleanup(RERR_STREAMIO
);
955 if (available_out
<= MAX_DATA_COUNT
) {
956 ptr
[0] = DEFLATED_DATA
+ (available_out
>> 8);
957 ptr
[1] = available_out
;
959 write_buf(f
, ptr
, available_out
+ 2);
963 offset
+= available_in
;
966 flush_pending
= token
== -2;
969 /* end of file - clean up */
970 write_byte(f
, END_FLAG
);
973 static int32
recv_compressed_token(int f
, char **data
)
975 static int32 saved_flag
;
976 static int init_done
;
978 int size
= MAX(LZ4_compressBound(CHUNK_SIZE
), MAX_DATA_COUNT
+2);
979 static const char *next_in
;
984 switch (recv_state
) {
987 if (!(cbuf
= new_array(char, MAX_DATA_COUNT
))
988 || !(dbuf
= new_array(char, size
)))
989 out_of_memory("recv_compressed_token");
998 flag
= saved_flag
& 0xff;
1001 flag
= read_byte(f
);
1002 if ((flag
& 0xC0) == DEFLATED_DATA
) {
1003 n
= ((flag
& 0x3f) << 8) + read_byte(f
);
1004 read_buf(f
, cbuf
, n
);
1005 next_in
= (char *)cbuf
;
1007 recv_state
= r_inflating
;
1011 if (recv_state
== r_inflated
)
1012 recv_state
= r_idle
;
1014 if (flag
== END_FLAG
) {
1015 /* that's all folks */
1016 recv_state
= r_init
;
1020 /* here we have a token of some kind */
1021 if (flag
& TOKEN_REL
) {
1022 rx_token
+= flag
& 0x3f;
1025 rx_token
= read_int(f
);
1027 rx_run
= read_byte(f
);
1028 rx_run
+= read_byte(f
) << 8;
1029 recv_state
= r_running
;
1031 return -1 - rx_token
;
1034 avail_out
= LZ4_decompress_safe(next_in
, dbuf
, avail_in
, size
);
1035 if (avail_out
< 0) {
1036 rprintf(FERROR
, "uncompress failed: %d\n", avail_out
);
1037 exit_cleanup(RERR_STREAMIO
);
1039 recv_state
= r_inflated
;
1046 recv_state
= r_idle
;
1047 return -1 - rx_token
;
1054 static void see_uncompressed_token(char *buf
, int32 len
)
1056 static const char *next_in
;
1057 static int avail_in
;
1067 if (avail_in
== 0 && len
!= 0) {
1069 /* Give it a fake stored-block header. */
1073 if (blklen
> 0xffff)
1076 hdr
[2] = blklen
>> 8;
1080 next_in
= (char *)buf
;
1082 if (protocol_version
>= 31) /* Newer protocols avoid a data-duplicating bug */
1088 avail_out
= LZ4_decompress_safe(next_in
, dbuf
, avail_in
, LZ4_compressBound(CHUNK_SIZE
));
1089 if (avail_out
< 0) {
1090 rprintf(FERROR
, "uncompress failed: %d\n", avail_out
);
1091 exit_cleanup(RERR_STREAMIO
);
1097 #endif /* SUPPORT_LZ4 */
1100 * Transmit a verbatim buffer of length @p n followed by a token.
1101 * If token == -1 then we have reached EOF
1102 * If n == 0 then don't send a buffer
1104 void send_token(int f
, int32 token
, struct map_struct
*buf
, OFF_T offset
,
1105 int32 n
, int32 toklen
)
1107 switch (do_compression
) {
1109 simple_send_token(f
, token
, buf
, offset
, n
);
1113 send_deflated_token(f
, token
, buf
, offset
, n
, toklen
);
1117 send_zstd_token(f
, token
, buf
, offset
, n
);
1122 send_compressed_token(f
, token
, buf
, offset
, n
);
1131 * receive a token or buffer from the other end. If the return value is >0 then
1132 * it is a data buffer of that length, and *data will point at the data.
1133 * if the return value is -i then it represents token i-1
1134 * if the return value is 0 then the end has been reached
1136 int32
recv_token(int f
, char **data
)
1140 switch (do_compression
) {
1142 tok
= simple_recv_token(f
,data
);
1146 tok
= recv_deflated_token(f
, data
);
1150 tok
= recv_zstd_token(f
, data
);
1155 tok
= recv_compressed_token(f
, data
);
1165 * look at the data corresponding to a token, if necessary
1167 void see_token(char *data
, int32 toklen
)
1169 switch (do_compression
) {
1173 see_deflate_token(data
, toklen
);
1179 /*see_uncompressed_token(data, toklen);*/