1 #include <linux/spinlock.h> 2 #include <linux/slab.h> 3 #include <linux/list.h> 4 #include <linux/list_bl.h> 5 #include <linux/module.h> 6 #include <linux/sched.h> 7 #include <linux/workqueue.h> 8 #include <linux/mbcache.h> 9 10 /* 11 * Mbcache is a simple key-value store. Keys need not be unique, however 12 * key-value pairs are expected to be unique (we use this fact in 13 * mb_cache_entry_delete()). 14 * 15 * Ext2 and ext4 use this cache for deduplication of extended attribute blocks. 16 * They use hash of a block contents as a key and block number as a value. 17 * That's why keys need not be unique (different xattr blocks may end up having 18 * the same hash). However block number always uniquely identifies a cache 19 * entry. 20 * 21 * We provide functions for creation and removal of entries, search by key, 22 * and a special "delete entry with given key-value pair" operation. Fixed 23 * size hash table is used for fast key lookups. 24 */ 25 26 struct mb_cache { 27 /* Hash table of entries */ 28 struct hlist_bl_head *c_hash; 29 /* log2 of hash table size */ 30 int c_bucket_bits; 31 /* Maximum entries in cache to avoid degrading hash too much */ 32 unsigned long c_max_entries; 33 /* Protects c_list, c_entry_count */ 34 spinlock_t c_list_lock; 35 struct list_head c_list; 36 /* Number of entries in cache */ 37 unsigned long c_entry_count; 38 struct shrinker c_shrink; 39 /* Work for shrinking when the cache has too many entries */ 40 struct work_struct c_shrink_work; 41 }; 42 43 static struct kmem_cache *mb_entry_cache; 44 45 static unsigned long mb_cache_shrink(struct mb_cache *cache, 46 unsigned long nr_to_scan); 47 48 static inline struct hlist_bl_head *mb_cache_entry_head(struct mb_cache *cache, 49 u32 key) 50 { 51 return &cache->c_hash[hash_32(key, cache->c_bucket_bits)]; 52 } 53 54 /* 55 * Number of entries to reclaim synchronously when there are too many entries 56 * in cache 57 */ 58 #define SYNC_SHRINK_BATCH 64 59 60 /* 61 * mb_cache_entry_create - create entry in cache 62 * @cache - cache where the entry should be created 63 * @mask - gfp mask with which the entry should be allocated 64 * @key - key of the entry 65 * @value - value of the entry 66 * @reusable - is the entry reusable by others? 67 * 68 * Creates entry in @cache with key @key and value @value. The function returns 69 * -EBUSY if entry with the same key and value already exists in cache. 70 * Otherwise 0 is returned. 71 */ 72 int mb_cache_entry_create(struct mb_cache *cache, gfp_t mask, u32 key, 73 u64 value, bool reusable) 74 { 75 struct mb_cache_entry *entry, *dup; 76 struct hlist_bl_node *dup_node; 77 struct hlist_bl_head *head; 78 79 /* Schedule background reclaim if there are too many entries */ 80 if (cache->c_entry_count >= cache->c_max_entries) 81 schedule_work(&cache->c_shrink_work); 82 /* Do some sync reclaim if background reclaim cannot keep up */ 83 if (cache->c_entry_count >= 2*cache->c_max_entries) 84 mb_cache_shrink(cache, SYNC_SHRINK_BATCH); 85 86 entry = kmem_cache_alloc(mb_entry_cache, mask); 87 if (!entry) 88 return -ENOMEM; 89 90 INIT_LIST_HEAD(&entry->e_list); 91 /* One ref for hash, one ref returned */ 92 atomic_set(&entry->e_refcnt, 1); 93 entry->e_key = key; 94 entry->e_value = value; 95 entry->e_reusable = reusable; 96 head = mb_cache_entry_head(cache, key); 97 hlist_bl_lock(head); 98 hlist_bl_for_each_entry(dup, dup_node, head, e_hash_list) { 99 if (dup->e_key == key && dup->e_value == value) { 100 hlist_bl_unlock(head); 101 kmem_cache_free(mb_entry_cache, entry); 102 return -EBUSY; 103 } 104 } 105 hlist_bl_add_head(&entry->e_hash_list, head); 106 hlist_bl_unlock(head); 107 108 spin_lock(&cache->c_list_lock); 109 list_add_tail(&entry->e_list, &cache->c_list); 110 /* Grab ref for LRU list */ 111 atomic_inc(&entry->e_refcnt); 112 cache->c_entry_count++; 113 spin_unlock(&cache->c_list_lock); 114 115 return 0; 116 } 117 EXPORT_SYMBOL(mb_cache_entry_create); 118 119 void __mb_cache_entry_free(struct mb_cache_entry *entry) 120 { 121 kmem_cache_free(mb_entry_cache, entry); 122 } 123 EXPORT_SYMBOL(__mb_cache_entry_free); 124 125 static struct mb_cache_entry *__entry_find(struct mb_cache *cache, 126 struct mb_cache_entry *entry, 127 u32 key) 128 { 129 struct mb_cache_entry *old_entry = entry; 130 struct hlist_bl_node *node; 131 struct hlist_bl_head *head; 132 133 head = mb_cache_entry_head(cache, key); 134 hlist_bl_lock(head); 135 if (entry && !hlist_bl_unhashed(&entry->e_hash_list)) 136 node = entry->e_hash_list.next; 137 else 138 node = hlist_bl_first(head); 139 while (node) { 140 entry = hlist_bl_entry(node, struct mb_cache_entry, 141 e_hash_list); 142 if (entry->e_key == key && entry->e_reusable) { 143 atomic_inc(&entry->e_refcnt); 144 goto out; 145 } 146 node = node->next; 147 } 148 entry = NULL; 149 out: 150 hlist_bl_unlock(head); 151 if (old_entry) 152 mb_cache_entry_put(cache, old_entry); 153 154 return entry; 155 } 156 157 /* 158 * mb_cache_entry_find_first - find the first reusable entry with the given key 159 * @cache: cache where we should search 160 * @key: key to look for 161 * 162 * Search in @cache for a reusable entry with key @key. Grabs reference to the 163 * first reusable entry found and returns the entry. 164 */ 165 struct mb_cache_entry *mb_cache_entry_find_first(struct mb_cache *cache, 166 u32 key) 167 { 168 return __entry_find(cache, NULL, key); 169 } 170 EXPORT_SYMBOL(mb_cache_entry_find_first); 171 172 /* 173 * mb_cache_entry_find_next - find next reusable entry with the same key 174 * @cache: cache where we should search 175 * @entry: entry to start search from 176 * 177 * Finds next reusable entry in the hash chain which has the same key as @entry. 178 * If @entry is unhashed (which can happen when deletion of entry races with the 179 * search), finds the first reusable entry in the hash chain. The function drops 180 * reference to @entry and returns with a reference to the found entry. 181 */ 182 struct mb_cache_entry *mb_cache_entry_find_next(struct mb_cache *cache, 183 struct mb_cache_entry *entry) 184 { 185 return __entry_find(cache, entry, entry->e_key); 186 } 187 EXPORT_SYMBOL(mb_cache_entry_find_next); 188 189 /* 190 * mb_cache_entry_get - get a cache entry by value (and key) 191 * @cache - cache we work with 192 * @key - key 193 * @value - value 194 */ 195 struct mb_cache_entry *mb_cache_entry_get(struct mb_cache *cache, u32 key, 196 u64 value) 197 { 198 struct hlist_bl_node *node; 199 struct hlist_bl_head *head; 200 struct mb_cache_entry *entry; 201 202 head = mb_cache_entry_head(cache, key); 203 hlist_bl_lock(head); 204 hlist_bl_for_each_entry(entry, node, head, e_hash_list) { 205 if (entry->e_key == key && entry->e_value == value) { 206 atomic_inc(&entry->e_refcnt); 207 goto out; 208 } 209 } 210 entry = NULL; 211 out: 212 hlist_bl_unlock(head); 213 return entry; 214 } 215 EXPORT_SYMBOL(mb_cache_entry_get); 216 217 /* mb_cache_entry_delete - remove a cache entry 218 * @cache - cache we work with 219 * @key - key 220 * @value - value 221 * 222 * Remove entry from cache @cache with key @key and value @value. 223 */ 224 void mb_cache_entry_delete(struct mb_cache *cache, u32 key, u64 value) 225 { 226 struct hlist_bl_node *node; 227 struct hlist_bl_head *head; 228 struct mb_cache_entry *entry; 229 230 head = mb_cache_entry_head(cache, key); 231 hlist_bl_lock(head); 232 hlist_bl_for_each_entry(entry, node, head, e_hash_list) { 233 if (entry->e_key == key && entry->e_value == value) { 234 /* We keep hash list reference to keep entry alive */ 235 hlist_bl_del_init(&entry->e_hash_list); 236 hlist_bl_unlock(head); 237 spin_lock(&cache->c_list_lock); 238 if (!list_empty(&entry->e_list)) { 239 list_del_init(&entry->e_list); 240 cache->c_entry_count--; 241 atomic_dec(&entry->e_refcnt); 242 } 243 spin_unlock(&cache->c_list_lock); 244 mb_cache_entry_put(cache, entry); 245 return; 246 } 247 } 248 hlist_bl_unlock(head); 249 } 250 EXPORT_SYMBOL(mb_cache_entry_delete); 251 252 /* mb_cache_entry_touch - cache entry got used 253 * @cache - cache the entry belongs to 254 * @entry - entry that got used 255 * 256 * Marks entry as used to give hit higher chances of surviving in cache. 257 */ 258 void mb_cache_entry_touch(struct mb_cache *cache, 259 struct mb_cache_entry *entry) 260 { 261 entry->e_referenced = 1; 262 } 263 EXPORT_SYMBOL(mb_cache_entry_touch); 264 265 static unsigned long mb_cache_count(struct shrinker *shrink, 266 struct shrink_control *sc) 267 { 268 struct mb_cache *cache = container_of(shrink, struct mb_cache, 269 c_shrink); 270 271 return cache->c_entry_count; 272 } 273 274 /* Shrink number of entries in cache */ 275 static unsigned long mb_cache_shrink(struct mb_cache *cache, 276 unsigned long nr_to_scan) 277 { 278 struct mb_cache_entry *entry; 279 struct hlist_bl_head *head; 280 unsigned long shrunk = 0; 281 282 spin_lock(&cache->c_list_lock); 283 while (nr_to_scan-- && !list_empty(&cache->c_list)) { 284 entry = list_first_entry(&cache->c_list, 285 struct mb_cache_entry, e_list); 286 if (entry->e_referenced) { 287 entry->e_referenced = 0; 288 list_move_tail(&entry->e_list, &cache->c_list); 289 continue; 290 } 291 list_del_init(&entry->e_list); 292 cache->c_entry_count--; 293 /* 294 * We keep LRU list reference so that entry doesn't go away 295 * from under us. 296 */ 297 spin_unlock(&cache->c_list_lock); 298 head = mb_cache_entry_head(cache, entry->e_key); 299 hlist_bl_lock(head); 300 if (!hlist_bl_unhashed(&entry->e_hash_list)) { 301 hlist_bl_del_init(&entry->e_hash_list); 302 atomic_dec(&entry->e_refcnt); 303 } 304 hlist_bl_unlock(head); 305 if (mb_cache_entry_put(cache, entry)) 306 shrunk++; 307 cond_resched(); 308 spin_lock(&cache->c_list_lock); 309 } 310 spin_unlock(&cache->c_list_lock); 311 312 return shrunk; 313 } 314 315 static unsigned long mb_cache_scan(struct shrinker *shrink, 316 struct shrink_control *sc) 317 { 318 struct mb_cache *cache = container_of(shrink, struct mb_cache, 319 c_shrink); 320 return mb_cache_shrink(cache, sc->nr_to_scan); 321 } 322 323 /* We shrink 1/X of the cache when we have too many entries in it */ 324 #define SHRINK_DIVISOR 16 325 326 static void mb_cache_shrink_worker(struct work_struct *work) 327 { 328 struct mb_cache *cache = container_of(work, struct mb_cache, 329 c_shrink_work); 330 mb_cache_shrink(cache, cache->c_max_entries / SHRINK_DIVISOR); 331 } 332 333 /* 334 * mb_cache_create - create cache 335 * @bucket_bits: log2 of the hash table size 336 * 337 * Create cache for keys with 2^bucket_bits hash entries. 338 */ 339 struct mb_cache *mb_cache_create(int bucket_bits) 340 { 341 struct mb_cache *cache; 342 unsigned long bucket_count = 1UL << bucket_bits; 343 unsigned long i; 344 345 cache = kzalloc(sizeof(struct mb_cache), GFP_KERNEL); 346 if (!cache) 347 goto err_out; 348 cache->c_bucket_bits = bucket_bits; 349 cache->c_max_entries = bucket_count << 4; 350 INIT_LIST_HEAD(&cache->c_list); 351 spin_lock_init(&cache->c_list_lock); 352 cache->c_hash = kmalloc(bucket_count * sizeof(struct hlist_bl_head), 353 GFP_KERNEL); 354 if (!cache->c_hash) { 355 kfree(cache); 356 goto err_out; 357 } 358 for (i = 0; i < bucket_count; i++) 359 INIT_HLIST_BL_HEAD(&cache->c_hash[i]); 360 361 cache->c_shrink.count_objects = mb_cache_count; 362 cache->c_shrink.scan_objects = mb_cache_scan; 363 cache->c_shrink.seeks = DEFAULT_SEEKS; 364 if (register_shrinker(&cache->c_shrink)) { 365 kfree(cache->c_hash); 366 kfree(cache); 367 goto err_out; 368 } 369 370 INIT_WORK(&cache->c_shrink_work, mb_cache_shrink_worker); 371 372 return cache; 373 374 err_out: 375 return NULL; 376 } 377 EXPORT_SYMBOL(mb_cache_create); 378 379 /* 380 * mb_cache_destroy - destroy cache 381 * @cache: the cache to destroy 382 * 383 * Free all entries in cache and cache itself. Caller must make sure nobody 384 * (except shrinker) can reach @cache when calling this. 385 */ 386 void mb_cache_destroy(struct mb_cache *cache) 387 { 388 struct mb_cache_entry *entry, *next; 389 390 unregister_shrinker(&cache->c_shrink); 391 392 /* 393 * We don't bother with any locking. Cache must not be used at this 394 * point. 395 */ 396 list_for_each_entry_safe(entry, next, &cache->c_list, e_list) { 397 if (!hlist_bl_unhashed(&entry->e_hash_list)) { 398 hlist_bl_del_init(&entry->e_hash_list); 399 atomic_dec(&entry->e_refcnt); 400 } else 401 WARN_ON(1); 402 list_del(&entry->e_list); 403 WARN_ON(atomic_read(&entry->e_refcnt) != 1); 404 mb_cache_entry_put(cache, entry); 405 } 406 kfree(cache->c_hash); 407 kfree(cache); 408 } 409 EXPORT_SYMBOL(mb_cache_destroy); 410 411 static int __init mbcache_init(void) 412 { 413 mb_entry_cache = kmem_cache_create("mbcache", 414 sizeof(struct mb_cache_entry), 0, 415 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD, NULL); 416 if (!mb_entry_cache) 417 return -ENOMEM; 418 return 0; 419 } 420 421 static void __exit mbcache_exit(void) 422 { 423 kmem_cache_destroy(mb_entry_cache); 424 } 425 426 module_init(mbcache_init) 427 module_exit(mbcache_exit) 428 429 MODULE_AUTHOR("Jan Kara <[email protected]>"); 430 MODULE_DESCRIPTION("Meta block cache (for extended attributes)"); 431 MODULE_LICENSE("GPL"); 432