1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* netfs cookie management 3 * 4 * Copyright (C) 2021 Red Hat, Inc. All Rights Reserved. 5 * Written by David Howells (dhowells@redhat.com) 6 * 7 * See Documentation/filesystems/caching/netfs-api.rst for more information on 8 * the netfs API. 9 */ 10 11 #define FSCACHE_DEBUG_LEVEL COOKIE 12 #include <linux/module.h> 13 #include <linux/slab.h> 14 #include "internal.h" 15 16 struct kmem_cache *fscache_cookie_jar; 17 18 static void fscache_cookie_lru_timed_out(struct timer_list *timer); 19 static void fscache_cookie_lru_worker(struct work_struct *work); 20 static void fscache_cookie_worker(struct work_struct *work); 21 static void fscache_unhash_cookie(struct fscache_cookie *cookie); 22 static void fscache_perform_invalidation(struct fscache_cookie *cookie); 23 24 #define fscache_cookie_hash_shift 15 25 static struct hlist_bl_head fscache_cookie_hash[1 << fscache_cookie_hash_shift]; 26 static LIST_HEAD(fscache_cookies); 27 static DEFINE_RWLOCK(fscache_cookies_lock); 28 static LIST_HEAD(fscache_cookie_lru); 29 static DEFINE_SPINLOCK(fscache_cookie_lru_lock); 30 DEFINE_TIMER(fscache_cookie_lru_timer, fscache_cookie_lru_timed_out); 31 static DECLARE_WORK(fscache_cookie_lru_work, fscache_cookie_lru_worker); 32 static const char fscache_cookie_states[FSCACHE_COOKIE_STATE__NR] = "-LCAIFUWRD"; 33 static unsigned int fscache_lru_cookie_timeout = 10 * HZ; 34 35 void fscache_print_cookie(struct fscache_cookie *cookie, char prefix) 36 { 37 const u8 *k; 38 39 pr_err("%c-cookie c=%08x [fl=%lx na=%u nA=%u s=%c]\n", 40 prefix, 41 cookie->debug_id, 42 cookie->flags, 43 atomic_read(&cookie->n_active), 44 atomic_read(&cookie->n_accesses), 45 fscache_cookie_states[cookie->state]); 46 pr_err("%c-cookie V=%08x [%s]\n", 47 prefix, 48 cookie->volume->debug_id, 49 cookie->volume->key); 50 51 k = (cookie->key_len <= sizeof(cookie->inline_key)) ? 52 cookie->inline_key : cookie->key; 53 pr_err("%c-key=[%u] '%*phN'\n", prefix, cookie->key_len, cookie->key_len, k); 54 } 55 56 static void fscache_free_cookie(struct fscache_cookie *cookie) 57 { 58 if (WARN_ON_ONCE(!list_empty(&cookie->commit_link))) { 59 spin_lock(&fscache_cookie_lru_lock); 60 list_del_init(&cookie->commit_link); 61 spin_unlock(&fscache_cookie_lru_lock); 62 fscache_stat_d(&fscache_n_cookies_lru); 63 fscache_stat(&fscache_n_cookies_lru_removed); 64 } 65 66 if (WARN_ON_ONCE(test_bit(FSCACHE_COOKIE_IS_HASHED, &cookie->flags))) { 67 fscache_print_cookie(cookie, 'F'); 68 return; 69 } 70 71 write_lock(&fscache_cookies_lock); 72 list_del(&cookie->proc_link); 73 write_unlock(&fscache_cookies_lock); 74 if (cookie->aux_len > sizeof(cookie->inline_aux)) 75 kfree(cookie->aux); 76 if (cookie->key_len > sizeof(cookie->inline_key)) 77 kfree(cookie->key); 78 fscache_stat_d(&fscache_n_cookies); 79 kmem_cache_free(fscache_cookie_jar, cookie); 80 } 81 82 static void __fscache_queue_cookie(struct fscache_cookie *cookie) 83 { 84 if (!queue_work(fscache_wq, &cookie->work)) 85 fscache_put_cookie(cookie, fscache_cookie_put_over_queued); 86 } 87 88 static void fscache_queue_cookie(struct fscache_cookie *cookie, 89 enum fscache_cookie_trace where) 90 { 91 fscache_get_cookie(cookie, where); 92 __fscache_queue_cookie(cookie); 93 } 94 95 /* 96 * Initialise the access gate on a cookie by setting a flag to prevent the 97 * state machine from being queued when the access counter transitions to 0. 98 * We're only interested in this when we withdraw caching services from the 99 * cookie. 100 */ 101 static void fscache_init_access_gate(struct fscache_cookie *cookie) 102 { 103 int n_accesses; 104 105 n_accesses = atomic_read(&cookie->n_accesses); 106 trace_fscache_access(cookie->debug_id, refcount_read(&cookie->ref), 107 n_accesses, fscache_access_cache_pin); 108 set_bit(FSCACHE_COOKIE_NO_ACCESS_WAKE, &cookie->flags); 109 } 110 111 /** 112 * fscache_end_cookie_access - Unpin a cache at the end of an access. 113 * @cookie: A data file cookie 114 * @why: An indication of the circumstances of the access for tracing 115 * 116 * Unpin a cache cookie after we've accessed it and bring a deferred 117 * relinquishment or withdrawal state into effect. 118 * 119 * The @why indicator is provided for tracing purposes. 120 */ 121 void fscache_end_cookie_access(struct fscache_cookie *cookie, 122 enum fscache_access_trace why) 123 { 124 int n_accesses; 125 126 smp_mb__before_atomic(); 127 n_accesses = atomic_dec_return(&cookie->n_accesses); 128 trace_fscache_access(cookie->debug_id, refcount_read(&cookie->ref), 129 n_accesses, why); 130 if (n_accesses == 0 && 131 !test_bit(FSCACHE_COOKIE_NO_ACCESS_WAKE, &cookie->flags)) 132 fscache_queue_cookie(cookie, fscache_cookie_get_end_access); 133 } 134 EXPORT_SYMBOL(fscache_end_cookie_access); 135 136 /* 137 * Pin the cache behind a cookie so that we can access it. 138 */ 139 static void __fscache_begin_cookie_access(struct fscache_cookie *cookie, 140 enum fscache_access_trace why) 141 { 142 int n_accesses; 143 144 n_accesses = atomic_inc_return(&cookie->n_accesses); 145 smp_mb__after_atomic(); /* (Future) read state after is-caching. 146 * Reread n_accesses after is-caching 147 */ 148 trace_fscache_access(cookie->debug_id, refcount_read(&cookie->ref), 149 n_accesses, why); 150 } 151 152 /** 153 * fscache_begin_cookie_access - Pin a cache so data can be accessed 154 * @cookie: A data file cookie 155 * @why: An indication of the circumstances of the access for tracing 156 * 157 * Attempt to pin the cache to prevent it from going away whilst we're 158 * accessing data and returns true if successful. This works as follows: 159 * 160 * (1) If the cookie is not being cached (ie. FSCACHE_COOKIE_IS_CACHING is not 161 * set), we return false to indicate access was not permitted. 162 * 163 * (2) If the cookie is being cached, we increment its n_accesses count and 164 * then recheck the IS_CACHING flag, ending the access if it got cleared. 165 * 166 * (3) When we end the access, we decrement the cookie's n_accesses and wake 167 * up the any waiters if it reaches 0. 168 * 169 * (4) Whilst the cookie is actively being cached, its n_accesses is kept 170 * artificially incremented to prevent wakeups from happening. 171 * 172 * (5) When the cache is taken offline or if the cookie is culled, the flag is 173 * cleared to prevent new accesses, the cookie's n_accesses is decremented 174 * and we wait for it to become 0. 175 * 176 * The @why indicator are merely provided for tracing purposes. 177 */ 178 bool fscache_begin_cookie_access(struct fscache_cookie *cookie, 179 enum fscache_access_trace why) 180 { 181 if (!test_bit(FSCACHE_COOKIE_IS_CACHING, &cookie->flags)) 182 return false; 183 __fscache_begin_cookie_access(cookie, why); 184 if (!test_bit(FSCACHE_COOKIE_IS_CACHING, &cookie->flags) || 185 !fscache_cache_is_live(cookie->volume->cache)) { 186 fscache_end_cookie_access(cookie, fscache_access_unlive); 187 return false; 188 } 189 return true; 190 } 191 192 static inline void wake_up_cookie_state(struct fscache_cookie *cookie) 193 { 194 /* Use a barrier to ensure that waiters see the state variable 195 * change, as spin_unlock doesn't guarantee a barrier. 196 * 197 * See comments over wake_up_bit() and waitqueue_active(). 198 */ 199 smp_mb(); 200 wake_up_var(&cookie->state); 201 } 202 203 /* 204 * Change the state a cookie is at and wake up anyone waiting for that. Impose 205 * an ordering between the stuff stored in the cookie and the state member. 206 * Paired with fscache_cookie_state(). 207 */ 208 static void __fscache_set_cookie_state(struct fscache_cookie *cookie, 209 enum fscache_cookie_state state) 210 { 211 smp_store_release(&cookie->state, state); 212 } 213 214 static void fscache_set_cookie_state(struct fscache_cookie *cookie, 215 enum fscache_cookie_state state) 216 { 217 spin_lock(&cookie->lock); 218 __fscache_set_cookie_state(cookie, state); 219 spin_unlock(&cookie->lock); 220 wake_up_cookie_state(cookie); 221 } 222 223 /** 224 * fscache_cookie_lookup_negative - Note negative lookup 225 * @cookie: The cookie that was being looked up 226 * 227 * Note that some part of the metadata path in the cache doesn't exist and so 228 * we can release any waiting readers in the certain knowledge that there's 229 * nothing for them to actually read. 230 * 231 * This function uses no locking and must only be called from the state machine. 232 */ 233 void fscache_cookie_lookup_negative(struct fscache_cookie *cookie) 234 { 235 set_bit(FSCACHE_COOKIE_NO_DATA_TO_READ, &cookie->flags); 236 fscache_set_cookie_state(cookie, FSCACHE_COOKIE_STATE_CREATING); 237 } 238 EXPORT_SYMBOL(fscache_cookie_lookup_negative); 239 240 /** 241 * fscache_resume_after_invalidation - Allow I/O to resume after invalidation 242 * @cookie: The cookie that was invalidated 243 * 244 * Tell fscache that invalidation is sufficiently complete that I/O can be 245 * allowed again. 246 */ 247 void fscache_resume_after_invalidation(struct fscache_cookie *cookie) 248 { 249 fscache_set_cookie_state(cookie, FSCACHE_COOKIE_STATE_ACTIVE); 250 } 251 EXPORT_SYMBOL(fscache_resume_after_invalidation); 252 253 /** 254 * fscache_caching_failed - Report that a failure stopped caching on a cookie 255 * @cookie: The cookie that was affected 256 * 257 * Tell fscache that caching on a cookie needs to be stopped due to some sort 258 * of failure. 259 * 260 * This function uses no locking and must only be called from the state machine. 261 */ 262 void fscache_caching_failed(struct fscache_cookie *cookie) 263 { 264 clear_bit(FSCACHE_COOKIE_IS_CACHING, &cookie->flags); 265 fscache_set_cookie_state(cookie, FSCACHE_COOKIE_STATE_FAILED); 266 trace_fscache_cookie(cookie->debug_id, refcount_read(&cookie->ref), 267 fscache_cookie_failed); 268 } 269 EXPORT_SYMBOL(fscache_caching_failed); 270 271 /* 272 * Set the index key in a cookie. The cookie struct has space for a 16-byte 273 * key plus length and hash, but if that's not big enough, it's instead a 274 * pointer to a buffer containing 3 bytes of hash, 1 byte of length and then 275 * the key data. 276 */ 277 static int fscache_set_key(struct fscache_cookie *cookie, 278 const void *index_key, size_t index_key_len) 279 { 280 void *buf; 281 size_t buf_size; 282 283 buf_size = round_up(index_key_len, sizeof(__le32)); 284 285 if (index_key_len > sizeof(cookie->inline_key)) { 286 buf = kzalloc(buf_size, GFP_KERNEL); 287 if (!buf) 288 return -ENOMEM; 289 cookie->key = buf; 290 } else { 291 buf = cookie->inline_key; 292 } 293 294 memcpy(buf, index_key, index_key_len); 295 cookie->key_hash = fscache_hash(cookie->volume->key_hash, 296 buf, buf_size); 297 return 0; 298 } 299 300 static bool fscache_cookie_same(const struct fscache_cookie *a, 301 const struct fscache_cookie *b) 302 { 303 const void *ka, *kb; 304 305 if (a->key_hash != b->key_hash || 306 a->volume != b->volume || 307 a->key_len != b->key_len) 308 return false; 309 310 if (a->key_len <= sizeof(a->inline_key)) { 311 ka = &a->inline_key; 312 kb = &b->inline_key; 313 } else { 314 ka = a->key; 315 kb = b->key; 316 } 317 return memcmp(ka, kb, a->key_len) == 0; 318 } 319 320 static atomic_t fscache_cookie_debug_id = ATOMIC_INIT(1); 321 322 /* 323 * Allocate a cookie. 324 */ 325 static struct fscache_cookie *fscache_alloc_cookie( 326 struct fscache_volume *volume, 327 u8 advice, 328 const void *index_key, size_t index_key_len, 329 const void *aux_data, size_t aux_data_len, 330 loff_t object_size) 331 { 332 struct fscache_cookie *cookie; 333 334 /* allocate and initialise a cookie */ 335 cookie = kmem_cache_zalloc(fscache_cookie_jar, GFP_KERNEL); 336 if (!cookie) 337 return NULL; 338 fscache_stat(&fscache_n_cookies); 339 340 cookie->volume = volume; 341 cookie->advice = advice; 342 cookie->key_len = index_key_len; 343 cookie->aux_len = aux_data_len; 344 cookie->object_size = object_size; 345 if (object_size == 0) 346 __set_bit(FSCACHE_COOKIE_NO_DATA_TO_READ, &cookie->flags); 347 348 if (fscache_set_key(cookie, index_key, index_key_len) < 0) 349 goto nomem; 350 351 if (cookie->aux_len <= sizeof(cookie->inline_aux)) { 352 memcpy(cookie->inline_aux, aux_data, cookie->aux_len); 353 } else { 354 cookie->aux = kmemdup(aux_data, cookie->aux_len, GFP_KERNEL); 355 if (!cookie->aux) 356 goto nomem; 357 } 358 359 refcount_set(&cookie->ref, 1); 360 cookie->debug_id = atomic_inc_return(&fscache_cookie_debug_id); 361 spin_lock_init(&cookie->lock); 362 INIT_LIST_HEAD(&cookie->commit_link); 363 INIT_WORK(&cookie->work, fscache_cookie_worker); 364 __fscache_set_cookie_state(cookie, FSCACHE_COOKIE_STATE_QUIESCENT); 365 366 write_lock(&fscache_cookies_lock); 367 list_add_tail(&cookie->proc_link, &fscache_cookies); 368 write_unlock(&fscache_cookies_lock); 369 fscache_see_cookie(cookie, fscache_cookie_new_acquire); 370 return cookie; 371 372 nomem: 373 fscache_free_cookie(cookie); 374 return NULL; 375 } 376 377 static inline bool fscache_cookie_is_dropped(struct fscache_cookie *cookie) 378 { 379 return READ_ONCE(cookie->state) == FSCACHE_COOKIE_STATE_DROPPED; 380 } 381 382 static void fscache_wait_on_collision(struct fscache_cookie *candidate, 383 struct fscache_cookie *wait_for) 384 { 385 enum fscache_cookie_state *statep = &wait_for->state; 386 387 wait_var_event_timeout(statep, fscache_cookie_is_dropped(wait_for), 388 20 * HZ); 389 if (!fscache_cookie_is_dropped(wait_for)) { 390 pr_notice("Potential collision c=%08x old: c=%08x", 391 candidate->debug_id, wait_for->debug_id); 392 wait_var_event(statep, fscache_cookie_is_dropped(wait_for)); 393 } 394 } 395 396 /* 397 * Attempt to insert the new cookie into the hash. If there's a collision, we 398 * wait for the old cookie to complete if it's being relinquished and an error 399 * otherwise. 400 */ 401 static bool fscache_hash_cookie(struct fscache_cookie *candidate) 402 { 403 struct fscache_cookie *cursor, *wait_for = NULL; 404 struct hlist_bl_head *h; 405 struct hlist_bl_node *p; 406 unsigned int bucket; 407 408 bucket = candidate->key_hash & (ARRAY_SIZE(fscache_cookie_hash) - 1); 409 h = &fscache_cookie_hash[bucket]; 410 411 hlist_bl_lock(h); 412 hlist_bl_for_each_entry(cursor, p, h, hash_link) { 413 if (fscache_cookie_same(candidate, cursor)) { 414 if (!test_bit(FSCACHE_COOKIE_RELINQUISHED, &cursor->flags)) 415 goto collision; 416 wait_for = fscache_get_cookie(cursor, 417 fscache_cookie_get_hash_collision); 418 break; 419 } 420 } 421 422 fscache_get_volume(candidate->volume, fscache_volume_get_cookie); 423 atomic_inc(&candidate->volume->n_cookies); 424 hlist_bl_add_head(&candidate->hash_link, h); 425 set_bit(FSCACHE_COOKIE_IS_HASHED, &candidate->flags); 426 hlist_bl_unlock(h); 427 428 if (wait_for) { 429 fscache_wait_on_collision(candidate, wait_for); 430 fscache_put_cookie(wait_for, fscache_cookie_put_hash_collision); 431 } 432 return true; 433 434 collision: 435 trace_fscache_cookie(cursor->debug_id, refcount_read(&cursor->ref), 436 fscache_cookie_collision); 437 pr_err("Duplicate cookie detected\n"); 438 fscache_print_cookie(cursor, 'O'); 439 fscache_print_cookie(candidate, 'N'); 440 hlist_bl_unlock(h); 441 return false; 442 } 443 444 /* 445 * Request a cookie to represent a data storage object within a volume. 446 * 447 * We never let on to the netfs about errors. We may set a negative cookie 448 * pointer, but that's okay 449 */ 450 struct fscache_cookie *__fscache_acquire_cookie( 451 struct fscache_volume *volume, 452 u8 advice, 453 const void *index_key, size_t index_key_len, 454 const void *aux_data, size_t aux_data_len, 455 loff_t object_size) 456 { 457 struct fscache_cookie *cookie; 458 459 _enter("V=%x", volume->debug_id); 460 461 if (!index_key || !index_key_len || index_key_len > 255 || aux_data_len > 255) 462 return NULL; 463 if (!aux_data || !aux_data_len) { 464 aux_data = NULL; 465 aux_data_len = 0; 466 } 467 468 fscache_stat(&fscache_n_acquires); 469 470 cookie = fscache_alloc_cookie(volume, advice, 471 index_key, index_key_len, 472 aux_data, aux_data_len, 473 object_size); 474 if (!cookie) { 475 fscache_stat(&fscache_n_acquires_oom); 476 return NULL; 477 } 478 479 if (!fscache_hash_cookie(cookie)) { 480 fscache_see_cookie(cookie, fscache_cookie_discard); 481 fscache_free_cookie(cookie); 482 return NULL; 483 } 484 485 trace_fscache_acquire(cookie); 486 fscache_stat(&fscache_n_acquires_ok); 487 _leave(" = c=%08x", cookie->debug_id); 488 return cookie; 489 } 490 EXPORT_SYMBOL(__fscache_acquire_cookie); 491 492 /* 493 * Prepare a cache object to be written to. 494 */ 495 static void fscache_prepare_to_write(struct fscache_cookie *cookie) 496 { 497 cookie->volume->cache->ops->prepare_to_write(cookie); 498 } 499 500 /* 501 * Look up a cookie in the cache. 502 */ 503 static void fscache_perform_lookup(struct fscache_cookie *cookie) 504 { 505 enum fscache_access_trace trace = fscache_access_lookup_cookie_end_failed; 506 bool need_withdraw = false; 507 508 _enter(""); 509 510 if (!cookie->volume->cache_priv) { 511 fscache_create_volume(cookie->volume, true); 512 if (!cookie->volume->cache_priv) { 513 fscache_set_cookie_state(cookie, FSCACHE_COOKIE_STATE_QUIESCENT); 514 goto out; 515 } 516 } 517 518 if (!cookie->volume->cache->ops->lookup_cookie(cookie)) { 519 if (cookie->state != FSCACHE_COOKIE_STATE_FAILED) 520 fscache_set_cookie_state(cookie, FSCACHE_COOKIE_STATE_QUIESCENT); 521 need_withdraw = true; 522 _leave(" [fail]"); 523 goto out; 524 } 525 526 fscache_see_cookie(cookie, fscache_cookie_see_active); 527 spin_lock(&cookie->lock); 528 if (test_and_clear_bit(FSCACHE_COOKIE_DO_INVALIDATE, &cookie->flags)) 529 __fscache_set_cookie_state(cookie, 530 FSCACHE_COOKIE_STATE_INVALIDATING); 531 else 532 __fscache_set_cookie_state(cookie, FSCACHE_COOKIE_STATE_ACTIVE); 533 spin_unlock(&cookie->lock); 534 wake_up_cookie_state(cookie); 535 trace = fscache_access_lookup_cookie_end; 536 537 out: 538 fscache_end_cookie_access(cookie, trace); 539 if (need_withdraw) 540 fscache_withdraw_cookie(cookie); 541 fscache_end_volume_access(cookie->volume, cookie, trace); 542 } 543 544 /* 545 * Begin the process of looking up a cookie. We offload the actual process to 546 * a worker thread. 547 */ 548 static bool fscache_begin_lookup(struct fscache_cookie *cookie, bool will_modify) 549 { 550 if (will_modify) { 551 set_bit(FSCACHE_COOKIE_LOCAL_WRITE, &cookie->flags); 552 set_bit(FSCACHE_COOKIE_DO_PREP_TO_WRITE, &cookie->flags); 553 } 554 if (!fscache_begin_volume_access(cookie->volume, cookie, 555 fscache_access_lookup_cookie)) 556 return false; 557 558 __fscache_begin_cookie_access(cookie, fscache_access_lookup_cookie); 559 __fscache_set_cookie_state(cookie, FSCACHE_COOKIE_STATE_LOOKING_UP); 560 set_bit(FSCACHE_COOKIE_IS_CACHING, &cookie->flags); 561 set_bit(FSCACHE_COOKIE_HAS_BEEN_CACHED, &cookie->flags); 562 return true; 563 } 564 565 /* 566 * Start using the cookie for I/O. This prevents the backing object from being 567 * reaped by VM pressure. 568 */ 569 void __fscache_use_cookie(struct fscache_cookie *cookie, bool will_modify) 570 { 571 enum fscache_cookie_state state; 572 bool queue = false; 573 int n_active; 574 575 _enter("c=%08x", cookie->debug_id); 576 577 if (WARN(test_bit(FSCACHE_COOKIE_RELINQUISHED, &cookie->flags), 578 "Trying to use relinquished cookie\n")) 579 return; 580 581 spin_lock(&cookie->lock); 582 583 n_active = atomic_inc_return(&cookie->n_active); 584 trace_fscache_active(cookie->debug_id, refcount_read(&cookie->ref), 585 n_active, atomic_read(&cookie->n_accesses), 586 will_modify ? 587 fscache_active_use_modify : fscache_active_use); 588 589 again: 590 state = fscache_cookie_state(cookie); 591 switch (state) { 592 case FSCACHE_COOKIE_STATE_QUIESCENT: 593 queue = fscache_begin_lookup(cookie, will_modify); 594 break; 595 596 case FSCACHE_COOKIE_STATE_LOOKING_UP: 597 case FSCACHE_COOKIE_STATE_CREATING: 598 if (will_modify) 599 set_bit(FSCACHE_COOKIE_LOCAL_WRITE, &cookie->flags); 600 break; 601 case FSCACHE_COOKIE_STATE_ACTIVE: 602 case FSCACHE_COOKIE_STATE_INVALIDATING: 603 if (will_modify && 604 !test_and_set_bit(FSCACHE_COOKIE_LOCAL_WRITE, &cookie->flags)) { 605 set_bit(FSCACHE_COOKIE_DO_PREP_TO_WRITE, &cookie->flags); 606 queue = true; 607 } 608 break; 609 610 case FSCACHE_COOKIE_STATE_FAILED: 611 case FSCACHE_COOKIE_STATE_WITHDRAWING: 612 break; 613 614 case FSCACHE_COOKIE_STATE_LRU_DISCARDING: 615 spin_unlock(&cookie->lock); 616 wait_var_event(&cookie->state, 617 fscache_cookie_state(cookie) != 618 FSCACHE_COOKIE_STATE_LRU_DISCARDING); 619 spin_lock(&cookie->lock); 620 goto again; 621 622 case FSCACHE_COOKIE_STATE_DROPPED: 623 case FSCACHE_COOKIE_STATE_RELINQUISHING: 624 WARN(1, "Can't use cookie in state %u\n", state); 625 break; 626 } 627 628 spin_unlock(&cookie->lock); 629 if (queue) 630 fscache_queue_cookie(cookie, fscache_cookie_get_use_work); 631 _leave(""); 632 } 633 EXPORT_SYMBOL(__fscache_use_cookie); 634 635 static void fscache_unuse_cookie_locked(struct fscache_cookie *cookie) 636 { 637 clear_bit(FSCACHE_COOKIE_DISABLED, &cookie->flags); 638 if (!test_bit(FSCACHE_COOKIE_IS_CACHING, &cookie->flags)) 639 return; 640 641 cookie->unused_at = jiffies; 642 spin_lock(&fscache_cookie_lru_lock); 643 if (list_empty(&cookie->commit_link)) { 644 fscache_get_cookie(cookie, fscache_cookie_get_lru); 645 fscache_stat(&fscache_n_cookies_lru); 646 } 647 list_move_tail(&cookie->commit_link, &fscache_cookie_lru); 648 649 spin_unlock(&fscache_cookie_lru_lock); 650 timer_reduce(&fscache_cookie_lru_timer, 651 jiffies + fscache_lru_cookie_timeout); 652 } 653 654 /* 655 * Stop using the cookie for I/O. 656 */ 657 void __fscache_unuse_cookie(struct fscache_cookie *cookie, 658 const void *aux_data, const loff_t *object_size) 659 { 660 unsigned int debug_id = cookie->debug_id; 661 unsigned int r = refcount_read(&cookie->ref); 662 unsigned int a = atomic_read(&cookie->n_accesses); 663 unsigned int c; 664 665 if (aux_data || object_size) 666 __fscache_update_cookie(cookie, aux_data, object_size); 667 668 /* Subtract 1 from counter unless that drops it to 0 (ie. it was 1) */ 669 c = atomic_fetch_add_unless(&cookie->n_active, -1, 1); 670 if (c != 1) { 671 trace_fscache_active(debug_id, r, c - 1, a, fscache_active_unuse); 672 return; 673 } 674 675 spin_lock(&cookie->lock); 676 r = refcount_read(&cookie->ref); 677 a = atomic_read(&cookie->n_accesses); 678 c = atomic_dec_return(&cookie->n_active); 679 trace_fscache_active(debug_id, r, c, a, fscache_active_unuse); 680 if (c == 0) 681 fscache_unuse_cookie_locked(cookie); 682 spin_unlock(&cookie->lock); 683 } 684 EXPORT_SYMBOL(__fscache_unuse_cookie); 685 686 /* 687 * Perform work upon the cookie, such as committing its cache state, 688 * relinquishing it or withdrawing the backing cache. We're protected from the 689 * cache going away under us as object withdrawal must come through this 690 * non-reentrant work item. 691 */ 692 static void fscache_cookie_state_machine(struct fscache_cookie *cookie) 693 { 694 enum fscache_cookie_state state; 695 bool wake = false; 696 697 _enter("c=%x", cookie->debug_id); 698 699 again: 700 spin_lock(&cookie->lock); 701 again_locked: 702 state = cookie->state; 703 switch (state) { 704 case FSCACHE_COOKIE_STATE_QUIESCENT: 705 /* The QUIESCENT state is jumped to the LOOKING_UP state by 706 * fscache_use_cookie(). 707 */ 708 709 if (atomic_read(&cookie->n_accesses) == 0 && 710 test_bit(FSCACHE_COOKIE_DO_RELINQUISH, &cookie->flags)) { 711 __fscache_set_cookie_state(cookie, 712 FSCACHE_COOKIE_STATE_RELINQUISHING); 713 wake = true; 714 goto again_locked; 715 } 716 break; 717 718 case FSCACHE_COOKIE_STATE_LOOKING_UP: 719 spin_unlock(&cookie->lock); 720 fscache_init_access_gate(cookie); 721 fscache_perform_lookup(cookie); 722 goto again; 723 724 case FSCACHE_COOKIE_STATE_INVALIDATING: 725 spin_unlock(&cookie->lock); 726 fscache_perform_invalidation(cookie); 727 goto again; 728 729 case FSCACHE_COOKIE_STATE_ACTIVE: 730 if (test_and_clear_bit(FSCACHE_COOKIE_DO_PREP_TO_WRITE, &cookie->flags)) { 731 spin_unlock(&cookie->lock); 732 fscache_prepare_to_write(cookie); 733 spin_lock(&cookie->lock); 734 } 735 if (test_bit(FSCACHE_COOKIE_DO_LRU_DISCARD, &cookie->flags)) { 736 __fscache_set_cookie_state(cookie, 737 FSCACHE_COOKIE_STATE_LRU_DISCARDING); 738 wake = true; 739 goto again_locked; 740 } 741 fallthrough; 742 743 case FSCACHE_COOKIE_STATE_FAILED: 744 if (test_and_clear_bit(FSCACHE_COOKIE_DO_INVALIDATE, &cookie->flags)) 745 fscache_end_cookie_access(cookie, fscache_access_invalidate_cookie_end); 746 747 if (atomic_read(&cookie->n_accesses) != 0) 748 break; 749 if (test_bit(FSCACHE_COOKIE_DO_RELINQUISH, &cookie->flags)) { 750 __fscache_set_cookie_state(cookie, 751 FSCACHE_COOKIE_STATE_RELINQUISHING); 752 wake = true; 753 goto again_locked; 754 } 755 if (test_bit(FSCACHE_COOKIE_DO_WITHDRAW, &cookie->flags)) { 756 __fscache_set_cookie_state(cookie, 757 FSCACHE_COOKIE_STATE_WITHDRAWING); 758 wake = true; 759 goto again_locked; 760 } 761 break; 762 763 case FSCACHE_COOKIE_STATE_LRU_DISCARDING: 764 case FSCACHE_COOKIE_STATE_RELINQUISHING: 765 case FSCACHE_COOKIE_STATE_WITHDRAWING: 766 if (cookie->cache_priv) { 767 spin_unlock(&cookie->lock); 768 cookie->volume->cache->ops->withdraw_cookie(cookie); 769 spin_lock(&cookie->lock); 770 } 771 772 if (test_and_clear_bit(FSCACHE_COOKIE_DO_INVALIDATE, &cookie->flags)) 773 fscache_end_cookie_access(cookie, fscache_access_invalidate_cookie_end); 774 775 switch (state) { 776 case FSCACHE_COOKIE_STATE_RELINQUISHING: 777 fscache_see_cookie(cookie, fscache_cookie_see_relinquish); 778 fscache_unhash_cookie(cookie); 779 __fscache_set_cookie_state(cookie, 780 FSCACHE_COOKIE_STATE_DROPPED); 781 wake = true; 782 goto out; 783 case FSCACHE_COOKIE_STATE_LRU_DISCARDING: 784 fscache_see_cookie(cookie, fscache_cookie_see_lru_discard); 785 break; 786 case FSCACHE_COOKIE_STATE_WITHDRAWING: 787 fscache_see_cookie(cookie, fscache_cookie_see_withdraw); 788 break; 789 default: 790 BUG(); 791 } 792 793 clear_bit(FSCACHE_COOKIE_NEEDS_UPDATE, &cookie->flags); 794 clear_bit(FSCACHE_COOKIE_DO_WITHDRAW, &cookie->flags); 795 clear_bit(FSCACHE_COOKIE_DO_LRU_DISCARD, &cookie->flags); 796 clear_bit(FSCACHE_COOKIE_DO_PREP_TO_WRITE, &cookie->flags); 797 set_bit(FSCACHE_COOKIE_NO_DATA_TO_READ, &cookie->flags); 798 __fscache_set_cookie_state(cookie, FSCACHE_COOKIE_STATE_QUIESCENT); 799 wake = true; 800 goto again_locked; 801 802 case FSCACHE_COOKIE_STATE_DROPPED: 803 break; 804 805 default: 806 WARN_ONCE(1, "Cookie %x in unexpected state %u\n", 807 cookie->debug_id, state); 808 break; 809 } 810 811 out: 812 spin_unlock(&cookie->lock); 813 if (wake) 814 wake_up_cookie_state(cookie); 815 _leave(""); 816 } 817 818 static void fscache_cookie_worker(struct work_struct *work) 819 { 820 struct fscache_cookie *cookie = container_of(work, struct fscache_cookie, work); 821 822 fscache_see_cookie(cookie, fscache_cookie_see_work); 823 fscache_cookie_state_machine(cookie); 824 fscache_put_cookie(cookie, fscache_cookie_put_work); 825 } 826 827 /* 828 * Wait for the object to become inactive. The cookie's work item will be 829 * scheduled when someone transitions n_accesses to 0 - but if someone's 830 * already done that, schedule it anyway. 831 */ 832 static void __fscache_withdraw_cookie(struct fscache_cookie *cookie) 833 { 834 int n_accesses; 835 bool unpinned; 836 837 unpinned = test_and_clear_bit(FSCACHE_COOKIE_NO_ACCESS_WAKE, &cookie->flags); 838 839 /* Need to read the access count after unpinning */ 840 n_accesses = atomic_read(&cookie->n_accesses); 841 if (unpinned) 842 trace_fscache_access(cookie->debug_id, refcount_read(&cookie->ref), 843 n_accesses, fscache_access_cache_unpin); 844 if (n_accesses == 0) 845 fscache_queue_cookie(cookie, fscache_cookie_get_end_access); 846 } 847 848 static void fscache_cookie_lru_do_one(struct fscache_cookie *cookie) 849 { 850 fscache_see_cookie(cookie, fscache_cookie_see_lru_do_one); 851 852 spin_lock(&cookie->lock); 853 if (cookie->state != FSCACHE_COOKIE_STATE_ACTIVE || 854 time_before(jiffies, cookie->unused_at + fscache_lru_cookie_timeout) || 855 atomic_read(&cookie->n_active) > 0) { 856 spin_unlock(&cookie->lock); 857 fscache_stat(&fscache_n_cookies_lru_removed); 858 } else { 859 set_bit(FSCACHE_COOKIE_DO_LRU_DISCARD, &cookie->flags); 860 spin_unlock(&cookie->lock); 861 fscache_stat(&fscache_n_cookies_lru_expired); 862 _debug("lru c=%x", cookie->debug_id); 863 __fscache_withdraw_cookie(cookie); 864 } 865 866 fscache_put_cookie(cookie, fscache_cookie_put_lru); 867 } 868 869 static void fscache_cookie_lru_worker(struct work_struct *work) 870 { 871 struct fscache_cookie *cookie; 872 unsigned long unused_at; 873 874 spin_lock(&fscache_cookie_lru_lock); 875 876 while (!list_empty(&fscache_cookie_lru)) { 877 cookie = list_first_entry(&fscache_cookie_lru, 878 struct fscache_cookie, commit_link); 879 unused_at = cookie->unused_at + fscache_lru_cookie_timeout; 880 if (time_before(jiffies, unused_at)) { 881 timer_reduce(&fscache_cookie_lru_timer, unused_at); 882 break; 883 } 884 885 list_del_init(&cookie->commit_link); 886 fscache_stat_d(&fscache_n_cookies_lru); 887 spin_unlock(&fscache_cookie_lru_lock); 888 fscache_cookie_lru_do_one(cookie); 889 spin_lock(&fscache_cookie_lru_lock); 890 } 891 892 spin_unlock(&fscache_cookie_lru_lock); 893 } 894 895 static void fscache_cookie_lru_timed_out(struct timer_list *timer) 896 { 897 queue_work(fscache_wq, &fscache_cookie_lru_work); 898 } 899 900 static void fscache_cookie_drop_from_lru(struct fscache_cookie *cookie) 901 { 902 bool need_put = false; 903 904 if (!list_empty(&cookie->commit_link)) { 905 spin_lock(&fscache_cookie_lru_lock); 906 if (!list_empty(&cookie->commit_link)) { 907 list_del_init(&cookie->commit_link); 908 fscache_stat_d(&fscache_n_cookies_lru); 909 fscache_stat(&fscache_n_cookies_lru_dropped); 910 need_put = true; 911 } 912 spin_unlock(&fscache_cookie_lru_lock); 913 if (need_put) 914 fscache_put_cookie(cookie, fscache_cookie_put_lru); 915 } 916 } 917 918 /* 919 * Remove a cookie from the hash table. 920 */ 921 static void fscache_unhash_cookie(struct fscache_cookie *cookie) 922 { 923 struct hlist_bl_head *h; 924 unsigned int bucket; 925 926 bucket = cookie->key_hash & (ARRAY_SIZE(fscache_cookie_hash) - 1); 927 h = &fscache_cookie_hash[bucket]; 928 929 hlist_bl_lock(h); 930 hlist_bl_del(&cookie->hash_link); 931 clear_bit(FSCACHE_COOKIE_IS_HASHED, &cookie->flags); 932 hlist_bl_unlock(h); 933 fscache_stat(&fscache_n_relinquishes_dropped); 934 } 935 936 static void fscache_drop_withdraw_cookie(struct fscache_cookie *cookie) 937 { 938 fscache_cookie_drop_from_lru(cookie); 939 __fscache_withdraw_cookie(cookie); 940 } 941 942 /** 943 * fscache_withdraw_cookie - Mark a cookie for withdrawal 944 * @cookie: The cookie to be withdrawn. 945 * 946 * Allow the cache backend to withdraw the backing for a cookie for its own 947 * reasons, even if that cookie is in active use. 948 */ 949 void fscache_withdraw_cookie(struct fscache_cookie *cookie) 950 { 951 set_bit(FSCACHE_COOKIE_DO_WITHDRAW, &cookie->flags); 952 fscache_drop_withdraw_cookie(cookie); 953 } 954 EXPORT_SYMBOL(fscache_withdraw_cookie); 955 956 /* 957 * Allow the netfs to release a cookie back to the cache. 958 * - the object will be marked as recyclable on disk if retire is true 959 */ 960 void __fscache_relinquish_cookie(struct fscache_cookie *cookie, bool retire) 961 { 962 fscache_stat(&fscache_n_relinquishes); 963 if (retire) 964 fscache_stat(&fscache_n_relinquishes_retire); 965 966 _enter("c=%08x{%d},%d", 967 cookie->debug_id, atomic_read(&cookie->n_active), retire); 968 969 if (WARN(test_and_set_bit(FSCACHE_COOKIE_RELINQUISHED, &cookie->flags), 970 "Cookie c=%x already relinquished\n", cookie->debug_id)) 971 return; 972 973 if (retire) 974 set_bit(FSCACHE_COOKIE_RETIRED, &cookie->flags); 975 trace_fscache_relinquish(cookie, retire); 976 977 ASSERTCMP(atomic_read(&cookie->n_active), ==, 0); 978 ASSERTCMP(atomic_read(&cookie->volume->n_cookies), >, 0); 979 atomic_dec(&cookie->volume->n_cookies); 980 981 if (test_bit(FSCACHE_COOKIE_HAS_BEEN_CACHED, &cookie->flags)) { 982 set_bit(FSCACHE_COOKIE_DO_RELINQUISH, &cookie->flags); 983 fscache_drop_withdraw_cookie(cookie); 984 } else { 985 fscache_set_cookie_state(cookie, FSCACHE_COOKIE_STATE_DROPPED); 986 fscache_unhash_cookie(cookie); 987 } 988 fscache_put_cookie(cookie, fscache_cookie_put_relinquish); 989 } 990 EXPORT_SYMBOL(__fscache_relinquish_cookie); 991 992 /* 993 * Drop a reference to a cookie. 994 */ 995 void fscache_put_cookie(struct fscache_cookie *cookie, 996 enum fscache_cookie_trace where) 997 { 998 struct fscache_volume *volume = cookie->volume; 999 unsigned int cookie_debug_id = cookie->debug_id; 1000 bool zero; 1001 int ref; 1002 1003 zero = __refcount_dec_and_test(&cookie->ref, &ref); 1004 trace_fscache_cookie(cookie_debug_id, ref - 1, where); 1005 if (zero) { 1006 fscache_free_cookie(cookie); 1007 fscache_put_volume(volume, fscache_volume_put_cookie); 1008 } 1009 } 1010 EXPORT_SYMBOL(fscache_put_cookie); 1011 1012 /* 1013 * Get a reference to a cookie. 1014 */ 1015 struct fscache_cookie *fscache_get_cookie(struct fscache_cookie *cookie, 1016 enum fscache_cookie_trace where) 1017 { 1018 int ref; 1019 1020 __refcount_inc(&cookie->ref, &ref); 1021 trace_fscache_cookie(cookie->debug_id, ref + 1, where); 1022 return cookie; 1023 } 1024 EXPORT_SYMBOL(fscache_get_cookie); 1025 1026 /* 1027 * Ask the cache to effect invalidation of a cookie. 1028 */ 1029 static void fscache_perform_invalidation(struct fscache_cookie *cookie) 1030 { 1031 if (!cookie->volume->cache->ops->invalidate_cookie(cookie)) 1032 fscache_caching_failed(cookie); 1033 fscache_end_cookie_access(cookie, fscache_access_invalidate_cookie_end); 1034 } 1035 1036 /* 1037 * Invalidate an object. 1038 */ 1039 void __fscache_invalidate(struct fscache_cookie *cookie, 1040 const void *aux_data, loff_t new_size, 1041 unsigned int flags) 1042 { 1043 bool is_caching; 1044 1045 _enter("c=%x", cookie->debug_id); 1046 1047 fscache_stat(&fscache_n_invalidates); 1048 1049 if (WARN(test_bit(FSCACHE_COOKIE_RELINQUISHED, &cookie->flags), 1050 "Trying to invalidate relinquished cookie\n")) 1051 return; 1052 1053 if ((flags & FSCACHE_INVAL_DIO_WRITE) && 1054 test_and_set_bit(FSCACHE_COOKIE_DISABLED, &cookie->flags)) 1055 return; 1056 1057 spin_lock(&cookie->lock); 1058 set_bit(FSCACHE_COOKIE_NO_DATA_TO_READ, &cookie->flags); 1059 fscache_update_aux(cookie, aux_data, &new_size); 1060 cookie->inval_counter++; 1061 trace_fscache_invalidate(cookie, new_size); 1062 1063 switch (cookie->state) { 1064 case FSCACHE_COOKIE_STATE_INVALIDATING: /* is_still_valid will catch it */ 1065 default: 1066 spin_unlock(&cookie->lock); 1067 _leave(" [no %u]", cookie->state); 1068 return; 1069 1070 case FSCACHE_COOKIE_STATE_LOOKING_UP: 1071 if (!test_and_set_bit(FSCACHE_COOKIE_DO_INVALIDATE, &cookie->flags)) 1072 __fscache_begin_cookie_access(cookie, fscache_access_invalidate_cookie); 1073 fallthrough; 1074 case FSCACHE_COOKIE_STATE_CREATING: 1075 spin_unlock(&cookie->lock); 1076 _leave(" [look %x]", cookie->inval_counter); 1077 return; 1078 1079 case FSCACHE_COOKIE_STATE_ACTIVE: 1080 is_caching = fscache_begin_cookie_access( 1081 cookie, fscache_access_invalidate_cookie); 1082 if (is_caching) 1083 __fscache_set_cookie_state(cookie, FSCACHE_COOKIE_STATE_INVALIDATING); 1084 spin_unlock(&cookie->lock); 1085 wake_up_cookie_state(cookie); 1086 1087 if (is_caching) 1088 fscache_queue_cookie(cookie, fscache_cookie_get_inval_work); 1089 _leave(" [inv]"); 1090 return; 1091 } 1092 } 1093 EXPORT_SYMBOL(__fscache_invalidate); 1094 1095 #ifdef CONFIG_PROC_FS 1096 /* 1097 * Generate a list of extant cookies in /proc/fs/fscache/cookies 1098 */ 1099 static int fscache_cookies_seq_show(struct seq_file *m, void *v) 1100 { 1101 struct fscache_cookie *cookie; 1102 unsigned int keylen = 0, auxlen = 0; 1103 u8 *p; 1104 1105 if (v == &fscache_cookies) { 1106 seq_puts(m, 1107 "COOKIE VOLUME REF ACT ACC S FL DEF \n" 1108 "======== ======== === === === = == ================\n" 1109 ); 1110 return 0; 1111 } 1112 1113 cookie = list_entry(v, struct fscache_cookie, proc_link); 1114 1115 seq_printf(m, 1116 "%08x %08x %3d %3d %3d %c %02lx", 1117 cookie->debug_id, 1118 cookie->volume->debug_id, 1119 refcount_read(&cookie->ref), 1120 atomic_read(&cookie->n_active), 1121 atomic_read(&cookie->n_accesses), 1122 fscache_cookie_states[cookie->state], 1123 cookie->flags); 1124 1125 keylen = cookie->key_len; 1126 auxlen = cookie->aux_len; 1127 1128 if (keylen > 0 || auxlen > 0) { 1129 seq_puts(m, " "); 1130 p = keylen <= sizeof(cookie->inline_key) ? 1131 cookie->inline_key : cookie->key; 1132 for (; keylen > 0; keylen--) 1133 seq_printf(m, "%02x", *p++); 1134 if (auxlen > 0) { 1135 seq_puts(m, ", "); 1136 p = auxlen <= sizeof(cookie->inline_aux) ? 1137 cookie->inline_aux : cookie->aux; 1138 for (; auxlen > 0; auxlen--) 1139 seq_printf(m, "%02x", *p++); 1140 } 1141 } 1142 1143 seq_puts(m, "\n"); 1144 return 0; 1145 } 1146 1147 static void *fscache_cookies_seq_start(struct seq_file *m, loff_t *_pos) 1148 __acquires(fscache_cookies_lock) 1149 { 1150 read_lock(&fscache_cookies_lock); 1151 return seq_list_start_head(&fscache_cookies, *_pos); 1152 } 1153 1154 static void *fscache_cookies_seq_next(struct seq_file *m, void *v, loff_t *_pos) 1155 { 1156 return seq_list_next(v, &fscache_cookies, _pos); 1157 } 1158 1159 static void fscache_cookies_seq_stop(struct seq_file *m, void *v) 1160 __releases(rcu) 1161 { 1162 read_unlock(&fscache_cookies_lock); 1163 } 1164 1165 1166 const struct seq_operations fscache_cookies_seq_ops = { 1167 .start = fscache_cookies_seq_start, 1168 .next = fscache_cookies_seq_next, 1169 .stop = fscache_cookies_seq_stop, 1170 .show = fscache_cookies_seq_show, 1171 }; 1172 #endif 1173