blob: 0ebc521ea6fc1f7cdc04102f3ad8eca2c7d01626 [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
Trond Myklebust76e697b2012-11-26 14:20:49 -050038#include "nfs4session.h"
Andy Adamson16b374c2010-10-20 00:18:04 -040039#include "internal.h"
Andy Adamson9cb81962012-03-07 10:49:41 -050040#include "delegation.h"
Andy Adamson16b374c2010-10-20 00:18:04 -040041#include "nfs4filelayout.h"
Trond Myklebustcc668ab2013-08-14 15:31:28 -040042#include "nfs4trace.h"
Dean Hildebrand7ab672c2010-10-20 00:18:00 -040043
44#define NFSDBG_FACILITY NFSDBG_PNFS_LD
45
46MODULE_LICENSE("GPL");
47MODULE_AUTHOR("Dean Hildebrand <dhildebz@umich.edu>");
48MODULE_DESCRIPTION("The NFSv4 file layout driver");
49
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +000050#define FILELAYOUT_POLL_RETRY_MAX (15*HZ)
51
Fred Isamancfe7f412011-03-01 01:34:18 +000052static loff_t
53filelayout_get_dense_offset(struct nfs4_filelayout_segment *flseg,
54 loff_t offset)
55{
56 u32 stripe_width = flseg->stripe_unit * flseg->dsaddr->stripe_count;
Chris Metcalf3476f112011-08-11 13:54:28 -070057 u64 stripe_no;
58 u32 rem;
Fred Isamancfe7f412011-03-01 01:34:18 +000059
60 offset -= flseg->pattern_offset;
Chris Metcalf3476f112011-08-11 13:54:28 -070061 stripe_no = div_u64(offset, stripe_width);
62 div_u64_rem(offset, flseg->stripe_unit, &rem);
Fred Isamancfe7f412011-03-01 01:34:18 +000063
Chris Metcalf3476f112011-08-11 13:54:28 -070064 return stripe_no * flseg->stripe_unit + rem;
Fred Isamancfe7f412011-03-01 01:34:18 +000065}
66
67/* This function is used by the layout driver to calculate the
68 * offset of the file on the dserver based on whether the
69 * layout type is STRIPE_DENSE or STRIPE_SPARSE
70 */
71static loff_t
72filelayout_get_dserver_offset(struct pnfs_layout_segment *lseg, loff_t offset)
73{
74 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
75
76 switch (flseg->stripe_type) {
77 case STRIPE_SPARSE:
78 return offset;
79
80 case STRIPE_DENSE:
81 return filelayout_get_dense_offset(flseg, offset);
82 }
83
84 BUG();
85}
86
Anna Schumaker9c7e1b32014-05-06 09:12:26 -040087static void filelayout_reset_write(struct nfs_pgio_data *data)
Andy Adamsone7dd79af2012-04-27 17:53:46 -040088{
89 struct nfs_pgio_header *hdr = data->header;
Andy Adamsone7dd79af2012-04-27 17:53:46 -040090 struct rpc_task *task = &data->task;
91
92 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
93 dprintk("%s Reset task %5u for i/o through MDS "
Niels de Vos1e8968c2013-12-17 18:20:16 +010094 "(req %s/%llu, %u bytes @ offset %llu)\n", __func__,
Andy Adamsone7dd79af2012-04-27 17:53:46 -040095 data->task.tk_pid,
Bryan Schumaker497826a2012-05-22 10:10:03 -040096 hdr->inode->i_sb->s_id,
Niels de Vos1e8968c2013-12-17 18:20:16 +010097 (unsigned long long)NFS_FILEID(hdr->inode),
Andy Adamsone7dd79af2012-04-27 17:53:46 -040098 data->args.count,
99 (unsigned long long)data->args.offset);
100
101 task->tk_status = pnfs_write_done_resend_to_mds(hdr->inode,
102 &hdr->pages,
Benny Halevy78f33272013-02-24 09:55:57 -0500103 hdr->completion_ops,
104 hdr->dreq);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400105 }
106}
107
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400108static void filelayout_reset_read(struct nfs_pgio_data *data)
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400109{
110 struct nfs_pgio_header *hdr = data->header;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400111 struct rpc_task *task = &data->task;
112
113 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
114 dprintk("%s Reset task %5u for i/o through MDS "
Niels de Vos1e8968c2013-12-17 18:20:16 +0100115 "(req %s/%llu, %u bytes @ offset %llu)\n", __func__,
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400116 data->task.tk_pid,
Bryan Schumaker497826a2012-05-22 10:10:03 -0400117 hdr->inode->i_sb->s_id,
Niels de Vos1e8968c2013-12-17 18:20:16 +0100118 (unsigned long long)NFS_FILEID(hdr->inode),
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400119 data->args.count,
120 (unsigned long long)data->args.offset);
121
122 task->tk_status = pnfs_read_done_resend_to_mds(hdr->inode,
123 &hdr->pages,
Benny Halevy78f33272013-02-24 09:55:57 -0500124 hdr->completion_ops,
125 hdr->dreq);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400126 }
127}
128
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400129static void filelayout_fenceme(struct inode *inode, struct pnfs_layout_hdr *lo)
130{
131 if (!test_and_clear_bit(NFS_LAYOUT_RETURN, &lo->plh_flags))
132 return;
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400133 pnfs_return_layout(inode);
134}
135
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000136static int filelayout_async_handle_error(struct rpc_task *task,
137 struct nfs4_state *state,
138 struct nfs_client *clp,
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400139 struct pnfs_layout_segment *lseg)
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000140{
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400141 struct pnfs_layout_hdr *lo = lseg->pls_layout;
142 struct inode *inode = lo->plh_inode;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400143 struct nfs_server *mds_server = NFS_SERVER(inode);
144 struct nfs4_deviceid_node *devid = FILELAYOUT_DEVID_NODE(lseg);
Andy Adamson9cb81962012-03-07 10:49:41 -0500145 struct nfs_client *mds_client = mds_server->nfs_client;
Andy Adamson671fb892012-04-27 17:53:49 -0400146 struct nfs4_slot_table *tbl = &clp->cl_session->fc_slot_table;
Andy Adamson9cb81962012-03-07 10:49:41 -0500147
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000148 if (task->tk_status >= 0)
149 return 0;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000150
151 switch (task->tk_status) {
Andy Adamson9cb81962012-03-07 10:49:41 -0500152 /* MDS state errors */
153 case -NFS4ERR_DELEG_REVOKED:
154 case -NFS4ERR_ADMIN_REVOKED:
155 case -NFS4ERR_BAD_STATEID:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400156 if (state == NULL)
157 break;
Andy Adamson2dc31752012-03-08 11:03:53 -0500158 nfs_remove_bad_delegation(state->inode);
Andy Adamson9cb81962012-03-07 10:49:41 -0500159 case -NFS4ERR_OPENMODE:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400160 if (state == NULL)
161 break;
Trond Myklebust5d422302013-03-14 16:57:48 -0400162 if (nfs4_schedule_stateid_recovery(mds_server, state) < 0)
163 goto out_bad_stateid;
Andy Adamson9cb81962012-03-07 10:49:41 -0500164 goto wait_on_recovery;
165 case -NFS4ERR_EXPIRED:
Trond Myklebust5d422302013-03-14 16:57:48 -0400166 if (state != NULL) {
167 if (nfs4_schedule_stateid_recovery(mds_server, state) < 0)
168 goto out_bad_stateid;
169 }
Andy Adamson9cb81962012-03-07 10:49:41 -0500170 nfs4_schedule_lease_recovery(mds_client);
171 goto wait_on_recovery;
172 /* DS session errors */
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000173 case -NFS4ERR_BADSESSION:
174 case -NFS4ERR_BADSLOT:
175 case -NFS4ERR_BAD_HIGH_SLOT:
176 case -NFS4ERR_DEADSESSION:
177 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
178 case -NFS4ERR_SEQ_FALSE_RETRY:
179 case -NFS4ERR_SEQ_MISORDERED:
180 dprintk("%s ERROR %d, Reset session. Exchangeid "
181 "flags 0x%x\n", __func__, task->tk_status,
182 clp->cl_exchange_flags);
Trond Myklebust9f594792012-05-27 13:02:53 -0400183 nfs4_schedule_session_recovery(clp->cl_session, task->tk_status);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000184 break;
185 case -NFS4ERR_DELAY:
186 case -NFS4ERR_GRACE:
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000187 rpc_delay(task, FILELAYOUT_POLL_RETRY_MAX);
188 break;
Andy Adamsona8a4ae32011-05-03 13:43:03 -0400189 case -NFS4ERR_RETRY_UNCACHED_REP:
190 break;
Andy Adamson041245c2012-04-27 17:53:53 -0400191 /* Invalidate Layout errors */
192 case -NFS4ERR_PNFS_NO_LAYOUT:
193 case -ESTALE: /* mapped NFS4ERR_STALE */
194 case -EBADHANDLE: /* mapped NFS4ERR_BADHANDLE */
195 case -EISDIR: /* mapped NFS4ERR_ISDIR */
196 case -NFS4ERR_FHEXPIRED:
197 case -NFS4ERR_WRONG_TYPE:
198 dprintk("%s Invalid layout error %d\n", __func__,
199 task->tk_status);
200 /*
201 * Destroy layout so new i/o will get a new layout.
202 * Layout will not be destroyed until all current lseg
203 * references are put. Mark layout as invalid to resend failed
204 * i/o and all i/o waiting on the slot table to the MDS until
205 * layout is destroyed and a new valid layout is obtained.
206 */
Andy Adamsond42e7872012-05-22 08:09:28 -0400207 pnfs_destroy_layout(NFS_I(inode));
Andy Adamson041245c2012-04-27 17:53:53 -0400208 rpc_wake_up(&tbl->slot_tbl_waitq);
209 goto reset;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400210 /* RPC connection errors */
211 case -ECONNREFUSED:
212 case -EHOSTDOWN:
213 case -EHOSTUNREACH:
214 case -ENETUNREACH:
215 case -EIO:
216 case -ETIMEDOUT:
217 case -EPIPE:
218 dprintk("%s DS connection error %d\n", __func__,
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000219 task->tk_status);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400220 nfs4_mark_deviceid_unavailable(devid);
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400221 set_bit(NFS_LAYOUT_RETURN, &lo->plh_flags);
Andy Adamson671fb892012-04-27 17:53:49 -0400222 rpc_wake_up(&tbl->slot_tbl_waitq);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400223 /* fall through */
224 default:
Andy Adamson041245c2012-04-27 17:53:53 -0400225reset:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400226 dprintk("%s Retry through MDS. Error %d\n", __func__,
227 task->tk_status);
228 return -NFS4ERR_RESET_TO_MDS;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000229 }
Andy Adamson9cb81962012-03-07 10:49:41 -0500230out:
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000231 task->tk_status = 0;
232 return -EAGAIN;
Trond Myklebust5d422302013-03-14 16:57:48 -0400233out_bad_stateid:
234 task->tk_status = -EIO;
235 return 0;
Andy Adamson9cb81962012-03-07 10:49:41 -0500236wait_on_recovery:
237 rpc_sleep_on(&mds_client->cl_rpcwaitq, task, NULL);
238 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &mds_client->cl_state) == 0)
239 rpc_wake_up_queued_task(&mds_client->cl_rpcwaitq, task);
240 goto out;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000241}
242
243/* NFS_PROTO call done callback routines */
244
245static int filelayout_read_done_cb(struct rpc_task *task,
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400246 struct nfs_pgio_data *data)
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000247{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400248 struct nfs_pgio_header *hdr = data->header;
249 int err;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000250
Trond Myklebustcc668ab2013-08-14 15:31:28 -0400251 trace_nfs4_pnfs_read(data, task->tk_status);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400252 err = filelayout_async_handle_error(task, data->args.context->state,
253 data->ds_clp, hdr->lseg);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000254
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400255 switch (err) {
256 case -NFS4ERR_RESET_TO_MDS:
257 filelayout_reset_read(data);
258 return task->tk_status;
259 case -EAGAIN:
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700260 rpc_restart_call_prepare(task);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000261 return -EAGAIN;
262 }
263
264 return 0;
265}
266
Andy Adamson16b374c2010-10-20 00:18:04 -0400267/*
Andy Adamson863a3c62011-03-23 13:27:54 +0000268 * We reference the rpc_cred of the first WRITE that triggers the need for
269 * a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
270 * rfc5661 is not clear about which credential should be used.
271 */
272static void
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400273filelayout_set_layoutcommit(struct nfs_pgio_data *wdata)
Andy Adamson863a3c62011-03-23 13:27:54 +0000274{
Fred Isamancd841602012-04-20 14:47:44 -0400275 struct nfs_pgio_header *hdr = wdata->header;
276
277 if (FILELAYOUT_LSEG(hdr->lseg)->commit_through_mds ||
Andy Adamson863a3c62011-03-23 13:27:54 +0000278 wdata->res.verf->committed == NFS_FILE_SYNC)
279 return;
280
281 pnfs_set_layoutcommit(wdata);
Fred Isamancd841602012-04-20 14:47:44 -0400282 dprintk("%s ionde %lu pls_end_pos %lu\n", __func__, hdr->inode->i_ino,
283 (unsigned long) NFS_I(hdr->inode)->layout->plh_lwb);
Andy Adamson863a3c62011-03-23 13:27:54 +0000284}
285
Trond Myklebust1dfed272012-09-18 19:51:12 -0400286bool
287filelayout_test_devid_unavailable(struct nfs4_deviceid_node *node)
288{
289 return filelayout_test_devid_invalid(node) ||
290 nfs4_test_deviceid_unavailable(node);
291}
292
293static bool
294filelayout_reset_to_mds(struct pnfs_layout_segment *lseg)
295{
296 struct nfs4_deviceid_node *node = FILELAYOUT_DEVID_NODE(lseg);
297
Trond Myklebust8006bfb2012-09-21 14:48:04 -0400298 return filelayout_test_devid_unavailable(node);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400299}
300
Andy Adamson863a3c62011-03-23 13:27:54 +0000301/*
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000302 * Call ops for the async read/write cases
303 * In the case of dense layouts, the offset needs to be reset to its
304 * original value.
305 */
306static void filelayout_read_prepare(struct rpc_task *task, void *data)
307{
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400308 struct nfs_pgio_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000309
Trond Myklebustc58c8442013-03-18 19:45:14 -0400310 if (unlikely(test_bit(NFS_CONTEXT_BAD, &rdata->args.context->flags))) {
311 rpc_exit(task, -EIO);
312 return;
313 }
Andy Adamson041245c2012-04-27 17:53:53 -0400314 if (filelayout_reset_to_mds(rdata->header->lseg)) {
Andy Adamson0ad2f372012-04-27 17:53:48 -0400315 dprintk("%s task %u reset io to MDS\n", __func__, task->tk_pid);
316 filelayout_reset_read(rdata);
317 rpc_exit(task, 0);
318 return;
319 }
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400320 rdata->pgio_done_cb = filelayout_read_done_cb;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000321
Trond Myklebust9b206142013-03-17 15:52:00 -0400322 if (nfs41_setup_sequence(rdata->ds_clp->cl_session,
Trond Myklebustd9afbd12012-10-22 20:28:44 -0400323 &rdata->args.seq_args,
324 &rdata->res.seq_res,
Trond Myklebust9b206142013-03-17 15:52:00 -0400325 task))
326 return;
Andy Adamson869a9d32014-03-04 12:31:09 -0500327 if (nfs4_set_rw_stateid(&rdata->args.stateid, rdata->args.context,
328 rdata->args.lock_context, FMODE_READ) == -EIO)
329 rpc_exit(task, -EIO); /* lost lock, terminate I/O */
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000330}
331
332static void filelayout_read_call_done(struct rpc_task *task, void *data)
333{
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400334 struct nfs_pgio_data *rdata = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000335
336 dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
337
Andy Adamsonbd4aeff2012-05-22 08:09:27 -0400338 if (test_bit(NFS_IOHDR_REDO, &rdata->header->flags) &&
Andy Adamsonf9c96fc2014-01-29 11:34:38 -0500339 task->tk_status == 0) {
Trond Myklebust905e7da2014-01-29 12:26:57 -0500340 nfs41_sequence_done(task, &rdata->res.seq_res);
Andy Adamson0ad2f372012-04-27 17:53:48 -0400341 return;
Andy Adamsonf9c96fc2014-01-29 11:34:38 -0500342 }
Andy Adamson0ad2f372012-04-27 17:53:48 -0400343
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000344 /* Note this may cause RPC to be resent */
Fred Isamancd841602012-04-20 14:47:44 -0400345 rdata->header->mds_ops->rpc_call_done(task, data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000346}
347
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500348static void filelayout_read_count_stats(struct rpc_task *task, void *data)
349{
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400350 struct nfs_pgio_data *rdata = data;
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500351
Fred Isamancd841602012-04-20 14:47:44 -0400352 rpc_count_iostats(task, NFS_SERVER(rdata->header->inode)->client->cl_metrics);
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500353}
354
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000355static void filelayout_read_release(void *data)
356{
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400357 struct nfs_pgio_data *rdata = data;
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400358 struct pnfs_layout_hdr *lo = rdata->header->lseg->pls_layout;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000359
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400360 filelayout_fenceme(lo->plh_inode, lo);
Andy Adamson996074c2012-05-22 08:09:26 -0400361 nfs_put_client(rdata->ds_clp);
Fred Isamancd841602012-04-20 14:47:44 -0400362 rdata->header->mds_ops->rpc_release(data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000363}
364
Fred Isamana69aef12011-03-03 15:13:47 +0000365static int filelayout_write_done_cb(struct rpc_task *task,
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400366 struct nfs_pgio_data *data)
Fred Isamana69aef12011-03-03 15:13:47 +0000367{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400368 struct nfs_pgio_header *hdr = data->header;
369 int err;
Fred Isamana69aef12011-03-03 15:13:47 +0000370
Trond Myklebustcc668ab2013-08-14 15:31:28 -0400371 trace_nfs4_pnfs_write(data, task->tk_status);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400372 err = filelayout_async_handle_error(task, data->args.context->state,
373 data->ds_clp, hdr->lseg);
374
375 switch (err) {
376 case -NFS4ERR_RESET_TO_MDS:
377 filelayout_reset_write(data);
378 return task->tk_status;
379 case -EAGAIN:
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700380 rpc_restart_call_prepare(task);
Fred Isamana69aef12011-03-03 15:13:47 +0000381 return -EAGAIN;
382 }
383
Andy Adamson863a3c62011-03-23 13:27:54 +0000384 filelayout_set_layoutcommit(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000385 return 0;
386}
387
Fred Isamane0c2b382011-03-23 13:27:53 +0000388/* Fake up some data that will cause nfs_commit_release to retry the writes. */
Fred Isaman0b7c0152012-04-20 14:47:39 -0400389static void prepare_to_resend_writes(struct nfs_commit_data *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000390{
391 struct nfs_page *first = nfs_list_entry(data->pages.next);
392
393 data->task.tk_status = 0;
Trond Myklebust2f2c63b2012-06-08 11:56:09 -0400394 memcpy(&data->verf.verifier, &first->wb_verf,
395 sizeof(data->verf.verifier));
396 data->verf.verifier.data[0]++; /* ensure verifier mismatch */
Fred Isamane0c2b382011-03-23 13:27:53 +0000397}
398
399static int filelayout_commit_done_cb(struct rpc_task *task,
Fred Isaman0b7c0152012-04-20 14:47:39 -0400400 struct nfs_commit_data *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000401{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400402 int err;
Fred Isamane0c2b382011-03-23 13:27:53 +0000403
Trond Myklebustcc668ab2013-08-14 15:31:28 -0400404 trace_nfs4_pnfs_commit_ds(data, task->tk_status);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400405 err = filelayout_async_handle_error(task, NULL, data->ds_clp,
406 data->lseg);
407
408 switch (err) {
409 case -NFS4ERR_RESET_TO_MDS:
410 prepare_to_resend_writes(data);
411 return -EAGAIN;
412 case -EAGAIN:
413 rpc_restart_call_prepare(task);
Fred Isamane0c2b382011-03-23 13:27:53 +0000414 return -EAGAIN;
415 }
416
417 return 0;
418}
419
Fred Isamana69aef12011-03-03 15:13:47 +0000420static void filelayout_write_prepare(struct rpc_task *task, void *data)
421{
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400422 struct nfs_pgio_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000423
Trond Myklebustc58c8442013-03-18 19:45:14 -0400424 if (unlikely(test_bit(NFS_CONTEXT_BAD, &wdata->args.context->flags))) {
425 rpc_exit(task, -EIO);
426 return;
427 }
Andy Adamson041245c2012-04-27 17:53:53 -0400428 if (filelayout_reset_to_mds(wdata->header->lseg)) {
Andy Adamson0ad2f372012-04-27 17:53:48 -0400429 dprintk("%s task %u reset io to MDS\n", __func__, task->tk_pid);
430 filelayout_reset_write(wdata);
431 rpc_exit(task, 0);
432 return;
433 }
Trond Myklebust9b206142013-03-17 15:52:00 -0400434 if (nfs41_setup_sequence(wdata->ds_clp->cl_session,
Trond Myklebustd9afbd12012-10-22 20:28:44 -0400435 &wdata->args.seq_args,
436 &wdata->res.seq_res,
Trond Myklebust9b206142013-03-17 15:52:00 -0400437 task))
438 return;
Andy Adamson869a9d32014-03-04 12:31:09 -0500439 if (nfs4_set_rw_stateid(&wdata->args.stateid, wdata->args.context,
440 wdata->args.lock_context, FMODE_WRITE) == -EIO)
441 rpc_exit(task, -EIO); /* lost lock, terminate I/O */
Fred Isamana69aef12011-03-03 15:13:47 +0000442}
443
444static void filelayout_write_call_done(struct rpc_task *task, void *data)
445{
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400446 struct nfs_pgio_data *wdata = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000447
Andy Adamsonbd4aeff2012-05-22 08:09:27 -0400448 if (test_bit(NFS_IOHDR_REDO, &wdata->header->flags) &&
Andy Adamsonf9c96fc2014-01-29 11:34:38 -0500449 task->tk_status == 0) {
Trond Myklebust905e7da2014-01-29 12:26:57 -0500450 nfs41_sequence_done(task, &wdata->res.seq_res);
Andy Adamson0ad2f372012-04-27 17:53:48 -0400451 return;
Andy Adamsonf9c96fc2014-01-29 11:34:38 -0500452 }
Andy Adamson0ad2f372012-04-27 17:53:48 -0400453
Fred Isamana69aef12011-03-03 15:13:47 +0000454 /* Note this may cause RPC to be resent */
Fred Isamancd841602012-04-20 14:47:44 -0400455 wdata->header->mds_ops->rpc_call_done(task, data);
Fred Isamana69aef12011-03-03 15:13:47 +0000456}
457
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500458static void filelayout_write_count_stats(struct rpc_task *task, void *data)
459{
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400460 struct nfs_pgio_data *wdata = data;
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500461
Fred Isamancd841602012-04-20 14:47:44 -0400462 rpc_count_iostats(task, NFS_SERVER(wdata->header->inode)->client->cl_metrics);
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500463}
464
Fred Isamana69aef12011-03-03 15:13:47 +0000465static void filelayout_write_release(void *data)
466{
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400467 struct nfs_pgio_data *wdata = data;
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400468 struct pnfs_layout_hdr *lo = wdata->header->lseg->pls_layout;
Fred Isamana69aef12011-03-03 15:13:47 +0000469
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400470 filelayout_fenceme(lo->plh_inode, lo);
Andy Adamson996074c2012-05-22 08:09:26 -0400471 nfs_put_client(wdata->ds_clp);
Fred Isamancd841602012-04-20 14:47:44 -0400472 wdata->header->mds_ops->rpc_release(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000473}
474
Fred Isaman0b7c0152012-04-20 14:47:39 -0400475static void filelayout_commit_prepare(struct rpc_task *task, void *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000476{
Fred Isaman0b7c0152012-04-20 14:47:39 -0400477 struct nfs_commit_data *wdata = data;
Fred Isamane0c2b382011-03-23 13:27:53 +0000478
Trond Myklebustd9afbd12012-10-22 20:28:44 -0400479 nfs41_setup_sequence(wdata->ds_clp->cl_session,
480 &wdata->args.seq_args,
481 &wdata->res.seq_res,
482 task);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400483}
484
485static void filelayout_write_commit_done(struct rpc_task *task, void *data)
486{
487 struct nfs_commit_data *wdata = data;
488
489 /* Note this may cause RPC to be resent */
490 wdata->mds_ops->rpc_call_done(task, data);
491}
492
493static void filelayout_commit_count_stats(struct rpc_task *task, void *data)
494{
495 struct nfs_commit_data *cdata = data;
496
497 rpc_count_iostats(task, NFS_SERVER(cdata->inode)->client->cl_metrics);
498}
499
500static void filelayout_commit_release(void *calldata)
501{
502 struct nfs_commit_data *data = calldata;
503
Fred Isamanf453a542012-04-20 14:47:54 -0400504 data->completion_ops->completion(data);
Trond Myklebust9369a432012-09-18 20:57:08 -0400505 pnfs_put_lseg(data->lseg);
Andy Adamson3a7936c2012-04-27 17:53:51 -0400506 nfs_put_client(data->ds_clp);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400507 nfs_commitdata_release(data);
Fred Isamane0c2b382011-03-23 13:27:53 +0000508}
509
Trond Myklebust17280172012-03-11 13:11:00 -0400510static const struct rpc_call_ops filelayout_read_call_ops = {
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000511 .rpc_call_prepare = filelayout_read_prepare,
512 .rpc_call_done = filelayout_read_call_done,
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500513 .rpc_count_stats = filelayout_read_count_stats,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000514 .rpc_release = filelayout_read_release,
515};
516
Trond Myklebust17280172012-03-11 13:11:00 -0400517static const struct rpc_call_ops filelayout_write_call_ops = {
Fred Isamana69aef12011-03-03 15:13:47 +0000518 .rpc_call_prepare = filelayout_write_prepare,
519 .rpc_call_done = filelayout_write_call_done,
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500520 .rpc_count_stats = filelayout_write_count_stats,
Fred Isamana69aef12011-03-03 15:13:47 +0000521 .rpc_release = filelayout_write_release,
522};
523
Trond Myklebust17280172012-03-11 13:11:00 -0400524static const struct rpc_call_ops filelayout_commit_call_ops = {
Fred Isaman0b7c0152012-04-20 14:47:39 -0400525 .rpc_call_prepare = filelayout_commit_prepare,
526 .rpc_call_done = filelayout_write_commit_done,
527 .rpc_count_stats = filelayout_commit_count_stats,
Fred Isamane0c2b382011-03-23 13:27:53 +0000528 .rpc_release = filelayout_commit_release,
529};
530
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000531static enum pnfs_try_status
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400532filelayout_read_pagelist(struct nfs_pgio_data *data)
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000533{
Fred Isamancd841602012-04-20 14:47:44 -0400534 struct nfs_pgio_header *hdr = data->header;
535 struct pnfs_layout_segment *lseg = hdr->lseg;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000536 struct nfs4_pnfs_ds *ds;
Andy Adamson0e201622013-09-06 14:14:00 -0400537 struct rpc_clnt *ds_clnt;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000538 loff_t offset = data->args.offset;
539 u32 j, idx;
540 struct nfs_fh *fh;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000541
542 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
Fred Isamancd841602012-04-20 14:47:44 -0400543 __func__, hdr->inode->i_ino,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000544 data->args.pgbase, (size_t)data->args.count, offset);
545
546 /* Retrieve the correct rpc_client for the byte range */
547 j = nfs4_fl_calc_j_index(lseg, offset);
548 idx = nfs4_fl_calc_ds_index(lseg, j);
549 ds = nfs4_fl_prepare_ds(lseg, idx);
Andy Adamson90fecfc2012-04-27 17:53:43 -0400550 if (!ds)
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000551 return PNFS_NOT_ATTEMPTED;
Andy Adamson0e201622013-09-06 14:14:00 -0400552
553 ds_clnt = nfs4_find_or_create_ds_client(ds->ds_clp, hdr->inode);
554 if (IS_ERR(ds_clnt))
555 return PNFS_NOT_ATTEMPTED;
556
Andy Adamson3a7936c2012-04-27 17:53:51 -0400557 dprintk("%s USE DS: %s cl_count %d\n", __func__,
558 ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count));
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000559
560 /* No multipath support. Use first DS */
Andy Adamson3a7936c2012-04-27 17:53:51 -0400561 atomic_inc(&ds->ds_clp->cl_count);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000562 data->ds_clp = ds->ds_clp;
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400563 data->ds_idx = idx;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000564 fh = nfs4_fl_select_ds_fh(lseg, j);
565 if (fh)
566 data->args.fh = fh;
567
568 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
569 data->mds_offset = offset;
570
571 /* Perform an asynchronous read to ds */
Anna Schumaker1ed26f32014-05-06 09:12:37 -0400572 nfs_initiate_pgio(ds_clnt, data,
573 &filelayout_read_call_ops, 0, RPC_TASK_SOFTCONN);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000574 return PNFS_ATTEMPTED;
575}
576
Fred Isamana69aef12011-03-03 15:13:47 +0000577/* Perform async writes. */
Andy Adamson0382b742011-03-03 15:13:45 +0000578static enum pnfs_try_status
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400579filelayout_write_pagelist(struct nfs_pgio_data *data, int sync)
Andy Adamson0382b742011-03-03 15:13:45 +0000580{
Fred Isamancd841602012-04-20 14:47:44 -0400581 struct nfs_pgio_header *hdr = data->header;
582 struct pnfs_layout_segment *lseg = hdr->lseg;
Fred Isamana69aef12011-03-03 15:13:47 +0000583 struct nfs4_pnfs_ds *ds;
Andy Adamson0e201622013-09-06 14:14:00 -0400584 struct rpc_clnt *ds_clnt;
Fred Isamana69aef12011-03-03 15:13:47 +0000585 loff_t offset = data->args.offset;
586 u32 j, idx;
587 struct nfs_fh *fh;
Fred Isamana69aef12011-03-03 15:13:47 +0000588
589 /* Retrieve the correct rpc_client for the byte range */
590 j = nfs4_fl_calc_j_index(lseg, offset);
591 idx = nfs4_fl_calc_ds_index(lseg, j);
592 ds = nfs4_fl_prepare_ds(lseg, idx);
Andy Adamson90fecfc2012-04-27 17:53:43 -0400593 if (!ds)
Fred Isamana69aef12011-03-03 15:13:47 +0000594 return PNFS_NOT_ATTEMPTED;
Andy Adamson0e201622013-09-06 14:14:00 -0400595
596 ds_clnt = nfs4_find_or_create_ds_client(ds->ds_clp, hdr->inode);
597 if (IS_ERR(ds_clnt))
598 return PNFS_NOT_ATTEMPTED;
599
Andy Adamson3a7936c2012-04-27 17:53:51 -0400600 dprintk("%s ino %lu sync %d req %Zu@%llu DS: %s cl_count %d\n",
601 __func__, hdr->inode->i_ino, sync, (size_t) data->args.count,
602 offset, ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count));
Fred Isamana69aef12011-03-03 15:13:47 +0000603
Anna Schumaker9c7e1b32014-05-06 09:12:26 -0400604 data->pgio_done_cb = filelayout_write_done_cb;
Andy Adamson3a7936c2012-04-27 17:53:51 -0400605 atomic_inc(&ds->ds_clp->cl_count);
Fred Isamana69aef12011-03-03 15:13:47 +0000606 data->ds_clp = ds->ds_clp;
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400607 data->ds_idx = idx;
Fred Isamana69aef12011-03-03 15:13:47 +0000608 fh = nfs4_fl_select_ds_fh(lseg, j);
609 if (fh)
610 data->args.fh = fh;
611 /*
612 * Get the file offset on the dserver. Set the write offset to
613 * this offset and save the original offset.
614 */
615 data->args.offset = filelayout_get_dserver_offset(lseg, offset);
Fred Isamana69aef12011-03-03 15:13:47 +0000616
617 /* Perform an asynchronous write */
Anna Schumaker1ed26f32014-05-06 09:12:37 -0400618 nfs_initiate_pgio(ds_clnt, data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400619 &filelayout_write_call_ops, sync,
620 RPC_TASK_SOFTCONN);
Fred Isamana69aef12011-03-03 15:13:47 +0000621 return PNFS_ATTEMPTED;
Andy Adamson0382b742011-03-03 15:13:45 +0000622}
623
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000624/*
Andy Adamson16b374c2010-10-20 00:18:04 -0400625 * filelayout_check_layout()
626 *
627 * Make sure layout segment parameters are sane WRT the device.
628 * At this point no generic layer initialization of the lseg has occurred,
629 * and nothing has been added to the layout_hdr cache.
630 *
631 */
632static int
633filelayout_check_layout(struct pnfs_layout_hdr *lo,
634 struct nfs4_filelayout_segment *fl,
635 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400636 struct nfs4_deviceid *id,
637 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400638{
Benny Halevya1eaecb2011-05-19 22:14:47 -0400639 struct nfs4_deviceid_node *d;
Andy Adamson16b374c2010-10-20 00:18:04 -0400640 struct nfs4_file_layout_dsaddr *dsaddr;
641 int status = -EINVAL;
Fred Isamanb7edfaa2011-01-06 11:36:21 +0000642 struct nfs_server *nfss = NFS_SERVER(lo->plh_inode);
Andy Adamson16b374c2010-10-20 00:18:04 -0400643
644 dprintk("--> %s\n", __func__);
645
Andy Adamson7c24d942011-06-13 18:22:38 -0400646 /* FIXME: remove this check when layout segment support is added */
647 if (lgr->range.offset != 0 ||
648 lgr->range.length != NFS4_MAX_UINT64) {
649 dprintk("%s Only whole file layouts supported. Use MDS i/o\n",
650 __func__);
651 goto out;
652 }
653
Andy Adamson16b374c2010-10-20 00:18:04 -0400654 if (fl->pattern_offset > lgr->range.offset) {
Jim Rees3b6445a2011-02-22 19:31:57 -0500655 dprintk("%s pattern_offset %lld too large\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400656 __func__, fl->pattern_offset);
657 goto out;
658 }
659
Benny Halevy75247af2011-02-22 15:56:01 -0800660 if (!fl->stripe_unit || fl->stripe_unit % PAGE_SIZE) {
661 dprintk("%s Invalid stripe unit (%u)\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400662 __func__, fl->stripe_unit);
663 goto out;
664 }
665
666 /* find and reference the deviceid */
Benny Halevy35c8bb52011-05-24 18:04:02 +0300667 d = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode)->pnfs_curr_ld,
668 NFS_SERVER(lo->plh_inode)->nfs_client, id);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400669 if (d == NULL) {
Trond Myklebustcd5875f2013-05-20 11:42:54 -0400670 dsaddr = filelayout_get_device_info(lo->plh_inode, id,
671 lo->plh_lc_cred, gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400672 if (dsaddr == NULL)
673 goto out;
Benny Halevya1eaecb2011-05-19 22:14:47 -0400674 } else
675 dsaddr = container_of(d, struct nfs4_file_layout_dsaddr, id_node);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400676 /* Found deviceid is unavailable */
677 if (filelayout_test_devid_unavailable(&dsaddr->id_node))
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400678 goto out_put;
679
Andy Adamson16b374c2010-10-20 00:18:04 -0400680 fl->dsaddr = dsaddr;
681
Chuck Levere4149662011-10-25 12:18:03 -0400682 if (fl->first_stripe_index >= dsaddr->stripe_count) {
683 dprintk("%s Bad first_stripe_index %u\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400684 __func__, fl->first_stripe_index);
685 goto out_put;
686 }
687
688 if ((fl->stripe_type == STRIPE_SPARSE &&
689 fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) ||
690 (fl->stripe_type == STRIPE_DENSE &&
691 fl->num_fh != dsaddr->stripe_count)) {
692 dprintk("%s num_fh %u not valid for given packing\n",
693 __func__, fl->num_fh);
694 goto out_put;
695 }
696
697 if (fl->stripe_unit % nfss->rsize || fl->stripe_unit % nfss->wsize) {
698 dprintk("%s Stripe unit (%u) not aligned with rsize %u "
699 "wsize %u\n", __func__, fl->stripe_unit, nfss->rsize,
700 nfss->wsize);
701 }
702
703 status = 0;
704out:
705 dprintk("--> %s returns %d\n", __func__, status);
706 return status;
707out_put:
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000708 nfs4_fl_put_deviceid(dsaddr);
Andy Adamson16b374c2010-10-20 00:18:04 -0400709 goto out;
710}
711
712static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl)
713{
714 int i;
715
716 for (i = 0; i < fl->num_fh; i++) {
717 if (!fl->fh_array[i])
718 break;
719 kfree(fl->fh_array[i]);
720 }
721 kfree(fl->fh_array);
722 fl->fh_array = NULL;
723}
724
725static void
726_filelayout_free_lseg(struct nfs4_filelayout_segment *fl)
727{
728 filelayout_free_fh_array(fl);
729 kfree(fl);
730}
731
732static int
733filelayout_decode_layout(struct pnfs_layout_hdr *flo,
734 struct nfs4_filelayout_segment *fl,
735 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400736 struct nfs4_deviceid *id,
737 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400738{
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400739 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400740 struct xdr_buf buf;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400741 struct page *scratch;
742 __be32 *p;
Andy Adamson16b374c2010-10-20 00:18:04 -0400743 uint32_t nfl_util;
744 int i;
745
746 dprintk("%s: set_layout_map Begin\n", __func__);
747
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400748 scratch = alloc_page(gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400749 if (!scratch)
750 return -ENOMEM;
751
Benny Halevyf7da7a12011-05-19 14:16:47 -0400752 xdr_init_decode_pages(&stream, &buf, lgr->layoutp->pages, lgr->layoutp->len);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400753 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
754
755 /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8),
756 * num_fh (4) */
757 p = xdr_inline_decode(&stream, NFS4_DEVICEID4_SIZE + 20);
758 if (unlikely(!p))
759 goto out_err;
760
Andy Adamson16b374c2010-10-20 00:18:04 -0400761 memcpy(id, p, sizeof(*id));
762 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400763 nfs4_print_deviceid(id);
Andy Adamson16b374c2010-10-20 00:18:04 -0400764
765 nfl_util = be32_to_cpup(p++);
766 if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS)
767 fl->commit_through_mds = 1;
768 if (nfl_util & NFL4_UFLG_DENSE)
769 fl->stripe_type = STRIPE_DENSE;
770 else
771 fl->stripe_type = STRIPE_SPARSE;
772 fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK;
773
774 fl->first_stripe_index = be32_to_cpup(p++);
775 p = xdr_decode_hyper(p, &fl->pattern_offset);
776 fl->num_fh = be32_to_cpup(p++);
777
778 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
779 __func__, nfl_util, fl->num_fh, fl->first_stripe_index,
780 fl->pattern_offset);
781
Andy Adamsoncec765c2011-06-13 18:36:17 -0400782 /* Note that a zero value for num_fh is legal for STRIPE_SPARSE.
783 * Futher checking is done in filelayout_check_layout */
Chuck Levere4149662011-10-25 12:18:03 -0400784 if (fl->num_fh >
Andy Adamsoncec765c2011-06-13 18:36:17 -0400785 max(NFS4_PNFS_MAX_STRIPE_CNT, NFS4_PNFS_MAX_MULTI_CNT))
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400786 goto out_err;
787
Andy Adamsoncec765c2011-06-13 18:36:17 -0400788 if (fl->num_fh > 0) {
Trond Myklebust1813bad2012-10-11 14:36:52 -0400789 fl->fh_array = kcalloc(fl->num_fh, sizeof(fl->fh_array[0]),
Andy Adamsoncec765c2011-06-13 18:36:17 -0400790 gfp_flags);
791 if (!fl->fh_array)
792 goto out_err;
793 }
Andy Adamson16b374c2010-10-20 00:18:04 -0400794
795 for (i = 0; i < fl->num_fh; i++) {
796 /* Do we want to use a mempool here? */
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400797 fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400798 if (!fl->fh_array[i])
799 goto out_err_free;
800
801 p = xdr_inline_decode(&stream, 4);
802 if (unlikely(!p))
803 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400804 fl->fh_array[i]->size = be32_to_cpup(p++);
805 if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) {
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -0500806 printk(KERN_ERR "NFS: Too big fh %d received %d\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400807 i, fl->fh_array[i]->size);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400808 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400809 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400810
811 p = xdr_inline_decode(&stream, fl->fh_array[i]->size);
812 if (unlikely(!p))
813 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400814 memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size);
Andy Adamson16b374c2010-10-20 00:18:04 -0400815 dprintk("DEBUG: %s: fh len %d\n", __func__,
816 fl->fh_array[i]->size);
817 }
818
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400819 __free_page(scratch);
Andy Adamson16b374c2010-10-20 00:18:04 -0400820 return 0;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400821
822out_err_free:
823 filelayout_free_fh_array(fl);
824out_err:
825 __free_page(scratch);
826 return -EIO;
Andy Adamson16b374c2010-10-20 00:18:04 -0400827}
828
Fred Isamanc8795132011-03-23 13:27:49 +0000829static void
830filelayout_free_lseg(struct pnfs_layout_segment *lseg)
831{
832 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
833
834 dprintk("--> %s\n", __func__);
835 nfs4_fl_put_deviceid(fl->dsaddr);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400836 /* This assumes a single RW lseg */
837 if (lseg->pls_range.iomode == IOMODE_RW) {
838 struct nfs4_filelayout *flo;
839
840 flo = FILELAYOUT_FROM_HDR(lseg->pls_layout);
841 flo->commit_info.nbuckets = 0;
842 kfree(flo->commit_info.buckets);
843 flo->commit_info.buckets = NULL;
844 }
Fred Isamanc8795132011-03-23 13:27:49 +0000845 _filelayout_free_lseg(fl);
846}
847
Fred Isaman799ba8d2012-04-20 14:47:38 -0400848static int
849filelayout_alloc_commit_info(struct pnfs_layout_segment *lseg,
Fred Isamanea2cf222012-04-20 14:47:53 -0400850 struct nfs_commit_info *cinfo,
Fred Isaman799ba8d2012-04-20 14:47:38 -0400851 gfp_t gfp_flags)
852{
853 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
Fred Isamanea2cf222012-04-20 14:47:53 -0400854 struct pnfs_commit_bucket *buckets;
Weston Andros Adamsondd7663e2014-05-15 11:56:49 -0400855 int size, i;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400856
857 if (fl->commit_through_mds)
858 return 0;
Weston Andros Adamsondd7663e2014-05-15 11:56:49 -0400859
860 size = (fl->stripe_type == STRIPE_SPARSE) ?
861 fl->dsaddr->ds_num : fl->dsaddr->stripe_count;
862
863 if (cinfo->ds->nbuckets >= size) {
Fred Isaman799ba8d2012-04-20 14:47:38 -0400864 /* This assumes there is only one IOMODE_RW lseg. What
865 * we really want to do is have a layout_hdr level
866 * dictionary of <multipath_list4, fh> keys, each
867 * associated with a struct list_head, populated by calls
868 * to filelayout_write_pagelist().
869 * */
870 return 0;
871 }
872
Fred Isamanea2cf222012-04-20 14:47:53 -0400873 buckets = kcalloc(size, sizeof(struct pnfs_commit_bucket),
Fred Isaman799ba8d2012-04-20 14:47:38 -0400874 gfp_flags);
875 if (!buckets)
876 return -ENOMEM;
Weston Andros Adamsondd7663e2014-05-15 11:56:49 -0400877 for (i = 0; i < size; i++) {
878 INIT_LIST_HEAD(&buckets[i].written);
879 INIT_LIST_HEAD(&buckets[i].committing);
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400880 /* mark direct verifier as unset */
881 buckets[i].direct_verf.committed = NFS_INVALID_STABLE_HOW;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400882 }
Weston Andros Adamsondd7663e2014-05-15 11:56:49 -0400883
884 spin_lock(cinfo->lock);
885 if (cinfo->ds->nbuckets >= size)
886 goto out;
887 for (i = 0; i < cinfo->ds->nbuckets; i++) {
888 list_splice(&cinfo->ds->buckets[i].written,
889 &buckets[i].written);
890 list_splice(&cinfo->ds->buckets[i].committing,
891 &buckets[i].committing);
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400892 buckets[i].direct_verf.committed =
893 cinfo->ds->buckets[i].direct_verf.committed;
Weston Andros Adamsondd7663e2014-05-15 11:56:49 -0400894 buckets[i].wlseg = cinfo->ds->buckets[i].wlseg;
895 buckets[i].clseg = cinfo->ds->buckets[i].clseg;
896 }
897 swap(cinfo->ds->buckets, buckets);
898 cinfo->ds->nbuckets = size;
899out:
900 spin_unlock(cinfo->lock);
901 kfree(buckets);
902 return 0;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400903}
904
Andy Adamson16b374c2010-10-20 00:18:04 -0400905static struct pnfs_layout_segment *
906filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400907 struct nfs4_layoutget_res *lgr,
908 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400909{
910 struct nfs4_filelayout_segment *fl;
911 int rc;
912 struct nfs4_deviceid id;
913
914 dprintk("--> %s\n", __func__);
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400915 fl = kzalloc(sizeof(*fl), gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400916 if (!fl)
917 return NULL;
918
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400919 rc = filelayout_decode_layout(layoutid, fl, lgr, &id, gfp_flags);
920 if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id, gfp_flags)) {
Andy Adamson16b374c2010-10-20 00:18:04 -0400921 _filelayout_free_lseg(fl);
922 return NULL;
923 }
924 return &fl->generic_hdr;
925}
926
Fred Isaman94ad1c82011-03-01 01:34:14 +0000927/*
928 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
929 *
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400930 * Return 0 if @req cannot be coalesced into @pgio, otherwise return the number
931 * of bytes (maximum @req->wb_bytes) that can be coalesced.
Fred Isaman94ad1c82011-03-01 01:34:14 +0000932 */
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400933static size_t
Fred Isaman94ad1c82011-03-01 01:34:14 +0000934filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
935 struct nfs_page *req)
936{
Weston Andros Adamson0f9c429e2014-05-15 11:56:51 -0400937 unsigned int size;
Fred Isaman94ad1c82011-03-01 01:34:14 +0000938 u64 p_stripe, r_stripe;
939 u32 stripe_unit;
940
Weston Andros Adamson0f9c429e2014-05-15 11:56:51 -0400941 /* calls nfs_generic_pg_test */
942 size = pnfs_generic_pg_test(pgio, prev, req);
943 if (!size)
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400944 return 0;
Benny Halevy89a58e32011-05-25 20:54:40 +0300945
Weston Andros Adamson0f9c429e2014-05-15 11:56:51 -0400946 if (prev) {
947 p_stripe = (u64)req_offset(prev);
948 r_stripe = (u64)req_offset(req);
949 stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit;
Weston Andros Adamsonab75e412014-05-15 11:56:44 -0400950
Weston Andros Adamson0f9c429e2014-05-15 11:56:51 -0400951 do_div(p_stripe, stripe_unit);
952 do_div(r_stripe, stripe_unit);
Fred Isaman94ad1c82011-03-01 01:34:14 +0000953
Weston Andros Adamson0f9c429e2014-05-15 11:56:51 -0400954 if (p_stripe != r_stripe)
955 return 0;
956 }
957 return min(size, req->wb_bytes);
Fred Isaman94ad1c82011-03-01 01:34:14 +0000958}
959
Trond Myklebust17280172012-03-11 13:11:00 -0400960static void
Andy Adamson7c24d942011-06-13 18:22:38 -0400961filelayout_pg_init_read(struct nfs_pageio_descriptor *pgio,
962 struct nfs_page *req)
963{
Trond Myklebustbc5a89b2012-10-15 14:58:04 -0400964 WARN_ON_ONCE(pgio->pg_lseg != NULL);
Andy Adamson7c24d942011-06-13 18:22:38 -0400965
Fred Isaman1825a0d2012-04-20 19:55:31 -0400966 if (req->wb_offset != req->wb_pgbase) {
967 /*
968 * Handling unaligned pages is difficult, because have to
969 * somehow split a req in two in certain cases in the
970 * pg.test code. Avoid this by just not using pnfs
971 * in this case.
972 */
973 nfs_pageio_reset_read_mds(pgio);
974 return;
975 }
Andy Adamson7c24d942011-06-13 18:22:38 -0400976 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
977 req->wb_context,
978 0,
979 NFS4_MAX_UINT64,
980 IOMODE_READ,
981 GFP_KERNEL);
982 /* If no lseg, fall back to read through mds */
983 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -0400984 nfs_pageio_reset_read_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400985}
986
Trond Myklebust17280172012-03-11 13:11:00 -0400987static void
Andy Adamson7c24d942011-06-13 18:22:38 -0400988filelayout_pg_init_write(struct nfs_pageio_descriptor *pgio,
989 struct nfs_page *req)
990{
Fred Isamanea2cf222012-04-20 14:47:53 -0400991 struct nfs_commit_info cinfo;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400992 int status;
993
Trond Myklebustbc5a89b2012-10-15 14:58:04 -0400994 WARN_ON_ONCE(pgio->pg_lseg != NULL);
Andy Adamson7c24d942011-06-13 18:22:38 -0400995
Fred Isaman1825a0d2012-04-20 19:55:31 -0400996 if (req->wb_offset != req->wb_pgbase)
997 goto out_mds;
Andy Adamson7c24d942011-06-13 18:22:38 -0400998 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
999 req->wb_context,
1000 0,
1001 NFS4_MAX_UINT64,
1002 IOMODE_RW,
1003 GFP_NOFS);
1004 /* If no lseg, fall back to write through mds */
1005 if (pgio->pg_lseg == NULL)
Fred Isaman799ba8d2012-04-20 14:47:38 -04001006 goto out_mds;
Fred Isamanea2cf222012-04-20 14:47:53 -04001007 nfs_init_cinfo(&cinfo, pgio->pg_inode, pgio->pg_dreq);
1008 status = filelayout_alloc_commit_info(pgio->pg_lseg, &cinfo, GFP_NOFS);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001009 if (status < 0) {
Trond Myklebust9369a432012-09-18 20:57:08 -04001010 pnfs_put_lseg(pgio->pg_lseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001011 pgio->pg_lseg = NULL;
1012 goto out_mds;
1013 }
1014 return;
1015out_mds:
1016 nfs_pageio_reset_write_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -04001017}
1018
Trond Myklebust1751c362011-06-10 13:30:23 -04001019static const struct nfs_pageio_ops filelayout_pg_read_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -04001020 .pg_init = filelayout_pg_init_read,
Trond Myklebust1751c362011-06-10 13:30:23 -04001021 .pg_test = filelayout_pg_test,
Trond Myklebust493292d2011-07-13 15:58:28 -04001022 .pg_doio = pnfs_generic_pg_readpages,
Trond Myklebust1751c362011-06-10 13:30:23 -04001023};
1024
1025static const struct nfs_pageio_ops filelayout_pg_write_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -04001026 .pg_init = filelayout_pg_init_write,
Trond Myklebust1751c362011-06-10 13:30:23 -04001027 .pg_test = filelayout_pg_test,
Trond Myklebustdce81292011-07-13 15:59:19 -04001028 .pg_doio = pnfs_generic_pg_writepages,
Trond Myklebust1751c362011-06-10 13:30:23 -04001029};
1030
Fred Isamane0c2b382011-03-23 13:27:53 +00001031static u32 select_bucket_index(struct nfs4_filelayout_segment *fl, u32 j)
1032{
1033 if (fl->stripe_type == STRIPE_SPARSE)
1034 return nfs4_fl_calc_ds_index(&fl->generic_hdr, j);
1035 else
1036 return j;
1037}
1038
Fred Isamand6d6dc72012-03-08 17:29:35 -05001039/* The generic layer is about to remove the req from the commit list.
1040 * If this will make the bucket empty, it will need to put the lseg reference.
Fred Isamand6d6dc72012-03-08 17:29:35 -05001041 */
Trond Myklebust8dd37752012-03-15 17:16:40 -04001042static void
Fred Isamanea2cf222012-04-20 14:47:53 -04001043filelayout_clear_request_commit(struct nfs_page *req,
1044 struct nfs_commit_info *cinfo)
Fred Isamane0c2b382011-03-23 13:27:53 +00001045{
Trond Myklebust8dd37752012-03-15 17:16:40 -04001046 struct pnfs_layout_segment *freeme = NULL;
Trond Myklebust8dd37752012-03-15 17:16:40 -04001047
Fred Isamanea2cf222012-04-20 14:47:53 -04001048 spin_lock(cinfo->lock);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001049 if (!test_and_clear_bit(PG_COMMIT_TO_DS, &req->wb_flags))
1050 goto out;
Fred Isamanea2cf222012-04-20 14:47:53 -04001051 cinfo->ds->nwritten--;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001052 if (list_is_singular(&req->wb_list)) {
Fred Isamanea2cf222012-04-20 14:47:53 -04001053 struct pnfs_commit_bucket *bucket;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001054
Fred Isaman799ba8d2012-04-20 14:47:38 -04001055 bucket = list_first_entry(&req->wb_list,
Fred Isamanea2cf222012-04-20 14:47:53 -04001056 struct pnfs_commit_bucket,
Fred Isaman799ba8d2012-04-20 14:47:38 -04001057 written);
1058 freeme = bucket->wlseg;
1059 bucket->wlseg = NULL;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001060 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001061out:
Fred Isamanea2cf222012-04-20 14:47:53 -04001062 nfs_request_remove_commit_list(req, cinfo);
1063 spin_unlock(cinfo->lock);
Trond Myklebust9369a432012-09-18 20:57:08 -04001064 pnfs_put_lseg(freeme);
Fred Isamand6d6dc72012-03-08 17:29:35 -05001065}
1066
1067static struct list_head *
1068filelayout_choose_commit_list(struct nfs_page *req,
Fred Isamanea2cf222012-04-20 14:47:53 -04001069 struct pnfs_layout_segment *lseg,
1070 struct nfs_commit_info *cinfo)
Fred Isamand6d6dc72012-03-08 17:29:35 -05001071{
Fred Isamane0c2b382011-03-23 13:27:53 +00001072 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
1073 u32 i, j;
1074 struct list_head *list;
Fred Isamanea2cf222012-04-20 14:47:53 -04001075 struct pnfs_commit_bucket *buckets;
Fred Isamane0c2b382011-03-23 13:27:53 +00001076
Fred Isamand6d6dc72012-03-08 17:29:35 -05001077 if (fl->commit_through_mds)
Fred Isamanea2cf222012-04-20 14:47:53 -04001078 return &cinfo->mds->list;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001079
Fred Isamane0c2b382011-03-23 13:27:53 +00001080 /* Note that we are calling nfs4_fl_calc_j_index on each page
1081 * that ends up being committed to a data server. An attractive
1082 * alternative is to add a field to nfs_write_data and nfs_page
1083 * to store the value calculated in filelayout_write_pagelist
1084 * and just use that here.
1085 */
Fred Isamanb5542842012-04-20 14:47:43 -04001086 j = nfs4_fl_calc_j_index(lseg, req_offset(req));
Fred Isamane0c2b382011-03-23 13:27:53 +00001087 i = select_bucket_index(fl, j);
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001088 spin_lock(cinfo->lock);
Fred Isamanea2cf222012-04-20 14:47:53 -04001089 buckets = cinfo->ds->buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001090 list = &buckets[i].written;
Fred Isamane0c2b382011-03-23 13:27:53 +00001091 if (list_empty(list)) {
Fred Isamand6d6dc72012-03-08 17:29:35 -05001092 /* Non-empty buckets hold a reference on the lseg. That ref
1093 * is normally transferred to the COMMIT call and released
1094 * there. It could also be released if the last req is pulled
1095 * off due to a rewrite, in which case it will be done in
Fred Isaman799ba8d2012-04-20 14:47:38 -04001096 * filelayout_clear_request_commit
Fred Isamand6d6dc72012-03-08 17:29:35 -05001097 */
Trond Myklebust9369a432012-09-18 20:57:08 -04001098 buckets[i].wlseg = pnfs_get_lseg(lseg);
Fred Isamane0c2b382011-03-23 13:27:53 +00001099 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001100 set_bit(PG_COMMIT_TO_DS, &req->wb_flags);
Fred Isamanea2cf222012-04-20 14:47:53 -04001101 cinfo->ds->nwritten++;
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001102 spin_unlock(cinfo->lock);
Fred Isamane0c2b382011-03-23 13:27:53 +00001103 return list;
1104}
1105
Trond Myklebust8dd37752012-03-15 17:16:40 -04001106static void
1107filelayout_mark_request_commit(struct nfs_page *req,
Fred Isamanea2cf222012-04-20 14:47:53 -04001108 struct pnfs_layout_segment *lseg,
1109 struct nfs_commit_info *cinfo)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001110{
1111 struct list_head *list;
1112
Fred Isamanea2cf222012-04-20 14:47:53 -04001113 list = filelayout_choose_commit_list(req, lseg, cinfo);
1114 nfs_request_add_commit_list(req, list, cinfo);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001115}
1116
Fred Isamane0c2b382011-03-23 13:27:53 +00001117static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i)
1118{
1119 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
1120
1121 if (flseg->stripe_type == STRIPE_SPARSE)
1122 return i;
1123 else
1124 return nfs4_fl_calc_ds_index(lseg, i);
1125}
1126
1127static struct nfs_fh *
1128select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i)
1129{
1130 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
1131
1132 if (flseg->stripe_type == STRIPE_SPARSE) {
1133 if (flseg->num_fh == 1)
1134 i = 0;
1135 else if (flseg->num_fh == 0)
1136 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
1137 return NULL;
1138 }
1139 return flseg->fh_array[i];
1140}
1141
Fred Isaman0b7c0152012-04-20 14:47:39 -04001142static int filelayout_initiate_commit(struct nfs_commit_data *data, int how)
Fred Isamane0c2b382011-03-23 13:27:53 +00001143{
1144 struct pnfs_layout_segment *lseg = data->lseg;
1145 struct nfs4_pnfs_ds *ds;
Andy Adamson0e201622013-09-06 14:14:00 -04001146 struct rpc_clnt *ds_clnt;
Fred Isamane0c2b382011-03-23 13:27:53 +00001147 u32 idx;
1148 struct nfs_fh *fh;
1149
1150 idx = calc_ds_index_from_commit(lseg, data->ds_commit_index);
1151 ds = nfs4_fl_prepare_ds(lseg, idx);
Andy Adamson0e201622013-09-06 14:14:00 -04001152 if (!ds)
1153 goto out_err;
1154
1155 ds_clnt = nfs4_find_or_create_ds_client(ds->ds_clp, data->inode);
1156 if (IS_ERR(ds_clnt))
1157 goto out_err;
1158
Andy Adamson3a7936c2012-04-27 17:53:51 -04001159 dprintk("%s ino %lu, how %d cl_count %d\n", __func__,
1160 data->inode->i_ino, how, atomic_read(&ds->ds_clp->cl_count));
Fred Isaman0b7c0152012-04-20 14:47:39 -04001161 data->commit_done_cb = filelayout_commit_done_cb;
Andy Adamson3a7936c2012-04-27 17:53:51 -04001162 atomic_inc(&ds->ds_clp->cl_count);
Fred Isamane0c2b382011-03-23 13:27:53 +00001163 data->ds_clp = ds->ds_clp;
1164 fh = select_ds_fh_from_commit(lseg, data->ds_commit_index);
1165 if (fh)
1166 data->args.fh = fh;
Andy Adamson0e201622013-09-06 14:14:00 -04001167 return nfs_initiate_commit(ds_clnt, data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -04001168 &filelayout_commit_call_ops, how,
1169 RPC_TASK_SOFTCONN);
Andy Adamson0e201622013-09-06 14:14:00 -04001170out_err:
1171 prepare_to_resend_writes(data);
1172 filelayout_commit_release(data);
1173 return -EAGAIN;
Fred Isamane0c2b382011-03-23 13:27:53 +00001174}
1175
Trond Myklebust8dd37752012-03-15 17:16:40 -04001176static int
Fred Isaman1763da12012-04-20 14:47:57 -04001177transfer_commit_list(struct list_head *src, struct list_head *dst,
1178 struct nfs_commit_info *cinfo, int max)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001179{
Trond Myklebust8dd37752012-03-15 17:16:40 -04001180 struct nfs_page *req, *tmp;
1181 int ret = 0;
1182
1183 list_for_each_entry_safe(req, tmp, src, wb_list) {
1184 if (!nfs_lock_request(req))
1185 continue;
Trond Myklebust53b8ee32012-05-22 16:36:27 -04001186 kref_get(&req->wb_kref);
Fred Isamanea2cf222012-04-20 14:47:53 -04001187 if (cond_resched_lock(cinfo->lock))
Trond Myklebust3b3be882012-03-17 11:59:30 -04001188 list_safe_reset_next(req, tmp, wb_list);
Fred Isamanea2cf222012-04-20 14:47:53 -04001189 nfs_request_remove_commit_list(req, cinfo);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001190 clear_bit(PG_COMMIT_TO_DS, &req->wb_flags);
1191 nfs_list_add_request(req, dst);
1192 ret++;
Fred Isaman1763da12012-04-20 14:47:57 -04001193 if ((ret == max) && !cinfo->dreq)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001194 break;
1195 }
Fred Isaman1763da12012-04-20 14:47:57 -04001196 return ret;
1197}
1198
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001199/* Note called with cinfo->lock held. */
Fred Isaman1763da12012-04-20 14:47:57 -04001200static int
1201filelayout_scan_ds_commit_list(struct pnfs_commit_bucket *bucket,
1202 struct nfs_commit_info *cinfo,
1203 int max)
1204{
1205 struct list_head *src = &bucket->written;
1206 struct list_head *dst = &bucket->committing;
1207 int ret;
1208
1209 ret = transfer_commit_list(src, dst, cinfo, max);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001210 if (ret) {
Fred Isamanea2cf222012-04-20 14:47:53 -04001211 cinfo->ds->nwritten -= ret;
1212 cinfo->ds->ncommitting += ret;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001213 bucket->clseg = bucket->wlseg;
1214 if (list_empty(src))
1215 bucket->wlseg = NULL;
1216 else
Trond Myklebust9369a432012-09-18 20:57:08 -04001217 pnfs_get_lseg(bucket->clseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001218 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001219 return ret;
1220}
1221
Fred Isamand6d6dc72012-03-08 17:29:35 -05001222/* Move reqs from written to committing lists, returning count of number moved.
Fred Isamanea2cf222012-04-20 14:47:53 -04001223 * Note called with cinfo->lock held.
Fred Isamand6d6dc72012-03-08 17:29:35 -05001224 */
Fred Isamanea2cf222012-04-20 14:47:53 -04001225static int filelayout_scan_commit_lists(struct nfs_commit_info *cinfo,
1226 int max)
Fred Isamand6d6dc72012-03-08 17:29:35 -05001227{
Fred Isamand6d6dc72012-03-08 17:29:35 -05001228 int i, rv = 0, cnt;
1229
Fred Isamanea2cf222012-04-20 14:47:53 -04001230 for (i = 0; i < cinfo->ds->nbuckets && max != 0; i++) {
1231 cnt = filelayout_scan_ds_commit_list(&cinfo->ds->buckets[i],
1232 cinfo, max);
Fred Isamand6d6dc72012-03-08 17:29:35 -05001233 max -= cnt;
1234 rv += cnt;
1235 }
Fred Isamand6d6dc72012-03-08 17:29:35 -05001236 return rv;
1237}
1238
Fred Isaman1763da12012-04-20 14:47:57 -04001239/* Pull everything off the committing lists and dump into @dst */
1240static void filelayout_recover_commit_reqs(struct list_head *dst,
1241 struct nfs_commit_info *cinfo)
1242{
1243 struct pnfs_commit_bucket *b;
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001244 struct pnfs_layout_segment *freeme;
Fred Isaman1763da12012-04-20 14:47:57 -04001245 int i;
1246
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001247restart:
Weston Andros Adamson471252c2014-01-21 15:21:33 -05001248 spin_lock(cinfo->lock);
Fred Isaman1763da12012-04-20 14:47:57 -04001249 for (i = 0, b = cinfo->ds->buckets; i < cinfo->ds->nbuckets; i++, b++) {
1250 if (transfer_commit_list(&b->written, dst, cinfo, 0)) {
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001251 freeme = b->wlseg;
Fred Isaman1763da12012-04-20 14:47:57 -04001252 b->wlseg = NULL;
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001253 spin_unlock(cinfo->lock);
1254 pnfs_put_lseg(freeme);
1255 goto restart;
Fred Isaman1763da12012-04-20 14:47:57 -04001256 }
1257 }
1258 cinfo->ds->nwritten = 0;
Weston Andros Adamson471252c2014-01-21 15:21:33 -05001259 spin_unlock(cinfo->lock);
Fred Isaman1763da12012-04-20 14:47:57 -04001260}
1261
Trond Myklebust9390f422012-03-16 13:52:45 -04001262static unsigned int
Fred Isamanea2cf222012-04-20 14:47:53 -04001263alloc_ds_commits(struct nfs_commit_info *cinfo, struct list_head *list)
Fred Isamane0c2b382011-03-23 13:27:53 +00001264{
Fred Isamanea2cf222012-04-20 14:47:53 -04001265 struct pnfs_ds_commit_info *fl_cinfo;
1266 struct pnfs_commit_bucket *bucket;
Fred Isaman0b7c0152012-04-20 14:47:39 -04001267 struct nfs_commit_data *data;
Fred Isamane0c2b382011-03-23 13:27:53 +00001268 int i, j;
Trond Myklebust9390f422012-03-16 13:52:45 -04001269 unsigned int nreq = 0;
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001270 struct pnfs_layout_segment *freeme;
Fred Isamane0c2b382011-03-23 13:27:53 +00001271
Fred Isamanea2cf222012-04-20 14:47:53 -04001272 fl_cinfo = cinfo->ds;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001273 bucket = fl_cinfo->buckets;
1274 for (i = 0; i < fl_cinfo->nbuckets; i++, bucket++) {
1275 if (list_empty(&bucket->committing))
Fred Isamane0c2b382011-03-23 13:27:53 +00001276 continue;
1277 data = nfs_commitdata_alloc();
1278 if (!data)
Trond Myklebust9390f422012-03-16 13:52:45 -04001279 break;
Fred Isamane0c2b382011-03-23 13:27:53 +00001280 data->ds_commit_index = i;
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001281 spin_lock(cinfo->lock);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001282 data->lseg = bucket->clseg;
1283 bucket->clseg = NULL;
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001284 spin_unlock(cinfo->lock);
Fred Isamane0c2b382011-03-23 13:27:53 +00001285 list_add(&data->pages, list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001286 nreq++;
Fred Isamane0c2b382011-03-23 13:27:53 +00001287 }
Fred Isamane0c2b382011-03-23 13:27:53 +00001288
Trond Myklebust9390f422012-03-16 13:52:45 -04001289 /* Clean up on error */
Fred Isaman799ba8d2012-04-20 14:47:38 -04001290 for (j = i; j < fl_cinfo->nbuckets; j++, bucket++) {
1291 if (list_empty(&bucket->committing))
Fred Isamane0c2b382011-03-23 13:27:53 +00001292 continue;
Fred Isamanea2cf222012-04-20 14:47:53 -04001293 nfs_retry_commit(&bucket->committing, bucket->clseg, cinfo);
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001294 spin_lock(cinfo->lock);
1295 freeme = bucket->clseg;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001296 bucket->clseg = NULL;
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001297 spin_unlock(cinfo->lock);
1298 pnfs_put_lseg(freeme);
Fred Isamane0c2b382011-03-23 13:27:53 +00001299 }
Fred Isamane0c2b382011-03-23 13:27:53 +00001300 /* Caller will clean up entries put on list */
Trond Myklebust9390f422012-03-16 13:52:45 -04001301 return nreq;
Fred Isamane0c2b382011-03-23 13:27:53 +00001302}
1303
1304/* This follows nfs_commit_list pretty closely */
1305static int
1306filelayout_commit_pagelist(struct inode *inode, struct list_head *mds_pages,
Fred Isamanea2cf222012-04-20 14:47:53 -04001307 int how, struct nfs_commit_info *cinfo)
Fred Isamane0c2b382011-03-23 13:27:53 +00001308{
Fred Isaman0b7c0152012-04-20 14:47:39 -04001309 struct nfs_commit_data *data, *tmp;
Fred Isamane0c2b382011-03-23 13:27:53 +00001310 LIST_HEAD(list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001311 unsigned int nreq = 0;
Fred Isamane0c2b382011-03-23 13:27:53 +00001312
1313 if (!list_empty(mds_pages)) {
1314 data = nfs_commitdata_alloc();
Trond Myklebust9390f422012-03-16 13:52:45 -04001315 if (data != NULL) {
1316 data->lseg = NULL;
1317 list_add(&data->pages, &list);
1318 nreq++;
1319 } else
Fred Isamanea2cf222012-04-20 14:47:53 -04001320 nfs_retry_commit(mds_pages, NULL, cinfo);
Fred Isamane0c2b382011-03-23 13:27:53 +00001321 }
1322
Fred Isamanea2cf222012-04-20 14:47:53 -04001323 nreq += alloc_ds_commits(cinfo, &list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001324
1325 if (nreq == 0) {
Fred Isamanf453a542012-04-20 14:47:54 -04001326 cinfo->completion_ops->error_cleanup(NFS_I(inode));
Trond Myklebust9390f422012-03-16 13:52:45 -04001327 goto out;
1328 }
1329
Fred Isamanea2cf222012-04-20 14:47:53 -04001330 atomic_add(nreq, &cinfo->mds->rpcs_out);
Fred Isamane0c2b382011-03-23 13:27:53 +00001331
1332 list_for_each_entry_safe(data, tmp, &list, pages) {
1333 list_del_init(&data->pages);
Fred Isamane0c2b382011-03-23 13:27:53 +00001334 if (!data->lseg) {
Fred Isamanf453a542012-04-20 14:47:54 -04001335 nfs_init_commit(data, mds_pages, NULL, cinfo);
Fred Isaman0b7c0152012-04-20 14:47:39 -04001336 nfs_initiate_commit(NFS_CLIENT(inode), data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -04001337 data->mds_ops, how, 0);
Fred Isamane0c2b382011-03-23 13:27:53 +00001338 } else {
Fred Isamanea2cf222012-04-20 14:47:53 -04001339 struct pnfs_commit_bucket *buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001340
Fred Isamanea2cf222012-04-20 14:47:53 -04001341 buckets = cinfo->ds->buckets;
Fred Isamanf453a542012-04-20 14:47:54 -04001342 nfs_init_commit(data, &buckets[data->ds_commit_index].committing, data->lseg, cinfo);
Fred Isamane0c2b382011-03-23 13:27:53 +00001343 filelayout_initiate_commit(data, how);
1344 }
1345 }
Trond Myklebust9390f422012-03-16 13:52:45 -04001346out:
Fred Isamanea2cf222012-04-20 14:47:53 -04001347 cinfo->ds->ncommitting = 0;
Trond Myklebust9390f422012-03-16 13:52:45 -04001348 return PNFS_ATTEMPTED;
Fred Isamane0c2b382011-03-23 13:27:53 +00001349}
1350
Benny Halevy1775bc32011-05-20 13:47:33 +02001351static void
1352filelayout_free_deveiceid_node(struct nfs4_deviceid_node *d)
1353{
1354 nfs4_fl_free_deviceid(container_of(d, struct nfs4_file_layout_dsaddr, id_node));
1355}
1356
Fred Isaman799ba8d2012-04-20 14:47:38 -04001357static struct pnfs_layout_hdr *
1358filelayout_alloc_layout_hdr(struct inode *inode, gfp_t gfp_flags)
1359{
1360 struct nfs4_filelayout *flo;
1361
1362 flo = kzalloc(sizeof(*flo), gfp_flags);
1363 return &flo->generic_hdr;
1364}
1365
1366static void
1367filelayout_free_layout_hdr(struct pnfs_layout_hdr *lo)
1368{
1369 kfree(FILELAYOUT_FROM_HDR(lo));
1370}
1371
Fred Isamanea2cf222012-04-20 14:47:53 -04001372static struct pnfs_ds_commit_info *
1373filelayout_get_ds_info(struct inode *inode)
1374{
Fred Isamandf011742012-04-24 14:50:34 -04001375 struct pnfs_layout_hdr *layout = NFS_I(inode)->layout;
1376
1377 if (layout == NULL)
1378 return NULL;
1379 else
1380 return &FILELAYOUT_FROM_HDR(layout)->commit_info;
Fred Isamanea2cf222012-04-20 14:47:53 -04001381}
1382
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001383static struct pnfs_layoutdriver_type filelayout_type = {
Christoph Hellwigea8eecd2011-03-01 01:34:21 +00001384 .id = LAYOUT_NFSV4_1_FILES,
1385 .name = "LAYOUT_NFSV4_1_FILES",
1386 .owner = THIS_MODULE,
Fred Isaman799ba8d2012-04-20 14:47:38 -04001387 .alloc_layout_hdr = filelayout_alloc_layout_hdr,
1388 .free_layout_hdr = filelayout_free_layout_hdr,
Christoph Hellwigea8eecd2011-03-01 01:34:21 +00001389 .alloc_lseg = filelayout_alloc_lseg,
1390 .free_lseg = filelayout_free_lseg,
Trond Myklebust1751c362011-06-10 13:30:23 -04001391 .pg_read_ops = &filelayout_pg_read_ops,
1392 .pg_write_ops = &filelayout_pg_write_ops,
Fred Isamanea2cf222012-04-20 14:47:53 -04001393 .get_ds_info = &filelayout_get_ds_info,
Trond Myklebust8dd37752012-03-15 17:16:40 -04001394 .mark_request_commit = filelayout_mark_request_commit,
1395 .clear_request_commit = filelayout_clear_request_commit,
Fred Isamand6d6dc72012-03-08 17:29:35 -05001396 .scan_commit_lists = filelayout_scan_commit_lists,
Fred Isaman1763da12012-04-20 14:47:57 -04001397 .recover_commit_reqs = filelayout_recover_commit_reqs,
Fred Isamane0c2b382011-03-23 13:27:53 +00001398 .commit_pagelist = filelayout_commit_pagelist,
Andy Adamsondc70d7b2011-03-01 01:34:19 +00001399 .read_pagelist = filelayout_read_pagelist,
Andy Adamson0382b742011-03-03 15:13:45 +00001400 .write_pagelist = filelayout_write_pagelist,
Benny Halevy1775bc32011-05-20 13:47:33 +02001401 .free_deviceid_node = filelayout_free_deveiceid_node,
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001402};
1403
1404static int __init nfs4filelayout_init(void)
1405{
1406 printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n",
1407 __func__);
1408 return pnfs_register_layoutdriver(&filelayout_type);
1409}
1410
1411static void __exit nfs4filelayout_exit(void)
1412{
1413 printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n",
1414 __func__);
1415 pnfs_unregister_layoutdriver(&filelayout_type);
1416}
1417
J. Bruce Fieldsf85ef692011-07-15 19:18:42 -04001418MODULE_ALIAS("nfs-layouttype4-1");
1419
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001420module_init(nfs4filelayout_init);
1421module_exit(nfs4filelayout_exit);