David Howells | 726dd7f | 2009-04-03 16:42:38 +0100 | [diff] [blame] | 1 | /* FS-Cache netfs (client) registration |
| 2 | * |
| 3 | * Copyright (C) 2008 Red Hat, Inc. All Rights Reserved. |
| 4 | * Written by David Howells (dhowells@redhat.com) |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public Licence |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the Licence, or (at your option) any later version. |
| 10 | */ |
| 11 | |
| 12 | #define FSCACHE_DEBUG_LEVEL COOKIE |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/slab.h> |
| 15 | #include "internal.h" |
| 16 | |
| 17 | static LIST_HEAD(fscache_netfs_list); |
| 18 | |
| 19 | /* |
| 20 | * register a network filesystem for caching |
| 21 | */ |
| 22 | int __fscache_register_netfs(struct fscache_netfs *netfs) |
| 23 | { |
| 24 | struct fscache_netfs *ptr; |
Kinglong Mee | b130ed5 | 2015-11-04 15:20:24 +0000 | [diff] [blame] | 25 | struct fscache_cookie *cookie; |
David Howells | 726dd7f | 2009-04-03 16:42:38 +0100 | [diff] [blame] | 26 | int ret; |
| 27 | |
| 28 | _enter("{%s}", netfs->name); |
| 29 | |
| 30 | INIT_LIST_HEAD(&netfs->link); |
| 31 | |
| 32 | /* allocate a cookie for the primary index */ |
Kinglong Mee | b130ed5 | 2015-11-04 15:20:24 +0000 | [diff] [blame] | 33 | cookie = kmem_cache_zalloc(fscache_cookie_jar, GFP_KERNEL); |
David Howells | 726dd7f | 2009-04-03 16:42:38 +0100 | [diff] [blame] | 34 | |
Kinglong Mee | b130ed5 | 2015-11-04 15:20:24 +0000 | [diff] [blame] | 35 | if (!cookie) { |
David Howells | 726dd7f | 2009-04-03 16:42:38 +0100 | [diff] [blame] | 36 | _leave(" = -ENOMEM"); |
| 37 | return -ENOMEM; |
| 38 | } |
| 39 | |
| 40 | /* initialise the primary index cookie */ |
Kinglong Mee | b130ed5 | 2015-11-04 15:20:24 +0000 | [diff] [blame] | 41 | atomic_set(&cookie->usage, 1); |
| 42 | atomic_set(&cookie->n_children, 0); |
| 43 | atomic_set(&cookie->n_active, 1); |
David Howells | 726dd7f | 2009-04-03 16:42:38 +0100 | [diff] [blame] | 44 | |
Kinglong Mee | b130ed5 | 2015-11-04 15:20:24 +0000 | [diff] [blame] | 45 | cookie->def = &fscache_fsdef_netfs_def; |
| 46 | cookie->parent = &fscache_fsdef_index; |
| 47 | cookie->netfs_data = netfs; |
| 48 | cookie->flags = 1 << FSCACHE_COOKIE_ENABLED; |
David Howells | 726dd7f | 2009-04-03 16:42:38 +0100 | [diff] [blame] | 49 | |
Kinglong Mee | b130ed5 | 2015-11-04 15:20:24 +0000 | [diff] [blame] | 50 | spin_lock_init(&cookie->lock); |
David Howells | 0542f97 | 2017-05-23 21:54:06 -0400 | [diff] [blame] | 51 | spin_lock_init(&cookie->stores_lock); |
Kinglong Mee | b130ed5 | 2015-11-04 15:20:24 +0000 | [diff] [blame] | 52 | INIT_HLIST_HEAD(&cookie->backing_objects); |
David Howells | 726dd7f | 2009-04-03 16:42:38 +0100 | [diff] [blame] | 53 | |
| 54 | /* check the netfs type is not already present */ |
| 55 | down_write(&fscache_addremove_sem); |
| 56 | |
| 57 | ret = -EEXIST; |
| 58 | list_for_each_entry(ptr, &fscache_netfs_list, link) { |
| 59 | if (strcmp(ptr->name, netfs->name) == 0) |
| 60 | goto already_registered; |
| 61 | } |
| 62 | |
Kinglong Mee | b130ed5 | 2015-11-04 15:20:24 +0000 | [diff] [blame] | 63 | atomic_inc(&cookie->parent->usage); |
| 64 | atomic_inc(&cookie->parent->n_children); |
Kinglong Mee | 86108c2 | 2015-11-04 15:20:15 +0000 | [diff] [blame] | 65 | |
Kinglong Mee | b130ed5 | 2015-11-04 15:20:24 +0000 | [diff] [blame] | 66 | netfs->primary_index = cookie; |
David Howells | 726dd7f | 2009-04-03 16:42:38 +0100 | [diff] [blame] | 67 | list_add(&netfs->link, &fscache_netfs_list); |
| 68 | ret = 0; |
| 69 | |
Fabian Frederick | 36dfd11 | 2014-06-04 16:05:38 -0700 | [diff] [blame] | 70 | pr_notice("Netfs '%s' registered for caching\n", netfs->name); |
David Howells | 726dd7f | 2009-04-03 16:42:38 +0100 | [diff] [blame] | 71 | |
| 72 | already_registered: |
| 73 | up_write(&fscache_addremove_sem); |
| 74 | |
Kinglong Mee | b130ed5 | 2015-11-04 15:20:24 +0000 | [diff] [blame] | 75 | if (ret < 0) |
| 76 | kmem_cache_free(fscache_cookie_jar, cookie); |
David Howells | 726dd7f | 2009-04-03 16:42:38 +0100 | [diff] [blame] | 77 | |
| 78 | _leave(" = %d", ret); |
| 79 | return ret; |
| 80 | } |
| 81 | EXPORT_SYMBOL(__fscache_register_netfs); |
| 82 | |
| 83 | /* |
| 84 | * unregister a network filesystem from the cache |
| 85 | * - all cookies must have been released first |
| 86 | */ |
| 87 | void __fscache_unregister_netfs(struct fscache_netfs *netfs) |
| 88 | { |
| 89 | _enter("{%s.%u}", netfs->name, netfs->version); |
| 90 | |
| 91 | down_write(&fscache_addremove_sem); |
| 92 | |
| 93 | list_del(&netfs->link); |
| 94 | fscache_relinquish_cookie(netfs->primary_index, 0); |
| 95 | |
| 96 | up_write(&fscache_addremove_sem); |
| 97 | |
Fabian Frederick | 36dfd11 | 2014-06-04 16:05:38 -0700 | [diff] [blame] | 98 | pr_notice("Netfs '%s' unregistered from caching\n", |
| 99 | netfs->name); |
David Howells | 726dd7f | 2009-04-03 16:42:38 +0100 | [diff] [blame] | 100 | |
| 101 | _leave(""); |
| 102 | } |
| 103 | EXPORT_SYMBOL(__fscache_unregister_netfs); |