The patches for 3.3.0.
[rsync-patches.git] / omit-dir-changes.diff
index f69f5f1d365885d50a3e63af6431935f7868112c..5caceb71da20be5c06926a3b54e6302c03cf489a 100644 (file)
@@ -7,39 +7,39 @@ To use this patch, run these commands for a successful build:
     ./configure                              (optional if already run)
     make
 
-based-on: c3b553a93f7090bcbb89c08405f1a5f1c175c864
+based-on: 6c8ca91c731b7bf2b081694bda85b7dadc2b7aff
 diff --git a/generator.c b/generator.c
 --- a/generator.c
 +++ b/generator.c
-@@ -47,6 +47,7 @@ extern int preserve_perms;
+@@ -45,6 +45,7 @@ extern int preserve_hard_links;
+ extern int preserve_executability;
+ extern int preserve_perms;
  extern int preserve_mtimes;
++extern int omit_dir_changes;
  extern int omit_dir_times;
  extern int omit_link_times;
-+extern int omit_dir_changes;
  extern int delete_mode;
- extern int delete_before;
- extern int delete_during;
-@@ -506,6 +507,7 @@ void itemize(const char *fnamecmp, struct file_struct *file, int ndx, int statre
-            const char *xname)
- {
-       if (statret >= 0) { /* A from-dest-dir statret can == 1! */
-+              int omit_changes = omit_dir_changes && S_ISDIR(sxp->st.st_mode);
-               int keep_time = !preserve_mtimes ? 0
+@@ -510,6 +511,7 @@ void itemize(const char *fnamecmp, struct file_struct *file, int ndx, int statre
                    : S_ISDIR(file->mode) ? !omit_dir_times
                    : S_ISLNK(file->mode) ? !omit_link_times
+                   : 1;
++              int omit_uid_gid = omit_dir_changes && S_ISDIR(sxp->st.st_mode);
+               if (S_ISREG(file->mode) && F_LENGTH(file) != sxp->st.st_size)
+                       iflags |= ITEM_REPORT_SIZE;
 @@ -543,9 +545,9 @@ void itemize(const char *fnamecmp, struct file_struct *file, int ndx, int statre
                } else if (preserve_executability
                 && ((sxp->st.st_mode & 0111 ? 1 : 0) ^ (file->mode & 0111 ? 1 : 0)))
                        iflags |= ITEM_REPORT_PERMS;
 -              if (uid_ndx && am_root && (uid_t)F_OWNER(file) != sxp->st.st_uid)
-+              if (uid_ndx && am_root && !omit_changes && (uid_t)F_OWNER(file) != sxp->st.st_uid)
++              if (uid_ndx && !omit_uid_gid && am_root && (uid_t)F_OWNER(file) != sxp->st.st_uid)
                        iflags |= ITEM_REPORT_OWNER;
 -              if (gid_ndx && !(file->flags & FLAG_SKIP_GROUP) && sxp->st.st_gid != (gid_t)F_GROUP(file))
-+              if (gid_ndx && !omit_changes && !(file->flags & FLAG_SKIP_GROUP) && sxp->st.st_gid != (gid_t)F_GROUP(file))
++              if (gid_ndx && !omit_uid_gid && !(file->flags & FLAG_SKIP_GROUP) && sxp->st.st_gid != (gid_t)F_GROUP(file))
                        iflags |= ITEM_REPORT_GROUP;
  #ifdef SUPPORT_ACLS
                if (preserve_acls && !S_ISLNK(file->mode)) {
-@@ -1448,7 +1450,7 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx,
+@@ -1451,7 +1453,7 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx,
                real_ret = statret;
                if (file->flags & FLAG_DIR_CREATED)
                        statret = -1;
@@ -51,15 +51,15 @@ diff --git a/generator.c b/generator.c
 diff --git a/options.c b/options.c
 --- a/options.c
 +++ b/options.c
-@@ -76,6 +76,7 @@ int delete_before = 0;
- int delete_after = 0;
- int delete_excluded = 0;
- int remove_source_files = 0;
+@@ -64,6 +64,7 @@ int preserve_gid = 0;
+ int preserve_mtimes = 0;
+ int preserve_atimes = 0;
+ int preserve_crtimes = 0;
 +int omit_dir_changes = 0;
- int one_file_system = 0;
- int protocol_version = PROTOCOL_VERSION;
- int sparse_files = 0;
-@@ -642,6 +643,7 @@ static struct poptOption long_options[] = {
+ int omit_dir_times = 0;
+ int omit_link_times = 0;
+ int trust_sender = 0;
+@@ -647,6 +648,7 @@ static struct poptOption long_options[] = {
    {"omit-link-times", 'J', POPT_ARG_VAL,    &omit_link_times, 1, 0, 0 },
    {"no-omit-link-times",0, POPT_ARG_VAL,    &omit_link_times, 0, 0, 0 },
    {"no-J",             0,  POPT_ARG_VAL,    &omit_link_times, 0, 0, 0 },
@@ -67,17 +67,16 @@ diff --git a/options.c b/options.c
    {"modify-window",   '@', POPT_ARG_INT,    &modify_window, OPT_MODIFY_WINDOW, 0, 0 },
    {"super",            0,  POPT_ARG_VAL,    &am_root, 2, 0, 0 },
    {"no-super",         0,  POPT_ARG_VAL,    &am_root, 0, 0, 0 },
-@@ -2284,6 +2286,9 @@ int parse_arguments(int *argc_p, const char ***argv_p)
+@@ -2321,7 +2323,7 @@ int parse_arguments(int *argc_p, const char ***argv_p)
                parse_filter_str(&filter_list, backup_dir_buf, rule_template(0), 0);
        }
  
-+      if (omit_dir_changes)
-+              omit_dir_times = 1;
-+
-       if (make_backups && !backup_dir)
+-      if (make_backups && !backup_dir)
++      if (omit_dir_changes || (make_backups && !backup_dir))
                omit_dir_times = -1; /* Implied, so avoid -O to sender. */
  
-@@ -2780,6 +2785,8 @@ void server_options(char **args, int *argc_p)
+       if (stdout_format) {
+@@ -2837,6 +2839,8 @@ void server_options(char **args, int *argc_p)
                        args[ac++] = "--size-only";
                if (do_stats)
                        args[ac++] = "--stats";
@@ -89,7 +88,7 @@ diff --git a/options.c b/options.c
 diff --git a/rsync.1.md b/rsync.1.md
 --- a/rsync.1.md
 +++ b/rsync.1.md
-@@ -375,6 +375,7 @@ has its own detailed description later in this man page.
+@@ -463,6 +463,7 @@ has its own detailed description later in this manpage.
  --crtimes, -N            preserve create times (newness)
  --omit-dir-times, -O     omit directories from --times
  --omit-link-times, -J    omit symlinks from --times
@@ -97,7 +96,7 @@ diff --git a/rsync.1.md b/rsync.1.md
  --super                  receiver attempts super-user activities
  --fake-super             store/recover privileged attrs using xattrs
  --sparse, -S             turn sequences of nulls into sparse blocks
-@@ -1530,6 +1531,11 @@ your home directory (remove the '=' for that).
+@@ -1656,6 +1657,11 @@ expand it.
      This tells rsync to omit symlinks when it is preserving modification,
      access, and create times.
  
@@ -120,17 +119,25 @@ diff --git a/rsync.c b/rsync.c
  extern int am_root;
  extern int am_server;
  extern int am_daemon;
-@@ -520,9 +521,11 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp,
+@@ -490,6 +491,7 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp,
+       stat_x sx2;
+       int change_uid, change_gid;
+       mode_t new_mode = file->mode;
++      int omit_uid_gid;
+       int inherit;
+       if (!sxp) {
+@@ -520,9 +522,10 @@ int set_file_attrs(const char *fname, struct file_struct *file, stat_x *sxp,
                get_acl(fname, sxp);
  #endif
  
 -      change_uid = am_root && uid_ndx && sxp->st.st_uid != (uid_t)F_OWNER(file);
-+      change_uid = am_root && uid_ndx && sxp->st.st_uid != (uid_t)F_OWNER(file)
-+                && !(omit_dir_changes && S_ISDIR(sxp->st.st_mode));
-       change_gid = gid_ndx && !(file->flags & FLAG_SKIP_GROUP)
+-      change_gid = gid_ndx && !(file->flags & FLAG_SKIP_GROUP)
 -                && sxp->st.st_gid != (gid_t)F_GROUP(file);
-+                && sxp->st.st_gid != (gid_t)F_GROUP(file)
-+                && !(omit_dir_changes && S_ISDIR(sxp->st.st_mode));
++      omit_uid_gid = omit_dir_changes && S_ISDIR(sxp->st.st_mode);
++      change_uid = am_root && !omit_uid_gid && uid_ndx && sxp->st.st_uid != (uid_t)F_OWNER(file);
++      change_gid = gid_ndx && !omit_uid_gid && !(file->flags & FLAG_SKIP_GROUP)
++                && sxp->st.st_gid != (gid_t)F_GROUP(file);
  #ifndef CAN_CHOWN_SYMLINK
        if (S_ISLNK(sxp->st.st_mode)) {
                ;