Updated to apply cleanly.
[rsync/rsync-patches.git] / chmod-option.diff
index 6a83028..bdc1dcf 100644 (file)
@@ -1,5 +1,11 @@
---- Makefile.in        10 Feb 2004 17:06:11 -0000      1.98
-+++ Makefile.in        10 Mar 2004 08:00:58 -0000
+After applying this patch and running configure, you MUST run this
+command before "make":
+
+    make proto
+
+
+--- orig/Makefile.in   2004-11-02 16:47:15
++++ Makefile.in        2004-07-03 20:13:41
 @@ -34,7 +34,7 @@ ZLIBOBJ=zlib/deflate.o zlib/infblock.o z
  OBJS1=rsync.o generator.o receiver.o cleanup.o sender.o exclude.o util.o \
        main.o checksum.o match.o syscall.o log.o backup.o
  OBJS3=progress.o pipe.o
  DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o
  popt_OBJS=popt/findme.o  popt/popt.o  popt/poptconfig.o \
---- chmod.c    2004-02-13 17:08:33.000000000 -0800
-+++ chmod.c    2004-03-09 23:59:27.000000000 -0800
-@@ -0,0 +1,162 @@
+--- orig/chmod.c       2004-06-18 17:22:08
++++ chmod.c    2004-06-18 17:22:08
+@@ -0,0 +1,184 @@
 +#include "rsync.h"
 +
++#define FLAG_X_KEEP (1<<0)
++#define FLAG_DIRS_ONLY (1<<1)
++#define FLAG_FILES_ONLY (1<<2)
++
 +struct chmod_mode_struct {
-+      int ModeAND;
-+      int ModeOR;
-+      char Xkeep;
 +      struct chmod_mode_struct *next;
++      int ModeAND, ModeOR;
++      char flags;
 +};
 +
 +#define CHMOD_ADD 1
 +#define CHMOD_SUB 2
 +#define CHMOD_EQ  3
 +
++#define STATE_ERROR 0
++#define STATE_1ST_HALF 1
++#define STATE_2ND_HALF 2
++
 +/* Parse a chmod-style argument, and break it down into one or more AND/OR
-+ * pairs in a linked list.
-+ * We use a state machine to walk through the options - states 1 and 3
-+ * before/including the operation (+, - or =), state 2 after the operation and
-+ * state 4 if we hit an error. */
++ * pairs in a linked list.  We use a state machine to walk through the
++ * options. */
 +struct chmod_mode_struct *parse_chmod(char *modestr)
 +{
-+      int state = 1;
-+      int where = 0, what = 0, op = 0, topbits = 0, topoct = 0, Xkeep = 0;
++      int state = STATE_1ST_HALF;
++      int where = 0, what = 0, op = 0, topbits = 0, topoct = 0, flags = 0;
 +      struct chmod_mode_struct *first_mode = NULL, *curr_mode = NULL,
 +          *prev_mode = NULL;
 +
-+      while (*modestr) {
-+              if (state != 2) {
++      while (state != STATE_ERROR) {
++              if (!*modestr || *modestr == ',') {
++                      if (!op) {
++                              state = STATE_ERROR;
++                              break;
++                      }
++                      prev_mode = curr_mode;
++                      curr_mode = new_array(struct chmod_mode_struct, 1);
++                      if (prev_mode)
++                              prev_mode->next = curr_mode;
++                      else
++                              first_mode = curr_mode;
++                      curr_mode->next = NULL;
++
++                      switch (op) {
++                      case CHMOD_ADD:
++                              curr_mode->ModeAND = 07777;
++                              curr_mode->ModeOR  = (where * what) + topoct;
++                              break;
++                      case CHMOD_SUB:
++                              curr_mode->ModeAND = 07777 - (where * what) - topoct;
++                              curr_mode->ModeOR  = 0;
++                              break;
++                      case CHMOD_EQ:
++                              curr_mode->ModeAND = 07777 - (where * 7);
++                              curr_mode->ModeOR  = where * what - topoct;
++                              break;
++                      }
++
++                      curr_mode->flags = flags;
++
++                      if (!*modestr)
++                              break;
++                      modestr++;
++
++                      state = STATE_1ST_HALF;
++                      where = what = op = topoct = topbits = flags = 0;
++              }
++
++              if (state != STATE_2ND_HALF) {
 +                      switch (*modestr) {
++                      case 'D':
++                              if (flags & FLAG_FILES_ONLY)
++                                      state = STATE_ERROR;
++                              flags |= FLAG_DIRS_ONLY;
++                              break;
++                      case 'F':
++                              if (flags & FLAG_DIRS_ONLY)
++                                      state = STATE_ERROR;
++                              flags |= FLAG_FILES_ONLY;
++                              break;
 +                      case 'u':
 +                              where |= 0100;
 +                              topbits |= 04000;
 +                              break;
 +                      case '+':
 +                              op = CHMOD_ADD;
-+                              state = 2;
++                              state = STATE_2ND_HALF;
 +                              break;
 +                      case '-':
 +                              op = CHMOD_SUB;
-+                              state = 2;
++                              state = STATE_2ND_HALF;
 +                              break;
 +                      case '=':
 +                              op = CHMOD_EQ;
-+                              state = 2;
-+                              break;
-+                      case ',':
++                              state = STATE_2ND_HALF;
 +                              break;
 +                      default:
-+                              state = 4;      /* Invalid Mode! */
++                              state = STATE_ERROR;
 +                              break;
 +                      }
 +              } else {
 +                              what |= 2;
 +                              break;
 +                      case 'X':
-+                              Xkeep = 1;
++                              flags |= FLAG_X_KEEP;
 +                              /* FALL THROUGH */
 +                      case 'x':
 +                              what |= 1;
 +                              topoct |= 01000;
 +                              break;
 +                      default:
-+                              state = 4;      /* Invalid Mode! */
++                              state = STATE_ERROR;
 +                              break;
 +                      }
 +              }
-+
-+              if (state == 4)
-+                      break;
-+
 +              modestr++;
-+              if (!*modestr || *modestr == ',') {
-+                      prev_mode = curr_mode;
-+                      curr_mode = new_array(struct chmod_mode_struct, 1);
-+                      if (prev_mode)
-+                              prev_mode->next = curr_mode;
-+                      else
-+                              first_mode = curr_mode;
-+                      curr_mode->next = NULL;
-+
-+                      switch (op) {
-+                      case CHMOD_ADD:
-+                              curr_mode->ModeAND = 07777;
-+                              curr_mode->ModeOR  = (where * what) + topoct;
-+                              break;
-+                      case CHMOD_SUB:
-+                              curr_mode->ModeAND = 07777 - (where * what) - topoct;
-+                              curr_mode->ModeOR  = 0;
-+                              break;
-+                      case CHMOD_EQ:
-+                              curr_mode->ModeAND = 07777 - (where * 7);
-+                              curr_mode->ModeOR  = where * what - topoct;
-+                              break;
-+                      }
-+
-+                      curr_mode->Xkeep = Xkeep;
-+                      state = 3;
-+                      where = what = topoct = topbits = Xkeep = 0;
-+              }
 +      }
 +
-+      if (state == 4) {
++      if (state == STATE_ERROR) {
 +              free_chmod_mode(first_mode);
 +              first_mode = NULL;
 +      }
 +
 +/* Takes an existing file permission and a list of AND/OR changes, and
 + * create a new permissions. */
-+int tweak_mode(int oldmode, struct chmod_mode_struct *chmod_modes)
++int tweak_mode(int mode, struct chmod_mode_struct *chmod_modes)
 +{
-+      int IsX = oldmode & 0111;
-+      int NonPerm = oldmode - (oldmode & 07777);
-+
-+      while (chmod_modes) {
-+              oldmode &= chmod_modes->ModeAND;
-+              if (chmod_modes->Xkeep && !IsX)
-+                      oldmode |= chmod_modes->ModeOR & (07777 - 0111);
++      int IsX = mode & 0111;
++      int NonPerm = mode & ~07777;
++
++      for ( ; chmod_modes; chmod_modes = chmod_modes->next) {
++              if ((chmod_modes->flags & FLAG_DIRS_ONLY) && !S_ISDIR(NonPerm))
++                      continue;
++              if ((chmod_modes->flags & FLAG_FILES_ONLY) && S_ISDIR(NonPerm))
++                      continue;
++              mode &= chmod_modes->ModeAND;
++              if ((chmod_modes->flags & FLAG_X_KEEP) && !IsX && !S_ISDIR(NonPerm))
++                      mode |= chmod_modes->ModeOR & ~0111;
 +              else
-+                      oldmode |= chmod_modes->ModeOR;
-+              chmod_modes = chmod_modes->next;
++                      mode |= chmod_modes->ModeOR;
 +      }
 +
-+      return oldmode + NonPerm;
++      return mode | NonPerm;
 +}
 +
 +/* Free the linked list created by parse_chmod. */
 +      }
 +      return 0;
 +}
---- flist.c    11 Feb 2004 02:48:58 -0000      1.205
-+++ flist.c    10 Mar 2004 08:00:59 -0000
-@@ -33,6 +33,7 @@ extern int verbose;
- extern int do_progress;
- extern int am_root;
- extern int am_server;
-+extern int am_sender;
- extern int always_checksum;
- extern int module_id;
- extern int ignore_errors;
-@@ -63,6 +64,8 @@ extern int sanitize_paths;
- extern int read_batch;
- extern int write_batch;
+--- orig/flist.c       2005-05-14 19:51:15
++++ flist.c    2004-09-18 01:51:11
+@@ -62,6 +62,8 @@ extern struct file_list *the_file_list;
+ extern char curr_dir[MAXPATHLEN];
  
 +extern struct chmod_mode_struct *chmod_modes;
 +
- extern struct exclude_struct **exclude_list;
- extern struct exclude_struct **server_exclude_list;
- extern struct exclude_struct **local_exclude_list;
-@@ -831,7 +834,10 @@ skip_excludes:
+ extern struct filter_list_struct filter_list;
+ extern struct filter_list_struct server_filter_list;
+@@ -883,7 +885,10 @@ skip_filters:
        file->flags = flags;
        file->modtime = st.st_mtime;
        file->length = st.st_size;
 -      file->mode = st.st_mode;
-+      if (chmod_modes && am_sender && S_ISREG(st.st_mode))
++      if (chmod_modes && am_sender && (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode)))
 +              file->mode = tweak_mode(st.st_mode, chmod_modes);
 +      else
 +              file->mode = st.st_mode;
        file->uid = st.st_uid;
        file->gid = st.st_gid;
  
---- options.c  22 Feb 2004 08:56:43 -0000      1.139
-+++ options.c  10 Mar 2004 08:00:59 -0000
-@@ -119,6 +119,7 @@ char *log_format = NULL;
+--- orig/options.c     2005-05-19 08:52:42
++++ options.c  2005-03-01 01:26:56
+@@ -141,6 +141,7 @@ char *log_format = NULL;
  char *password_file = NULL;
  char *rsync_path = RSYNC_PATH;
  char *backup_dir = NULL;
 +char *chmod_mode = NULL;
  char backup_dir_buf[MAXPATHLEN];
- int rsync_port = RSYNC_PORT;
- int link_dest = 0;
-@@ -132,6 +133,8 @@ int list_only = 0;
- #define MAX_BATCH_PREFIX_LEN 256      /* Must be less than MAXPATHLEN-13 */
- char *batch_prefix = NULL;
+ int rsync_port = 0;
+ int compare_dest = 0;
+@@ -160,6 +161,8 @@ int list_only = 0;
+ #define MAX_BATCH_NAME_LEN 256        /* Must be less than MAXPATHLEN-13 */
+ char *batch_name = NULL;
  
 +struct chmod_mode_struct *chmod_modes = NULL;
 +
  static int daemon_opt;   /* sets am_daemon after option error-reporting */
+ static int F_option_cnt = 0;
  static int modify_window_set;
-@@ -239,6 +242,7 @@ void usage(enum logcode F)
-   rprintf(F," -g, --group                 preserve group\n");
+@@ -287,6 +290,7 @@ void usage(enum logcode F)
    rprintf(F," -D, --devices               preserve devices (root only)\n");
    rprintf(F," -t, --times                 preserve times\n");
-+  rprintf(F,"     --chmod=CHMOD           change destination permissions\n");  
+   rprintf(F," -O, --omit-dir-times        omit directories when preserving times\n");
++  rprintf(F,"     --chmod=CHMOD           change destination permissions\n");
    rprintf(F," -S, --sparse                handle sparse files efficiently\n");
    rprintf(F," -n, --dry-run               show what would have been transferred\n");
-   rprintf(F," -W, --whole-file            copy whole files, no incremental checks\n");
-@@ -342,6 +346,7 @@ static struct poptOption long_options[] 
+   rprintf(F," -W, --whole-file            copy files whole (without rsync algorithm)\n");
+@@ -410,6 +414,7 @@ static struct poptOption long_options[] 
    {"perms",           'p', POPT_ARG_NONE,   &preserve_perms, 0, 0, 0 },
    {"owner",           'o', POPT_ARG_NONE,   &preserve_uid, 0, 0, 0 },
    {"group",           'g', POPT_ARG_NONE,   &preserve_gid, 0, 0, 0 },
 +  {"chmod",            0,  POPT_ARG_STRING, &chmod_mode, 0, 0, 0 },
    {"devices",         'D', POPT_ARG_NONE,   &preserve_devices, 0, 0, 0 },
    {"times",           't', POPT_ARG_NONE,   &preserve_times, 0, 0, 0 },
-   {"checksum",        'c', POPT_ARG_NONE,   &always_checksum, 0, 0, 0 },
-@@ -687,6 +692,13 @@ int parse_arguments(int *argc, const cha
-               exit_cleanup(RERR_SYNTAX);
-       }
+   {"omit-dir-times",  'O', POPT_ARG_VAL,    &omit_dir_times, 2, 0, 0 },
+@@ -1090,6 +1095,13 @@ int parse_arguments(int *argc, const cha
+       if (make_backups && !backup_dir)
+               omit_dir_times = 1;
  
 +      if (chmod_mode && !(chmod_modes = parse_chmod(chmod_mode))) {
 +              snprintf(err_buf, sizeof err_buf,
 +              return 0;
 +      }
 +
-       if (do_progress && !verbose)
-               verbose = 1;
+       if (log_format) {
+               if (log_format_has(log_format, 'i'))
+                       log_format_has_i = 1;
+@@ -1458,6 +1470,11 @@ void server_options(char **args,int *arg
+               }
+       }
  
-@@ -932,6 +944,11 @@ void server_options(char **args,int *arg
-                */
-               args[ac++] = link_dest ? "--link-dest" : "--compare-dest";
-               args[ac++] = compare_dest;
-+      }
-+
 +      if (chmod_mode && !am_sender) {
 +              args[ac++] = "--chmod";
 +              args[ac++] = chmod_mode;
-       }
-       if (files_from && (!am_sender || remote_filesfrom_file)) {
---- proto.h    17 Feb 2004 23:13:06 -0000      1.184
-+++ proto.h    10 Mar 2004 08:00:59 -0000
-@@ -25,6 +25,9 @@ void file_checksum(char *fname,char *sum
- void sum_init(void);
- void sum_update(char *p, int len);
- void sum_end(char *sum);
-+struct chmod_mode_struct *parse_chmod(char *modestr);
-+int tweak_mode(int oldmode, struct chmod_mode_struct *chmod_modes);
-+int free_chmod_mode(struct chmod_mode_struct *chmod_modes);
- void close_all(void);
- void _exit_cleanup(int code, const char *file, int line);
- void cleanup_disable(void);
---- rsync.1    2 Feb 2004 18:23:09 -0000       1.163
-+++ rsync.1    10 Mar 2004 08:01:00 -0000
-@@ -336,6 +336,7 @@ to the detailed description below for a 
-  -g, --group                 preserve group
-  -D, --devices               preserve devices (root only)
-  -t, --times                 preserve times
-+     --chmod=CHMOD           change destination permissions
-  -S, --sparse                handle sparse files efficiently
-  -n, --dry-run               show what would have been transferred
-  -W, --whole-file            copy whole files, no incremental checks
-@@ -614,6 +615,10 @@ modified cannot be effective; in other w
- cause the next transfer to behave as if it used -I, and all files will have
- their checksums compared and show up in log messages even if they haven\&'t
- changed\&.
-+.IP 
-+.IP "\fB--chmod\fP" 
-+This options tells rsync to apply the listed "chmod" pattern
-+to the permission of the files on the destination\&.
- .IP 
- .IP "\fB-n, --dry-run\fP" 
- This tells rsync to not do any file transfers,
---- rsync.yo   2 Feb 2004 18:23:09 -0000       1.147
-+++ rsync.yo   10 Mar 2004 08:01:00 -0000
-@@ -299,6 +299,7 @@ verb(
-  -g, --group                 preserve group
++      }
++
+       if (files_from && (!am_sender || filesfrom_host)) {
+               if (filesfrom_host) {
+                       args[ac++] = "--files-from";
+--- orig/rsync.yo      2005-05-10 23:47:12
++++ rsync.yo   2005-01-24 01:48:43
+@@ -322,6 +322,7 @@ to the detailed description below for a 
   -D, --devices               preserve devices (root only)
   -t, --times                 preserve times
+  -O, --omit-dir-times        omit directories when preserving times
 +     --chmod=CHMOD           change destination permissions
   -S, --sparse                handle sparse files efficiently
   -n, --dry-run               show what would have been transferred
-  -W, --whole-file            copy whole files, no incremental checks
-@@ -534,6 +535,9 @@ modified cannot be effective; in other w
- cause the next transfer to behave as if it used -I, and all files will have
- their checksums compared and show up in log messages even if they haven't
- changed.
-+
-+dit(bf(--chmod)) This options tells rsync to apply the listed "chmod" pattern
-+to the permission of the files on the destination.
+  -W, --whole-file            copy files whole (without rsync algorithm)
+@@ -659,6 +660,14 @@ it is preserving modification times (see
+ the directories on the receiving side, it is a good idea to use bf(-O).
+ This option is inferred if you use bf(--backup) without bf(--backup-dir).
  
++dit(bf(--chmod)) This options tells rsync to apply the listed "chmod" pattern
++to the permission of the files on the destination.  In addition to the normal
++parsing rules specified in the chmod manpage, you can specify an item that
++should only apply to a directory by prefixing it with a 'D', or specify an
++item that should only apply to a file by prefixing it with a 'F'.  For example:
++
++quote(--chmod=Dg+s,ug+w,Fo-w,+X)
++
  dit(bf(-n, --dry-run)) This tells rsync to not do any file transfers,
  instead it will just report the actions it would have taken.
---- testsuite/chmod.test       2004-02-13 17:08:33.000000000 -0800
-+++ testsuite/chmod.test       2004-03-10 00:05:23.000000000 -0800
-@@ -0,0 +1,37 @@
+--- orig/testsuite/chmod-option.test   2004-06-18 17:22:09
++++ testsuite/chmod-option.test        2004-06-18 17:22:09
+@@ -0,0 +1,43 @@
 +#! /bin/sh
 +
 +# Copyright (C) 2002 by Martin Pool <mbp@samba.org>
 +mkdir "$fromdir"
 +name1="$fromdir/name1"
 +name2="$fromdir/name2"
++dir1="$fromdir/dir1"
++dir2="$fromdir/dir2"
 +echo "This is the file" > "$name1"
 +echo "This is the other file" > "$name2"
++mkdir "$dir1" "$dir2"
 +
-+chmod 4700 "$name1" || test_skipped "Can't chown"
++chmod 4700 "$name1" || test_skipped "Can't chmod"
++chmod 700 "$dir1"
++chmod 770 "$dir2"
 +
 +# Copy the files we've created over to another directory
 +checkit "$RSYNC -avv \"$fromdir/\" \"$checkdir/\"" "$fromdir" "$checkdir"
 +
 +# And then manually make the changes which should occur 
-+chmod ug-s,a+rX $checkdir/*
++chmod ug-s,a+rX "$checkdir"/*
++chmod g+w "$checkdir" "$checkdir"/dir*
 +
-+checkit "$RSYNC -avv --chmod ug-s,a+rX \"$fromdir/\" \"$todir/\"" "$checkdir" "$todir"
++checkit "$RSYNC -avv --chmod ug-s,a+rX,Dg+w \"$fromdir/\" \"$todir/\"" "$checkdir" "$todir"
 +
 +# The script would have aborted on error, so getting here means we've won.
 +exit 0