]> git.karo-electronics.de Git - mv-sheeva.git/blob - fs/nfs/nfs4filelayout.c
NFSv4.1 move deviceid cache to filelayout driver
[mv-sheeva.git] / fs / nfs / nfs4filelayout.c
1 /*
2  *  Module for the pnfs nfs4 file layout driver.
3  *  Defines all I/O and Policy interface operations, plus code
4  *  to register itself with the pNFS client.
5  *
6  *  Copyright (c) 2002
7  *  The Regents of the University of Michigan
8  *  All Rights Reserved
9  *
10  *  Dean Hildebrand <dhildebz@umich.edu>
11  *
12  *  Permission is granted to use, copy, create derivative works, and
13  *  redistribute this software and such derivative works for any purpose,
14  *  so long as the name of the University of Michigan is not used in
15  *  any advertising or publicity pertaining to the use or distribution
16  *  of this software without specific, written prior authorization. If
17  *  the above copyright notice or any other identification of the
18  *  University of Michigan is included in any copy of any portion of
19  *  this software, then the disclaimer below must also be included.
20  *
21  *  This software is provided as is, without representation or warranty
22  *  of any kind either express or implied, including without limitation
23  *  the implied warranties of merchantability, fitness for a particular
24  *  purpose, or noninfringement.  The Regents of the University of
25  *  Michigan shall not be liable for any damages, including special,
26  *  indirect, incidental, or consequential damages, with respect to any
27  *  claim arising out of or in connection with the use of the software,
28  *  even if it has been or is hereafter advised of the possibility of
29  *  such damages.
30  */
31
32 #include <linux/nfs_fs.h>
33
34 #include "internal.h"
35 #include "nfs4filelayout.h"
36
37 #define NFSDBG_FACILITY         NFSDBG_PNFS_LD
38
39 MODULE_LICENSE("GPL");
40 MODULE_AUTHOR("Dean Hildebrand <dhildebz@umich.edu>");
41 MODULE_DESCRIPTION("The NFSv4 file layout driver");
42
43 #define FILELAYOUT_POLL_RETRY_MAX     (15*HZ)
44
45 static loff_t
46 filelayout_get_dense_offset(struct nfs4_filelayout_segment *flseg,
47                             loff_t offset)
48 {
49         u32 stripe_width = flseg->stripe_unit * flseg->dsaddr->stripe_count;
50         u64 tmp;
51
52         offset -= flseg->pattern_offset;
53         tmp = offset;
54         do_div(tmp, stripe_width);
55
56         return tmp * flseg->stripe_unit + do_div(offset, flseg->stripe_unit);
57 }
58
59 /* This function is used by the layout driver to calculate the
60  * offset of the file on the dserver based on whether the
61  * layout type is STRIPE_DENSE or STRIPE_SPARSE
62  */
63 static loff_t
64 filelayout_get_dserver_offset(struct pnfs_layout_segment *lseg, loff_t offset)
65 {
66         struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
67
68         switch (flseg->stripe_type) {
69         case STRIPE_SPARSE:
70                 return offset;
71
72         case STRIPE_DENSE:
73                 return filelayout_get_dense_offset(flseg, offset);
74         }
75
76         BUG();
77 }
78
79 /* For data server errors we don't recover from */
80 static void
81 filelayout_set_lo_fail(struct pnfs_layout_segment *lseg)
82 {
83         if (lseg->pls_range.iomode == IOMODE_RW) {
84                 dprintk("%s Setting layout IOMODE_RW fail bit\n", __func__);
85                 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
86         } else {
87                 dprintk("%s Setting layout IOMODE_READ fail bit\n", __func__);
88                 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
89         }
90 }
91
92 static int filelayout_async_handle_error(struct rpc_task *task,
93                                          struct nfs4_state *state,
94                                          struct nfs_client *clp,
95                                          int *reset)
96 {
97         if (task->tk_status >= 0)
98                 return 0;
99
100         *reset = 0;
101
102         switch (task->tk_status) {
103         case -NFS4ERR_BADSESSION:
104         case -NFS4ERR_BADSLOT:
105         case -NFS4ERR_BAD_HIGH_SLOT:
106         case -NFS4ERR_DEADSESSION:
107         case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
108         case -NFS4ERR_SEQ_FALSE_RETRY:
109         case -NFS4ERR_SEQ_MISORDERED:
110                 dprintk("%s ERROR %d, Reset session. Exchangeid "
111                         "flags 0x%x\n", __func__, task->tk_status,
112                         clp->cl_exchange_flags);
113                 nfs4_schedule_session_recovery(clp->cl_session);
114                 break;
115         case -NFS4ERR_DELAY:
116         case -NFS4ERR_GRACE:
117         case -EKEYEXPIRED:
118                 rpc_delay(task, FILELAYOUT_POLL_RETRY_MAX);
119                 break;
120         default:
121                 dprintk("%s DS error. Retry through MDS %d\n", __func__,
122                         task->tk_status);
123                 *reset = 1;
124                 break;
125         }
126         task->tk_status = 0;
127         return -EAGAIN;
128 }
129
130 /* NFS_PROTO call done callback routines */
131
132 static int filelayout_read_done_cb(struct rpc_task *task,
133                                 struct nfs_read_data *data)
134 {
135         struct nfs_client *clp = data->ds_clp;
136         int reset = 0;
137
138         dprintk("%s DS read\n", __func__);
139
140         if (filelayout_async_handle_error(task, data->args.context->state,
141                                           data->ds_clp, &reset) == -EAGAIN) {
142                 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
143                         __func__, data->ds_clp, data->ds_clp->cl_session);
144                 if (reset) {
145                         filelayout_set_lo_fail(data->lseg);
146                         nfs4_reset_read(task, data);
147                         clp = NFS_SERVER(data->inode)->nfs_client;
148                 }
149                 nfs_restart_rpc(task, clp);
150                 return -EAGAIN;
151         }
152
153         return 0;
154 }
155
156 /*
157  * Call ops for the async read/write cases
158  * In the case of dense layouts, the offset needs to be reset to its
159  * original value.
160  */
161 static void filelayout_read_prepare(struct rpc_task *task, void *data)
162 {
163         struct nfs_read_data *rdata = (struct nfs_read_data *)data;
164
165         rdata->read_done_cb = filelayout_read_done_cb;
166
167         if (nfs41_setup_sequence(rdata->ds_clp->cl_session,
168                                 &rdata->args.seq_args, &rdata->res.seq_res,
169                                 0, task))
170                 return;
171
172         rpc_call_start(task);
173 }
174
175 static void filelayout_read_call_done(struct rpc_task *task, void *data)
176 {
177         struct nfs_read_data *rdata = (struct nfs_read_data *)data;
178
179         dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
180
181         /* Note this may cause RPC to be resent */
182         rdata->mds_ops->rpc_call_done(task, data);
183 }
184
185 static void filelayout_read_release(void *data)
186 {
187         struct nfs_read_data *rdata = (struct nfs_read_data *)data;
188
189         rdata->mds_ops->rpc_release(data);
190 }
191
192 struct rpc_call_ops filelayout_read_call_ops = {
193         .rpc_call_prepare = filelayout_read_prepare,
194         .rpc_call_done = filelayout_read_call_done,
195         .rpc_release = filelayout_read_release,
196 };
197
198 static enum pnfs_try_status
199 filelayout_read_pagelist(struct nfs_read_data *data)
200 {
201         struct pnfs_layout_segment *lseg = data->lseg;
202         struct nfs4_pnfs_ds *ds;
203         loff_t offset = data->args.offset;
204         u32 j, idx;
205         struct nfs_fh *fh;
206         int status;
207
208         dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
209                 __func__, data->inode->i_ino,
210                 data->args.pgbase, (size_t)data->args.count, offset);
211
212         /* Retrieve the correct rpc_client for the byte range */
213         j = nfs4_fl_calc_j_index(lseg, offset);
214         idx = nfs4_fl_calc_ds_index(lseg, j);
215         ds = nfs4_fl_prepare_ds(lseg, idx);
216         if (!ds) {
217                 printk(KERN_ERR "%s: prepare_ds failed, use MDS\n", __func__);
218                 return PNFS_NOT_ATTEMPTED;
219         }
220         dprintk("%s USE DS:ip %x %hu\n", __func__,
221                 ntohl(ds->ds_ip_addr), ntohs(ds->ds_port));
222
223         /* No multipath support. Use first DS */
224         data->ds_clp = ds->ds_clp;
225         fh = nfs4_fl_select_ds_fh(lseg, j);
226         if (fh)
227                 data->args.fh = fh;
228
229         data->args.offset = filelayout_get_dserver_offset(lseg, offset);
230         data->mds_offset = offset;
231
232         /* Perform an asynchronous read to ds */
233         status = nfs_initiate_read(data, ds->ds_clp->cl_rpcclient,
234                                    &filelayout_read_call_ops);
235         BUG_ON(status != 0);
236         return PNFS_ATTEMPTED;
237 }
238
239 /*
240  * filelayout_check_layout()
241  *
242  * Make sure layout segment parameters are sane WRT the device.
243  * At this point no generic layer initialization of the lseg has occurred,
244  * and nothing has been added to the layout_hdr cache.
245  *
246  */
247 static int
248 filelayout_check_layout(struct pnfs_layout_hdr *lo,
249                         struct nfs4_filelayout_segment *fl,
250                         struct nfs4_layoutget_res *lgr,
251                         struct nfs4_deviceid *id)
252 {
253         struct nfs4_file_layout_dsaddr *dsaddr;
254         int status = -EINVAL;
255         struct nfs_server *nfss = NFS_SERVER(lo->plh_inode);
256
257         dprintk("--> %s\n", __func__);
258
259         if (fl->pattern_offset > lgr->range.offset) {
260                 dprintk("%s pattern_offset %lld to large\n",
261                                 __func__, fl->pattern_offset);
262                 goto out;
263         }
264
265         if (fl->stripe_unit % PAGE_SIZE) {
266                 dprintk("%s Stripe unit (%u) not page aligned\n",
267                         __func__, fl->stripe_unit);
268                 goto out;
269         }
270
271         /* find and reference the deviceid */
272         dsaddr = nfs4_fl_find_get_deviceid(id);
273         if (dsaddr == NULL) {
274                 dsaddr = get_device_info(lo->plh_inode, id);
275                 if (dsaddr == NULL)
276                         goto out;
277         }
278         fl->dsaddr = dsaddr;
279
280         if (fl->first_stripe_index < 0 ||
281             fl->first_stripe_index >= dsaddr->stripe_count) {
282                 dprintk("%s Bad first_stripe_index %d\n",
283                                 __func__, fl->first_stripe_index);
284                 goto out_put;
285         }
286
287         if ((fl->stripe_type == STRIPE_SPARSE &&
288             fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) ||
289             (fl->stripe_type == STRIPE_DENSE &&
290             fl->num_fh != dsaddr->stripe_count)) {
291                 dprintk("%s num_fh %u not valid for given packing\n",
292                         __func__, fl->num_fh);
293                 goto out_put;
294         }
295
296         if (fl->stripe_unit % nfss->rsize || fl->stripe_unit % nfss->wsize) {
297                 dprintk("%s Stripe unit (%u) not aligned with rsize %u "
298                         "wsize %u\n", __func__, fl->stripe_unit, nfss->rsize,
299                         nfss->wsize);
300         }
301
302         status = 0;
303 out:
304         dprintk("--> %s returns %d\n", __func__, status);
305         return status;
306 out_put:
307         nfs4_fl_put_deviceid(dsaddr);
308         goto out;
309 }
310
311 static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl)
312 {
313         int i;
314
315         for (i = 0; i < fl->num_fh; i++) {
316                 if (!fl->fh_array[i])
317                         break;
318                 kfree(fl->fh_array[i]);
319         }
320         kfree(fl->fh_array);
321         fl->fh_array = NULL;
322 }
323
324 static void
325 _filelayout_free_lseg(struct nfs4_filelayout_segment *fl)
326 {
327         filelayout_free_fh_array(fl);
328         kfree(fl);
329 }
330
331 static int
332 filelayout_decode_layout(struct pnfs_layout_hdr *flo,
333                          struct nfs4_filelayout_segment *fl,
334                          struct nfs4_layoutget_res *lgr,
335                          struct nfs4_deviceid *id)
336 {
337         uint32_t *p = (uint32_t *)lgr->layout.buf;
338         uint32_t nfl_util;
339         int i;
340
341         dprintk("%s: set_layout_map Begin\n", __func__);
342
343         memcpy(id, p, sizeof(*id));
344         p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
345         print_deviceid(id);
346
347         nfl_util = be32_to_cpup(p++);
348         if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS)
349                 fl->commit_through_mds = 1;
350         if (nfl_util & NFL4_UFLG_DENSE)
351                 fl->stripe_type = STRIPE_DENSE;
352         else
353                 fl->stripe_type = STRIPE_SPARSE;
354         fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK;
355
356         fl->first_stripe_index = be32_to_cpup(p++);
357         p = xdr_decode_hyper(p, &fl->pattern_offset);
358         fl->num_fh = be32_to_cpup(p++);
359
360         dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
361                 __func__, nfl_util, fl->num_fh, fl->first_stripe_index,
362                 fl->pattern_offset);
363
364         fl->fh_array = kzalloc(fl->num_fh * sizeof(struct nfs_fh *),
365                                GFP_KERNEL);
366         if (!fl->fh_array)
367                 return -ENOMEM;
368
369         for (i = 0; i < fl->num_fh; i++) {
370                 /* Do we want to use a mempool here? */
371                 fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), GFP_KERNEL);
372                 if (!fl->fh_array[i]) {
373                         filelayout_free_fh_array(fl);
374                         return -ENOMEM;
375                 }
376                 fl->fh_array[i]->size = be32_to_cpup(p++);
377                 if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) {
378                         printk(KERN_ERR "Too big fh %d received %d\n",
379                                i, fl->fh_array[i]->size);
380                         filelayout_free_fh_array(fl);
381                         return -EIO;
382                 }
383                 memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size);
384                 p += XDR_QUADLEN(fl->fh_array[i]->size);
385                 dprintk("DEBUG: %s: fh len %d\n", __func__,
386                         fl->fh_array[i]->size);
387         }
388
389         return 0;
390 }
391
392 static struct pnfs_layout_segment *
393 filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid,
394                       struct nfs4_layoutget_res *lgr)
395 {
396         struct nfs4_filelayout_segment *fl;
397         int rc;
398         struct nfs4_deviceid id;
399
400         dprintk("--> %s\n", __func__);
401         fl = kzalloc(sizeof(*fl), GFP_KERNEL);
402         if (!fl)
403                 return NULL;
404
405         rc = filelayout_decode_layout(layoutid, fl, lgr, &id);
406         if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id)) {
407                 _filelayout_free_lseg(fl);
408                 return NULL;
409         }
410         return &fl->generic_hdr;
411 }
412
413 static void
414 filelayout_free_lseg(struct pnfs_layout_segment *lseg)
415 {
416         struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
417
418         dprintk("--> %s\n", __func__);
419         nfs4_fl_put_deviceid(fl->dsaddr);
420         _filelayout_free_lseg(fl);
421 }
422
423 /*
424  * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
425  *
426  * return 1 :  coalesce page
427  * return 0 :  don't coalesce page
428  */
429 int
430 filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
431                    struct nfs_page *req)
432 {
433         u64 p_stripe, r_stripe;
434         u32 stripe_unit;
435
436         if (!pgio->pg_lseg)
437                 return 1;
438         p_stripe = (u64)prev->wb_index << PAGE_CACHE_SHIFT;
439         r_stripe = (u64)req->wb_index << PAGE_CACHE_SHIFT;
440         stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit;
441
442         do_div(p_stripe, stripe_unit);
443         do_div(r_stripe, stripe_unit);
444
445         return (p_stripe == r_stripe);
446 }
447
448 static struct pnfs_layoutdriver_type filelayout_type = {
449         .id                     = LAYOUT_NFSV4_1_FILES,
450         .name                   = "LAYOUT_NFSV4_1_FILES",
451         .owner                  = THIS_MODULE,
452         .alloc_lseg             = filelayout_alloc_lseg,
453         .free_lseg              = filelayout_free_lseg,
454         .pg_test                = filelayout_pg_test,
455         .read_pagelist          = filelayout_read_pagelist,
456 };
457
458 static int __init nfs4filelayout_init(void)
459 {
460         printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n",
461                __func__);
462         return pnfs_register_layoutdriver(&filelayout_type);
463 }
464
465 static void __exit nfs4filelayout_exit(void)
466 {
467         printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n",
468                __func__);
469         pnfs_unregister_layoutdriver(&filelayout_type);
470 }
471
472 module_init(nfs4filelayout_init);
473 module_exit(nfs4filelayout_exit);