blob: 09119418402fe0d386b26a89fdb5bd103eec60c4 [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 +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 Adamsoncbdabc7f2011-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{
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000125 int reset = 0;
126
127 dprintk("%s DS read\n", __func__);
128
129 if (filelayout_async_handle_error(task, data->args.context->state,
130 data->ds_clp, &reset) == -EAGAIN) {
131 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
132 __func__, data->ds_clp, data->ds_clp->cl_session);
133 if (reset) {
Peng Tao1b0ae062011-09-22 21:50:12 -0400134 pnfs_set_lo_fail(data->lseg);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000135 nfs4_reset_read(task, data);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000136 }
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700137 rpc_restart_call_prepare(task);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000138 return -EAGAIN;
139 }
140
141 return 0;
142}
143
Andy Adamson16b374c2010-10-20 00:18:04 -0400144/*
Andy Adamson863a3c62011-03-23 13:27:54 +0000145 * We reference the rpc_cred of the first WRITE that triggers the need for
146 * a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
147 * rfc5661 is not clear about which credential should be used.
148 */
149static void
150filelayout_set_layoutcommit(struct nfs_write_data *wdata)
151{
152 if (FILELAYOUT_LSEG(wdata->lseg)->commit_through_mds ||
153 wdata->res.verf->committed == NFS_FILE_SYNC)
154 return;
155
156 pnfs_set_layoutcommit(wdata);
157 dprintk("%s ionde %lu pls_end_pos %lu\n", __func__, wdata->inode->i_ino,
Peng Taoacff58802011-07-30 20:52:31 -0400158 (unsigned long) NFS_I(wdata->inode)->layout->plh_lwb);
Andy Adamson863a3c62011-03-23 13:27:54 +0000159}
160
161/*
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000162 * Call ops for the async read/write cases
163 * In the case of dense layouts, the offset needs to be reset to its
164 * original value.
165 */
166static void filelayout_read_prepare(struct rpc_task *task, void *data)
167{
168 struct nfs_read_data *rdata = (struct nfs_read_data *)data;
169
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000170 rdata->read_done_cb = filelayout_read_done_cb;
171
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000172 if (nfs41_setup_sequence(rdata->ds_clp->cl_session,
173 &rdata->args.seq_args, &rdata->res.seq_res,
174 0, task))
175 return;
176
177 rpc_call_start(task);
178}
179
180static void filelayout_read_call_done(struct rpc_task *task, void *data)
181{
182 struct nfs_read_data *rdata = (struct nfs_read_data *)data;
183
184 dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
185
186 /* Note this may cause RPC to be resent */
187 rdata->mds_ops->rpc_call_done(task, data);
188}
189
190static void filelayout_read_release(void *data)
191{
192 struct nfs_read_data *rdata = (struct nfs_read_data *)data;
193
194 rdata->mds_ops->rpc_release(data);
195}
196
Fred Isamana69aef12011-03-03 15:13:47 +0000197static int filelayout_write_done_cb(struct rpc_task *task,
198 struct nfs_write_data *data)
199{
200 int reset = 0;
201
202 if (filelayout_async_handle_error(task, data->args.context->state,
203 data->ds_clp, &reset) == -EAGAIN) {
Fred Isamana69aef12011-03-03 15:13:47 +0000204 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
205 __func__, data->ds_clp, data->ds_clp->cl_session);
206 if (reset) {
Peng Tao1b0ae062011-09-22 21:50:12 -0400207 pnfs_set_lo_fail(data->lseg);
Fred Isamana69aef12011-03-03 15:13:47 +0000208 nfs4_reset_write(task, data);
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700209 }
210 rpc_restart_call_prepare(task);
Fred Isamana69aef12011-03-03 15:13:47 +0000211 return -EAGAIN;
212 }
213
Andy Adamson863a3c62011-03-23 13:27:54 +0000214 filelayout_set_layoutcommit(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000215 return 0;
216}
217
Fred Isamane0c2b382011-03-23 13:27:53 +0000218/* Fake up some data that will cause nfs_commit_release to retry the writes. */
219static void prepare_to_resend_writes(struct nfs_write_data *data)
220{
221 struct nfs_page *first = nfs_list_entry(data->pages.next);
222
223 data->task.tk_status = 0;
224 memcpy(data->verf.verifier, first->wb_verf.verifier,
225 sizeof(first->wb_verf.verifier));
226 data->verf.verifier[0]++; /* ensure verifier mismatch */
227}
228
229static int filelayout_commit_done_cb(struct rpc_task *task,
230 struct nfs_write_data *data)
231{
232 int reset = 0;
233
234 if (filelayout_async_handle_error(task, data->args.context->state,
235 data->ds_clp, &reset) == -EAGAIN) {
236 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
237 __func__, data->ds_clp, data->ds_clp->cl_session);
238 if (reset) {
239 prepare_to_resend_writes(data);
Peng Tao1b0ae062011-09-22 21:50:12 -0400240 pnfs_set_lo_fail(data->lseg);
Fred Isamane0c2b382011-03-23 13:27:53 +0000241 } else
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700242 rpc_restart_call_prepare(task);
Fred Isamane0c2b382011-03-23 13:27:53 +0000243 return -EAGAIN;
244 }
245
246 return 0;
247}
248
Fred Isamana69aef12011-03-03 15:13:47 +0000249static void filelayout_write_prepare(struct rpc_task *task, void *data)
250{
251 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
252
253 if (nfs41_setup_sequence(wdata->ds_clp->cl_session,
254 &wdata->args.seq_args, &wdata->res.seq_res,
255 0, task))
256 return;
257
258 rpc_call_start(task);
259}
260
261static void filelayout_write_call_done(struct rpc_task *task, void *data)
262{
263 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
264
265 /* Note this may cause RPC to be resent */
266 wdata->mds_ops->rpc_call_done(task, data);
267}
268
269static void filelayout_write_release(void *data)
270{
271 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
272
273 wdata->mds_ops->rpc_release(data);
274}
275
Fred Isamane0c2b382011-03-23 13:27:53 +0000276static void filelayout_commit_release(void *data)
277{
278 struct nfs_write_data *wdata = (struct nfs_write_data *)data;
279
280 nfs_commit_release_pages(wdata);
281 if (atomic_dec_and_test(&NFS_I(wdata->inode)->commits_outstanding))
282 nfs_commit_clear_lock(NFS_I(wdata->inode));
283 nfs_commitdata_release(wdata);
284}
285
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000286struct rpc_call_ops filelayout_read_call_ops = {
287 .rpc_call_prepare = filelayout_read_prepare,
288 .rpc_call_done = filelayout_read_call_done,
289 .rpc_release = filelayout_read_release,
290};
291
Fred Isamana69aef12011-03-03 15:13:47 +0000292struct rpc_call_ops filelayout_write_call_ops = {
293 .rpc_call_prepare = filelayout_write_prepare,
294 .rpc_call_done = filelayout_write_call_done,
295 .rpc_release = filelayout_write_release,
296};
297
Fred Isamane0c2b382011-03-23 13:27:53 +0000298struct rpc_call_ops filelayout_commit_call_ops = {
299 .rpc_call_prepare = filelayout_write_prepare,
300 .rpc_call_done = filelayout_write_call_done,
301 .rpc_release = filelayout_commit_release,
302};
303
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000304static enum pnfs_try_status
305filelayout_read_pagelist(struct nfs_read_data *data)
306{
307 struct pnfs_layout_segment *lseg = data->lseg;
308 struct nfs4_pnfs_ds *ds;
309 loff_t offset = data->args.offset;
310 u32 j, idx;
311 struct nfs_fh *fh;
312 int status;
313
314 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
315 __func__, data->inode->i_ino,
316 data->args.pgbase, (size_t)data->args.count, offset);
317
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400318 if (test_bit(NFS_DEVICEID_INVALID, &FILELAYOUT_DEVID_NODE(lseg)->flags))
319 return PNFS_NOT_ATTEMPTED;
320
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000321 /* Retrieve the correct rpc_client for the byte range */
322 j = nfs4_fl_calc_j_index(lseg, offset);
323 idx = nfs4_fl_calc_ds_index(lseg, j);
324 ds = nfs4_fl_prepare_ds(lseg, idx);
325 if (!ds) {
Andy Adamson568e8c42011-03-01 01:34:22 +0000326 /* Either layout fh index faulty, or ds connect failed */
327 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
328 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000329 return PNFS_NOT_ATTEMPTED;
330 }
Weston Andros Adamsonc9895cb2011-05-31 18:48:56 -0400331 dprintk("%s USE DS: %s\n", __func__, ds->ds_remotestr);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000332
333 /* No multipath support. Use first DS */
334 data->ds_clp = ds->ds_clp;
335 fh = nfs4_fl_select_ds_fh(lseg, j);
336 if (fh)
337 data->args.fh = fh;
338
339 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
340 data->mds_offset = offset;
341
342 /* Perform an asynchronous read to ds */
343 status = nfs_initiate_read(data, ds->ds_clp->cl_rpcclient,
344 &filelayout_read_call_ops);
345 BUG_ON(status != 0);
346 return PNFS_ATTEMPTED;
347}
348
Fred Isamana69aef12011-03-03 15:13:47 +0000349/* Perform async writes. */
Andy Adamson0382b742011-03-03 15:13:45 +0000350static enum pnfs_try_status
351filelayout_write_pagelist(struct nfs_write_data *data, int sync)
352{
Fred Isamana69aef12011-03-03 15:13:47 +0000353 struct pnfs_layout_segment *lseg = data->lseg;
354 struct nfs4_pnfs_ds *ds;
355 loff_t offset = data->args.offset;
356 u32 j, idx;
357 struct nfs_fh *fh;
358 int status;
359
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400360 if (test_bit(NFS_DEVICEID_INVALID, &FILELAYOUT_DEVID_NODE(lseg)->flags))
361 return PNFS_NOT_ATTEMPTED;
362
Fred Isamana69aef12011-03-03 15:13:47 +0000363 /* Retrieve the correct rpc_client for the byte range */
364 j = nfs4_fl_calc_j_index(lseg, offset);
365 idx = nfs4_fl_calc_ds_index(lseg, j);
366 ds = nfs4_fl_prepare_ds(lseg, idx);
367 if (!ds) {
368 printk(KERN_ERR "%s: prepare_ds failed, use MDS\n", __func__);
369 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
370 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
371 return PNFS_NOT_ATTEMPTED;
372 }
Weston Andros Adamsonc9895cb2011-05-31 18:48:56 -0400373 dprintk("%s ino %lu sync %d req %Zu@%llu DS: %s\n", __func__,
Fred Isamana69aef12011-03-03 15:13:47 +0000374 data->inode->i_ino, sync, (size_t) data->args.count, offset,
Weston Andros Adamsonc9895cb2011-05-31 18:48:56 -0400375 ds->ds_remotestr);
Fred Isamana69aef12011-03-03 15:13:47 +0000376
Fred Isamana69aef12011-03-03 15:13:47 +0000377 data->write_done_cb = filelayout_write_done_cb;
378 data->ds_clp = ds->ds_clp;
379 fh = nfs4_fl_select_ds_fh(lseg, j);
380 if (fh)
381 data->args.fh = fh;
382 /*
383 * Get the file offset on the dserver. Set the write offset to
384 * this offset and save the original offset.
385 */
386 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
Fred Isamana69aef12011-03-03 15:13:47 +0000387
388 /* Perform an asynchronous write */
389 status = nfs_initiate_write(data, ds->ds_clp->cl_rpcclient,
390 &filelayout_write_call_ops, sync);
391 BUG_ON(status != 0);
392 return PNFS_ATTEMPTED;
Andy Adamson0382b742011-03-03 15:13:45 +0000393}
394
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000395/*
Andy Adamson16b374c2010-10-20 00:18:04 -0400396 * filelayout_check_layout()
397 *
398 * Make sure layout segment parameters are sane WRT the device.
399 * At this point no generic layer initialization of the lseg has occurred,
400 * and nothing has been added to the layout_hdr cache.
401 *
402 */
403static int
404filelayout_check_layout(struct pnfs_layout_hdr *lo,
405 struct nfs4_filelayout_segment *fl,
406 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400407 struct nfs4_deviceid *id,
408 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400409{
Benny Halevya1eaecb2011-05-19 22:14:47 -0400410 struct nfs4_deviceid_node *d;
Andy Adamson16b374c2010-10-20 00:18:04 -0400411 struct nfs4_file_layout_dsaddr *dsaddr;
412 int status = -EINVAL;
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000413 struct nfs_server *nfss = NFS_SERVER(lo->plh_inode);
Andy Adamson16b374c2010-10-20 00:18:04 -0400414
415 dprintk("--> %s\n", __func__);
416
Andy Adamson7c24d942011-06-13 18:22:38 -0400417 /* FIXME: remove this check when layout segment support is added */
418 if (lgr->range.offset != 0 ||
419 lgr->range.length != NFS4_MAX_UINT64) {
420 dprintk("%s Only whole file layouts supported. Use MDS i/o\n",
421 __func__);
422 goto out;
423 }
424
Andy Adamson16b374c2010-10-20 00:18:04 -0400425 if (fl->pattern_offset > lgr->range.offset) {
Jim Rees3b6445a2011-02-22 19:31:57 -0500426 dprintk("%s pattern_offset %lld too large\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400427 __func__, fl->pattern_offset);
428 goto out;
429 }
430
Benny Halevy75247af2011-02-22 15:56:01 -0800431 if (!fl->stripe_unit || fl->stripe_unit % PAGE_SIZE) {
432 dprintk("%s Invalid stripe unit (%u)\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400433 __func__, fl->stripe_unit);
434 goto out;
435 }
436
437 /* find and reference the deviceid */
Benny Halevy35c8bb52011-05-24 18:04:02 +0300438 d = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode)->pnfs_curr_ld,
439 NFS_SERVER(lo->plh_inode)->nfs_client, id);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400440 if (d == NULL) {
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400441 dsaddr = get_device_info(lo->plh_inode, id, gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400442 if (dsaddr == NULL)
443 goto out;
Benny Halevya1eaecb2011-05-19 22:14:47 -0400444 } else
445 dsaddr = container_of(d, struct nfs4_file_layout_dsaddr, id_node);
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400446 /* Found deviceid is being reaped */
447 if (test_bit(NFS_DEVICEID_INVALID, &dsaddr->id_node.flags))
448 goto out_put;
449
Andy Adamson16b374c2010-10-20 00:18:04 -0400450 fl->dsaddr = dsaddr;
451
452 if (fl->first_stripe_index < 0 ||
453 fl->first_stripe_index >= dsaddr->stripe_count) {
454 dprintk("%s Bad first_stripe_index %d\n",
455 __func__, fl->first_stripe_index);
456 goto out_put;
457 }
458
459 if ((fl->stripe_type == STRIPE_SPARSE &&
460 fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) ||
461 (fl->stripe_type == STRIPE_DENSE &&
462 fl->num_fh != dsaddr->stripe_count)) {
463 dprintk("%s num_fh %u not valid for given packing\n",
464 __func__, fl->num_fh);
465 goto out_put;
466 }
467
468 if (fl->stripe_unit % nfss->rsize || fl->stripe_unit % nfss->wsize) {
469 dprintk("%s Stripe unit (%u) not aligned with rsize %u "
470 "wsize %u\n", __func__, fl->stripe_unit, nfss->rsize,
471 nfss->wsize);
472 }
473
474 status = 0;
475out:
476 dprintk("--> %s returns %d\n", __func__, status);
477 return status;
478out_put:
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000479 nfs4_fl_put_deviceid(dsaddr);
Andy Adamson16b374c2010-10-20 00:18:04 -0400480 goto out;
481}
482
483static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl)
484{
485 int i;
486
487 for (i = 0; i < fl->num_fh; i++) {
488 if (!fl->fh_array[i])
489 break;
490 kfree(fl->fh_array[i]);
491 }
492 kfree(fl->fh_array);
493 fl->fh_array = NULL;
494}
495
496static void
497_filelayout_free_lseg(struct nfs4_filelayout_segment *fl)
498{
499 filelayout_free_fh_array(fl);
500 kfree(fl);
501}
502
503static int
504filelayout_decode_layout(struct pnfs_layout_hdr *flo,
505 struct nfs4_filelayout_segment *fl,
506 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400507 struct nfs4_deviceid *id,
508 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400509{
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400510 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400511 struct xdr_buf buf;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400512 struct page *scratch;
513 __be32 *p;
Andy Adamson16b374c2010-10-20 00:18:04 -0400514 uint32_t nfl_util;
515 int i;
516
517 dprintk("%s: set_layout_map Begin\n", __func__);
518
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400519 scratch = alloc_page(gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400520 if (!scratch)
521 return -ENOMEM;
522
Benny Halevyf7da7a12011-05-19 14:16:47 -0400523 xdr_init_decode_pages(&stream, &buf, lgr->layoutp->pages, lgr->layoutp->len);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400524 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
525
526 /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8),
527 * num_fh (4) */
528 p = xdr_inline_decode(&stream, NFS4_DEVICEID4_SIZE + 20);
529 if (unlikely(!p))
530 goto out_err;
531
Andy Adamson16b374c2010-10-20 00:18:04 -0400532 memcpy(id, p, sizeof(*id));
533 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400534 nfs4_print_deviceid(id);
Andy Adamson16b374c2010-10-20 00:18:04 -0400535
536 nfl_util = be32_to_cpup(p++);
537 if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS)
538 fl->commit_through_mds = 1;
539 if (nfl_util & NFL4_UFLG_DENSE)
540 fl->stripe_type = STRIPE_DENSE;
541 else
542 fl->stripe_type = STRIPE_SPARSE;
543 fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK;
544
545 fl->first_stripe_index = be32_to_cpup(p++);
546 p = xdr_decode_hyper(p, &fl->pattern_offset);
547 fl->num_fh = be32_to_cpup(p++);
548
549 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
550 __func__, nfl_util, fl->num_fh, fl->first_stripe_index,
551 fl->pattern_offset);
552
Andy Adamsoncec765c2011-06-13 18:36:17 -0400553 /* Note that a zero value for num_fh is legal for STRIPE_SPARSE.
554 * Futher checking is done in filelayout_check_layout */
555 if (fl->num_fh < 0 || fl->num_fh >
556 max(NFS4_PNFS_MAX_STRIPE_CNT, NFS4_PNFS_MAX_MULTI_CNT))
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400557 goto out_err;
558
Andy Adamsoncec765c2011-06-13 18:36:17 -0400559 if (fl->num_fh > 0) {
560 fl->fh_array = kzalloc(fl->num_fh * sizeof(struct nfs_fh *),
561 gfp_flags);
562 if (!fl->fh_array)
563 goto out_err;
564 }
Andy Adamson16b374c2010-10-20 00:18:04 -0400565
566 for (i = 0; i < fl->num_fh; i++) {
567 /* Do we want to use a mempool here? */
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400568 fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400569 if (!fl->fh_array[i])
570 goto out_err_free;
571
572 p = xdr_inline_decode(&stream, 4);
573 if (unlikely(!p))
574 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400575 fl->fh_array[i]->size = be32_to_cpup(p++);
576 if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) {
577 printk(KERN_ERR "Too big fh %d received %d\n",
578 i, fl->fh_array[i]->size);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400579 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400580 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400581
582 p = xdr_inline_decode(&stream, fl->fh_array[i]->size);
583 if (unlikely(!p))
584 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400585 memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size);
Andy Adamson16b374c2010-10-20 00:18:04 -0400586 dprintk("DEBUG: %s: fh len %d\n", __func__,
587 fl->fh_array[i]->size);
588 }
589
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400590 __free_page(scratch);
Andy Adamson16b374c2010-10-20 00:18:04 -0400591 return 0;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400592
593out_err_free:
594 filelayout_free_fh_array(fl);
595out_err:
596 __free_page(scratch);
597 return -EIO;
Andy Adamson16b374c2010-10-20 00:18:04 -0400598}
599
Fred Isamanc8795132011-03-23 13:27:49 +0000600static void
601filelayout_free_lseg(struct pnfs_layout_segment *lseg)
602{
603 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
604
605 dprintk("--> %s\n", __func__);
606 nfs4_fl_put_deviceid(fl->dsaddr);
Fred Isaman425eb732011-03-23 13:27:50 +0000607 kfree(fl->commit_buckets);
Fred Isamanc8795132011-03-23 13:27:49 +0000608 _filelayout_free_lseg(fl);
609}
610
Andy Adamson16b374c2010-10-20 00:18:04 -0400611static struct pnfs_layout_segment *
612filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400613 struct nfs4_layoutget_res *lgr,
614 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400615{
616 struct nfs4_filelayout_segment *fl;
617 int rc;
618 struct nfs4_deviceid id;
619
620 dprintk("--> %s\n", __func__);
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400621 fl = kzalloc(sizeof(*fl), gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400622 if (!fl)
623 return NULL;
624
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400625 rc = filelayout_decode_layout(layoutid, fl, lgr, &id, gfp_flags);
626 if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id, gfp_flags)) {
Andy Adamson16b374c2010-10-20 00:18:04 -0400627 _filelayout_free_lseg(fl);
628 return NULL;
629 }
Fred Isaman425eb732011-03-23 13:27:50 +0000630
631 /* This assumes there is only one IOMODE_RW lseg. What
632 * we really want to do is have a layout_hdr level
633 * dictionary of <multipath_list4, fh> keys, each
634 * associated with a struct list_head, populated by calls
635 * to filelayout_write_pagelist().
636 * */
637 if ((!fl->commit_through_mds) && (lgr->range.iomode == IOMODE_RW)) {
638 int i;
639 int size = (fl->stripe_type == STRIPE_SPARSE) ?
640 fl->dsaddr->ds_num : fl->dsaddr->stripe_count;
641
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400642 fl->commit_buckets = kcalloc(size, sizeof(struct list_head), gfp_flags);
Fred Isaman425eb732011-03-23 13:27:50 +0000643 if (!fl->commit_buckets) {
644 filelayout_free_lseg(&fl->generic_hdr);
645 return NULL;
646 }
647 fl->number_of_buckets = size;
648 for (i = 0; i < size; i++)
649 INIT_LIST_HEAD(&fl->commit_buckets[i]);
650 }
Andy Adamson16b374c2010-10-20 00:18:04 -0400651 return &fl->generic_hdr;
652}
653
Fred Isaman94ad1c82011-03-01 01:34:14 +0000654/*
655 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
656 *
Benny Halevy18ad0a92011-05-25 21:03:56 +0300657 * return true : coalesce page
658 * return false : don't coalesce page
Fred Isaman94ad1c82011-03-01 01:34:14 +0000659 */
Trond Myklebust1751c362011-06-10 13:30:23 -0400660static bool
Fred Isaman94ad1c82011-03-01 01:34:14 +0000661filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
662 struct nfs_page *req)
663{
664 u64 p_stripe, r_stripe;
665 u32 stripe_unit;
666
Benny Halevy19345cb2011-06-19 18:33:46 -0400667 if (!pnfs_generic_pg_test(pgio, prev, req) ||
668 !nfs_generic_pg_test(pgio, prev, req))
669 return false;
Benny Halevy89a58e32011-05-25 20:54:40 +0300670
Fred Isaman94ad1c82011-03-01 01:34:14 +0000671 p_stripe = (u64)prev->wb_index << PAGE_CACHE_SHIFT;
672 r_stripe = (u64)req->wb_index << PAGE_CACHE_SHIFT;
673 stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit;
674
675 do_div(p_stripe, stripe_unit);
676 do_div(r_stripe, stripe_unit);
677
678 return (p_stripe == r_stripe);
679}
680
Andy Adamson7c24d942011-06-13 18:22:38 -0400681void
682filelayout_pg_init_read(struct nfs_pageio_descriptor *pgio,
683 struct nfs_page *req)
684{
685 BUG_ON(pgio->pg_lseg != NULL);
686
687 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
688 req->wb_context,
689 0,
690 NFS4_MAX_UINT64,
691 IOMODE_READ,
692 GFP_KERNEL);
693 /* If no lseg, fall back to read through mds */
694 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -0400695 nfs_pageio_reset_read_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400696}
697
698void
699filelayout_pg_init_write(struct nfs_pageio_descriptor *pgio,
700 struct nfs_page *req)
701{
702 BUG_ON(pgio->pg_lseg != NULL);
703
704 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
705 req->wb_context,
706 0,
707 NFS4_MAX_UINT64,
708 IOMODE_RW,
709 GFP_NOFS);
710 /* If no lseg, fall back to write through mds */
711 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -0400712 nfs_pageio_reset_write_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400713}
714
Trond Myklebust1751c362011-06-10 13:30:23 -0400715static const struct nfs_pageio_ops filelayout_pg_read_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400716 .pg_init = filelayout_pg_init_read,
Trond Myklebust1751c362011-06-10 13:30:23 -0400717 .pg_test = filelayout_pg_test,
Trond Myklebust493292d2011-07-13 15:58:28 -0400718 .pg_doio = pnfs_generic_pg_readpages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400719};
720
721static const struct nfs_pageio_ops filelayout_pg_write_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400722 .pg_init = filelayout_pg_init_write,
Trond Myklebust1751c362011-06-10 13:30:23 -0400723 .pg_test = filelayout_pg_test,
Trond Myklebustdce81292011-07-13 15:59:19 -0400724 .pg_doio = pnfs_generic_pg_writepages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400725};
726
Fred Isamane0c2b382011-03-23 13:27:53 +0000727static bool filelayout_mark_pnfs_commit(struct pnfs_layout_segment *lseg)
728{
729 return !FILELAYOUT_LSEG(lseg)->commit_through_mds;
730}
731
732static u32 select_bucket_index(struct nfs4_filelayout_segment *fl, u32 j)
733{
734 if (fl->stripe_type == STRIPE_SPARSE)
735 return nfs4_fl_calc_ds_index(&fl->generic_hdr, j);
736 else
737 return j;
738}
739
740struct list_head *filelayout_choose_commit_list(struct nfs_page *req)
741{
742 struct pnfs_layout_segment *lseg = req->wb_commit_lseg;
743 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
744 u32 i, j;
745 struct list_head *list;
746
747 /* Note that we are calling nfs4_fl_calc_j_index on each page
748 * that ends up being committed to a data server. An attractive
749 * alternative is to add a field to nfs_write_data and nfs_page
750 * to store the value calculated in filelayout_write_pagelist
751 * and just use that here.
752 */
753 j = nfs4_fl_calc_j_index(lseg,
754 (loff_t)req->wb_index << PAGE_CACHE_SHIFT);
755 i = select_bucket_index(fl, j);
756 list = &fl->commit_buckets[i];
757 if (list_empty(list)) {
758 /* Non-empty buckets hold a reference on the lseg */
759 get_lseg(lseg);
760 }
761 return list;
762}
763
764static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i)
765{
766 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
767
768 if (flseg->stripe_type == STRIPE_SPARSE)
769 return i;
770 else
771 return nfs4_fl_calc_ds_index(lseg, i);
772}
773
774static struct nfs_fh *
775select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i)
776{
777 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
778
779 if (flseg->stripe_type == STRIPE_SPARSE) {
780 if (flseg->num_fh == 1)
781 i = 0;
782 else if (flseg->num_fh == 0)
783 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
784 return NULL;
785 }
786 return flseg->fh_array[i];
787}
788
789static int filelayout_initiate_commit(struct nfs_write_data *data, int how)
790{
791 struct pnfs_layout_segment *lseg = data->lseg;
792 struct nfs4_pnfs_ds *ds;
793 u32 idx;
794 struct nfs_fh *fh;
795
796 idx = calc_ds_index_from_commit(lseg, data->ds_commit_index);
797 ds = nfs4_fl_prepare_ds(lseg, idx);
798 if (!ds) {
799 printk(KERN_ERR "%s: prepare_ds failed, use MDS\n", __func__);
800 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
801 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
802 prepare_to_resend_writes(data);
803 data->mds_ops->rpc_release(data);
804 return -EAGAIN;
805 }
806 dprintk("%s ino %lu, how %d\n", __func__, data->inode->i_ino, how);
807 data->write_done_cb = filelayout_commit_done_cb;
808 data->ds_clp = ds->ds_clp;
809 fh = select_ds_fh_from_commit(lseg, data->ds_commit_index);
810 if (fh)
811 data->args.fh = fh;
812 return nfs_initiate_commit(data, ds->ds_clp->cl_rpcclient,
813 &filelayout_commit_call_ops, how);
814}
815
816/*
817 * This is only useful while we are using whole file layouts.
818 */
819static struct pnfs_layout_segment *find_only_write_lseg(struct inode *inode)
820{
821 struct pnfs_layout_segment *lseg, *rv = NULL;
822
823 spin_lock(&inode->i_lock);
824 list_for_each_entry(lseg, &NFS_I(inode)->layout->plh_segs, pls_list)
825 if (lseg->pls_range.iomode == IOMODE_RW)
826 rv = get_lseg(lseg);
827 spin_unlock(&inode->i_lock);
828 return rv;
829}
830
831static int alloc_ds_commits(struct inode *inode, struct list_head *list)
832{
833 struct pnfs_layout_segment *lseg;
834 struct nfs4_filelayout_segment *fl;
835 struct nfs_write_data *data;
836 int i, j;
837
838 /* Won't need this when non-whole file layout segments are supported
839 * instead we will use a pnfs_layout_hdr structure */
840 lseg = find_only_write_lseg(inode);
841 if (!lseg)
842 return 0;
843 fl = FILELAYOUT_LSEG(lseg);
844 for (i = 0; i < fl->number_of_buckets; i++) {
845 if (list_empty(&fl->commit_buckets[i]))
846 continue;
847 data = nfs_commitdata_alloc();
848 if (!data)
849 goto out_bad;
850 data->ds_commit_index = i;
851 data->lseg = lseg;
852 list_add(&data->pages, list);
853 }
854 put_lseg(lseg);
855 return 0;
856
857out_bad:
858 for (j = i; j < fl->number_of_buckets; j++) {
859 if (list_empty(&fl->commit_buckets[i]))
860 continue;
861 nfs_retry_commit(&fl->commit_buckets[i], lseg);
862 put_lseg(lseg); /* associated with emptying bucket */
863 }
864 put_lseg(lseg);
865 /* Caller will clean up entries put on list */
866 return -ENOMEM;
867}
868
869/* This follows nfs_commit_list pretty closely */
870static int
871filelayout_commit_pagelist(struct inode *inode, struct list_head *mds_pages,
872 int how)
873{
874 struct nfs_write_data *data, *tmp;
875 LIST_HEAD(list);
876
877 if (!list_empty(mds_pages)) {
878 data = nfs_commitdata_alloc();
879 if (!data)
880 goto out_bad;
881 data->lseg = NULL;
882 list_add(&data->pages, &list);
883 }
884
885 if (alloc_ds_commits(inode, &list))
886 goto out_bad;
887
888 list_for_each_entry_safe(data, tmp, &list, pages) {
889 list_del_init(&data->pages);
890 atomic_inc(&NFS_I(inode)->commits_outstanding);
891 if (!data->lseg) {
892 nfs_init_commit(data, mds_pages, NULL);
893 nfs_initiate_commit(data, NFS_CLIENT(inode),
894 data->mds_ops, how);
895 } else {
896 nfs_init_commit(data, &FILELAYOUT_LSEG(data->lseg)->commit_buckets[data->ds_commit_index], data->lseg);
897 filelayout_initiate_commit(data, how);
898 }
899 }
900 return 0;
901 out_bad:
902 list_for_each_entry_safe(data, tmp, &list, pages) {
903 nfs_retry_commit(&data->pages, data->lseg);
904 list_del_init(&data->pages);
905 nfs_commit_free(data);
906 }
907 nfs_retry_commit(mds_pages, NULL);
908 nfs_commit_clear_lock(NFS_I(inode));
909 return -ENOMEM;
910}
911
Benny Halevy1775bc32011-05-20 13:47:33 +0200912static void
913filelayout_free_deveiceid_node(struct nfs4_deviceid_node *d)
914{
915 nfs4_fl_free_deviceid(container_of(d, struct nfs4_file_layout_dsaddr, id_node));
916}
917
Dean Hildebrand7ab672c2010-10-20 00:18:00 -0400918static struct pnfs_layoutdriver_type filelayout_type = {
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000919 .id = LAYOUT_NFSV4_1_FILES,
920 .name = "LAYOUT_NFSV4_1_FILES",
921 .owner = THIS_MODULE,
922 .alloc_lseg = filelayout_alloc_lseg,
923 .free_lseg = filelayout_free_lseg,
Trond Myklebust1751c362011-06-10 13:30:23 -0400924 .pg_read_ops = &filelayout_pg_read_ops,
925 .pg_write_ops = &filelayout_pg_write_ops,
Fred Isamane0c2b382011-03-23 13:27:53 +0000926 .mark_pnfs_commit = filelayout_mark_pnfs_commit,
927 .choose_commit_list = filelayout_choose_commit_list,
928 .commit_pagelist = filelayout_commit_pagelist,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000929 .read_pagelist = filelayout_read_pagelist,
Andy Adamson0382b742011-03-03 15:13:45 +0000930 .write_pagelist = filelayout_write_pagelist,
Benny Halevy1775bc32011-05-20 13:47:33 +0200931 .free_deviceid_node = filelayout_free_deveiceid_node,
Dean Hildebrand7ab672c2010-10-20 00:18:00 -0400932};
933
934static int __init nfs4filelayout_init(void)
935{
936 printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n",
937 __func__);
938 return pnfs_register_layoutdriver(&filelayout_type);
939}
940
941static void __exit nfs4filelayout_exit(void)
942{
943 printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n",
944 __func__);
945 pnfs_unregister_layoutdriver(&filelayout_type);
946}
947
J. Bruce Fieldsf85ef692011-07-15 19:18:42 -0400948MODULE_ALIAS("nfs-layouttype4-1");
949
Dean Hildebrand7ab672c2010-10-20 00:18:00 -0400950module_init(nfs4filelayout_init);
951module_exit(nfs4filelayout_exit);