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
|
/* CacheFiles userspace management daemon
*
* Copyright (C) 2006-2007 Red Hat, Inc. All Rights Reserved.
* Written by David Howells (dhowells@redhat.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version
* 2 of the License, or (at your option) any later version.
*
*
* Configuration file goes in /etc/cachefiles.conf and is of the form:
*
* dir /var/cache/fscache
* tag mycache
* brun 10%
* bcull 7%
* bstop 3%
* frun 10%
* fcull 7%
* fstop 3%
*
* Only "dir" is mandatory
* Blank lines and lines beginning with a hash are comments
* Trailing spaces are significant
* There is no character escaping mechanism
* NUL characters are cause for error
*/
#define CACHEFILESD_VERSION "0.10.2"
#define _GNU_SOURCE
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <syslog.h>
#include <unistd.h>
#include <fcntl.h>
#include <ctype.h>
#include <errno.h>
#include <getopt.h>
#include <syslog.h>
#include <dirent.h>
#include <time.h>
#include <poll.h>
#include <sys/inotify.h>
#include <sys/time.h>
#include <sys/vfs.h>
#include <sys/stat.h>
typedef enum objtype {
OBJTYPE_INDEX,
OBJTYPE_DATA,
OBJTYPE_SPECIAL,
OBJTYPE_INTERMEDIATE,
} objtype_t;
struct object {
struct object *parent; /* parent dir of this object (or NULL) */
struct object *children; /* children of this object */
struct object *next; /* next child of parent */
struct object *prev; /* previous child of parent */
DIR *dir; /* this object's directory (or NULL for data obj) */
ino_t ino; /* inode number of this object */
int usage; /* number of users of this object */
char empty; /* T if directory empty */
char new; /* T if object new */
char cullable; /* T if object now cullable */
objtype_t type; /* type of object */
time_t atime; /* last access time on this object */
char name[1]; /* name of this object */
};
/* cache root representation */
static struct object root = {
.parent = NULL,
.usage = 2,
.type = OBJTYPE_INDEX,
};
static int nobjects = 1;
static int nopendir = 0;
/* current scan point */
static struct object *scan = &root;
static int jumpstart_scan = 0;
/* ranked order of cullable objects
* - we have two tables: one we're building and one that's full of ready to be
* culled objects
*/
static unsigned culltable_size = 4096;
static struct object **cullbuild;
static struct object **cullready;
static int oldest_build = -1;
static int oldest_ready = -1;
static int ncullable = 0;
static const char *configfile = "/etc/cachefilesd.conf";
static const char *devfile = "/dev/cachefiles";
static const char *procfile = "/proc/fs/cachefiles";
static const char *pidfile = "/var/run/cachefilesd.pid";
static char *cacheroot, *graveyardpath;
static int xdebug, xnolog, xopenedlog;
static int stop, reap, cull, nocull; //, statecheck;
static int graveyardfd;
static unsigned long long brun, bcull, bstop, frun, fcull, fstop;
#define cachefd 3
static __attribute__((noreturn))
void version(void)
{
printf("cachefilesd version " CACHEFILESD_VERSION "\n");
exit(0);
}
static __attribute__((noreturn))
void help(void)
{
fprintf(stderr,
"Format:\n"
" /sbin/cachefilesd [-d]* [-s] [-n] [-p <pidfile>] [-f <configfile>]\n"
" /sbin/cachefilesd -v\n"
"\n"
"Options:\n"
" -d\tIncrease debugging level (cumulative)\n"
" -n\tDon't daemonise the process\n"
" -s\tMessage output to stderr instead of syslog\n"
" -p <pidfile>\tWrite the PID into the file\n"
" -f <configfile>\n"
" -v\tPrint version and exit\n"
"\tRead the specified configuration file instead of"
" /etc/cachefiles.conf\n");
exit(2);
}
static __attribute__((noreturn, format(printf, 2, 3)))
void __error(int excode, const char *fmt, ...)
{
va_list va;
if (xnolog) {
va_start(va, fmt);
vfprintf(stderr, fmt, va);
va_end(va);
}
else {
if (!xopenedlog) {
openlog("cachefilesd", LOG_PID, LOG_DAEMON);
xopenedlog = 1;
}
va_start(va, fmt);
vsyslog(LOG_ERR, fmt, va);
va_end(va);
closelog();
}
exit(excode);
}
#define error(FMT,...) __error(3, "Internal error: "FMT"\n" ,##__VA_ARGS__)
#define oserror(FMT,...) __error(1, FMT": errno %d (%m)\n" ,##__VA_ARGS__ ,errno)
#define cfgerror(FMT,...) __error(2, "%s:%d:"FMT"\n", configfile, lineno ,##__VA_ARGS__)
#define opterror(FMT,...) __error(2, FMT"\n" ,##__VA_ARGS__)
static __attribute__((format(printf, 3, 4)))
void __message(int dlevel, int level, const char *fmt, ...)
{
va_list va;
if (dlevel <= xdebug) {
if (xnolog) {
va_start(va, fmt);
vfprintf(stderr, fmt, va);
va_end(va);
}
else if (!xnolog) {
if (!xopenedlog) {
openlog("cachefilesd", LOG_PID, LOG_DAEMON);
xopenedlog = 1;
}
va_start(va, fmt);
vsyslog(level, fmt, va);
va_end(va);
closelog();
}
}
}
#define info(FMT,...) __message(0, LOG_INFO, FMT"\n" ,##__VA_ARGS__)
#define debug(DL, FMT,...) __message(DL, LOG_DEBUG, FMT"\n" ,##__VA_ARGS__)
#define notice(FMT,...) __message(0, LOG_NOTICE, FMT"\n" ,##__VA_ARGS__)
static void open_cache(void);
static void cachefilesd(void) __attribute__((noreturn));
static void reap_graveyard(void);
static void reap_graveyard_aux(const char *dirname);
static void read_cache_state(void);
static int is_object_in_use(const char *filename);
static void cull_file(const char *filename);
static void build_cull_table(void);
static void decant_cull_table(void);
static void insert_into_cull_table(struct object *object);
static void put_object(struct object *object);
static struct object *create_object(struct object *parent, const char *name, struct stat64 *st);
static void destroy_unexpected_object(struct object *parent, struct dirent *de);
static int get_dir_fd(struct object *dir);
static void cull_object(struct object *object);
static void cull_objects(void);
/*****************************************************************************/
/*
* termination request
*/
static void sigterm(int sig)
{
stop = 1;
}
/*****************************************************************************/
/*
* the graveyard was populated
*/
static void sigio(int sig)
{
reap = 1;
}
/*****************************************************************************/
/*
* redo scan after a time since the last scan turned up no results
*/
static void sigalrm(int sig)
{
jumpstart_scan = 1;
}
/*****************************************************************************/
/*
* write the PID file
*/
static void write_pidfile(void)
{
FILE *pf;
pf = fopen(pidfile, "w");
if (!pf)
oserror("Unable to open PID file: %s", pidfile);
if (fprintf(pf, "%d\n", getpid()) < 0 ||
fclose(pf) == EOF)
oserror("Unable to write PID file: %s", pidfile);
}
/*****************************************************************************/
/*
* start up the cache and go
*/
int main(int argc, char *argv[])
{
struct stat st;
unsigned lineno;
ssize_t n;
size_t m;
FILE *config;
char *line, *cp;
long page_size;
int _cachefd, nullfd, opt, loop, open_max, nodaemon = 0;
/* handle help request */
if (argc == 2 && strcmp(argv[1], "--help") == 0)
help();
if (argc == 2 && strcmp(argv[1], "--version") == 0)
version();
/* parse the arguments */
while (opt = getopt(argc, argv, "dsnf:p:v"),
opt != EOF
) {
switch (opt) {
case 'd':
/* turn on debugging */
xdebug++;
break;
case 's':
/* disable syslog writing */
xnolog = 1;
break;
case 'n':
/* don't daemonise */
nodaemon = 1;
break;
case 'f':
/* use a specific config file */
configfile = optarg;
break;
case 'p':
/* use a specific PID file */
pidfile = optarg;
break;
case 'v':
/* print the version and exit */
version();
default:
opterror("Unknown commandline option '%c'", optopt);
}
}
/* read various parameters */
page_size = sysconf(_SC_PAGESIZE);
if (page_size < 0)
oserror("Unable to get page size");
open_max = sysconf(_SC_OPEN_MAX);
if (open_max < 0)
oserror("Unable to get max open files");
/* become owned by root */
if (setresuid(0, 0, 0) < 0)
oserror("Unable to set UID to 0");
if (setresgid(0, 0, 0) < 0)
oserror("Unable to set GID to 0");
/* just in case... */
sync();
/* open the devfile or the procfile on fd 3 */
_cachefd = open(devfile, O_RDWR);
if (_cachefd < 0) {
if (errno != ENOENT)
oserror("Unable to open %s", devfile);
_cachefd = open(procfile, O_RDWR);
if (_cachefd < 0) {
if (errno == ENOENT)
oserror("Unable to open %s", devfile);
oserror("Unable to open %s", procfile);
}
}
if (_cachefd != cachefd) {
if (dup2(_cachefd, cachefd) < 0)
oserror("Unable to transfer cache fd to 3");
if (close(_cachefd) < 0)
oserror("Close of original cache fd failed");
}
/* open /dev/null */
nullfd = open("/dev/null", O_RDWR);
if (nullfd < 0)
oserror("Unable to open /dev/null");
/* open the config file */
config = fopen(configfile, "r");
if (!config)
oserror("Unable to open %s", configfile);
/* read the configuration */
m = 0;
line = NULL;
lineno = 0;
while (n = getline(&line, &m, config),
n != EOF
) {
lineno++;
if (n >= page_size)
cfgerror("Line too long");
if (memchr(line, 0, n) != 0)
cfgerror("Line contains a NUL character");
/* eat blank lines, leading white space and trailing NL */
cp = strchr(line, '\n');
if (!cp)
cfgerror("Unterminated line");
if (cp == line)
continue;
*cp = '\0';
for (cp = line; isspace(*cp); cp++) {;}
if (!*cp)
continue;
/* eat full line comments */
if (*cp == '#')
continue;
/* allow culling to be disabled */
if (memcmp(cp, "nocull", 6) == 0 &&
(!cp[6] || isspace(cp[6]))) {
nocull = 1;
}
/* note the cull table size command */
if (memcmp(cp, "culltable", 9) == 0 && isspace(cp[9])) {
unsigned long cts;
char *sp;
for (sp = cp + 10; isspace(*sp); sp++) {;}
cts = strtoul(sp, &sp, 10);
if (*sp)
cfgerror("Invalid cull table size number");
if (cts < 12 || cts > 20)
cfgerror("Log2 of cull table size must be 12 <= N <= 20");
culltable_size = 1 << cts;
continue;
}
/* note the dir command */
if (memcmp(cp, "dir", 3) == 0 && isspace(cp[3])) {
char *sp;
for (sp = cp + 4; isspace(*sp); sp++) {;}
if (strlen(sp) > PATH_MAX - 10)
cfgerror("Cache pathname is too long");
if (stat(sp, &st) < 0)
oserror("Can't confirm cache location");
cacheroot = strdup(sp);
if (!cacheroot)
oserror("Can't copy cache name");
}
/* object to the bind command */
if (memcmp(cp, "bind", 4) == 0 &&
(!cp[4] || isspace(cp[4])))
cfgerror("'bind' command not permitted");
/* pass the config options over to the kernel module */
if (write(cachefd, line, strlen(line)) < 0) {
if (errno == -ENOMEM || errno == -EIO)
oserror("CacheFiles");
cfgerror("CacheFiles gave config error: %m");
}
}
if (line)
free(line);
if (!feof(config))
oserror("Unable to read %s", configfile);
if (fclose(config) == EOF)
oserror("Unable to close %s", configfile);
/* allocate the cull tables */
if (!nocull) {
cullbuild = calloc(culltable_size, sizeof(cullbuild[0]));
if (!cullbuild)
oserror("calloc");
cullready = calloc(culltable_size, sizeof(cullready[0]));
if (!cullready)
oserror("calloc");
}
/* leave stdin, stdout, stderr and cachefd open only */
if (nullfd != 0)
dup2(nullfd, 0);
if (nullfd != 1)
dup2(nullfd, 1);
for (loop = 4; loop < open_max; loop++)
close(loop);
/* set up a connection to syslog whilst we still can (the bind command
* will give us our own namespace with no /dev/log */
openlog("cachefilesd", LOG_PID, LOG_DAEMON);
xopenedlog = 1;
info("About to bind cache");
/* now issue the bind command */
if (write(cachefd, "bind", 4) < 0)
oserror("CacheFiles bind failed");
info("Bound cache");
/* we now have a live cache - daemonise the process */
if (!nodaemon) {
if (!xdebug)
dup2(1, 2);
switch (fork()) {
case -1:
oserror("fork");
case 0:
if (xdebug)
fprintf(stderr, "Daemon PID %d\n", getpid());
signal(SIGTTIN, SIG_IGN);
signal(SIGTTOU, SIG_IGN);
signal(SIGTSTP, SIG_IGN);
setsid();
write_pidfile();
cachefilesd();
default:
break;
}
}
else {
cachefilesd();
}
exit(0);
}
/*****************************************************************************/
/*
* open the cache directories
*/
static void open_cache(void)
{
struct statfs sfs;
char buffer[PATH_MAX + 1];
/* open the cache directory so we can scan it */
snprintf(buffer, PATH_MAX, "%s/cache", cacheroot);
root.dir = opendir(buffer);
if (!root.dir)
oserror("Unable to open cache directory");
nopendir++;
/* open the graveyard so we can set a notification on it */
if (asprintf(&graveyardpath, "%s/graveyard", cacheroot) < 0)
oserror("Unable to copy graveyard name");
graveyardfd = open(graveyardpath, O_DIRECTORY);
if (graveyardfd < 0)
oserror("Unable to open graveyard directory");
if (fstatfs(graveyardfd, &sfs) < 0)
oserror("Unable to stat cache filesystem");
if (sfs.f_bsize == -1 ||
sfs.f_blocks == -1 ||
sfs.f_bfree == -1 ||
sfs.f_bavail == -1)
error("Backing filesystem returns unusable statistics through fstatfs()");
}
/*****************************************************************************/
/*
* manage the cache
*/
static void cachefilesd(void)
{
sigset_t sigs, osigs;
struct pollfd pollfds[1] = {
[0] = {
.fd = cachefd,
.events = POLLIN,
},
};
notice("Daemon Started");
/* open the cache directories */
open_cache();
/* we need to disable I/O and termination signals so they're only
* caught at appropriate times
*/
sigemptyset(&sigs);
sigaddset(&sigs, SIGIO);
sigaddset(&sigs, SIGINT);
sigaddset(&sigs, SIGTERM);
signal(SIGTERM, sigterm);
signal(SIGINT, sigterm);
/* check the graveyard for graves */
reap_graveyard();
while (!stop) {
read_cache_state();
/* sleep without racing on reap and cull with the signal
* handlers */
if (!scan && !reap && !cull) {
if (sigprocmask(SIG_BLOCK, &sigs, &osigs) < 0)
oserror("Unable to block signals");
if (!reap && !cull) {
if (ppoll(pollfds, 1, NULL, &osigs) < 0 &&
errno != EINTR)
oserror("Unable to suspend process");
}
if (sigprocmask(SIG_UNBLOCK, &sigs, NULL) < 0)
oserror("Unable to unblock signals");
read_cache_state();
}
if (nocull) {
cull = 0;
} else {
if (jumpstart_scan) {
jumpstart_scan = 0;
if (!stop && !scan) {
debug(1, "Refilling cull table");
root.usage++;
scan = &root;
}
}
if (cull) {
if (oldest_ready >= 0)
cull_objects();
else if (oldest_build < 0)
jumpstart_scan = 1;
}
if (scan)
build_cull_table();
if (!scan && oldest_ready < 0 && oldest_build >= 0)
decant_cull_table();
}
if (reap)
reap_graveyard();
}
notice("Daemon Terminated");
exit(0);
}
/*****************************************************************************/
/*
* check the graveyard directory for graves to delete
*/
static void reap_graveyard(void)
{
/* set a one-shot notification to catch more graves appearing */
reap = 0;
signal(SIGIO, sigio);
if (fcntl(graveyardfd, F_NOTIFY, DN_CREATE) < 0)
oserror("unable to set notification on graveyard");
reap_graveyard_aux(graveyardpath);
}
/*****************************************************************************/
/*
* recursively remove dead stuff from the graveyard
*/
static void reap_graveyard_aux(const char *dirname)
{
struct dirent dirent, *de;
DIR *dir;
int deleted, ret;
if (chdir(dirname) < 0)
oserror("chdir failed");
dir = opendir(".");
if (!dir)
oserror("Unable to open grave dir %s", dirname);
do {
/* removing directory entries may cause us to skip when reading
* them */
rewinddir(dir);
deleted = 0;
while (ret = readdir_r(dir, &dirent, &de),
ret == 0 && de != NULL
) {
/* ignore "." and ".." */
if (dirent.d_name[0] == '.') {
if (dirent.d_name[1] == '\0')
continue;
if (dirent.d_name[1] == '.' ||
dirent.d_name[1] == '\0')
continue;
}
deleted = 1;
/* attempt to unlink non-directory files */
if (dirent.d_type != DT_DIR) {
debug(1, "unlink %s", dirent.d_name);
if (unlink(dirent.d_name) == 0)
continue;
if (errno != EISDIR)
oserror("Unable to unlink file %s",
dirent.d_name);
}
/* recurse into directories */
memcpy(&dirent, de, sizeof(dirent));
reap_graveyard_aux(dirent.d_name);
/* which we then attempt to remove */
debug(1, "rmdir %s", dirent.d_name);
if (rmdir(dirent.d_name) < 0)
oserror("Unable to remove dir %s", dirent.d_name);
}
if (ret < 0)
oserror("Unable to read dir %s", dirname);
} while (deleted);
closedir(dir);
if (chdir("..") < 0)
oserror("Unable to chdir to ..");
}
/*****************************************************************************/
/*
* read the cache state
*/
static void read_cache_state(void)
{
char buffer[4096 + 1], *tok, *next, *arg;
int n;
n = read(cachefd, buffer, sizeof(buffer) - 1);
if (n < 0)
oserror("Unable to read cache state");
buffer[n] = '\0';
tok = buffer;
do {
next = strpbrk(tok, " \t");
if (next)
*next++ = '\0';
arg = strchr(tok, '=');
if (arg)
*arg++ = '\0';
if (strcmp(tok, "cull") == 0)
cull = strtoul(arg, NULL, 0);
else if (strcmp(tok, "brun") == 0)
brun = strtoull(arg, NULL, 16);
else if (strcmp(tok, "bcull") == 0)
bcull = strtoull(arg, NULL, 16);
else if (strcmp(tok, "bstop") == 0)
bstop = strtoull(arg, NULL, 16);
else if (strcmp(tok, "frun") == 0)
frun = strtoull(arg, NULL, 16);
else if (strcmp(tok, "fcull") == 0)
fcull = strtoull(arg, NULL, 16);
else if (strcmp(tok, "fstop") == 0)
fstop = strtoull(arg, NULL, 16);
} while ((tok = next));
}
/*****************************************************************************/
/*
* find out if an object in the current working directory is in use
*/
static int is_object_in_use(const char *filename)
{
char buffer[NAME_MAX + 30];
int ret, n;
n = sprintf(buffer, "inuse %s", filename);
/* command the module */
ret = write(cachefd, buffer, n);
if (ret < 0 && errno != ESTALE && errno != ENOENT && errno != EBUSY)
oserror("Failed to check object's in-use state");
return ret < 0 && errno == EBUSY ? 1 : 0;
}
/*****************************************************************************/
/*
* cull a file representing an object in the current working directory
* - requests CacheFiles rename the object "<cwd>/filename" to the graveyard
*/
static void cull_file(const char *filename)
{
char buffer[NAME_MAX + 30];
int ret, n;
n = sprintf(buffer, "cull %s", filename);
/* command the module */
ret = write(cachefd, buffer, n);
if (ret < 0 && errno != ESTALE && errno != ENOENT && errno != EBUSY)
oserror("Failed to cull object");
}
/*****************************************************************************/
/*
* create an object from a name and stat details and attach to the parent, if
* it doesn't already exist
*/
static struct object *create_object(struct object *parent,
const char *name,
struct stat64 *st)
{
struct object *object, *p, *pr;
int len;
/* see if the parent object already holds a representation of this
* one */
pr = NULL;
for (p = parent->children; p; pr = p, p = p->next) {
if (p->ino <= st->st_ino) {
if (p->ino == st->st_ino) {
/* it does */
p->usage++;
return p;
}
break;
}
}
/* allocate the object
* - note that struct object reserves space for NUL directly
*/
len = strlen(name);
object = calloc(1, sizeof(struct object) + len);
if (!object)
oserror("Unable to alloc object");
object->usage = 1;
object->new = 1;
object->ino = st->st_ino;
object->atime = st->st_atime;
memcpy(object->name, name, len + 1);
switch (object->name[0]) {
case 'I':
case 'J':
object->type = OBJTYPE_INDEX;
break;
case 'D':
case 'E':
object->type = OBJTYPE_DATA;
break;
case 'S':
case 'T':
object->type = OBJTYPE_SPECIAL;
break;
case '+':
case '@':
object->type = OBJTYPE_INTERMEDIATE;
break;
default:
error("Unexpected file type '%c'", object->name[0]);
}
/* link into the parent's list */
parent->usage++;
object->parent = parent;
object->prev = pr;
object->next = p;
if (pr)
pr->next = object;
else
parent->children = object;
if (p)
p->prev = object;
nobjects++;
return object;
}
/*****************************************************************************/
/*
* free up an object, unlinking it from its parent
*/
static void put_object(struct object *object)
{
struct object *parent;
if (--object->usage > 0)
return;
nobjects--;
if (object->cullable)
ncullable--;
/* destroy the object */
if (object == &root)
error("Can't destroy root object representation");
if (object->children)
error("Destroying object with children: '%s'", object->name);
if (object->dir) {
closedir(object->dir);
nopendir--;
}
if (object->prev)
object->prev->next = object->next;
else
object->parent->children = object->next;
if (object->next)
object->next->prev = object->prev;
parent = object->parent;
memset(object, 0x6d, sizeof(struct object));
free(object);
if (parent)
put_object(parent);
}
/*****************************************************************************/
/*
* destroy an unexpected object
*/
static void destroy_unexpected_object(struct object *parent, struct dirent *de)
{
static unsigned uniquifier;
struct timeval tv;
char namebuf[40];
int fd;
fd = dirfd(parent->dir);
if (de->d_type != DT_DIR) {
if (unlinkat(fd, de->d_name, 0) < 0 &&
errno != ENOENT)
oserror("Unable to unlink unexpectedly named file: %s",
de->d_name);
}
else {
gettimeofday(&tv, NULL);
sprintf(namebuf, "x%lxx%xx", tv.tv_sec, uniquifier++);
if (renameat(fd, de->d_name, graveyardfd, namebuf) < 0 &&
errno != ENOENT)
oserror("Unable to rename unexpectedly named file: %s",
de->d_name);
}
}
/*****************************************************************************/
/*
* insert an object into the cull table if its old enough
*/
static void insert_into_cull_table(struct object *object)
{
int y, o, m;
if (!object)
error("NULL object pointer");
/* just insert if table is empty */
if (oldest_build == -1) {
object->usage++;
oldest_build = 0;
cullbuild[0] = object;
return;
}
/* insert somewhere if table is not full */
if (oldest_build < culltable_size - 1) {
object->usage++;
oldest_build++;
/* just insert at end if new oldest object */
if (object->atime <= cullbuild[oldest_build - 1]->atime) {
cullbuild[oldest_build] = object;
return;
}
/* insert at front if new newest object */
if (object->atime > cullbuild[0]->atime) {
memmove(&cullbuild[1],
&cullbuild[0],
oldest_build * sizeof(cullbuild[0]));
cullbuild[0] = object;
return;
}
/* if only two objects in list then insert between them */
if (oldest_build == 2) {
cullbuild[2] = cullbuild[1];
cullbuild[1] = object;
return;
}
/* insert somewhere in between front and back elements
* of a three object list
* - oldest_build == #objects_currently_in_list
*/
y = 1;
o = oldest_build - 1;
do {
m = (y + o) / 2;
if (object->atime > cullbuild[m]->atime)
o = m;
else
y = m + 1;
} while (y < o);
memmove(&cullbuild[y + 1],
&cullbuild[y],
(oldest_build - y) * sizeof(cullbuild[0]));
cullbuild[y] = object;
return;
}
/* if table is full then insert only if older than newest */
if (oldest_build > culltable_size - 1)
error("Cull table overfull");
if (object->atime >= cullbuild[0]->atime)
return;
/* newest object in table will be displaced by this one */
put_object(cullbuild[0]);
cullbuild[0] = (void *)(0x6b000000 | __LINE__);
object->usage++;
/* place directly in first slot if second is older */
if (object->atime >= cullbuild[1]->atime) {
cullbuild[0] = object;
return;
}
/* shift everything up one if older than oldest */
if (object->atime <= cullbuild[culltable_size - 1]->atime) {
memmove(&cullbuild[0],
&cullbuild[1],
(culltable_size - 1) * sizeof(cullbuild[0]));
cullbuild[culltable_size - 1] = object;
return;
}
/* search the table to find the insertion point
* - it will be between the first and last the slots
* - we know second is younger
*/
cullbuild[0] = cullbuild[1];
y = 2;
o = culltable_size - 1;
do {
m = (y + o) / 2;
if (object->atime >= cullbuild[m]->atime)
o = m;
else
y = m + 1;
} while (y < o);
if (y == 2) {
cullbuild[1] = object;
return;
}
memmove(&cullbuild[1],
&cullbuild[2],
(y - 2) * sizeof(cullbuild[0]));
cullbuild[y - 1] = object;
}
/*****************************************************************************/
/*
* do the next step in building up the cull table
*/
static void build_cull_table(void)
{
struct dirent dirent, *de;
struct object *curr, *child;
struct stat64 st;
int loop, fd;
curr = scan;
if (!curr->dir) {
curr->empty = 1;
fd = openat(dirfd(curr->parent->dir), curr->name, O_DIRECTORY);
if (fd < 0) {
if (errno != ENOENT)
oserror("Failed to open directory");
goto dir_read_complete;
}
curr->dir = fdopendir(fd);
if (!curr->dir)
oserror("Failed to open directory");
nopendir++;
}
debug(2, "--> build_cull_table({%s})", curr->name);
if (fchdir(dirfd(curr->dir)) < 0)
oserror("Failed to change current directory");
next:
/* read the next directory entry */
if (readdir_r(curr->dir, &dirent, &de) < 0) {
if (errno == ENOENT)
goto dir_read_complete;
oserror("Unable to read directory");
}
if (de == NULL)
goto dir_read_complete;
if (dirent.d_name[0] == '.') {
if (!dirent.d_name[1] ||
(dirent.d_name[1] == '.' && !dirent.d_name[2]))
goto next;
}
debug(2, "readdir '%s'", dirent.d_name);
switch (dirent.d_type) {
case DT_UNKNOWN:
case DT_DIR:
case DT_REG:
break;
default:
oserror("readdir returned unsupported type %d", dirent.d_type);
}
/* delete any funny looking files */
if (memchr("IDSJET+@", dirent.d_name[0], 8) == NULL)
goto found_unexpected_object;
/* see if this object is already known to us */
if (fstatat64(dirfd(curr->dir), dirent.d_name, &st, 0) < 0) {
if (errno == ENOENT)
goto next;
oserror("Failed to stat directory");
}
if (!S_ISDIR(st.st_mode) &&
(!S_ISREG(st.st_mode) ||
dirent.d_name[0] == 'I' ||
dirent.d_name[0] == 'J' ||
dirent.d_name[0] == '@' ||
dirent.d_name[0] == '+'))
goto found_unexpected_object;
/* create a representation for this object */
child = create_object(curr, dirent.d_name, &st);
if (!child && errno == ENOENT)
goto next;
curr->empty = 0;
if (!child)
oserror("Unable to create object");
/* we consider culling objects at the transition from index object to
* non-index object */
switch (child->type) {
case OBJTYPE_DATA:
case OBJTYPE_SPECIAL:
if (!child->new) {
/* the child appears to have been retained in the
* culling table already, so we see if it should be
* removed therefrom
*/
debug(2, "- old child");
if (st.st_atime <= child->atime) {
/* file on disk hasn't been touched */
put_object(child);
goto next;
}
for (loop = 0; loop <= oldest_ready; loop++)
if (cullready[loop] == child)
break;
if (loop == oldest_ready) {
/* child was oldest object */
cullready[oldest_ready] = (void *)(0x6b000000 | __LINE__);
oldest_ready--;
put_object(child);
goto removed;
}
else if (loop < oldest_ready) {
/* child was somewhere in between */
memmove(&cullready[loop],
&cullready[loop + 1],
(oldest_ready - loop) * sizeof(cullready[0]));
cullready[oldest_ready] = (void *)(0x6b000000 | __LINE__);
oldest_ready--;
put_object(child);
goto removed;
}
for (loop = 0; loop <= oldest_build; loop++)
if (cullbuild[loop] == child)
break;
if (loop == oldest_build) {
/* child was oldest object */
cullbuild[oldest_build] = (void *)(0x6b000000 | __LINE__);
oldest_build--;
put_object(child);
}
else if (loop < oldest_build) {
/* child was somewhere in between */
memmove(&cullbuild[loop],
&cullbuild[loop + 1],
(oldest_build - loop) * sizeof(cullbuild[0]));
cullbuild[oldest_build] = (void *)(0x6b000000 | __LINE__);
oldest_build--;
put_object(child);
}
removed:
;
}
/* add objects that aren't in use to the cull table */
if (!is_object_in_use(dirent.d_name)) {
debug(2, "- insert");
child->new = 0;
insert_into_cull_table(child);
}
put_object(child);
goto next;
/* investigate all index and index-intermediate directories */
case OBJTYPE_INDEX:
case OBJTYPE_INTERMEDIATE:
debug(2, "- descend");
child->new = 0;
scan = child;
debug(2, "<-- build_cull_table({%s})", curr->name);
return;
default:
error("Unexpected type");
}
/* we've finished reading a directory - see if we can cull it */
dir_read_complete:
debug(2, "dir_read_complete: u=%d e=%d %s",
curr->usage, curr->empty, curr->name);
if (curr->dir) {
if (curr != &root) {
closedir(curr->dir);
curr->dir = NULL;
nopendir--;
}
else {
rewinddir(curr->dir);
}
}
if (curr->usage == 1 && curr->empty) {
/* attempt to cull unpinned empty intermediate and index
* objects */
if (fchdir(dirfd(curr->parent->dir)) < 0)
oserror("Failed to change current directory");
switch (curr->type) {
case OBJTYPE_INDEX:
cull_file(curr->name);
break;
case OBJTYPE_INTERMEDIATE:
unlinkat(dirfd(curr->parent->dir), curr->name,
AT_REMOVEDIR);
break;
default:
break;
}
}
scan = curr->parent;
if (!scan) {
debug(1, "Scan complete");
decant_cull_table();
}
debug(2, "<-- build_cull_table({%s})", curr->name);
put_object(curr);
return;
/* delete unexpected objects that we've found */
found_unexpected_object:
debug(2, "found_unexpected_object");
destroy_unexpected_object(curr, &dirent);
goto next;
}
/*****************************************************************************/
/*
* decant cull entries from the build table to the ready table and enable them
*/
static void decant_cull_table(void)
{
int loop, space, avail, copy, leave, n;
if (scan)
error("Can't decant cull table whilst scanning");
/* if nothing there, scan again in a short while */
if (oldest_build < 0) {
signal(SIGALRM, sigalrm);
alarm(30);
return;
}
/* mark the new entries cullable */
for (loop = 0; loop <= oldest_build; loop++) {
if (!cullbuild[loop]->cullable) {
cullbuild[loop]->cullable = 1;
ncullable++;
}
}
/* if the ready table is empty, copy the whole lot across */
if (oldest_ready == -1) {
copy = oldest_build + 1;
debug(1, "Decant (all %d)", copy);
n = copy * sizeof(cullready[0]);
memcpy(cullready, cullbuild, n);
memset(cullbuild, 0x6e, n);
oldest_ready = oldest_build;
oldest_build = -1;
goto check;
}
/* decant some of the build table if there's space */
space = culltable_size - (oldest_ready + 1);
if (space <= 0) {
if (space < 0)
error("Less than zero space in ready table");
goto check;
}
/* work out how much of the build table we can copy */
copy = avail = oldest_build + 1;
if (copy > space)
copy = space;
leave = avail - copy;
debug(1, "Decant (%d/%d to %d)", copy, avail, space);
/* make a hole in the ready table transfer "copy" elements from the end
* of cullbuild (oldest) to the beginning of cullready (youngest)
*/
n = oldest_ready + 1;
memmove(&cullready[copy], &cullready[0], n * sizeof(cullready[0]));
oldest_ready += copy;
memcpy(&cullready[0], &cullbuild[leave], copy * sizeof(cullready[0]));
memset(&cullbuild[leave], 0x6b, copy * sizeof(cullbuild[0]));
oldest_build = leave - 1;
if (copy + leave > culltable_size)
error("Scan table exceeded (%d+%d)", copy, leave);
check:
for (loop = 0; loop < oldest_ready; loop++)
if (((long)cullready[loop] & 0xf0000000) == 0x60000000)
abort();
}
/*****************************************************************************/
/*
* get the directory handle for the given directory
*/
static int get_dir_fd(struct object *dir)
{
int parentfd, fd;
debug(1, "get_dir_fd(%s)", dir->name);
if (dir->dir) {
fd = dup(dirfd(dir->dir));
if (fd < 0)
oserror("Failed to dup fd");
debug(1, "cache fd to %d", fd);
return fd;
}
parentfd = get_dir_fd(dir->parent);
fd = openat(parentfd, dir->name, O_DIRECTORY);
if (fd < 0 && errno != ENOENT)
oserror("Failed to open directory");
/* return parent fd or -1 if ENOENT */
debug(1, "<%d>/%s to %d", parentfd, dir->name, fd);
close(parentfd);
return fd;
}
/*****************************************************************************/
/*
* cull an object
*/
static void cull_object(struct object *object)
{
struct stat64 st;
int dirfd;
debug(1, "CULL %s", object->name);
dirfd = get_dir_fd(object->parent);
if (dirfd >= 0) {
if (fstatat64(dirfd, object->name, &st, 0) < 0) {
if (errno != ENOENT)
oserror("Failed to re-stat object");
close(dirfd);
goto object_already_gone;
}
if (fchdir(dirfd) < 0)
oserror("Failed to change current directory");
if (object->atime >= st.st_atime)
cull_file(object->name);
close(dirfd);
}
object_already_gone:
put_object(object);
}
/*****************************************************************************/
/*
* consider starting a cull
*/
static void cull_objects(void)
{
if (ncullable <= 0)
error("Cullable object count is inconsistent");
if (cullready[oldest_ready]->cullable) {
cull_object(cullready[oldest_ready]);
cullready[oldest_ready] = (void *)(0x6b000000 | __LINE__);
oldest_ready--;
}
/* must start refilling the cull table */
if (!scan && oldest_build <= culltable_size / 2 + 2) {
decant_cull_table();
debug(1, "Refilling cull table");
root.usage++;
scan = &root;
}
}
|