2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #if SUPPORT_HARD_LINKS
26 static int hlink_compare(struct file_struct
*f1
,struct file_struct
*f2
)
28 if (!S_ISREG(f1
->mode
) && !S_ISREG(f2
->mode
)) return 0;
29 if (!S_ISREG(f1
->mode
)) return -1;
30 if (!S_ISREG(f2
->mode
)) return 1;
32 if (f1
->dev
!= f2
->dev
)
33 return (int)(f1
->dev
>f2
->dev
?1:-1);
35 if (f1
->inode
!= f2
->inode
)
36 return (int)(f1
->inode
>f2
->inode
?1:-1);
38 return file_compare(&f1
,&f2
);
42 static struct file_struct
*hlink_list
;
43 static int hlink_count
;
46 void init_hard_links(struct file_list
*flist
)
48 #if SUPPORT_HARD_LINKS
50 if (flist
->count
< 2) return;
52 if (hlink_list
) free(hlink_list
);
55 (struct file_struct
*)malloc(sizeof(hlink_list
[0])*flist
->count
)))
56 out_of_memory("init_hard_links");
58 for (i
= 0; i
< flist
->count
; i
++)
59 memcpy(&hlink_list
[i
], flist
->files
[i
], sizeof(hlink_list
[0]));
61 qsort(hlink_list
,flist
->count
,
62 sizeof(hlink_list
[0]),
63 (int (*)())hlink_compare
);
65 hlink_count
=flist
->count
;
69 /* check if a file should be skipped because it is the same as an
71 int check_hard_link(struct file_struct
*file
)
73 #if SUPPORT_HARD_LINKS
74 int low
=0,high
=hlink_count
-1;
77 if (!hlink_list
|| !S_ISREG(file
->mode
)) return 0;
80 int mid
= (low
+high
)/2;
81 ret
= hlink_compare(&hlink_list
[mid
],file
);
92 if (hlink_compare(&hlink_list
[low
],file
) != 0) return 0;
95 S_ISREG(hlink_list
[low
-1].mode
) &&
96 file
->dev
== hlink_list
[low
-1].dev
&&
97 file
->inode
== hlink_list
[low
-1].inode
)
105 #if SUPPORT_HARD_LINKS
106 static void hard_link_one(int i
)
110 if (link_stat(f_name(&hlink_list
[i
-1]),&st1
) != 0) return;
112 if (link_stat(f_name(&hlink_list
[i
]),&st2
) != 0) {
113 if (do_link(f_name(&hlink_list
[i
-1]),f_name(&hlink_list
[i
])) != 0) {
115 rprintf(FINFO
,"link %s => %s : %s\n",
116 f_name(&hlink_list
[i
]),
117 f_name(&hlink_list
[i
-1]),strerror(errno
));
121 if (st2
.st_dev
== st1
.st_dev
&& st2
.st_ino
== st1
.st_ino
) return;
123 if (robust_unlink(f_name(&hlink_list
[i
])) != 0 ||
124 do_link(f_name(&hlink_list
[i
-1]),f_name(&hlink_list
[i
])) != 0) {
126 rprintf(FINFO
,"link %s => %s : %s\n",
127 f_name(&hlink_list
[i
]),
128 f_name(&hlink_list
[i
-1]),strerror(errno
));
133 rprintf(FINFO
,"%s => %s\n",
134 f_name(&hlink_list
[i
]),f_name(&hlink_list
[i
-1]));
138 /* create any hard links in the flist */
139 void do_hard_links(struct file_list
*flist
)
141 #if SUPPORT_HARD_LINKS
144 if (!hlink_list
) return;
146 for (i
=1;i
<hlink_count
;i
++) {
147 if (S_ISREG(hlink_list
[i
].mode
) &&
148 S_ISREG(hlink_list
[i
-1].mode
) &&
149 hlink_list
[i
].basename
&& hlink_list
[i
-1].basename
&&
150 hlink_list
[i
].dev
== hlink_list
[i
-1].dev
&&
151 hlink_list
[i
].inode
== hlink_list
[i
-1].inode
) {