2 * Routines to support hard-linking.
4 * Copyright (C) 1996 Andrew Tridgell
5 * Copyright (C) 1996 Paul Mackerras
6 * Copyright (C) 2002 Martin Pool <mbp@samba.org>
7 * Copyright (C) 2004-2009 Wayne Davison
9 * This program is free software; you can redistribute it and/or modify
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.
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.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, visit the http://fsf.org website.
29 extern int inc_recurse
;
32 extern int preserve_acls
;
33 extern int preserve_xattrs
;
34 extern int make_backups
;
35 extern int protocol_version
;
36 extern int remove_source_files
;
37 extern int stdout_format_has_i
;
38 extern int maybe_ATTRS_REPORT
;
39 extern int unsort_ndx
;
40 extern char *basis_dir
[];
41 extern struct file_list
*cur_flist
;
43 #ifdef SUPPORT_HARD_LINKS
45 /* Starting with protocol 30, we use a simple hashtable on the sending side
46 * for hashing the st_dev and st_ino info. The receiving side gets told
47 * (via flags and a "group index") which items are hard-linked together, so
48 * we can avoid the pool of dev+inode data. For incremental recursion mode,
49 * the receiver will use a ndx hash to remember old pathnames. */
51 static struct hashtable
*dev_tbl
;
53 static struct hashtable
*prior_hlinks
;
55 static struct file_list
*hlink_flist
;
57 void init_hard_links(void)
59 if (am_sender
|| protocol_version
< 30)
60 dev_tbl
= hashtable_create(16, SIZEOF_INT64
== 8);
62 prior_hlinks
= hashtable_create(1024, 0);
65 struct ht_int64_node
*idev_find(int64 dev
, int64 ino
)
67 static struct ht_int64_node
*dev_node
= NULL
;
68 struct hashtable
*tbl
;
70 if (!dev_node
|| dev_node
->key
!= dev
) {
71 /* We keep a separate hash table of inodes for every device. */
72 dev_node
= hashtable_find(dev_tbl
, dev
, 1);
73 if (!(tbl
= dev_node
->data
))
74 tbl
= dev_node
->data
= hashtable_create(512, SIZEOF_INT64
== 8);
78 return hashtable_find(tbl
, ino
, 1);
81 void idev_destroy(void)
85 for (i
= 0; i
< dev_tbl
->size
; i
++) {
86 struct ht_int32_node
*node
= HT_NODE(dev_tbl
, dev_tbl
->nodes
, i
);
88 hashtable_destroy(node
->data
);
91 hashtable_destroy(dev_tbl
);
94 static int hlink_compare_gnum(int *int1
, int *int2
)
96 struct file_struct
*f1
= hlink_flist
->sorted
[*int1
];
97 struct file_struct
*f2
= hlink_flist
->sorted
[*int2
];
98 int32 gnum1
= F_HL_GNUM(f1
);
99 int32 gnum2
= F_HL_GNUM(f2
);
102 return gnum1
> gnum2
? 1 : -1;
104 return *int1
> *int2
? 1 : -1;
107 static void match_gnums(int32
*ndx_list
, int ndx_count
)
110 struct file_struct
*file
, *file_next
;
111 struct ht_int32_node
*node
= NULL
;
112 int32 gnum
, gnum_next
;
114 qsort(ndx_list
, ndx_count
, sizeof ndx_list
[0],
115 (int (*)()) hlink_compare_gnum
);
117 for (from
= 0; from
< ndx_count
; from
++) {
118 file
= hlink_flist
->sorted
[ndx_list
[from
]];
119 gnum
= F_HL_GNUM(file
);
121 node
= hashtable_find(prior_hlinks
, gnum
, 1);
123 if (!(node
->data
= new_array0(char, 5)))
124 out_of_memory("match_gnums");
125 assert(gnum
>= hlink_flist
->ndx_start
);
126 file
->flags
|= FLAG_HLINK_FIRST
;
128 } else if (CVAL(node
->data
, 0) == 0) {
129 struct file_list
*flist
;
130 prev
= IVAL(node
->data
, 1);
131 flist
= flist_for_ndx(prev
, NULL
);
133 flist
->files
[prev
- flist
->ndx_start
]->flags
&= ~FLAG_HLINK_LAST
;
135 /* We skipped all prior files in this
136 * group, so mark this as a "first". */
137 file
->flags
|= FLAG_HLINK_FIRST
;
143 file
->flags
|= FLAG_HLINK_FIRST
;
146 for ( ; from
< ndx_count
-1; file
= file_next
, gnum
= gnum_next
, from
++) { /*SHARED ITERATOR*/
147 file_next
= hlink_flist
->sorted
[ndx_list
[from
+1]];
148 gnum_next
= F_HL_GNUM(file_next
);
149 if (gnum
!= gnum_next
)
151 F_HL_PREV(file
) = prev
;
152 /* The linked list uses over-the-wire ndx values. */
156 prev
= ndx_list
[from
] + hlink_flist
->ndx_start
;
158 if (prev
< 0 && !inc_recurse
) {
159 /* Disable hard-link bit and set DONE so that
160 * HLINK_BUMP()-dependent values are unaffected. */
161 file
->flags
&= ~(FLAG_HLINKED
| FLAG_HLINK_FIRST
);
162 file
->flags
|= FLAG_HLINK_DONE
;
166 file
->flags
|= FLAG_HLINK_LAST
;
167 F_HL_PREV(file
) = prev
;
168 if (inc_recurse
&& CVAL(node
->data
, 0) == 0) {
172 prev
= ndx_list
[from
] + hlink_flist
->ndx_start
;
173 SIVAL(node
->data
, 1, prev
);
178 /* Analyze the hard-links in the file-list by creating a list of all the
179 * items that have hlink data, sorting them, and matching up identical
180 * values into clusters. These will be a single linked list from last
181 * to first when we're done. */
182 void match_hard_links(struct file_list
*flist
)
184 if (!list_only
&& flist
->used
) {
185 int i
, ndx_count
= 0;
188 if (!(ndx_list
= new_array(int32
, flist
->used
)))
189 out_of_memory("match_hard_links");
191 for (i
= 0; i
< flist
->used
; i
++) {
192 if (F_IS_HLINKED(flist
->sorted
[i
]))
193 ndx_list
[ndx_count
++] = i
;
199 match_gnums(ndx_list
, ndx_count
);
203 if (protocol_version
< 30)
207 static int maybe_hard_link(struct file_struct
*file
, int ndx
,
208 const char *fname
, int statret
, stat_x
*sxp
,
209 const char *oldname
, STRUCT_STAT
*old_stp
,
210 const char *realname
, int itemizing
, enum logcode code
)
213 if (sxp
->st
.st_dev
== old_stp
->st_dev
214 && sxp
->st
.st_ino
== old_stp
->st_ino
) {
216 itemize(fname
, file
, ndx
, statret
, sxp
,
217 ITEM_LOCAL_CHANGE
| ITEM_XNAME_FOLLOWS
,
220 if (verbose
> 1 && maybe_ATTRS_REPORT
)
221 rprintf(FCLIENT
, "%s is uptodate\n", fname
);
222 file
->flags
|= FLAG_HLINK_DONE
;
225 if (make_backups
> 0) {
226 if (!make_backup(fname
))
228 } else if (robust_unlink(fname
)) {
229 rsyserr(FERROR_XFER
, errno
, "unlink %s failed",
235 if (hard_link_one(file
, fname
, oldname
, 0)) {
237 itemize(fname
, file
, ndx
, statret
, sxp
,
238 ITEM_LOCAL_CHANGE
| ITEM_XNAME_FOLLOWS
, 0,
241 if (code
!= FNONE
&& verbose
)
242 rprintf(code
, "%s => %s\n", fname
, realname
);
248 /* Figure out if a prior entry is still there or if we just have a
249 * cached name for it. */
250 static char *check_prior(struct file_struct
*file
, int gnum
,
251 int *prev_ndx_p
, struct file_list
**flist_p
)
253 struct file_struct
*fp
;
254 struct ht_int32_node
*node
;
255 int prev_ndx
= F_HL_PREV(file
);
258 struct file_list
*flist
;
260 || (flist
= flist_for_ndx(prev_ndx
, NULL
)) == NULL
)
262 fp
= flist
->files
[prev_ndx
- flist
->ndx_start
];
263 if (!(fp
->flags
& FLAG_SKIP_HLINK
)) {
264 *prev_ndx_p
= prev_ndx
;
268 F_HL_PREV(file
) = prev_ndx
= F_HL_PREV(fp
);
272 && (node
= hashtable_find(prior_hlinks
, gnum
, 0)) != NULL
) {
273 assert(node
->data
!= NULL
);
274 if (CVAL(node
->data
, 0) != 0) {
279 /* The prior file must have been skipped. */
280 F_HL_PREV(file
) = -1;
288 /* Only called if FLAG_HLINKED is set and FLAG_HLINK_FIRST is not. Returns:
289 * 0 = process the file, 1 = skip the file, -1 = error occurred. */
290 int hard_link_check(struct file_struct
*file
, int ndx
, const char *fname
,
291 int statret
, stat_x
*sxp
, int itemizing
,
295 char namebuf
[MAXPATHLEN
], altbuf
[MAXPATHLEN
];
296 char *realname
, *prev_name
;
297 struct file_list
*flist
;
298 int gnum
= inc_recurse
? F_HL_GNUM(file
) : -1;
301 prev_name
= realname
= check_prior(file
, gnum
, &prev_ndx
, &flist
);
304 struct file_struct
*prev_file
;
307 /* The previous file was skipped, so this one is
308 * treated as if it were the first in its group. */
312 prev_file
= flist
->files
[prev_ndx
- flist
->ndx_start
];
314 /* Is the previous link not complete yet? */
315 if (!(prev_file
->flags
& FLAG_HLINK_DONE
)) {
316 /* Is the previous link being transferred? */
317 if (prev_file
->flags
& FLAG_FILE_SENT
) {
318 /* Add ourselves to the list of files that will
319 * be updated when the transfer completes, and
320 * mark ourself as waiting for the transfer. */
321 F_HL_PREV(file
) = F_HL_PREV(prev_file
);
322 F_HL_PREV(prev_file
) = ndx
;
323 file
->flags
|= FLAG_FILE_SENT
;
324 cur_flist
->in_progress
++;
330 /* There is a finished file to link with! */
331 if (!(prev_file
->flags
& FLAG_HLINK_FIRST
)) {
332 /* The previous previous is FIRST when prev is not. */
333 prev_name
= realname
= check_prior(prev_file
, gnum
, &prev_ndx
, &flist
);
334 assert(prev_name
!= NULL
|| flist
!= NULL
);
335 /* Update our previous pointer to point to the FIRST. */
336 F_HL_PREV(file
) = prev_ndx
;
342 prev_file
= flist
->files
[prev_ndx
- flist
->ndx_start
];
343 /* F_HL_PREV() is alt_dest value when DONE && FIRST. */
344 alt_dest
= F_HL_PREV(prev_file
);
346 if (alt_dest
>= 0 && dry_run
) {
347 pathjoin(namebuf
, MAXPATHLEN
, basis_dir
[alt_dest
],
348 f_name(prev_file
, NULL
));
350 realname
= f_name(prev_file
, altbuf
);
352 prev_name
= f_name(prev_file
, namebuf
);
353 realname
= prev_name
;
358 if (link_stat(prev_name
, &prev_st
, 0) < 0) {
359 rsyserr(FERROR_XFER
, errno
, "stat %s failed",
360 full_fname(prev_name
));
364 if (statret
< 0 && basis_dir
[0] != NULL
) {
365 /* If we match an alt-dest item, we don't output this as a change. */
366 char cmpbuf
[MAXPATHLEN
];
370 alt_sx
.acc_acl
= alt_sx
.def_acl
= NULL
;
372 #ifdef SUPPORT_XATTRS
376 pathjoin(cmpbuf
, MAXPATHLEN
, basis_dir
[j
], fname
);
377 if (link_stat(cmpbuf
, &alt_sx
.st
, 0) < 0)
380 if (prev_st
.st_dev
!= alt_sx
.st
.st_dev
381 || prev_st
.st_ino
!= alt_sx
.st
.st_ino
)
384 if (stdout_format_has_i
== 0
385 || (verbose
< 2 && stdout_format_has_i
< 2)) {
388 if (verbose
> 1 && maybe_ATTRS_REPORT
)
389 rprintf(FCLIENT
, "%s is uptodate\n", fname
);
393 if (!unchanged_file(cmpbuf
, file
, &alt_sx
.st
))
396 if (unchanged_attrs(cmpbuf
, file
, &alt_sx
))
398 } while (basis_dir
[++j
] != NULL
);
402 if (preserve_acls
&& !S_ISLNK(file
->mode
)) {
404 if (!ACL_READY(alt_sx
))
405 get_acl(cmpbuf
, sxp
);
407 sxp
->acc_acl
= alt_sx
.acc_acl
;
408 sxp
->def_acl
= alt_sx
.def_acl
;
409 alt_sx
.acc_acl
= alt_sx
.def_acl
= NULL
;
413 #ifdef SUPPORT_XATTRS
414 if (preserve_xattrs
) {
416 if (!XATTR_READY(alt_sx
))
417 get_xattr(cmpbuf
, sxp
);
419 sxp
->xattr
= alt_sx
.xattr
;
429 #ifdef SUPPORT_XATTRS
436 if (maybe_hard_link(file
, ndx
, fname
, statret
, sxp
, prev_name
, &prev_st
,
437 realname
, itemizing
, code
) < 0)
440 if (remove_source_files
== 1 && do_xfers
)
441 send_msg_int(MSG_SUCCESS
, ndx
);
446 int hard_link_one(struct file_struct
*file
, const char *fname
,
447 const char *oldname
, int terse
)
449 if (do_link(oldname
, fname
) < 0) {
457 rsyserr(code
, errno
, "link %s => %s failed",
458 full_fname(fname
), oldname
);
462 file
->flags
|= FLAG_HLINK_DONE
;
467 void finish_hard_link(struct file_struct
*file
, const char *fname
, int fin_ndx
,
468 STRUCT_STAT
*stp
, int itemizing
, enum logcode code
,
473 char prev_name
[MAXPATHLEN
], alt_name
[MAXPATHLEN
];
474 const char *our_name
;
475 struct file_list
*flist
;
476 int prev_statret
, ndx
, prev_ndx
= F_HL_PREV(file
);
478 if (stp
== NULL
&& prev_ndx
>= 0) {
479 if (link_stat(fname
, &st
, 0) < 0) {
480 rsyserr(FERROR_XFER
, errno
, "stat %s failed",
487 /* FIRST combined with DONE means we were the first to get done. */
488 file
->flags
|= FLAG_HLINK_FIRST
| FLAG_HLINK_DONE
;
489 F_HL_PREV(file
) = alt_dest
;
490 if (alt_dest
>= 0 && dry_run
) {
491 pathjoin(alt_name
, MAXPATHLEN
, basis_dir
[alt_dest
],
498 prev_sx
.acc_acl
= prev_sx
.def_acl
= NULL
;
500 #ifdef SUPPORT_XATTRS
501 prev_sx
.xattr
= NULL
;
504 while ((ndx
= prev_ndx
) >= 0) {
506 flist
= flist_for_ndx(ndx
, "finish_hard_link");
507 file
= flist
->files
[ndx
- flist
->ndx_start
];
508 file
->flags
= (file
->flags
& ~FLAG_HLINK_FIRST
) | FLAG_HLINK_DONE
;
509 prev_ndx
= F_HL_PREV(file
);
510 F_HL_PREV(file
) = fin_ndx
;
511 prev_statret
= link_stat(f_name(file
, prev_name
), &prev_sx
.st
, 0);
512 val
= maybe_hard_link(file
, ndx
, prev_name
, prev_statret
, &prev_sx
,
513 our_name
, stp
, fname
, itemizing
, code
);
514 flist
->in_progress
--;
519 #ifdef SUPPORT_XATTRS
521 free_xattr(&prev_sx
);
525 if (remove_source_files
== 1 && do_xfers
)
526 send_msg_int(MSG_SUCCESS
, ndx
);
530 int gnum
= F_HL_GNUM(file
);
531 struct ht_int32_node
*node
= hashtable_find(prior_hlinks
, gnum
, 0);
532 assert(node
!= NULL
&& node
->data
!= NULL
);
533 assert(CVAL(node
->data
, 0) == 0);
535 if (!(node
->data
= strdup(our_name
)))
536 out_of_memory("finish_hard_link");
540 int skip_hard_link(struct file_struct
*file
, struct file_list
**flist_p
)
542 struct file_list
*flist
;
545 file
->flags
|= FLAG_SKIP_HLINK
;
546 if (!(file
->flags
& FLAG_HLINK_LAST
))
549 check_prior(file
, F_HL_GNUM(file
), &prev_ndx
, &flist
);
551 file
= flist
->files
[prev_ndx
- flist
->ndx_start
];
552 if (file
->flags
& (FLAG_HLINK_DONE
|FLAG_FILE_SENT
))
554 file
->flags
|= FLAG_HLINK_LAST
;