blob: 4c78c62639e6984ac2fedff423e657d4f4be5821 [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 Adamsoncbdabc72011-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 Adamsoncbdabc72011-03-01 01:34:20 +000080static int filelayout_async_handle_error(struct rpc_task *task,
81 struct nfs4_state *state,
82 struct nfs_client *clp,
83 int *reset)
84{
85 if (task->tk_status >= 0)
86 return 0;
87
88 *reset = 0;
89
90 switch (task->tk_status) {
91 case -NFS4ERR_BADSESSION:
92 case -NFS4ERR_BADSLOT:
93 case -NFS4ERR_BAD_HIGH_SLOT:
94 case -NFS4ERR_DEADSESSION:
95 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
96 case -NFS4ERR_SEQ_FALSE_RETRY:
97 case -NFS4ERR_SEQ_MISORDERED:
98 dprintk("%s ERROR %d, Reset session. Exchangeid "
99 "flags 0x%x\n", __func__, task->tk_status,
100 clp->cl_exchange_flags);
101 nfs4_schedule_session_recovery(clp->cl_session);
102 break;
103 case -NFS4ERR_DELAY:
104 case -NFS4ERR_GRACE:
105 case -EKEYEXPIRED:
106 rpc_delay(task, FILELAYOUT_POLL_RETRY_MAX);
107 break;
Andy Adamsona8a4ae32011-05-03 13:43:03 -0400108 case -NFS4ERR_RETRY_UNCACHED_REP:
109 break;
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000110 default:
111 dprintk("%s DS error. Retry through MDS %d\n", __func__,
112 task->tk_status);
113 *reset = 1;
114 break;
115 }
116 task->tk_status = 0;
117 return -EAGAIN;
118}
119
120/* NFS_PROTO call done callback routines */
121
122static int filelayout_read_done_cb(struct rpc_task *task,
123 struct nfs_read_data *data)
124{
125 struct nfs_client *clp = data->ds_clp;
126 int reset = 0;
127
128 dprintk("%s DS read\n", __func__);
129
130 if (filelayout_async_handle_error(task, data->args.context->state,
131 data->ds_clp, &reset) == -EAGAIN) {
132 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
133 __func__, data->ds_clp, data->ds_clp->cl_session);
134 if (reset) {
Peng Tao1b0ae062011-09-22 21:50:12 -0400135 pnfs_set_lo_fail(data->lseg);
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000136 nfs4_reset_read(task, data);
137 clp = NFS_SERVER(data->inode)->nfs_client;
138 }
139 nfs_restart_rpc(task, clp);
140 return -EAGAIN;
141 }
142
143 return 0;
144}
145
Andy Adamson16b374c2010-10-20 00:18:04 -0400146/*
Andy Adamson863a3c62011-03-23 13:27:54 +0000147 * We reference the rpc_cred of the first WRITE that triggers the need for
148 * a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
149 * rfc5661 is not clear about which credential should be used.
150 */
151static void
152filelayout_set_layoutcommit(struct nfs_write_data *wdata)
153{
154 if (FILELAYOUT_LSEG(wdata->lseg)->commit_through_mds ||
155 wdata->res.verf->committed == NFS_FILE_SYNC)
156 return;
157
158 pnfs_set_layoutcommit(wdata);
159 dprintk("%s ionde %lu pls_end_pos %lu\n", __func__, wdata->inode->i_ino,
Peng Taoacff58802011-07-30 20:52:31 -0400160 (unsigned long) NFS_I(wdata->inode)->layout->plh_lwb);
Andy Adamson863a3c62011-03-23 13:27:54 +0000161}
162
163/*
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000164 * Call ops for the async read/write cases
165 * In the case of dense layouts, the offset needs to be reset to its
166 * original value.
167 */
168static void filelayout_read_prepare(struct rpc_task *task, void *data)
169{
170 struct nfs_read_data *rdata = (struct nfs_read_data *)data;
171
Andy Adamsoncbdabc72011-03-01 01:34:20 +0000172 rdata->read_done_cb = filelayout_read_done_cb;
173
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000174 if (nfs41_setup_sequence(rdata->ds_clp->cl_session,
175 &rdata->args.seq_args, &rdata->res.seq_res,
176 0, task))
177 return;
178
179 rpc_call_start(task);
180}
181
182static void filelayout_read_call_done(struct rpc_task *task, void *data)
183{
184 struct nfs_read_data *rdata = (struct nfs_read_data *)data;
185
186 dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
187
188 /* Note this may cause RPC to be resent */
189 rdata->mds_ops->rpc_call_done(task, data);
190}
191
192static void filelayout_read_release(void *data)
193{
194 struct nfs_read_data *rdata = (struct nfs_read_data *)data;
195
196 rdata->mds_ops->rpc_release(data);
197}
198
Fred Isamana69aef12011-03-03 15:13:47 +0000199static int filelayout_write_done_cb(struct rpc_task *task,
200 struct nfs_write_data *data)
201{
202 int reset = 0;
203
204 if (filelayout_async_handle_error(task, data->args.context->state,
205 data->ds_clp, &reset) == -EAGAIN) {
206 struct nfs_client *clp;
207
208 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
209 __func__, data->ds_clp, data->ds_clp->cl_session);
210 if (reset) {
Peng Tao1b0ae062011-09-22 21:50:12 -0400211 pnfs_set_lo_fail(data->lseg);
Fred Isamana69aef12011-03-03 15:13:47 +0000212 nfs4_reset_write(task, data);
213 clp = NFS_SERVER(data->inode)->nfs_client;
214 } else
215 clp = data->ds_clp;
216 nfs_restart_rpc(task, clp);
217 return -EAGAIN;
218 }
219
Andy Adamson863a3c62011-03-23 13:27:54 +0000220 filelayout_set_layoutcommit(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000221 return 0;
222}
223
Fred Isamane0c2b382011-03-23 13:27:53 +0000224/* Fake up some data that will cause nfs_commit_release to retry the writes. */
225static void prepare_to_resend_writes(struct nfs_write_data *data)
226{
227 struct nfs_page *first = nfs_list_entry(data->pages.next);
228
229 data->task.tk_status = 0;
230 memcpy(data->verf.verifier, first->wb_verf.verifier,
231 sizeof(first->wb_verf.verifier));
232 data->verf.verifier[0]++; /* ensure verifier mismatch */
233}
234
235static int filelayout_commit_done_cb(struct rpc_task *task,
236 struct nfs_write_data *data)
237{
238 int reset = 0;
239
240 if (filelayout_async_handle_error(task, data->args.context->state,
241 data->ds_clp, &reset) == -EAGAIN) {
242 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
243 __func__, data->ds_clp, data->ds_clp->cl_session);
244 if (reset) {
245 prepare_to_resend_writes(data);
Peng Tao1b0ae062011-09-22 21:50:12 -0400246 pnfs_set_lo_fail(data->lseg);
Fred Isamane0c2b382011-03-23 13:27:53 +0000247 } else
248 nfs_restart_rpc(task, data->ds_clp);
249 return -EAGAIN;
250 }
251
252 return 0;
253}
254
Fred Isamana69aef12011-03-03 15:13:47 +0000255static void filelayout_write_prepare(struct rpc_task *task, void *data)
256{
257 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
258
259 if (nfs41_setup_sequence(wdata->ds_clp->cl_session,
260 &wdata->args.seq_args, &wdata->res.seq_res,
261 0, task))
262 return;
263
264 rpc_call_start(task);
265}
266
267static void filelayout_write_call_done(struct rpc_task *task, void *data)
268{
269 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
270
271 /* Note this may cause RPC to be resent */
272 wdata->mds_ops->rpc_call_done(task, data);
273}
274
275static void filelayout_write_release(void *data)
276{
277 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
278
279 wdata->mds_ops->rpc_release(data);
280}
281
Fred Isamane0c2b382011-03-23 13:27:53 +0000282static void filelayout_commit_release(void *data)
283{
284 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
285
286 nfs_commit_release_pages(wdata);
287 if (atomic_dec_and_test(&NFS_I(wdata->inode)->commits_outstanding))
288 nfs_commit_clear_lock(NFS_I(wdata->inode));
289 nfs_commitdata_release(wdata);
290}
291
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000292struct rpc_call_ops filelayout_read_call_ops = {
293 .rpc_call_prepare = filelayout_read_prepare,
294 .rpc_call_done = filelayout_read_call_done,
295 .rpc_release = filelayout_read_release,
296};
297
Fred Isamana69aef12011-03-03 15:13:47 +0000298struct rpc_call_ops filelayout_write_call_ops = {
299 .rpc_call_prepare = filelayout_write_prepare,
300 .rpc_call_done = filelayout_write_call_done,
301 .rpc_release = filelayout_write_release,
302};
303
Fred Isamane0c2b382011-03-23 13:27:53 +0000304struct rpc_call_ops filelayout_commit_call_ops = {
305 .rpc_call_prepare = filelayout_write_prepare,
306 .rpc_call_done = filelayout_write_call_done,
307 .rpc_release = filelayout_commit_release,
308};
309
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000310static enum pnfs_try_status
311filelayout_read_pagelist(struct nfs_read_data *data)
312{
313 struct pnfs_layout_segment *lseg = data->lseg;
314 struct nfs4_pnfs_ds *ds;
315 loff_t offset = data->args.offset;
316 u32 j, idx;
317 struct nfs_fh *fh;
318 int status;
319
320 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
321 __func__, data->inode->i_ino,
322 data->args.pgbase, (size_t)data->args.count, offset);
323
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400324 if (test_bit(NFS_DEVICEID_INVALID, &FILELAYOUT_DEVID_NODE(lseg)->flags))
325 return PNFS_NOT_ATTEMPTED;
326
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000327 /* Retrieve the correct rpc_client for the byte range */
328 j = nfs4_fl_calc_j_index(lseg, offset);
329 idx = nfs4_fl_calc_ds_index(lseg, j);
330 ds = nfs4_fl_prepare_ds(lseg, idx);
331 if (!ds) {
Andy Adamson568e8c42011-03-01 01:34:22 +0000332 /* Either layout fh index faulty, or ds connect failed */
333 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
334 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000335 return PNFS_NOT_ATTEMPTED;
336 }
Weston Andros Adamsonc9895cb2011-05-31 18:48:56 -0400337 dprintk("%s USE DS: %s\n", __func__, ds->ds_remotestr);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000338
339 /* No multipath support. Use first DS */
340 data->ds_clp = ds->ds_clp;
341 fh = nfs4_fl_select_ds_fh(lseg, j);
342 if (fh)
343 data->args.fh = fh;
344
345 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
346 data->mds_offset = offset;
347
348 /* Perform an asynchronous read to ds */
349 status = nfs_initiate_read(data, ds->ds_clp->cl_rpcclient,
350 &filelayout_read_call_ops);
351 BUG_ON(status != 0);
352 return PNFS_ATTEMPTED;
353}
354
Fred Isamana69aef12011-03-03 15:13:47 +0000355/* Perform async writes. */
Andy Adamson0382b742011-03-03 15:13:45 +0000356static enum pnfs_try_status
357filelayout_write_pagelist(struct nfs_write_data *data, int sync)
358{
Fred Isamana69aef12011-03-03 15:13:47 +0000359 struct pnfs_layout_segment *lseg = data->lseg;
360 struct nfs4_pnfs_ds *ds;
361 loff_t offset = data->args.offset;
362 u32 j, idx;
363 struct nfs_fh *fh;
364 int status;
365
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400366 if (test_bit(NFS_DEVICEID_INVALID, &FILELAYOUT_DEVID_NODE(lseg)->flags))
367 return PNFS_NOT_ATTEMPTED;
368
Fred Isamana69aef12011-03-03 15:13:47 +0000369 /* Retrieve the correct rpc_client for the byte range */
370 j = nfs4_fl_calc_j_index(lseg, offset);
371 idx = nfs4_fl_calc_ds_index(lseg, j);
372 ds = nfs4_fl_prepare_ds(lseg, idx);
373 if (!ds) {
374 printk(KERN_ERR "%s: prepare_ds failed, use MDS\n", __func__);
375 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
376 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
377 return PNFS_NOT_ATTEMPTED;
378 }
Weston Andros Adamsonc9895cb2011-05-31 18:48:56 -0400379 dprintk("%s ino %lu sync %d req %Zu@%llu DS: %s\n", __func__,
Fred Isamana69aef12011-03-03 15:13:47 +0000380 data->inode->i_ino, sync, (size_t) data->args.count, offset,
Weston Andros Adamsonc9895cb2011-05-31 18:48:56 -0400381 ds->ds_remotestr);
Fred Isamana69aef12011-03-03 15:13:47 +0000382
Fred Isamana69aef12011-03-03 15:13:47 +0000383 data->write_done_cb = filelayout_write_done_cb;
384 data->ds_clp = ds->ds_clp;
385 fh = nfs4_fl_select_ds_fh(lseg, j);
386 if (fh)
387 data->args.fh = fh;
388 /*
389 * Get the file offset on the dserver. Set the write offset to
390 * this offset and save the original offset.
391 */
392 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
Fred Isamana69aef12011-03-03 15:13:47 +0000393
394 /* Perform an asynchronous write */
395 status = nfs_initiate_write(data, ds->ds_clp->cl_rpcclient,
396 &filelayout_write_call_ops, sync);
397 BUG_ON(status != 0);
398 return PNFS_ATTEMPTED;
Andy Adamson0382b742011-03-03 15:13:45 +0000399}
400
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000401/*
Andy Adamson16b374c2010-10-20 00:18:04 -0400402 * filelayout_check_layout()
403 *
404 * Make sure layout segment parameters are sane WRT the device.
405 * At this point no generic layer initialization of the lseg has occurred,
406 * and nothing has been added to the layout_hdr cache.
407 *
408 */
409static int
410filelayout_check_layout(struct pnfs_layout_hdr *lo,
411 struct nfs4_filelayout_segment *fl,
412 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400413 struct nfs4_deviceid *id,
414 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400415{
Benny Halevya1eaecb2011-05-19 22:14:47 -0400416 struct nfs4_deviceid_node *d;
Andy Adamson16b374c2010-10-20 00:18:04 -0400417 struct nfs4_file_layout_dsaddr *dsaddr;
418 int status = -EINVAL;
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000419 struct nfs_server *nfss = NFS_SERVER(lo->plh_inode);
Andy Adamson16b374c2010-10-20 00:18:04 -0400420
421 dprintk("--> %s\n", __func__);
422
Andy Adamson7c24d942011-06-13 18:22:38 -0400423 /* FIXME: remove this check when layout segment support is added */
424 if (lgr->range.offset != 0 ||
425 lgr->range.length != NFS4_MAX_UINT64) {
426 dprintk("%s Only whole file layouts supported. Use MDS i/o\n",
427 __func__);
428 goto out;
429 }
430
Andy Adamson16b374c2010-10-20 00:18:04 -0400431 if (fl->pattern_offset > lgr->range.offset) {
Jim Rees3b6445a2011-02-22 19:31:57 -0500432 dprintk("%s pattern_offset %lld too large\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400433 __func__, fl->pattern_offset);
434 goto out;
435 }
436
Benny Halevy75247af2011-02-22 15:56:01 -0800437 if (!fl->stripe_unit || fl->stripe_unit % PAGE_SIZE) {
438 dprintk("%s Invalid stripe unit (%u)\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400439 __func__, fl->stripe_unit);
440 goto out;
441 }
442
443 /* find and reference the deviceid */
Benny Halevy35c8bb52011-05-24 18:04:02 +0300444 d = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode)->pnfs_curr_ld,
445 NFS_SERVER(lo->plh_inode)->nfs_client, id);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400446 if (d == NULL) {
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400447 dsaddr = get_device_info(lo->plh_inode, id, gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400448 if (dsaddr == NULL)
449 goto out;
Benny Halevya1eaecb2011-05-19 22:14:47 -0400450 } else
451 dsaddr = container_of(d, struct nfs4_file_layout_dsaddr, id_node);
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400452 /* Found deviceid is being reaped */
453 if (test_bit(NFS_DEVICEID_INVALID, &dsaddr->id_node.flags))
454 goto out_put;
455
Andy Adamson16b374c2010-10-20 00:18:04 -0400456 fl->dsaddr = dsaddr;
457
458 if (fl->first_stripe_index < 0 ||
459 fl->first_stripe_index >= dsaddr->stripe_count) {
460 dprintk("%s Bad first_stripe_index %d\n",
461 __func__, fl->first_stripe_index);
462 goto out_put;
463 }
464
465 if ((fl->stripe_type == STRIPE_SPARSE &&
466 fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) ||
467 (fl->stripe_type == STRIPE_DENSE &&
468 fl->num_fh != dsaddr->stripe_count)) {
469 dprintk("%s num_fh %u not valid for given packing\n",
470 __func__, fl->num_fh);
471 goto out_put;
472 }
473
474 if (fl->stripe_unit % nfss->rsize || fl->stripe_unit % nfss->wsize) {
475 dprintk("%s Stripe unit (%u) not aligned with rsize %u "
476 "wsize %u\n", __func__, fl->stripe_unit, nfss->rsize,
477 nfss->wsize);
478 }
479
480 status = 0;
481out:
482 dprintk("--> %s returns %d\n", __func__, status);
483 return status;
484out_put:
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000485 nfs4_fl_put_deviceid(dsaddr);
Andy Adamson16b374c2010-10-20 00:18:04 -0400486 goto out;
487}
488
489static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl)
490{
491 int i;
492
493 for (i = 0; i < fl->num_fh; i++) {
494 if (!fl->fh_array[i])
495 break;
496 kfree(fl->fh_array[i]);
497 }
498 kfree(fl->fh_array);
499 fl->fh_array = NULL;
500}
501
502static void
503_filelayout_free_lseg(struct nfs4_filelayout_segment *fl)
504{
505 filelayout_free_fh_array(fl);
506 kfree(fl);
507}
508
509static int
510filelayout_decode_layout(struct pnfs_layout_hdr *flo,
511 struct nfs4_filelayout_segment *fl,
512 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400513 struct nfs4_deviceid *id,
514 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400515{
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400516 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400517 struct xdr_buf buf;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400518 struct page *scratch;
519 __be32 *p;
Andy Adamson16b374c2010-10-20 00:18:04 -0400520 uint32_t nfl_util;
521 int i;
522
523 dprintk("%s: set_layout_map Begin\n", __func__);
524
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400525 scratch = alloc_page(gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400526 if (!scratch)
527 return -ENOMEM;
528
Benny Halevyf7da7a12011-05-19 14:16:47 -0400529 xdr_init_decode_pages(&stream, &buf, lgr->layoutp->pages, lgr->layoutp->len);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400530 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
531
532 /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8),
533 * num_fh (4) */
534 p = xdr_inline_decode(&stream, NFS4_DEVICEID4_SIZE + 20);
535 if (unlikely(!p))
536 goto out_err;
537
Andy Adamson16b374c2010-10-20 00:18:04 -0400538 memcpy(id, p, sizeof(*id));
539 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400540 nfs4_print_deviceid(id);
Andy Adamson16b374c2010-10-20 00:18:04 -0400541
542 nfl_util = be32_to_cpup(p++);
543 if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS)
544 fl->commit_through_mds = 1;
545 if (nfl_util & NFL4_UFLG_DENSE)
546 fl->stripe_type = STRIPE_DENSE;
547 else
548 fl->stripe_type = STRIPE_SPARSE;
549 fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK;
550
551 fl->first_stripe_index = be32_to_cpup(p++);
552 p = xdr_decode_hyper(p, &fl->pattern_offset);
553 fl->num_fh = be32_to_cpup(p++);
554
555 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
556 __func__, nfl_util, fl->num_fh, fl->first_stripe_index,
557 fl->pattern_offset);
558
Andy Adamsoncec765c2011-06-13 18:36:17 -0400559 /* Note that a zero value for num_fh is legal for STRIPE_SPARSE.
560 * Futher checking is done in filelayout_check_layout */
561 if (fl->num_fh < 0 || fl->num_fh >
562 max(NFS4_PNFS_MAX_STRIPE_CNT, NFS4_PNFS_MAX_MULTI_CNT))
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400563 goto out_err;
564
Andy Adamsoncec765c2011-06-13 18:36:17 -0400565 if (fl->num_fh > 0) {
566 fl->fh_array = kzalloc(fl->num_fh * sizeof(struct nfs_fh *),
567 gfp_flags);
568 if (!fl->fh_array)
569 goto out_err;
570 }
Andy Adamson16b374c2010-10-20 00:18:04 -0400571
572 for (i = 0; i < fl->num_fh; i++) {
573 /* Do we want to use a mempool here? */
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400574 fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400575 if (!fl->fh_array[i])
576 goto out_err_free;
577
578 p = xdr_inline_decode(&stream, 4);
579 if (unlikely(!p))
580 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400581 fl->fh_array[i]->size = be32_to_cpup(p++);
582 if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) {
583 printk(KERN_ERR "Too big fh %d received %d\n",
584 i, fl->fh_array[i]->size);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400585 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400586 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400587
588 p = xdr_inline_decode(&stream, fl->fh_array[i]->size);
589 if (unlikely(!p))
590 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400591 memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size);
Andy Adamson16b374c2010-10-20 00:18:04 -0400592 dprintk("DEBUG: %s: fh len %d\n", __func__,
593 fl->fh_array[i]->size);
594 }
595
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400596 __free_page(scratch);
Andy Adamson16b374c2010-10-20 00:18:04 -0400597 return 0;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400598
599out_err_free:
600 filelayout_free_fh_array(fl);
601out_err:
602 __free_page(scratch);
603 return -EIO;
Andy Adamson16b374c2010-10-20 00:18:04 -0400604}
605
Fred Isamanc8795132011-03-23 13:27:49 +0000606static void
607filelayout_free_lseg(struct pnfs_layout_segment *lseg)
608{
609 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
610
611 dprintk("--> %s\n", __func__);
612 nfs4_fl_put_deviceid(fl->dsaddr);
Fred Isaman425eb732011-03-23 13:27:50 +0000613 kfree(fl->commit_buckets);
Fred Isamanc8795132011-03-23 13:27:49 +0000614 _filelayout_free_lseg(fl);
615}
616
Andy Adamson16b374c2010-10-20 00:18:04 -0400617static struct pnfs_layout_segment *
618filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400619 struct nfs4_layoutget_res *lgr,
620 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400621{
622 struct nfs4_filelayout_segment *fl;
623 int rc;
624 struct nfs4_deviceid id;
625
626 dprintk("--> %s\n", __func__);
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400627 fl = kzalloc(sizeof(*fl), gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400628 if (!fl)
629 return NULL;
630
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400631 rc = filelayout_decode_layout(layoutid, fl, lgr, &id, gfp_flags);
632 if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id, gfp_flags)) {
Andy Adamson16b374c2010-10-20 00:18:04 -0400633 _filelayout_free_lseg(fl);
634 return NULL;
635 }
Fred Isaman425eb732011-03-23 13:27:50 +0000636
637 /* This assumes there is only one IOMODE_RW lseg. What
638 * we really want to do is have a layout_hdr level
639 * dictionary of <multipath_list4, fh> keys, each
640 * associated with a struct list_head, populated by calls
641 * to filelayout_write_pagelist().
642 * */
643 if ((!fl->commit_through_mds) && (lgr->range.iomode == IOMODE_RW)) {
644 int i;
645 int size = (fl->stripe_type == STRIPE_SPARSE) ?
646 fl->dsaddr->ds_num : fl->dsaddr->stripe_count;
647
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400648 fl->commit_buckets = kcalloc(size, sizeof(struct list_head), gfp_flags);
Fred Isaman425eb732011-03-23 13:27:50 +0000649 if (!fl->commit_buckets) {
650 filelayout_free_lseg(&fl->generic_hdr);
651 return NULL;
652 }
653 fl->number_of_buckets = size;
654 for (i = 0; i < size; i++)
655 INIT_LIST_HEAD(&fl->commit_buckets[i]);
656 }
Andy Adamson16b374c2010-10-20 00:18:04 -0400657 return &fl->generic_hdr;
658}
659
Fred Isaman94ad1c82011-03-01 01:34:14 +0000660/*
661 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
662 *
Benny Halevy18ad0a92011-05-25 21:03:56 +0300663 * return true : coalesce page
664 * return false : don't coalesce page
Fred Isaman94ad1c82011-03-01 01:34:14 +0000665 */
Trond Myklebust1751c362011-06-10 13:30:23 -0400666static bool
Fred Isaman94ad1c82011-03-01 01:34:14 +0000667filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
668 struct nfs_page *req)
669{
670 u64 p_stripe, r_stripe;
671 u32 stripe_unit;
672
Benny Halevy19345cb2011-06-19 18:33:46 -0400673 if (!pnfs_generic_pg_test(pgio, prev, req) ||
674 !nfs_generic_pg_test(pgio, prev, req))
675 return false;
Benny Halevy89a58e32011-05-25 20:54:40 +0300676
Fred Isaman94ad1c82011-03-01 01:34:14 +0000677 p_stripe = (u64)prev->wb_index << PAGE_CACHE_SHIFT;
678 r_stripe = (u64)req->wb_index << PAGE_CACHE_SHIFT;
679 stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit;
680
681 do_div(p_stripe, stripe_unit);
682 do_div(r_stripe, stripe_unit);
683
684 return (p_stripe == r_stripe);
685}
686
Andy Adamson7c24d942011-06-13 18:22:38 -0400687void
688filelayout_pg_init_read(struct nfs_pageio_descriptor *pgio,
689 struct nfs_page *req)
690{
691 BUG_ON(pgio->pg_lseg != NULL);
692
693 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
694 req->wb_context,
695 0,
696 NFS4_MAX_UINT64,
697 IOMODE_READ,
698 GFP_KERNEL);
699 /* If no lseg, fall back to read through mds */
700 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -0400701 nfs_pageio_reset_read_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400702}
703
704void
705filelayout_pg_init_write(struct nfs_pageio_descriptor *pgio,
706 struct nfs_page *req)
707{
708 BUG_ON(pgio->pg_lseg != NULL);
709
710 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
711 req->wb_context,
712 0,
713 NFS4_MAX_UINT64,
714 IOMODE_RW,
715 GFP_NOFS);
716 /* If no lseg, fall back to write through mds */
717 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -0400718 nfs_pageio_reset_write_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400719}
720
Trond Myklebust1751c362011-06-10 13:30:23 -0400721static const struct nfs_pageio_ops filelayout_pg_read_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400722 .pg_init = filelayout_pg_init_read,
Trond Myklebust1751c362011-06-10 13:30:23 -0400723 .pg_test = filelayout_pg_test,
Trond Myklebust493292d2011-07-13 15:58:28 -0400724 .pg_doio = pnfs_generic_pg_readpages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400725};
726
727static const struct nfs_pageio_ops filelayout_pg_write_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400728 .pg_init = filelayout_pg_init_write,
Trond Myklebust1751c362011-06-10 13:30:23 -0400729 .pg_test = filelayout_pg_test,
Trond Myklebustdce81292011-07-13 15:59:19 -0400730 .pg_doio = pnfs_generic_pg_writepages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400731};
732
Fred Isamane0c2b382011-03-23 13:27:53 +0000733static bool filelayout_mark_pnfs_commit(struct pnfs_layout_segment *lseg)
734{
735 return !FILELAYOUT_LSEG(lseg)->commit_through_mds;
736}
737
738static u32 select_bucket_index(struct nfs4_filelayout_segment *fl, u32 j)
739{
740 if (fl->stripe_type == STRIPE_SPARSE)
741 return nfs4_fl_calc_ds_index(&fl->generic_hdr, j);
742 else
743 return j;
744}
745
746struct list_head *filelayout_choose_commit_list(struct nfs_page *req)
747{
748 struct pnfs_layout_segment *lseg = req->wb_commit_lseg;
749 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
750 u32 i, j;
751 struct list_head *list;
752
753 /* Note that we are calling nfs4_fl_calc_j_index on each page
754 * that ends up being committed to a data server. An attractive
755 * alternative is to add a field to nfs_write_data and nfs_page
756 * to store the value calculated in filelayout_write_pagelist
757 * and just use that here.
758 */
759 j = nfs4_fl_calc_j_index(lseg,
760 (loff_t)req->wb_index << PAGE_CACHE_SHIFT);
761 i = select_bucket_index(fl, j);
762 list = &fl->commit_buckets[i];
763 if (list_empty(list)) {
764 /* Non-empty buckets hold a reference on the lseg */
765 get_lseg(lseg);
766 }
767 return list;
768}
769
770static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i)
771{
772 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
773
774 if (flseg->stripe_type == STRIPE_SPARSE)
775 return i;
776 else
777 return nfs4_fl_calc_ds_index(lseg, i);
778}
779
780static struct nfs_fh *
781select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i)
782{
783 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
784
785 if (flseg->stripe_type == STRIPE_SPARSE) {
786 if (flseg->num_fh == 1)
787 i = 0;
788 else if (flseg->num_fh == 0)
789 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
790 return NULL;
791 }
792 return flseg->fh_array[i];
793}
794
795static int filelayout_initiate_commit(struct nfs_write_data *data, int how)
796{
797 struct pnfs_layout_segment *lseg = data->lseg;
798 struct nfs4_pnfs_ds *ds;
799 u32 idx;
800 struct nfs_fh *fh;
801
802 idx = calc_ds_index_from_commit(lseg, data->ds_commit_index);
803 ds = nfs4_fl_prepare_ds(lseg, idx);
804 if (!ds) {
805 printk(KERN_ERR "%s: prepare_ds failed, use MDS\n", __func__);
806 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
807 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
808 prepare_to_resend_writes(data);
809 data->mds_ops->rpc_release(data);
810 return -EAGAIN;
811 }
812 dprintk("%s ino %lu, how %d\n", __func__, data->inode->i_ino, how);
813 data->write_done_cb = filelayout_commit_done_cb;
814 data->ds_clp = ds->ds_clp;
815 fh = select_ds_fh_from_commit(lseg, data->ds_commit_index);
816 if (fh)
817 data->args.fh = fh;
818 return nfs_initiate_commit(data, ds->ds_clp->cl_rpcclient,
819 &filelayout_commit_call_ops, how);
820}
821
822/*
823 * This is only useful while we are using whole file layouts.
824 */
825static struct pnfs_layout_segment *find_only_write_lseg(struct inode *inode)
826{
827 struct pnfs_layout_segment *lseg, *rv = NULL;
828
829 spin_lock(&inode->i_lock);
830 list_for_each_entry(lseg, &NFS_I(inode)->layout->plh_segs, pls_list)
831 if (lseg->pls_range.iomode == IOMODE_RW)
832 rv = get_lseg(lseg);
833 spin_unlock(&inode->i_lock);
834 return rv;
835}
836
837static int alloc_ds_commits(struct inode *inode, struct list_head *list)
838{
839 struct pnfs_layout_segment *lseg;
840 struct nfs4_filelayout_segment *fl;
841 struct nfs_write_data *data;
842 int i, j;
843
844 /* Won't need this when non-whole file layout segments are supported
845 * instead we will use a pnfs_layout_hdr structure */
846 lseg = find_only_write_lseg(inode);
847 if (!lseg)
848 return 0;
849 fl = FILELAYOUT_LSEG(lseg);
850 for (i = 0; i < fl->number_of_buckets; i++) {
851 if (list_empty(&fl->commit_buckets[i]))
852 continue;
853 data = nfs_commitdata_alloc();
854 if (!data)
855 goto out_bad;
856 data->ds_commit_index = i;
857 data->lseg = lseg;
858 list_add(&data->pages, list);
859 }
860 put_lseg(lseg);
861 return 0;
862
863out_bad:
864 for (j = i; j < fl->number_of_buckets; j++) {
865 if (list_empty(&fl->commit_buckets[i]))
866 continue;
867 nfs_retry_commit(&fl->commit_buckets[i], lseg);
868 put_lseg(lseg); /* associated with emptying bucket */
869 }
870 put_lseg(lseg);
871 /* Caller will clean up entries put on list */
872 return -ENOMEM;
873}
874
875/* This follows nfs_commit_list pretty closely */
876static int
877filelayout_commit_pagelist(struct inode *inode, struct list_head *mds_pages,
878 int how)
879{
880 struct nfs_write_data *data, *tmp;
881 LIST_HEAD(list);
882
883 if (!list_empty(mds_pages)) {
884 data = nfs_commitdata_alloc();
885 if (!data)
886 goto out_bad;
887 data->lseg = NULL;
888 list_add(&data->pages, &list);
889 }
890
891 if (alloc_ds_commits(inode, &list))
892 goto out_bad;
893
894 list_for_each_entry_safe(data, tmp, &list, pages) {
895 list_del_init(&data->pages);
896 atomic_inc(&NFS_I(inode)->commits_outstanding);
897 if (!data->lseg) {
898 nfs_init_commit(data, mds_pages, NULL);
899 nfs_initiate_commit(data, NFS_CLIENT(inode),
900 data->mds_ops, how);
901 } else {
902 nfs_init_commit(data, &FILELAYOUT_LSEG(data->lseg)->commit_buckets[data->ds_commit_index], data->lseg);
903 filelayout_initiate_commit(data, how);
904 }
905 }
906 return 0;
907 out_bad:
908 list_for_each_entry_safe(data, tmp, &list, pages) {
909 nfs_retry_commit(&data->pages, data->lseg);
910 list_del_init(&data->pages);
911 nfs_commit_free(data);
912 }
913 nfs_retry_commit(mds_pages, NULL);
914 nfs_commit_clear_lock(NFS_I(inode));
915 return -ENOMEM;
916}
917
Benny Halevy1775bc32011-05-20 13:47:33 +0200918static void
919filelayout_free_deveiceid_node(struct nfs4_deviceid_node *d)
920{
921 nfs4_fl_free_deviceid(container_of(d, struct nfs4_file_layout_dsaddr, id_node));
922}
923
Dean Hildebrand7ab672c2010-10-20 00:18:00 -0400924static struct pnfs_layoutdriver_type filelayout_type = {
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000925 .id = LAYOUT_NFSV4_1_FILES,
926 .name = "LAYOUT_NFSV4_1_FILES",
927 .owner = THIS_MODULE,
928 .alloc_lseg = filelayout_alloc_lseg,
929 .free_lseg = filelayout_free_lseg,
Trond Myklebust1751c362011-06-10 13:30:23 -0400930 .pg_read_ops = &filelayout_pg_read_ops,
931 .pg_write_ops = &filelayout_pg_write_ops,
Fred Isamane0c2b382011-03-23 13:27:53 +0000932 .mark_pnfs_commit = filelayout_mark_pnfs_commit,
933 .choose_commit_list = filelayout_choose_commit_list,
934 .commit_pagelist = filelayout_commit_pagelist,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000935 .read_pagelist = filelayout_read_pagelist,
Andy Adamson0382b742011-03-03 15:13:45 +0000936 .write_pagelist = filelayout_write_pagelist,
Benny Halevy1775bc32011-05-20 13:47:33 +0200937 .free_deviceid_node = filelayout_free_deveiceid_node,
Dean Hildebrand7ab672c2010-10-20 00:18:00 -0400938};
939
940static int __init nfs4filelayout_init(void)
941{
942 printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n",
943 __func__);
944 return pnfs_register_layoutdriver(&filelayout_type);
945}
946
947static void __exit nfs4filelayout_exit(void)
948{
949 printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n",
950 __func__);
951 pnfs_unregister_layoutdriver(&filelayout_type);
952}
953
J. Bruce Fieldsf85ef692011-07-15 19:18:42 -0400954MODULE_ALIAS("nfs-layouttype4-1");
955
Dean Hildebrand7ab672c2010-10-20 00:18:00 -0400956module_init(nfs4filelayout_init);
957module_exit(nfs4filelayout_exit);