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