2 * Socket and pipe I/O utilities used in rsync.
4 * Copyright (C) 1996-2001 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
7 * Copyright (C) 2003-2007 Wayne Davison
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, visit the http://fsf.org website.
23 /* Rsync provides its own multiplexing system, which is used to send
24 * stderr and stdout over a single socket.
26 * For historical reasons this is off during the start of the
27 * connection, but it's switched on quite early using
28 * io_start_multiplex_out() and io_start_multiplex_in(). */
33 /** If no timeout is specified then use a 60 second select timeout */
34 #define SELECT_TIMEOUT 60
37 extern size_t bwlimit_writemax
;
38 extern int io_timeout
;
39 extern int allowed_lull
;
43 extern int am_generator
;
44 extern int inc_recurse
;
48 extern int read_batch
;
49 extern int csum_length
;
50 extern int protect_args
;
51 extern int checksum_seed
;
52 extern int protocol_version
;
53 extern int remove_source_files
;
54 extern int preserve_hard_links
;
55 extern struct stats stats
;
56 extern struct file_list
*cur_flist
;
58 extern int filesfrom_convert
;
59 extern iconv_t ic_send
, ic_recv
;
62 const char phase_unknown
[] = "unknown";
63 int ignore_timeout
= 0;
67 /* Ignore an EOF error if non-zero. See whine_about_eof(). */
68 int kluge_around_eof
= 0;
75 static int iobuf_f_in
= -1;
76 static char *iobuf_in
;
77 static size_t iobuf_in_siz
;
78 static size_t iobuf_in_ndx
;
79 static size_t iobuf_in_remaining
;
81 static int iobuf_f_out
= -1;
82 static char *iobuf_out
;
83 static int iobuf_out_cnt
;
85 int flist_forward_from
= -1;
87 static int io_multiplexing_out
;
88 static int io_multiplexing_in
;
89 static time_t last_io_in
;
90 static time_t last_io_out
;
93 static int write_batch_monitor_in
= -1;
94 static int write_batch_monitor_out
= -1;
96 static int io_filesfrom_f_in
= -1;
97 static int io_filesfrom_f_out
= -1;
98 static xbuf ff_buf
= EMPTY_XBUF
;
99 static char ff_lastchar
;
101 static xbuf iconv_buf
= EMPTY_XBUF
;
103 static int defer_forwarding_messages
= 0;
104 static int select_timeout
= SELECT_TIMEOUT
;
105 static int active_filecnt
= 0;
106 static OFF_T active_bytecnt
= 0;
108 static char int_byte_extra
[64] = {
109 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* (00 - 3F)/4 */
110 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* (40 - 7F)/4 */
111 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* (80 - BF)/4 */
112 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 5, 6, /* (C0 - FF)/4 */
115 enum festatus
{ FES_SUCCESS
, FES_REDO
, FES_NO_SEND
};
117 static void readfd(int fd
, char *buffer
, size_t N
);
118 static void writefd(int fd
, const char *buf
, size_t len
);
119 static void writefd_unbuffered(int fd
, const char *buf
, size_t len
);
120 static void mplex_write(int fd
, enum msgcode code
, const char *buf
, size_t len
, int convert
);
122 struct flist_ndx_item
{
123 struct flist_ndx_item
*next
;
127 struct flist_ndx_list
{
128 struct flist_ndx_item
*head
, *tail
;
131 static struct flist_ndx_list redo_list
, hlink_list
;
133 struct msg_list_item
{
134 struct msg_list_item
*next
;
140 struct msg_list_item
*head
, *tail
;
143 static struct msg_list msg_queue
;
145 static void flist_ndx_push(struct flist_ndx_list
*lp
, int ndx
)
147 struct flist_ndx_item
*item
;
149 if (!(item
= new(struct flist_ndx_item
)))
150 out_of_memory("flist_ndx_push");
154 lp
->tail
->next
= item
;
160 static int flist_ndx_pop(struct flist_ndx_list
*lp
)
162 struct flist_ndx_item
*next
;
169 next
= lp
->head
->next
;
178 static void got_flist_entry_status(enum festatus status
, const char *buf
)
180 int ndx
= IVAL(buf
, 0);
181 struct file_list
*flist
= flist_for_ndx(ndx
);
183 assert(flist
!= NULL
);
185 if (remove_source_files
) {
187 active_bytecnt
-= F_LENGTH(flist
->files
[ndx
- flist
->ndx_start
]);
191 flist
->in_progress
--;
195 if (remove_source_files
)
196 send_msg(MSG_SUCCESS
, buf
, 4, 0);
197 if (preserve_hard_links
) {
198 struct file_struct
*file
= flist
->files
[ndx
- flist
->ndx_start
];
199 if (F_IS_HLINKED(file
)) {
200 flist_ndx_push(&hlink_list
, ndx
);
201 flist
->in_progress
++;
208 flist_ndx_push(&redo_list
, ndx
);
215 static void check_timeout(void)
219 if (!io_timeout
|| ignore_timeout
)
223 last_io_in
= time(NULL
);
229 if (t
- last_io_in
>= io_timeout
) {
230 if (!am_server
&& !am_daemon
) {
231 rprintf(FERROR
, "io timeout after %d seconds -- exiting\n",
232 (int)(t
-last_io_in
));
234 exit_cleanup(RERR_TIMEOUT
);
238 /* Note the fds used for the main socket (which might really be a pipe
239 * for a local transfer, but we can ignore that). */
240 void io_set_sock_fds(int f_in
, int f_out
)
246 void set_io_timeout(int secs
)
250 if (!io_timeout
|| io_timeout
> SELECT_TIMEOUT
)
251 select_timeout
= SELECT_TIMEOUT
;
253 select_timeout
= io_timeout
;
255 allowed_lull
= read_batch
? 0 : (io_timeout
+ 1) / 2;
258 /* Setup the fd used to receive MSG_* messages. Only needed during the
259 * early stages of being a local sender (up through the sending of the
260 * file list) or when we're the generator (to fetch the messages from
262 void set_msg_fd_in(int fd
)
267 /* Setup the fd used to send our MSG_* messages. Only needed when
268 * we're the receiver (to send our messages to the generator). */
269 void set_msg_fd_out(int fd
)
272 set_nonblocking(msg_fd_out
);
275 /* Add a message to the pending MSG_* list. */
276 static void msg_list_add(struct msg_list
*lst
, int code
, const char *buf
, int len
, int convert
)
278 struct msg_list_item
*m
;
279 int sz
= len
+ 4 + sizeof m
[0] - 1;
281 if (!(m
= (struct msg_list_item
*)new_array(char, sz
)))
282 out_of_memory("msg_list_add");
284 m
->convert
= convert
;
285 SIVAL(m
->buf
, 0, ((code
+MPLEX_BASE
)<<24) | len
);
286 memcpy(m
->buf
+ 4, buf
, len
);
294 static void msg_flush(void)
297 while (msg_queue
.head
&& io_multiplexing_out
) {
298 struct msg_list_item
*m
= msg_queue
.head
;
299 int len
= IVAL(m
->buf
, 0) & 0xFFFFFF;
300 int tag
= *((uchar
*)m
->buf
+3) - MPLEX_BASE
;
301 if (!(msg_queue
.head
= m
->next
))
302 msg_queue
.tail
= NULL
;
303 stats
.total_written
+= len
+ 4;
304 defer_forwarding_messages
++;
305 mplex_write(sock_f_out
, tag
, m
->buf
+ 4, len
, m
->convert
);
306 defer_forwarding_messages
--;
310 while (msg_queue
.head
) {
311 struct msg_list_item
*m
= msg_queue
.head
;
312 int len
= IVAL(m
->buf
, 0) & 0xFFFFFF;
313 int tag
= *((uchar
*)m
->buf
+3) - MPLEX_BASE
;
314 if (!(msg_queue
.head
= m
->next
))
315 msg_queue
.tail
= NULL
;
316 defer_forwarding_messages
++;
317 mplex_write(msg_fd_out
, tag
, m
->buf
+ 4, len
, m
->convert
);
318 defer_forwarding_messages
--;
324 /* Read a message from the MSG_* fd and handle it. This is called either
325 * during the early stages of being a local sender (up through the sending
326 * of the file list) or when we're the generator (to fetch the messages
327 * from the receiver). */
328 static void read_msg_fd(void)
332 struct file_list
*flist
;
336 /* Temporarily disable msg_fd_in. This is needed to avoid looping back
337 * to this routine from writefd_unbuffered(). */
340 defer_forwarding_messages
++;
345 len
= tag
& 0xFFFFFF;
346 tag
= (tag
>> 24) - MPLEX_BASE
;
350 if (len
< 0 || len
> 1 || !am_generator
) {
352 rprintf(FERROR
, "invalid message %d:%d [%s%s]\n",
353 tag
, len
, who_am_i(),
354 inc_recurse
? "/inc" : "");
355 exit_cleanup(RERR_STREAMIO
);
358 readfd(fd
, buf
, len
);
359 stats
.total_read
= read_varlong(fd
, 3);
364 if (len
!= 4 || !am_generator
)
367 got_flist_entry_status(FES_REDO
, buf
);
370 if (len
!= 4 || !am_generator
|| !inc_recurse
)
373 /* Read extra file list from receiver. */
374 assert(iobuf_in
!= NULL
);
375 assert(iobuf_f_in
== fd
);
377 rprintf(FINFO
, "[%s] receiving flist for dir %d\n",
378 who_am_i(), IVAL(buf
,0));
380 flist
= recv_file_list(fd
);
381 flist
->parent_ndx
= IVAL(buf
,0);
382 #ifdef SUPPORT_HARD_LINKS
383 if (preserve_hard_links
)
384 match_hard_links(flist
);
388 if (len
!= 0 || !am_generator
|| !inc_recurse
)
395 readfd(fd
, buf
, len
);
396 io_error
|= IVAL(buf
, 0);
399 if (len
>= (int)sizeof buf
|| !am_generator
)
401 readfd(fd
, buf
, len
);
402 send_msg(MSG_DELETED
, buf
, len
, 1);
405 if (len
!= 4 || !am_generator
)
408 got_flist_entry_status(FES_SUCCESS
, buf
);
411 if (len
!= 4 || !am_generator
)
414 got_flist_entry_status(FES_NO_SEND
, buf
);
420 if (tag
== MSG_SOCKERR
)
421 io_end_multiplex_out();
431 rwrite((enum logcode
)tag
, buf
, n
, !am_generator
);
436 rprintf(FERROR
, "unknown message %d:%d [%s]\n",
437 tag
, len
, who_am_i());
438 exit_cleanup(RERR_STREAMIO
);
443 if (!--defer_forwarding_messages
)
447 /* This is used by the generator to limit how many file transfers can
448 * be active at once when --remove-source-files is specified. Without
449 * this, sender-side deletions were mostly happening at the end. */
450 void increment_active_files(int ndx
, int itemizing
, enum logcode code
)
452 /* TODO: tune these limits? */
453 while (active_filecnt
>= (active_bytecnt
>= 128*1024 ? 10 : 50)) {
454 check_for_finished_files(itemizing
, code
, 0);
456 io_flush(NORMAL_FLUSH
);
462 active_bytecnt
+= F_LENGTH(cur_flist
->files
[ndx
- cur_flist
->ndx_start
]);
465 /* Write an message to a multiplexed stream. If this fails, rsync exits. */
466 static void mplex_write(int fd
, enum msgcode code
, const char *buf
, size_t len
, int convert
)
468 char buffer
[BIGPATHBUFLEN
]; /* Oversized for use by iconv code. */
471 SIVAL(buffer
, 0, ((MPLEX_BASE
+ (int)code
)<<24) + len
);
474 if (convert
&& ic_send
== (iconv_t
)-1)
478 if (convert
|| n
> 1024 - 4) /* BIGPATHBUFLEN can handle 1024 bytes */
481 memcpy(buffer
+ 4, buf
, n
);
483 writefd_unbuffered(fd
, buffer
, n
+4);
492 INIT_CONST_XBUF(outbuf
, buffer
);
493 INIT_XBUF(inbuf
, (char*)buf
, len
, -1);
495 defer_forwarding_messages
++;
497 iconvbufs(ic_send
, &inbuf
, &outbuf
,
498 ICB_INCLUDE_BAD
| ICB_INCLUDE_INCOMPLETE
);
499 writefd_unbuffered(fd
, outbuf
.buf
, outbuf
.len
);
501 if (!--defer_forwarding_messages
)
506 defer_forwarding_messages
++;
507 writefd_unbuffered(fd
, buf
, len
);
508 if (!--defer_forwarding_messages
)
513 int send_msg(enum msgcode code
, const char *buf
, int len
, int convert
)
515 if (msg_fd_out
< 0) {
516 if (!defer_forwarding_messages
)
517 return io_multiplex_write(code
, buf
, len
, convert
);
518 if (!io_multiplexing_out
)
520 msg_list_add(&msg_queue
, code
, buf
, len
, convert
);
523 if (flist_forward_from
>= 0)
524 msg_list_add(&msg_queue
, code
, buf
, len
, convert
);
526 mplex_write(msg_fd_out
, code
, buf
, len
, convert
);
530 void send_msg_int(enum msgcode code
, int num
)
533 SIVAL(numbuf
, 0, num
);
534 send_msg(code
, numbuf
, 4, 0);
537 void wait_for_receiver(void)
540 io_flush(NORMAL_FLUSH
);
545 int get_redo_num(void)
547 return flist_ndx_pop(&redo_list
);
550 int get_hlink_num(void)
552 return flist_ndx_pop(&hlink_list
);
556 * When we're the receiver and we have a local --files-from list of names
557 * that needs to be sent over the socket to the sender, we have to do two
558 * things at the same time: send the sender a list of what files we're
559 * processing and read the incoming file+info list from the sender. We do
560 * this by augmenting the read_timeout() function to copy this data. It
561 * uses ff_buf to read a block of data from f_in (when it is ready, since
562 * it might be a pipe) and then blast it out f_out (when it is ready to
563 * receive more data).
565 void io_set_filesfrom_fds(int f_in
, int f_out
)
567 io_filesfrom_f_in
= f_in
;
568 io_filesfrom_f_out
= f_out
;
569 alloc_xbuf(&ff_buf
, 2048);
572 alloc_xbuf(&iconv_buf
, 1024);
576 /* It's almost always an error to get an EOF when we're trying to read from the
577 * network, because the protocol is (for the most part) self-terminating.
579 * There is one case for the receiver when it is at the end of the transfer
580 * (hanging around reading any keep-alive packets that might come its way): if
581 * the sender dies before the generator's kill-signal comes through, we can end
582 * up here needing to loop until the kill-signal arrives. In this situation,
583 * kluge_around_eof will be < 0.
585 * There is another case for older protocol versions (< 24) where the module
586 * listing was not terminated, so we must ignore an EOF error in that case and
587 * exit. In this situation, kluge_around_eof will be > 0. */
588 static void whine_about_eof(int fd
)
590 if (kluge_around_eof
&& fd
== sock_f_in
) {
592 if (kluge_around_eof
> 0)
594 /* If we're still here after 10 seconds, exit with an error. */
595 for (i
= 10*1000/20; i
--; )
599 rprintf(FERROR
, RSYNC_NAME
": connection unexpectedly closed "
600 "(%.0f bytes received so far) [%s]\n",
601 (double)stats
.total_read
, who_am_i());
603 exit_cleanup(RERR_STREAMIO
);
607 * Read from a socket with I/O timeout. return the number of bytes
608 * read. If no bytes can be read then exit, never return a number <= 0.
610 * TODO: If the remote shell connection fails, then current versions
611 * actually report an "unexpected EOF" error here. Since it's a
612 * fairly common mistake to try to use rsh when ssh is required, we
613 * should trap that: if we fail to read any data at all, we should
614 * give a better explanation. We can tell whether the connection has
615 * started by looking e.g. at whether the remote version is known yet.
617 static int read_timeout(int fd
, char *buf
, size_t len
)
621 io_flush(FULL_FLUSH
);
624 /* until we manage to read *something* */
633 if (io_filesfrom_f_out
>= 0) {
635 if (ff_buf
.len
== 0) {
636 if (io_filesfrom_f_in
>= 0) {
637 FD_SET(io_filesfrom_f_in
, &r_fds
);
638 new_fd
= io_filesfrom_f_in
;
640 io_filesfrom_f_out
= -1;
644 FD_SET(io_filesfrom_f_out
, &w_fds
);
645 new_fd
= io_filesfrom_f_out
;
651 tv
.tv_sec
= select_timeout
;
656 count
= select(maxfd
+ 1, &r_fds
, &w_fds
, NULL
, &tv
);
659 if (errno
== EBADF
) {
660 defer_forwarding_messages
= 0;
661 exit_cleanup(RERR_SOCKETIO
);
667 if (io_filesfrom_f_out
>= 0) {
669 if (FD_ISSET(io_filesfrom_f_out
, &w_fds
)) {
670 int l
= write(io_filesfrom_f_out
,
671 ff_buf
.buf
+ ff_buf
.pos
,
674 if (!(ff_buf
.len
-= l
))
678 } else if (errno
!= EINTR
) {
679 /* XXX should we complain? */
680 io_filesfrom_f_out
= -1;
683 } else if (io_filesfrom_f_in
>= 0) {
684 if (FD_ISSET(io_filesfrom_f_in
, &r_fds
)) {
686 xbuf
*ibuf
= filesfrom_convert
? &iconv_buf
: &ff_buf
;
688 xbuf
*ibuf
= &ff_buf
;
690 int l
= read(io_filesfrom_f_in
, ibuf
->buf
, ibuf
->size
);
692 if (l
== 0 || errno
!= EINTR
) {
693 /* Send end-of-file marker */
694 memcpy(ff_buf
.buf
, "\0\0", 2);
695 ff_buf
.len
= ff_lastchar
? 2 : 1;
697 io_filesfrom_f_in
= -1;
701 if (filesfrom_convert
) {
704 iconvbufs(ic_send
, &iconv_buf
, &ff_buf
,
705 ICB_EXPAND_OUT
|ICB_INCLUDE_BAD
|ICB_INCLUDE_INCOMPLETE
);
710 char *s
= ff_buf
.buf
+ l
;
711 /* Transform CR and/or LF into '\0' */
712 while (s
-- > ff_buf
.buf
) {
713 if (*s
== '\n' || *s
== '\r')
718 /* Last buf ended with a '\0', so don't
719 * let this buf start with one. */
720 while (l
&& ff_buf
.buf
[ff_buf
.pos
] == '\0')
726 char *f
= ff_buf
.buf
+ ff_buf
.pos
;
729 /* Eliminate any multi-'\0' runs. */
731 if (!(*t
++ = *f
++)) {
732 while (f
!= eob
&& !*f
)
744 if (!FD_ISSET(fd
, &r_fds
))
747 n
= read(fd
, buf
, len
);
751 whine_about_eof(fd
); /* Doesn't return. */
752 if (errno
== EINTR
|| errno
== EWOULDBLOCK
756 /* Don't write errors on a dead socket. */
757 if (fd
== sock_f_in
) {
758 io_end_multiplex_out();
759 rsyserr(FSOCKERR
, errno
, "read error");
761 rsyserr(FERROR
, errno
, "read error");
762 exit_cleanup(RERR_STREAMIO
);
769 if (fd
== sock_f_in
&& io_timeout
)
770 last_io_in
= time(NULL
);
776 /* Read a line into the "buf" buffer. */
777 int read_line(int fd
, char *buf
, size_t bufsiz
, int flags
)
783 if (flags
& RL_CONVERT
&& iconv_buf
.size
< bufsiz
)
784 realloc_xbuf(&iconv_buf
, bufsiz
+ 1024);
789 s
= flags
& RL_CONVERT
? iconv_buf
.buf
: buf
;
793 eob
= s
+ bufsiz
- 1;
795 cnt
= read(fd
, &ch
, 1);
796 if (cnt
< 0 && (errno
== EWOULDBLOCK
797 || errno
== EINTR
|| errno
== EAGAIN
)) {
804 tv
.tv_sec
= select_timeout
;
806 if (!select(fd
+1, &r_fds
, NULL
, &e_fds
, &tv
))
808 /*if (FD_ISSET(fd, &e_fds))
809 rprintf(FINFO, "select exception on fd %d\n", fd); */
814 if (flags
& RL_EOL_NULLS
? ch
== '\0' : (ch
== '\r' || ch
== '\n')) {
815 /* Skip empty lines if dumping comments. */
816 if (flags
& RL_DUMP_COMMENTS
&& s
== buf
)
825 if (flags
& RL_DUMP_COMMENTS
&& (*buf
== '#' || *buf
== ';'))
829 if (flags
& RL_CONVERT
) {
831 INIT_XBUF(outbuf
, buf
, 0, bufsiz
);
833 iconv_buf
.len
= s
- iconv_buf
.buf
;
834 iconvbufs(ic_recv
, &iconv_buf
, &outbuf
,
835 ICB_INCLUDE_BAD
| ICB_INCLUDE_INCOMPLETE
);
836 outbuf
.buf
[outbuf
.len
] = '\0';
844 int read_args(int f_in
, char *mod_name
, char *buf
, size_t bufsiz
, int rl_nulls
,
845 char ***argv_p
, int *argc_p
, char **request_p
)
847 int maxargs
= MAX_ARGS
;
851 int rl_flags
= (rl_nulls
? RL_EOL_NULLS
: 0);
854 rl_flags
|= (protect_args
&& ic_recv
!= (iconv_t
)-1 ? RL_CONVERT
: 0);
857 if (!(argv
= new_array(char *, maxargs
)))
858 out_of_memory("read_args");
860 argv
[argc
++] = "rsyncd";
863 if (read_line(f_in
, buf
, bufsiz
, rl_flags
) == 0)
866 if (argc
== maxargs
) {
868 if (!(argv
= realloc_array(argv
, char *, maxargs
)))
869 out_of_memory("read_args");
874 *request_p
= strdup(buf
);
878 glob_expand_module(mod_name
, buf
, &argv
, &argc
, &maxargs
);
880 glob_expand(buf
, &argv
, &argc
, &maxargs
);
882 if (!(p
= strdup(buf
)))
883 out_of_memory("read_args");
885 if (*p
== '.' && p
[1] == '\0')
893 return dot_pos
? dot_pos
: argc
;
896 int io_start_buffering_out(int f_out
)
899 assert(f_out
== iobuf_f_out
);
902 if (!(iobuf_out
= new_array(char, IO_BUFFER_SIZE
)))
903 out_of_memory("io_start_buffering_out");
909 int io_start_buffering_in(int f_in
)
912 assert(f_in
== iobuf_f_in
);
915 iobuf_in_siz
= 2 * IO_BUFFER_SIZE
;
916 if (!(iobuf_in
= new_array(char, iobuf_in_siz
)))
917 out_of_memory("io_start_buffering_in");
922 void io_end_buffering_in(void)
929 iobuf_in_remaining
= 0;
933 void io_end_buffering_out(void)
937 io_flush(FULL_FLUSH
);
943 void maybe_flush_socket(int important
)
945 if (iobuf_out
&& iobuf_out_cnt
946 && (important
|| time(NULL
) - last_io_out
>= 5))
947 io_flush(NORMAL_FLUSH
);
950 void maybe_send_keepalive(void)
952 if (time(NULL
) - last_io_out
>= allowed_lull
) {
953 if (!iobuf_out
|| !iobuf_out_cnt
) {
954 if (protocol_version
< 29)
955 return; /* there's nothing we can do */
956 if (protocol_version
>= 30)
957 send_msg(MSG_NOOP
, "", 0, 0);
959 write_int(sock_f_out
, cur_flist
->used
);
960 write_shortint(sock_f_out
, ITEM_IS_NEW
);
964 io_flush(NORMAL_FLUSH
);
968 void start_flist_forward(int f_in
)
970 assert(iobuf_out
!= NULL
);
971 assert(iobuf_f_out
== msg_fd_out
);
972 flist_forward_from
= f_in
;
975 void stop_flist_forward()
977 flist_forward_from
= -1;
978 io_flush(FULL_FLUSH
);
982 * Continue trying to read len bytes - don't return until len has been
985 static void read_loop(int fd
, char *buf
, size_t len
)
988 int n
= read_timeout(fd
, buf
, len
);
996 * Read from the file descriptor handling multiplexing - return number
999 * Never returns <= 0.
1001 static int readfd_unbuffered(int fd
, char *buf
, size_t len
)
1005 char line
[BIGPATHBUFLEN
];
1007 if (!iobuf_in
|| fd
!= iobuf_f_in
)
1008 return read_timeout(fd
, buf
, len
);
1010 if (!io_multiplexing_in
&& iobuf_in_remaining
== 0) {
1011 iobuf_in_remaining
= read_timeout(fd
, iobuf_in
, iobuf_in_siz
);
1016 if (iobuf_in_remaining
) {
1017 len
= MIN(len
, iobuf_in_remaining
);
1018 memcpy(buf
, iobuf_in
+ iobuf_in_ndx
, len
);
1019 iobuf_in_ndx
+= len
;
1020 iobuf_in_remaining
-= len
;
1025 read_loop(fd
, line
, 4);
1026 tag
= IVAL(line
, 0);
1028 msg_bytes
= tag
& 0xFFFFFF;
1029 tag
= (tag
>> 24) - MPLEX_BASE
;
1033 if (msg_bytes
> iobuf_in_siz
) {
1034 if (!(iobuf_in
= realloc_array(iobuf_in
, char,
1036 out_of_memory("readfd_unbuffered");
1037 iobuf_in_siz
= msg_bytes
;
1039 read_loop(fd
, iobuf_in
, msg_bytes
);
1040 iobuf_in_remaining
= msg_bytes
;
1045 maybe_send_keepalive();
1050 read_loop(fd
, line
, msg_bytes
);
1051 send_msg_int(MSG_IO_ERROR
, IVAL(line
, 0));
1052 io_error
|= IVAL(line
, 0);
1055 if (msg_bytes
>= sizeof line
)
1058 if (ic_recv
!= (iconv_t
)-1) {
1064 INIT_CONST_XBUF(outbuf
, line
);
1068 inbuf
.len
= msg_bytes
> sizeof ibuf
1069 ? sizeof ibuf
: msg_bytes
;
1070 read_loop(fd
, inbuf
.buf
, inbuf
.len
);
1071 if (!(msg_bytes
-= inbuf
.len
)
1072 && !ibuf
[inbuf
.len
-1])
1073 inbuf
.len
--, add_null
= 1;
1074 if (iconvbufs(ic_send
, &inbuf
, &outbuf
,
1075 ICB_INCLUDE_BAD
| ICB_INCLUDE_INCOMPLETE
) < 0)
1080 if (outbuf
.len
== outbuf
.size
)
1082 outbuf
.buf
[outbuf
.len
++] = '\0';
1084 msg_bytes
= outbuf
.len
;
1087 read_loop(fd
, line
, msg_bytes
);
1088 /* A directory name was sent with the trailing null */
1089 if (msg_bytes
> 0 && !line
[msg_bytes
-1])
1090 log_delete(line
, S_IFDIR
);
1092 line
[msg_bytes
] = '\0';
1093 log_delete(line
, S_IFREG
);
1097 if (msg_bytes
!= 4) {
1099 rprintf(FERROR
, "invalid multi-message %d:%ld [%s]\n",
1100 tag
, (long)msg_bytes
, who_am_i());
1101 exit_cleanup(RERR_STREAMIO
);
1103 read_loop(fd
, line
, msg_bytes
);
1104 successful_send(IVAL(line
, 0));
1109 read_loop(fd
, line
, msg_bytes
);
1110 send_msg_int(MSG_NO_SEND
, IVAL(line
, 0));
1114 if (msg_bytes
>= sizeof line
) {
1117 "multiplexing overflow %d:%ld [%s]\n",
1118 tag
, (long)msg_bytes
, who_am_i());
1119 exit_cleanup(RERR_STREAMIO
);
1121 read_loop(fd
, line
, msg_bytes
);
1122 rwrite((enum logcode
)tag
, line
, msg_bytes
, 1);
1125 rprintf(FERROR
, "unexpected tag %d [%s]\n",
1127 exit_cleanup(RERR_STREAMIO
);
1131 if (iobuf_in_remaining
== 0)
1132 io_flush(NORMAL_FLUSH
);
1137 /* Do a buffered read from fd. Don't return until all N bytes have
1138 * been read. If all N can't be read then exit with an error. */
1139 static void readfd(int fd
, char *buffer
, size_t N
)
1145 cnt
= readfd_unbuffered(fd
, buffer
+ total
, N
-total
);
1149 if (fd
== write_batch_monitor_in
) {
1150 if ((size_t)write(batch_fd
, buffer
, total
) != total
)
1151 exit_cleanup(RERR_FILEIO
);
1154 if (fd
== flist_forward_from
)
1155 writefd(iobuf_f_out
, buffer
, total
);
1157 if (fd
== sock_f_in
)
1158 stats
.total_read
+= total
;
1161 unsigned short read_shortint(int f
)
1165 return (UVAL(b
, 1) << 8) + UVAL(b
, 0);
1168 int32
read_int(int f
)
1175 #if SIZEOF_INT32 > 4
1176 if (num
& (int32
)0x80000000)
1177 num
|= ~(int32
)0xffffffff;
1182 int32
read_varint(int f
)
1192 readfd(f
, (char*)&ch
, 1);
1193 extra
= int_byte_extra
[ch
/ 4];
1195 uchar bit
= ((uchar
)1<<(8-extra
));
1196 if (extra
>= (int)sizeof u
.b
) {
1197 rprintf(FERROR
, "Overflow in read_varint()\n");
1198 exit_cleanup(RERR_STREAMIO
);
1200 readfd(f
, u
.b
, extra
);
1201 u
.b
[extra
] = ch
& (bit
-1);
1204 #if CAREFUL_ALIGNMENT
1207 #if SIZEOF_INT32 > 4
1208 if (u
.x
& (int32
)0x80000000)
1209 u
.x
|= ~(int32
)0xffffffff;
1214 int64
read_varlong(int f
, uchar min_bytes
)
1223 #if SIZEOF_INT64 < 8
1228 readfd(f
, b2
, min_bytes
);
1229 memcpy(u
.b
, b2
+1, min_bytes
-1);
1230 extra
= int_byte_extra
[CVAL(b2
, 0) / 4];
1232 uchar bit
= ((uchar
)1<<(8-extra
));
1233 if (min_bytes
+ extra
> (int)sizeof u
.b
) {
1234 rprintf(FERROR
, "Overflow in read_varlong()\n");
1235 exit_cleanup(RERR_STREAMIO
);
1237 readfd(f
, u
.b
+ min_bytes
- 1, extra
);
1238 u
.b
[min_bytes
+ extra
- 1] = CVAL(b2
, 0) & (bit
-1);
1239 #if SIZEOF_INT64 < 8
1240 if (min_bytes
+ extra
> 5 || u
.b
[4] || CVAL(u
.b
,3) & 0x80) {
1241 rprintf(FERROR
, "Integer overflow: attempted 64-bit offset\n");
1242 exit_cleanup(RERR_UNSUPPORTED
);
1246 u
.b
[min_bytes
+ extra
- 1] = CVAL(b2
, 0);
1247 #if SIZEOF_INT64 < 8
1249 #elif CAREFUL_ALIGNMENT
1250 u
.x
= IVAL(u
.b
,0) | (((int64
)IVAL(u
.b
,4))<<32);
1255 int64
read_longint(int f
)
1257 #if SIZEOF_INT64 >= 8
1260 int32 num
= read_int(f
);
1262 if (num
!= (int32
)0xffffffff)
1265 #if SIZEOF_INT64 < 8
1266 rprintf(FERROR
, "Integer overflow: attempted 64-bit offset\n");
1267 exit_cleanup(RERR_UNSUPPORTED
);
1270 return IVAL(b
,0) | (((int64
)IVAL(b
,4))<<32);
1274 void read_buf(int f
, char *buf
, size_t len
)
1279 void read_sbuf(int f
, char *buf
, size_t len
)
1281 readfd(f
, buf
, len
);
1285 uchar
read_byte(int f
)
1288 readfd(f
, (char *)&c
, 1);
1292 int read_vstring(int f
, char *buf
, int bufsize
)
1294 int len
= read_byte(f
);
1297 len
= (len
& ~0x80) * 0x100 + read_byte(f
);
1299 if (len
>= bufsize
) {
1300 rprintf(FERROR
, "over-long vstring received (%d > %d)\n",
1306 readfd(f
, buf
, len
);
1311 /* Populate a sum_struct with values from the socket. This is
1312 * called by both the sender and the receiver. */
1313 void read_sum_head(int f
, struct sum_struct
*sum
)
1315 sum
->count
= read_int(f
);
1316 if (sum
->count
< 0) {
1317 rprintf(FERROR
, "Invalid checksum count %ld [%s]\n",
1318 (long)sum
->count
, who_am_i());
1319 exit_cleanup(RERR_PROTOCOL
);
1321 sum
->blength
= read_int(f
);
1322 if (sum
->blength
< 0 || sum
->blength
> MAX_BLOCK_SIZE
) {
1323 rprintf(FERROR
, "Invalid block length %ld [%s]\n",
1324 (long)sum
->blength
, who_am_i());
1325 exit_cleanup(RERR_PROTOCOL
);
1327 sum
->s2length
= protocol_version
< 27 ? csum_length
: (int)read_int(f
);
1328 if (sum
->s2length
< 0 || sum
->s2length
> MAX_DIGEST_LEN
) {
1329 rprintf(FERROR
, "Invalid checksum length %d [%s]\n",
1330 sum
->s2length
, who_am_i());
1331 exit_cleanup(RERR_PROTOCOL
);
1333 sum
->remainder
= read_int(f
);
1334 if (sum
->remainder
< 0 || sum
->remainder
> sum
->blength
) {
1335 rprintf(FERROR
, "Invalid remainder length %ld [%s]\n",
1336 (long)sum
->remainder
, who_am_i());
1337 exit_cleanup(RERR_PROTOCOL
);
1341 /* Send the values from a sum_struct over the socket. Set sum to
1342 * NULL if there are no checksums to send. This is called by both
1343 * the generator and the sender. */
1344 void write_sum_head(int f
, struct sum_struct
*sum
)
1346 static struct sum_struct null_sum
;
1351 write_int(f
, sum
->count
);
1352 write_int(f
, sum
->blength
);
1353 if (protocol_version
>= 27)
1354 write_int(f
, sum
->s2length
);
1355 write_int(f
, sum
->remainder
);
1359 * Sleep after writing to limit I/O bandwidth usage.
1361 * @todo Rather than sleeping after each write, it might be better to
1362 * use some kind of averaging. The current algorithm seems to always
1363 * use a bit less bandwidth than specified, because it doesn't make up
1364 * for slow periods. But arguably this is a feature. In addition, we
1365 * ought to take the time used to write the data into account.
1367 * During some phases of big transfers (file FOO is uptodate) this is
1368 * called with a small bytes_written every time. As the kernel has to
1369 * round small waits up to guarantee that we actually wait at least the
1370 * requested number of microseconds, this can become grossly inaccurate.
1371 * We therefore keep track of the bytes we've written over time and only
1372 * sleep when the accumulated delay is at least 1 tenth of a second.
1374 static void sleep_for_bwlimit(int bytes_written
)
1376 static struct timeval prior_tv
;
1377 static long total_written
= 0;
1378 struct timeval tv
, start_tv
;
1379 long elapsed_usec
, sleep_usec
;
1381 #define ONE_SEC 1000000L /* # of microseconds in a second */
1383 if (!bwlimit_writemax
)
1386 total_written
+= bytes_written
;
1388 gettimeofday(&start_tv
, NULL
);
1389 if (prior_tv
.tv_sec
) {
1390 elapsed_usec
= (start_tv
.tv_sec
- prior_tv
.tv_sec
) * ONE_SEC
1391 + (start_tv
.tv_usec
- prior_tv
.tv_usec
);
1392 total_written
-= elapsed_usec
* bwlimit
/ (ONE_SEC
/1024);
1393 if (total_written
< 0)
1397 sleep_usec
= total_written
* (ONE_SEC
/1024) / bwlimit
;
1398 if (sleep_usec
< ONE_SEC
/ 10) {
1399 prior_tv
= start_tv
;
1403 tv
.tv_sec
= sleep_usec
/ ONE_SEC
;
1404 tv
.tv_usec
= sleep_usec
% ONE_SEC
;
1405 select(0, NULL
, NULL
, NULL
, &tv
);
1407 gettimeofday(&prior_tv
, NULL
);
1408 elapsed_usec
= (prior_tv
.tv_sec
- start_tv
.tv_sec
) * ONE_SEC
1409 + (prior_tv
.tv_usec
- start_tv
.tv_usec
);
1410 total_written
= (sleep_usec
- elapsed_usec
) * bwlimit
/ (ONE_SEC
/1024);
1413 /* Write len bytes to the file descriptor fd, looping as necessary to get
1414 * the job done and also (in certain circumstances) reading any data on
1415 * msg_fd_in to avoid deadlock.
1417 * This function underlies the multiplexing system. The body of the
1418 * application never calls this function directly. */
1419 static void writefd_unbuffered(int fd
, const char *buf
, size_t len
)
1421 size_t n
, total
= 0;
1422 fd_set w_fds
, r_fds
, e_fds
;
1423 int maxfd
, count
, cnt
, using_r_fds
;
1428 defer_forwarding_messages
++, defer_inc
++;
1430 while (total
< len
) {
1437 if (msg_fd_in
>= 0) {
1439 FD_SET(msg_fd_in
, &r_fds
);
1440 if (msg_fd_in
> maxfd
)
1446 tv
.tv_sec
= select_timeout
;
1450 count
= select(maxfd
+ 1, using_r_fds
? &r_fds
: NULL
,
1451 &w_fds
, &e_fds
, &tv
);
1454 if (count
< 0 && errno
== EBADF
)
1455 exit_cleanup(RERR_SOCKETIO
);
1460 /*if (FD_ISSET(fd, &e_fds))
1461 rprintf(FINFO, "select exception on fd %d\n", fd); */
1463 if (using_r_fds
&& FD_ISSET(msg_fd_in
, &r_fds
))
1466 if (!FD_ISSET(fd
, &w_fds
))
1470 if (bwlimit_writemax
&& n
> bwlimit_writemax
)
1471 n
= bwlimit_writemax
;
1472 cnt
= write(fd
, buf
+ total
, n
);
1478 if (errno
== EWOULDBLOCK
|| errno
== EAGAIN
) {
1484 /* Don't try to write errors back across the stream. */
1485 if (fd
== sock_f_out
)
1486 io_end_multiplex_out();
1487 /* Don't try to write errors down a failing msg pipe. */
1488 if (am_server
&& fd
== msg_fd_out
)
1489 exit_cleanup(RERR_STREAMIO
);
1490 rsyserr(FERROR
, errno
,
1491 "writefd_unbuffered failed to write %ld bytes [%s]",
1492 (long)len
, who_am_i());
1493 /* If the other side is sending us error messages, try
1494 * to grab any messages they sent before they died. */
1495 while (!am_server
&& fd
== sock_f_out
&& io_multiplexing_in
) {
1499 readfd_unbuffered(sock_f_in
, buf
, sizeof buf
);
1501 exit_cleanup(RERR_STREAMIO
);
1505 defer_forwarding_messages
++, defer_inc
++;
1507 if (fd
== sock_f_out
) {
1508 if (io_timeout
|| am_generator
)
1509 last_io_out
= time(NULL
);
1510 sleep_for_bwlimit(cnt
);
1515 if (!(defer_forwarding_messages
-= defer_inc
))
1519 void io_flush(int flush_it_all
)
1521 if (!iobuf_out_cnt
|| no_flush
)
1524 if (io_multiplexing_out
)
1525 mplex_write(sock_f_out
, MSG_DATA
, iobuf_out
, iobuf_out_cnt
, 0);
1527 writefd_unbuffered(iobuf_f_out
, iobuf_out
, iobuf_out_cnt
);
1530 if (flush_it_all
&& !defer_forwarding_messages
)
1534 static void writefd(int fd
, const char *buf
, size_t len
)
1536 if (fd
== sock_f_out
)
1537 stats
.total_written
+= len
;
1539 if (fd
== write_batch_monitor_out
) {
1540 if ((size_t)write(batch_fd
, buf
, len
) != len
)
1541 exit_cleanup(RERR_FILEIO
);
1544 if (!iobuf_out
|| fd
!= iobuf_f_out
) {
1545 writefd_unbuffered(fd
, buf
, len
);
1550 int n
= MIN((int)len
, IO_BUFFER_SIZE
- iobuf_out_cnt
);
1552 memcpy(iobuf_out
+iobuf_out_cnt
, buf
, n
);
1558 if (iobuf_out_cnt
== IO_BUFFER_SIZE
)
1559 io_flush(NORMAL_FLUSH
);
1563 void write_shortint(int f
, unsigned short x
)
1567 b
[1] = (char)(x
>> 8);
1571 void write_int(int f
, int32 x
)
1578 void write_varint(int f
, int32 x
)
1586 while (cnt
> 1 && b
[cnt
] == 0)
1588 bit
= ((uchar
)1<<(7-cnt
+1));
1589 if (CVAL(b
, cnt
) >= bit
) {
1593 *b
= b
[cnt
] | ~(bit
*2-1);
1600 void write_varlong(int f
, int64 x
, uchar min_bytes
)
1607 #if SIZEOF_INT64 >= 8
1608 SIVAL(b
, 5, x
>> 32);
1610 if (x
<= 0x7FFFFFFF && x
>= 0)
1611 memset(b
+ 5, 0, 4);
1613 rprintf(FERROR
, "Integer overflow: attempted 64-bit offset\n");
1614 exit_cleanup(RERR_UNSUPPORTED
);
1618 while (cnt
> min_bytes
&& b
[cnt
] == 0)
1620 bit
= ((uchar
)1<<(7-cnt
+min_bytes
));
1621 if (CVAL(b
, cnt
) >= bit
) {
1624 } else if (cnt
> min_bytes
)
1625 *b
= b
[cnt
] | ~(bit
*2-1);
1633 * Note: int64 may actually be a 32-bit type if ./configure couldn't find any
1634 * 64-bit types on this platform.
1636 void write_longint(int f
, int64 x
)
1638 char b
[12], * const s
= b
+4;
1641 if (x
<= 0x7FFFFFFF && x
>= 0) {
1646 #if SIZEOF_INT64 < 8
1647 rprintf(FERROR
, "Integer overflow: attempted 64-bit offset\n");
1648 exit_cleanup(RERR_UNSUPPORTED
);
1651 SIVAL(s
, 4, x
>> 32);
1656 void write_buf(int f
, const char *buf
, size_t len
)
1661 /** Write a string to the connection */
1662 void write_sbuf(int f
, const char *buf
)
1664 writefd(f
, buf
, strlen(buf
));
1667 void write_byte(int f
, uchar c
)
1669 writefd(f
, (char *)&c
, 1);
1672 void write_vstring(int f
, const char *str
, int len
)
1674 uchar lenbuf
[3], *lb
= lenbuf
;
1679 "attempting to send over-long vstring (%d > %d)\n",
1681 exit_cleanup(RERR_PROTOCOL
);
1683 *lb
++ = len
/ 0x100 + 0x80;
1687 writefd(f
, (char*)lenbuf
, lb
- lenbuf
+ 1);
1689 writefd(f
, str
, len
);
1692 /* Send a file-list index using a byte-reduction method. */
1693 void write_ndx(int f
, int32 ndx
)
1695 static int32 prev_positive
= -1, prev_negative
= 1;
1696 int32 diff
, cnt
= 0;
1699 if (protocol_version
< 30 || read_batch
) {
1704 /* Send NDX_DONE as a single-byte 0 with no side effects. Send
1705 * negative nums as a positive after sending a leading 0xFF. */
1707 diff
= ndx
- prev_positive
;
1708 prev_positive
= ndx
;
1709 } else if (ndx
== NDX_DONE
) {
1714 b
[cnt
++] = (char)0xFF;
1716 diff
= ndx
- prev_negative
;
1717 prev_negative
= ndx
;
1720 /* A diff of 1 - 253 is sent as a one-byte diff; a diff of 254 - 32767
1721 * or 0 is sent as a 0xFE + a two-byte diff; otherwise we send 0xFE
1722 * & all 4 bytes of the (non-negative) num with the high-bit set. */
1723 if (diff
< 0xFE && diff
> 0)
1724 b
[cnt
++] = (char)diff
;
1725 else if (diff
< 0 || diff
> 0x7FFF) {
1726 b
[cnt
++] = (char)0xFE;
1727 b
[cnt
++] = (char)((ndx
>> 24) | 0x80);
1728 b
[cnt
++] = (char)ndx
;
1729 b
[cnt
++] = (char)(ndx
>> 8);
1730 b
[cnt
++] = (char)(ndx
>> 16);
1732 b
[cnt
++] = (char)0xFE;
1733 b
[cnt
++] = (char)(diff
>> 8);
1734 b
[cnt
++] = (char)diff
;
1739 /* Receive a file-list index using a byte-reduction method. */
1740 int32
read_ndx(int f
)
1742 static int32 prev_positive
= -1, prev_negative
= 1;
1743 int32
*prev_ptr
, num
;
1746 if (protocol_version
< 30)
1750 if (CVAL(b
, 0) == 0xFF) {
1752 prev_ptr
= &prev_negative
;
1753 } else if (CVAL(b
, 0) == 0)
1756 prev_ptr
= &prev_positive
;
1757 if (CVAL(b
, 0) == 0xFE) {
1759 if (CVAL(b
, 0) & 0x80) {
1760 b
[3] = CVAL(b
, 0) & ~0x80;
1765 num
= (UVAL(b
,0)<<8) + UVAL(b
,1) + *prev_ptr
;
1767 num
= UVAL(b
, 0) + *prev_ptr
;
1769 if (prev_ptr
== &prev_negative
)
1774 /* Read a line of up to bufsiz-1 characters into buf. Strips
1775 * the (required) trailing newline and all carriage returns.
1776 * Returns 1 for success; 0 for I/O error or truncation. */
1777 int read_line_old(int f
, char *buf
, size_t bufsiz
)
1779 bufsiz
--; /* leave room for the null */
1780 while (bufsiz
> 0) {
1782 read_buf(f
, buf
, 1);
1787 if (buf
[0] != '\r') {
1796 void io_printf(int fd
, const char *format
, ...)
1799 char buf
[BIGPATHBUFLEN
];
1802 va_start(ap
, format
);
1803 len
= vsnprintf(buf
, sizeof buf
, format
, ap
);
1807 exit_cleanup(RERR_STREAMIO
);
1809 if (len
> (int)sizeof buf
) {
1810 rprintf(FERROR
, "io_printf() was too long for the buffer.\n");
1811 exit_cleanup(RERR_STREAMIO
);
1814 write_sbuf(fd
, buf
);
1817 /** Setup for multiplexing a MSG_* stream with the data stream. */
1818 void io_start_multiplex_out(void)
1820 io_flush(NORMAL_FLUSH
);
1821 io_start_buffering_out(sock_f_out
);
1822 io_multiplexing_out
= 1;
1825 /** Setup for multiplexing a MSG_* stream with the data stream. */
1826 void io_start_multiplex_in(void)
1828 io_flush(NORMAL_FLUSH
);
1829 io_start_buffering_in(sock_f_in
);
1830 io_multiplexing_in
= 1;
1833 /** Write an message to the multiplexed data stream. */
1834 int io_multiplex_write(enum msgcode code
, const char *buf
, size_t len
, int convert
)
1836 if (!io_multiplexing_out
)
1838 io_flush(NORMAL_FLUSH
);
1839 stats
.total_written
+= (len
+4);
1840 mplex_write(sock_f_out
, code
, buf
, len
, convert
);
1844 void io_end_multiplex_in(void)
1846 io_multiplexing_in
= 0;
1847 io_end_buffering_in();
1850 /** Stop output multiplexing. */
1851 void io_end_multiplex_out(void)
1853 io_multiplexing_out
= 0;
1854 io_end_buffering_out();
1857 void start_write_batch(int fd
)
1859 /* Some communication has already taken place, but we don't
1860 * enable batch writing until here so that we can write a
1861 * canonical record of the communication even though the
1862 * actual communication so far depends on whether a daemon
1864 write_int(batch_fd
, protocol_version
);
1865 if (protocol_version
>= 30)
1866 write_byte(batch_fd
, inc_recurse
);
1867 write_int(batch_fd
, checksum_seed
);
1870 write_batch_monitor_out
= fd
;
1872 write_batch_monitor_in
= fd
;
1875 void stop_write_batch(void)
1877 write_batch_monitor_out
= -1;
1878 write_batch_monitor_in
= -1;