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
|
/* ----------------------------------------------------------------------- *
*
* cache.c - mount entry cache management routines
*
* Copyright 2002-2005 Ian Kent <raven@themaw.net> - All Rights Reserved
*
* 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, Inc., 675 Mass Ave, Cambridge MA 02139,
* USA; either version 2 of the License, or (at your option) any later
* version; incorporated herein by reference.
*
* ----------------------------------------------------------------------- */
#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <stdio.h>
#include <sys/param.h>
#include <sys/stat.h>
#include "automount.h"
void cache_readlock(struct mapent_cache *mc)
{
int status;
status = pthread_rwlock_rdlock(&mc->rwlock);
if (status) {
logmsg("mapent cache rwlock lock failed");
fatal(status);
}
return;
}
void cache_writelock(struct mapent_cache *mc)
{
int status;
status = pthread_rwlock_wrlock(&mc->rwlock);
if (status) {
logmsg("mapent cache rwlock lock failed");
fatal(status);
}
return;
}
int cache_try_writelock(struct mapent_cache *mc)
{
int status;
status = pthread_rwlock_trywrlock(&mc->rwlock);
if (status) {
logmsg("mapent cache rwlock busy");
return 0;
}
return 1;
}
void cache_unlock(struct mapent_cache *mc)
{
int status;
status = pthread_rwlock_unlock(&mc->rwlock);
if (status) {
logmsg("mapent cache rwlock unlock failed");
fatal(status);
}
return;
}
void cache_lock_cleanup(void *arg)
{
struct mapent_cache *mc = (struct mapent_cache *) arg;
cache_unlock(mc);
return;
}
static inline void ino_index_lock(struct mapent_cache *mc)
{
int status = pthread_mutex_lock(&mc->ino_index_mutex);
if (status)
fatal(status);
return;
}
static inline void ino_index_unlock(struct mapent_cache *mc)
{
int status = pthread_mutex_unlock(&mc->ino_index_mutex);
if (status)
fatal(status);
return;
}
/* Save the cache entry mapent field onto a stack and set a new mapent */
int cache_push_mapent(struct mapent *me, char *mapent)
{
struct stack *s;
char *new;
if (!me->mapent)
return CHE_FAIL;
if (!mapent)
new = NULL;
else {
new = strdup(mapent);
if (!new)
return CHE_FAIL;
}
s = malloc(sizeof(struct stack));
if (!s) {
if (new)
free(new);
return CHE_FAIL;
}
memset(s, 0, sizeof(*s));
s->mapent = me->mapent;
s->age = me->age;
me->mapent = new;
if (me->stack)
s->next = me->stack;
me->stack = s;
return CHE_OK;
}
/* Restore cache entry mapent to a previously saved mapent, discard current */
int cache_pop_mapent(struct mapent *me)
{
struct stack *s = me->stack;
char *mapent;
time_t age;
if (!s || !s->mapent)
return CHE_FAIL;
mapent = s->mapent;
age = s->age;
me->stack = s->next;
free(s);
if (age < me->age) {
free(mapent);
return CHE_OK;
}
if (me->mapent)
free(me->mapent);
me->mapent = mapent;
return CHE_OK;
}
struct mapent_cache *cache_init(struct autofs_point *ap, struct map_source *map)
{
struct mapent_cache *mc;
unsigned int i;
int status;
if (map->mc)
cache_release(map);
mc = malloc(sizeof(struct mapent_cache));
if (!mc)
return NULL;
mc->size = defaults_get_map_hash_table_size();
mc->hash = malloc(mc->size * sizeof(struct mapent *));
if (!mc->hash) {
free(mc);
return NULL;
}
mc->ino_index = malloc(mc->size * sizeof(struct list_head));
if (!mc->ino_index) {
free(mc->hash);
free(mc);
return NULL;
}
status = pthread_mutex_init(&mc->ino_index_mutex, NULL);
if (status)
fatal(status);
status = pthread_rwlock_init(&mc->rwlock, NULL);
if (status)
fatal(status);
cache_writelock(mc);
for (i = 0; i < mc->size; i++) {
mc->hash[i] = NULL;
INIT_LIST_HEAD(&mc->ino_index[i]);
}
mc->ap = ap;
mc->map = map;
cache_unlock(mc);
return mc;
}
void cache_clean_null_cache(struct mapent_cache *mc)
{
struct mapent *me, *next;
int i;
for (i = 0; i < mc->size; i++) {
me = mc->hash[i];
if (me == NULL)
continue;
next = me->next;
free(me->key);
if (me->mapent)
free(me->mapent);
free(me);
while (next != NULL) {
me = next;
next = me->next;
free(me->key);
free(me);
}
mc->hash[i] = NULL;
}
return;
}
struct mapent_cache *cache_init_null_cache(struct master *master)
{
struct mapent_cache *mc;
unsigned int i;
int status;
mc = malloc(sizeof(struct mapent_cache));
if (!mc)
return NULL;
mc->size = NULL_MAP_HASHSIZE;
mc->hash = malloc(mc->size * sizeof(struct mapent *));
if (!mc->hash) {
free(mc);
return NULL;
}
mc->ino_index = malloc(mc->size * sizeof(struct list_head));
if (!mc->ino_index) {
free(mc->hash);
free(mc);
return NULL;
}
status = pthread_mutex_init(&mc->ino_index_mutex, NULL);
if (status)
fatal(status);
status = pthread_rwlock_init(&mc->rwlock, NULL);
if (status)
fatal(status);
for (i = 0; i < mc->size; i++) {
mc->hash[i] = NULL;
INIT_LIST_HEAD(&mc->ino_index[i]);
}
mc->ap = NULL;
mc->map = NULL;
return mc;
}
static u_int32_t ino_hash(dev_t dev, ino_t ino, unsigned int size)
{
u_int32_t hashval;
hashval = dev + ino;
return hashval % size;
}
int cache_set_ino_index(struct mapent_cache *mc, struct mapent *me)
{
u_int32_t ino_index = ino_hash(me->dev, me->ino, mc->size);
ino_index_lock(mc);
list_del_init(&me->ino_index);
list_add(&me->ino_index, &mc->ino_index[ino_index]);
ino_index_unlock(mc);
return 1;
}
/* cache must be read locked by caller */
struct mapent *cache_lookup_ino(struct mapent_cache *mc, dev_t dev, ino_t ino)
{
struct mapent *me = NULL;
struct list_head *head, *p;
u_int32_t ino_index;
ino_index_lock(mc);
ino_index = ino_hash(dev, ino, mc->size);
head = &mc->ino_index[ino_index];
list_for_each(p, head) {
me = list_entry(p, struct mapent, ino_index);
if (me->dev != dev || me->ino != ino)
continue;
ino_index_unlock(mc);
return me;
}
ino_index_unlock(mc);
return NULL;
}
/* cache must be read locked by caller */
struct mapent *cache_lookup_first(struct mapent_cache *mc)
{
struct mapent *me = NULL;
unsigned int i;
for (i = 0; i < mc->size; i++) {
me = mc->hash[i];
if (!me)
continue;
while (me) {
/* Multi mount entries are not primary */
if (IS_MM(me) && !IS_MM_ROOT(me)) {
me = me->next;
continue;
}
return me;
}
}
return NULL;
}
/* cache must be read locked by caller */
struct mapent *cache_lookup_next(struct mapent_cache *mc, struct mapent *me)
{
struct mapent *this;
u_int32_t hashval;
unsigned int i;
if (!me)
return NULL;
this = me->next;
while (this) {
/* Multi mount entries are not primary */
if (IS_MM(this) && !IS_MM_ROOT(this)) {
this = this->next;
continue;
}
return this;
}
hashval = hash(me->key, mc->size) + 1;
if (hashval < mc->size) {
for (i = (unsigned int) hashval; i < mc->size; i++) {
this = mc->hash[i];
if (!this)
continue;
while (this) {
/* Multi mount entries are not primary */
if (IS_MM(this) && !IS_MM_ROOT(this)) {
this = this->next;
continue;
}
return this;
}
}
}
return NULL;
}
/* cache must be read locked by caller */
struct mapent *cache_lookup_key_next(struct mapent *me)
{
struct mapent *next;
if (!me)
return NULL;
next = me->next;
while (next) {
/* Multi mount entries are not primary */
if (IS_MM(me) && !IS_MM_ROOT(me))
continue;
if (!strcmp(me->key, next->key))
return next;
next = next->next;
}
return NULL;
}
/* cache must be read locked by caller */
struct mapent *cache_lookup(struct mapent_cache *mc, const char *key)
{
struct mapent *me = NULL;
if (!key)
return NULL;
for (me = mc->hash[hash(key, mc->size)]; me != NULL; me = me->next) {
if (strcmp(key, me->key) == 0)
goto done;
}
me = cache_lookup_first(mc);
if (me != NULL) {
/* Can't have wildcard in direct map */
if (*me->key == '/') {
me = NULL;
goto done;
}
for (me = mc->hash[hash("*", mc->size)]; me != NULL; me = me->next)
if (strcmp("*", me->key) == 0)
goto done;
}
done:
return me;
}
/* cache must be read locked by caller */
struct mapent *cache_lookup_distinct(struct mapent_cache *mc, const char *key)
{
struct mapent *me;
if (!key)
return NULL;
for (me = mc->hash[hash(key, mc->size)]; me != NULL; me = me->next) {
if (strcmp(key, me->key) == 0)
return me;
}
return NULL;
}
/* cache must be read locked by caller */
static struct mapent *__cache_partial_match(struct mapent_cache *mc,
const char *prefix,
unsigned int type)
{
struct mapent *me = NULL;
size_t len = strlen(prefix);
unsigned int i;
for (i = 0; i < mc->size; i++) {
me = mc->hash[i];
if (me == NULL)
continue;
if (len < strlen(me->key) &&
(strncmp(prefix, me->key, len) == 0) &&
me->key[len] == '/') {
if (type == LKP_NORMAL)
return me;
if (type == LKP_WILD &&
me->key[len] != '\0' &&
me->key[len + 1] == '*')
return me;
}
me = me->next;
while (me != NULL) {
if (len < strlen(me->key) &&
(strncmp(prefix, me->key, len) == 0 &&
me->key[len] == '/')) {
if (type == LKP_NORMAL)
return me;
if (type == LKP_WILD &&
me->key[len] != '\0' &&
me->key[len + 1] == '*')
return me;
}
me = me->next;
}
}
return NULL;
}
/* cache must be read locked by caller */
struct mapent *cache_partial_match(struct mapent_cache *mc, const char *prefix)
{
return __cache_partial_match(mc, prefix, LKP_NORMAL);
}
/* cache must be read locked by caller */
struct mapent *cache_partial_match_wild(struct mapent_cache *mc, const char *prefix)
{
return __cache_partial_match(mc, prefix, LKP_WILD);
}
/* cache must be write locked by caller */
int cache_add(struct mapent_cache *mc, struct map_source *ms, const char *key, const char *mapent, time_t age)
{
struct mapent *me, *existing = NULL;
char *pkey, *pent;
u_int32_t hashval = hash(key, mc->size);
size_t len;
me = (struct mapent *) malloc(sizeof(struct mapent));
if (!me)
return CHE_FAIL;
len = strlen(key);
pkey = malloc(len + 1);
if (!pkey) {
free(me);
return CHE_FAIL;
}
me->key = strcpy(pkey, key);
me->len = len;
if (mapent) {
pent = malloc(strlen(mapent) + 1);
if (!pent) {
free(me);
free(pkey);
return CHE_FAIL;
}
me->mapent = strcpy(pent, mapent);
} else
me->mapent = NULL;
me->stack = NULL;
me->age = age;
me->status = 0;
me->mc = mc;
me->source = ms;
me->mm_root = NULL;
me->mm_parent = NULL;
INIT_TREE_NODE(&me->node);
INIT_LIST_HEAD(&me->ino_index);
INIT_LIST_HEAD(&me->work);
me->ioctlfd = -1;
me->dev = (dev_t) -1;
me->ino = (ino_t) -1;
me->flags = 0;
me->next = NULL;
/*
* We need to add to the end if values exist in order to
* preserve the order in which the map was read on lookup.
*/
existing = cache_lookup_distinct(mc, key);
if (!existing) {
me->next = mc->hash[hashval];
mc->hash[hashval] = me;
} else {
while (1) {
struct mapent *next;
next = cache_lookup_key_next(existing);
if (!next)
break;
existing = next;
}
existing->next = me;
}
return CHE_OK;
}
/* cache must be write locked by caller */
int cache_update_offset(struct mapent_cache *mc, const char *mkey, const char *key, const char *mapent, time_t age)
{
unsigned logopt = mc->ap ? mc->ap->logopt : master_get_logopt();
struct mapent *me, *owner;
int ret = CHE_OK;
owner = cache_lookup_distinct(mc, mkey);
if (!owner)
return CHE_FAIL;
me = cache_lookup_distinct(mc, key);
if (me && me->age == age) {
if (me == owner || strcmp(me->key, key) == 0) {
char *pent;
warn(logopt,
"duplcate offset detected for key %s", me->key);
pent = malloc(strlen(mapent) + 1);
if (!pent)
warn(logopt,
"map entry not updated: %s", me->mapent);
else {
if (me->mapent)
free(me->mapent);
me->mapent = strcpy(pent, mapent);
warn(logopt,
"map entry updated with: %s", mapent);
}
return CHE_DUPLICATE;
}
}
ret = cache_update(mc, owner->source, key, mapent, age);
if (ret == CHE_FAIL) {
warn(logopt, "failed to add key %s to cache", key);
return CHE_FAIL;
}
return ret;
}
/* Called with cache_lock held for map entry me and is released
* on return.
*/
int cache_lookup_negative(struct mapent *me, const char *key)
{
if (me->status >= monotonic_time(NULL)) {
cache_unlock(me->mc);
return CHE_UNAVAIL;
} else {
struct mapent_cache *smc = me->mc;
struct mapent *sme;
if (me->mapent)
cache_unlock(smc);
else {
cache_unlock(smc);
cache_writelock(smc);
sme = cache_lookup_distinct(smc, key);
/* Negative timeout expired for non-existent entry. */
if (sme && !sme->mapent) {
if (cache_pop_mapent(sme) == CHE_FAIL)
cache_delete(smc, key);
}
cache_unlock(smc);
}
}
return CHE_OK;
}
void cache_update_negative(struct mapent_cache *mc,
struct map_source *ms, const char *key,
time_t timeout)
{
time_t now = monotonic_time(NULL);
struct mapent *me;
int rv = CHE_OK;
/* Don't update the wildcard */
if (strlen(key) == 1 && *key == '*')
return;
me = cache_lookup_distinct(mc, key);
if (me)
rv = cache_push_mapent(me, NULL);
else
rv = cache_update(mc, ms, key, NULL, now);
if (rv != CHE_FAIL) {
me = cache_lookup_distinct(mc, key);
if (me)
me->status = now + timeout;
}
return;
}
struct mapent *cache_get_offset_parent(struct mapent_cache *mc, const char *key)
{
struct mapent *me;
char *parent, *tail;
int key_len;
key_len = strlen(key);
/* Check if this is the root offset */
if (key[key_len - 1] == '/')
return NULL;
parent = strdup(key);
tail = &parent[key_len - 1];
while (*tail) {
while (*tail != '/')
tail--;
*tail = 0;
tail--;
if (tail <= parent)
break;
me = cache_lookup_distinct(mc, parent);
if (me) {
free(parent);
return me;
}
}
free(parent);
return NULL;
}
/* cache must be write locked by caller */
int cache_update(struct mapent_cache *mc, struct map_source *ms, const char *key, const char *mapent, time_t age)
{
unsigned logopt = mc->ap ? mc->ap->logopt : master_get_logopt();
struct mapent *me = NULL;
char *pent;
int ret = CHE_OK;
me = cache_lookup(mc, key);
while (me && me->source != ms)
me = cache_lookup_key_next(me);
if (!me || (!strcmp(me->key, "*") && strcmp(key, "*"))) {
ret = cache_add(mc, ms, key, mapent, age);
if (!ret) {
debug(logopt, "failed for %s", key);
return CHE_FAIL;
}
ret = CHE_UPDATED;
} else {
/* Already seen one of these */
if (me->age == age)
return CHE_OK;
if (!mapent) {
if (me->mapent)
free(me->mapent);
me->mapent = NULL;
} else if (!me->mapent || strcmp(me->mapent, mapent) != 0) {
pent = malloc(strlen(mapent) + 1);
if (pent == NULL)
return CHE_FAIL;
if (me->mapent)
free(me->mapent);
me->mapent = strcpy(pent, mapent);
ret = CHE_UPDATED;
}
me->age = age;
}
return ret;
}
/* cache must be write locked by caller */
int cache_delete(struct mapent_cache *mc, const char *key)
{
struct mapent *me = NULL, *pred;
u_int32_t hashval = hash(key, mc->size);
int ret = CHE_OK;
me = mc->hash[hashval];
if (!me)
goto done;
while (me->next != NULL) {
pred = me;
me = me->next;
if (strcmp(key, me->key) == 0) {
struct stack *s = me->stack;
if (IS_MM(me)) {
ret = CHE_FAIL;
goto done;
}
pred->next = me->next;
ino_index_lock(mc);
list_del(&me->ino_index);
ino_index_unlock(mc);
free(me->key);
if (me->mapent)
free(me->mapent);
while (s) {
struct stack *next = s->next;
if (s->mapent)
free(s->mapent);
free(s);
s = next;
}
free(me);
me = pred;
}
}
me = mc->hash[hashval];
if (!me)
goto done;
if (strcmp(key, me->key) == 0) {
struct stack *s = me->stack;
if (IS_MM(me)) {
ret = CHE_FAIL;
goto done;
}
mc->hash[hashval] = me->next;
ino_index_lock(mc);
list_del(&me->ino_index);
ino_index_unlock(mc);
free(me->key);
if (me->mapent)
free(me->mapent);
while (s) {
struct stack *next = s->next;
if (s->mapent)
free(s->mapent);
free(s);
s = next;
}
free(me);
}
done:
return ret;
}
void cache_release(struct map_source *map)
{
struct mapent_cache *mc;
struct mapent *me, *next;
int status;
unsigned int i;
mc = map->mc;
cache_writelock(mc);
for (i = 0; i < mc->size; i++) {
me = mc->hash[i];
if (me == NULL)
continue;
next = me->next;
free(me->key);
if (me->mapent)
free(me->mapent);
free(me);
while (next != NULL) {
me = next;
next = me->next;
free(me->key);
if (me->mapent)
free(me->mapent);
free(me);
}
}
map->mc = NULL;
cache_unlock(mc);
status = pthread_mutex_destroy(&mc->ino_index_mutex);
if (status)
fatal(status);
status = pthread_rwlock_destroy(&mc->rwlock);
if (status)
fatal(status);
free(mc->hash);
free(mc->ino_index);
free(mc);
}
void cache_release_null_cache(struct master *master)
{
struct mapent_cache *mc;
struct mapent *me, *next;
int status;
unsigned int i;
mc = master->nc;
cache_writelock(mc);
for (i = 0; i < mc->size; i++) {
me = mc->hash[i];
if (me == NULL)
continue;
next = me->next;
free(me->key);
if (me->mapent)
free(me->mapent);
free(me);
while (next != NULL) {
me = next;
next = me->next;
free(me->key);
free(me);
}
}
master->nc = NULL;
cache_unlock(mc);
status = pthread_mutex_destroy(&mc->ino_index_mutex);
if (status)
fatal(status);
status = pthread_rwlock_destroy(&mc->rwlock);
if (status)
fatal(status);
free(mc->hash);
free(mc->ino_index);
free(mc);
}
/* cache must be read locked by caller */
struct mapent *cache_enumerate(struct mapent_cache *mc, struct mapent *me)
{
if (!me)
return cache_lookup_first(mc);
return cache_lookup_next(mc, me);
}
|