Cleanup patch fuzz.
[rsync/rsync-patches.git] / link-by-hash.diff
CommitLineData
03019e41 1Jason M. Felice wrote:
2eb075b2
WD
2
3This patch adds the --link-by-hash=DIR option, which hard links received
4files in a link farm arranged by MD4 file hash. The result is that the system
5will only store one copy of the unique contents of each file, regardless of
6the file's name.
7
03019e41
WD
8To use this patch, run these commands for a successful build:
9
10 patch -p1 <patches/link-by-hash.diff
11 ./prepare-source
12 ./configure
13 make
2eb075b2 14
9a7eef96
WD
15--- old/Makefile.in
16+++ new/Makefile.in
fc068916
WD
17@@ -35,7 +35,7 @@ OBJS1=flist.o rsync.o generator.o receiv
18 util.o main.o checksum.o match.o syscall.o log.o backup.o
790ba11a 19 OBJS2=options.o io.o compat.o hlink.o token.o uidlist.o socket.o hashtable.o \
5795bf59 20 fileio.o batch.o clientname.o chmod.o acls.o xattrs.o
8a529471
WD
21-OBJS3=progress.o pipe.o
22+OBJS3=progress.o pipe.o hashlink.o
23 DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o
24 popt_OBJS=popt/findme.o popt/popt.o popt/poptconfig.o \
25 popt/popthelp.o popt/poptparse.o
96148342
WD
26--- old/flist.c
27+++ new/flist.c
790ba11a 28@@ -65,6 +65,7 @@ extern int protocol_version;
96148342
WD
29 extern int sanitize_paths;
30 extern struct stats stats;
790ba11a 31 extern char *filesfrom_host;
96148342 32+extern char *link_by_hash_dir;
99397a25
WD
33 #ifdef ICONV_OPTION
34 extern char *iconv_opt;
35 #endif
36@@ -818,7 +819,7 @@ static struct file_struct *recv_file_ent
ffc18846 37 extra_len += (S_ISDIR(mode) ? 2 : 1) * EXTRA_LEN;
96148342
WD
38 #endif
39
40- if (always_checksum && S_ISREG(mode))
41+ if ((always_checksum || link_by_hash_dir) && S_ISREG(mode))
42 extra_len += SUM_EXTRA_CNT * EXTRA_LEN;
43
44 if (file_length > 0xFFFFFFFFu && S_ISREG(mode))
9a7eef96
WD
45--- old/hashlink.c
46+++ new/hashlink.c
96148342 47@@ -0,0 +1,336 @@
c57f4101
WD
48+/*
49+ Copyright (C) Cronosys, LLC 2004
50+
51+ This program is free software; you can redistribute it and/or modify
52+ it under the terms of the GNU General Public License as published by
53+ the Free Software Foundation; either version 2 of the License, or
54+ (at your option) any later version.
55+
56+ This program is distributed in the hope that it will be useful,
57+ but WITHOUT ANY WARRANTY; without even the implied warranty of
58+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
59+ GNU General Public License for more details.
60+
61+ You should have received a copy of the GNU General Public License
62+ along with this program; if not, write to the Free Software
63+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
64+*/
65+
66+/* This file contains code used by the --link-by-hash option. */
67+
68+#include "rsync.h"
69+
70+extern char *link_by_hash_dir;
71+
96148342 72+#ifdef HAVE_LINK
c57f4101 73+
96148342 74+char *make_hash_name(struct file_struct *file)
c57f4101
WD
75+{
76+ char hash[33], *dst;
96148342 77+ uchar c, *src = (uchar*)F_SUM(file);
c57f4101
WD
78+ int i;
79+
c57f4101
WD
80+ for (dst = hash, i = 0; i < 4; i++, src++) {
81+ c = *src >> 4;
82+ *(dst++) = (c >= 10) ? (c - 10 + 'a') : (c + '0');
83+ c = *src & 0x0f;
84+ *(dst++) = (c >= 10) ? (c - 10 + 'a') : (c + '0');
85+ }
86+ *dst++ = '/';
87+ for (i = 0; i < 12; i++, src++) {
88+ c = *src >> 4;
89+ *(dst++) = (c >= 10) ? (c - 10 + 'a') : (c + '0');
90+ c = *src & 0x0f;
91+ *(dst++) = (c >= 10) ? (c - 10 + 'a') : (c + '0');
92+ }
93+ *dst = 0;
94+
95+ asprintf(&dst,"%s/%s",link_by_hash_dir,hash);
96+ return dst;
97+}
98+
99+
100+void kill_hashfile(struct hashfile_struct *hashfile)
101+{
102+ if (!hashfile)
103+ return;
104+ free(hashfile->name);
105+ close(hashfile->fd);
106+ free(hashfile);
107+}
108+
109+
110+void kill_hashfiles(struct hashfile_struct *hashfiles)
111+{
112+ struct hashfile_struct *iter, *next;
113+ if ((iter = hashfiles) != NULL) {
114+ do {
115+ next = iter->next;
116+ kill_hashfile(iter);
117+ iter = next;
118+ } while (iter != hashfiles);
119+ }
120+}
121+
122+
123+struct hashfile_struct *find_hashfiles(char *hashname, int64 size, long *fnbr)
124+{
125+ DIR *d;
126+ struct dirent *di;
127+ struct hashfile_struct *hashfiles = NULL, *hashfile;
128+ STRUCT_STAT st;
129+ long this_fnbr;
130+
131+ *fnbr = 0;
47841496 132+
c57f4101
WD
133+ /* Build a list of potential candidates and open
134+ * them. */
135+ if ((d = opendir(hashname)) == NULL) {
d0320a46 136+ rsyserr(FERROR, errno, "opendir failed: \"%s\"", hashname);
c57f4101
WD
137+ free(hashname);
138+ return NULL;
139+ }
140+ while ((di = readdir(d)) != NULL) {
141+ if (!strcmp(di->d_name,".") || !strcmp(di->d_name,"..")) {
142+ continue;
143+ }
144+
145+ /* We need to have the largest fnbr in case we need to store
146+ * a new file. */
147+ this_fnbr = atol(di->d_name);
148+ if (this_fnbr > *fnbr)
149+ *fnbr = this_fnbr;
150+
39cc637d 151+ hashfile = new_array(struct hashfile_struct, 1);
c57f4101
WD
152+ asprintf(&hashfile->name,"%s/%s",hashname,
153+ di->d_name);
154+ if (do_stat(hashfile->name,&st) == -1) {
d0320a46 155+ rsyserr(FERROR, errno, "stat failed: %s", hashfile->name);
c57f4101
WD
156+ kill_hashfile(hashfile);
157+ continue;
158+ }
159+ if (st.st_size != size) {
160+ kill_hashfile(hashfile);
161+ continue;
162+ }
163+ hashfile->nlink = st.st_nlink;
164+ hashfile->fd = open(hashfile->name,O_RDONLY|O_BINARY);
165+ if (hashfile->fd == -1) {
d0320a46 166+ rsyserr(FERROR, errno, "open failed: %s", hashfile->name);
c57f4101
WD
167+ kill_hashfile(hashfile);
168+ continue;
169+ }
170+ if (hashfiles == NULL)
171+ hashfiles = hashfile->next = hashfile->prev = hashfile;
172+ else {
173+ hashfile->next = hashfiles;
174+ hashfile->prev = hashfiles->prev;
175+ hashfile->next->prev = hashfile;
176+ hashfile->prev->next = hashfile;
177+ }
178+ }
179+ closedir(d);
180+
181+ return hashfiles;
182+}
183+
184+
185+struct hashfile_struct *compare_hashfiles(int fd,struct hashfile_struct *files)
186+{
187+ int amt, hamt;
188+ char buffer[BUFSIZ], cmpbuffer[BUFSIZ];
189+ struct hashfile_struct *iter, *next, *best;
190+ uint32 nlink;
191+
192+ if (!files)
193+ return NULL;
194+
195+ iter = files; /* in case files are 0 bytes */
196+ while ((amt = read(fd, buffer, BUFSIZ)) > 0) {
197+ iter = files;
198+ do {
199+ /* Icky bit to resync when we steal the first node. */
200+ if (!files)
201+ files = iter;
202+
203+ next = iter->next;
204+
205+ hamt = read(iter->fd, cmpbuffer, BUFSIZ);
206+ if (amt != hamt || memcmp(buffer, cmpbuffer, amt)) {
207+ if (iter == files) {
208+ files = files->prev;
209+ }
210+ if (iter->next == iter) {
211+ files = next = NULL;
212+ } else {
213+ next = iter->next;
214+ if (iter == files) {
215+ /* So we know to resync */
216+ files = NULL;
217+ }
218+ }
219+ iter->next->prev = iter->prev;
220+ iter->prev->next = iter->next;
221+ kill_hashfile(iter);
222+ }
223+
224+ iter = next;
225+ } while (iter != files);
226+
227+ if (iter == NULL && files == NULL) {
228+ /* There are no matches. */
229+ return NULL;
230+ }
c57f4101
WD
231+ }
232+
233+ if (amt == -1) {
d0320a46 234+ rsyserr(FERROR, errno, "read failed in compare_hashfiles()");
c57f4101
WD
235+ kill_hashfiles(files);
236+ return NULL;
237+ }
238+
239+ /* If we only have one file left, use it. */
240+ if (files == files->next) {
241+ return files;
242+ }
243+
244+ /* All files which remain in the list are identical and should have
245+ * the same size. We pick the one with the lowest link count (we
246+ * may have rolled over because we hit the maximum link count for
247+ * the filesystem). */
248+ best = iter = files;
249+ nlink = iter->nlink;
250+ do {
251+ if (iter->nlink < nlink) {
252+ nlink = iter->nlink;
253+ best = iter;
254+ }
255+ iter = iter->next;
256+ } while (iter != files);
257+
258+ best->next->prev = best->prev;
259+ best->prev->next = best->next;
260+ if (files == best)
261+ files = files->next;
262+ kill_hashfiles(files);
263+ return best;
264+}
265+
266+
7bfcb297 267+int link_by_hash(const char *fnametmp, const char *fname, struct file_struct *file)
c57f4101
WD
268+{
269+ STRUCT_STAT st;
47841496 270+ char *hashname = make_hash_name(file);
c57f4101
WD
271+ int first = 0, rc;
272+ char *linkname;
273+ long last_fnbr;
274+
a3044834 275+ if (F_LENGTH(file) == 0)
4c38ad2a 276+ return robust_rename(fnametmp, fname, NULL, 0644);
c57f4101
WD
277+
278+ if (do_stat(hashname, &st) == -1) {
279+ char *dirname;
280+
281+ /* Directory does not exist. */
282+ dirname = strdup(hashname);
283+ *strrchr(dirname,'/') = 0;
284+ if (do_mkdir(dirname, 0755) == -1 && errno != EEXIST) {
d0320a46 285+ rsyserr(FERROR, errno, "mkdir failed: %s", dirname);
c57f4101
WD
286+ free(hashname);
287+ free(dirname);
4c38ad2a 288+ return robust_rename(fnametmp, fname, NULL, 0644);
c57f4101
WD
289+ }
290+ free(dirname);
291+
292+ if (do_mkdir(hashname, 0755) == -1 && errno != EEXIST) {
d0320a46 293+ rsyserr(FERROR, errno, "mkdir failed: %s", hashname);
c57f4101 294+ free(hashname);
4c38ad2a 295+ return robust_rename(fnametmp, fname, NULL, 0644);
c57f4101
WD
296+ }
297+
298+ first = 1;
299+ asprintf(&linkname,"%s/0",hashname);
300+ rprintf(FINFO, "(1) linkname = %s\n", linkname);
c57f4101
WD
301+ } else {
302+ struct hashfile_struct *hashfiles, *hashfile;
c57f4101
WD
303+
304+ if (do_stat(fnametmp,&st) == -1) {
d0320a46 305+ rsyserr(FERROR, errno, "stat failed: %s", fname);
c57f4101
WD
306+ return -1;
307+ }
308+ hashfiles = find_hashfiles(hashname, st.st_size, &last_fnbr);
309+
310+ if (hashfiles == NULL) {
311+ first = 1;
312+ asprintf(&linkname,"%s/0",hashname);
313+ rprintf(FINFO, "(2) linkname = %s\n", linkname);
314+ } else {
47841496 315+ int fd;
c57f4101
WD
316+ /* Search for one identical to us. */
317+ if ((fd = open(fnametmp,O_RDONLY|O_BINARY)) == -1) {
d0320a46 318+ rsyserr(FERROR, errno, "open failed: %s", fnametmp);
c57f4101
WD
319+ kill_hashfiles(hashfiles);
320+ return -1;
321+ }
322+ hashfile = compare_hashfiles(fd, hashfiles);
323+ hashfiles = NULL;
47841496 324+ close(fd);
c57f4101
WD
325+
326+ if (hashfile) {
327+ first = 0;
328+ linkname = strdup(hashfile->name);
329+ rprintf(FINFO, "(3) linkname = %s\n", linkname);
330+ kill_hashfile(hashfile);
331+ } else {
332+ first = 1;
333+ asprintf(&linkname, "%s/%ld", hashname,
334+ last_fnbr + 1);
335+ rprintf(FINFO, "(4) linkname = %s\n", linkname);
336+ }
337+ }
338+ }
339+
340+ if (!first) {
341+ rprintf(FINFO, "link-by-hash (existing): \"%s\" -> %s\n",
342+ linkname, full_fname(fname));
cad12f62 343+ robust_unlink(fname);
c57f4101
WD
344+ rc = do_link(linkname, fname);
345+ if (rc == -1) {
346+ if (errno == EMLINK) {
347+ first = 1;
348+ free(linkname);
349+ asprintf(&linkname,"%s/%ld",hashname,
350+ last_fnbr + 1);
351+ rprintf(FINFO, "(5) linkname = %s\n", linkname);
352+ rprintf(FINFO,"link-by-hash: max link count exceeded, starting new file \"%s\".\n", linkname);
353+ } else {
fe6407b5
WD
354+ rsyserr(FERROR, errno, "link \"%s\" -> \"%s\"",
355+ linkname, full_fname(fname));
4c38ad2a 356+ rc = robust_rename(fnametmp, fname, NULL, 0644);
c57f4101
WD
357+ }
358+ } else {
359+ do_unlink(fnametmp);
360+ }
361+ }
362+
363+ if (first) {
364+ rprintf(FINFO, "link-by-hash (new): %s -> \"%s\"\n",
365+ full_fname(fname),linkname);
366+
4c38ad2a 367+ rc = robust_rename(fnametmp, fname, NULL, 0644);
c57f4101 368+ if (rc != 0) {
fe6407b5
WD
369+ rsyserr(FERROR, errno, "rename \"%s\" -> \"%s\"",
370+ full_fname(fnametmp), full_fname(fname));
c57f4101
WD
371+ }
372+ rc = do_link(fname,linkname);
373+ if (rc != 0) {
fe6407b5
WD
374+ rsyserr(FERROR, errno, "link \"%s\" -> \"%s\"",
375+ full_fname(fname), linkname);
c57f4101
WD
376+ }
377+ }
378+
379+ free(linkname);
380+ free(hashname);
381+ return rc;
382+}
c57f4101 383+#endif
9a7eef96
WD
384--- old/options.c
385+++ new/options.c
99397a25 386@@ -154,6 +154,7 @@ char *backup_suffix = NULL;
e0e47893
WD
387 char *tmpdir = NULL;
388 char *partial_dir = NULL;
389 char *basis_dir[MAX_BASIS_DIRS+1];
c57f4101 390+char *link_by_hash_dir = NULL;
e0e47893
WD
391 char *config_file = NULL;
392 char *shell_cmd = NULL;
ff318e90 393 char *logfile_name = NULL;
99397a25 394@@ -386,6 +387,7 @@ void usage(enum logcode F)
c57f4101 395 rprintf(F," --compare-dest=DIR also compare destination files relative to DIR\n");
6ba1be7d 396 rprintf(F," --copy-dest=DIR ... and include copies of unchanged files\n");
0808daa5 397 rprintf(F," --link-dest=DIR hardlink to files in DIR when unchanged\n");
b78a6aba
WD
398+ rprintf(F," --link-by-hash=DIR create hardlinks by hash into DIR\n");
399 rprintf(F," -z, --compress compress file data during the transfer\n");
610969d1 400 rprintf(F," --compress-level=NUM explicitly set compression level\n");
5ba66156 401 rprintf(F," --skip-compress=LIST skip compressing files with a suffix in LIST\n");
99397a25 402@@ -438,7 +440,7 @@ enum {OPT_VERSION = 1000, OPT_DAEMON, OP
93ca4d27 403 OPT_FILTER, OPT_COMPARE_DEST, OPT_COPY_DEST, OPT_LINK_DEST, OPT_HELP,
0ca6aebe 404 OPT_INCLUDE, OPT_INCLUDE_FROM, OPT_MODIFY_WINDOW, OPT_MIN_SIZE, OPT_CHMOD,
5398d042 405 OPT_READ_BATCH, OPT_WRITE_BATCH, OPT_ONLY_WRITE_BATCH, OPT_MAX_SIZE,
5ba66156
WD
406- OPT_NO_D, OPT_APPEND,
407+ OPT_NO_D, OPT_APPEND, OPT_LINK_BY_HASH,
0ca6aebe 408 OPT_SERVER, OPT_REFUSED_BASE = 9000};
c57f4101 409
70c5d149 410 static struct poptOption long_options[] = {
7bfcb297 411@@ -561,6 +563,7 @@ static struct poptOption long_options[]
0808daa5 412 {"compare-dest", 0, POPT_ARG_STRING, 0, OPT_COMPARE_DEST, 0, 0 },
6ba1be7d 413 {"copy-dest", 0, POPT_ARG_STRING, 0, OPT_COPY_DEST, 0, 0 },
0808daa5 414 {"link-dest", 0, POPT_ARG_STRING, 0, OPT_LINK_DEST, 0, 0 },
5388f859 415+ {"link-by-hash", 0, POPT_ARG_STRING, 0, OPT_LINK_BY_HASH, 0, 0},
09fb8f03 416 {"fuzzy", 'y', POPT_ARG_NONE, &fuzzy_basis, 0, 0, 0 },
610969d1 417 {"compress", 'z', POPT_ARG_NONE, 0, 'z', 0, 0 },
5ba66156 418 {"no-compress", 0, POPT_ARG_VAL, &do_compression, 0, 0, 0 },
99397a25 419@@ -1221,6 +1224,21 @@ int parse_arguments(int *argc_p, const c
5795bf59 420 return 0;
ffc18846
WD
421 #endif
422
c57f4101 423+ case OPT_LINK_BY_HASH:
96148342 424+#ifdef HAVE_LINK
d0320a46
WD
425+ arg = poptGetOptArg(pc);
426+ if (sanitize_paths)
de565f59 427+ arg = sanitize_path(NULL, arg, NULL, 0, NULL);
d0320a46 428+ link_by_hash_dir = (char *)arg;
c57f4101
WD
429+ break;
430+#else
431+ snprintf(err_buf, sizeof err_buf,
432+ "hard links are not supported on this %s\n",
433+ am_server ? "server" : "client");
434+ rprintf(FERROR, "ERROR: %s", err_buf);
435+ return 0;
436+#endif
437+
438 default:
439 /* A large opt value means that set_refuse_options()
27a7053c 440 * turned this option off. */
99397a25 441@@ -1963,6 +1981,11 @@ void server_options(char **args, int *ar
5ba66156
WD
442 } else if (inplace)
443 args[ac++] = "--inplace";
7b675ff5 444
c57f4101
WD
445+ if (link_by_hash_dir && am_sender) {
446+ args[ac++] = "--link-by-hash";
447+ args[ac++] = link_by_hash_dir;
7b675ff5
WD
448+ }
449+
def2ace9
WD
450 if (files_from && (!am_sender || filesfrom_host)) {
451 if (filesfrom_host) {
7b675ff5 452 args[ac++] = "--files-from";
9a7eef96
WD
453--- old/receiver.c
454+++ new/receiver.c
99397a25
WD
455@@ -162,12 +162,14 @@ int open_tmpfile(char *fnametmp, const c
456 }
c57f4101 457
dc3ae351 458 static int receive_data(int f_in, char *fname_r, int fd_r, OFF_T size_r,
87a38eea 459- const char *fname, int fd, OFF_T total_size)
a3044834
WD
460+ const char *fname, int fd, OFF_T total_size,
461+ const char *md4)
c57f4101 462 {
87a38eea
WD
463 static char file_sum1[MAX_DIGEST_LEN];
464 static char file_sum2[MAX_DIGEST_LEN];
dc3ae351 465 struct map_struct *mapbuf;
c57f4101 466 struct sum_struct sum;
87a38eea
WD
467+ md_context mdfour_data;
468 int32 len, sum_len;
c57f4101
WD
469 OFF_T offset = 0;
470 OFF_T offset2;
99397a25 471@@ -187,6 +189,9 @@ static int receive_data(int f_in, char *
dc3ae351
WD
472 } else
473 mapbuf = NULL;
7b675ff5 474
c57f4101
WD
475+ if (md4)
476+ mdfour_begin(&mdfour_data);
7b675ff5
WD
477+
478 sum_init(checksum_seed);
c57f4101 479
fc068916 480 if (append_mode > 0) {
99397a25 481@@ -231,6 +236,8 @@ static int receive_data(int f_in, char *
c57f4101
WD
482 cleanup_got_literal = 1;
483
2c2d83dc 484 sum_update(data, i);
c57f4101 485+ if (md4)
4c38ad2a 486+ mdfour_update(&mdfour_data, (uchar*)data, i);
c57f4101 487
afbebe13
WD
488 if (fd != -1 && write_file(fd,data,i) != i)
489 goto report_write_error;
99397a25 490@@ -257,6 +264,8 @@ static int receive_data(int f_in, char *
c57f4101
WD
491
492 see_token(map, len);
2c2d83dc 493 sum_update(map, len);
c57f4101 494+ if (md4)
4c38ad2a 495+ mdfour_update(&mdfour_data, (uchar*)map, len);
c57f4101
WD
496 }
497
de565f59 498 if (updating_basis) {
99397a25 499@@ -299,6 +308,8 @@ static int receive_data(int f_in, char *
c57f4101
WD
500 }
501
87a38eea 502 sum_len = sum_end(file_sum1);
c57f4101 503+ if (md4)
87a38eea 504+ mdfour_result(&mdfour_data, (uchar*)md4);
c57f4101 505
dc3ae351
WD
506 if (mapbuf)
507 unmap_file(mapbuf);
99397a25 508@@ -314,7 +325,7 @@ static int receive_data(int f_in, char *
5823d322
WD
509
510 static void discard_receive_data(int f_in, OFF_T length)
511 {
dc3ae351
WD
512- receive_data(f_in, NULL, -1, 0, NULL, -1, length);
513+ receive_data(f_in, NULL, -1, 0, NULL, -1, length, NULL);
5823d322
WD
514 }
515
fc068916 516 static void handle_delayed_updates(char *local_name)
99397a25 517@@ -667,7 +678,7 @@ int recv_files(int f_in, char *local_nam
a3044834
WD
518
519 /* recv file data */
520 recv_ok = receive_data(f_in, fnamecmp, fd1, st.st_size,
521- fname, fd2, F_LENGTH(file));
522+ fname, fd2, F_LENGTH(file), F_SUM(file));
523
524 log_item(log_code, file, &initial_stats, iflags, NULL);
525
9a7eef96
WD
526--- old/rsync.c
527+++ new/rsync.c
99397a25 528@@ -48,6 +48,7 @@ extern int inplace;
ffc18846 529 extern int flist_eof;
52f25864 530 extern int keep_dirlinks;
c57f4101 531 extern int make_backups;
c968d24c 532+extern char *link_by_hash_dir;
fc068916 533 extern struct file_list *cur_flist, *first_flist, *dir_flist;
c769ea2c 534 extern struct chmod_mode_struct *daemon_chmod_modes;
5ba66156 535 #ifdef ICONV_OPTION
99397a25 536@@ -530,8 +531,15 @@ void finish_transfer(const char *fname,
93ca4d27
WD
537 /* move tmp file over real file */
538 if (verbose > 2)
539 rprintf(FINFO, "renaming %s to %s\n", fnametmp, fname);
4a65fe72
WD
540- ret = robust_rename(fnametmp, fname, partialptr,
541- file->mode & INITACCESSPERMS);
96148342 542+#ifdef HAVE_LINK
2eb075b2 543+ if (link_by_hash_dir)
7b675ff5 544+ ret = link_by_hash(fnametmp, fname, file);
2eb075b2 545+ else
c57f4101 546+#endif
4a65fe72
WD
547+ {
548+ ret = robust_rename(fnametmp, fname, partialptr,
549+ file->mode & INITACCESSPERMS);
550+ }
54691942 551 if (ret < 0) {
fe6407b5 552 rsyserr(FERROR, errno, "%s %s -> \"%s\"",
93ca4d27 553 ret == -2 ? "copy" : "rename",
9a7eef96
WD
554--- old/rsync.h
555+++ new/rsync.h
99397a25 556@@ -807,6 +807,14 @@ struct stats {
c57f4101
WD
557 int current_file_index;
558 };
559
560+struct hashfile_struct {
561+ struct hashfile_struct *next;
562+ struct hashfile_struct *prev;
563+ char *name;
564+ int fd;
565+ uint32 nlink;
566+};
567+
4a65fe72 568 struct chmod_mode_struct;
c57f4101 569
ffc18846 570 #define EMPTY_ITEM_LIST {NULL, 0, 0}
9a7eef96
WD
571--- old/rsync.yo
572+++ new/rsync.yo
99397a25 573@@ -387,6 +387,7 @@ to the detailed description below for a
79f132a1 574 --compare-dest=DIR also compare received files relative to DIR
6ba1be7d 575 --copy-dest=DIR ... and include copies of unchanged files
79f132a1 576 --link-dest=DIR hardlink to files in DIR when unchanged
b78a6aba
WD
577+ --link-by-hash=DIR create hardlinks by hash into DIR
578 -z, --compress compress file data during the transfer
610969d1 579 --compress-level=NUM explicitly set compression level
5ba66156 580 --skip-compress=LIST skip compressing files with suffix in LIST