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 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532
|
/* hardlink.c - Link multiple identical files together
*
* Copyright (C) 2008 - 2014 Julian Andres Klode <jak@jak-linux.org>
* Copyright (C) 2021 Karel Zak <kzak@redhat.com>
*
* SPDX-License-Identifier: MIT
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#define _POSIX_C_SOURCE 200112L /* POSIX functions */
#define _XOPEN_SOURCE 600 /* nftw() */
#include <sys/types.h> /* stat */
#include <sys/stat.h> /* stat */
#include <sys/time.h> /* getrlimit, getrusage */
#include <sys/resource.h> /* getrlimit, getrusage */
#include <fcntl.h> /* posix_fadvise */
#include <ftw.h> /* ftw */
#include <search.h> /* tsearch() and friends */
#include <signal.h> /* SIG*, sigaction */
#include <getopt.h> /* getopt_long() */
#include <ctype.h> /* tolower() */
#include <sys/ioctl.h>
#if defined(HAVE_LINUX_FIEMAP_H) && defined(HAVE_SYS_VFS_H)
# include <linux/fs.h>
# include <linux/fiemap.h>
# ifdef FICLONE
# define USE_REFLINK 1
# endif
#endif
#if defined(FTW_ACTIONRETVAL) && defined(FTW_SKIP_SUBTREE)
# define USE_SKIP_SUBTREE 1
#endif
#include "nls.h"
#include "c.h"
#include "xalloc.h"
#include "strutils.h"
#include "monotonic.h"
#include "optutils.h"
#include "fileeq.h"
#ifdef USE_REFLINK
# include "statfs_magic.h"
#endif
#include <regex.h> /* regcomp(), regexec() */
#if defined(HAVE_SYS_XATTR_H) && defined(HAVE_LLISTXATTR) && defined(HAVE_LGETXATTR)
# include <sys/xattr.h>
# define USE_XATTR 1
#endif
static int quiet; /* don't print anything */
static int rootbasesz; /* size of the directory for nftw() */
static unsigned short curr_tree; /* seq. number of the current top-level directory */
#ifdef USE_REFLINK
enum {
REFLINK_NEVER = 0,
REFLINK_AUTO,
REFLINK_ALWAYS
};
static int reflink_mode = REFLINK_NEVER;
static int reflinks_skip;
#endif
static struct ul_fileeq fileeq;
/**
* struct file - Information about a file
* @st: The stat buffer associated with the file
* @next: Next file with the same size
* @basename: The offset off the basename in the filename
* @path: The path of the file
*
* This contains all information we need about a file.
*/
struct file {
struct stat st;
struct ul_fileeq_data data;
struct file *next;
struct link {
struct link *next;
int basename;
int dirname;
#if __STDC_VERSION__ >= 199901L
char path[];
#elif __GNUC__
char path[0];
#else
char path[1];
#endif
} *links;
unsigned short tree_seqnum;
};
/**
* enum log_level - Logging levels
* @JLOG_SUMMARY: Default log level
* @JLOG_INFO: Verbose logging (verbose == 1)
* @JLOG_VERBOSE1: Verbosity 2
* @JLOG_VERBOSE2: Verbosity 3
*/
enum log_level {
JLOG_SUMMARY,
JLOG_INFO,
JLOG_VERBOSE1,
JLOG_VERBOSE2
};
/**
* struct statistic - Statistics about the file
* @started: Whether we are post command-line processing
* @files: The number of files worked on
* @linked: The number of files replaced by a hardlink to a master
* @xattr_comparisons: The number of extended attribute comparisons
* @comparisons: The number of comparisons
* @saved: The (exaggerated) amount of space saved
* @start_time: The time we started at
*/
static struct statistics {
int started;
size_t files;
size_t linked;
size_t xattr_comparisons;
size_t comparisons;
size_t ignored_reflinks;
double saved;
struct timeval start_time;
} stats;
struct hdl_regex {
regex_t re; /* POSIX compatible regex handler */
struct hdl_regex *next;
};
/**
* struct options - Processed command-line options
* @include: A linked list of regular expressions for the --include option
* @exclude: A linked list of regular expressions for the --exclude option
* @exclude_subtree: A linked list of regular expressions for the --exclude-subtree options
* @verbosity: The verbosity. Should be one of #enum log_level
* @respect_mode: Whether to respect file modes (default = TRUE)
* @respect_owner: Whether to respect file owners (uid, gid; default = TRUE)
* @respect_name: Whether to respect file names (default = FALSE)
* @respect_time: Whether to respect file modification times (default = TRUE)
* @respect_xattrs: Whether to respect extended attributes (default = FALSE)
* @maximise: Chose the file with the highest link count as master
* @minimise: Chose the file with the lowest link count as master
* @keep_oldest: Choose the file with oldest timestamp as master (default = FALSE)
* @prio_trees: Prioritize trees; choose the file that was found in the earliest specified tree (default = FALSE)
* @dry_run: Specifies whether hardlink should not link files (default = FALSE)
* @min_size: Minimum size of files to consider. (default = 1 byte)
* @max_size: Maximum size of files to consider, 0 means umlimited. (default = 0 byte)
*/
static struct options {
struct hdl_regex *include;
struct hdl_regex *exclude;
struct hdl_regex *exclude_subtree;
const char *method;
signed int verbosity;
bool respect_mode;
bool respect_owner;
bool respect_name;
bool respect_dir;
bool respect_time;
bool respect_xattrs;
bool maximise;
bool minimise;
bool keep_oldest;
bool prio_trees;
bool dry_run;
bool list_duplicates;
bool within_mount;
char line_delim;
uintmax_t min_size;
uintmax_t max_size;
size_t io_size;
size_t cache_size;
} opts = {
/* default setting */
#ifdef USE_FILEEQ_CRYPTOAPI
.method = "sha256",
#else
.method = "memcmp",
#endif
.respect_mode = TRUE,
.respect_owner = TRUE,
.respect_time = TRUE,
.respect_xattrs = FALSE,
.keep_oldest = FALSE,
.prio_trees = FALSE,
.line_delim = '\n',
.min_size = 1,
.cache_size = 10*1024*1024
};
/*
* files
*
* A binary tree of files, managed using tsearch(). To see which nodes
* are considered equal, see compare_nodes()
*/
static void *files;
static void *files_by_ino;
/*
* last_signal
*
* The last signal we received. We store the signal here in order to be able
* to break out of loops gracefully and to return from our nftw() handler.
*/
static volatile sig_atomic_t last_signal;
#define is_log_enabled(_level) (quiet == 0 && (_level) <= (unsigned int)opts.verbosity)
/**
* jlog - Logging for hardlink
* @level: The log level
* @format: A format string for printf()
*/
__attribute__((format(printf, 2, 3)))
static void jlog(enum log_level level, const char *format, ...)
{
va_list args;
if (!is_log_enabled(level))
return;
va_start(args, format);
vfprintf(stdout, format, args);
va_end(args);
fputc('\n', stdout);
}
/**
* CMP - Compare two numerical values, return 1, 0, or -1
* @a: First value
* @b: Second value
*
* Used to compare two integers of any size while avoiding overflow.
*/
#define CMP(a, b) ((a) > (b) ? 1 : ((a) < (b) ? -1 : 0))
/**
* register_regex - Compile and insert a regular expression into list
* @pregs: Pointer to a linked list of regular expressions
* @regex: String containing the regular expression to be compiled
*/
static void register_regex(struct hdl_regex **pregs, const char *regex)
{
struct hdl_regex *link;
int err;
link = xmalloc(sizeof(*link));
if ((err = regcomp(&link->re, regex, REG_NOSUB | REG_EXTENDED)) != 0) {
size_t size = regerror(err, &link->re, NULL, 0);
char *buf = xmalloc(size + 1);
regerror(err, &link->re, buf, size);
errx(EXIT_FAILURE, _("could not compile regular expression %s: %s"),
regex, buf);
}
link->next = *pregs; *pregs = link;
}
/**
* match_any_regex - Match against multiple regular expressions
* @pregs: A linked list of regular expressions
* @what: The string to match against
*
* Checks whether any of the regular expressions in the list matches the
* string.
*/
static int match_any_regex(struct hdl_regex *pregs, const char *what)
{
for (; pregs != NULL; pregs = pregs->next) {
if (regexec(&pregs->re, what, 0, NULL, 0) == 0)
return TRUE;
}
return FALSE;
}
/**
* compare_nodes - Node comparison function
* @_a: The first node (a #struct file)
* @_b: The second node (a #struct file)
*
* Compare the two nodes for the binary tree.
*/
static int compare_nodes(const void *_a, const void *_b)
{
const struct file *a = _a;
const struct file *b = _b;
int diff = 0;
if (diff == 0)
diff = CMP(a->st.st_dev, b->st.st_dev);
if (diff == 0)
diff = CMP(a->st.st_size, b->st.st_size);
return diff;
}
/* Compare only filenames */
static inline int filename_strcmp(const struct file *a, const struct file *b)
{
return strcmp( a->links->path + a->links->basename,
b->links->path + b->links->basename);
}
/**
* Compare only directory names (ignores root directory and basename (filename))
*
* The complete path contains three fragments:
*
* <rootdir> is specified on hardlink command line
* <dirname> is all between rootdir and filename
* <filename> is last component (aka basename)
*/
static inline int dirname_strcmp(const struct file *a, const struct file *b)
{
int diff = 0;
int asz = a->links->basename - a->links->dirname,
bsz = b->links->basename - b->links->dirname;
diff = CMP(asz, bsz);
if (diff == 0) {
const char *a_start, *b_start;
a_start = a->links->path + a->links->dirname;
b_start = b->links->path + b->links->dirname;
diff = strncmp(a_start, b_start, asz);
}
return diff;
}
/**
* compare_nodes_ino - Node comparison function
* @_a: The first node (a #struct file)
* @_b: The second node (a #struct file)
*
* Compare the two nodes for the binary tree.
*/
static int compare_nodes_ino(const void *_a, const void *_b)
{
const struct file *a = _a;
const struct file *b = _b;
int diff = 0;
if (diff == 0)
diff = CMP(a->st.st_dev, b->st.st_dev);
if (diff == 0)
diff = CMP(a->st.st_ino, b->st.st_ino);
/* If opts.respect_name is used, we will restrict a struct file to
* contain only links with the same basename to keep the rest simple.
*/
if (diff == 0 && opts.respect_name)
diff = filename_strcmp(a, b);
if (diff == 0 && opts.respect_dir)
diff = dirname_strcmp(a, b);
return diff;
}
/**
* print_stats - Print statistics to stdout
*/
static void print_stats(void)
{
struct timeval end = { 0, 0 }, delta = { 0, 0 };
char *ssz;
gettime_monotonic(&end);
timersub(&end, &stats.start_time, &delta);
jlog(JLOG_SUMMARY, "%-25s %s", _("Mode:"),
opts.dry_run ? _("dry-run") : _("real"));
jlog(JLOG_SUMMARY, "%-25s %s", _("Method:"), opts.method);
jlog(JLOG_SUMMARY, "%-25s %zu", _("Files:"), stats.files);
jlog(JLOG_SUMMARY, _("%-25s %zu files"), _("Linked:"), stats.linked);
#ifdef USE_XATTR
jlog(JLOG_SUMMARY, _("%-25s %zu xattrs"), _("Compared:"),
stats.xattr_comparisons);
#endif
jlog(JLOG_SUMMARY, _("%-25s %zu files"), _("Compared:"),
stats.comparisons);
#ifdef USE_REFLINK
if (reflinks_skip)
jlog(JLOG_SUMMARY, _("%-25s %zu files"), _("Skipped reflinks:"),
stats.ignored_reflinks);
#endif
ssz = size_to_human_string(SIZE_SUFFIX_3LETTER |
SIZE_SUFFIX_SPACE |
SIZE_DECIMAL_2DIGITS, stats.saved);
jlog(JLOG_SUMMARY, "%-25s %s", _("Saved:"), ssz);
free(ssz);
jlog(JLOG_SUMMARY, _("%-25s %"PRId64".%06"PRId64" seconds"), _("Duration:"),
(int64_t)delta.tv_sec, (int64_t)delta.tv_usec);
}
/**
* handle_interrupt - Handle a signal
*/
static void handle_interrupt(void)
{
switch (last_signal) {
case SIGUSR1:
print_stats();
putchar('\n');
break;
default:
signal(last_signal, SIG_DFL);
raise(last_signal);
break;
}
last_signal = 0;
}
#ifdef USE_XATTR
/**
* llistxattr_or_die - Wrapper for llistxattr()
*
* This does the same thing as llistxattr() except that it aborts if any error
* other than "not supported" is detected.
*/
static ssize_t llistxattr_or_die(const char *path, char *list, size_t size)
{
ssize_t len = llistxattr(path, list, size);
if (len < 0 && errno != ENOTSUP)
err(EXIT_FAILURE, _("cannot get xattr names for %s"), path);
return len;
}
/**
* lgetxattr_or_die - Wrapper for lgetxattr()
*
* This does the same thing as lgetxattr() except that it aborts upon error.
*/
static ssize_t lgetxattr_or_die(const char *path,
const char *name, void *value, size_t size)
{
ssize_t len = lgetxattr(path, name, value, size);
if (len < 0)
err(EXIT_FAILURE, _("cannot get xattr value of %s for %s"),
name, path);
return len;
}
/**
* get_xattr_name_count - Count the number of xattr names
* @names: a non-empty table of concatenated, null-terminated xattr names
* @len: the total length of the table
*
* @Returns the number of xattr names
*/
static int get_xattr_name_count(const char *const names, ssize_t len)
{
int count = 0;
const char *name;
for (name = names; name < (names + len); name += strlen(name) + 1)
count++;
return count;
}
/**
* cmp_xattr_name_ptrs - Compare two pointers to xattr names by comparing
* the names they point to.
*/
static int cmp_xattr_name_ptrs(const void *ptr1, const void *ptr2)
{
return strcmp(*(char *const *)ptr1, *(char *const *)ptr2);
}
/**
* get_sorted_xattr_name_table - Create a sorted table of xattr names.
* @names - table of concatenated, null-terminated xattr names
* @n - the number of names
*
* @Returns allocated table of pointers to the names, sorted alphabetically
*/
static const char **get_sorted_xattr_name_table(const char *names, int n)
{
const char **table = xcalloc(n, sizeof(char *));
int i;
for (i = 0; i < n; i++) {
table[i] = names;
names += strlen(names) + 1;
}
qsort(table, n, sizeof(char *), cmp_xattr_name_ptrs);
return table;
}
/**
* file_xattrs_equal - Compare the extended attributes of two files
* @a: The first file
* @b: The second file
*
* @Returns: %TRUE if and only if extended attributes are equal
*/
static int file_xattrs_equal(const struct file *a, const struct file *b)
{
ssize_t len_a;
ssize_t len_b;
char *names_a = NULL;
char *names_b = NULL;
int n_a;
int n_b;
const char **name_ptrs_a = NULL;
const char **name_ptrs_b = NULL;
void *value_a = NULL;
void *value_b = NULL;
int ret = FALSE;
int i;
assert(a->links != NULL);
assert(b->links != NULL);
jlog(JLOG_VERBOSE1, _("Comparing xattrs of %s to %s"), a->links->path,
b->links->path);
stats.xattr_comparisons++;
len_a = llistxattr_or_die(a->links->path, NULL, 0);
len_b = llistxattr_or_die(b->links->path, NULL, 0);
if (len_a <= 0 && len_b <= 0)
return TRUE; // xattrs not supported or neither file has any
if (len_a != len_b)
return FALSE; // total lengths of xattr names differ
names_a = xmalloc(len_a);
names_b = xmalloc(len_b);
len_a = llistxattr_or_die(a->links->path, names_a, len_a);
len_b = llistxattr_or_die(b->links->path, names_b, len_b);
assert((len_a > 0) && (len_a == len_b));
n_a = get_xattr_name_count(names_a, len_a);
n_b = get_xattr_name_count(names_b, len_b);
if (n_a != n_b)
goto exit; // numbers of xattrs differ
name_ptrs_a = get_sorted_xattr_name_table(names_a, n_a);
name_ptrs_b = get_sorted_xattr_name_table(names_b, n_b);
// We now have two sorted tables of xattr names.
for (i = 0; i < n_a; i++) {
handle_interrupt();
if (strcmp(name_ptrs_a[i], name_ptrs_b[i]) != 0)
goto exit; // names at same slot differ
len_a =
lgetxattr_or_die(a->links->path, name_ptrs_a[i], NULL, 0);
len_b =
lgetxattr_or_die(b->links->path, name_ptrs_b[i], NULL, 0);
if (len_a != len_b)
goto exit; // xattrs with same name, different value lengths
value_a = xmalloc(len_a);
value_b = xmalloc(len_b);
len_a = lgetxattr_or_die(a->links->path, name_ptrs_a[i],
value_a, len_a);
len_b = lgetxattr_or_die(b->links->path, name_ptrs_b[i],
value_b, len_b);
assert((len_a >= 0) && (len_a == len_b));
if (memcmp(value_a, value_b, len_a) != 0)
goto exit; // xattrs with same name, different values
free(value_a);
free(value_b);
value_a = NULL;
value_b = NULL;
}
ret = TRUE;
exit:
free(names_a);
free(names_b);
free(name_ptrs_a);
free(name_ptrs_b);
free(value_a);
free(value_b);
return ret;
}
#else /* !USE_XATTR */
static int file_xattrs_equal(const struct file *a, const struct file *b)
{
return TRUE;
}
#endif /* USE_XATTR */
/**
* file_may_link_to - Check whether a file may replace another one
* @a: The first file
* @b: The second file
*
* Check whether the two files are considered equal attributes and can be
* linked. This function does not compare content od the files!
*/
static int file_may_link_to(const struct file *a, const struct file *b)
{
return (a->st.st_size == b->st.st_size &&
a->links != NULL && b->links != NULL &&
a->st.st_dev == b->st.st_dev &&
a->st.st_ino != b->st.st_ino &&
(!opts.respect_mode || a->st.st_mode == b->st.st_mode) &&
(!opts.respect_owner || a->st.st_uid == b->st.st_uid) &&
(!opts.respect_owner || a->st.st_gid == b->st.st_gid) &&
(!opts.respect_time || a->st.st_mtime == b->st.st_mtime) &&
(!opts.respect_name || filename_strcmp(a, b) == 0) &&
(!opts.respect_dir || dirname_strcmp(a, b) == 0) &&
(!opts.respect_xattrs || file_xattrs_equal(a, b)));
}
/**
* file_compare - Compare two files to decide which should be master
* @a: The first file
* @b: The second file
*
* Check which of the files should be considered greater and thus serve
* as the master when linking (the master is the file that all equal files
* will be replaced with).
*/
static int file_compare(const struct file *a, const struct file *b)
{
int res = 0;
if (a->st.st_dev == b->st.st_dev && a->st.st_ino == b->st.st_ino)
return 0;
if (res == 0 && opts.maximise)
res = CMP(a->st.st_nlink, b->st.st_nlink);
if (res == 0 && opts.minimise)
res = CMP(b->st.st_nlink, a->st.st_nlink);
if (res == 0 && opts.prio_trees)
res = CMP(a->tree_seqnum, b->tree_seqnum);
if (res == 0)
res = opts.keep_oldest ? CMP(b->st.st_mtime, a->st.st_mtime)
: CMP(a->st.st_mtime, b->st.st_mtime);
if (res == 0)
res = CMP(b->st.st_ino, a->st.st_ino);
return res;
}
#ifdef USE_REFLINK
static inline int do_link(struct file *a, struct file *b,
const char *new_name, int reflink)
{
if (reflink) {
int dest = -1, src = -1;
dest = open(new_name, O_CREAT|O_WRONLY|O_TRUNC, 0600);
if (dest < 0)
goto fallback;
if (fchmod(dest, b->st.st_mode) != 0)
goto fallback;
if (fchown(dest, b->st.st_uid, b->st.st_gid) != 0)
goto fallback;
src = open(a->links->path, O_RDONLY);
if (src < 0)
goto fallback;
if (ioctl(dest, FICLONE, src) != 0)
goto fallback;
close(dest);
close(src);
return 0;
fallback:
if (dest >= 0) {
close(dest);
unlink(new_name);
}
if (src >= 0)
close(src);
if (reflink_mode == REFLINK_ALWAYS)
return -errno;
jlog(JLOG_VERBOSE2,_("Reflinking failed, fallback to hardlinking"));
}
return link(a->links->path, new_name);
}
#else
static inline int do_link(struct file *a,
struct file *b __attribute__((__unused__)),
const char *new_name,
int reflink __attribute__((__unused__)))
{
return link(a->links->path, new_name);
}
#endif /* USE_REFLINK */
/**
* file_link - Replace b with a link to a
* @a: The first file
* @b: The second file
*
* Link the file, replacing @b with the current one. The file is first
* linked to a temporary name, and then renamed to the name of @b, making
* the replace atomic (@b will always exist).
*/
static int file_link(struct file *a, struct file *b, int reflink)
{
file_link:
assert(a->links != NULL);
assert(b->links != NULL);
if (is_log_enabled(JLOG_INFO)) {
char *ssz = size_to_human_string(SIZE_SUFFIX_3LETTER |
SIZE_SUFFIX_SPACE |
SIZE_DECIMAL_2DIGITS, a->st.st_size);
jlog(JLOG_INFO, _("%s%sLinking %s to %s (-%s)"),
opts.dry_run ? _("[DryRun] ") : "",
reflink ? "Ref" : "",
a->links->path, b->links->path,
ssz);
free(ssz);
}
if (!opts.dry_run) {
char *new_path;
int failed = 1;
xasprintf(&new_path, "%s.hardlink-temporary", b->links->path);
if (do_link(a, b, new_path, reflink) != 0)
warn(_("cannot link %s to %s"), a->links->path, new_path);
else if (rename(new_path, b->links->path) != 0) {
warn(_("cannot rename %s to %s"), a->links->path, new_path);
unlink(new_path);
} else
failed = 0;
free(new_path);
if (failed)
return FALSE;
}
/* Update statistics */
stats.linked++;
/* Increase the link count of this file, and set stat() of other file */
a->st.st_nlink++;
b->st.st_nlink--;
if (b->st.st_nlink == 0)
stats.saved += a->st.st_size;
/* Move the link from file b to a */
{
struct link *new_link = b->links;
b->links = b->links->next;
new_link->next = a->links->next;
a->links->next = new_link;
}
/* Do it again */
if (b->links)
goto file_link;
return TRUE;
}
static int has_fpath(struct file *node, const char *path)
{
struct link *l;
for (l = node->links; l; l = l->next) {
if (strcmp(l->path, path) == 0)
return 1;
}
return 0;
}
/**
* inserter - Callback function for nftw()
* @fpath: The path of the file being visited
* @sb: The stat information of the file
* @typeflag: The type flag
* @ftwbuf: Contains current level of nesting and offset of basename
*
* Called by nftw() for the files. See the manual page for nftw() for
* further information.
*/
static int inserter(const char *fpath, const struct stat *sb,
int typeflag, struct FTW *ftwbuf)
{
struct file *fil;
struct file **node;
size_t pathlen;
int included;
int excluded;
handle_interrupt();
if (typeflag == FTW_DNR || typeflag == FTW_NS)
warn(_("cannot read %s"), fpath);
#ifdef USE_SKIP_SUBTREE
if (opts.exclude_subtree
&& typeflag == FTW_D
&& match_any_regex(opts.exclude_subtree, fpath)) {
jlog(JLOG_VERBOSE1,
_("Skipped (excluded subtree) %s"), fpath);
return FTW_SKIP_SUBTREE;
}
#endif
if (typeflag != FTW_F || !S_ISREG(sb->st_mode))
return 0;
included = match_any_regex(opts.include, fpath);
excluded = match_any_regex(opts.exclude, fpath);
if ((opts.exclude && excluded && !included) ||
(!opts.exclude && opts.include && !included)) {
jlog(JLOG_VERBOSE1,
_("Skipped (excluded) %s"), fpath);
return 0;
}
stats.files++;
if ((uintmax_t) sb->st_size < opts.min_size) {
jlog(JLOG_VERBOSE1,
_("Skipped (smaller than configured size) %s"), fpath);
return 0;
}
jlog(JLOG_VERBOSE2, " %5zu: [%" PRIu64 "/%" PRIu64 "/%zu] %s",
stats.files, sb->st_dev, sb->st_ino,
(size_t) sb->st_nlink, fpath);
if ((opts.max_size > 0) && ((uintmax_t) sb->st_size > opts.max_size)) {
jlog(JLOG_VERBOSE1,
_("Skipped (greater than configured size) %s"), fpath);
return 0;
}
pathlen = strlen(fpath) + 1;
fil = xcalloc(1, sizeof(*fil));
fil->links = xcalloc(1, sizeof(struct link) + pathlen);
fil->st = *sb;
fil->links->basename = ftwbuf->base;
fil->links->dirname = rootbasesz;
fil->links->next = NULL;
fil->tree_seqnum = curr_tree;
memcpy(fil->links->path, fpath, pathlen);
node = tsearch(fil, &files_by_ino, compare_nodes_ino);
if (node == NULL)
goto fail;
if (*node != fil) {
/* Already known inode, add link to inode information */
assert((*node)->st.st_dev == sb->st_dev);
assert((*node)->st.st_ino == sb->st_ino);
if (has_fpath(*node, fpath)) {
jlog(JLOG_VERBOSE1,
_("Skipped (specified more than once) %s"), fpath);
free(fil->links);
} else {
fil->links->next = (*node)->links;
(*node)->links = fil->links;
}
free(fil);
} else {
/* New inode, insert into by-size table */
node = tsearch(fil, &files, compare_nodes);
if (node == NULL)
goto fail;
if (*node != fil) {
struct file *l;
if (file_compare(fil, *node) >= 0) {
fil->next = *node;
*node = fil;
} else {
for (l = *node; l != NULL; l = l->next) {
if (l->next != NULL
&& file_compare(fil, l->next) < 0)
continue;
fil->next = l->next;
l->next = fil;
break;
}
}
}
}
return 0;
fail:
warn(_("cannot continue")); /* probably ENOMEM */
return 0;
}
#ifdef USE_REFLINK
static int is_reflink_compatible(dev_t devno, const char *filename)
{
static dev_t last_dev = 0;
static int last_status = 0;
if (last_dev != devno) {
struct statfs vfs;
if (statfs(filename, &vfs) != 0)
return 0;
last_dev = devno;
switch (vfs.f_type) {
case STATFS_BTRFS_MAGIC:
case STATFS_XFS_MAGIC:
last_status = 1;
break;
default:
last_status = 0;
break;
}
}
return last_status;
}
static int is_reflink(struct file *xa, struct file *xb)
{
int last = 0, rc = 0;
char abuf[BUFSIZ] = { 0 },
bbuf[BUFSIZ] = { 0 };
struct fiemap *amap = (struct fiemap *) abuf,
*bmap = (struct fiemap *) bbuf;
int af = open(xa->links->path, O_RDONLY),
bf = open(xb->links->path, O_RDONLY);
if (af < 0 || bf < 0)
goto done;
do {
size_t i;
amap->fm_length = ~0ULL;
amap->fm_flags = FIEMAP_FLAG_SYNC;
amap->fm_extent_count = (sizeof(abuf) - sizeof(*amap)) / sizeof(struct fiemap_extent);
bmap->fm_length = ~0ULL;
bmap->fm_flags = FIEMAP_FLAG_SYNC;
bmap->fm_extent_count = (sizeof(bbuf) - sizeof(*bmap)) / sizeof(struct fiemap_extent);
if (ioctl(af, FS_IOC_FIEMAP, (unsigned long) amap) < 0)
goto done;
if (ioctl(bf, FS_IOC_FIEMAP, (unsigned long) bmap) < 0)
goto done;
if (amap->fm_mapped_extents == 0 ||
amap->fm_mapped_extents != bmap->fm_mapped_extents)
goto done;
for (i = 0; i < amap->fm_mapped_extents; i++) {
struct fiemap_extent *a = &amap->fm_extents[i];
struct fiemap_extent *b = &bmap->fm_extents[i];
if (a->fe_logical != b->fe_logical ||
a->fe_length != b->fe_length ||
a->fe_physical != b->fe_physical)
goto done;
if (!(a->fe_flags & FIEMAP_EXTENT_SHARED) ||
!(b->fe_flags & FIEMAP_EXTENT_SHARED))
goto done;
if (a->fe_flags & FIEMAP_EXTENT_LAST)
last = 1;
}
bmap->fm_start = amap->fm_start =
amap->fm_extents[amap->fm_mapped_extents - 1].fe_logical +
amap->fm_extents[amap->fm_mapped_extents - 1].fe_length;
} while (last == 0);
rc = 1;
done:
if (af >= 0)
close(af);
if (bf >= 0)
close(bf);
return rc;
}
#endif /* USE_REFLINK */
static inline size_t count_nodes(struct file *x)
{
size_t ct = 0;
for ( ; x != NULL; x = x->next)
ct++;
return ct;
}
/**
* visitor - Callback for twalk()
* @nodep: Pointer to a pointer to a #struct file
* @which: At which point this visit is (preorder, postorder, endorder)
* @depth: The depth of the node in the tree
*
* Visit the nodes in the binary tree. For each node, call hardlinker()
* on each #struct file in the linked list of #struct file instances located
* at that node.
*/
static void visitor(const void *nodep, const VISIT which, const int depth)
{
struct file *master = *(struct file **)nodep;
struct file *begin = master;
struct file *other;
(void)depth;
if (which != leaf && which != endorder)
return;
for (; master != NULL; master = master->next) {
size_t nnodes, memsiz;
int may_reflink = 0;
handle_interrupt();
if (master->links == NULL)
continue;
/* calculate per file max memory use */
nnodes = count_nodes(master);
if (!nnodes)
continue;
/* per-file cache size */
memsiz = opts.cache_size / nnodes;
/* filesiz, readsiz, memsiz */
ul_fileeq_set_size(&fileeq, master->st.st_size, opts.io_size, memsiz);
#ifdef USE_REFLINK
if (reflink_mode || reflinks_skip) {
may_reflink =
reflink_mode == REFLINK_ALWAYS ? 1 :
is_reflink_compatible(master->st.st_dev,
master->links->path);
}
#endif
for (other = master->next; other != NULL; other = other->next) {
int eq;
handle_interrupt();
assert(other != other->next);
assert(other->st.st_size == master->st.st_size);
if (!other->links)
continue;
/* check file attributes, etc. */
if (!file_may_link_to(master, other)) {
jlog(JLOG_VERBOSE2,
_("Skipped (attributes mismatch) %s"), other->links->path);
continue;
}
#ifdef USE_REFLINK
if (may_reflink && reflinks_skip && is_reflink(master, other)) {
jlog(JLOG_VERBOSE2,
_("Skipped (already reflink) %s"), other->links->path);
stats.ignored_reflinks++;
continue;
}
#endif
/* initialize content comparison */
if (!ul_fileeq_data_associated(&master->data))
ul_fileeq_data_set_file(&master->data, master->links->path);
if (!ul_fileeq_data_associated(&other->data))
ul_fileeq_data_set_file(&other->data, other->links->path);
/* compare files */
eq = ul_fileeq(&fileeq, &master->data, &other->data);
/* reduce number of open files, keep only master open */
ul_fileeq_data_close_file(&other->data);
stats.comparisons++;
if (!eq) {
jlog(JLOG_VERBOSE2,
_("Skipped (content mismatch) %s"), other->links->path);
continue;
}
/* link files */
if (!file_link(master, other, may_reflink) && errno == EMLINK) {
ul_fileeq_data_deinit(&master->data);
master = other;
}
}
/* don't keep master data in memory */
ul_fileeq_data_deinit(&master->data);
}
/* final cleanup */
for (other = begin; other != NULL; other = other->next) {
if (opts.list_duplicates && other->st.st_nlink > 1)
for (struct link *l = other->links; l; l = l->next)
printf("%016zu\t%s%c", (size_t)other, l->path, opts.line_delim);
if (ul_fileeq_data_associated(&other->data))
ul_fileeq_data_deinit(&other->data);
}
}
/**
* usage - Print the program help and exit
*/
static void __attribute__((__noreturn__)) usage(void)
{
FILE *out = stdout;
fputs(USAGE_HEADER, out);
fprintf(out, _(" %s [options] <directory>|<file> ...\n"),
program_invocation_short_name);
fputs(USAGE_SEPARATOR, out);
fputs(_("Consolidate duplicate files using hardlinks.\n"), out);
fputs(USAGE_OPTIONS, out);
fputs(_(" -c, --content compare only file contents, same as -pot\n"), out);
fputs(_(" -b, --io-size <size> I/O buffer size for file reading\n"
" (speedup, using more RAM)\n"), out);
fputs(_(" -d, --respect-dir directory names have to be identical\n"), out);
fputs(_(" -f, --respect-name filenames have to be identical\n"), out);
fputs(_(" -i, --include <regex> regular expression to include files/dirs\n"), out);
fputs(_(" -m, --maximize maximize the hardlink count, remove the file with\n"
" lowest hardlink count\n"), out);
fputs(_(" -M, --minimize reverse the meaning of -m\n"), out);
fputs(_(" -n, --dry-run don't actually link anything\n"), out);
fputs(_(" -l, --list-duplicates print every group of duplicate files\n"), out);
fputs(_(" -z, --zero delimit output with NULs instead of newlines\n"), out);
fputs(_(" -o, --ignore-owner ignore owner changes\n"), out);
fputs(_(" -F, --prioritize-trees files found in the earliest specified top-level\n"
" directory have higher priority (lower precedence\n"
" than minimize/maximize)\n"), out);
fputs(_(" -O, --keep-oldest keep the oldest file of multiple equal files\n"
" (lower precedence than minimize/maximize)\n"), out);
fputs(_(" -p, --ignore-mode ignore changes of file mode\n"), out);
fputs(_(" -q, --quiet quiet mode - don't print anything\n"), out);
fputs(_(" -r, --cache-size <size> memory limit for cached file content data\n"), out);
fputs(_(" -s, --minimum-size <size> minimum size for files.\n"), out);
fputs(_(" -S, --maximum-size <size> maximum size for files.\n"), out);
fputs(_(" -t, --ignore-time ignore timestamps (when testing for equality)\n"), out);
fputs(_(" -v, --verbose verbose output (repeat for more verbosity)\n"), out);
fputs(_(" -x, --exclude <regex> regular expression to exclude files\n"), out);
#ifdef USE_SKIP_SUBTREE
fputs(_(" --exclude-subtree <regex> regular expression to exclude directories\n"), out);
#endif
fputs(_(" --mount stay within the same filesystem\n"), out);
#ifdef USE_XATTR
fputs(_(" -X, --respect-xattrs respect extended attributes\n"), out);
#endif
fputs(_(" -y, --method <name> file content comparison method\n"), out);
#ifdef USE_REFLINK
fputs(_(" --reflink[=<when>] create clone/CoW copies (auto, always, never)\n"), out);
fputs(_(" --skip-reflinks skip already cloned files (enabled on --reflink)\n"), out);
#endif
fputs(USAGE_SEPARATOR, out);
fprintf(out, USAGE_HELP_OPTIONS(28));
fprintf(out, USAGE_MAN_TAIL("hardlink(1)"));
exit(EXIT_SUCCESS);
}
/**
* parse_options - Parse the command line options
* @argc: Number of options
* @argv: Array of options
*/
static int parse_options(int argc, char *argv[])
{
enum {
OPT_REFLINK = CHAR_MAX + 1,
OPT_SKIP_RELINKS,
OPT_EXCLUDE_SUBTREE,
OPT_MOUNT
};
static const char optstr[] = "VhvndfpotXcmMFOlzx:y:i:r:S:s:b:q";
static const struct option long_options[] = {
{"version", no_argument, NULL, 'V'},
{"help", no_argument, NULL, 'h'},
{"verbose", no_argument, NULL, 'v'},
{"dry-run", no_argument, NULL, 'n'},
{"respect-name", no_argument, NULL, 'f'},
{"respect-dir", no_argument, NULL, 'd'},
{"ignore-mode", no_argument, NULL, 'p'},
{"ignore-owner", no_argument, NULL, 'o'},
{"ignore-time", no_argument, NULL, 't'},
{"respect-xattrs", no_argument, NULL, 'X'},
{"maximize", no_argument, NULL, 'm'},
{"minimize", no_argument, NULL, 'M'},
{"prioritize-trees", no_argument, NULL, 'F'},
{"keep-oldest", no_argument, NULL, 'O'},
{"exclude", required_argument, NULL, 'x'},
{"include", required_argument, NULL, 'i'},
#ifdef USE_SKIP_SUBTREE
{"exclude-subtree", required_argument, NULL, OPT_EXCLUDE_SUBTREE},
#endif
{"mount", no_argument, NULL, OPT_MOUNT},
{"method", required_argument, NULL, 'y' },
{"minimum-size", required_argument, NULL, 's'},
{"maximum-size", required_argument, NULL, 'S'},
#ifdef USE_REFLINK
{"reflink", optional_argument, NULL, OPT_REFLINK },
{"skip-reflinks", no_argument, NULL, OPT_SKIP_RELINKS },
#endif
{"io-size", required_argument, NULL, 'b'},
{"content", no_argument, NULL, 'c'},
{"quiet", no_argument, NULL, 'q'},
{"cache-size", required_argument, NULL, 'r'},
{"list-duplicates", no_argument, NULL, 'l'},
{"zero", no_argument, NULL, 'z'},
{NULL, 0, NULL, 0}
};
static const ul_excl_t excl[] = {
{'q', 'v'},
{0}
};
int excl_st[ARRAY_SIZE(excl)] = UL_EXCL_STATUS_INIT;
int c, content_only = 0;
while ((c = getopt_long(argc, argv, optstr, long_options, NULL)) != -1) {
err_exclusive_options(c, long_options, excl, excl_st);
switch (c) {
case 'p':
opts.respect_mode = FALSE;
break;
case 'o':
opts.respect_owner = FALSE;
break;
case 't':
opts.respect_time = FALSE;
break;
case 'X':
opts.respect_xattrs = TRUE;
break;
case 'm':
opts.maximise = TRUE;
break;
case 'M':
opts.minimise = TRUE;
break;
case 'O':
opts.keep_oldest = TRUE;
break;
case 'F':
opts.prio_trees = TRUE;
break;
case 'f':
opts.respect_name = TRUE;
break;
case 'd':
opts.respect_dir = TRUE;
break;
case 'v':
opts.verbosity++;
break;
case 'q':
quiet = TRUE;
break;
case 'c':
content_only = 1;
break;
case 'n':
opts.dry_run = 1;
break;
case 'x':
register_regex(&opts.exclude, optarg);
break;
#ifdef USE_SKIP_SUBTREE
case OPT_EXCLUDE_SUBTREE:
register_regex(&opts.exclude_subtree, optarg);
break;
#endif
case 'y':
opts.method = optarg;
break;
case 'i':
register_regex(&opts.include, optarg);
break;
case 's':
opts.min_size = strtosize_or_err(optarg, _("failed to parse minimum size"));
break;
case 'S':
opts.max_size = strtosize_or_err(optarg, _("failed to parse maximum size"));
break;
case 'r':
opts.cache_size = strtosize_or_err(optarg, _("failed to parse cache size"));
break;
case 'b':
opts.io_size = strtosize_or_err(optarg, _("failed to parse I/O size"));
break;
case 'l':
opts.list_duplicates = TRUE;
opts.dry_run = TRUE;
quiet = TRUE;
break;
case 'z':
opts.line_delim = '\0';
break;
#ifdef USE_REFLINK
case OPT_REFLINK:
reflink_mode = REFLINK_AUTO;
if (optarg) {
if (strcmp(optarg, "auto") == 0)
reflink_mode = REFLINK_AUTO;
else if (strcmp(optarg, "always") == 0)
reflink_mode = REFLINK_ALWAYS;
else if (strcmp(optarg, "never") == 0)
reflink_mode = REFLINK_NEVER;
else
errx(EXIT_FAILURE, _("unsupported reflink mode; %s"), optarg);
}
if (reflink_mode != REFLINK_NEVER)
reflinks_skip = 1;
break;
case OPT_SKIP_RELINKS:
reflinks_skip = 1;
break;
#endif
case OPT_MOUNT:
opts.within_mount = 1;
break;
case 'h':
usage();
case 'V':
{
static const char *const features[] = {
#ifdef USE_REFLINK
"reflink",
#endif
#ifdef USE_FILEEQ_CRYPTOAPI
"cryptoapi",
#endif
#ifdef USE_SKIP_SUBTREE
"ftw_skip_subtree",
#endif
NULL
};
print_version_with_features(EXIT_SUCCESS, features);
}
default:
errtryhelp(EXIT_FAILURE);
}
}
if (content_only) {
opts.respect_mode = FALSE;
opts.respect_name = FALSE;
opts.respect_dir = FALSE;
opts.respect_owner = FALSE;
opts.respect_time = FALSE;
opts.respect_xattrs = FALSE;
}
return 0;
}
/**
* to_be_called_atexit - Cleanup handler, also prints statistics.
*/
static void to_be_called_atexit(void)
{
if (stats.started)
print_stats();
}
/**
* sighandler - Signal handler, sets the global last_signal variable
* @i: The signal number
*/
static void sighandler(int i)
{
last_signal = i;
}
int main(int argc, char *argv[])
{
struct sigaction sa;
int rc;
int ftw_flags;
sa.sa_handler = sighandler;
sa.sa_flags = SA_RESTART;
sigfillset(&sa.sa_mask);
sigaction(SIGINT, &sa, NULL);
sigaction(SIGUSR1, &sa, NULL);
/* Localize messages, number formatting, and anything else. */
setlocale(LC_ALL, "");
bindtextdomain(PACKAGE, LOCALEDIR);
textdomain(PACKAGE);
if (atexit(to_be_called_atexit) != 0)
err(EXIT_FAILURE, _("cannot register exit handler"));
parse_options(argc, argv);
if (optind == argc)
errx(EXIT_FAILURE, _("no directory or file specified"));
gettime_monotonic(&stats.start_time);
rc = ul_fileeq_init(&fileeq, opts.method);
if (rc != 0 && strcmp(opts.method, "memcmp") != 0) {
jlog(JLOG_INFO, _("cannot initialize %s method, use 'memcmp' fallback"), opts.method);
opts.method = "memcmp";
rc = ul_fileeq_init(&fileeq, opts.method);
}
if (rc < 0)
err(EXIT_FAILURE, _("failed to initialize files comparer"));
/* default I/O size */
if (!opts.io_size) {
if (strcmp(opts.method, "memcmp") == 0)
opts.io_size = 8*1024;
else
opts.io_size = 1024*1024;
}
stats.started = TRUE;
ftw_flags = FTW_PHYS;
if (opts.within_mount)
ftw_flags |= FTW_MOUNT;
#ifdef USE_SKIP_SUBTREE
if (opts.exclude_subtree)
ftw_flags |= FTW_ACTIONRETVAL;
#endif
jlog(JLOG_VERBOSE2, _("Scanning [device/inode/links]:"));
for (; optind < argc; optind++) {
char *path = realpath(argv[optind], NULL);
if (!path) {
warn(_("cannot get realpath: %s"), argv[optind]);
continue;
}
if (opts.respect_dir)
rootbasesz = strlen(path);
if (opts.prio_trees)
++curr_tree;
if (nftw(path, inserter, 20, ftw_flags) == -1)
warn(_("cannot process %s"), path);
free(path);
rootbasesz = 0;
}
twalk(files, visitor);
ul_fileeq_deinit(&fileeq);
return 0;
}
|