blob: 46bb31b796837fca55d5e6714a09346e01efbef1 [file] [log] [blame]
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001/*
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>
Benny Halevy19345cb2011-06-19 18:33:46 -040033#include <linux/nfs_page.h>
Andy Adamson16b374c2010-10-20 00:18:04 -040034
35#include "internal.h"
36#include "nfs4filelayout.h"
Dean Hildebrand7ab672c2010-10-20 00:18:00 -040037
38#define NFSDBG_FACILITY NFSDBG_PNFS_LD
39
40MODULE_LICENSE("GPL");
41MODULE_AUTHOR("Dean Hildebrand <dhildebz@umich.edu>");
42MODULE_DESCRIPTION("The NFSv4 file layout driver");
43
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +000044#define FILELAYOUT_POLL_RETRY_MAX (15*HZ)
45
Fred Isamancfe7f412011-03-01 01:34:18 +000046static loff_t
47filelayout_get_dense_offset(struct nfs4_filelayout_segment *flseg,
48 loff_t offset)
49{
50 u32 stripe_width = flseg->stripe_unit * flseg->dsaddr->stripe_count;
51 u64 tmp;
52
53 offset -= flseg->pattern_offset;
54 tmp = offset;
55 do_div(tmp, stripe_width);
56
57 return tmp * flseg->stripe_unit + do_div(offset, flseg->stripe_unit);
58}
59
60/* This function is used by the layout driver to calculate the
61 * offset of the file on the dserver based on whether the
62 * layout type is STRIPE_DENSE or STRIPE_SPARSE
63 */
64static loff_t
65filelayout_get_dserver_offset(struct pnfs_layout_segment *lseg, loff_t offset)
66{
67 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
68
69 switch (flseg->stripe_type) {
70 case STRIPE_SPARSE:
71 return offset;
72
73 case STRIPE_DENSE:
74 return filelayout_get_dense_offset(flseg, offset);
75 }
76
77 BUG();
78}
79
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +000080/* For data server errors we don't recover from */
81static void
82filelayout_set_lo_fail(struct pnfs_layout_segment *lseg)
83{
84 if (lseg->pls_range.iomode == IOMODE_RW) {
85 dprintk("%s Setting layout IOMODE_RW fail bit\n", __func__);
86 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
87 } else {
88 dprintk("%s Setting layout IOMODE_READ fail bit\n", __func__);
89 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
90 }
91}
92
93static int filelayout_async_handle_error(struct rpc_task *task,
94 struct nfs4_state *state,
95 struct nfs_client *clp,
96 int *reset)
97{
98 if (task->tk_status >= 0)
99 return 0;
100
101 *reset = 0;
102
103 switch (task->tk_status) {
104 case -NFS4ERR_BADSESSION:
105 case -NFS4ERR_BADSLOT:
106 case -NFS4ERR_BAD_HIGH_SLOT:
107 case -NFS4ERR_DEADSESSION:
108 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
109 case -NFS4ERR_SEQ_FALSE_RETRY:
110 case -NFS4ERR_SEQ_MISORDERED:
111 dprintk("%s ERROR %d, Reset session. Exchangeid "
112 "flags 0x%x\n", __func__, task->tk_status,
113 clp->cl_exchange_flags);
114 nfs4_schedule_session_recovery(clp->cl_session);
115 break;
116 case -NFS4ERR_DELAY:
117 case -NFS4ERR_GRACE:
118 case -EKEYEXPIRED:
119 rpc_delay(task, FILELAYOUT_POLL_RETRY_MAX);
120 break;
Andy Adamsona8a4ae32011-05-03 13:43:03 -0400121 case -NFS4ERR_RETRY_UNCACHED_REP:
122 break;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000123 default:
124 dprintk("%s DS error. Retry through MDS %d\n", __func__,
125 task->tk_status);
126 *reset = 1;
127 break;
128 }
129 task->tk_status = 0;
130 return -EAGAIN;
131}
132
133/* NFS_PROTO call done callback routines */
134
135static int filelayout_read_done_cb(struct rpc_task *task,
136 struct nfs_read_data *data)
137{
138 struct nfs_client *clp = data->ds_clp;
139 int reset = 0;
140
141 dprintk("%s DS read\n", __func__);
142
143 if (filelayout_async_handle_error(task, data->args.context->state,
144 data->ds_clp, &reset) == -EAGAIN) {
145 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
146 __func__, data->ds_clp, data->ds_clp->cl_session);
147 if (reset) {
148 filelayout_set_lo_fail(data->lseg);
149 nfs4_reset_read(task, data);
150 clp = NFS_SERVER(data->inode)->nfs_client;
151 }
152 nfs_restart_rpc(task, clp);
153 return -EAGAIN;
154 }
155
156 return 0;
157}
158
Andy Adamson16b374c2010-10-20 00:18:04 -0400159/*
Andy Adamson863a3c62011-03-23 13:27:54 +0000160 * We reference the rpc_cred of the first WRITE that triggers the need for
161 * a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
162 * rfc5661 is not clear about which credential should be used.
163 */
164static void
165filelayout_set_layoutcommit(struct nfs_write_data *wdata)
166{
167 if (FILELAYOUT_LSEG(wdata->lseg)->commit_through_mds ||
168 wdata->res.verf->committed == NFS_FILE_SYNC)
169 return;
170
171 pnfs_set_layoutcommit(wdata);
172 dprintk("%s ionde %lu pls_end_pos %lu\n", __func__, wdata->inode->i_ino,
173 (unsigned long) wdata->lseg->pls_end_pos);
174}
175
176/*
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000177 * Call ops for the async read/write cases
178 * In the case of dense layouts, the offset needs to be reset to its
179 * original value.
180 */
181static void filelayout_read_prepare(struct rpc_task *task, void *data)
182{
183 struct nfs_read_data *rdata = (struct nfs_read_data *)data;
184
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000185 rdata->read_done_cb = filelayout_read_done_cb;
186
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000187 if (nfs41_setup_sequence(rdata->ds_clp->cl_session,
188 &rdata->args.seq_args, &rdata->res.seq_res,
189 0, task))
190 return;
191
192 rpc_call_start(task);
193}
194
195static void filelayout_read_call_done(struct rpc_task *task, void *data)
196{
197 struct nfs_read_data *rdata = (struct nfs_read_data *)data;
198
199 dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
200
201 /* Note this may cause RPC to be resent */
202 rdata->mds_ops->rpc_call_done(task, data);
203}
204
205static void filelayout_read_release(void *data)
206{
207 struct nfs_read_data *rdata = (struct nfs_read_data *)data;
208
209 rdata->mds_ops->rpc_release(data);
210}
211
Fred Isamana69aef12011-03-03 15:13:47 +0000212static int filelayout_write_done_cb(struct rpc_task *task,
213 struct nfs_write_data *data)
214{
215 int reset = 0;
216
217 if (filelayout_async_handle_error(task, data->args.context->state,
218 data->ds_clp, &reset) == -EAGAIN) {
219 struct nfs_client *clp;
220
221 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
222 __func__, data->ds_clp, data->ds_clp->cl_session);
223 if (reset) {
224 filelayout_set_lo_fail(data->lseg);
225 nfs4_reset_write(task, data);
226 clp = NFS_SERVER(data->inode)->nfs_client;
227 } else
228 clp = data->ds_clp;
229 nfs_restart_rpc(task, clp);
230 return -EAGAIN;
231 }
232
Andy Adamson863a3c62011-03-23 13:27:54 +0000233 filelayout_set_layoutcommit(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000234 return 0;
235}
236
Fred Isamane0c2b382011-03-23 13:27:53 +0000237/* Fake up some data that will cause nfs_commit_release to retry the writes. */
238static void prepare_to_resend_writes(struct nfs_write_data *data)
239{
240 struct nfs_page *first = nfs_list_entry(data->pages.next);
241
242 data->task.tk_status = 0;
243 memcpy(data->verf.verifier, first->wb_verf.verifier,
244 sizeof(first->wb_verf.verifier));
245 data->verf.verifier[0]++; /* ensure verifier mismatch */
246}
247
248static int filelayout_commit_done_cb(struct rpc_task *task,
249 struct nfs_write_data *data)
250{
251 int reset = 0;
252
253 if (filelayout_async_handle_error(task, data->args.context->state,
254 data->ds_clp, &reset) == -EAGAIN) {
255 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
256 __func__, data->ds_clp, data->ds_clp->cl_session);
257 if (reset) {
258 prepare_to_resend_writes(data);
259 filelayout_set_lo_fail(data->lseg);
260 } else
261 nfs_restart_rpc(task, data->ds_clp);
262 return -EAGAIN;
263 }
264
265 return 0;
266}
267
Fred Isamana69aef12011-03-03 15:13:47 +0000268static void filelayout_write_prepare(struct rpc_task *task, void *data)
269{
270 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
271
272 if (nfs41_setup_sequence(wdata->ds_clp->cl_session,
273 &wdata->args.seq_args, &wdata->res.seq_res,
274 0, task))
275 return;
276
277 rpc_call_start(task);
278}
279
280static void filelayout_write_call_done(struct rpc_task *task, void *data)
281{
282 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
283
284 /* Note this may cause RPC to be resent */
285 wdata->mds_ops->rpc_call_done(task, data);
286}
287
288static void filelayout_write_release(void *data)
289{
290 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
291
292 wdata->mds_ops->rpc_release(data);
293}
294
Fred Isamane0c2b382011-03-23 13:27:53 +0000295static void filelayout_commit_release(void *data)
296{
297 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
298
299 nfs_commit_release_pages(wdata);
300 if (atomic_dec_and_test(&NFS_I(wdata->inode)->commits_outstanding))
301 nfs_commit_clear_lock(NFS_I(wdata->inode));
302 nfs_commitdata_release(wdata);
303}
304
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000305struct rpc_call_ops filelayout_read_call_ops = {
306 .rpc_call_prepare = filelayout_read_prepare,
307 .rpc_call_done = filelayout_read_call_done,
308 .rpc_release = filelayout_read_release,
309};
310
Fred Isamana69aef12011-03-03 15:13:47 +0000311struct rpc_call_ops filelayout_write_call_ops = {
312 .rpc_call_prepare = filelayout_write_prepare,
313 .rpc_call_done = filelayout_write_call_done,
314 .rpc_release = filelayout_write_release,
315};
316
Fred Isamane0c2b382011-03-23 13:27:53 +0000317struct rpc_call_ops filelayout_commit_call_ops = {
318 .rpc_call_prepare = filelayout_write_prepare,
319 .rpc_call_done = filelayout_write_call_done,
320 .rpc_release = filelayout_commit_release,
321};
322
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000323static enum pnfs_try_status
324filelayout_read_pagelist(struct nfs_read_data *data)
325{
326 struct pnfs_layout_segment *lseg = data->lseg;
327 struct nfs4_pnfs_ds *ds;
328 loff_t offset = data->args.offset;
329 u32 j, idx;
330 struct nfs_fh *fh;
331 int status;
332
333 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
334 __func__, data->inode->i_ino,
335 data->args.pgbase, (size_t)data->args.count, offset);
336
337 /* Retrieve the correct rpc_client for the byte range */
338 j = nfs4_fl_calc_j_index(lseg, offset);
339 idx = nfs4_fl_calc_ds_index(lseg, j);
340 ds = nfs4_fl_prepare_ds(lseg, idx);
341 if (!ds) {
Andy Adamson568e8c42011-03-01 01:34:22 +0000342 /* Either layout fh index faulty, or ds connect failed */
343 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
344 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000345 return PNFS_NOT_ATTEMPTED;
346 }
Weston Andros Adamsonc9895cb2011-05-31 18:48:56 -0400347 dprintk("%s USE DS: %s\n", __func__, ds->ds_remotestr);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000348
349 /* No multipath support. Use first DS */
350 data->ds_clp = ds->ds_clp;
351 fh = nfs4_fl_select_ds_fh(lseg, j);
352 if (fh)
353 data->args.fh = fh;
354
355 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
356 data->mds_offset = offset;
357
358 /* Perform an asynchronous read to ds */
359 status = nfs_initiate_read(data, ds->ds_clp->cl_rpcclient,
360 &filelayout_read_call_ops);
361 BUG_ON(status != 0);
362 return PNFS_ATTEMPTED;
363}
364
Fred Isamana69aef12011-03-03 15:13:47 +0000365/* Perform async writes. */
Andy Adamson0382b742011-03-03 15:13:45 +0000366static enum pnfs_try_status
367filelayout_write_pagelist(struct nfs_write_data *data, int sync)
368{
Fred Isamana69aef12011-03-03 15:13:47 +0000369 struct pnfs_layout_segment *lseg = data->lseg;
370 struct nfs4_pnfs_ds *ds;
371 loff_t offset = data->args.offset;
372 u32 j, idx;
373 struct nfs_fh *fh;
374 int status;
375
376 /* Retrieve the correct rpc_client for the byte range */
377 j = nfs4_fl_calc_j_index(lseg, offset);
378 idx = nfs4_fl_calc_ds_index(lseg, j);
379 ds = nfs4_fl_prepare_ds(lseg, idx);
380 if (!ds) {
381 printk(KERN_ERR "%s: prepare_ds failed, use MDS\n", __func__);
382 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
383 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
384 return PNFS_NOT_ATTEMPTED;
385 }
Weston Andros Adamsonc9895cb2011-05-31 18:48:56 -0400386 dprintk("%s ino %lu sync %d req %Zu@%llu DS: %s\n", __func__,
Fred Isamana69aef12011-03-03 15:13:47 +0000387 data->inode->i_ino, sync, (size_t) data->args.count, offset,
Weston Andros Adamsonc9895cb2011-05-31 18:48:56 -0400388 ds->ds_remotestr);
Fred Isamana69aef12011-03-03 15:13:47 +0000389
Fred Isamana69aef12011-03-03 15:13:47 +0000390 data->write_done_cb = filelayout_write_done_cb;
391 data->ds_clp = ds->ds_clp;
392 fh = nfs4_fl_select_ds_fh(lseg, j);
393 if (fh)
394 data->args.fh = fh;
395 /*
396 * Get the file offset on the dserver. Set the write offset to
397 * this offset and save the original offset.
398 */
399 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
Fred Isamana69aef12011-03-03 15:13:47 +0000400
401 /* Perform an asynchronous write */
402 status = nfs_initiate_write(data, ds->ds_clp->cl_rpcclient,
403 &filelayout_write_call_ops, sync);
404 BUG_ON(status != 0);
405 return PNFS_ATTEMPTED;
Andy Adamson0382b742011-03-03 15:13:45 +0000406}
407
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000408/*
Andy Adamson16b374c2010-10-20 00:18:04 -0400409 * filelayout_check_layout()
410 *
411 * Make sure layout segment parameters are sane WRT the device.
412 * At this point no generic layer initialization of the lseg has occurred,
413 * and nothing has been added to the layout_hdr cache.
414 *
415 */
416static int
417filelayout_check_layout(struct pnfs_layout_hdr *lo,
418 struct nfs4_filelayout_segment *fl,
419 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400420 struct nfs4_deviceid *id,
421 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400422{
Benny Halevya1eaecb2011-05-19 22:14:47 -0400423 struct nfs4_deviceid_node *d;
Andy Adamson16b374c2010-10-20 00:18:04 -0400424 struct nfs4_file_layout_dsaddr *dsaddr;
425 int status = -EINVAL;
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000426 struct nfs_server *nfss = NFS_SERVER(lo->plh_inode);
Andy Adamson16b374c2010-10-20 00:18:04 -0400427
428 dprintk("--> %s\n", __func__);
429
430 if (fl->pattern_offset > lgr->range.offset) {
Jim Rees3b6445a2011-02-22 19:31:57 -0500431 dprintk("%s pattern_offset %lld too large\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400432 __func__, fl->pattern_offset);
433 goto out;
434 }
435
Benny Halevy75247af2011-02-22 15:56:01 -0800436 if (!fl->stripe_unit || fl->stripe_unit % PAGE_SIZE) {
437 dprintk("%s Invalid stripe unit (%u)\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400438 __func__, fl->stripe_unit);
439 goto out;
440 }
441
442 /* find and reference the deviceid */
Benny Halevy35c8bb52011-05-24 18:04:02 +0300443 d = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode)->pnfs_curr_ld,
444 NFS_SERVER(lo->plh_inode)->nfs_client, id);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400445 if (d == NULL) {
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400446 dsaddr = get_device_info(lo->plh_inode, id, gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400447 if (dsaddr == NULL)
448 goto out;
Benny Halevya1eaecb2011-05-19 22:14:47 -0400449 } else
450 dsaddr = container_of(d, struct nfs4_file_layout_dsaddr, id_node);
Andy Adamson16b374c2010-10-20 00:18:04 -0400451 fl->dsaddr = dsaddr;
452
453 if (fl->first_stripe_index < 0 ||
454 fl->first_stripe_index >= dsaddr->stripe_count) {
455 dprintk("%s Bad first_stripe_index %d\n",
456 __func__, fl->first_stripe_index);
457 goto out_put;
458 }
459
460 if ((fl->stripe_type == STRIPE_SPARSE &&
461 fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) ||
462 (fl->stripe_type == STRIPE_DENSE &&
463 fl->num_fh != dsaddr->stripe_count)) {
464 dprintk("%s num_fh %u not valid for given packing\n",
465 __func__, fl->num_fh);
466 goto out_put;
467 }
468
469 if (fl->stripe_unit % nfss->rsize || fl->stripe_unit % nfss->wsize) {
470 dprintk("%s Stripe unit (%u) not aligned with rsize %u "
471 "wsize %u\n", __func__, fl->stripe_unit, nfss->rsize,
472 nfss->wsize);
473 }
474
475 status = 0;
476out:
477 dprintk("--> %s returns %d\n", __func__, status);
478 return status;
479out_put:
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000480 nfs4_fl_put_deviceid(dsaddr);
Andy Adamson16b374c2010-10-20 00:18:04 -0400481 goto out;
482}
483
484static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl)
485{
486 int i;
487
488 for (i = 0; i < fl->num_fh; i++) {
489 if (!fl->fh_array[i])
490 break;
491 kfree(fl->fh_array[i]);
492 }
493 kfree(fl->fh_array);
494 fl->fh_array = NULL;
495}
496
497static void
498_filelayout_free_lseg(struct nfs4_filelayout_segment *fl)
499{
500 filelayout_free_fh_array(fl);
501 kfree(fl);
502}
503
504static int
505filelayout_decode_layout(struct pnfs_layout_hdr *flo,
506 struct nfs4_filelayout_segment *fl,
507 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400508 struct nfs4_deviceid *id,
509 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400510{
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400511 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400512 struct xdr_buf buf;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400513 struct page *scratch;
514 __be32 *p;
Andy Adamson16b374c2010-10-20 00:18:04 -0400515 uint32_t nfl_util;
516 int i;
517
518 dprintk("%s: set_layout_map Begin\n", __func__);
519
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400520 scratch = alloc_page(gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400521 if (!scratch)
522 return -ENOMEM;
523
Benny Halevyf7da7a12011-05-19 14:16:47 -0400524 xdr_init_decode_pages(&stream, &buf, lgr->layoutp->pages, lgr->layoutp->len);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400525 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
526
527 /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8),
528 * num_fh (4) */
529 p = xdr_inline_decode(&stream, NFS4_DEVICEID4_SIZE + 20);
530 if (unlikely(!p))
531 goto out_err;
532
Andy Adamson16b374c2010-10-20 00:18:04 -0400533 memcpy(id, p, sizeof(*id));
534 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400535 nfs4_print_deviceid(id);
Andy Adamson16b374c2010-10-20 00:18:04 -0400536
537 nfl_util = be32_to_cpup(p++);
538 if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS)
539 fl->commit_through_mds = 1;
540 if (nfl_util & NFL4_UFLG_DENSE)
541 fl->stripe_type = STRIPE_DENSE;
542 else
543 fl->stripe_type = STRIPE_SPARSE;
544 fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK;
545
546 fl->first_stripe_index = be32_to_cpup(p++);
547 p = xdr_decode_hyper(p, &fl->pattern_offset);
548 fl->num_fh = be32_to_cpup(p++);
549
550 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
551 __func__, nfl_util, fl->num_fh, fl->first_stripe_index,
552 fl->pattern_offset);
553
Andy Adamsoncec765c2011-06-13 18:36:17 -0400554 /* Note that a zero value for num_fh is legal for STRIPE_SPARSE.
555 * Futher checking is done in filelayout_check_layout */
556 if (fl->num_fh < 0 || fl->num_fh >
557 max(NFS4_PNFS_MAX_STRIPE_CNT, NFS4_PNFS_MAX_MULTI_CNT))
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400558 goto out_err;
559
Andy Adamsoncec765c2011-06-13 18:36:17 -0400560 if (fl->num_fh > 0) {
561 fl->fh_array = kzalloc(fl->num_fh * sizeof(struct nfs_fh *),
562 gfp_flags);
563 if (!fl->fh_array)
564 goto out_err;
565 }
Andy Adamson16b374c2010-10-20 00:18:04 -0400566
567 for (i = 0; i < fl->num_fh; i++) {
568 /* Do we want to use a mempool here? */
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400569 fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400570 if (!fl->fh_array[i])
571 goto out_err_free;
572
573 p = xdr_inline_decode(&stream, 4);
574 if (unlikely(!p))
575 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400576 fl->fh_array[i]->size = be32_to_cpup(p++);
577 if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) {
578 printk(KERN_ERR "Too big fh %d received %d\n",
579 i, fl->fh_array[i]->size);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400580 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400581 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400582
583 p = xdr_inline_decode(&stream, fl->fh_array[i]->size);
584 if (unlikely(!p))
585 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400586 memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size);
Andy Adamson16b374c2010-10-20 00:18:04 -0400587 dprintk("DEBUG: %s: fh len %d\n", __func__,
588 fl->fh_array[i]->size);
589 }
590
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400591 __free_page(scratch);
Andy Adamson16b374c2010-10-20 00:18:04 -0400592 return 0;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400593
594out_err_free:
595 filelayout_free_fh_array(fl);
596out_err:
597 __free_page(scratch);
598 return -EIO;
Andy Adamson16b374c2010-10-20 00:18:04 -0400599}
600
Fred Isamanc8795132011-03-23 13:27:49 +0000601static void
602filelayout_free_lseg(struct pnfs_layout_segment *lseg)
603{
604 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
605
606 dprintk("--> %s\n", __func__);
607 nfs4_fl_put_deviceid(fl->dsaddr);
Fred Isaman425eb732011-03-23 13:27:50 +0000608 kfree(fl->commit_buckets);
Fred Isamanc8795132011-03-23 13:27:49 +0000609 _filelayout_free_lseg(fl);
610}
611
Andy Adamson16b374c2010-10-20 00:18:04 -0400612static struct pnfs_layout_segment *
613filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400614 struct nfs4_layoutget_res *lgr,
615 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400616{
617 struct nfs4_filelayout_segment *fl;
618 int rc;
619 struct nfs4_deviceid id;
620
621 dprintk("--> %s\n", __func__);
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400622 fl = kzalloc(sizeof(*fl), gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400623 if (!fl)
624 return NULL;
625
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400626 rc = filelayout_decode_layout(layoutid, fl, lgr, &id, gfp_flags);
627 if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id, gfp_flags)) {
Andy Adamson16b374c2010-10-20 00:18:04 -0400628 _filelayout_free_lseg(fl);
629 return NULL;
630 }
Fred Isaman425eb732011-03-23 13:27:50 +0000631
632 /* This assumes there is only one IOMODE_RW lseg. What
633 * we really want to do is have a layout_hdr level
634 * dictionary of <multipath_list4, fh> keys, each
635 * associated with a struct list_head, populated by calls
636 * to filelayout_write_pagelist().
637 * */
638 if ((!fl->commit_through_mds) && (lgr->range.iomode == IOMODE_RW)) {
639 int i;
640 int size = (fl->stripe_type == STRIPE_SPARSE) ?
641 fl->dsaddr->ds_num : fl->dsaddr->stripe_count;
642
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400643 fl->commit_buckets = kcalloc(size, sizeof(struct list_head), gfp_flags);
Fred Isaman425eb732011-03-23 13:27:50 +0000644 if (!fl->commit_buckets) {
645 filelayout_free_lseg(&fl->generic_hdr);
646 return NULL;
647 }
648 fl->number_of_buckets = size;
649 for (i = 0; i < size; i++)
650 INIT_LIST_HEAD(&fl->commit_buckets[i]);
651 }
Andy Adamson16b374c2010-10-20 00:18:04 -0400652 return &fl->generic_hdr;
653}
654
Fred Isaman94ad1c82011-03-01 01:34:14 +0000655/*
656 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
657 *
Benny Halevy18ad0a92011-05-25 21:03:56 +0300658 * return true : coalesce page
659 * return false : don't coalesce page
Fred Isaman94ad1c82011-03-01 01:34:14 +0000660 */
Trond Myklebust1751c362011-06-10 13:30:23 -0400661static bool
Fred Isaman94ad1c82011-03-01 01:34:14 +0000662filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
663 struct nfs_page *req)
664{
665 u64 p_stripe, r_stripe;
666 u32 stripe_unit;
667
Benny Halevy19345cb2011-06-19 18:33:46 -0400668 if (!pnfs_generic_pg_test(pgio, prev, req) ||
669 !nfs_generic_pg_test(pgio, prev, req))
670 return false;
Benny Halevy89a58e32011-05-25 20:54:40 +0300671
Fred Isaman94ad1c82011-03-01 01:34:14 +0000672 if (!pgio->pg_lseg)
673 return 1;
674 p_stripe = (u64)prev->wb_index << PAGE_CACHE_SHIFT;
675 r_stripe = (u64)req->wb_index << PAGE_CACHE_SHIFT;
676 stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit;
677
678 do_div(p_stripe, stripe_unit);
679 do_div(r_stripe, stripe_unit);
680
681 return (p_stripe == r_stripe);
682}
683
Trond Myklebust1751c362011-06-10 13:30:23 -0400684static const struct nfs_pageio_ops filelayout_pg_read_ops = {
685 .pg_test = filelayout_pg_test,
686 .pg_doio = nfs_generic_pg_readpages,
687};
688
689static const struct nfs_pageio_ops filelayout_pg_write_ops = {
690 .pg_test = filelayout_pg_test,
691 .pg_doio = nfs_generic_pg_writepages,
692};
693
Fred Isamane0c2b382011-03-23 13:27:53 +0000694static bool filelayout_mark_pnfs_commit(struct pnfs_layout_segment *lseg)
695{
696 return !FILELAYOUT_LSEG(lseg)->commit_through_mds;
697}
698
699static u32 select_bucket_index(struct nfs4_filelayout_segment *fl, u32 j)
700{
701 if (fl->stripe_type == STRIPE_SPARSE)
702 return nfs4_fl_calc_ds_index(&fl->generic_hdr, j);
703 else
704 return j;
705}
706
707struct list_head *filelayout_choose_commit_list(struct nfs_page *req)
708{
709 struct pnfs_layout_segment *lseg = req->wb_commit_lseg;
710 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
711 u32 i, j;
712 struct list_head *list;
713
714 /* Note that we are calling nfs4_fl_calc_j_index on each page
715 * that ends up being committed to a data server. An attractive
716 * alternative is to add a field to nfs_write_data and nfs_page
717 * to store the value calculated in filelayout_write_pagelist
718 * and just use that here.
719 */
720 j = nfs4_fl_calc_j_index(lseg,
721 (loff_t)req->wb_index << PAGE_CACHE_SHIFT);
722 i = select_bucket_index(fl, j);
723 list = &fl->commit_buckets[i];
724 if (list_empty(list)) {
725 /* Non-empty buckets hold a reference on the lseg */
726 get_lseg(lseg);
727 }
728 return list;
729}
730
731static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i)
732{
733 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
734
735 if (flseg->stripe_type == STRIPE_SPARSE)
736 return i;
737 else
738 return nfs4_fl_calc_ds_index(lseg, i);
739}
740
741static struct nfs_fh *
742select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i)
743{
744 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
745
746 if (flseg->stripe_type == STRIPE_SPARSE) {
747 if (flseg->num_fh == 1)
748 i = 0;
749 else if (flseg->num_fh == 0)
750 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
751 return NULL;
752 }
753 return flseg->fh_array[i];
754}
755
756static int filelayout_initiate_commit(struct nfs_write_data *data, int how)
757{
758 struct pnfs_layout_segment *lseg = data->lseg;
759 struct nfs4_pnfs_ds *ds;
760 u32 idx;
761 struct nfs_fh *fh;
762
763 idx = calc_ds_index_from_commit(lseg, data->ds_commit_index);
764 ds = nfs4_fl_prepare_ds(lseg, idx);
765 if (!ds) {
766 printk(KERN_ERR "%s: prepare_ds failed, use MDS\n", __func__);
767 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
768 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
769 prepare_to_resend_writes(data);
770 data->mds_ops->rpc_release(data);
771 return -EAGAIN;
772 }
773 dprintk("%s ino %lu, how %d\n", __func__, data->inode->i_ino, how);
774 data->write_done_cb = filelayout_commit_done_cb;
775 data->ds_clp = ds->ds_clp;
776 fh = select_ds_fh_from_commit(lseg, data->ds_commit_index);
777 if (fh)
778 data->args.fh = fh;
779 return nfs_initiate_commit(data, ds->ds_clp->cl_rpcclient,
780 &filelayout_commit_call_ops, how);
781}
782
783/*
784 * This is only useful while we are using whole file layouts.
785 */
786static struct pnfs_layout_segment *find_only_write_lseg(struct inode *inode)
787{
788 struct pnfs_layout_segment *lseg, *rv = NULL;
789
790 spin_lock(&inode->i_lock);
791 list_for_each_entry(lseg, &NFS_I(inode)->layout->plh_segs, pls_list)
792 if (lseg->pls_range.iomode == IOMODE_RW)
793 rv = get_lseg(lseg);
794 spin_unlock(&inode->i_lock);
795 return rv;
796}
797
798static int alloc_ds_commits(struct inode *inode, struct list_head *list)
799{
800 struct pnfs_layout_segment *lseg;
801 struct nfs4_filelayout_segment *fl;
802 struct nfs_write_data *data;
803 int i, j;
804
805 /* Won't need this when non-whole file layout segments are supported
806 * instead we will use a pnfs_layout_hdr structure */
807 lseg = find_only_write_lseg(inode);
808 if (!lseg)
809 return 0;
810 fl = FILELAYOUT_LSEG(lseg);
811 for (i = 0; i < fl->number_of_buckets; i++) {
812 if (list_empty(&fl->commit_buckets[i]))
813 continue;
814 data = nfs_commitdata_alloc();
815 if (!data)
816 goto out_bad;
817 data->ds_commit_index = i;
818 data->lseg = lseg;
819 list_add(&data->pages, list);
820 }
821 put_lseg(lseg);
822 return 0;
823
824out_bad:
825 for (j = i; j < fl->number_of_buckets; j++) {
826 if (list_empty(&fl->commit_buckets[i]))
827 continue;
828 nfs_retry_commit(&fl->commit_buckets[i], lseg);
829 put_lseg(lseg); /* associated with emptying bucket */
830 }
831 put_lseg(lseg);
832 /* Caller will clean up entries put on list */
833 return -ENOMEM;
834}
835
836/* This follows nfs_commit_list pretty closely */
837static int
838filelayout_commit_pagelist(struct inode *inode, struct list_head *mds_pages,
839 int how)
840{
841 struct nfs_write_data *data, *tmp;
842 LIST_HEAD(list);
843
844 if (!list_empty(mds_pages)) {
845 data = nfs_commitdata_alloc();
846 if (!data)
847 goto out_bad;
848 data->lseg = NULL;
849 list_add(&data->pages, &list);
850 }
851
852 if (alloc_ds_commits(inode, &list))
853 goto out_bad;
854
855 list_for_each_entry_safe(data, tmp, &list, pages) {
856 list_del_init(&data->pages);
857 atomic_inc(&NFS_I(inode)->commits_outstanding);
858 if (!data->lseg) {
859 nfs_init_commit(data, mds_pages, NULL);
860 nfs_initiate_commit(data, NFS_CLIENT(inode),
861 data->mds_ops, how);
862 } else {
863 nfs_init_commit(data, &FILELAYOUT_LSEG(data->lseg)->commit_buckets[data->ds_commit_index], data->lseg);
864 filelayout_initiate_commit(data, how);
865 }
866 }
867 return 0;
868 out_bad:
869 list_for_each_entry_safe(data, tmp, &list, pages) {
870 nfs_retry_commit(&data->pages, data->lseg);
871 list_del_init(&data->pages);
872 nfs_commit_free(data);
873 }
874 nfs_retry_commit(mds_pages, NULL);
875 nfs_commit_clear_lock(NFS_I(inode));
876 return -ENOMEM;
877}
878
Benny Halevy1775bc32011-05-20 13:47:33 +0200879static void
880filelayout_free_deveiceid_node(struct nfs4_deviceid_node *d)
881{
882 nfs4_fl_free_deviceid(container_of(d, struct nfs4_file_layout_dsaddr, id_node));
883}
884
Dean Hildebrand7ab672c2010-10-20 00:18:00 -0400885static struct pnfs_layoutdriver_type filelayout_type = {
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000886 .id = LAYOUT_NFSV4_1_FILES,
887 .name = "LAYOUT_NFSV4_1_FILES",
888 .owner = THIS_MODULE,
889 .alloc_lseg = filelayout_alloc_lseg,
890 .free_lseg = filelayout_free_lseg,
Trond Myklebust1751c362011-06-10 13:30:23 -0400891 .pg_read_ops = &filelayout_pg_read_ops,
892 .pg_write_ops = &filelayout_pg_write_ops,
Fred Isamane0c2b382011-03-23 13:27:53 +0000893 .mark_pnfs_commit = filelayout_mark_pnfs_commit,
894 .choose_commit_list = filelayout_choose_commit_list,
895 .commit_pagelist = filelayout_commit_pagelist,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000896 .read_pagelist = filelayout_read_pagelist,
Andy Adamson0382b742011-03-03 15:13:45 +0000897 .write_pagelist = filelayout_write_pagelist,
Benny Halevy1775bc32011-05-20 13:47:33 +0200898 .free_deviceid_node = filelayout_free_deveiceid_node,
Dean Hildebrand7ab672c2010-10-20 00:18:00 -0400899};
900
901static int __init nfs4filelayout_init(void)
902{
903 printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n",
904 __func__);
905 return pnfs_register_layoutdriver(&filelayout_type);
906}
907
908static void __exit nfs4filelayout_exit(void)
909{
910 printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n",
911 __func__);
912 pnfs_unregister_layoutdriver(&filelayout_type);
913}
914
915module_init(nfs4filelayout_init);
916module_exit(nfs4filelayout_exit);