Updated to work with latest io.c changes.
[rsync/rsync-patches.git] / threaded-receiver.diff
index ea26547..48f7a18 100644 (file)
@@ -155,19 +155,21 @@ After applying this patch, run these commands for a successful build:
                if (!(backupptr = get_backup_name(fname))) {
                        close(fd);
                        return;
-@@ -1298,7 +1302,10 @@ void generate_files(int f_out, struct fi
+@@ -1298,9 +1302,12 @@ void generate_files(int f_out, struct fi
        int save_ignore_existing = ignore_existing;
        int save_ignore_non_existing = ignore_non_existing;
        int save_do_progress = do_progress;
 -      int save_make_backups = make_backups;
 +      int save_make_backups = GEN_make_backups = make_backups;
-+
+       int dir_tweaking = !(list_only || local_name || dry_run);
 +      GEN_append_mode = append_mode;
 +      GEN_csum_length = csum_length;
++
        if (protocol_version >= 29) {
                itemizing = 1;
-@@ -1327,7 +1334,7 @@ void generate_files(int f_out, struct fi
+               maybe_ATTRS_REPORT = log_format_has_i ? 0 : ATTRS_REPORT;
+@@ -1328,7 +1335,7 @@ void generate_files(int f_out, struct fi
                do_delete_pass(flist);
        do_progress = 0;
  
@@ -176,7 +178,7 @@ After applying this patch, run these commands for a successful build:
                whole_file = 0;
        if (verbose >= 2) {
                rprintf(FINFO, "delta-transmission %s\n",
-@@ -1336,12 +1343,6 @@ void generate_files(int f_out, struct fi
+@@ -1337,12 +1344,6 @@ void generate_files(int f_out, struct fi
                        : "enabled");
        }
  
@@ -189,7 +191,7 @@ After applying this patch, run these commands for a successful build:
        for (i = 0; i < flist->count; i++) {
                struct file_struct *file = flist->files[i];
  
-@@ -1385,23 +1386,34 @@ void generate_files(int f_out, struct fi
+@@ -1386,23 +1387,34 @@ void generate_files(int f_out, struct fi
                delete_in_dir(NULL, NULL, NULL, NULL);
  
        phase++;
@@ -230,7 +232,7 @@ After applying this patch, run these commands for a successful build:
                if (local_name)
                        strlcpy(fbuf, local_name, sizeof fbuf);
                else
-@@ -1413,27 +1425,43 @@ void generate_files(int f_out, struct fi
+@@ -1414,27 +1426,43 @@ void generate_files(int f_out, struct fi
        phase++;
        ignore_non_existing = save_ignore_non_existing;
        ignore_existing = save_ignore_existing;
@@ -312,7 +314,7 @@ After applying this patch, run these commands for a successful build:
  int sock_f_in = -1;
  int sock_f_out = -1;
  
-@@ -110,27 +106,32 @@ static OFF_T active_bytecnt = 0;
+@@ -110,27 +106,31 @@ static OFF_T active_bytecnt = 0;
  static void read_loop(int fd, char *buf, size_t len);
  
  struct flist_ndx_item {
@@ -334,10 +336,9 @@ After applying this patch, run these commands for a successful build:
  struct msg_list_item {
 -      struct msg_list_item *next;
 +      volatile struct msg_list_item *next;
-+      pthread_mutex_t mutex;
-       char *buf;
        int len;
 +      enum msgcode code;
+       char buf[1];
  };
  
  struct msg_list {
@@ -346,12 +347,12 @@ After applying this patch, run these commands for a successful build:
 +      pthread_mutex_t mutex;
  };
  
--static struct msg_list msg_list;
+-static struct msg_list msg2genr, msg2sndr;
 +static struct msg_list msg_list = { NULL, NULL, PTHREAD_MUTEX_INITIALIZER };
  
  static void flist_ndx_push(struct flist_ndx_list *lp, int ndx)
  {
-@@ -140,27 +141,31 @@ static void flist_ndx_push(struct flist_
+@@ -140,27 +140,31 @@ static void flist_ndx_push(struct flist_
                out_of_memory("flist_ndx_push");
        item->next = NULL;
        item->ndx = ndx;
@@ -389,7 +390,7 @@ After applying this patch, run these commands for a successful build:
  
        return ndx;
  }
-@@ -169,7 +174,7 @@ static void check_timeout(void)
+@@ -169,7 +173,7 @@ static void check_timeout(void)
  {
        time_t t;
  
@@ -398,7 +399,7 @@ After applying this patch, run these commands for a successful build:
                return;
  
        if (!last_io_in) {
-@@ -210,45 +215,40 @@ void set_io_timeout(int secs)
+@@ -210,44 +214,38 @@ void set_io_timeout(int secs)
  
  /* Setup the fd used to receive MSG_* messages.  Only needed during the
   * early stages of being a local sender (up through the sending of the
@@ -419,31 +420,34 @@ After applying this patch, run these commands for a successful build:
 -}
 -
  /* Add a message to the pending MSG_* list. */
- static void msg_list_add(int code, char *buf, int len)
+-static void msg_list_add(struct msg_list *lst, int code, char *buf, int len)
++static void msg_list_add(int code, char *buf, int len)
  {
-       struct msg_list_item *ml;
+       struct msg_list_item *m;
+-      int sz = len + 4 + sizeof m[0] - 1;
++      int sz = len + sizeof m[0] - 1;
  
 +      assert(am_receiver());
-       if (!(ml = new(struct msg_list_item)))
-               out_of_memory("msg_list_add");
-       ml->next = NULL;
--      if (!(ml->buf = new_array(char, len+4)))
-+      /* NOTE: the "+ 1" allows rwrite() to use the buf! */
-+      if (!(ml->buf = new_array(char, len + 1)))
+       if (!(m = (struct msg_list_item *)new_array(char, sz)))
                out_of_memory("msg_list_add");
--      SIVAL(ml->buf, 0, ((code+MPLEX_BASE)<<24) | len);
--      memcpy(ml->buf+4, buf, len);
--      ml->len = len+4;
-+      memcpy(ml->buf, buf, len);
-+      ml->len = len;
-+      ml->code = code;
+       m->next = NULL;
+-      m->len = len + 4;
+-      SIVAL(m->buf, 0, ((code+MPLEX_BASE)<<24) | len);
+-      memcpy(m->buf + 4, buf, len);
+-      if (lst->tail)
+-              lst->tail->next = m;
++      m->len = len;
++      m->code = code;
++      memcpy(m->buf, buf, len);
 +
 +      pthread_mutex_lock(&msg_list.mutex);
-       if (msg_list.tail)
-               msg_list.tail->next = ml;
++      if (msg_list.tail)
++              msg_list.tail->next = m;
        else
-               msg_list.head = ml;
-       msg_list.tail = ml;
+-              lst->head = m;
+-      lst->tail = m;
++              msg_list.head = m;
++      msg_list.tail = m;
 +      pthread_mutex_unlock(&msg_list.mutex);
  }
  
@@ -456,7 +460,7 @@ After applying this patch, run these commands for a successful build:
  static void read_msg_fd(void)
  {
        char buf[2048];
-@@ -267,51 +267,6 @@ static void read_msg_fd(void)
+@@ -266,57 +264,6 @@ static void read_msg_fd(void)
        tag = (tag >> 24) - MPLEX_BASE;
  
        switch (tag) {
@@ -483,7 +487,10 @@ After applying this patch, run these commands for a successful build:
 -                      exit_cleanup(RERR_STREAMIO);
 -              }
 -              read_loop(fd, buf, len);
--              io_multiplex_write(MSG_DELETED, buf, len);
+-              if (defer_forwarding_messages)
+-                      msg_list_add(&msg2sndr, MSG_DELETED, buf, len);
+-              else
+-                      io_multiplex_write(MSG_DELETED, buf, len);
 -              break;
 -      case MSG_SUCCESS:
 -              if (len != 4 || !am_generator) {
@@ -493,7 +500,10 @@ After applying this patch, run these commands for a successful build:
 -              read_loop(fd, buf, len);
 -              if (remove_sent_files) {
 -                      decrement_active_files(IVAL(buf,0));
--                      io_multiplex_write(MSG_SUCCESS, buf, len);
+-                      if (defer_forwarding_messages)
+-                              msg_list_add(&msg2sndr, MSG_SUCCESS, buf, len);
+-                      else
+-                              io_multiplex_write(MSG_SUCCESS, buf, len);
 -              }
 -              if (preserve_hard_links)
 -                      flist_ndx_push(&hlink_list, IVAL(buf,0));
@@ -508,7 +518,19 @@ After applying this patch, run these commands for a successful build:
        case MSG_INFO:
        case MSG_ERROR:
        case MSG_LOG:
-@@ -354,71 +309,75 @@ void decrement_active_files(int ndx)
+@@ -325,10 +272,7 @@ static void read_msg_fd(void)
+                       if (n >= sizeof buf)
+                               n = sizeof buf - 1;
+                       read_loop(fd, buf, n);
+-                      if (am_generator && am_server && defer_forwarding_messages)
+-                              msg_list_add(&msg2sndr, tag, buf, n);
+-                      else
+-                              rwrite((enum logcode)tag, buf, n);
++                      rwrite((enum logcode)tag, buf, n);
+                       len -= n;
+               }
+               break;
+@@ -362,70 +306,76 @@ void decrement_active_files(int ndx)
        active_bytecnt -= the_file_list->files[ndx]->length;
  }
  
@@ -516,21 +538,23 @@ After applying this patch, run these commands for a successful build:
 +/* Try to pop messages off the list onto the wire.  If we leave with more
   * to do, return 0.  On error, return -1.  If everything flushed, return 1.
 - * This is only active in the receiver. */
+-static int msg2genr_flush(int flush_it_all)
 + * This is only called by the generator. */
- static int msg_list_flush(int flush_it_all)
++static void msg_list_flush(void)
  {
 -      static int written = 0;
 -      struct timeval tv;
 -      fd_set fds;
--
++      assert(am_generator());
 -      if (msg_fd_out < 0)
 -              return -1;
--
-+      assert(am_generator());
-+      no_flush++;
-       while (msg_list.head) {
--              struct msg_list_item *ml = msg_list.head;
--              int n = write(msg_fd_out, ml->buf + written, ml->len - written);
++      if (defer_forwarding_messages)
++              return;
+-      while (msg2genr.head) {
+-              struct msg_list_item *m = msg2genr.head;
+-              int n = write(msg_fd_out, m->buf + written, m->len - written);
 -              if (n < 0) {
 -                      if (errno == EINTR)
 -                              continue;
@@ -544,39 +568,38 @@ After applying this patch, run these commands for a successful build:
 -                      tv.tv_usec = 0;
 -                      if (!select(msg_fd_out+1, NULL, &fds, NULL, &tv))
 -                              check_timeout();
--              } else if ((written += n) == ml->len) {
--                      free(ml->buf);
--                      msg_list.head = ml->next;
--                      if (!msg_list.head)
--                              msg_list.tail = NULL;
--                      free(ml);
+-              } else if ((written += n) == m->len) {
+-                      msg2genr.head = m->next;
+-                      if (!msg2genr.head)
+-                              msg2genr.tail = NULL;
+-                      free(m);
 -                      written = 0;
-+              struct msg_list_item *ml = (struct msg_list_item *)msg_list.head;
-+              switch (ml->code) {
++      no_flush++;
++      defer_forwarding_messages = 1;
++      while (msg_list.head) {
++              struct msg_list_item *m = (struct msg_list_item *)msg_list.head;
++              pthread_mutex_lock(&msg_list.mutex);
++              if (!(msg_list.head = m->next))
++                      msg_list.tail = NULL;
++              pthread_mutex_unlock(&msg_list.mutex);
++              switch (m->code) {
 +              case MSG_SOCKERR:
 +                      close_multiplexing_out();
 +                      /* FALL THROUGH */
 +              case MSG_INFO:
 +              case MSG_ERROR:
 +              case MSG_LOG:
-+                      rwrite(ml->code, ml->buf, ml->len);
++                      rwrite(m->code, m->buf, m->len);
 +                      break;
 +              default:
-+                      io_multiplex_write(ml->code, ml->buf, ml->len);
++                      io_multiplex_write(m->code, m->buf, m->len);
 +                      break;
                }
-+              pthread_mutex_lock(&msg_list.mutex);
-+              if (!(msg_list.head = ml->next))
-+                      msg_list.tail = NULL;
-+              pthread_mutex_unlock(&msg_list.mutex);
-+              free(ml->buf);
-+              free(ml);
-+              if (!flush_it_all)
-+                      break;
++              free(m);
        }
+-      return 1;
++      defer_forwarding_messages = 0;
 +      no_flush--;
-+
-       return 1;
  }
  
  void send_msg(enum msgcode code, char *buf, int len)
@@ -588,8 +611,8 @@ After applying this patch, run these commands for a successful build:
                io_multiplex_write(code, buf, len);
 -              return;
 -      }
--      msg_list_add(code, buf, len);
--      msg_list_flush(NORMAL_FLUSH);
+-      msg_list_add(&msg2genr, code, buf, len);
+-      msg2genr_flush(NORMAL_FLUSH);
  }
  
 -int get_redo_num(int itemizing, enum logcode code)
@@ -628,11 +651,11 @@ After applying this patch, run these commands for a successful build:
        return flist_ndx_pop(&hlink_list);
  }
  
-@@ -498,11 +457,6 @@ static int read_timeout(int fd, char *bu
+@@ -505,11 +455,6 @@ static int read_timeout(int fd, char *bu
                FD_ZERO(&r_fds);
                FD_ZERO(&w_fds);
                FD_SET(fd, &r_fds);
--              if (msg_list.head) {
+-              if (msg2genr.head) {
 -                      FD_SET(msg_fd_out, &w_fds);
 -                      if (msg_fd_out > maxfd)
 -                              maxfd = msg_fd_out;
@@ -640,17 +663,17 @@ After applying this patch, run these commands for a successful build:
                if (io_filesfrom_f_out >= 0) {
                        int new_fd;
                        if (io_filesfrom_buflen == 0) {
-@@ -535,9 +489,6 @@ static int read_timeout(int fd, char *bu
+@@ -542,9 +487,6 @@ static int read_timeout(int fd, char *bu
                        continue;
                }
  
--              if (msg_list.head && FD_ISSET(msg_fd_out, &w_fds))
--                      msg_list_flush(NORMAL_FLUSH);
+-              if (msg2genr.head && FD_ISSET(msg_fd_out, &w_fds))
+-                      msg2genr_flush(NORMAL_FLUSH);
 -
                if (io_filesfrom_f_out >= 0) {
                        if (io_filesfrom_buflen) {
                                if (FD_ISSET(io_filesfrom_f_out, &w_fds)) {
-@@ -859,6 +810,8 @@ static void readfd(int fd, char *buffer,
+@@ -866,6 +808,8 @@ static void readfd(int fd, char *buffer,
        }
  
        if (fd == write_batch_monitor_in) {
@@ -659,7 +682,7 @@ After applying this patch, run these commands for a successful build:
                if ((size_t)write(batch_fd, buffer, total) != total)
                        exit_cleanup(RERR_FILEIO);
        }
-@@ -1114,7 +1067,6 @@ static void writefd_unbuffered(int fd,ch
+@@ -1127,7 +1071,6 @@ static void writefd_unbuffered(int fd,ch
                         * to grab any messages they sent before they died. */
                        while (fd == sock_f_out && io_multiplexing_in) {
                                set_io_timeout(30);
@@ -667,8 +690,8 @@ After applying this patch, run these commands for a successful build:
                                readfd_unbuffered(sock_f_in, io_filesfrom_buf,
                                                  sizeof io_filesfrom_buf);
                        }
-@@ -1124,7 +1076,7 @@ static void writefd_unbuffered(int fd,ch
-               total += cnt;
+@@ -1138,7 +1081,7 @@ static void writefd_unbuffered(int fd,ch
+               defer_forwarding_messages = 1;
  
                if (fd == sock_f_out) {
 -                      if (io_timeout || am_generator)
@@ -676,48 +699,50 @@ After applying this patch, run these commands for a successful build:
                                last_io_out = time(NULL);
                        sleep_for_bwlimit(cnt);
                }
-@@ -1148,7 +1100,7 @@ static void mplex_write(enum msgcode cod
-        * cause output to occur down the socket.  Setting contiguous_write_len
-        * prevents the reading of msg_fd_in once we actually start to write
-        * this sequence of data (though we might read it before the start). */
--      if (am_generator && msg_fd_in >= 0)
-+      if (am_generator() && msg_fd_in >= 0)
-               contiguous_write_len = len + 4;
-       if (n > sizeof buffer - 4)
-@@ -1164,31 +1116,29 @@ static void mplex_write(enum msgcode cod
-       if (len)
-               writefd_unbuffered(sock_f_out, buf, len);
+@@ -1148,23 +1091,6 @@ static void writefd_unbuffered(int fd,ch
+       no_flush--;
+ }
  
--      if (am_generator && msg_fd_in >= 0)
-+      if (am_generator() && msg_fd_in >= 0)
-               contiguous_write_len = 0;
+-static void msg2sndr_flush(void)
+-{
+-      if (defer_forwarding_messages)
+-              return;
+-
+-      while (msg2sndr.head && io_multiplexing_out) {
+-              struct msg_list_item *m = msg2sndr.head;
+-              if (!(msg2sndr.head = m->next))
+-                      msg2sndr.tail = NULL;
+-              stats.total_written += m->len;
+-              defer_forwarding_messages = 1;
+-              writefd_unbuffered(sock_f_out, m->buf, m->len);
+-              defer_forwarding_messages = 0;
+-              free(m);
+-      }
+-}
+-
+ /**
+  * Write an message to a multiplexed stream. If this fails then rsync
+  * exits.
+@@ -1190,14 +1116,15 @@ static void mplex_write(enum msgcode cod
+               defer_forwarding_messages = 1;
+               writefd_unbuffered(sock_f_out, buf, len);
+               defer_forwarding_messages = 0;
+-              msg2sndr_flush();
++              if (am_generator())
++                      msg_list_flush();
+       }
  }
  
  void io_flush(int flush_it_all)
  {
--      msg_list_flush(flush_it_all);
--
--      if (!iobuf_out_cnt || no_flush)
-+      if (no_flush)
-               return;
--      if (io_multiplexing_out)
--              mplex_write(MSG_DATA, iobuf_out, iobuf_out_cnt);
--      else
--              writefd_unbuffered(sock_f_out, iobuf_out, iobuf_out_cnt);
--      iobuf_out_cnt = 0;
-+      if (iobuf_out_cnt) {
-+              if (io_multiplexing_out)
-+                      mplex_write(MSG_DATA, iobuf_out, iobuf_out_cnt);
-+              else
-+                      writefd_unbuffered(sock_f_out, iobuf_out, iobuf_out_cnt);
-+              iobuf_out_cnt = 0;
-+      }
-+
+-      msg2genr_flush(flush_it_all);
+-      msg2sndr_flush();
 +      if (am_generator())
-+              msg_list_flush(flush_it_all);
- }
++              msg_list_flush();
+       if (!iobuf_out_cnt || no_flush)
+               return;
+@@ -1211,11 +1138,6 @@ void io_flush(int flush_it_all)
  
  static void writefd(int fd,char *buf,size_t len)
  {
@@ -729,7 +754,7 @@ After applying this patch, run these commands for a successful build:
        if (fd == sock_f_out)
                stats.total_written += len;
  
-@@ -1401,9 +1351,3 @@ void start_write_batch(int fd)
+@@ -1428,9 +1350,3 @@ void start_write_batch(int fd)
        else
                write_batch_monitor_in = fd;
  }
@@ -808,7 +833,7 @@ After applying this patch, run these commands for a successful build:
                return;
  
        if (am_daemon) {
-@@ -617,12 +627,30 @@ static void do_server_sender(int f_in, i
+@@ -628,12 +638,30 @@ static void do_server_sender(int f_in, i
        exit_cleanup(0);
  }
  
@@ -842,7 +867,7 @@ After applying this patch, run these commands for a successful build:
  
        /* The receiving side mustn't obey this, or an existing symlink that
         * points to an identical file won't be replaced by the referent. */
-@@ -631,70 +659,16 @@ static int do_recv(int f_in,int f_out,st
+@@ -642,70 +670,16 @@ static int do_recv(int f_in,int f_out,st
        if (preserve_hard_links)
                init_hard_links();
  
@@ -918,7 +943,7 @@ After applying this patch, run these commands for a successful build:
        generate_files(f_out, flist, local_name);
  
        handle_stats(-1);
-@@ -705,10 +679,13 @@ static int do_recv(int f_in,int f_out,st
+@@ -716,10 +690,13 @@ static int do_recv(int f_in,int f_out,st
        }
        io_flush(FULL_FLUSH);
  
@@ -936,7 +961,7 @@ After applying this patch, run these commands for a successful build:
  }
  
  
-@@ -1078,22 +1055,6 @@ static int start_client(int argc, char *
+@@ -1089,22 +1066,6 @@ static int start_client(int argc, char *
        return ret;
  }
  
@@ -959,7 +984,7 @@ After applying this patch, run these commands for a successful build:
  RETSIGTYPE remember_children(UNUSED(int val))
  {
  #ifdef WNOHANG
-@@ -1185,8 +1146,6 @@ int main(int argc,char *argv[])
+@@ -1196,8 +1157,6 @@ int main(int argc,char *argv[])
  # endif
        sigact.sa_flags = SA_NOCLDSTOP;
  #endif
@@ -979,7 +1004,7 @@ After applying this patch, run these commands for a successful build:
  extern int checksum_seed;
  extern int append_mode;
  
-@@ -132,7 +132,7 @@ static void matched(int f, struct sum_st
+@@ -110,7 +110,7 @@ static void matched(int f, struct sum_st
        else
                last_match = offset;
  
@@ -988,7 +1013,7 @@ After applying this patch, run these commands for a successful build:
                show_progress(last_match, buf->file_size);
  }
  
-@@ -332,7 +332,7 @@ void match_sums(int f, struct sum_struct
+@@ -314,7 +314,7 @@ void match_sums(int f, struct sum_struct
        if (append_mode) {
                OFF_T j = 0;
                for (j = CHUNK_SIZE; j < s->flength; j += CHUNK_SIZE) {
@@ -997,7 +1022,7 @@ After applying this patch, run these commands for a successful build:
                                show_progress(last_match, buf->file_size);
                        sum_update(map_ptr(buf, last_match, CHUNK_SIZE),
                                   CHUNK_SIZE);
-@@ -340,7 +340,7 @@ void match_sums(int f, struct sum_struct
+@@ -322,7 +322,7 @@ void match_sums(int f, struct sum_struct
                }
                if (last_match < s->flength) {
                        int32 len = s->flength - last_match;
@@ -1024,7 +1049,7 @@ After applying this patch, run these commands for a successful build:
  int keep_partial = 0;
  int safe_symlinks = 0;
  int copy_unsafe_links = 0;
-@@ -1299,6 +1299,7 @@ int parse_arguments(int *argc, const cha
+@@ -1301,6 +1301,7 @@ int parse_arguments(int *argc, const cha
  
        if (do_progress && !verbose && !log_before_transfer && !am_server)
                verbose = 1;