]> git.karo-electronics.de Git - karo-tx-linux.git/blob - fs/nfs/nfs4session.c
NFSv4.1: Cleanup move session slot management to fs/nfs/nfs4session.c
[karo-tx-linux.git] / fs / nfs / nfs4session.c
1 /*
2  * fs/nfs/nfs4session.c
3  *
4  * Copyright (c) 2012 Trond Myklebust <Trond.Myklebust@netapp.com>
5  *
6  */
7 #include <linux/kernel.h>
8 #include <linux/errno.h>
9 #include <linux/string.h>
10 #include <linux/printk.h>
11 #include <linux/slab.h>
12 #include <linux/sunrpc/sched.h>
13 #include <linux/sunrpc/bc_xprt.h>
14 #include <linux/nfs.h>
15 #include <linux/nfs4.h>
16 #include <linux/nfs_fs.h>
17 #include <linux/module.h>
18
19 #include "nfs4_fs.h"
20 #include "internal.h"
21 #include "nfs4session.h"
22 #include "callback.h"
23
24 #define NFSDBG_FACILITY         NFSDBG_STATE
25
26 /*
27  * nfs4_shrink_slot_table - free retired slots from the slot table
28  */
29 static void nfs4_shrink_slot_table(struct nfs4_slot_table  *tbl, u32 newsize)
30 {
31         struct nfs4_slot **p;
32         if (newsize >= tbl->max_slots)
33                 return;
34
35         p = &tbl->slots;
36         while (newsize--)
37                 p = &(*p)->next;
38         while (*p) {
39                 struct nfs4_slot *slot = *p;
40
41                 *p = slot->next;
42                 kfree(slot);
43                 tbl->max_slots--;
44         }
45 }
46
47 /*
48  * nfs4_free_slot - free a slot and efficiently update slot table.
49  *
50  * freeing a slot is trivially done by clearing its respective bit
51  * in the bitmap.
52  * If the freed slotid equals highest_used_slotid we want to update it
53  * so that the server would be able to size down the slot table if needed,
54  * otherwise we know that the highest_used_slotid is still in use.
55  * When updating highest_used_slotid there may be "holes" in the bitmap
56  * so we need to scan down from highest_used_slotid to 0 looking for the now
57  * highest slotid in use.
58  * If none found, highest_used_slotid is set to NFS4_NO_SLOT.
59  *
60  * Must be called while holding tbl->slot_tbl_lock
61  */
62 void nfs4_free_slot(struct nfs4_slot_table *tbl, struct nfs4_slot *slot)
63 {
64         u32 slotid = slot->slot_nr;
65
66         /* clear used bit in bitmap */
67         __clear_bit(slotid, tbl->used_slots);
68
69         /* update highest_used_slotid when it is freed */
70         if (slotid == tbl->highest_used_slotid) {
71                 u32 new_max = find_last_bit(tbl->used_slots, slotid);
72                 if (new_max < slotid)
73                         tbl->highest_used_slotid = new_max;
74                 else {
75                         tbl->highest_used_slotid = NFS4_NO_SLOT;
76                         nfs4_session_drain_complete(tbl->session, tbl);
77                 }
78         }
79         dprintk("%s: slotid %u highest_used_slotid %d\n", __func__,
80                 slotid, tbl->highest_used_slotid);
81 }
82
83 static struct nfs4_slot *nfs4_new_slot(struct nfs4_slot_table  *tbl,
84                 u32 slotid, u32 seq_init, gfp_t gfp_mask)
85 {
86         struct nfs4_slot *slot;
87
88         slot = kzalloc(sizeof(*slot), gfp_mask);
89         if (slot) {
90                 slot->table = tbl;
91                 slot->slot_nr = slotid;
92                 slot->seq_nr = seq_init;
93         }
94         return slot;
95 }
96
97 static struct nfs4_slot *nfs4_find_or_create_slot(struct nfs4_slot_table  *tbl,
98                 u32 slotid, u32 seq_init, gfp_t gfp_mask)
99 {
100         struct nfs4_slot **p, *slot;
101
102         p = &tbl->slots;
103         for (;;) {
104                 if (*p == NULL) {
105                         *p = nfs4_new_slot(tbl, tbl->max_slots,
106                                         seq_init, gfp_mask);
107                         if (*p == NULL)
108                                 break;
109                         tbl->max_slots++;
110                 }
111                 slot = *p;
112                 if (slot->slot_nr == slotid)
113                         return slot;
114                 p = &slot->next;
115         }
116         return ERR_PTR(-ENOMEM);
117 }
118
119 /*
120  * nfs4_alloc_slot - efficiently look for a free slot
121  *
122  * nfs4_alloc_slot looks for an unset bit in the used_slots bitmap.
123  * If found, we mark the slot as used, update the highest_used_slotid,
124  * and respectively set up the sequence operation args.
125  *
126  * Note: must be called with under the slot_tbl_lock.
127  */
128 struct nfs4_slot *nfs4_alloc_slot(struct nfs4_slot_table *tbl)
129 {
130         struct nfs4_slot *ret = ERR_PTR(-EBUSY);
131         u32 slotid;
132
133         dprintk("--> %s used_slots=%04lx highest_used=%u max_slots=%u\n",
134                 __func__, tbl->used_slots[0], tbl->highest_used_slotid,
135                 tbl->max_slotid + 1);
136         slotid = find_first_zero_bit(tbl->used_slots, tbl->max_slotid + 1);
137         if (slotid > tbl->max_slotid)
138                 goto out;
139         ret = nfs4_find_or_create_slot(tbl, slotid, 1, GFP_NOWAIT);
140         if (IS_ERR(ret))
141                 goto out;
142         __set_bit(slotid, tbl->used_slots);
143         if (slotid > tbl->highest_used_slotid ||
144                         tbl->highest_used_slotid == NFS4_NO_SLOT)
145                 tbl->highest_used_slotid = slotid;
146         ret->renewal_time = jiffies;
147         ret->generation = tbl->generation;
148
149 out:
150         dprintk("<-- %s used_slots=%04lx highest_used=%d slotid=%d \n",
151                 __func__, tbl->used_slots[0], tbl->highest_used_slotid,
152                 !IS_ERR(ret) ? ret->slot_nr : -1);
153         return ret;
154 }
155
156 static int nfs4_grow_slot_table(struct nfs4_slot_table *tbl,
157                  u32 max_reqs, u32 ivalue)
158 {
159         if (max_reqs <= tbl->max_slots)
160                 return 0;
161         if (!IS_ERR(nfs4_find_or_create_slot(tbl, max_reqs - 1, ivalue, GFP_NOFS)))
162                 return 0;
163         return -ENOMEM;
164 }
165
166 static void nfs4_reset_slot_table(struct nfs4_slot_table *tbl,
167                 u32 server_highest_slotid,
168                 u32 ivalue)
169 {
170         struct nfs4_slot **p;
171
172         nfs4_shrink_slot_table(tbl, server_highest_slotid + 1);
173         p = &tbl->slots;
174         while (*p) {
175                 (*p)->seq_nr = ivalue;
176                 p = &(*p)->next;
177         }
178         tbl->highest_used_slotid = NFS4_NO_SLOT;
179         tbl->target_highest_slotid = server_highest_slotid;
180         tbl->server_highest_slotid = server_highest_slotid;
181         tbl->max_slotid = server_highest_slotid;
182 }
183
184 /*
185  * (re)Initialise a slot table
186  */
187 static int nfs4_realloc_slot_table(struct nfs4_slot_table *tbl,
188                 u32 max_reqs, u32 ivalue)
189 {
190         int ret;
191
192         dprintk("--> %s: max_reqs=%u, tbl->max_slots %d\n", __func__,
193                 max_reqs, tbl->max_slots);
194
195         if (max_reqs > NFS4_MAX_SLOT_TABLE)
196                 max_reqs = NFS4_MAX_SLOT_TABLE;
197
198         ret = nfs4_grow_slot_table(tbl, max_reqs, ivalue);
199         if (ret)
200                 goto out;
201
202         spin_lock(&tbl->slot_tbl_lock);
203         nfs4_reset_slot_table(tbl, max_reqs - 1, ivalue);
204         spin_unlock(&tbl->slot_tbl_lock);
205
206         dprintk("%s: tbl=%p slots=%p max_slots=%d\n", __func__,
207                 tbl, tbl->slots, tbl->max_slots);
208 out:
209         dprintk("<-- %s: return %d\n", __func__, ret);
210         return ret;
211 }
212
213 /* Destroy the slot table */
214 static void nfs4_destroy_slot_tables(struct nfs4_session *session)
215 {
216         nfs4_shrink_slot_table(&session->fc_slot_table, 0);
217         nfs4_shrink_slot_table(&session->bc_slot_table, 0);
218 }
219
220 /* Update the client's idea of target_highest_slotid */
221 static void nfs41_set_target_slotid_locked(struct nfs4_slot_table *tbl,
222                 u32 target_highest_slotid)
223 {
224         unsigned int max_slotid, i;
225
226         if (tbl->target_highest_slotid == target_highest_slotid)
227                 return;
228         tbl->target_highest_slotid = target_highest_slotid;
229         tbl->generation++;
230
231         max_slotid = min(NFS4_MAX_SLOT_TABLE - 1, tbl->target_highest_slotid);
232         for (i = tbl->max_slotid + 1; i <= max_slotid; i++)
233                 rpc_wake_up_next(&tbl->slot_tbl_waitq);
234         tbl->max_slotid = max_slotid;
235 }
236
237 void nfs41_set_target_slotid(struct nfs4_slot_table *tbl,
238                 u32 target_highest_slotid)
239 {
240         spin_lock(&tbl->slot_tbl_lock);
241         nfs41_set_target_slotid_locked(tbl, target_highest_slotid);
242         spin_unlock(&tbl->slot_tbl_lock);
243 }
244
245 static void nfs41_set_server_slotid_locked(struct nfs4_slot_table *tbl,
246                 u32 highest_slotid)
247 {
248         if (tbl->server_highest_slotid == highest_slotid)
249                 return;
250         if (tbl->highest_used_slotid > highest_slotid)
251                 return;
252         /* Deallocate slots */
253         nfs4_shrink_slot_table(tbl, highest_slotid + 1);
254         tbl->server_highest_slotid = highest_slotid;
255 }
256
257 void nfs41_update_target_slotid(struct nfs4_slot_table *tbl,
258                 struct nfs4_slot *slot,
259                 struct nfs4_sequence_res *res)
260 {
261         spin_lock(&tbl->slot_tbl_lock);
262         if (tbl->generation != slot->generation)
263                 goto out;
264         nfs41_set_server_slotid_locked(tbl, res->sr_highest_slotid);
265         nfs41_set_target_slotid_locked(tbl, res->sr_target_highest_slotid);
266 out:
267         spin_unlock(&tbl->slot_tbl_lock);
268 }
269
270 /*
271  * Initialize or reset the forechannel and backchannel tables
272  */
273 int nfs4_setup_session_slot_tables(struct nfs4_session *ses)
274 {
275         struct nfs4_slot_table *tbl;
276         int status;
277
278         dprintk("--> %s\n", __func__);
279         /* Fore channel */
280         tbl = &ses->fc_slot_table;
281         tbl->session = ses;
282         status = nfs4_realloc_slot_table(tbl, ses->fc_attrs.max_reqs, 1);
283         if (status) /* -ENOMEM */
284                 return status;
285         /* Back channel */
286         tbl = &ses->bc_slot_table;
287         tbl->session = ses;
288         status = nfs4_realloc_slot_table(tbl, ses->bc_attrs.max_reqs, 0);
289         if (status && tbl->slots == NULL)
290                 /* Fore and back channel share a connection so get
291                  * both slot tables or neither */
292                 nfs4_destroy_slot_tables(ses);
293         return status;
294 }
295
296 struct nfs4_session *nfs4_alloc_session(struct nfs_client *clp)
297 {
298         struct nfs4_session *session;
299         struct nfs4_slot_table *tbl;
300
301         session = kzalloc(sizeof(struct nfs4_session), GFP_NOFS);
302         if (!session)
303                 return NULL;
304
305         tbl = &session->fc_slot_table;
306         tbl->highest_used_slotid = NFS4_NO_SLOT;
307         spin_lock_init(&tbl->slot_tbl_lock);
308         rpc_init_priority_wait_queue(&tbl->slot_tbl_waitq, "ForeChannel Slot table");
309         init_completion(&tbl->complete);
310
311         tbl = &session->bc_slot_table;
312         tbl->highest_used_slotid = NFS4_NO_SLOT;
313         spin_lock_init(&tbl->slot_tbl_lock);
314         rpc_init_wait_queue(&tbl->slot_tbl_waitq, "BackChannel Slot table");
315         init_completion(&tbl->complete);
316
317         session->session_state = 1<<NFS4_SESSION_INITING;
318
319         session->clp = clp;
320         return session;
321 }
322
323 void nfs4_destroy_session(struct nfs4_session *session)
324 {
325         struct rpc_xprt *xprt;
326         struct rpc_cred *cred;
327
328         cred = nfs4_get_exchange_id_cred(session->clp);
329         nfs4_proc_destroy_session(session, cred);
330         if (cred)
331                 put_rpccred(cred);
332
333         rcu_read_lock();
334         xprt = rcu_dereference(session->clp->cl_rpcclient->cl_xprt);
335         rcu_read_unlock();
336         dprintk("%s Destroy backchannel for xprt %p\n",
337                 __func__, xprt);
338         xprt_destroy_backchannel(xprt, NFS41_BC_MIN_CALLBACKS);
339         nfs4_destroy_slot_tables(session);
340         kfree(session);
341 }
342
343 /*
344  * With sessions, the client is not marked ready until after a
345  * successful EXCHANGE_ID and CREATE_SESSION.
346  *
347  * Map errors cl_cons_state errors to EPROTONOSUPPORT to indicate
348  * other versions of NFS can be tried.
349  */
350 static int nfs41_check_session_ready(struct nfs_client *clp)
351 {
352         int ret;
353         
354         if (clp->cl_cons_state == NFS_CS_SESSION_INITING) {
355                 ret = nfs4_client_recover_expired_lease(clp);
356                 if (ret)
357                         return ret;
358         }
359         if (clp->cl_cons_state < NFS_CS_READY)
360                 return -EPROTONOSUPPORT;
361         smp_rmb();
362         return 0;
363 }
364
365 int nfs4_init_session(struct nfs_server *server)
366 {
367         struct nfs_client *clp = server->nfs_client;
368         struct nfs4_session *session;
369         unsigned int target_max_rqst_sz = NFS_MAX_FILE_IO_SIZE;
370         unsigned int target_max_resp_sz = NFS_MAX_FILE_IO_SIZE;
371
372         if (!nfs4_has_session(clp))
373                 return 0;
374
375         if (server->rsize != 0)
376                 target_max_resp_sz = server->rsize;
377         target_max_resp_sz += nfs41_maxread_overhead;
378
379         if (server->wsize != 0)
380                 target_max_rqst_sz = server->wsize;
381         target_max_rqst_sz += nfs41_maxwrite_overhead;
382
383         session = clp->cl_session;
384         spin_lock(&clp->cl_lock);
385         if (test_and_clear_bit(NFS4_SESSION_INITING, &session->session_state)) {
386                 /* Initialise targets and channel attributes */
387                 session->fc_target_max_rqst_sz = target_max_rqst_sz;
388                 session->fc_attrs.max_rqst_sz = target_max_rqst_sz;
389                 session->fc_target_max_resp_sz = target_max_resp_sz;
390                 session->fc_attrs.max_resp_sz = target_max_resp_sz;
391         } else {
392                 /* Just adjust the targets */
393                 if (target_max_rqst_sz > session->fc_target_max_rqst_sz) {
394                         session->fc_target_max_rqst_sz = target_max_rqst_sz;
395                         set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
396                 }
397                 if (target_max_resp_sz > session->fc_target_max_resp_sz) {
398                         session->fc_target_max_resp_sz = target_max_resp_sz;
399                         set_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state);
400                 }
401         }
402         spin_unlock(&clp->cl_lock);
403
404         if (test_bit(NFS4CLNT_SESSION_RESET, &clp->cl_state))
405                 nfs4_schedule_lease_recovery(clp);
406
407         return nfs41_check_session_ready(clp);
408 }
409
410 int nfs4_init_ds_session(struct nfs_client *clp, unsigned long lease_time)
411 {
412         struct nfs4_session *session = clp->cl_session;
413         int ret;
414
415         spin_lock(&clp->cl_lock);
416         if (test_and_clear_bit(NFS4_SESSION_INITING, &session->session_state)) {
417                 /*
418                  * Do not set NFS_CS_CHECK_LEASE_TIME instead set the
419                  * DS lease to be equal to the MDS lease.
420                  */
421                 clp->cl_lease_time = lease_time;
422                 clp->cl_last_renewal = jiffies;
423         }
424         spin_unlock(&clp->cl_lock);
425
426         ret = nfs41_check_session_ready(clp);
427         if (ret)
428                 return ret;
429         /* Test for the DS role */
430         if (!is_ds_client(clp))
431                 return -ENODEV;
432         return 0;
433 }
434 EXPORT_SYMBOL_GPL(nfs4_init_ds_session);
435
436