X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/1071853f8d0ea561391a3d19e3606ff5ddb34991..a302c04819c87d365481d9a8b516d3c20df8bf46:/atimes.diff diff --git a/atimes.diff b/atimes.diff index 264dcad..b49ccc8 100644 --- a/atimes.diff +++ b/atimes.diff @@ -6,17 +6,28 @@ To use this patch, run these commands for a successful build: make +--- old/compat.c ++++ new/compat.c +@@ -50,6 +50,8 @@ void setup_protocol(int f_out,int f_in) + preserve_uid = ++file_extra_cnt; + if (preserve_gid) + preserve_gid = ++file_extra_cnt; ++ if (preserve_atimes) ++ preserve_atimes = ++file_extra_cnt; + + if (remote_protocol == 0) { + if (!read_batch) --- old/flist.c +++ new/flist.c -@@ -46,6 +46,7 @@ extern int preserve_devices; +@@ -47,6 +47,7 @@ extern int preserve_devices; extern int preserve_specials; extern int preserve_uid; extern int preserve_gid; +extern int preserve_atimes; extern int relative_paths; extern int implied_dirs; - extern int flist_extra_cnt; -@@ -134,6 +135,7 @@ void show_flist_stats(void) + extern int file_extra_cnt; +@@ -137,6 +138,7 @@ void show_flist_stats(void) static void list_file_entry(struct file_struct *f) { char permbuf[PERMSTRING_SIZE]; @@ -24,7 +35,7 @@ To use this patch, run these commands for a successful build: double len; if (!F_IS_ACTIVE(f)) { -@@ -146,14 +148,16 @@ static void list_file_entry(struct file_ +@@ -149,14 +151,16 @@ static void list_file_entry(struct file_ #ifdef SUPPORT_LINKS if (preserve_links && S_ISLNK(f->mode)) { @@ -43,24 +54,15 @@ To use this patch, run these commands for a successful build: f_name(f, NULL)); } } -@@ -311,6 +315,7 @@ static void send_file_entry(struct file_ +@@ -313,6 +317,7 @@ void flist_expand(struct file_list *flis + static void send_file_entry(struct file_struct *file, int f, int ndx) { - unsigned short flags; static time_t modtime; + static time_t atime; static mode_t mode; static int64 dev; static dev_t rdev; -@@ -326,7 +331,7 @@ static void send_file_entry(struct file_ - - if (!file) { - write_byte(f, 0); -- modtime = 0, mode = 0; -+ modtime = 0, atime = 0, mode = 0; - dev = 0, rdev = MAKEDEV(0, 0); - rdev_major = 0; - uid = 0, gid = 0; -@@ -376,6 +381,13 @@ static void send_file_entry(struct file_ +@@ -367,6 +372,13 @@ static void send_file_entry(struct file_ flags |= XMIT_SAME_TIME; else modtime = file->modtime; @@ -73,8 +75,8 @@ To use this patch, run these commands for a successful build: + } #ifdef SUPPORT_HARD_LINKS - if (tmp_idev.dev != 0) { -@@ -428,6 +440,8 @@ static void send_file_entry(struct file_ + if (tmp_dev != 0) { +@@ -434,6 +446,8 @@ static void send_file_entry(struct file_ write_int(f, modtime); if (!(flags & XMIT_SAME_MODE)) write_int(f, to_wire_mode(mode)); @@ -83,16 +85,16 @@ To use this patch, run these commands for a successful build: if (preserve_uid && !(flags & XMIT_SAME_UID)) { if (!numeric_ids) add_uid(uid); -@@ -494,7 +508,7 @@ static void send_file_entry(struct file_ +@@ -501,7 +515,7 @@ static void send_file_entry(struct file_ static struct file_struct *recv_file_entry(struct file_list *flist, - unsigned short flags, int f) + int flags, int f) { - static time_t modtime; + static time_t modtime, atime; static mode_t mode; static int64 dev; static dev_t rdev; -@@ -514,7 +528,7 @@ static struct file_struct *recv_file_ent +@@ -522,7 +536,7 @@ static struct file_struct *recv_file_ent struct file_struct *file; if (!flist) { @@ -101,7 +103,7 @@ To use this patch, run these commands for a successful build: dev = 0, rdev = MAKEDEV(0, 0); rdev_major = 0; uid = 0, gid = 0; -@@ -570,6 +584,8 @@ static struct file_struct *recv_file_ent +@@ -610,6 +624,8 @@ static struct file_struct *recv_file_ent modtime = (time_t)read_int(f); if (!(flags & XMIT_SAME_MODE)) mode = from_wire_mode(read_int(f)); @@ -110,7 +112,7 @@ To use this patch, run these commands for a successful build: if (chmod_modes && !S_ISLNK(mode)) mode = tweak_mode(mode, chmod_modes); -@@ -654,6 +670,8 @@ static struct file_struct *recv_file_ent +@@ -700,6 +716,8 @@ static struct file_struct *recv_file_ent F_UID(file) = uid; if (preserve_gid) F_GID(file) = gid; @@ -119,7 +121,7 @@ To use this patch, run these commands for a successful build: if (dirname_len) { file->dirname = lastdir = bp; -@@ -931,6 +949,8 @@ struct file_struct *make_file(const char +@@ -1002,6 +1020,8 @@ struct file_struct *make_file(const char F_UID(file) = st.st_uid; if (preserve_gid) F_GID(file) = st.st_gid; @@ -145,18 +147,18 @@ To use this patch, run these commands for a successful build: + if (preserve_atimes && !S_ISDIR(file->mode) && !S_ISLNK(file->mode) + && cmp_time(F_ATIME(file), st->st_atime) != 0) + iflags |= ITEM_REPORT_ATIME; - if ((unsigned)(st->st_mode & CHMOD_BITS) != (file->mode & CHMOD_BITS)) + if (!BITS_EQUAL(st->st_mode, file->mode, CHMOD_BITS)) iflags |= ITEM_REPORT_PERMS; if (preserve_uid && am_root && F_UID(file) != st->st_uid) -@@ -859,6 +863,8 @@ static int try_dests_reg(struct file_str - if (hard_link_one(file, ndx, fname, 0, stp, - cmpbuf, 1, i, code) < 0) +@@ -858,6 +862,8 @@ static int try_dests_reg(struct file_str + if (link_dest) { + if (!hard_link_one(file, fname, cmpbuf, 1)) goto try_a_copy; + if (preserve_atimes) + set_file_attrs(fname, file, stp, 0); if (preserve_hard_links && F_IS_HLINKED(file)) - hard_link_cluster(file, ndx, itemizing, code, j); - } else + finish_hard_link(file, fname, stp, itemizing, code, j); + if (itemizing && (verbose > 1 || stdout_format_has_i > 1)) { --- old/log.c +++ new/log.c @@ -37,6 +37,7 @@ extern int msg_fd_out; @@ -187,7 +189,7 @@ To use this patch, run these commands for a successful build: int update_only = 0; int cvs_exclude = 0; int dry_run = 0; -@@ -307,8 +308,9 @@ void usage(enum logcode F) +@@ -306,8 +307,9 @@ void usage(enum logcode F) rprintf(F," --devices preserve device files (super-user only)\n"); rprintf(F," --specials preserve special files\n"); rprintf(F," -D same as --devices --specials\n"); @@ -199,7 +201,7 @@ To use this patch, run these commands for a successful build: rprintf(F," --super receiver attempts super-user activities\n"); rprintf(F," -S, --sparse handle sparse files efficiently\n"); rprintf(F," -n, --dry-run show what would have been transferred\n"); -@@ -425,6 +427,9 @@ static struct poptOption long_options[] +@@ -424,6 +426,9 @@ static struct poptOption long_options[] {"times", 't', POPT_ARG_VAL, &preserve_times, 1, 0, 0 }, {"no-times", 0, POPT_ARG_VAL, &preserve_times, 0, 0, 0 }, {"no-t", 0, POPT_ARG_VAL, &preserve_times, 0, 0, 0 }, @@ -209,16 +211,7 @@ To use this patch, run these commands for a successful build: {"omit-dir-times", 'O', POPT_ARG_VAL, &omit_dir_times, 2, 0, 0 }, {"modify-window", 0, POPT_ARG_INT, &modify_window, OPT_MODIFY_WINDOW, 0, 0 }, {"super", 0, POPT_ARG_VAL, &am_root, 2, 0, 0 }, -@@ -1223,6 +1228,8 @@ int parse_arguments(int *argc, const cha - preserve_uid = ++flist_extra_cnt; - if (preserve_gid) - preserve_gid = ++flist_extra_cnt; -+ if (preserve_atimes) -+ preserve_atimes = ++flist_extra_cnt; - - *argv = poptGetArgs(pc); - *argc = count_args(*argv); -@@ -1542,6 +1549,8 @@ void server_options(char **args,int *arg +@@ -1536,6 +1541,8 @@ void server_options(char **args,int *arg argstr[x++] = 'D'; if (preserve_times) argstr[x++] = 't'; @@ -287,15 +280,15 @@ To use this patch, run these commands for a successful build: change_uid = am_root && preserve_uid && st->st_uid != F_UID(file); --- old/rsync.h +++ new/rsync.h -@@ -54,6 +54,7 @@ - #define XMIT_HAS_IDEV_DATA (1<<9) - #define XMIT_SAME_DEV (1<<10) +@@ -55,6 +55,7 @@ + #define XMIT_SAME_DEV_pre30 (1<<10) /* protocols < 30 */ + #define XMIT_HLINK_FIRST (1<<10) /* protocols >= 30 */ #define XMIT_RDEV_MINOR_IS_SMALL (1<<11) +#define XMIT_SAME_ATIME (1<<12) /* These flags are used in the live flist data. */ -@@ -121,6 +122,7 @@ +@@ -128,6 +129,7 @@ #define ATTRS_REPORT (1<<0) #define ATTRS_SKIP_MTIME (1<<1) @@ -303,22 +296,22 @@ To use this patch, run these commands for a successful build: #define FULL_FLUSH 1 #define NORMAL_FLUSH 0 -@@ -511,6 +513,7 @@ struct file_struct { - union flist_extras { - uid_t uid; /* The user ID number */ - uid_t gid; /* The group ID number or GID_NONE */ -+ time_t utime; /* A unix-time value */ - struct idev *idev; /* The hard-link info during matching */ - struct hlist *hlist; /* The hard-link info after matching */ - int32 num; /* A signed number */ -@@ -553,6 +556,7 @@ extern int preserve_gid; +@@ -551,6 +553,7 @@ struct file_struct { + extern int file_extra_cnt; + extern int preserve_uid; + extern int preserve_gid; ++extern int preserve_atimes; + + #define FILE_STRUCT_LEN (offsetof(struct file_struct, basename)) + #define EXTRA_LEN (sizeof (union file_extras)) +@@ -583,6 +586,7 @@ extern int preserve_gid; /* When the associated option is on, all entries will have these present: */ - #define F_UID(f) REQ_EXTRA(f, preserve_uid)->uid - #define F_GID(f) REQ_EXTRA(f, preserve_gid)->gid -+#define F_ATIME(f) REQ_EXTRA(f, preserve_atimes)->utime + #define F_UID(f) REQ_EXTRA(f, preserve_uid)->unum + #define F_GID(f) REQ_EXTRA(f, preserve_gid)->unum ++#define F_ATIME(f) REQ_EXTRA(f, preserve_atimes)->unum /* These items are per-entry optional and mutally exclusive: */ - #define F_HL_IDEV(f) OPT_EXTRA(f, LEN64_BUMP(f))->idev + #define F_HL_GNUM(f) OPT_EXTRA(f, LEN64_BUMP(f))->num --- old/rsync.yo +++ new/rsync.yo @@ -328,8 +328,9 @@ to the detailed description below for a @@ -539,7 +532,7 @@ To use this patch, run these commands for a successful build: + +static void tls_usage(int ret) +{ -+ fprintf(stderr, "usage: " PROGRAM " [--atime | -u] DIR ...\n" ++ fprintf(stderr, "usage: " PROGRAM " [--atime | -u] FILE ...\n" + "Trivial file listing program for portably checking rsync\n"); + exit(ret); } @@ -548,7 +541,7 @@ To use this patch, run these commands for a successful build: main(int argc, char *argv[]) { - if (argc < 2) { -- fprintf(stderr, "usage: " PROGRAM " DIR ...\n" +- fprintf(stderr, "usage: " PROGRAM " FILE ...\n" - "Trivial file listing program for portably checking rsync\n"); - return 1; - }