1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
|
/*
* A program to compare directory trees
*
* There are two modes:
* - Normal mode for any filesystems. We compare file names, contents,
* sizes, modes, access times, and hard links.
* - NTFS mode for NTFS-3G mounted volumes. In this mode we need to
* compare various NTFS-specific attributes such as named data streams
* and DOS names.
*
* Both modes compare hard link groups between the two directory trees. If two
* files are hard linked together in one directory tree, exactly the same two
* files are expected to be hard linked together in the other directory tree.
*/
#include "config.h"
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <dirent.h>
#include <inttypes.h>
#include <unistd.h>
#include <stdbool.h>
#include <sys/stat.h>
#include <sys/types.h>
#ifdef __linux__
# include <sys/xattr.h>
#endif
#include <assert.h>
#ifndef ENOATTR
# define ENOATTR ENODATA
#endif
typedef uint64_t u64;
#if 0
# define DEBUG(format, ...) \
({ \
int __errno_save = errno; \
fprintf(stdout, "[%s %d] %s(): " format, \
__FILE__, __LINE__, __func__, ## __VA_ARGS__); \
putchar('\n'); \
fflush(stdout); \
errno = __errno_save; \
})
#else
#define DEBUG(format, ...)
#endif
static bool ntfs_mode = false;
static void difference(const char *format, ...)
{
va_list va;
va_start(va, format);
fflush(stdout);
fputs("tree-cmp: ", stderr);
vfprintf(stderr, format, va);
putc('\n', stderr);
fflush(stderr);
va_end(va);
exit(1);
}
static void error(const char *format, ...)
{
va_list va;
int err = errno;
va_start(va, format);
fflush(stdout);
fputs("tree-cmp: ", stderr);
vfprintf(stderr, format, va);
fprintf(stderr, ": %s\n", strerror(err));
va_end(va);
exit(2);
}
/* This is just a binary tree that maps inode numbers in one NTFS tree to inode
* numbers in the other NTFS tree. This is so we can tell if the hard link
* groups are the same between the two NTFS trees. */
struct node {
u64 ino_from;
u64 ino_to;
struct node *left;
struct node *right;
};
static struct node *tree = NULL;
static const char *root1, *root2;
static u64 do_lookup_ino(struct node *tree, u64 ino_from)
{
if (!tree)
return -1;
if (ino_from == tree->ino_from)
return tree->ino_to;
else if (ino_from < tree->ino_from)
return do_lookup_ino(tree->left, ino_from);
else
return do_lookup_ino(tree->right, ino_from);
}
static void do_insert(struct node *tree, struct node *node)
{
if (node->ino_from < tree->ino_from) {
if (tree->left)
return do_insert(tree->left, node);
else
tree->left = node;
} else {
if (tree->right)
return do_insert(tree->right, node);
else
tree->right = node;
}
}
static u64 lookup_ino(u64 ino_from)
{
return do_lookup_ino(tree, ino_from);
}
static void insert_ino(u64 ino_from, u64 ino_to)
{
struct node *node = malloc(sizeof(struct node));
if (!node)
error("Out of memory");
node->ino_from = ino_from;
node->ino_to = ino_to;
node->left = NULL;
node->right = NULL;
if (!tree)
tree = node;
else
do_insert(tree, node);
}
/* Compares the "normal" contents of two files of size @size. */
static void cmp(const char *file1, const char *file2, size_t size)
{
int fd1, fd2;
char buf1[4096], buf2[4096];
ssize_t to_read = 4096;
fd1 = open(file1, O_RDONLY);
if (fd1 == -1)
error("Could not open `%s'", file1);
fd2 = open(file2, O_RDONLY);
if (fd2 == -1)
error("Could not open `%s'", file2);
for (; size; size -= to_read) {
if (to_read > size)
to_read = size;
if (read(fd1, buf1, to_read) != to_read)
error("Error reading `%s'", file1);
if (read(fd2, buf2, to_read) != to_read)
error("Error reading `%s'", file2);
if (memcmp(buf1, buf2, to_read))
difference("File contents of `%s' and `%s' differ",
file1, file2);
}
close(fd1);
close(fd2);
}
#ifdef __linux__
/* Compares an extended attribute of the files. */
static void cmp_xattr(const char *file1, const char *file2,
const char *xattr_name, ssize_t max_size,
bool missingok)
{
ssize_t len1, len2;
char *buf1, *buf2;
DEBUG("cmp xattr \"%s\" of files %s, %s", xattr_name, file1, file2);
len1 = lgetxattr(file1, xattr_name, NULL, 0);
if (len1 == -1) {
if (errno == ENOATTR) {
if (missingok) {
errno = 0;
lgetxattr(file2, xattr_name, NULL, 0);
if (errno == ENOATTR)
return;
else
difference("xattr `%s' exists on file `%s' "
"but not on file `%s'",
xattr_name, file1, file2);
} else {
error("Could not find attribute `%s' of `%s'",
xattr_name, file1);
}
} else {
error("Could not read xattr `%s' of `%s'",
xattr_name, file1);
}
}
buf1 = malloc(len1);
buf2 = malloc(len1);
if (!buf1 || !buf2)
error("Out of memory");
if (lgetxattr(file1, xattr_name, buf1, len1) != len1)
error("Could not read xattr `%s' of `%s'",
xattr_name, file1);
len2 = lgetxattr(file2, xattr_name, buf2, len1);
if (len2 == len1) {
if (memcmp(buf1, buf2,
(max_size == 0 || len1 <= max_size) ? len1 : max_size))
{
difference("xattr `%s' of files `%s' and `%s' differs",
xattr_name, file1, file2);
}
} else {
if (len2 == -1) {
error("Could not read xattr `%s' from `%s'",
xattr_name, file2);
}
if (len1 != len2)
difference("xattr `%s' of files `%s' and `%s' differs",
xattr_name, file1, file2);
}
free(buf1);
free(buf2);
}
/* Compares all alternate data streams of the files */
static void cmp_ads(const char *file1, const char *file2)
{
char _list1[256], _list2[sizeof(_list1)];
char *list1 = _list1, *list2 = _list2;
char *pe, *p;
ssize_t len1, len2, tmp;
errno = 0;
len1 = llistxattr(file1, list1, sizeof(_list1));
if (len1 == -1) {
if (errno != ERANGE || ((len1 = llistxattr(file1, NULL, 0) == -1)))
error("Could not get xattr list of `%s'", file1);
list1 = malloc(len1);
list2 = malloc(len1);
if (!list1 || !list2)
error("Out of memory");
tmp = llistxattr(file1, list1, len1);
if (tmp == -1)
error("Could not get xattr list of `%s'", file1);
if (tmp != len1)
error("xattr list of `%s' changed as we read it",
file1);
}
errno = 0;
len2 = llistxattr(file2, list2, len1);
if (len1 == -1) {
if (errno == ERANGE)
difference("`%s' and `%s' do not have the same "
"xattr list", file1, file2);
else
error("Could not get xattr list of `%s'", file2);
}
if (len1 != len2 || memcmp(list1, list2, len1))
difference("`%s' and `%s' do not have the same "
"xattr list", file1, file2);
p = list1;
pe = list1 + len1 - 1;
while (p < pe) {
cmp_xattr(file1, file2, p, 0, false);
p += strlen(p) + 1;
}
if (list1 != _list1) {
free(list1);
free(list2);
}
}
#endif /* __linux__ */
/* Compares special NTFS data of the files, as accessed through extended
* attributes. */
static void special_cmp(const char *file1, const char *file2)
{
#ifdef __linux__
cmp_xattr(file1, file2, "system.ntfs_acl", 0, false);
cmp_xattr(file1, file2, "system.ntfs_attrib", 0, false);
cmp_xattr(file1, file2, "system.ntfs_dos_name", 0, true);
cmp_xattr(file1, file2, "system.ntfs_object_id", 64, true);
cmp_xattr(file1, file2, "system.ntfs_reparse_data", 0, true);
cmp_xattr(file1, file2, "system.ntfs_times", 16, false);
cmp_ads(file1, file2);
#else
fprintf(stderr, "tree-cmp: Warning: cannot compare xattrs of `%s' and `%s'\n",
file1, file2);
fprintf(stderr, " Extended attributes are not supported on this platform.\n");
#endif
}
/* Recursively compares directory tree rooted at file1 to directory tree rooted at file2 */
static void tree_cmp(char file1[], int file1_len, char file2[], int file2_len)
{
struct stat st1, st2;
u64 ino_from, ino_to;
DEBUG("cmp files %s, %s", file1, file2);
if (lstat(file1, &st1))
error("Failed to stat `%s'", file1);
if (lstat(file2, &st2))
error("Failed to stat `%s'", file2);
ino_from = st1.st_ino;
ino_to = lookup_ino(ino_from);
if (ino_to == -1)
insert_ino(ino_from, st2.st_ino);
else if (ino_to != st2.st_ino)
difference("Inode number on `%s' is wrong", file2);
if ((st1.st_mode & ~(S_IRWXU | S_IRWXG | S_IRWXO)) !=
(st2.st_mode & ~(S_IRWXU | S_IRWXG | S_IRWXO)))
difference("Modes of `%s' and `%s' are not the same",
file1, file2);
if (S_ISREG(st1.st_mode) && st1.st_size != st2.st_size)
difference("Sizes of `%s' and `%s' are not the same",
file1, file2);
#if 0
if (ntfs_mode && st1.st_atime != st2.st_atime)
difference("Access times of `%s' (%x) and `%s' (%x) are "
"not the same",
file1, st1.st_atime, file2, st2.st_atime);
#endif
if (st1.st_mtime != st2.st_mtime)
difference("Modification times of `%s' (%x) and `%s' (%x) are "
"not the same",
file1, st1.st_mtime, file2, st2.st_mtime);
if ((ntfs_mode || S_ISREG(st1.st_mode)) && st1.st_nlink != st2.st_nlink)
difference("Link count of `%s' (%u) and `%s' (%u) "
"are not the same",
file1, st1.st_nlink, file2, st2.st_nlink);
if (ntfs_mode && strcmp(file1, root1) != 0)
special_cmp(file1, file2);
if (S_ISREG(st1.st_mode))
cmp(file1, file2, st1.st_size);
else if (S_ISDIR(st1.st_mode)) {
int ret1, ret2;
int i;
struct dirent **namelist1, **namelist2;
const char *dir1 = file1, *dir2 = file2;
ret1 = scandir(dir1, &namelist1, NULL, alphasort);
if (ret1 == -1)
error("Error scanning directory `%s'", dir1);
ret2 = scandir(dir2, &namelist2, NULL, alphasort);
if (ret2 == -1)
error("Error scanning directory `%s'", dir2);
if (ret1 != ret2)
difference("Directories `%s' and `%s' do not contain "
"the same number of entries", dir1, dir2);
file1[file1_len] = '/';
file2[file2_len] = '/';
for (i = 0; i < ret1; i++) {
int name_len;
const char *name;
if (strcmp(namelist1[i]->d_name, namelist2[i]->d_name)) {
difference("Files `%s' and `%s' in directories "
"`%s' and `%s', respectively, do "
"not have the same name",
namelist1[i]->d_name,
namelist2[i]->d_name,
dir1, dir2);
}
name = namelist1[i]->d_name;
name_len = strlen(name);
if (!(name[0] == '.' &&
(name[1] == '\0' ||
(name[1] == '.' && name[2] == '\0'))))
{
memcpy(file1 + file1_len + 1, name, name_len + 1);
memcpy(file2 + file2_len + 1, name, name_len + 1);
tree_cmp(file1, file1_len + 1 + name_len,
file2, file2_len + 1 + name_len);
}
free(namelist1[i]);
free(namelist2[i]);
}
free(namelist1);
free(namelist2);
file1[file1_len] = '\0';
file2[file2_len] = '\0';
} else if (!ntfs_mode && S_ISLNK(st1.st_mode)) {
char buf1[4096], buf2[sizeof(buf1)];
ssize_t ret1, ret2;
ret1 = readlink(file1, buf1, sizeof(buf1));
if (ret1 == -1)
error("Failed to get symlink target of `%s'", file1);
ret2 = readlink(file2, buf2, sizeof(buf2));
if (ret2 == -1)
error("Failed to get symlink target of `%s'", file2);
if (ret1 != ret2 || memcmp(buf1, buf2, ret1))
error("Symlink targets of `%s' and `%s' differ",
file1, file2);
}
}
int main(int argc, char **argv)
{
if (argc != 3 && argc != 4) {
fprintf(stderr, "Usage: %s DIR1 DIR2 [NTFS]", argv[0]);
return 2;
}
if (argc > 3 && strcmp(argv[3], "NTFS") == 0)
ntfs_mode = true;
char dir1[4096];
char dir2[4096];
strcpy(dir1, argv[1]);
strcpy(dir2, argv[2]);
root1 = argv[1];
root2 = argv[2];
tree_cmp(dir1, strlen(dir1), dir2, strlen(dir2));
return 0;
}
|