blob: 64a4b85c7dbcb69506d82c0a1aebf0312595fde2 [file] [log] [blame]
Benny Halevya1eaecb2011-05-19 22:14:47 -04001/*
2 * Device operations for the pnfs client.
3 *
4 * Copyright (c) 2002
5 * The Regents of the University of Michigan
6 * All Rights Reserved
7 *
8 * Dean Hildebrand <dhildebz@umich.edu>
9 * Garth Goodson <Garth.Goodson@netapp.com>
10 *
11 * Permission is granted to use, copy, create derivative works, and
12 * redistribute this software and such derivative works for any purpose,
13 * so long as the name of the University of Michigan is not used in
14 * any advertising or publicity pertaining to the use or distribution
15 * of this software without specific, written prior authorization. If
16 * the above copyright notice or any other identification of the
17 * University of Michigan is included in any copy of any portion of
18 * this software, then the disclaimer below must also be included.
19 *
20 * This software is provided as is, without representation or warranty
21 * of any kind either express or implied, including without limitation
22 * the implied warranties of merchantability, fitness for a particular
23 * purpose, or noninfringement. The Regents of the University of
24 * Michigan shall not be liable for any damages, including special,
25 * indirect, incidental, or consequential damages, with respect to any
26 * claim arising out of or in connection with the use of the software,
27 * even if it has been or is hereafter advised of the possibility of
28 * such damages.
29 */
30
31#include "pnfs.h"
32
33#define NFSDBG_FACILITY NFSDBG_PNFS
34
35/*
36 * Device ID RCU cache. A device ID is unique per server and layout type.
37 */
38#define NFS4_DEVICE_ID_HASH_BITS 5
39#define NFS4_DEVICE_ID_HASH_SIZE (1 << NFS4_DEVICE_ID_HASH_BITS)
40#define NFS4_DEVICE_ID_HASH_MASK (NFS4_DEVICE_ID_HASH_SIZE - 1)
41
42static struct hlist_head nfs4_deviceid_cache[NFS4_DEVICE_ID_HASH_SIZE];
43static DEFINE_SPINLOCK(nfs4_deviceid_lock);
44
45void
46nfs4_print_deviceid(const struct nfs4_deviceid *id)
47{
48 u32 *p = (u32 *)id;
49
50 dprintk("%s: device id= [%x%x%x%x]\n", __func__,
51 p[0], p[1], p[2], p[3]);
52}
53EXPORT_SYMBOL_GPL(nfs4_print_deviceid);
54
55static inline u32
56nfs4_deviceid_hash(const struct nfs4_deviceid *id)
57{
58 unsigned char *cptr = (unsigned char *)id->data;
59 unsigned int nbytes = NFS4_DEVICEID4_SIZE;
60 u32 x = 0;
61
62 while (nbytes--) {
63 x *= 37;
64 x += *cptr++;
65 }
66 return x & NFS4_DEVICE_ID_HASH_MASK;
67}
68
69/*
70 * Lookup a deviceid in cache and get a reference count on it if found
71 *
72 * @clp nfs_client associated with deviceid
73 * @id deviceid to look up
74 */
75struct nfs4_deviceid_node *
76nfs4_find_get_deviceid(const struct nfs_client *clp, const struct nfs4_deviceid *id)
77{
78 struct nfs4_deviceid_node *d;
79 struct hlist_node *n;
80 long hash = nfs4_deviceid_hash(id);
81
82 rcu_read_lock();
83 hlist_for_each_entry_rcu(d, n, &nfs4_deviceid_cache[hash], node) {
84 if (d->nfs_client == clp && !memcmp(&d->deviceid, id, sizeof(*id))) {
85 if (!atomic_inc_not_zero(&d->ref))
86 goto fail;
87 rcu_read_unlock();
88 return d;
89 }
90 }
91fail:
92 rcu_read_unlock();
93 return NULL;
94}
95EXPORT_SYMBOL_GPL(nfs4_find_get_deviceid);
96
97void
98nfs4_init_deviceid_node(struct nfs4_deviceid_node *d,
Benny Halevy1775bc32011-05-20 13:47:33 +020099 const struct pnfs_layoutdriver_type *ld,
Benny Halevya1eaecb2011-05-19 22:14:47 -0400100 const struct nfs_client *nfs_client,
101 const struct nfs4_deviceid *id)
102{
Benny Halevy1775bc32011-05-20 13:47:33 +0200103 INIT_HLIST_NODE(&d->node);
104 d->ld = ld;
Benny Halevya1eaecb2011-05-19 22:14:47 -0400105 d->nfs_client = nfs_client;
106 d->deviceid = *id;
Benny Halevy1775bc32011-05-20 13:47:33 +0200107 atomic_set(&d->ref, 1);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400108}
109EXPORT_SYMBOL_GPL(nfs4_init_deviceid_node);
110
111/*
112 * Uniquely initialize and insert a deviceid node into cache
113 *
114 * @new new deviceid node
Benny Halevy1775bc32011-05-20 13:47:33 +0200115 * Note that the caller must set up the following members:
116 * new->ld
117 * new->nfs_client
118 * new->deviceid
Benny Halevya1eaecb2011-05-19 22:14:47 -0400119 *
120 * @ret the inserted node, if none found, otherwise, the found entry.
121 */
122struct nfs4_deviceid_node *
123nfs4_insert_deviceid_node(struct nfs4_deviceid_node *new)
124{
125 struct nfs4_deviceid_node *d;
126 long hash;
127
128 spin_lock(&nfs4_deviceid_lock);
129 d = nfs4_find_get_deviceid(new->nfs_client, &new->deviceid);
130 if (d) {
131 spin_unlock(&nfs4_deviceid_lock);
132 return d;
133 }
134
Benny Halevya1eaecb2011-05-19 22:14:47 -0400135 hash = nfs4_deviceid_hash(&new->deviceid);
136 hlist_add_head_rcu(&new->node, &nfs4_deviceid_cache[hash]);
137 spin_unlock(&nfs4_deviceid_lock);
138
139 return new;
140}
141EXPORT_SYMBOL_GPL(nfs4_insert_deviceid_node);
142
143/*
144 * Dereference a deviceid node and delete it when its reference count drops
145 * to zero.
146 *
147 * @d deviceid node to put
148 *
149 * @ret true iff the node was deleted
150 */
151bool
152nfs4_put_deviceid_node(struct nfs4_deviceid_node *d)
153{
154 if (!atomic_dec_and_lock(&d->ref, &nfs4_deviceid_lock))
155 return false;
156 hlist_del_init_rcu(&d->node);
157 spin_unlock(&nfs4_deviceid_lock);
158 synchronize_rcu();
Benny Halevy1775bc32011-05-20 13:47:33 +0200159 d->ld->free_deviceid_node(d);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400160 return true;
161}
162EXPORT_SYMBOL_GPL(nfs4_put_deviceid_node);
Benny Halevy1775bc32011-05-20 13:47:33 +0200163
164static void
165_deviceid_purge_client(const struct nfs_client *clp, long hash)
166{
167 struct nfs4_deviceid_node *d;
168 struct hlist_node *n, *next;
169 HLIST_HEAD(tmp);
170
171 rcu_read_lock();
172 hlist_for_each_entry_rcu(d, n, &nfs4_deviceid_cache[hash], node)
173 if (d->nfs_client == clp && atomic_read(&d->ref)) {
174 hlist_del_init_rcu(&d->node);
175 hlist_add_head(&d->node, &tmp);
176 }
177 rcu_read_unlock();
178
179 if (hlist_empty(&tmp))
180 return;
181
182 synchronize_rcu();
183 hlist_for_each_entry_safe(d, n, next, &tmp, node)
184 if (atomic_dec_and_test(&d->ref))
185 d->ld->free_deviceid_node(d);
186}
187
188void
189nfs4_deviceid_purge_client(const struct nfs_client *clp)
190{
191 long h;
192
193 spin_lock(&nfs4_deviceid_lock);
194 for (h = 0; h < NFS4_DEVICE_ID_HASH_SIZE; h++)
195 _deviceid_purge_client(clp, h);
196 spin_unlock(&nfs4_deviceid_lock);
197}