blob: 26d1da48676196aa35dba2bf1ac65bfc01ea92d6 [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>
Paul Gortmaker143cb492011-07-01 14:23:34 -040034#include <linux/module.h>
Andy Adamson16b374c2010-10-20 00:18:04 -040035
Weston Andros Adamson0a702192012-02-17 13:15:24 -050036#include <linux/sunrpc/metrics.h>
37
Andy Adamson16b374c2010-10-20 00:18:04 -040038#include "internal.h"
Andy Adamson9cb81962012-03-07 10:49:41 -050039#include "delegation.h"
Andy Adamson16b374c2010-10-20 00:18:04 -040040#include "nfs4filelayout.h"
Dean Hildebrand7ab672c2010-10-20 00:18:00 -040041
42#define NFSDBG_FACILITY NFSDBG_PNFS_LD
43
44MODULE_LICENSE("GPL");
45MODULE_AUTHOR("Dean Hildebrand <dhildebz@umich.edu>");
46MODULE_DESCRIPTION("The NFSv4 file layout driver");
47
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +000048#define FILELAYOUT_POLL_RETRY_MAX (15*HZ)
49
Fred Isamancfe7f412011-03-01 01:34:18 +000050static loff_t
51filelayout_get_dense_offset(struct nfs4_filelayout_segment *flseg,
52 loff_t offset)
53{
54 u32 stripe_width = flseg->stripe_unit * flseg->dsaddr->stripe_count;
Chris Metcalf3476f112011-08-11 13:54:28 -070055 u64 stripe_no;
56 u32 rem;
Fred Isamancfe7f412011-03-01 01:34:18 +000057
58 offset -= flseg->pattern_offset;
Chris Metcalf3476f112011-08-11 13:54:28 -070059 stripe_no = div_u64(offset, stripe_width);
60 div_u64_rem(offset, flseg->stripe_unit, &rem);
Fred Isamancfe7f412011-03-01 01:34:18 +000061
Chris Metcalf3476f112011-08-11 13:54:28 -070062 return stripe_no * flseg->stripe_unit + rem;
Fred Isamancfe7f412011-03-01 01:34:18 +000063}
64
65/* This function is used by the layout driver to calculate the
66 * offset of the file on the dserver based on whether the
67 * layout type is STRIPE_DENSE or STRIPE_SPARSE
68 */
69static loff_t
70filelayout_get_dserver_offset(struct pnfs_layout_segment *lseg, loff_t offset)
71{
72 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
73
74 switch (flseg->stripe_type) {
75 case STRIPE_SPARSE:
76 return offset;
77
78 case STRIPE_DENSE:
79 return filelayout_get_dense_offset(flseg, offset);
80 }
81
82 BUG();
83}
84
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +000085static int filelayout_async_handle_error(struct rpc_task *task,
86 struct nfs4_state *state,
87 struct nfs_client *clp,
88 int *reset)
89{
Andy Adamson9cb81962012-03-07 10:49:41 -050090 struct nfs_server *mds_server = NFS_SERVER(state->inode);
91 struct nfs_client *mds_client = mds_server->nfs_client;
92
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +000093 if (task->tk_status >= 0)
94 return 0;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +000095 *reset = 0;
96
97 switch (task->tk_status) {
Andy Adamson9cb81962012-03-07 10:49:41 -050098 /* MDS state errors */
99 case -NFS4ERR_DELEG_REVOKED:
100 case -NFS4ERR_ADMIN_REVOKED:
101 case -NFS4ERR_BAD_STATEID:
Andy Adamson2dc31752012-03-08 11:03:53 -0500102 nfs_remove_bad_delegation(state->inode);
Andy Adamson9cb81962012-03-07 10:49:41 -0500103 case -NFS4ERR_OPENMODE:
Andy Adamson9cb81962012-03-07 10:49:41 -0500104 nfs4_schedule_stateid_recovery(mds_server, state);
105 goto wait_on_recovery;
106 case -NFS4ERR_EXPIRED:
Andy Adamson2dc31752012-03-08 11:03:53 -0500107 nfs4_schedule_stateid_recovery(mds_server, state);
Andy Adamson9cb81962012-03-07 10:49:41 -0500108 nfs4_schedule_lease_recovery(mds_client);
109 goto wait_on_recovery;
110 /* DS session errors */
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000111 case -NFS4ERR_BADSESSION:
112 case -NFS4ERR_BADSLOT:
113 case -NFS4ERR_BAD_HIGH_SLOT:
114 case -NFS4ERR_DEADSESSION:
115 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
116 case -NFS4ERR_SEQ_FALSE_RETRY:
117 case -NFS4ERR_SEQ_MISORDERED:
118 dprintk("%s ERROR %d, Reset session. Exchangeid "
119 "flags 0x%x\n", __func__, task->tk_status,
120 clp->cl_exchange_flags);
121 nfs4_schedule_session_recovery(clp->cl_session);
122 break;
123 case -NFS4ERR_DELAY:
124 case -NFS4ERR_GRACE:
125 case -EKEYEXPIRED:
126 rpc_delay(task, FILELAYOUT_POLL_RETRY_MAX);
127 break;
Andy Adamsona8a4ae32011-05-03 13:43:03 -0400128 case -NFS4ERR_RETRY_UNCACHED_REP:
129 break;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000130 default:
131 dprintk("%s DS error. Retry through MDS %d\n", __func__,
132 task->tk_status);
133 *reset = 1;
134 break;
135 }
Andy Adamson9cb81962012-03-07 10:49:41 -0500136out:
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000137 task->tk_status = 0;
138 return -EAGAIN;
Andy Adamson9cb81962012-03-07 10:49:41 -0500139wait_on_recovery:
140 rpc_sleep_on(&mds_client->cl_rpcwaitq, task, NULL);
141 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &mds_client->cl_state) == 0)
142 rpc_wake_up_queued_task(&mds_client->cl_rpcwaitq, task);
143 goto out;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000144}
145
146/* NFS_PROTO call done callback routines */
147
148static int filelayout_read_done_cb(struct rpc_task *task,
149 struct nfs_read_data *data)
150{
Fred Isamancd841602012-04-20 14:47:44 -0400151 struct nfs_pgio_header *hdr = data->header;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000152 int reset = 0;
153
154 dprintk("%s DS read\n", __func__);
155
156 if (filelayout_async_handle_error(task, data->args.context->state,
157 data->ds_clp, &reset) == -EAGAIN) {
158 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
159 __func__, data->ds_clp, data->ds_clp->cl_session);
160 if (reset) {
Fred Isamancd841602012-04-20 14:47:44 -0400161 pnfs_set_lo_fail(hdr->lseg);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000162 nfs4_reset_read(task, data);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000163 }
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700164 rpc_restart_call_prepare(task);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000165 return -EAGAIN;
166 }
167
168 return 0;
169}
170
Andy Adamson16b374c2010-10-20 00:18:04 -0400171/*
Andy Adamson863a3c62011-03-23 13:27:54 +0000172 * We reference the rpc_cred of the first WRITE that triggers the need for
173 * a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
174 * rfc5661 is not clear about which credential should be used.
175 */
176static void
177filelayout_set_layoutcommit(struct nfs_write_data *wdata)
178{
Fred Isamancd841602012-04-20 14:47:44 -0400179 struct nfs_pgio_header *hdr = wdata->header;
180
181 if (FILELAYOUT_LSEG(hdr->lseg)->commit_through_mds ||
Andy Adamson863a3c62011-03-23 13:27:54 +0000182 wdata->res.verf->committed == NFS_FILE_SYNC)
183 return;
184
185 pnfs_set_layoutcommit(wdata);
Fred Isamancd841602012-04-20 14:47:44 -0400186 dprintk("%s ionde %lu pls_end_pos %lu\n", __func__, hdr->inode->i_ino,
187 (unsigned long) NFS_I(hdr->inode)->layout->plh_lwb);
Andy Adamson863a3c62011-03-23 13:27:54 +0000188}
189
190/*
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000191 * Call ops for the async read/write cases
192 * In the case of dense layouts, the offset needs to be reset to its
193 * original value.
194 */
195static void filelayout_read_prepare(struct rpc_task *task, void *data)
196{
Fred Isamancd12ae32012-04-20 14:47:42 -0400197 struct nfs_read_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000198
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000199 rdata->read_done_cb = filelayout_read_done_cb;
200
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000201 if (nfs41_setup_sequence(rdata->ds_clp->cl_session,
202 &rdata->args.seq_args, &rdata->res.seq_res,
Trond Myklebust9d12b212012-01-17 22:04:25 -0500203 task))
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000204 return;
205
206 rpc_call_start(task);
207}
208
209static void filelayout_read_call_done(struct rpc_task *task, void *data)
210{
Fred Isamancd12ae32012-04-20 14:47:42 -0400211 struct nfs_read_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000212
213 dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
214
215 /* Note this may cause RPC to be resent */
Fred Isamancd841602012-04-20 14:47:44 -0400216 rdata->header->mds_ops->rpc_call_done(task, data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000217}
218
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500219static void filelayout_read_count_stats(struct rpc_task *task, void *data)
220{
Fred Isamancd12ae32012-04-20 14:47:42 -0400221 struct nfs_read_data *rdata = data;
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500222
Fred Isamancd841602012-04-20 14:47:44 -0400223 rpc_count_iostats(task, NFS_SERVER(rdata->header->inode)->client->cl_metrics);
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500224}
225
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000226static void filelayout_read_release(void *data)
227{
Fred Isamancd12ae32012-04-20 14:47:42 -0400228 struct nfs_read_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000229
Fred Isamancd841602012-04-20 14:47:44 -0400230 rdata->header->mds_ops->rpc_release(data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000231}
232
Fred Isamana69aef12011-03-03 15:13:47 +0000233static int filelayout_write_done_cb(struct rpc_task *task,
234 struct nfs_write_data *data)
235{
Fred Isamancd841602012-04-20 14:47:44 -0400236 struct nfs_pgio_header *hdr = data->header;
Fred Isamana69aef12011-03-03 15:13:47 +0000237 int reset = 0;
238
239 if (filelayout_async_handle_error(task, data->args.context->state,
240 data->ds_clp, &reset) == -EAGAIN) {
Fred Isamana69aef12011-03-03 15:13:47 +0000241 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
242 __func__, data->ds_clp, data->ds_clp->cl_session);
243 if (reset) {
Fred Isamancd841602012-04-20 14:47:44 -0400244 pnfs_set_lo_fail(hdr->lseg);
Fred Isamana69aef12011-03-03 15:13:47 +0000245 nfs4_reset_write(task, data);
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700246 }
247 rpc_restart_call_prepare(task);
Fred Isamana69aef12011-03-03 15:13:47 +0000248 return -EAGAIN;
249 }
250
Andy Adamson863a3c62011-03-23 13:27:54 +0000251 filelayout_set_layoutcommit(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000252 return 0;
253}
254
Fred Isamane0c2b382011-03-23 13:27:53 +0000255/* Fake up some data that will cause nfs_commit_release to retry the writes. */
Fred Isaman0b7c0152012-04-20 14:47:39 -0400256static void prepare_to_resend_writes(struct nfs_commit_data *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000257{
258 struct nfs_page *first = nfs_list_entry(data->pages.next);
259
260 data->task.tk_status = 0;
261 memcpy(data->verf.verifier, first->wb_verf.verifier,
262 sizeof(first->wb_verf.verifier));
263 data->verf.verifier[0]++; /* ensure verifier mismatch */
264}
265
266static int filelayout_commit_done_cb(struct rpc_task *task,
Fred Isaman0b7c0152012-04-20 14:47:39 -0400267 struct nfs_commit_data *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000268{
269 int reset = 0;
270
Fred Isaman0b7c0152012-04-20 14:47:39 -0400271 if (filelayout_async_handle_error(task, data->context->state,
Fred Isamane0c2b382011-03-23 13:27:53 +0000272 data->ds_clp, &reset) == -EAGAIN) {
273 dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n",
274 __func__, data->ds_clp, data->ds_clp->cl_session);
275 if (reset) {
276 prepare_to_resend_writes(data);
Peng Tao1b0ae062011-09-22 21:50:12 -0400277 pnfs_set_lo_fail(data->lseg);
Fred Isamane0c2b382011-03-23 13:27:53 +0000278 } else
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700279 rpc_restart_call_prepare(task);
Fred Isamane0c2b382011-03-23 13:27:53 +0000280 return -EAGAIN;
281 }
282
283 return 0;
284}
285
Fred Isamana69aef12011-03-03 15:13:47 +0000286static void filelayout_write_prepare(struct rpc_task *task, void *data)
287{
Fred Isamancd12ae32012-04-20 14:47:42 -0400288 struct nfs_write_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000289
290 if (nfs41_setup_sequence(wdata->ds_clp->cl_session,
291 &wdata->args.seq_args, &wdata->res.seq_res,
Trond Myklebust9d12b212012-01-17 22:04:25 -0500292 task))
Fred Isamana69aef12011-03-03 15:13:47 +0000293 return;
294
295 rpc_call_start(task);
296}
297
298static void filelayout_write_call_done(struct rpc_task *task, void *data)
299{
Fred Isamancd12ae32012-04-20 14:47:42 -0400300 struct nfs_write_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000301
302 /* Note this may cause RPC to be resent */
Fred Isamancd841602012-04-20 14:47:44 -0400303 wdata->header->mds_ops->rpc_call_done(task, data);
Fred Isamana69aef12011-03-03 15:13:47 +0000304}
305
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500306static void filelayout_write_count_stats(struct rpc_task *task, void *data)
307{
Fred Isamancd12ae32012-04-20 14:47:42 -0400308 struct nfs_write_data *wdata = data;
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500309
Fred Isamancd841602012-04-20 14:47:44 -0400310 rpc_count_iostats(task, NFS_SERVER(wdata->header->inode)->client->cl_metrics);
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500311}
312
Fred Isamana69aef12011-03-03 15:13:47 +0000313static void filelayout_write_release(void *data)
314{
Fred Isamancd12ae32012-04-20 14:47:42 -0400315 struct nfs_write_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000316
Fred Isamancd841602012-04-20 14:47:44 -0400317 wdata->header->mds_ops->rpc_release(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000318}
319
Fred Isaman0b7c0152012-04-20 14:47:39 -0400320static void filelayout_commit_prepare(struct rpc_task *task, void *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000321{
Fred Isaman0b7c0152012-04-20 14:47:39 -0400322 struct nfs_commit_data *wdata = data;
Fred Isamane0c2b382011-03-23 13:27:53 +0000323
Fred Isaman0b7c0152012-04-20 14:47:39 -0400324 if (nfs41_setup_sequence(wdata->ds_clp->cl_session,
325 &wdata->args.seq_args, &wdata->res.seq_res,
326 task))
327 return;
328
329 rpc_call_start(task);
330}
331
332static void filelayout_write_commit_done(struct rpc_task *task, void *data)
333{
334 struct nfs_commit_data *wdata = data;
335
336 /* Note this may cause RPC to be resent */
337 wdata->mds_ops->rpc_call_done(task, data);
338}
339
340static void filelayout_commit_count_stats(struct rpc_task *task, void *data)
341{
342 struct nfs_commit_data *cdata = data;
343
344 rpc_count_iostats(task, NFS_SERVER(cdata->inode)->client->cl_metrics);
345}
346
347static void filelayout_commit_release(void *calldata)
348{
349 struct nfs_commit_data *data = calldata;
350
Fred Isamanf453a542012-04-20 14:47:54 -0400351 data->completion_ops->completion(data);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400352 put_lseg(data->lseg);
353 nfs_commitdata_release(data);
Fred Isamane0c2b382011-03-23 13:27:53 +0000354}
355
Trond Myklebust17280172012-03-11 13:11:00 -0400356static const struct rpc_call_ops filelayout_read_call_ops = {
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000357 .rpc_call_prepare = filelayout_read_prepare,
358 .rpc_call_done = filelayout_read_call_done,
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500359 .rpc_count_stats = filelayout_read_count_stats,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000360 .rpc_release = filelayout_read_release,
361};
362
Trond Myklebust17280172012-03-11 13:11:00 -0400363static const struct rpc_call_ops filelayout_write_call_ops = {
Fred Isamana69aef12011-03-03 15:13:47 +0000364 .rpc_call_prepare = filelayout_write_prepare,
365 .rpc_call_done = filelayout_write_call_done,
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500366 .rpc_count_stats = filelayout_write_count_stats,
Fred Isamana69aef12011-03-03 15:13:47 +0000367 .rpc_release = filelayout_write_release,
368};
369
Trond Myklebust17280172012-03-11 13:11:00 -0400370static const struct rpc_call_ops filelayout_commit_call_ops = {
Fred Isaman0b7c0152012-04-20 14:47:39 -0400371 .rpc_call_prepare = filelayout_commit_prepare,
372 .rpc_call_done = filelayout_write_commit_done,
373 .rpc_count_stats = filelayout_commit_count_stats,
Fred Isamane0c2b382011-03-23 13:27:53 +0000374 .rpc_release = filelayout_commit_release,
375};
376
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000377static enum pnfs_try_status
378filelayout_read_pagelist(struct nfs_read_data *data)
379{
Fred Isamancd841602012-04-20 14:47:44 -0400380 struct nfs_pgio_header *hdr = data->header;
381 struct pnfs_layout_segment *lseg = hdr->lseg;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000382 struct nfs4_pnfs_ds *ds;
383 loff_t offset = data->args.offset;
384 u32 j, idx;
385 struct nfs_fh *fh;
386 int status;
387
388 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
Fred Isamancd841602012-04-20 14:47:44 -0400389 __func__, hdr->inode->i_ino,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000390 data->args.pgbase, (size_t)data->args.count, offset);
391
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400392 if (test_bit(NFS_DEVICEID_INVALID, &FILELAYOUT_DEVID_NODE(lseg)->flags))
393 return PNFS_NOT_ATTEMPTED;
394
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000395 /* Retrieve the correct rpc_client for the byte range */
396 j = nfs4_fl_calc_j_index(lseg, offset);
397 idx = nfs4_fl_calc_ds_index(lseg, j);
398 ds = nfs4_fl_prepare_ds(lseg, idx);
399 if (!ds) {
Andy Adamson568e8c42011-03-01 01:34:22 +0000400 /* Either layout fh index faulty, or ds connect failed */
401 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
402 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000403 return PNFS_NOT_ATTEMPTED;
404 }
Weston Andros Adamsonc9895cb2011-05-31 18:48:56 -0400405 dprintk("%s USE DS: %s\n", __func__, ds->ds_remotestr);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000406
407 /* No multipath support. Use first DS */
408 data->ds_clp = ds->ds_clp;
409 fh = nfs4_fl_select_ds_fh(lseg, j);
410 if (fh)
411 data->args.fh = fh;
412
413 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
414 data->mds_offset = offset;
415
416 /* Perform an asynchronous read to ds */
Fred Isamanc5996c42012-04-20 14:47:41 -0400417 status = nfs_initiate_read(ds->ds_clp->cl_rpcclient, data,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000418 &filelayout_read_call_ops);
419 BUG_ON(status != 0);
420 return PNFS_ATTEMPTED;
421}
422
Fred Isamana69aef12011-03-03 15:13:47 +0000423/* Perform async writes. */
Andy Adamson0382b742011-03-03 15:13:45 +0000424static enum pnfs_try_status
425filelayout_write_pagelist(struct nfs_write_data *data, int sync)
426{
Fred Isamancd841602012-04-20 14:47:44 -0400427 struct nfs_pgio_header *hdr = data->header;
428 struct pnfs_layout_segment *lseg = hdr->lseg;
Fred Isamana69aef12011-03-03 15:13:47 +0000429 struct nfs4_pnfs_ds *ds;
430 loff_t offset = data->args.offset;
431 u32 j, idx;
432 struct nfs_fh *fh;
433 int status;
434
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400435 if (test_bit(NFS_DEVICEID_INVALID, &FILELAYOUT_DEVID_NODE(lseg)->flags))
436 return PNFS_NOT_ATTEMPTED;
437
Fred Isamana69aef12011-03-03 15:13:47 +0000438 /* Retrieve the correct rpc_client for the byte range */
439 j = nfs4_fl_calc_j_index(lseg, offset);
440 idx = nfs4_fl_calc_ds_index(lseg, j);
441 ds = nfs4_fl_prepare_ds(lseg, idx);
442 if (!ds) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500443 printk(KERN_ERR "NFS: %s: prepare_ds failed, use MDS\n",
444 __func__);
Fred Isamana69aef12011-03-03 15:13:47 +0000445 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
446 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
447 return PNFS_NOT_ATTEMPTED;
448 }
Weston Andros Adamsonc9895cb2011-05-31 18:48:56 -0400449 dprintk("%s ino %lu sync %d req %Zu@%llu DS: %s\n", __func__,
Fred Isamancd841602012-04-20 14:47:44 -0400450 hdr->inode->i_ino, sync, (size_t) data->args.count, offset,
Weston Andros Adamsonc9895cb2011-05-31 18:48:56 -0400451 ds->ds_remotestr);
Fred Isamana69aef12011-03-03 15:13:47 +0000452
Fred Isamana69aef12011-03-03 15:13:47 +0000453 data->write_done_cb = filelayout_write_done_cb;
454 data->ds_clp = ds->ds_clp;
455 fh = nfs4_fl_select_ds_fh(lseg, j);
456 if (fh)
457 data->args.fh = fh;
458 /*
459 * Get the file offset on the dserver. Set the write offset to
460 * this offset and save the original offset.
461 */
462 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
Fred Isamana69aef12011-03-03 15:13:47 +0000463
464 /* Perform an asynchronous write */
Fred Isamanc5996c42012-04-20 14:47:41 -0400465 status = nfs_initiate_write(ds->ds_clp->cl_rpcclient, data,
Fred Isamana69aef12011-03-03 15:13:47 +0000466 &filelayout_write_call_ops, sync);
467 BUG_ON(status != 0);
468 return PNFS_ATTEMPTED;
Andy Adamson0382b742011-03-03 15:13:45 +0000469}
470
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000471/*
Andy Adamson16b374c2010-10-20 00:18:04 -0400472 * filelayout_check_layout()
473 *
474 * Make sure layout segment parameters are sane WRT the device.
475 * At this point no generic layer initialization of the lseg has occurred,
476 * and nothing has been added to the layout_hdr cache.
477 *
478 */
479static int
480filelayout_check_layout(struct pnfs_layout_hdr *lo,
481 struct nfs4_filelayout_segment *fl,
482 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400483 struct nfs4_deviceid *id,
484 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400485{
Benny Halevya1eaecb2011-05-19 22:14:47 -0400486 struct nfs4_deviceid_node *d;
Andy Adamson16b374c2010-10-20 00:18:04 -0400487 struct nfs4_file_layout_dsaddr *dsaddr;
488 int status = -EINVAL;
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000489 struct nfs_server *nfss = NFS_SERVER(lo->plh_inode);
Andy Adamson16b374c2010-10-20 00:18:04 -0400490
491 dprintk("--> %s\n", __func__);
492
Andy Adamson7c24d942011-06-13 18:22:38 -0400493 /* FIXME: remove this check when layout segment support is added */
494 if (lgr->range.offset != 0 ||
495 lgr->range.length != NFS4_MAX_UINT64) {
496 dprintk("%s Only whole file layouts supported. Use MDS i/o\n",
497 __func__);
498 goto out;
499 }
500
Andy Adamson16b374c2010-10-20 00:18:04 -0400501 if (fl->pattern_offset > lgr->range.offset) {
Jim Rees3b6445a2011-02-22 19:31:57 -0500502 dprintk("%s pattern_offset %lld too large\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400503 __func__, fl->pattern_offset);
504 goto out;
505 }
506
Benny Halevy75247af2011-02-22 15:56:01 -0800507 if (!fl->stripe_unit || fl->stripe_unit % PAGE_SIZE) {
508 dprintk("%s Invalid stripe unit (%u)\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400509 __func__, fl->stripe_unit);
510 goto out;
511 }
512
513 /* find and reference the deviceid */
Benny Halevy35c8bb52011-05-24 18:04:02 +0300514 d = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode)->pnfs_curr_ld,
515 NFS_SERVER(lo->plh_inode)->nfs_client, id);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400516 if (d == NULL) {
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400517 dsaddr = get_device_info(lo->plh_inode, id, gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400518 if (dsaddr == NULL)
519 goto out;
Benny Halevya1eaecb2011-05-19 22:14:47 -0400520 } else
521 dsaddr = container_of(d, struct nfs4_file_layout_dsaddr, id_node);
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400522 /* Found deviceid is being reaped */
523 if (test_bit(NFS_DEVICEID_INVALID, &dsaddr->id_node.flags))
524 goto out_put;
525
Andy Adamson16b374c2010-10-20 00:18:04 -0400526 fl->dsaddr = dsaddr;
527
Chuck Levere4149662011-10-25 12:18:03 -0400528 if (fl->first_stripe_index >= dsaddr->stripe_count) {
529 dprintk("%s Bad first_stripe_index %u\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400530 __func__, fl->first_stripe_index);
531 goto out_put;
532 }
533
534 if ((fl->stripe_type == STRIPE_SPARSE &&
535 fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) ||
536 (fl->stripe_type == STRIPE_DENSE &&
537 fl->num_fh != dsaddr->stripe_count)) {
538 dprintk("%s num_fh %u not valid for given packing\n",
539 __func__, fl->num_fh);
540 goto out_put;
541 }
542
543 if (fl->stripe_unit % nfss->rsize || fl->stripe_unit % nfss->wsize) {
544 dprintk("%s Stripe unit (%u) not aligned with rsize %u "
545 "wsize %u\n", __func__, fl->stripe_unit, nfss->rsize,
546 nfss->wsize);
547 }
548
549 status = 0;
550out:
551 dprintk("--> %s returns %d\n", __func__, status);
552 return status;
553out_put:
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000554 nfs4_fl_put_deviceid(dsaddr);
Andy Adamson16b374c2010-10-20 00:18:04 -0400555 goto out;
556}
557
558static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl)
559{
560 int i;
561
562 for (i = 0; i < fl->num_fh; i++) {
563 if (!fl->fh_array[i])
564 break;
565 kfree(fl->fh_array[i]);
566 }
567 kfree(fl->fh_array);
568 fl->fh_array = NULL;
569}
570
571static void
572_filelayout_free_lseg(struct nfs4_filelayout_segment *fl)
573{
574 filelayout_free_fh_array(fl);
575 kfree(fl);
576}
577
578static int
579filelayout_decode_layout(struct pnfs_layout_hdr *flo,
580 struct nfs4_filelayout_segment *fl,
581 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400582 struct nfs4_deviceid *id,
583 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400584{
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400585 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400586 struct xdr_buf buf;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400587 struct page *scratch;
588 __be32 *p;
Andy Adamson16b374c2010-10-20 00:18:04 -0400589 uint32_t nfl_util;
590 int i;
591
592 dprintk("%s: set_layout_map Begin\n", __func__);
593
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400594 scratch = alloc_page(gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400595 if (!scratch)
596 return -ENOMEM;
597
Benny Halevyf7da7a12011-05-19 14:16:47 -0400598 xdr_init_decode_pages(&stream, &buf, lgr->layoutp->pages, lgr->layoutp->len);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400599 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
600
601 /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8),
602 * num_fh (4) */
603 p = xdr_inline_decode(&stream, NFS4_DEVICEID4_SIZE + 20);
604 if (unlikely(!p))
605 goto out_err;
606
Andy Adamson16b374c2010-10-20 00:18:04 -0400607 memcpy(id, p, sizeof(*id));
608 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400609 nfs4_print_deviceid(id);
Andy Adamson16b374c2010-10-20 00:18:04 -0400610
611 nfl_util = be32_to_cpup(p++);
612 if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS)
613 fl->commit_through_mds = 1;
614 if (nfl_util & NFL4_UFLG_DENSE)
615 fl->stripe_type = STRIPE_DENSE;
616 else
617 fl->stripe_type = STRIPE_SPARSE;
618 fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK;
619
620 fl->first_stripe_index = be32_to_cpup(p++);
621 p = xdr_decode_hyper(p, &fl->pattern_offset);
622 fl->num_fh = be32_to_cpup(p++);
623
624 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
625 __func__, nfl_util, fl->num_fh, fl->first_stripe_index,
626 fl->pattern_offset);
627
Andy Adamsoncec765c2011-06-13 18:36:17 -0400628 /* Note that a zero value for num_fh is legal for STRIPE_SPARSE.
629 * Futher checking is done in filelayout_check_layout */
Chuck Levere4149662011-10-25 12:18:03 -0400630 if (fl->num_fh >
Andy Adamsoncec765c2011-06-13 18:36:17 -0400631 max(NFS4_PNFS_MAX_STRIPE_CNT, NFS4_PNFS_MAX_MULTI_CNT))
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400632 goto out_err;
633
Andy Adamsoncec765c2011-06-13 18:36:17 -0400634 if (fl->num_fh > 0) {
635 fl->fh_array = kzalloc(fl->num_fh * sizeof(struct nfs_fh *),
636 gfp_flags);
637 if (!fl->fh_array)
638 goto out_err;
639 }
Andy Adamson16b374c2010-10-20 00:18:04 -0400640
641 for (i = 0; i < fl->num_fh; i++) {
642 /* Do we want to use a mempool here? */
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400643 fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400644 if (!fl->fh_array[i])
645 goto out_err_free;
646
647 p = xdr_inline_decode(&stream, 4);
648 if (unlikely(!p))
649 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400650 fl->fh_array[i]->size = be32_to_cpup(p++);
651 if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) {
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -0500652 printk(KERN_ERR "NFS: Too big fh %d received %d\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400653 i, fl->fh_array[i]->size);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400654 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400655 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400656
657 p = xdr_inline_decode(&stream, fl->fh_array[i]->size);
658 if (unlikely(!p))
659 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400660 memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size);
Andy Adamson16b374c2010-10-20 00:18:04 -0400661 dprintk("DEBUG: %s: fh len %d\n", __func__,
662 fl->fh_array[i]->size);
663 }
664
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400665 __free_page(scratch);
Andy Adamson16b374c2010-10-20 00:18:04 -0400666 return 0;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400667
668out_err_free:
669 filelayout_free_fh_array(fl);
670out_err:
671 __free_page(scratch);
672 return -EIO;
Andy Adamson16b374c2010-10-20 00:18:04 -0400673}
674
Fred Isamanc8795132011-03-23 13:27:49 +0000675static void
676filelayout_free_lseg(struct pnfs_layout_segment *lseg)
677{
678 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
679
680 dprintk("--> %s\n", __func__);
681 nfs4_fl_put_deviceid(fl->dsaddr);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400682 /* This assumes a single RW lseg */
683 if (lseg->pls_range.iomode == IOMODE_RW) {
684 struct nfs4_filelayout *flo;
685
686 flo = FILELAYOUT_FROM_HDR(lseg->pls_layout);
687 flo->commit_info.nbuckets = 0;
688 kfree(flo->commit_info.buckets);
689 flo->commit_info.buckets = NULL;
690 }
Fred Isamanc8795132011-03-23 13:27:49 +0000691 _filelayout_free_lseg(fl);
692}
693
Fred Isaman799ba8d2012-04-20 14:47:38 -0400694static int
695filelayout_alloc_commit_info(struct pnfs_layout_segment *lseg,
Fred Isamanea2cf222012-04-20 14:47:53 -0400696 struct nfs_commit_info *cinfo,
Fred Isaman799ba8d2012-04-20 14:47:38 -0400697 gfp_t gfp_flags)
698{
699 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
Fred Isamanea2cf222012-04-20 14:47:53 -0400700 struct pnfs_commit_bucket *buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400701 int size;
702
703 if (fl->commit_through_mds)
704 return 0;
Fred Isamanea2cf222012-04-20 14:47:53 -0400705 if (cinfo->ds->nbuckets != 0) {
Fred Isaman799ba8d2012-04-20 14:47:38 -0400706 /* This assumes there is only one IOMODE_RW lseg. What
707 * we really want to do is have a layout_hdr level
708 * dictionary of <multipath_list4, fh> keys, each
709 * associated with a struct list_head, populated by calls
710 * to filelayout_write_pagelist().
711 * */
712 return 0;
713 }
714
715 size = (fl->stripe_type == STRIPE_SPARSE) ?
716 fl->dsaddr->ds_num : fl->dsaddr->stripe_count;
717
Fred Isamanea2cf222012-04-20 14:47:53 -0400718 buckets = kcalloc(size, sizeof(struct pnfs_commit_bucket),
Fred Isaman799ba8d2012-04-20 14:47:38 -0400719 gfp_flags);
720 if (!buckets)
721 return -ENOMEM;
722 else {
723 int i;
724
Fred Isamanea2cf222012-04-20 14:47:53 -0400725 spin_lock(cinfo->lock);
726 if (cinfo->ds->nbuckets != 0)
Fred Isaman799ba8d2012-04-20 14:47:38 -0400727 kfree(buckets);
728 else {
Fred Isamanea2cf222012-04-20 14:47:53 -0400729 cinfo->ds->buckets = buckets;
730 cinfo->ds->nbuckets = size;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400731 for (i = 0; i < size; i++) {
732 INIT_LIST_HEAD(&buckets[i].written);
733 INIT_LIST_HEAD(&buckets[i].committing);
734 }
735 }
Fred Isamanea2cf222012-04-20 14:47:53 -0400736 spin_unlock(cinfo->lock);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400737 return 0;
738 }
739}
740
Andy Adamson16b374c2010-10-20 00:18:04 -0400741static struct pnfs_layout_segment *
742filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400743 struct nfs4_layoutget_res *lgr,
744 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400745{
746 struct nfs4_filelayout_segment *fl;
747 int rc;
748 struct nfs4_deviceid id;
749
750 dprintk("--> %s\n", __func__);
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400751 fl = kzalloc(sizeof(*fl), gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400752 if (!fl)
753 return NULL;
754
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400755 rc = filelayout_decode_layout(layoutid, fl, lgr, &id, gfp_flags);
756 if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id, gfp_flags)) {
Andy Adamson16b374c2010-10-20 00:18:04 -0400757 _filelayout_free_lseg(fl);
758 return NULL;
759 }
760 return &fl->generic_hdr;
761}
762
Fred Isaman94ad1c82011-03-01 01:34:14 +0000763/*
764 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
765 *
Benny Halevy18ad0a92011-05-25 21:03:56 +0300766 * return true : coalesce page
767 * return false : don't coalesce page
Fred Isaman94ad1c82011-03-01 01:34:14 +0000768 */
Trond Myklebust1751c362011-06-10 13:30:23 -0400769static bool
Fred Isaman94ad1c82011-03-01 01:34:14 +0000770filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
771 struct nfs_page *req)
772{
773 u64 p_stripe, r_stripe;
774 u32 stripe_unit;
775
Benny Halevy19345cb2011-06-19 18:33:46 -0400776 if (!pnfs_generic_pg_test(pgio, prev, req) ||
777 !nfs_generic_pg_test(pgio, prev, req))
778 return false;
Benny Halevy89a58e32011-05-25 20:54:40 +0300779
Fred Isamanb5542842012-04-20 14:47:43 -0400780 p_stripe = (u64)req_offset(prev);
781 r_stripe = (u64)req_offset(req);
Fred Isaman94ad1c82011-03-01 01:34:14 +0000782 stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit;
783
784 do_div(p_stripe, stripe_unit);
785 do_div(r_stripe, stripe_unit);
786
787 return (p_stripe == r_stripe);
788}
789
Trond Myklebust17280172012-03-11 13:11:00 -0400790static void
Andy Adamson7c24d942011-06-13 18:22:38 -0400791filelayout_pg_init_read(struct nfs_pageio_descriptor *pgio,
792 struct nfs_page *req)
793{
794 BUG_ON(pgio->pg_lseg != NULL);
795
Fred Isaman1825a0d2012-04-20 19:55:31 -0400796 if (req->wb_offset != req->wb_pgbase) {
797 /*
798 * Handling unaligned pages is difficult, because have to
799 * somehow split a req in two in certain cases in the
800 * pg.test code. Avoid this by just not using pnfs
801 * in this case.
802 */
803 nfs_pageio_reset_read_mds(pgio);
804 return;
805 }
Andy Adamson7c24d942011-06-13 18:22:38 -0400806 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
807 req->wb_context,
808 0,
809 NFS4_MAX_UINT64,
810 IOMODE_READ,
811 GFP_KERNEL);
812 /* If no lseg, fall back to read through mds */
813 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -0400814 nfs_pageio_reset_read_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400815}
816
Trond Myklebust17280172012-03-11 13:11:00 -0400817static void
Andy Adamson7c24d942011-06-13 18:22:38 -0400818filelayout_pg_init_write(struct nfs_pageio_descriptor *pgio,
819 struct nfs_page *req)
820{
Fred Isamanea2cf222012-04-20 14:47:53 -0400821 struct nfs_commit_info cinfo;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400822 int status;
823
Andy Adamson7c24d942011-06-13 18:22:38 -0400824 BUG_ON(pgio->pg_lseg != NULL);
825
Fred Isaman1825a0d2012-04-20 19:55:31 -0400826 if (req->wb_offset != req->wb_pgbase)
827 goto out_mds;
Andy Adamson7c24d942011-06-13 18:22:38 -0400828 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
829 req->wb_context,
830 0,
831 NFS4_MAX_UINT64,
832 IOMODE_RW,
833 GFP_NOFS);
834 /* If no lseg, fall back to write through mds */
835 if (pgio->pg_lseg == NULL)
Fred Isaman799ba8d2012-04-20 14:47:38 -0400836 goto out_mds;
Fred Isamanea2cf222012-04-20 14:47:53 -0400837 nfs_init_cinfo(&cinfo, pgio->pg_inode, pgio->pg_dreq);
838 status = filelayout_alloc_commit_info(pgio->pg_lseg, &cinfo, GFP_NOFS);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400839 if (status < 0) {
840 put_lseg(pgio->pg_lseg);
841 pgio->pg_lseg = NULL;
842 goto out_mds;
843 }
844 return;
845out_mds:
846 nfs_pageio_reset_write_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400847}
848
Trond Myklebust1751c362011-06-10 13:30:23 -0400849static const struct nfs_pageio_ops filelayout_pg_read_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400850 .pg_init = filelayout_pg_init_read,
Trond Myklebust1751c362011-06-10 13:30:23 -0400851 .pg_test = filelayout_pg_test,
Trond Myklebust493292d2011-07-13 15:58:28 -0400852 .pg_doio = pnfs_generic_pg_readpages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400853};
854
855static const struct nfs_pageio_ops filelayout_pg_write_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400856 .pg_init = filelayout_pg_init_write,
Trond Myklebust1751c362011-06-10 13:30:23 -0400857 .pg_test = filelayout_pg_test,
Trond Myklebustdce81292011-07-13 15:59:19 -0400858 .pg_doio = pnfs_generic_pg_writepages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400859};
860
Fred Isamane0c2b382011-03-23 13:27:53 +0000861static u32 select_bucket_index(struct nfs4_filelayout_segment *fl, u32 j)
862{
863 if (fl->stripe_type == STRIPE_SPARSE)
864 return nfs4_fl_calc_ds_index(&fl->generic_hdr, j);
865 else
866 return j;
867}
868
Fred Isamand6d6dc72012-03-08 17:29:35 -0500869/* The generic layer is about to remove the req from the commit list.
870 * If this will make the bucket empty, it will need to put the lseg reference.
Fred Isamand6d6dc72012-03-08 17:29:35 -0500871 */
Trond Myklebust8dd37752012-03-15 17:16:40 -0400872static void
Fred Isamanea2cf222012-04-20 14:47:53 -0400873filelayout_clear_request_commit(struct nfs_page *req,
874 struct nfs_commit_info *cinfo)
Fred Isamane0c2b382011-03-23 13:27:53 +0000875{
Trond Myklebust8dd37752012-03-15 17:16:40 -0400876 struct pnfs_layout_segment *freeme = NULL;
Trond Myklebust8dd37752012-03-15 17:16:40 -0400877
Fred Isamanea2cf222012-04-20 14:47:53 -0400878 spin_lock(cinfo->lock);
Trond Myklebust8dd37752012-03-15 17:16:40 -0400879 if (!test_and_clear_bit(PG_COMMIT_TO_DS, &req->wb_flags))
880 goto out;
Fred Isamanea2cf222012-04-20 14:47:53 -0400881 cinfo->ds->nwritten--;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500882 if (list_is_singular(&req->wb_list)) {
Fred Isamanea2cf222012-04-20 14:47:53 -0400883 struct pnfs_commit_bucket *bucket;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500884
Fred Isaman799ba8d2012-04-20 14:47:38 -0400885 bucket = list_first_entry(&req->wb_list,
Fred Isamanea2cf222012-04-20 14:47:53 -0400886 struct pnfs_commit_bucket,
Fred Isaman799ba8d2012-04-20 14:47:38 -0400887 written);
888 freeme = bucket->wlseg;
889 bucket->wlseg = NULL;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500890 }
Trond Myklebust8dd37752012-03-15 17:16:40 -0400891out:
Fred Isamanea2cf222012-04-20 14:47:53 -0400892 nfs_request_remove_commit_list(req, cinfo);
893 spin_unlock(cinfo->lock);
Trond Myklebust8dd37752012-03-15 17:16:40 -0400894 put_lseg(freeme);
Fred Isamand6d6dc72012-03-08 17:29:35 -0500895}
896
897static struct list_head *
898filelayout_choose_commit_list(struct nfs_page *req,
Fred Isamanea2cf222012-04-20 14:47:53 -0400899 struct pnfs_layout_segment *lseg,
900 struct nfs_commit_info *cinfo)
Fred Isamand6d6dc72012-03-08 17:29:35 -0500901{
Fred Isamane0c2b382011-03-23 13:27:53 +0000902 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
903 u32 i, j;
904 struct list_head *list;
Fred Isamanea2cf222012-04-20 14:47:53 -0400905 struct pnfs_commit_bucket *buckets;
Fred Isamane0c2b382011-03-23 13:27:53 +0000906
Fred Isamand6d6dc72012-03-08 17:29:35 -0500907 if (fl->commit_through_mds)
Fred Isamanea2cf222012-04-20 14:47:53 -0400908 return &cinfo->mds->list;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500909
Fred Isamane0c2b382011-03-23 13:27:53 +0000910 /* Note that we are calling nfs4_fl_calc_j_index on each page
911 * that ends up being committed to a data server. An attractive
912 * alternative is to add a field to nfs_write_data and nfs_page
913 * to store the value calculated in filelayout_write_pagelist
914 * and just use that here.
915 */
Fred Isamanb5542842012-04-20 14:47:43 -0400916 j = nfs4_fl_calc_j_index(lseg, req_offset(req));
Fred Isamane0c2b382011-03-23 13:27:53 +0000917 i = select_bucket_index(fl, j);
Fred Isamanea2cf222012-04-20 14:47:53 -0400918 buckets = cinfo->ds->buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400919 list = &buckets[i].written;
Fred Isamane0c2b382011-03-23 13:27:53 +0000920 if (list_empty(list)) {
Fred Isamand6d6dc72012-03-08 17:29:35 -0500921 /* Non-empty buckets hold a reference on the lseg. That ref
922 * is normally transferred to the COMMIT call and released
923 * there. It could also be released if the last req is pulled
924 * off due to a rewrite, in which case it will be done in
Fred Isaman799ba8d2012-04-20 14:47:38 -0400925 * filelayout_clear_request_commit
Fred Isamand6d6dc72012-03-08 17:29:35 -0500926 */
Fred Isaman799ba8d2012-04-20 14:47:38 -0400927 buckets[i].wlseg = get_lseg(lseg);
Fred Isamane0c2b382011-03-23 13:27:53 +0000928 }
Trond Myklebust8dd37752012-03-15 17:16:40 -0400929 set_bit(PG_COMMIT_TO_DS, &req->wb_flags);
Fred Isamanea2cf222012-04-20 14:47:53 -0400930 cinfo->ds->nwritten++;
Fred Isamane0c2b382011-03-23 13:27:53 +0000931 return list;
932}
933
Trond Myklebust8dd37752012-03-15 17:16:40 -0400934static void
935filelayout_mark_request_commit(struct nfs_page *req,
Fred Isamanea2cf222012-04-20 14:47:53 -0400936 struct pnfs_layout_segment *lseg,
937 struct nfs_commit_info *cinfo)
Trond Myklebust8dd37752012-03-15 17:16:40 -0400938{
939 struct list_head *list;
940
Fred Isamanea2cf222012-04-20 14:47:53 -0400941 list = filelayout_choose_commit_list(req, lseg, cinfo);
942 nfs_request_add_commit_list(req, list, cinfo);
Trond Myklebust8dd37752012-03-15 17:16:40 -0400943}
944
Fred Isamane0c2b382011-03-23 13:27:53 +0000945static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i)
946{
947 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
948
949 if (flseg->stripe_type == STRIPE_SPARSE)
950 return i;
951 else
952 return nfs4_fl_calc_ds_index(lseg, i);
953}
954
955static struct nfs_fh *
956select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i)
957{
958 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
959
960 if (flseg->stripe_type == STRIPE_SPARSE) {
961 if (flseg->num_fh == 1)
962 i = 0;
963 else if (flseg->num_fh == 0)
964 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
965 return NULL;
966 }
967 return flseg->fh_array[i];
968}
969
Fred Isaman0b7c0152012-04-20 14:47:39 -0400970static int filelayout_initiate_commit(struct nfs_commit_data *data, int how)
Fred Isamane0c2b382011-03-23 13:27:53 +0000971{
972 struct pnfs_layout_segment *lseg = data->lseg;
973 struct nfs4_pnfs_ds *ds;
974 u32 idx;
975 struct nfs_fh *fh;
976
977 idx = calc_ds_index_from_commit(lseg, data->ds_commit_index);
978 ds = nfs4_fl_prepare_ds(lseg, idx);
979 if (!ds) {
Weston Andros Adamsona0308892012-01-26 13:32:23 -0500980 printk(KERN_ERR "NFS: %s: prepare_ds failed, use MDS\n",
981 __func__);
Fred Isamane0c2b382011-03-23 13:27:53 +0000982 set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
983 set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
984 prepare_to_resend_writes(data);
Trond Myklebust8dd37752012-03-15 17:16:40 -0400985 filelayout_commit_release(data);
Fred Isamane0c2b382011-03-23 13:27:53 +0000986 return -EAGAIN;
987 }
988 dprintk("%s ino %lu, how %d\n", __func__, data->inode->i_ino, how);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400989 data->commit_done_cb = filelayout_commit_done_cb;
Fred Isamane0c2b382011-03-23 13:27:53 +0000990 data->ds_clp = ds->ds_clp;
991 fh = select_ds_fh_from_commit(lseg, data->ds_commit_index);
992 if (fh)
993 data->args.fh = fh;
Fred Isaman0b7c0152012-04-20 14:47:39 -0400994 return nfs_initiate_commit(ds->ds_clp->cl_rpcclient, data,
Fred Isamane0c2b382011-03-23 13:27:53 +0000995 &filelayout_commit_call_ops, how);
996}
997
Trond Myklebust8dd37752012-03-15 17:16:40 -0400998static int
Fred Isamanea2cf222012-04-20 14:47:53 -0400999filelayout_scan_ds_commit_list(struct pnfs_commit_bucket *bucket,
1000 struct nfs_commit_info *cinfo,
1001 int max)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001002{
1003 struct list_head *src = &bucket->written;
1004 struct list_head *dst = &bucket->committing;
1005 struct nfs_page *req, *tmp;
1006 int ret = 0;
1007
1008 list_for_each_entry_safe(req, tmp, src, wb_list) {
1009 if (!nfs_lock_request(req))
1010 continue;
Fred Isamanea2cf222012-04-20 14:47:53 -04001011 if (cond_resched_lock(cinfo->lock))
Trond Myklebust3b3be882012-03-17 11:59:30 -04001012 list_safe_reset_next(req, tmp, wb_list);
Fred Isamanea2cf222012-04-20 14:47:53 -04001013 nfs_request_remove_commit_list(req, cinfo);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001014 clear_bit(PG_COMMIT_TO_DS, &req->wb_flags);
1015 nfs_list_add_request(req, dst);
1016 ret++;
1017 if (ret == max)
1018 break;
1019 }
Fred Isaman799ba8d2012-04-20 14:47:38 -04001020 if (ret) {
Fred Isamanea2cf222012-04-20 14:47:53 -04001021 cinfo->ds->nwritten -= ret;
1022 cinfo->ds->ncommitting += ret;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001023 bucket->clseg = bucket->wlseg;
1024 if (list_empty(src))
1025 bucket->wlseg = NULL;
1026 else
1027 get_lseg(bucket->clseg);
1028 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001029 return ret;
1030}
1031
Fred Isamand6d6dc72012-03-08 17:29:35 -05001032/* Move reqs from written to committing lists, returning count of number moved.
Fred Isamanea2cf222012-04-20 14:47:53 -04001033 * Note called with cinfo->lock held.
Fred Isamand6d6dc72012-03-08 17:29:35 -05001034 */
Fred Isamanea2cf222012-04-20 14:47:53 -04001035static int filelayout_scan_commit_lists(struct nfs_commit_info *cinfo,
1036 int max)
Fred Isamand6d6dc72012-03-08 17:29:35 -05001037{
Fred Isamand6d6dc72012-03-08 17:29:35 -05001038 int i, rv = 0, cnt;
1039
Fred Isamanea2cf222012-04-20 14:47:53 -04001040 for (i = 0; i < cinfo->ds->nbuckets && max != 0; i++) {
1041 cnt = filelayout_scan_ds_commit_list(&cinfo->ds->buckets[i],
1042 cinfo, max);
Fred Isamand6d6dc72012-03-08 17:29:35 -05001043 max -= cnt;
1044 rv += cnt;
1045 }
Fred Isamand6d6dc72012-03-08 17:29:35 -05001046 return rv;
1047}
1048
Trond Myklebust9390f422012-03-16 13:52:45 -04001049static unsigned int
Fred Isamanea2cf222012-04-20 14:47:53 -04001050alloc_ds_commits(struct nfs_commit_info *cinfo, struct list_head *list)
Fred Isamane0c2b382011-03-23 13:27:53 +00001051{
Fred Isamanea2cf222012-04-20 14:47:53 -04001052 struct pnfs_ds_commit_info *fl_cinfo;
1053 struct pnfs_commit_bucket *bucket;
Fred Isaman0b7c0152012-04-20 14:47:39 -04001054 struct nfs_commit_data *data;
Fred Isamane0c2b382011-03-23 13:27:53 +00001055 int i, j;
Trond Myklebust9390f422012-03-16 13:52:45 -04001056 unsigned int nreq = 0;
Fred Isamane0c2b382011-03-23 13:27:53 +00001057
Fred Isamanea2cf222012-04-20 14:47:53 -04001058 fl_cinfo = cinfo->ds;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001059 bucket = fl_cinfo->buckets;
1060 for (i = 0; i < fl_cinfo->nbuckets; i++, bucket++) {
1061 if (list_empty(&bucket->committing))
Fred Isamane0c2b382011-03-23 13:27:53 +00001062 continue;
1063 data = nfs_commitdata_alloc();
1064 if (!data)
Trond Myklebust9390f422012-03-16 13:52:45 -04001065 break;
Fred Isamane0c2b382011-03-23 13:27:53 +00001066 data->ds_commit_index = i;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001067 data->lseg = bucket->clseg;
1068 bucket->clseg = NULL;
Fred Isamane0c2b382011-03-23 13:27:53 +00001069 list_add(&data->pages, list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001070 nreq++;
Fred Isamane0c2b382011-03-23 13:27:53 +00001071 }
Fred Isamane0c2b382011-03-23 13:27:53 +00001072
Trond Myklebust9390f422012-03-16 13:52:45 -04001073 /* Clean up on error */
Fred Isaman799ba8d2012-04-20 14:47:38 -04001074 for (j = i; j < fl_cinfo->nbuckets; j++, bucket++) {
1075 if (list_empty(&bucket->committing))
Fred Isamane0c2b382011-03-23 13:27:53 +00001076 continue;
Fred Isamanea2cf222012-04-20 14:47:53 -04001077 nfs_retry_commit(&bucket->committing, bucket->clseg, cinfo);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001078 put_lseg(bucket->clseg);
1079 bucket->clseg = NULL;
Fred Isamane0c2b382011-03-23 13:27:53 +00001080 }
Fred Isamane0c2b382011-03-23 13:27:53 +00001081 /* Caller will clean up entries put on list */
Trond Myklebust9390f422012-03-16 13:52:45 -04001082 return nreq;
Fred Isamane0c2b382011-03-23 13:27:53 +00001083}
1084
1085/* This follows nfs_commit_list pretty closely */
1086static int
1087filelayout_commit_pagelist(struct inode *inode, struct list_head *mds_pages,
Fred Isamanea2cf222012-04-20 14:47:53 -04001088 int how, struct nfs_commit_info *cinfo)
Fred Isamane0c2b382011-03-23 13:27:53 +00001089{
Fred Isaman0b7c0152012-04-20 14:47:39 -04001090 struct nfs_commit_data *data, *tmp;
Fred Isamane0c2b382011-03-23 13:27:53 +00001091 LIST_HEAD(list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001092 unsigned int nreq = 0;
Fred Isamane0c2b382011-03-23 13:27:53 +00001093
1094 if (!list_empty(mds_pages)) {
1095 data = nfs_commitdata_alloc();
Trond Myklebust9390f422012-03-16 13:52:45 -04001096 if (data != NULL) {
1097 data->lseg = NULL;
1098 list_add(&data->pages, &list);
1099 nreq++;
1100 } else
Fred Isamanea2cf222012-04-20 14:47:53 -04001101 nfs_retry_commit(mds_pages, NULL, cinfo);
Fred Isamane0c2b382011-03-23 13:27:53 +00001102 }
1103
Fred Isamanea2cf222012-04-20 14:47:53 -04001104 nreq += alloc_ds_commits(cinfo, &list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001105
1106 if (nreq == 0) {
Fred Isamanf453a542012-04-20 14:47:54 -04001107 cinfo->completion_ops->error_cleanup(NFS_I(inode));
Trond Myklebust9390f422012-03-16 13:52:45 -04001108 goto out;
1109 }
1110
Fred Isamanea2cf222012-04-20 14:47:53 -04001111 atomic_add(nreq, &cinfo->mds->rpcs_out);
Fred Isamane0c2b382011-03-23 13:27:53 +00001112
1113 list_for_each_entry_safe(data, tmp, &list, pages) {
1114 list_del_init(&data->pages);
Fred Isamane0c2b382011-03-23 13:27:53 +00001115 if (!data->lseg) {
Fred Isamanf453a542012-04-20 14:47:54 -04001116 nfs_init_commit(data, mds_pages, NULL, cinfo);
Fred Isaman0b7c0152012-04-20 14:47:39 -04001117 nfs_initiate_commit(NFS_CLIENT(inode), data,
Fred Isamane0c2b382011-03-23 13:27:53 +00001118 data->mds_ops, how);
1119 } else {
Fred Isamanea2cf222012-04-20 14:47:53 -04001120 struct pnfs_commit_bucket *buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001121
Fred Isamanea2cf222012-04-20 14:47:53 -04001122 buckets = cinfo->ds->buckets;
Fred Isamanf453a542012-04-20 14:47:54 -04001123 nfs_init_commit(data, &buckets[data->ds_commit_index].committing, data->lseg, cinfo);
Fred Isamane0c2b382011-03-23 13:27:53 +00001124 filelayout_initiate_commit(data, how);
1125 }
1126 }
Trond Myklebust9390f422012-03-16 13:52:45 -04001127out:
Fred Isamanea2cf222012-04-20 14:47:53 -04001128 cinfo->ds->ncommitting = 0;
Trond Myklebust9390f422012-03-16 13:52:45 -04001129 return PNFS_ATTEMPTED;
Fred Isamane0c2b382011-03-23 13:27:53 +00001130}
1131
Benny Halevy1775bc32011-05-20 13:47:33 +02001132static void
1133filelayout_free_deveiceid_node(struct nfs4_deviceid_node *d)
1134{
1135 nfs4_fl_free_deviceid(container_of(d, struct nfs4_file_layout_dsaddr, id_node));
1136}
1137
Fred Isaman799ba8d2012-04-20 14:47:38 -04001138static struct pnfs_layout_hdr *
1139filelayout_alloc_layout_hdr(struct inode *inode, gfp_t gfp_flags)
1140{
1141 struct nfs4_filelayout *flo;
1142
1143 flo = kzalloc(sizeof(*flo), gfp_flags);
1144 return &flo->generic_hdr;
1145}
1146
1147static void
1148filelayout_free_layout_hdr(struct pnfs_layout_hdr *lo)
1149{
1150 kfree(FILELAYOUT_FROM_HDR(lo));
1151}
1152
Fred Isamanea2cf222012-04-20 14:47:53 -04001153static struct pnfs_ds_commit_info *
1154filelayout_get_ds_info(struct inode *inode)
1155{
1156 return &FILELAYOUT_FROM_HDR(NFS_I(inode)->layout)->commit_info;
1157}
1158
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001159static struct pnfs_layoutdriver_type filelayout_type = {
Christoph Hellwigea8eecd2011-03-01 01:34:21 +00001160 .id = LAYOUT_NFSV4_1_FILES,
1161 .name = "LAYOUT_NFSV4_1_FILES",
1162 .owner = THIS_MODULE,
Fred Isaman799ba8d2012-04-20 14:47:38 -04001163 .alloc_layout_hdr = filelayout_alloc_layout_hdr,
1164 .free_layout_hdr = filelayout_free_layout_hdr,
Christoph Hellwigea8eecd2011-03-01 01:34:21 +00001165 .alloc_lseg = filelayout_alloc_lseg,
1166 .free_lseg = filelayout_free_lseg,
Trond Myklebust1751c362011-06-10 13:30:23 -04001167 .pg_read_ops = &filelayout_pg_read_ops,
1168 .pg_write_ops = &filelayout_pg_write_ops,
Fred Isamanea2cf222012-04-20 14:47:53 -04001169 .get_ds_info = &filelayout_get_ds_info,
Trond Myklebust8dd37752012-03-15 17:16:40 -04001170 .mark_request_commit = filelayout_mark_request_commit,
1171 .clear_request_commit = filelayout_clear_request_commit,
Fred Isamand6d6dc72012-03-08 17:29:35 -05001172 .scan_commit_lists = filelayout_scan_commit_lists,
Fred Isamane0c2b382011-03-23 13:27:53 +00001173 .commit_pagelist = filelayout_commit_pagelist,
Andy Adamsondc70d7b2011-03-01 01:34:19 +00001174 .read_pagelist = filelayout_read_pagelist,
Andy Adamson0382b742011-03-03 15:13:45 +00001175 .write_pagelist = filelayout_write_pagelist,
Benny Halevy1775bc32011-05-20 13:47:33 +02001176 .free_deviceid_node = filelayout_free_deveiceid_node,
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001177};
1178
1179static int __init nfs4filelayout_init(void)
1180{
1181 printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n",
1182 __func__);
1183 return pnfs_register_layoutdriver(&filelayout_type);
1184}
1185
1186static void __exit nfs4filelayout_exit(void)
1187{
1188 printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n",
1189 __func__);
1190 pnfs_unregister_layoutdriver(&filelayout_type);
1191}
1192
J. Bruce Fieldsf85ef692011-07-15 19:18:42 -04001193MODULE_ALIAS("nfs-layouttype4-1");
1194
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001195module_init(nfs4filelayout_init);
1196module_exit(nfs4filelayout_exit);