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
|
/* ----------------------------------------------------------------------- *
*
* 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/types.h>
#include <sys/stat.h>
#include "automount.h"
void cache_dump_multi(struct list_head *list)
{
struct list_head *p;
struct mapent *me;
list_for_each(p, list) {
me = list_entry(p, struct mapent, multi_list);
logmsg("key=%s", me->key);
}
}
void cache_dump_cache(struct mapent_cache *mc)
{
struct mapent *me;
unsigned int i;
for (i = 0; i < mc->size; i++) {
me = mc->hash[i];
if (me == NULL)
continue;
while (me) {
logmsg("me->key=%s me->multi=%p dev=%ld ino=%ld",
me->key, me->multi, me->dev, me->ino);
me = me->next;
}
}
}
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;
}
void cache_multi_readlock(struct mapent *me)
{
int status;
if (!me)
return;
status = pthread_rwlock_rdlock(&me->multi_rwlock);
if (status) {
logmsg("mapent cache multi mutex lock failed");
fatal(status);
}
return;
}
void cache_multi_writelock(struct mapent *me)
{
int status;
if (!me)
return;
status = pthread_rwlock_wrlock(&me->multi_rwlock);
if (status) {
logmsg("mapent cache multi mutex lock failed");
fatal(status);
}
return;
}
void cache_multi_unlock(struct mapent *me)
{
int status;
if (!me)
return;
status = pthread_rwlock_unlock(&me->multi_rwlock);
if (status) {
logmsg("mapent cache multi mutex unlock failed");
fatal(status);
}
return;
}
void cache_multi_lock_cleanup(void *arg)
{
struct mapent *me = (struct mapent *) arg;
cache_multi_unlock(me);
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;
}
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 hash(const char *key, unsigned int size)
{
u_int32_t hashval;
char *s = (char *) key;
for (hashval = 0; *s != '\0';) {
hashval += (unsigned char) *s++;
hashval += (hashval << 10);
hashval ^= (hashval >> 6);
}
hashval += (hashval << 3);
hashval ^= (hashval >> 11);
hashval += (hashval << 15);
return hashval % size;
}
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, const char *key, dev_t dev, ino_t ino)
{
u_int32_t ino_index = ino_hash(dev, ino, mc->size);
struct mapent *me;
me = cache_lookup_distinct(mc, key);
if (!me)
return 0;
ino_index_lock(mc);
list_del_init(&me->ino_index);
list_add(&me->ino_index, &mc->ino_index[ino_index]);
me->dev = dev;
me->ino = ino;
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 (me->multi && me->multi != 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 (this->multi && this->multi != 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 (this->multi && this->multi != 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 (me->multi && me->multi != 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;
}
/* Lookup an offset within a multi-mount entry */
struct mapent *cache_lookup_offset(const char *prefix, const char *offset, int start, struct list_head *head)
{
struct list_head *p;
struct mapent *this;
/* Keys for direct maps may be as long as a path name */
char o_key[PATH_MAX];
/* Avoid "//" at the beginning of paths */
const char *path_prefix = strlen(prefix) > 1 ? prefix : "";
size_t size;
/* root offset duplicates "/" */
size = snprintf(o_key, sizeof(o_key), "%s%s", path_prefix, offset);
if (size >= sizeof(o_key))
return NULL;
list_for_each(p, head) {
this = list_entry(p, struct mapent, multi_list);
if (!strcmp(&this->key[start], o_key))
return this;
}
return NULL;
}
/* cache must be read locked by caller */
struct mapent *cache_partial_match(struct mapent_cache *mc, const char *prefix)
{
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] == '/')
return me;
me = me->next;
while (me != NULL) {
if (len < strlen(me->key) &&
strncmp(prefix, me->key, len) == 0 && me->key[len] == '/')
return me;
me = me->next;
}
}
return NULL;
}
/* 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);
int status;
me = (struct mapent *) malloc(sizeof(struct mapent));
if (!me)
return CHE_FAIL;
pkey = malloc(strlen(key) + 1);
if (!pkey) {
free(me);
return CHE_FAIL;
}
me->key = strcpy(pkey, key);
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->age = age;
me->status = 0;
me->mc = mc;
me->source = ms;
INIT_LIST_HEAD(&me->ino_index);
INIT_LIST_HEAD(&me->multi_list);
me->multi = NULL;
me->parent = NULL;
me->ioctlfd = -1;
me->dev = (dev_t) -1;
me->ino = (ino_t) -1;
me->flags = 0;
status = pthread_rwlock_init(&me->multi_rwlock, NULL);
if (status)
fatal(status);
/*
* 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;
}
me->next = existing->next;
existing->next = me;
}
return CHE_OK;
}
/* cache must be write locked by caller */
static void cache_add_ordered_offset(struct mapent *me, struct list_head *head)
{
struct list_head *p;
struct mapent *this;
list_for_each(p, head) {
size_t tlen;
int eq;
this = list_entry(p, struct mapent, multi_list);
tlen = strlen(this->key);
eq = strncmp(this->key, me->key, tlen);
if (!eq && tlen == strlen(me->key))
return;
if (eq > 0) {
list_add_tail(&me->multi_list, p);
return;
}
}
list_add_tail(&me->multi_list, p);
return;
}
/* 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->multi != owner)
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;
}
me = cache_lookup_distinct(mc, key);
if (me) {
cache_add_ordered_offset(me, &owner->multi_list);
me->multi = owner;
goto done;
}
ret = CHE_FAIL;
done:
return ret;
}
static struct mapent *get_parent(const char *key, struct list_head *head, struct list_head **pos)
{
struct list_head *next;
struct mapent *this, *last;
int eq;
last = NULL;
next = *pos ? (*pos)->next : head->next;
list_for_each(next, head) {
this = list_entry(next, struct mapent, multi_list);
if (!strcmp(this->key, key))
break;
eq = strncmp(this->key, key, strlen(this->key));
if (eq == 0) {
*pos = next;
last = this;
continue;
}
}
return last;
}
int cache_set_parents(struct mapent *mm)
{
struct list_head *multi_head, *p, *pos;
struct mapent *this;
if (!mm->multi)
return 0;
pos = NULL;
multi_head = &mm->multi->multi_list;
list_for_each(p, multi_head) {
struct mapent *parent;
this = list_entry(p, struct mapent, multi_list);
parent = get_parent(this->key, multi_head, &pos);
if (parent)
this->parent = parent;
else
this->parent = mm->multi;
}
return 1;
}
/* 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_multi_lock of the multi mount owner must be held by caller */
int cache_delete_offset(struct mapent_cache *mc, const char *key)
{
u_int32_t hashval = hash(key, mc->size);
struct mapent *me = NULL, *pred;
int status;
me = mc->hash[hashval];
if (!me)
return CHE_FAIL;
if (strcmp(key, me->key) == 0) {
if (me->multi && me->multi == me)
return CHE_FAIL;
mc->hash[hashval] = me->next;
goto delete;
}
while (me->next != NULL) {
pred = me;
me = me->next;
if (strcmp(key, me->key) == 0) {
if (me->multi && me->multi == me)
return CHE_FAIL;
pred->next = me->next;
goto delete;
}
}
return CHE_FAIL;
delete:
status = pthread_rwlock_destroy(&me->multi_rwlock);
if (status)
fatal(status);
list_del(&me->multi_list);
ino_index_lock(mc);
list_del(&me->ino_index);
ino_index_unlock(mc);
free(me->key);
if (me->mapent)
free(me->mapent);
free(me);
return CHE_OK;
}
/* 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 status, ret = CHE_OK;
char this[PATH_MAX];
strcpy(this, key);
me = mc->hash[hashval];
if (!me) {
ret = CHE_FAIL;
goto done;
}
while (me->next != NULL) {
pred = me;
me = me->next;
if (strcmp(this, me->key) == 0) {
if (me->multi && !list_empty(&me->multi_list)) {
ret = CHE_FAIL;
goto done;
}
pred->next = me->next;
status = pthread_rwlock_destroy(&me->multi_rwlock);
if (status)
fatal(status);
ino_index_lock(mc);
list_del(&me->ino_index);
ino_index_unlock(mc);
free(me->key);
if (me->mapent)
free(me->mapent);
free(me);
me = pred;
}
}
me = mc->hash[hashval];
if (!me)
goto done;
if (strcmp(this, me->key) == 0) {
if (me->multi && !list_empty(&me->multi_list)) {
ret = CHE_FAIL;
goto done;
}
mc->hash[hashval] = me->next;
status = pthread_rwlock_destroy(&me->multi_rwlock);
if (status)
fatal(status);
ino_index_lock(mc);
list_del(&me->ino_index);
ino_index_unlock(mc);
free(me->key);
if (me->mapent)
free(me->mapent);
free(me);
}
done:
return ret;
}
/* cache must be write locked by caller */
int cache_delete_offset_list(struct mapent_cache *mc, const char *key)
{
unsigned logopt = mc->ap ? mc->ap->logopt : master_get_logopt();
struct mapent *me;
struct mapent *this;
struct list_head *head, *next;
int remain = 0;
int status;
me = cache_lookup_distinct(mc, key);
if (!me)
return CHE_FAIL;
/* Not offset list owner */
if (me->multi != me)
return CHE_FAIL;
head = &me->multi_list;
next = head->next;
while (next != head) {
this = list_entry(next, struct mapent, multi_list);
next = next->next;
if (this->ioctlfd != -1) {
error(logopt,
"active offset mount key %s", this->key);
return CHE_FAIL;
}
}
head = &me->multi_list;
next = head->next;
while (next != head) {
this = list_entry(next, struct mapent, multi_list);
next = next->next;
list_del_init(&this->multi_list);
this->multi = NULL;
debug(logopt, "deleting offset key %s", this->key);
status = cache_delete(mc, this->key);
if (status == CHE_FAIL) {
warn(logopt,
"failed to delete offset %s", this->key);
this->multi = me;
/* TODO: add list back in */
remain++;
}
}
if (!remain) {
list_del_init(&me->multi_list);
me->multi = NULL;
}
if (remain)
return CHE_FAIL;
return CHE_OK;
}
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);
}
/*
* Get each offset from list head under prefix.
* Maintain traversal current position in pos for subsequent calls.
* Return each offset into offset.
* TODO: length check on offset.
*/
/* cache must be read locked by caller */
char *cache_get_offset(const char *prefix, char *offset, int start,
struct list_head *head, struct list_head **pos)
{
struct list_head *next;
struct mapent *this;
size_t plen = strlen(prefix);
size_t len = 0;
if (*pos == head)
return NULL;
/* Find an offset */
*offset = '\0';
next = *pos ? (*pos)->next : head->next;
while (next != head) {
char *offset_start, *pstart, *pend;
this = list_entry(next, struct mapent, multi_list);
*pos = next;
next = next->next;
offset_start = &this->key[start];
if (strlen(offset_start) <= plen)
continue;
if (!strncmp(prefix, offset_start, plen)) {
/* "/" doesn't count for root offset */
if (plen == 1)
pstart = &offset_start[plen - 1];
else
pstart = &offset_start[plen];
/* not part of this sub-tree */
if (*pstart != '/')
continue;
/* get next offset */
pend = pstart;
while (*pend++) ;
len = pend - pstart - 1;
strncpy(offset, pstart, len);
offset[len] ='\0';
break;
}
}
/* Seek to next offset */
while (next != head) {
char *offset_start, *pstart;
this = list_entry(next, struct mapent, multi_list);
offset_start = &this->key[start];
if (strlen(offset_start) <= plen + len)
break;
/* "/" doesn't count for root offset */
if (plen == 1)
pstart = &offset_start[plen - 1];
else
pstart = &offset_start[plen];
/* not part of this sub-tree */
if (*pstart != '/')
break;
/* new offset */
if (!*(pstart + len + 1))
break;
/* compare offset */
if (pstart[len] != '/' || strncmp(offset, pstart, len))
break;
*pos = next;
next = next->next;
}
return *offset ? offset : NULL;
}
|