A few more improvements and a mention of the latest fix.
[rsync/rsync.git] / hlink.c
CommitLineData
6aae748e 1/*
0f78b815
WD
2 * Routines to support hard-linking.
3 *
4 * Copyright (C) 1996 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2002 Martin Pool <mbp@samba.org>
d3d07a5e 7 * Copyright (C) 2004-2008 Wayne Davison
0f78b815
WD
8 *
9 * This program is free software; you can redistribute it and/or modify
8e41b68e
WD
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
0f78b815
WD
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
e7c67065 19 * You should have received a copy of the GNU General Public License along
4fd842f9 20 * with this program; if not, visit the http://fsf.org website.
0f78b815 21 */
dc5ddbcc
AT
22
23#include "rsync.h"
24
9a52223b 25extern int verbose;
82ad07c4 26extern int dry_run;
eb67a690 27extern int list_only;
d4d6646a
WD
28extern int am_sender;
29extern int inc_recurse;
841d9436 30extern int do_xfers;
541b23d1 31extern int link_dest;
1c3344a1 32extern int preserve_acls;
417c99f6 33extern int make_backups;
c905bf37 34extern int protocol_version;
47c11975 35extern int remove_source_files;
20f90d5e 36extern int stdout_format_has_i;
aadc84d3 37extern int maybe_ATTRS_REPORT;
f7a76b9c 38extern int unsort_ndx;
541b23d1 39extern char *basis_dir[];
9bed8554 40extern struct file_list *cur_flist;
dc5ddbcc 41
4f5b0756 42#ifdef SUPPORT_HARD_LINKS
9f2e3c3f 43
c905bf37
WD
44/* Starting with protocol 30, we use a simple hashtable on the sending side
45 * for hashing the st_dev and st_ino info. The receiving side gets told
46 * (via flags and a "group index") which items are hard-linked together, so
d4d6646a
WD
47 * we can avoid the pool of dev+inode data. For incremental recursion mode,
48 * the receiver will use a ndx hash to remember old pathnames. */
c905bf37 49
d4d6646a
WD
50static struct hashtable *dev_tbl;
51
52static struct hashtable *prior_hlinks;
53
54static struct file_list *hlink_flist;
9f2e3c3f 55
aadc84d3
WD
56void init_hard_links(void)
57{
d4d6646a
WD
58 if (am_sender || protocol_version < 30)
59 dev_tbl = hashtable_create(16, SIZEOF_INT64 == 8);
60 else if (inc_recurse)
61 prior_hlinks = hashtable_create(1024, 0);
c905bf37
WD
62}
63
62606570 64struct ht_int64_node *idev_find(int64 dev, int64 ino)
c905bf37 65{
62606570
WD
66 static struct ht_int64_node *dev_node = NULL;
67 struct hashtable *tbl;
c905bf37
WD
68
69 if (!dev_node || dev_node->key != dev) {
70 /* We keep a separate hash table of inodes for every device. */
62606570 71 dev_node = hashtable_find(dev_tbl, dev, 1);
c905bf37 72 if (!(tbl = dev_node->data))
62606570 73 tbl = dev_node->data = hashtable_create(512, SIZEOF_INT64 == 8);
c905bf37
WD
74 } else
75 tbl = dev_node->data;
76
62606570 77 return hashtable_find(tbl, ino, 1);
c905bf37
WD
78}
79
80void idev_destroy(void)
81{
82 int i;
83
84 for (i = 0; i < dev_tbl->size; i++) {
62606570
WD
85 struct ht_int32_node *node = HT_NODE(dev_tbl, dev_tbl->nodes, i);
86 if (node->data)
87 hashtable_destroy(node->data);
c905bf37
WD
88 }
89
62606570 90 hashtable_destroy(dev_tbl);
c905bf37
WD
91}
92
c905bf37 93static int hlink_compare_gnum(int *int1, int *int2)
1d5cda22 94{
d4d6646a
WD
95 struct file_struct *f1 = hlink_flist->sorted[*int1];
96 struct file_struct *f2 = hlink_flist->sorted[*int2];
719985cb
WD
97 int32 gnum1 = F_HL_GNUM(f1);
98 int32 gnum2 = F_HL_GNUM(f2);
1d5cda22 99
c905bf37
WD
100 if (gnum1 != gnum2)
101 return gnum1 > gnum2 ? 1 : -1;
9935066b 102
c905bf37
WD
103 return *int1 > *int2 ? 1 : -1;
104}
9935066b 105
c905bf37
WD
106static void match_gnums(int32 *ndx_list, int ndx_count)
107{
108 int32 from, prev;
109 struct file_struct *file, *file_next;
d4d6646a 110 struct ht_int32_node *node = NULL;
719985cb 111 int32 gnum, gnum_next;
c905bf37
WD
112
113 qsort(ndx_list, ndx_count, sizeof ndx_list[0],
114 (int (*)()) hlink_compare_gnum);
115
116 for (from = 0; from < ndx_count; from++) {
d4d6646a
WD
117 file = hlink_flist->sorted[ndx_list[from]];
118 gnum = F_HL_GNUM(file);
119 if (inc_recurse) {
120 node = hashtable_find(prior_hlinks, gnum, 1);
121 if (!node->data) {
7ec8baaa
WD
122 if (!(node->data = new_array0(char, 5)))
123 out_of_memory("match_gnums");
d4d6646a 124 assert(gnum >= hlink_flist->ndx_start);
c980db5f
WD
125 file->flags |= FLAG_HLINK_FIRST;
126 prev = -1;
127 } else if (CVAL(node->data, 0) == 0) {
128 struct file_list *flist;
c980db5f 129 prev = IVAL(node->data, 1);
9bed8554 130 flist = flist_for_ndx(prev, NULL);
c9b62cf3
WD
131 if (flist)
132 flist->files[prev - flist->ndx_start]->flags &= ~FLAG_HLINK_LAST;
133 else {
134 /* We skipped all prior files in this
135 * group, so mark this as a "first". */
136 file->flags |= FLAG_HLINK_FIRST;
137 prev = -1;
138 }
c980db5f
WD
139 } else
140 prev = -1;
141 } else {
d4d6646a
WD
142 file->flags |= FLAG_HLINK_FIRST;
143 prev = -1;
c980db5f 144 }
d4d6646a
WD
145 for ( ; from < ndx_count-1; file = file_next, gnum = gnum_next, from++) { /*SHARED ITERATOR*/
146 file_next = hlink_flist->sorted[ndx_list[from+1]];
c905bf37
WD
147 gnum_next = F_HL_GNUM(file_next);
148 if (gnum != gnum_next)
149 break;
c905bf37 150 F_HL_PREV(file) = prev;
5288be3a 151 /* The linked list uses over-the-wire ndx values. */
f7a76b9c 152 if (unsort_ndx)
332cf6df
WD
153 prev = F_NDX(file);
154 else
d4d6646a 155 prev = ndx_list[from] + hlink_flist->ndx_start;
c905bf37 156 }
d4d6646a 157 if (prev < 0 && !inc_recurse) {
c980db5f
WD
158 /* Disable hard-link bit and set DONE so that
159 * HLINK_BUMP()-dependent values are unaffected. */
d4d6646a 160 file->flags &= ~(FLAG_HLINKED | FLAG_HLINK_FIRST);
0eeb9f54 161 file->flags |= FLAG_HLINK_DONE;
d4d6646a
WD
162 continue;
163 }
164
165 file->flags |= FLAG_HLINK_LAST;
166 F_HL_PREV(file) = prev;
167 if (inc_recurse && CVAL(node->data, 0) == 0) {
f7a76b9c 168 if (unsort_ndx)
d4d6646a
WD
169 prev = F_NDX(file);
170 else
d4d6646a
WD
171 prev = ndx_list[from] + hlink_flist->ndx_start;
172 SIVAL(node->data, 1, prev);
c905bf37
WD
173 }
174 }
175}
176
177/* Analyze the hard-links in the file-list by creating a list of all the
178 * items that have hlink data, sorting them, and matching up identical
179 * values into clusters. These will be a single linked list from last
180 * to first when we're done. */
d4d6646a 181void match_hard_links(struct file_list *flist)
c905bf37 182{
209371b8 183 if (!list_only && flist->used) {
eb67a690
WD
184 int i, ndx_count = 0;
185 int32 *ndx_list;
c905bf37 186
eb67a690
WD
187 if (!(ndx_list = new_array(int32, flist->used)))
188 out_of_memory("match_hard_links");
c905bf37 189
eb67a690
WD
190 for (i = 0; i < flist->used; i++) {
191 if (F_IS_HLINKED(flist->sorted[i]))
192 ndx_list[ndx_count++] = i;
193 }
1d5cda22 194
eb67a690 195 hlink_flist = flist;
d4d6646a 196
eb67a690
WD
197 if (ndx_count)
198 match_gnums(ndx_list, ndx_count);
007996b4 199
eb67a690
WD
200 free(ndx_list);
201 }
007996b4
WD
202 if (protocol_version < 30)
203 idev_destroy();
dc5ddbcc
AT
204}
205
3cd5301f 206static int maybe_hard_link(struct file_struct *file, int ndx,
13710874 207 const char *fname, int statret, stat_x *sxp,
aadc84d3
WD
208 const char *oldname, STRUCT_STAT *old_stp,
209 const char *realname, int itemizing, enum logcode code)
3cd5301f
WD
210{
211 if (statret == 0) {
1c3344a1
WD
212 if (sxp->st.st_dev == old_stp->st_dev
213 && sxp->st.st_ino == old_stp->st_ino) {
3cd5301f 214 if (itemizing) {
1c3344a1 215 itemize(fname, file, ndx, statret, sxp,
3cd5301f
WD
216 ITEM_LOCAL_CHANGE | ITEM_XNAME_FOLLOWS,
217 0, "");
218 }
aadc84d3
WD
219 if (verbose > 1 && maybe_ATTRS_REPORT)
220 rprintf(FCLIENT, "%s is uptodate\n", fname);
221 file->flags |= FLAG_HLINK_DONE;
3cd5301f
WD
222 return 0;
223 }
3ac830b9 224 if (make_backups > 0) {
3cd5301f
WD
225 if (!make_backup(fname))
226 return -1;
227 } else if (robust_unlink(fname)) {
3f0211b6 228 rsyserr(FERROR_XFER, errno, "unlink %s failed",
3cd5301f
WD
229 full_fname(fname));
230 return -1;
231 }
232 }
aadc84d3
WD
233
234 if (hard_link_one(file, fname, oldname, 0)) {
235 if (itemizing) {
1c3344a1 236 itemize(fname, file, ndx, statret, sxp,
aadc84d3
WD
237 ITEM_LOCAL_CHANGE | ITEM_XNAME_FOLLOWS, 0,
238 realname);
239 }
240 if (code != FNONE && verbose)
241 rprintf(code, "%s => %s\n", fname, realname);
242 return 0;
243 }
244 return -1;
3cd5301f 245}
3cd5301f 246
d4d6646a 247/* Figure out if a prior entry is still there or if we just have a
c9b62cf3
WD
248 * cached name for it. */
249static char *check_prior(struct file_struct *file, int gnum,
250 int *prev_ndx_p, struct file_list **flist_p)
d4d6646a 251{
c9b62cf3 252 struct file_struct *fp;
d4d6646a 253 struct ht_int32_node *node;
c9b62cf3 254 int prev_ndx = F_HL_PREV(file);
d4d6646a 255
c9b62cf3 256 while (1) {
487cb526
WD
257 struct file_list *flist;
258 if (prev_ndx < 0
9bed8554 259 || (flist = flist_for_ndx(prev_ndx, NULL)) == NULL)
c9b62cf3
WD
260 break;
261 fp = flist->files[prev_ndx - flist->ndx_start];
262 if (!(fp->flags & FLAG_SKIP_HLINK)) {
263 *prev_ndx_p = prev_ndx;
264 *flist_p = flist;
265 return NULL;
266 }
267 F_HL_PREV(file) = prev_ndx = F_HL_PREV(fp);
d4d6646a
WD
268 }
269
876ad10c
WD
270 if (inc_recurse
271 && (node = hashtable_find(prior_hlinks, gnum, 0)) != NULL) {
487cb526
WD
272 assert(node->data != NULL);
273 if (CVAL(node->data, 0) != 0) {
274 *prev_ndx_p = -1;
275 *flist_p = NULL;
276 return node->data;
277 }
c9b62cf3 278 /* The prior file must have been skipped. */
487cb526 279 F_HL_PREV(file) = -1;
c9b62cf3
WD
280 }
281
487cb526
WD
282 *prev_ndx_p = -1;
283 *flist_p = NULL;
284 return NULL;
d4d6646a
WD
285}
286
aadc84d3
WD
287/* Only called if FLAG_HLINKED is set and FLAG_HLINK_FIRST is not. Returns:
288 * 0 = process the file, 1 = skip the file, -1 = error occurred. */
a2ebbffc 289int hard_link_check(struct file_struct *file, int ndx, const char *fname,
13710874 290 int statret, stat_x *sxp, int itemizing,
aadc84d3 291 enum logcode code)
d38fc305 292{
aadc84d3 293 STRUCT_STAT prev_st;
d4d6646a
WD
294 char namebuf[MAXPATHLEN], altbuf[MAXPATHLEN];
295 char *realname, *prev_name;
c980db5f
WD
296 struct file_list *flist;
297 int gnum = inc_recurse ? F_HL_GNUM(file) : -1;
c9b62cf3 298 int prev_ndx;
d4d6646a 299
c9b62cf3 300 prev_name = realname = check_prior(file, gnum, &prev_ndx, &flist);
d4d6646a
WD
301
302 if (!prev_name) {
c9b62cf3
WD
303 struct file_struct *prev_file;
304
305 if (!flist) {
306 /* The previous file was skipped, so this one is
307 * treated as if it were the first in its group. */
308 return 0;
309 }
310
311 prev_file = flist->files[prev_ndx - flist->ndx_start];
d4d6646a 312
5288be3a 313 /* Is the previous link not complete yet? */
d4d6646a
WD
314 if (!(prev_file->flags & FLAG_HLINK_DONE)) {
315 /* Is the previous link being transferred? */
316 if (prev_file->flags & FLAG_FILE_SENT) {
5288be3a
WD
317 /* Add ourselves to the list of files that will
318 * be updated when the transfer completes, and
319 * mark ourself as waiting for the transfer. */
d4d6646a
WD
320 F_HL_PREV(file) = F_HL_PREV(prev_file);
321 F_HL_PREV(prev_file) = ndx;
322 file->flags |= FLAG_FILE_SENT;
323 cur_flist->in_progress++;
324 return 1;
325 }
326 return 0;
6cbde57d 327 }
aadc84d3 328
d4d6646a
WD
329 /* There is a finished file to link with! */
330 if (!(prev_file->flags & FLAG_HLINK_FIRST)) {
c980db5f 331 /* The previous previous is FIRST when prev is not. */
c9b62cf3
WD
332 prev_name = realname = check_prior(prev_file, gnum, &prev_ndx, &flist);
333 assert(prev_name != NULL || flist != NULL);
c980db5f 334 /* Update our previous pointer to point to the FIRST. */
d4d6646a
WD
335 F_HL_PREV(file) = prev_ndx;
336 }
c980db5f
WD
337
338 if (!prev_name) {
339 int alt_dest;
340
341 prev_file = flist->files[prev_ndx - flist->ndx_start];
342 /* F_HL_PREV() is alt_dest value when DONE && FIRST. */
343 alt_dest = F_HL_PREV(prev_file);
344
345 if (alt_dest >= 0 && dry_run) {
346 pathjoin(namebuf, MAXPATHLEN, basis_dir[alt_dest],
347 f_name(prev_file, NULL));
348 prev_name = namebuf;
349 realname = f_name(prev_file, altbuf);
350 } else {
351 prev_name = f_name(prev_file, namebuf);
352 realname = prev_name;
353 }
d4d6646a 354 }
aadc84d3
WD
355 }
356
357 if (link_stat(prev_name, &prev_st, 0) < 0) {
3f0211b6 358 rsyserr(FERROR_XFER, errno, "stat %s failed",
aadc84d3
WD
359 full_fname(prev_name));
360 return -1;
361 }
362
363 if (statret < 0 && basis_dir[0] != NULL) {
364 /* If we match an alt-dest item, we don't output this as a change. */
365 char cmpbuf[MAXPATHLEN];
13710874 366 stat_x alt_sx;
aadc84d3 367 int j = 0;
1c3344a1
WD
368#ifdef SUPPORT_ACLS
369 alt_sx.acc_acl = alt_sx.def_acl = NULL;
370#endif
aadc84d3
WD
371 do {
372 pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
1c3344a1 373 if (link_stat(cmpbuf, &alt_sx.st, 0) < 0)
aadc84d3
WD
374 continue;
375 if (link_dest) {
1c3344a1
WD
376 if (prev_st.st_dev != alt_sx.st.st_dev
377 || prev_st.st_ino != alt_sx.st.st_ino)
aadc84d3
WD
378 continue;
379 statret = 1;
1aa343e8
WD
380 if (stdout_format_has_i == 0
381 || (verbose < 2 && stdout_format_has_i < 2)) {
382 itemizing = 0;
aadc84d3
WD
383 code = FNONE;
384 if (verbose > 1 && maybe_ATTRS_REPORT)
385 rprintf(FCLIENT, "%s is uptodate\n", fname);
386 }
387 break;
541b23d1 388 }
1c3344a1 389 if (!unchanged_file(cmpbuf, file, &alt_sx.st))
aadc84d3
WD
390 continue;
391 statret = 1;
1c3344a1 392 if (unchanged_attrs(cmpbuf, file, &alt_sx))
aadc84d3
WD
393 break;
394 } while (basis_dir[++j] != NULL);
1c3344a1
WD
395 if (statret == 1) {
396 sxp->st = alt_sx.st;
397#ifdef SUPPORT_ACLS
398 if (preserve_acls && !S_ISLNK(file->mode)) {
399 if (!ACL_READY(*sxp))
400 get_acl(cmpbuf, sxp);
401 else {
402 sxp->acc_acl = alt_sx.acc_acl;
403 sxp->def_acl = alt_sx.def_acl;
404 }
405 }
406#endif
407 }
408#ifdef SUPPORT_ACLS
409 else if (preserve_acls)
410 free_acl(&alt_sx);
411#endif
d38fc305 412 }
aadc84d3 413
1c3344a1 414 if (maybe_hard_link(file, ndx, fname, statret, sxp, prev_name, &prev_st,
aadc84d3
WD
415 realname, itemizing, code) < 0)
416 return -1;
417
418 if (remove_source_files == 1 && do_xfers)
419 send_msg_int(MSG_SUCCESS, ndx);
420
421 return 1;
d38fc305
WD
422}
423
aadc84d3
WD
424int hard_link_one(struct file_struct *file, const char *fname,
425 const char *oldname, int terse)
a16bbc39 426{
aadc84d3
WD
427 if (do_link(oldname, fname) < 0) {
428 enum logcode code;
3cd5301f
WD
429 if (terse) {
430 if (!verbose)
e96c7777 431 return 0;
3cd5301f
WD
432 code = FINFO;
433 } else
3f0211b6 434 code = FERROR_XFER;
3cd5301f 435 rsyserr(code, errno, "link %s => %s failed",
aadc84d3
WD
436 full_fname(fname), oldname);
437 return 0;
9f2e3c3f
WD
438 }
439
aadc84d3
WD
440 file->flags |= FLAG_HLINK_DONE;
441
442 return 1;
a16bbc39 443}
fae5bb31 444
c980db5f 445void finish_hard_link(struct file_struct *file, const char *fname, int fin_ndx,
aadc84d3
WD
446 STRUCT_STAT *stp, int itemizing, enum logcode code,
447 int alt_dest)
dc5ddbcc 448{
13710874 449 stat_x prev_sx;
1c3344a1 450 STRUCT_STAT st;
fdf74bed 451 char prev_name[MAXPATHLEN], alt_name[MAXPATHLEN];
aadc84d3 452 const char *our_name;
d4d6646a 453 struct file_list *flist;
aadc84d3
WD
454 int prev_statret, ndx, prev_ndx = F_HL_PREV(file);
455
456 if (stp == NULL && prev_ndx >= 0) {
457 if (link_stat(fname, &st, 0) < 0) {
3f0211b6 458 rsyserr(FERROR_XFER, errno, "stat %s failed",
aadc84d3
WD
459 full_fname(fname));
460 return;
9f2e3c3f 461 }
aadc84d3 462 stp = &st;
9f2e3c3f 463 }
aadc84d3
WD
464
465 /* FIRST combined with DONE means we were the first to get done. */
466 file->flags |= FLAG_HLINK_FIRST | FLAG_HLINK_DONE;
467 F_HL_PREV(file) = alt_dest;
468 if (alt_dest >= 0 && dry_run) {
469 pathjoin(alt_name, MAXPATHLEN, basis_dir[alt_dest],
470 f_name(file, NULL));
471 our_name = alt_name;
472 } else
473 our_name = fname;
474
1c3344a1
WD
475#ifdef SUPPORT_ACLS
476 prev_sx.acc_acl = prev_sx.def_acl = NULL;
477#endif
478
aadc84d3 479 while ((ndx = prev_ndx) >= 0) {
1c3344a1 480 int val;
9bed8554 481 flist = flist_for_ndx(ndx, "finish_hard_link");
d4d6646a 482 file = flist->files[ndx - flist->ndx_start];
aadc84d3
WD
483 file->flags = (file->flags & ~FLAG_HLINK_FIRST) | FLAG_HLINK_DONE;
484 prev_ndx = F_HL_PREV(file);
c980db5f 485 F_HL_PREV(file) = fin_ndx;
fdf74bed 486 prev_statret = link_stat(f_name(file, prev_name), &prev_sx.st, 0);
1c3344a1
WD
487 val = maybe_hard_link(file, ndx, prev_name, prev_statret, &prev_sx,
488 our_name, stp, fname, itemizing, code);
d4d6646a 489 flist->in_progress--;
1c3344a1
WD
490#ifdef SUPPORT_ACLS
491 if (preserve_acls)
492 free_acl(&prev_sx);
493#endif
494 if (val < 0)
1d5cda22 495 continue;
663b2857
WD
496 if (remove_source_files == 1 && do_xfers)
497 send_msg_int(MSG_SUCCESS, ndx);
aadc84d3 498 }
d4d6646a
WD
499
500 if (inc_recurse) {
501 int gnum = F_HL_GNUM(file);
502 struct ht_int32_node *node = hashtable_find(prior_hlinks, gnum, 0);
503 assert(node != NULL && node->data != NULL);
504 assert(CVAL(node->data, 0) == 0);
505 free(node->data);
506 if (!(node->data = strdup(our_name)))
507 out_of_memory("finish_hard_link");
508 }
dc5ddbcc 509}
c9b62cf3
WD
510
511int skip_hard_link(struct file_struct *file, struct file_list **flist_p)
512{
513 struct file_list *flist;
514 int prev_ndx;
515
516 file->flags |= FLAG_SKIP_HLINK;
517 if (!(file->flags & FLAG_HLINK_LAST))
518 return -1;
519
520 check_prior(file, F_HL_GNUM(file), &prev_ndx, &flist);
521 if (prev_ndx >= 0) {
522 file = flist->files[prev_ndx - flist->ndx_start];
523 if (file->flags & (FLAG_HLINK_DONE|FLAG_FILE_SENT))
524 return -1;
525 file->flags |= FLAG_HLINK_LAST;
526 *flist_p = flist;
527 }
528
529 return prev_ndx;
530}
a2ebbffc 531#endif