blob: 163cad1d41274632ce954af2f07842b5aef6c0af [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
Tom Haynesb5968722014-05-12 14:35:52 -070038#include "../nfs4session.h"
39#include "../internal.h"
40#include "../delegation.h"
41#include "filelayout.h"
42#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
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -040087static void filelayout_reset_write(struct nfs_pgio_header *hdr)
Andy Adamsone7dd79af2012-04-27 17:53:46 -040088{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -040089 struct rpc_task *task = &hdr->task;
Andy Adamsone7dd79af2012-04-27 17:53:46 -040090
91 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
92 dprintk("%s Reset task %5u for i/o through MDS "
Niels de Vos1e8968c2013-12-17 18:20:16 +010093 "(req %s/%llu, %u bytes @ offset %llu)\n", __func__,
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -040094 hdr->task.tk_pid,
Bryan Schumaker497826a2012-05-22 10:10:03 -040095 hdr->inode->i_sb->s_id,
Niels de Vos1e8968c2013-12-17 18:20:16 +010096 (unsigned long long)NFS_FILEID(hdr->inode),
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -040097 hdr->args.count,
98 (unsigned long long)hdr->args.offset);
Andy Adamsone7dd79af2012-04-27 17:53:46 -040099
Weston Andros Adamson53113ad2014-06-09 11:48:38 -0400100 task->tk_status = pnfs_write_done_resend_to_mds(hdr);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400101 }
102}
103
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400104static void filelayout_reset_read(struct nfs_pgio_header *hdr)
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400105{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400106 struct rpc_task *task = &hdr->task;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400107
108 if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
109 dprintk("%s Reset task %5u for i/o through MDS "
Niels de Vos1e8968c2013-12-17 18:20:16 +0100110 "(req %s/%llu, %u bytes @ offset %llu)\n", __func__,
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400111 hdr->task.tk_pid,
Bryan Schumaker497826a2012-05-22 10:10:03 -0400112 hdr->inode->i_sb->s_id,
Niels de Vos1e8968c2013-12-17 18:20:16 +0100113 (unsigned long long)NFS_FILEID(hdr->inode),
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400114 hdr->args.count,
115 (unsigned long long)hdr->args.offset);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400116
Weston Andros Adamson53113ad2014-06-09 11:48:38 -0400117 task->tk_status = pnfs_read_done_resend_to_mds(hdr);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400118 }
119}
120
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400121static void filelayout_fenceme(struct inode *inode, struct pnfs_layout_hdr *lo)
122{
123 if (!test_and_clear_bit(NFS_LAYOUT_RETURN, &lo->plh_flags))
124 return;
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400125 pnfs_return_layout(inode);
126}
127
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000128static int filelayout_async_handle_error(struct rpc_task *task,
129 struct nfs4_state *state,
130 struct nfs_client *clp,
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400131 struct pnfs_layout_segment *lseg)
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000132{
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400133 struct pnfs_layout_hdr *lo = lseg->pls_layout;
134 struct inode *inode = lo->plh_inode;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400135 struct nfs_server *mds_server = NFS_SERVER(inode);
136 struct nfs4_deviceid_node *devid = FILELAYOUT_DEVID_NODE(lseg);
Andy Adamson9cb81962012-03-07 10:49:41 -0500137 struct nfs_client *mds_client = mds_server->nfs_client;
Andy Adamson671fb892012-04-27 17:53:49 -0400138 struct nfs4_slot_table *tbl = &clp->cl_session->fc_slot_table;
Andy Adamson9cb81962012-03-07 10:49:41 -0500139
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000140 if (task->tk_status >= 0)
141 return 0;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000142
143 switch (task->tk_status) {
Andy Adamson9cb81962012-03-07 10:49:41 -0500144 /* MDS state errors */
145 case -NFS4ERR_DELEG_REVOKED:
146 case -NFS4ERR_ADMIN_REVOKED:
147 case -NFS4ERR_BAD_STATEID:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400148 if (state == NULL)
149 break;
Andy Adamson2dc31752012-03-08 11:03:53 -0500150 nfs_remove_bad_delegation(state->inode);
Andy Adamson9cb81962012-03-07 10:49:41 -0500151 case -NFS4ERR_OPENMODE:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400152 if (state == NULL)
153 break;
Trond Myklebust5d422302013-03-14 16:57:48 -0400154 if (nfs4_schedule_stateid_recovery(mds_server, state) < 0)
155 goto out_bad_stateid;
Andy Adamson9cb81962012-03-07 10:49:41 -0500156 goto wait_on_recovery;
157 case -NFS4ERR_EXPIRED:
Trond Myklebust5d422302013-03-14 16:57:48 -0400158 if (state != NULL) {
159 if (nfs4_schedule_stateid_recovery(mds_server, state) < 0)
160 goto out_bad_stateid;
161 }
Andy Adamson9cb81962012-03-07 10:49:41 -0500162 nfs4_schedule_lease_recovery(mds_client);
163 goto wait_on_recovery;
164 /* DS session errors */
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000165 case -NFS4ERR_BADSESSION:
166 case -NFS4ERR_BADSLOT:
167 case -NFS4ERR_BAD_HIGH_SLOT:
168 case -NFS4ERR_DEADSESSION:
169 case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION:
170 case -NFS4ERR_SEQ_FALSE_RETRY:
171 case -NFS4ERR_SEQ_MISORDERED:
172 dprintk("%s ERROR %d, Reset session. Exchangeid "
173 "flags 0x%x\n", __func__, task->tk_status,
174 clp->cl_exchange_flags);
Trond Myklebust9f594792012-05-27 13:02:53 -0400175 nfs4_schedule_session_recovery(clp->cl_session, task->tk_status);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000176 break;
177 case -NFS4ERR_DELAY:
178 case -NFS4ERR_GRACE:
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000179 rpc_delay(task, FILELAYOUT_POLL_RETRY_MAX);
180 break;
Andy Adamsona8a4ae32011-05-03 13:43:03 -0400181 case -NFS4ERR_RETRY_UNCACHED_REP:
182 break;
Andy Adamson041245c2012-04-27 17:53:53 -0400183 /* Invalidate Layout errors */
184 case -NFS4ERR_PNFS_NO_LAYOUT:
185 case -ESTALE: /* mapped NFS4ERR_STALE */
186 case -EBADHANDLE: /* mapped NFS4ERR_BADHANDLE */
187 case -EISDIR: /* mapped NFS4ERR_ISDIR */
188 case -NFS4ERR_FHEXPIRED:
189 case -NFS4ERR_WRONG_TYPE:
190 dprintk("%s Invalid layout error %d\n", __func__,
191 task->tk_status);
192 /*
193 * Destroy layout so new i/o will get a new layout.
194 * Layout will not be destroyed until all current lseg
195 * references are put. Mark layout as invalid to resend failed
196 * i/o and all i/o waiting on the slot table to the MDS until
197 * layout is destroyed and a new valid layout is obtained.
198 */
Andy Adamsond42e7872012-05-22 08:09:28 -0400199 pnfs_destroy_layout(NFS_I(inode));
Andy Adamson041245c2012-04-27 17:53:53 -0400200 rpc_wake_up(&tbl->slot_tbl_waitq);
201 goto reset;
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400202 /* RPC connection errors */
203 case -ECONNREFUSED:
204 case -EHOSTDOWN:
205 case -EHOSTUNREACH:
206 case -ENETUNREACH:
207 case -EIO:
208 case -ETIMEDOUT:
209 case -EPIPE:
210 dprintk("%s DS connection error %d\n", __func__,
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000211 task->tk_status);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400212 nfs4_mark_deviceid_unavailable(devid);
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400213 set_bit(NFS_LAYOUT_RETURN, &lo->plh_flags);
Andy Adamson671fb892012-04-27 17:53:49 -0400214 rpc_wake_up(&tbl->slot_tbl_waitq);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400215 /* fall through */
216 default:
Andy Adamson041245c2012-04-27 17:53:53 -0400217reset:
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400218 dprintk("%s Retry through MDS. Error %d\n", __func__,
219 task->tk_status);
220 return -NFS4ERR_RESET_TO_MDS;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000221 }
Andy Adamson9cb81962012-03-07 10:49:41 -0500222out:
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000223 task->tk_status = 0;
224 return -EAGAIN;
Trond Myklebust5d422302013-03-14 16:57:48 -0400225out_bad_stateid:
226 task->tk_status = -EIO;
227 return 0;
Andy Adamson9cb81962012-03-07 10:49:41 -0500228wait_on_recovery:
229 rpc_sleep_on(&mds_client->cl_rpcwaitq, task, NULL);
230 if (test_bit(NFS4CLNT_MANAGER_RUNNING, &mds_client->cl_state) == 0)
231 rpc_wake_up_queued_task(&mds_client->cl_rpcwaitq, task);
232 goto out;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000233}
234
235/* NFS_PROTO call done callback routines */
236
237static int filelayout_read_done_cb(struct rpc_task *task,
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400238 struct nfs_pgio_header *hdr)
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000239{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400240 int err;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000241
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400242 trace_nfs4_pnfs_read(hdr, task->tk_status);
243 err = filelayout_async_handle_error(task, hdr->args.context->state,
244 hdr->ds_clp, hdr->lseg);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000245
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400246 switch (err) {
247 case -NFS4ERR_RESET_TO_MDS:
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400248 filelayout_reset_read(hdr);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400249 return task->tk_status;
250 case -EAGAIN:
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700251 rpc_restart_call_prepare(task);
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000252 return -EAGAIN;
253 }
254
255 return 0;
256}
257
Andy Adamson16b374c2010-10-20 00:18:04 -0400258/*
Andy Adamson863a3c62011-03-23 13:27:54 +0000259 * We reference the rpc_cred of the first WRITE that triggers the need for
260 * a LAYOUTCOMMIT, and use it to send the layoutcommit compound.
261 * rfc5661 is not clear about which credential should be used.
262 */
263static void
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400264filelayout_set_layoutcommit(struct nfs_pgio_header *hdr)
Andy Adamson863a3c62011-03-23 13:27:54 +0000265{
Fred Isamancd841602012-04-20 14:47:44 -0400266
267 if (FILELAYOUT_LSEG(hdr->lseg)->commit_through_mds ||
Peng Taobc7d4b82014-08-07 10:15:03 +0800268 hdr->res.verf->committed != NFS_DATA_SYNC)
Andy Adamson863a3c62011-03-23 13:27:54 +0000269 return;
270
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400271 pnfs_set_layoutcommit(hdr);
Tom Haynesf383b7e2014-06-04 15:54:57 -0700272 dprintk("%s inode %lu pls_end_pos %lu\n", __func__, hdr->inode->i_ino,
Fred Isamancd841602012-04-20 14:47:44 -0400273 (unsigned long) NFS_I(hdr->inode)->layout->plh_lwb);
Andy Adamson863a3c62011-03-23 13:27:54 +0000274}
275
Trond Myklebust1dfed272012-09-18 19:51:12 -0400276bool
277filelayout_test_devid_unavailable(struct nfs4_deviceid_node *node)
278{
279 return filelayout_test_devid_invalid(node) ||
280 nfs4_test_deviceid_unavailable(node);
281}
282
283static bool
284filelayout_reset_to_mds(struct pnfs_layout_segment *lseg)
285{
286 struct nfs4_deviceid_node *node = FILELAYOUT_DEVID_NODE(lseg);
287
Trond Myklebust8006bfb2012-09-21 14:48:04 -0400288 return filelayout_test_devid_unavailable(node);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400289}
290
Andy Adamson863a3c62011-03-23 13:27:54 +0000291/*
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000292 * Call ops for the async read/write cases
293 * In the case of dense layouts, the offset needs to be reset to its
294 * original value.
295 */
296static void filelayout_read_prepare(struct rpc_task *task, void *data)
297{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400298 struct nfs_pgio_header *hdr = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000299
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400300 if (unlikely(test_bit(NFS_CONTEXT_BAD, &hdr->args.context->flags))) {
Trond Myklebustc58c8442013-03-18 19:45:14 -0400301 rpc_exit(task, -EIO);
302 return;
303 }
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400304 if (filelayout_reset_to_mds(hdr->lseg)) {
Andy Adamson0ad2f372012-04-27 17:53:48 -0400305 dprintk("%s task %u reset io to MDS\n", __func__, task->tk_pid);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400306 filelayout_reset_read(hdr);
Andy Adamson0ad2f372012-04-27 17:53:48 -0400307 rpc_exit(task, 0);
308 return;
309 }
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400310 hdr->pgio_done_cb = filelayout_read_done_cb;
Andy Adamsoncbdabc7f2011-03-01 01:34:20 +0000311
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400312 if (nfs41_setup_sequence(hdr->ds_clp->cl_session,
313 &hdr->args.seq_args,
314 &hdr->res.seq_res,
Trond Myklebust9b206142013-03-17 15:52:00 -0400315 task))
316 return;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400317 if (nfs4_set_rw_stateid(&hdr->args.stateid, hdr->args.context,
318 hdr->args.lock_context, FMODE_READ) == -EIO)
Andy Adamson869a9d32014-03-04 12:31:09 -0500319 rpc_exit(task, -EIO); /* lost lock, terminate I/O */
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000320}
321
322static void filelayout_read_call_done(struct rpc_task *task, void *data)
323{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400324 struct nfs_pgio_header *hdr = data;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000325
326 dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status);
327
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400328 if (test_bit(NFS_IOHDR_REDO, &hdr->flags) &&
Andy Adamsonf9c96fc2014-01-29 11:34:38 -0500329 task->tk_status == 0) {
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400330 nfs41_sequence_done(task, &hdr->res.seq_res);
Andy Adamson0ad2f372012-04-27 17:53:48 -0400331 return;
Andy Adamsonf9c96fc2014-01-29 11:34:38 -0500332 }
Andy Adamson0ad2f372012-04-27 17:53:48 -0400333
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000334 /* Note this may cause RPC to be resent */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400335 hdr->mds_ops->rpc_call_done(task, data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000336}
337
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500338static void filelayout_read_count_stats(struct rpc_task *task, void *data)
339{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400340 struct nfs_pgio_header *hdr = data;
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500341
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400342 rpc_count_iostats(task, NFS_SERVER(hdr->inode)->client->cl_metrics);
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500343}
344
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000345static void filelayout_read_release(void *data)
346{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400347 struct nfs_pgio_header *hdr = data;
348 struct pnfs_layout_hdr *lo = hdr->lseg->pls_layout;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000349
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400350 filelayout_fenceme(lo->plh_inode, lo);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400351 nfs_put_client(hdr->ds_clp);
352 hdr->mds_ops->rpc_release(data);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000353}
354
Fred Isamana69aef12011-03-03 15:13:47 +0000355static int filelayout_write_done_cb(struct rpc_task *task,
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400356 struct nfs_pgio_header *hdr)
Fred Isamana69aef12011-03-03 15:13:47 +0000357{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400358 int err;
Fred Isamana69aef12011-03-03 15:13:47 +0000359
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400360 trace_nfs4_pnfs_write(hdr, task->tk_status);
361 err = filelayout_async_handle_error(task, hdr->args.context->state,
362 hdr->ds_clp, hdr->lseg);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400363
364 switch (err) {
365 case -NFS4ERR_RESET_TO_MDS:
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400366 filelayout_reset_write(hdr);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400367 return task->tk_status;
368 case -EAGAIN:
Trond Myklebustd00c5d42011-10-19 12:17:29 -0700369 rpc_restart_call_prepare(task);
Fred Isamana69aef12011-03-03 15:13:47 +0000370 return -EAGAIN;
371 }
372
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400373 filelayout_set_layoutcommit(hdr);
Fred Isamana69aef12011-03-03 15:13:47 +0000374 return 0;
375}
376
Fred Isamane0c2b382011-03-23 13:27:53 +0000377/* Fake up some data that will cause nfs_commit_release to retry the writes. */
Fred Isaman0b7c0152012-04-20 14:47:39 -0400378static void prepare_to_resend_writes(struct nfs_commit_data *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000379{
380 struct nfs_page *first = nfs_list_entry(data->pages.next);
381
382 data->task.tk_status = 0;
Trond Myklebust2f2c63b2012-06-08 11:56:09 -0400383 memcpy(&data->verf.verifier, &first->wb_verf,
384 sizeof(data->verf.verifier));
385 data->verf.verifier.data[0]++; /* ensure verifier mismatch */
Fred Isamane0c2b382011-03-23 13:27:53 +0000386}
387
388static int filelayout_commit_done_cb(struct rpc_task *task,
Fred Isaman0b7c0152012-04-20 14:47:39 -0400389 struct nfs_commit_data *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000390{
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400391 int err;
Fred Isamane0c2b382011-03-23 13:27:53 +0000392
Trond Myklebustcc668ab2013-08-14 15:31:28 -0400393 trace_nfs4_pnfs_commit_ds(data, task->tk_status);
Andy Adamsone7dd79af2012-04-27 17:53:46 -0400394 err = filelayout_async_handle_error(task, NULL, data->ds_clp,
395 data->lseg);
396
397 switch (err) {
398 case -NFS4ERR_RESET_TO_MDS:
399 prepare_to_resend_writes(data);
400 return -EAGAIN;
401 case -EAGAIN:
402 rpc_restart_call_prepare(task);
Fred Isamane0c2b382011-03-23 13:27:53 +0000403 return -EAGAIN;
404 }
405
Peng Taobc7d4b82014-08-07 10:15:03 +0800406 if (data->verf.committed == NFS_UNSTABLE)
407 pnfs_commit_set_layoutcommit(data);
408
Fred Isamane0c2b382011-03-23 13:27:53 +0000409 return 0;
410}
411
Fred Isamana69aef12011-03-03 15:13:47 +0000412static void filelayout_write_prepare(struct rpc_task *task, void *data)
413{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400414 struct nfs_pgio_header *hdr = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000415
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400416 if (unlikely(test_bit(NFS_CONTEXT_BAD, &hdr->args.context->flags))) {
Trond Myklebustc58c8442013-03-18 19:45:14 -0400417 rpc_exit(task, -EIO);
418 return;
419 }
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400420 if (filelayout_reset_to_mds(hdr->lseg)) {
Andy Adamson0ad2f372012-04-27 17:53:48 -0400421 dprintk("%s task %u reset io to MDS\n", __func__, task->tk_pid);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400422 filelayout_reset_write(hdr);
Andy Adamson0ad2f372012-04-27 17:53:48 -0400423 rpc_exit(task, 0);
424 return;
425 }
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400426 if (nfs41_setup_sequence(hdr->ds_clp->cl_session,
427 &hdr->args.seq_args,
428 &hdr->res.seq_res,
Trond Myklebust9b206142013-03-17 15:52:00 -0400429 task))
430 return;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400431 if (nfs4_set_rw_stateid(&hdr->args.stateid, hdr->args.context,
432 hdr->args.lock_context, FMODE_WRITE) == -EIO)
Andy Adamson869a9d32014-03-04 12:31:09 -0500433 rpc_exit(task, -EIO); /* lost lock, terminate I/O */
Fred Isamana69aef12011-03-03 15:13:47 +0000434}
435
436static void filelayout_write_call_done(struct rpc_task *task, void *data)
437{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400438 struct nfs_pgio_header *hdr = data;
Fred Isamana69aef12011-03-03 15:13:47 +0000439
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400440 if (test_bit(NFS_IOHDR_REDO, &hdr->flags) &&
Andy Adamsonf9c96fc2014-01-29 11:34:38 -0500441 task->tk_status == 0) {
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400442 nfs41_sequence_done(task, &hdr->res.seq_res);
Andy Adamson0ad2f372012-04-27 17:53:48 -0400443 return;
Andy Adamsonf9c96fc2014-01-29 11:34:38 -0500444 }
Andy Adamson0ad2f372012-04-27 17:53:48 -0400445
Fred Isamana69aef12011-03-03 15:13:47 +0000446 /* Note this may cause RPC to be resent */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400447 hdr->mds_ops->rpc_call_done(task, data);
Fred Isamana69aef12011-03-03 15:13:47 +0000448}
449
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500450static void filelayout_write_count_stats(struct rpc_task *task, void *data)
451{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400452 struct nfs_pgio_header *hdr = data;
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500453
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400454 rpc_count_iostats(task, NFS_SERVER(hdr->inode)->client->cl_metrics);
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500455}
456
Fred Isamana69aef12011-03-03 15:13:47 +0000457static void filelayout_write_release(void *data)
458{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400459 struct nfs_pgio_header *hdr = data;
460 struct pnfs_layout_hdr *lo = hdr->lseg->pls_layout;
Fred Isamana69aef12011-03-03 15:13:47 +0000461
Trond Myklebustd527e5c2012-10-11 13:43:38 -0400462 filelayout_fenceme(lo->plh_inode, lo);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400463 nfs_put_client(hdr->ds_clp);
464 hdr->mds_ops->rpc_release(data);
Fred Isamana69aef12011-03-03 15:13:47 +0000465}
466
Fred Isaman0b7c0152012-04-20 14:47:39 -0400467static void filelayout_commit_prepare(struct rpc_task *task, void *data)
Fred Isamane0c2b382011-03-23 13:27:53 +0000468{
Fred Isaman0b7c0152012-04-20 14:47:39 -0400469 struct nfs_commit_data *wdata = data;
Fred Isamane0c2b382011-03-23 13:27:53 +0000470
Trond Myklebustd9afbd12012-10-22 20:28:44 -0400471 nfs41_setup_sequence(wdata->ds_clp->cl_session,
472 &wdata->args.seq_args,
473 &wdata->res.seq_res,
474 task);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400475}
476
477static void filelayout_write_commit_done(struct rpc_task *task, void *data)
478{
479 struct nfs_commit_data *wdata = data;
480
481 /* Note this may cause RPC to be resent */
482 wdata->mds_ops->rpc_call_done(task, data);
483}
484
485static void filelayout_commit_count_stats(struct rpc_task *task, void *data)
486{
487 struct nfs_commit_data *cdata = data;
488
489 rpc_count_iostats(task, NFS_SERVER(cdata->inode)->client->cl_metrics);
490}
491
492static void filelayout_commit_release(void *calldata)
493{
494 struct nfs_commit_data *data = calldata;
495
Fred Isamanf453a542012-04-20 14:47:54 -0400496 data->completion_ops->completion(data);
Trond Myklebust9369a432012-09-18 20:57:08 -0400497 pnfs_put_lseg(data->lseg);
Andy Adamson3a7936c2012-04-27 17:53:51 -0400498 nfs_put_client(data->ds_clp);
Fred Isaman0b7c0152012-04-20 14:47:39 -0400499 nfs_commitdata_release(data);
Fred Isamane0c2b382011-03-23 13:27:53 +0000500}
501
Trond Myklebust17280172012-03-11 13:11:00 -0400502static const struct rpc_call_ops filelayout_read_call_ops = {
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000503 .rpc_call_prepare = filelayout_read_prepare,
504 .rpc_call_done = filelayout_read_call_done,
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500505 .rpc_count_stats = filelayout_read_count_stats,
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000506 .rpc_release = filelayout_read_release,
507};
508
Trond Myklebust17280172012-03-11 13:11:00 -0400509static const struct rpc_call_ops filelayout_write_call_ops = {
Fred Isamana69aef12011-03-03 15:13:47 +0000510 .rpc_call_prepare = filelayout_write_prepare,
511 .rpc_call_done = filelayout_write_call_done,
Weston Andros Adamson0a702192012-02-17 13:15:24 -0500512 .rpc_count_stats = filelayout_write_count_stats,
Fred Isamana69aef12011-03-03 15:13:47 +0000513 .rpc_release = filelayout_write_release,
514};
515
Trond Myklebust17280172012-03-11 13:11:00 -0400516static const struct rpc_call_ops filelayout_commit_call_ops = {
Fred Isaman0b7c0152012-04-20 14:47:39 -0400517 .rpc_call_prepare = filelayout_commit_prepare,
518 .rpc_call_done = filelayout_write_commit_done,
519 .rpc_count_stats = filelayout_commit_count_stats,
Fred Isamane0c2b382011-03-23 13:27:53 +0000520 .rpc_release = filelayout_commit_release,
521};
522
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000523static enum pnfs_try_status
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400524filelayout_read_pagelist(struct nfs_pgio_header *hdr)
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000525{
Fred Isamancd841602012-04-20 14:47:44 -0400526 struct pnfs_layout_segment *lseg = hdr->lseg;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000527 struct nfs4_pnfs_ds *ds;
Andy Adamson0e201622013-09-06 14:14:00 -0400528 struct rpc_clnt *ds_clnt;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400529 loff_t offset = hdr->args.offset;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000530 u32 j, idx;
531 struct nfs_fh *fh;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000532
533 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n",
Fred Isamancd841602012-04-20 14:47:44 -0400534 __func__, hdr->inode->i_ino,
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400535 hdr->args.pgbase, (size_t)hdr->args.count, offset);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000536
537 /* Retrieve the correct rpc_client for the byte range */
538 j = nfs4_fl_calc_j_index(lseg, offset);
539 idx = nfs4_fl_calc_ds_index(lseg, j);
540 ds = nfs4_fl_prepare_ds(lseg, idx);
Andy Adamson90fecfc2012-04-27 17:53:43 -0400541 if (!ds)
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000542 return PNFS_NOT_ATTEMPTED;
Andy Adamson0e201622013-09-06 14:14:00 -0400543
544 ds_clnt = nfs4_find_or_create_ds_client(ds->ds_clp, hdr->inode);
545 if (IS_ERR(ds_clnt))
546 return PNFS_NOT_ATTEMPTED;
547
Andy Adamson3a7936c2012-04-27 17:53:51 -0400548 dprintk("%s USE DS: %s cl_count %d\n", __func__,
549 ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count));
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000550
551 /* No multipath support. Use first DS */
Andy Adamson3a7936c2012-04-27 17:53:51 -0400552 atomic_inc(&ds->ds_clp->cl_count);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400553 hdr->ds_clp = ds->ds_clp;
554 hdr->ds_idx = idx;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000555 fh = nfs4_fl_select_ds_fh(lseg, j);
556 if (fh)
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400557 hdr->args.fh = fh;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000558
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400559 hdr->args.offset = filelayout_get_dserver_offset(lseg, offset);
560 hdr->mds_offset = offset;
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000561
562 /* Perform an asynchronous read to ds */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400563 nfs_initiate_pgio(ds_clnt, hdr,
Anna Schumaker1ed26f32014-05-06 09:12:37 -0400564 &filelayout_read_call_ops, 0, RPC_TASK_SOFTCONN);
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000565 return PNFS_ATTEMPTED;
566}
567
Fred Isamana69aef12011-03-03 15:13:47 +0000568/* Perform async writes. */
Andy Adamson0382b742011-03-03 15:13:45 +0000569static enum pnfs_try_status
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400570filelayout_write_pagelist(struct nfs_pgio_header *hdr, int sync)
Andy Adamson0382b742011-03-03 15:13:45 +0000571{
Fred Isamancd841602012-04-20 14:47:44 -0400572 struct pnfs_layout_segment *lseg = hdr->lseg;
Fred Isamana69aef12011-03-03 15:13:47 +0000573 struct nfs4_pnfs_ds *ds;
Andy Adamson0e201622013-09-06 14:14:00 -0400574 struct rpc_clnt *ds_clnt;
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400575 loff_t offset = hdr->args.offset;
Fred Isamana69aef12011-03-03 15:13:47 +0000576 u32 j, idx;
577 struct nfs_fh *fh;
Fred Isamana69aef12011-03-03 15:13:47 +0000578
579 /* Retrieve the correct rpc_client for the byte range */
580 j = nfs4_fl_calc_j_index(lseg, offset);
581 idx = nfs4_fl_calc_ds_index(lseg, j);
582 ds = nfs4_fl_prepare_ds(lseg, idx);
Andy Adamson90fecfc2012-04-27 17:53:43 -0400583 if (!ds)
Fred Isamana69aef12011-03-03 15:13:47 +0000584 return PNFS_NOT_ATTEMPTED;
Andy Adamson0e201622013-09-06 14:14:00 -0400585
586 ds_clnt = nfs4_find_or_create_ds_client(ds->ds_clp, hdr->inode);
587 if (IS_ERR(ds_clnt))
588 return PNFS_NOT_ATTEMPTED;
589
Andy Adamson3a7936c2012-04-27 17:53:51 -0400590 dprintk("%s ino %lu sync %d req %Zu@%llu DS: %s cl_count %d\n",
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400591 __func__, hdr->inode->i_ino, sync, (size_t) hdr->args.count,
Andy Adamson3a7936c2012-04-27 17:53:51 -0400592 offset, ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count));
Fred Isamana69aef12011-03-03 15:13:47 +0000593
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400594 hdr->pgio_done_cb = filelayout_write_done_cb;
Andy Adamson3a7936c2012-04-27 17:53:51 -0400595 atomic_inc(&ds->ds_clp->cl_count);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400596 hdr->ds_clp = ds->ds_clp;
597 hdr->ds_idx = idx;
Fred Isamana69aef12011-03-03 15:13:47 +0000598 fh = nfs4_fl_select_ds_fh(lseg, j);
599 if (fh)
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400600 hdr->args.fh = fh;
601 hdr->args.offset = filelayout_get_dserver_offset(lseg, offset);
Fred Isamana69aef12011-03-03 15:13:47 +0000602
603 /* Perform an asynchronous write */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400604 nfs_initiate_pgio(ds_clnt, hdr,
Andy Adamson9f0ec1762012-04-27 17:53:44 -0400605 &filelayout_write_call_ops, sync,
606 RPC_TASK_SOFTCONN);
Fred Isamana69aef12011-03-03 15:13:47 +0000607 return PNFS_ATTEMPTED;
Andy Adamson0382b742011-03-03 15:13:45 +0000608}
609
Andy Adamsondc70d7b2011-03-01 01:34:19 +0000610/*
Andy Adamson16b374c2010-10-20 00:18:04 -0400611 * filelayout_check_layout()
612 *
613 * Make sure layout segment parameters are sane WRT the device.
614 * At this point no generic layer initialization of the lseg has occurred,
615 * and nothing has been added to the layout_hdr cache.
616 *
617 */
618static int
619filelayout_check_layout(struct pnfs_layout_hdr *lo,
620 struct nfs4_filelayout_segment *fl,
621 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400622 struct nfs4_deviceid *id,
623 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400624{
Benny Halevya1eaecb2011-05-19 22:14:47 -0400625 struct nfs4_deviceid_node *d;
Andy Adamson16b374c2010-10-20 00:18:04 -0400626 struct nfs4_file_layout_dsaddr *dsaddr;
627 int status = -EINVAL;
Andy Adamson16b374c2010-10-20 00:18:04 -0400628
629 dprintk("--> %s\n", __func__);
630
Andy Adamson7c24d942011-06-13 18:22:38 -0400631 /* FIXME: remove this check when layout segment support is added */
632 if (lgr->range.offset != 0 ||
633 lgr->range.length != NFS4_MAX_UINT64) {
634 dprintk("%s Only whole file layouts supported. Use MDS i/o\n",
635 __func__);
636 goto out;
637 }
638
Andy Adamson16b374c2010-10-20 00:18:04 -0400639 if (fl->pattern_offset > lgr->range.offset) {
Jim Rees3b6445a2011-02-22 19:31:57 -0500640 dprintk("%s pattern_offset %lld too large\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400641 __func__, fl->pattern_offset);
642 goto out;
643 }
644
Weston Andros Adamsonc6194272014-05-15 11:56:56 -0400645 if (!fl->stripe_unit) {
Benny Halevy75247af2011-02-22 15:56:01 -0800646 dprintk("%s Invalid stripe unit (%u)\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400647 __func__, fl->stripe_unit);
648 goto out;
649 }
650
651 /* find and reference the deviceid */
Benny Halevy35c8bb52011-05-24 18:04:02 +0300652 d = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode)->pnfs_curr_ld,
653 NFS_SERVER(lo->plh_inode)->nfs_client, id);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400654 if (d == NULL) {
Trond Myklebustcd5875f2013-05-20 11:42:54 -0400655 dsaddr = filelayout_get_device_info(lo->plh_inode, id,
656 lo->plh_lc_cred, gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400657 if (dsaddr == NULL)
658 goto out;
Benny Halevya1eaecb2011-05-19 22:14:47 -0400659 } else
660 dsaddr = container_of(d, struct nfs4_file_layout_dsaddr, id_node);
Trond Myklebust1dfed272012-09-18 19:51:12 -0400661 /* Found deviceid is unavailable */
662 if (filelayout_test_devid_unavailable(&dsaddr->id_node))
Andy Adamsonc47abcf2011-06-15 17:52:40 -0400663 goto out_put;
664
Andy Adamson16b374c2010-10-20 00:18:04 -0400665 fl->dsaddr = dsaddr;
666
Chuck Levere4149662011-10-25 12:18:03 -0400667 if (fl->first_stripe_index >= dsaddr->stripe_count) {
668 dprintk("%s Bad first_stripe_index %u\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400669 __func__, fl->first_stripe_index);
670 goto out_put;
671 }
672
673 if ((fl->stripe_type == STRIPE_SPARSE &&
674 fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) ||
675 (fl->stripe_type == STRIPE_DENSE &&
676 fl->num_fh != dsaddr->stripe_count)) {
677 dprintk("%s num_fh %u not valid for given packing\n",
678 __func__, fl->num_fh);
679 goto out_put;
680 }
681
Andy Adamson16b374c2010-10-20 00:18:04 -0400682 status = 0;
683out:
684 dprintk("--> %s returns %d\n", __func__, status);
685 return status;
686out_put:
Christoph Hellwigea8eecd2011-03-01 01:34:21 +0000687 nfs4_fl_put_deviceid(dsaddr);
Andy Adamson16b374c2010-10-20 00:18:04 -0400688 goto out;
689}
690
691static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl)
692{
693 int i;
694
695 for (i = 0; i < fl->num_fh; i++) {
696 if (!fl->fh_array[i])
697 break;
698 kfree(fl->fh_array[i]);
699 }
700 kfree(fl->fh_array);
701 fl->fh_array = NULL;
702}
703
704static void
705_filelayout_free_lseg(struct nfs4_filelayout_segment *fl)
706{
707 filelayout_free_fh_array(fl);
708 kfree(fl);
709}
710
711static int
712filelayout_decode_layout(struct pnfs_layout_hdr *flo,
713 struct nfs4_filelayout_segment *fl,
714 struct nfs4_layoutget_res *lgr,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400715 struct nfs4_deviceid *id,
716 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400717{
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400718 struct xdr_stream stream;
Benny Halevyf7da7a12011-05-19 14:16:47 -0400719 struct xdr_buf buf;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400720 struct page *scratch;
721 __be32 *p;
Andy Adamson16b374c2010-10-20 00:18:04 -0400722 uint32_t nfl_util;
723 int i;
724
725 dprintk("%s: set_layout_map Begin\n", __func__);
726
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400727 scratch = alloc_page(gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400728 if (!scratch)
729 return -ENOMEM;
730
Benny Halevyf7da7a12011-05-19 14:16:47 -0400731 xdr_init_decode_pages(&stream, &buf, lgr->layoutp->pages, lgr->layoutp->len);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400732 xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE);
733
734 /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8),
735 * num_fh (4) */
736 p = xdr_inline_decode(&stream, NFS4_DEVICEID4_SIZE + 20);
737 if (unlikely(!p))
738 goto out_err;
739
Andy Adamson16b374c2010-10-20 00:18:04 -0400740 memcpy(id, p, sizeof(*id));
741 p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
Benny Halevya1eaecb2011-05-19 22:14:47 -0400742 nfs4_print_deviceid(id);
Andy Adamson16b374c2010-10-20 00:18:04 -0400743
744 nfl_util = be32_to_cpup(p++);
745 if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS)
746 fl->commit_through_mds = 1;
747 if (nfl_util & NFL4_UFLG_DENSE)
748 fl->stripe_type = STRIPE_DENSE;
749 else
750 fl->stripe_type = STRIPE_SPARSE;
751 fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK;
752
753 fl->first_stripe_index = be32_to_cpup(p++);
754 p = xdr_decode_hyper(p, &fl->pattern_offset);
755 fl->num_fh = be32_to_cpup(p++);
756
757 dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n",
758 __func__, nfl_util, fl->num_fh, fl->first_stripe_index,
759 fl->pattern_offset);
760
Andy Adamsoncec765c2011-06-13 18:36:17 -0400761 /* Note that a zero value for num_fh is legal for STRIPE_SPARSE.
762 * Futher checking is done in filelayout_check_layout */
Chuck Levere4149662011-10-25 12:18:03 -0400763 if (fl->num_fh >
Andy Adamsoncec765c2011-06-13 18:36:17 -0400764 max(NFS4_PNFS_MAX_STRIPE_CNT, NFS4_PNFS_MAX_MULTI_CNT))
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400765 goto out_err;
766
Andy Adamsoncec765c2011-06-13 18:36:17 -0400767 if (fl->num_fh > 0) {
Trond Myklebust1813bad2012-10-11 14:36:52 -0400768 fl->fh_array = kcalloc(fl->num_fh, sizeof(fl->fh_array[0]),
Andy Adamsoncec765c2011-06-13 18:36:17 -0400769 gfp_flags);
770 if (!fl->fh_array)
771 goto out_err;
772 }
Andy Adamson16b374c2010-10-20 00:18:04 -0400773
774 for (i = 0; i < fl->num_fh; i++) {
775 /* Do we want to use a mempool here? */
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400776 fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), gfp_flags);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400777 if (!fl->fh_array[i])
778 goto out_err_free;
779
780 p = xdr_inline_decode(&stream, 4);
781 if (unlikely(!p))
782 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400783 fl->fh_array[i]->size = be32_to_cpup(p++);
784 if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) {
Weston Andros Adamsonf9fd2d92012-01-26 13:32:22 -0500785 printk(KERN_ERR "NFS: Too big fh %d received %d\n",
Andy Adamson16b374c2010-10-20 00:18:04 -0400786 i, fl->fh_array[i]->size);
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400787 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400788 }
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400789
790 p = xdr_inline_decode(&stream, fl->fh_array[i]->size);
791 if (unlikely(!p))
792 goto out_err_free;
Andy Adamson16b374c2010-10-20 00:18:04 -0400793 memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size);
Andy Adamson16b374c2010-10-20 00:18:04 -0400794 dprintk("DEBUG: %s: fh len %d\n", __func__,
795 fl->fh_array[i]->size);
796 }
797
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400798 __free_page(scratch);
Andy Adamson16b374c2010-10-20 00:18:04 -0400799 return 0;
Weston Andros Adamson35124a02011-03-24 16:48:21 -0400800
801out_err_free:
802 filelayout_free_fh_array(fl);
803out_err:
804 __free_page(scratch);
805 return -EIO;
Andy Adamson16b374c2010-10-20 00:18:04 -0400806}
807
Fred Isamanc8795132011-03-23 13:27:49 +0000808static void
809filelayout_free_lseg(struct pnfs_layout_segment *lseg)
810{
811 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
812
813 dprintk("--> %s\n", __func__);
814 nfs4_fl_put_deviceid(fl->dsaddr);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400815 /* This assumes a single RW lseg */
816 if (lseg->pls_range.iomode == IOMODE_RW) {
817 struct nfs4_filelayout *flo;
818
819 flo = FILELAYOUT_FROM_HDR(lseg->pls_layout);
820 flo->commit_info.nbuckets = 0;
821 kfree(flo->commit_info.buckets);
822 flo->commit_info.buckets = NULL;
823 }
Fred Isamanc8795132011-03-23 13:27:49 +0000824 _filelayout_free_lseg(fl);
825}
826
Fred Isaman799ba8d2012-04-20 14:47:38 -0400827static int
828filelayout_alloc_commit_info(struct pnfs_layout_segment *lseg,
Fred Isamanea2cf222012-04-20 14:47:53 -0400829 struct nfs_commit_info *cinfo,
Fred Isaman799ba8d2012-04-20 14:47:38 -0400830 gfp_t gfp_flags)
831{
832 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
Fred Isamanea2cf222012-04-20 14:47:53 -0400833 struct pnfs_commit_bucket *buckets;
Weston Andros Adamsondd7663e2014-05-15 11:56:49 -0400834 int size, i;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400835
836 if (fl->commit_through_mds)
837 return 0;
Weston Andros Adamsondd7663e2014-05-15 11:56:49 -0400838
839 size = (fl->stripe_type == STRIPE_SPARSE) ?
840 fl->dsaddr->ds_num : fl->dsaddr->stripe_count;
841
842 if (cinfo->ds->nbuckets >= size) {
Fred Isaman799ba8d2012-04-20 14:47:38 -0400843 /* This assumes there is only one IOMODE_RW lseg. What
844 * we really want to do is have a layout_hdr level
845 * dictionary of <multipath_list4, fh> keys, each
846 * associated with a struct list_head, populated by calls
847 * to filelayout_write_pagelist().
848 * */
849 return 0;
850 }
851
Fred Isamanea2cf222012-04-20 14:47:53 -0400852 buckets = kcalloc(size, sizeof(struct pnfs_commit_bucket),
Fred Isaman799ba8d2012-04-20 14:47:38 -0400853 gfp_flags);
854 if (!buckets)
855 return -ENOMEM;
Weston Andros Adamsondd7663e2014-05-15 11:56:49 -0400856 for (i = 0; i < size; i++) {
857 INIT_LIST_HEAD(&buckets[i].written);
858 INIT_LIST_HEAD(&buckets[i].committing);
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400859 /* mark direct verifier as unset */
860 buckets[i].direct_verf.committed = NFS_INVALID_STABLE_HOW;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400861 }
Weston Andros Adamsondd7663e2014-05-15 11:56:49 -0400862
863 spin_lock(cinfo->lock);
864 if (cinfo->ds->nbuckets >= size)
865 goto out;
866 for (i = 0; i < cinfo->ds->nbuckets; i++) {
867 list_splice(&cinfo->ds->buckets[i].written,
868 &buckets[i].written);
869 list_splice(&cinfo->ds->buckets[i].committing,
870 &buckets[i].committing);
Weston Andros Adamson5002c582014-05-15 11:56:54 -0400871 buckets[i].direct_verf.committed =
872 cinfo->ds->buckets[i].direct_verf.committed;
Weston Andros Adamsondd7663e2014-05-15 11:56:49 -0400873 buckets[i].wlseg = cinfo->ds->buckets[i].wlseg;
874 buckets[i].clseg = cinfo->ds->buckets[i].clseg;
875 }
876 swap(cinfo->ds->buckets, buckets);
877 cinfo->ds->nbuckets = size;
878out:
879 spin_unlock(cinfo->lock);
880 kfree(buckets);
881 return 0;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400882}
883
Andy Adamson16b374c2010-10-20 00:18:04 -0400884static struct pnfs_layout_segment *
885filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid,
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400886 struct nfs4_layoutget_res *lgr,
887 gfp_t gfp_flags)
Andy Adamson16b374c2010-10-20 00:18:04 -0400888{
889 struct nfs4_filelayout_segment *fl;
890 int rc;
891 struct nfs4_deviceid id;
892
893 dprintk("--> %s\n", __func__);
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400894 fl = kzalloc(sizeof(*fl), gfp_flags);
Andy Adamson16b374c2010-10-20 00:18:04 -0400895 if (!fl)
896 return NULL;
897
Trond Myklebusta75b9df2011-05-11 18:00:51 -0400898 rc = filelayout_decode_layout(layoutid, fl, lgr, &id, gfp_flags);
899 if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id, gfp_flags)) {
Andy Adamson16b374c2010-10-20 00:18:04 -0400900 _filelayout_free_lseg(fl);
901 return NULL;
902 }
903 return &fl->generic_hdr;
904}
905
Fred Isaman94ad1c82011-03-01 01:34:14 +0000906/*
907 * filelayout_pg_test(). Called by nfs_can_coalesce_requests()
908 *
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400909 * Return 0 if @req cannot be coalesced into @pgio, otherwise return the number
910 * of bytes (maximum @req->wb_bytes) that can be coalesced.
Fred Isaman94ad1c82011-03-01 01:34:14 +0000911 */
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400912static size_t
Fred Isaman94ad1c82011-03-01 01:34:14 +0000913filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
914 struct nfs_page *req)
915{
Weston Andros Adamson0f9c4292014-05-15 11:56:51 -0400916 unsigned int size;
Fred Isaman94ad1c82011-03-01 01:34:14 +0000917 u64 p_stripe, r_stripe;
Weston Andros Adamsonc6194272014-05-15 11:56:56 -0400918 u32 stripe_offset;
919 u64 segment_offset = pgio->pg_lseg->pls_range.offset;
920 u32 stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit;
Fred Isaman94ad1c82011-03-01 01:34:14 +0000921
Weston Andros Adamson0f9c4292014-05-15 11:56:51 -0400922 /* calls nfs_generic_pg_test */
923 size = pnfs_generic_pg_test(pgio, prev, req);
924 if (!size)
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400925 return 0;
Benny Halevy89a58e32011-05-25 20:54:40 +0300926
Weston Andros Adamsonc6194272014-05-15 11:56:56 -0400927 /* see if req and prev are in the same stripe */
Weston Andros Adamson0f9c4292014-05-15 11:56:51 -0400928 if (prev) {
Weston Andros Adamsonc6194272014-05-15 11:56:56 -0400929 p_stripe = (u64)req_offset(prev) - segment_offset;
930 r_stripe = (u64)req_offset(req) - segment_offset;
Weston Andros Adamson0f9c4292014-05-15 11:56:51 -0400931 do_div(p_stripe, stripe_unit);
932 do_div(r_stripe, stripe_unit);
Fred Isaman94ad1c82011-03-01 01:34:14 +0000933
Weston Andros Adamson0f9c4292014-05-15 11:56:51 -0400934 if (p_stripe != r_stripe)
935 return 0;
936 }
Weston Andros Adamsonc6194272014-05-15 11:56:56 -0400937
938 /* calculate remaining bytes in the current stripe */
939 div_u64_rem((u64)req_offset(req) - segment_offset,
940 stripe_unit,
941 &stripe_offset);
942 WARN_ON_ONCE(stripe_offset > stripe_unit);
943 if (stripe_offset >= stripe_unit)
944 return 0;
945 return min(stripe_unit - (unsigned int)stripe_offset, size);
Fred Isaman94ad1c82011-03-01 01:34:14 +0000946}
947
Trond Myklebust17280172012-03-11 13:11:00 -0400948static void
Andy Adamson7c24d942011-06-13 18:22:38 -0400949filelayout_pg_init_read(struct nfs_pageio_descriptor *pgio,
950 struct nfs_page *req)
951{
Weston Andros Adamsonc6194272014-05-15 11:56:56 -0400952 if (!pgio->pg_lseg)
953 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
Andy Adamson7c24d942011-06-13 18:22:38 -0400954 req->wb_context,
955 0,
956 NFS4_MAX_UINT64,
957 IOMODE_READ,
958 GFP_KERNEL);
959 /* If no lseg, fall back to read through mds */
960 if (pgio->pg_lseg == NULL)
Trond Myklebust1f945352011-07-13 15:59:57 -0400961 nfs_pageio_reset_read_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400962}
963
Trond Myklebust17280172012-03-11 13:11:00 -0400964static void
Andy Adamson7c24d942011-06-13 18:22:38 -0400965filelayout_pg_init_write(struct nfs_pageio_descriptor *pgio,
966 struct nfs_page *req)
967{
Fred Isamanea2cf222012-04-20 14:47:53 -0400968 struct nfs_commit_info cinfo;
Fred Isaman799ba8d2012-04-20 14:47:38 -0400969 int status;
970
Weston Andros Adamsonc6194272014-05-15 11:56:56 -0400971 if (!pgio->pg_lseg)
972 pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
Andy Adamson7c24d942011-06-13 18:22:38 -0400973 req->wb_context,
974 0,
975 NFS4_MAX_UINT64,
976 IOMODE_RW,
977 GFP_NOFS);
978 /* If no lseg, fall back to write through mds */
979 if (pgio->pg_lseg == NULL)
Fred Isaman799ba8d2012-04-20 14:47:38 -0400980 goto out_mds;
Fred Isamanea2cf222012-04-20 14:47:53 -0400981 nfs_init_cinfo(&cinfo, pgio->pg_inode, pgio->pg_dreq);
982 status = filelayout_alloc_commit_info(pgio->pg_lseg, &cinfo, GFP_NOFS);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400983 if (status < 0) {
Trond Myklebust9369a432012-09-18 20:57:08 -0400984 pnfs_put_lseg(pgio->pg_lseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -0400985 pgio->pg_lseg = NULL;
986 goto out_mds;
987 }
988 return;
989out_mds:
990 nfs_pageio_reset_write_mds(pgio);
Andy Adamson7c24d942011-06-13 18:22:38 -0400991}
992
Trond Myklebust1751c362011-06-10 13:30:23 -0400993static const struct nfs_pageio_ops filelayout_pg_read_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -0400994 .pg_init = filelayout_pg_init_read,
Trond Myklebust1751c362011-06-10 13:30:23 -0400995 .pg_test = filelayout_pg_test,
Trond Myklebust493292d2011-07-13 15:58:28 -0400996 .pg_doio = pnfs_generic_pg_readpages,
Trond Myklebust1751c362011-06-10 13:30:23 -0400997};
998
999static const struct nfs_pageio_ops filelayout_pg_write_ops = {
Andy Adamson7c24d942011-06-13 18:22:38 -04001000 .pg_init = filelayout_pg_init_write,
Trond Myklebust1751c362011-06-10 13:30:23 -04001001 .pg_test = filelayout_pg_test,
Trond Myklebustdce81292011-07-13 15:59:19 -04001002 .pg_doio = pnfs_generic_pg_writepages,
Trond Myklebust1751c362011-06-10 13:30:23 -04001003};
1004
Fred Isamane0c2b382011-03-23 13:27:53 +00001005static u32 select_bucket_index(struct nfs4_filelayout_segment *fl, u32 j)
1006{
1007 if (fl->stripe_type == STRIPE_SPARSE)
1008 return nfs4_fl_calc_ds_index(&fl->generic_hdr, j);
1009 else
1010 return j;
1011}
1012
Fred Isamand6d6dc72012-03-08 17:29:35 -05001013/* The generic layer is about to remove the req from the commit list.
1014 * If this will make the bucket empty, it will need to put the lseg reference.
Weston Andros Adamson411a99a2014-07-17 20:42:19 -04001015 * Note this is must be called holding the inode (/cinfo) lock
Fred Isamand6d6dc72012-03-08 17:29:35 -05001016 */
Trond Myklebust8dd37752012-03-15 17:16:40 -04001017static void
Fred Isamanea2cf222012-04-20 14:47:53 -04001018filelayout_clear_request_commit(struct nfs_page *req,
1019 struct nfs_commit_info *cinfo)
Fred Isamane0c2b382011-03-23 13:27:53 +00001020{
Trond Myklebust8dd37752012-03-15 17:16:40 -04001021 struct pnfs_layout_segment *freeme = NULL;
Trond Myklebust8dd37752012-03-15 17:16:40 -04001022
Trond Myklebust8dd37752012-03-15 17:16:40 -04001023 if (!test_and_clear_bit(PG_COMMIT_TO_DS, &req->wb_flags))
1024 goto out;
Fred Isamanea2cf222012-04-20 14:47:53 -04001025 cinfo->ds->nwritten--;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001026 if (list_is_singular(&req->wb_list)) {
Fred Isamanea2cf222012-04-20 14:47:53 -04001027 struct pnfs_commit_bucket *bucket;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001028
Fred Isaman799ba8d2012-04-20 14:47:38 -04001029 bucket = list_first_entry(&req->wb_list,
Fred Isamanea2cf222012-04-20 14:47:53 -04001030 struct pnfs_commit_bucket,
Fred Isaman799ba8d2012-04-20 14:47:38 -04001031 written);
1032 freeme = bucket->wlseg;
1033 bucket->wlseg = NULL;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001034 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001035out:
Fred Isamanea2cf222012-04-20 14:47:53 -04001036 nfs_request_remove_commit_list(req, cinfo);
Weston Andros Adamson411a99a2014-07-17 20:42:19 -04001037 pnfs_put_lseg_async(freeme);
Fred Isamand6d6dc72012-03-08 17:29:35 -05001038}
1039
Peng Taoc8a32922014-07-03 13:07:45 +08001040static void
1041filelayout_mark_request_commit(struct nfs_page *req,
1042 struct pnfs_layout_segment *lseg,
1043 struct nfs_commit_info *cinfo)
1044
Fred Isamand6d6dc72012-03-08 17:29:35 -05001045{
Fred Isamane0c2b382011-03-23 13:27:53 +00001046 struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg);
1047 u32 i, j;
1048 struct list_head *list;
Fred Isamanea2cf222012-04-20 14:47:53 -04001049 struct pnfs_commit_bucket *buckets;
Fred Isamane0c2b382011-03-23 13:27:53 +00001050
Peng Taoc8a32922014-07-03 13:07:45 +08001051 if (fl->commit_through_mds) {
1052 list = &cinfo->mds->list;
1053 spin_lock(cinfo->lock);
1054 goto mds_commit;
1055 }
Fred Isamand6d6dc72012-03-08 17:29:35 -05001056
Fred Isamane0c2b382011-03-23 13:27:53 +00001057 /* Note that we are calling nfs4_fl_calc_j_index on each page
1058 * that ends up being committed to a data server. An attractive
1059 * alternative is to add a field to nfs_write_data and nfs_page
1060 * to store the value calculated in filelayout_write_pagelist
1061 * and just use that here.
1062 */
Fred Isamanb5542842012-04-20 14:47:43 -04001063 j = nfs4_fl_calc_j_index(lseg, req_offset(req));
Fred Isamane0c2b382011-03-23 13:27:53 +00001064 i = select_bucket_index(fl, j);
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001065 spin_lock(cinfo->lock);
Fred Isamanea2cf222012-04-20 14:47:53 -04001066 buckets = cinfo->ds->buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001067 list = &buckets[i].written;
Fred Isamane0c2b382011-03-23 13:27:53 +00001068 if (list_empty(list)) {
Fred Isamand6d6dc72012-03-08 17:29:35 -05001069 /* Non-empty buckets hold a reference on the lseg. That ref
1070 * is normally transferred to the COMMIT call and released
1071 * there. It could also be released if the last req is pulled
1072 * off due to a rewrite, in which case it will be done in
Fred Isaman799ba8d2012-04-20 14:47:38 -04001073 * filelayout_clear_request_commit
Fred Isamand6d6dc72012-03-08 17:29:35 -05001074 */
Trond Myklebust9369a432012-09-18 20:57:08 -04001075 buckets[i].wlseg = pnfs_get_lseg(lseg);
Fred Isamane0c2b382011-03-23 13:27:53 +00001076 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001077 set_bit(PG_COMMIT_TO_DS, &req->wb_flags);
Fred Isamanea2cf222012-04-20 14:47:53 -04001078 cinfo->ds->nwritten++;
Peng Taoc8a32922014-07-03 13:07:45 +08001079
1080mds_commit:
1081 /* nfs_request_add_commit_list(). We need to add req to list without
1082 * dropping cinfo lock.
1083 */
1084 set_bit(PG_CLEAN, &(req)->wb_flags);
1085 nfs_list_add_request(req, list);
1086 cinfo->mds->ncommit++;
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001087 spin_unlock(cinfo->lock);
Peng Taoc8a32922014-07-03 13:07:45 +08001088 if (!cinfo->dreq) {
1089 inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
1090 inc_bdi_stat(page_file_mapping(req->wb_page)->backing_dev_info,
1091 BDI_RECLAIMABLE);
1092 __mark_inode_dirty(req->wb_context->dentry->d_inode,
1093 I_DIRTY_DATASYNC);
1094 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001095}
1096
Fred Isamane0c2b382011-03-23 13:27:53 +00001097static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i)
1098{
1099 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
1100
1101 if (flseg->stripe_type == STRIPE_SPARSE)
1102 return i;
1103 else
1104 return nfs4_fl_calc_ds_index(lseg, i);
1105}
1106
1107static struct nfs_fh *
1108select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i)
1109{
1110 struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg);
1111
1112 if (flseg->stripe_type == STRIPE_SPARSE) {
1113 if (flseg->num_fh == 1)
1114 i = 0;
1115 else if (flseg->num_fh == 0)
1116 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
1117 return NULL;
1118 }
1119 return flseg->fh_array[i];
1120}
1121
Fred Isaman0b7c0152012-04-20 14:47:39 -04001122static int filelayout_initiate_commit(struct nfs_commit_data *data, int how)
Fred Isamane0c2b382011-03-23 13:27:53 +00001123{
1124 struct pnfs_layout_segment *lseg = data->lseg;
1125 struct nfs4_pnfs_ds *ds;
Andy Adamson0e201622013-09-06 14:14:00 -04001126 struct rpc_clnt *ds_clnt;
Fred Isamane0c2b382011-03-23 13:27:53 +00001127 u32 idx;
1128 struct nfs_fh *fh;
1129
1130 idx = calc_ds_index_from_commit(lseg, data->ds_commit_index);
1131 ds = nfs4_fl_prepare_ds(lseg, idx);
Andy Adamson0e201622013-09-06 14:14:00 -04001132 if (!ds)
1133 goto out_err;
1134
1135 ds_clnt = nfs4_find_or_create_ds_client(ds->ds_clp, data->inode);
1136 if (IS_ERR(ds_clnt))
1137 goto out_err;
1138
Andy Adamson3a7936c2012-04-27 17:53:51 -04001139 dprintk("%s ino %lu, how %d cl_count %d\n", __func__,
1140 data->inode->i_ino, how, atomic_read(&ds->ds_clp->cl_count));
Fred Isaman0b7c0152012-04-20 14:47:39 -04001141 data->commit_done_cb = filelayout_commit_done_cb;
Andy Adamson3a7936c2012-04-27 17:53:51 -04001142 atomic_inc(&ds->ds_clp->cl_count);
Fred Isamane0c2b382011-03-23 13:27:53 +00001143 data->ds_clp = ds->ds_clp;
1144 fh = select_ds_fh_from_commit(lseg, data->ds_commit_index);
1145 if (fh)
1146 data->args.fh = fh;
Andy Adamson0e201622013-09-06 14:14:00 -04001147 return nfs_initiate_commit(ds_clnt, data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -04001148 &filelayout_commit_call_ops, how,
1149 RPC_TASK_SOFTCONN);
Andy Adamson0e201622013-09-06 14:14:00 -04001150out_err:
1151 prepare_to_resend_writes(data);
1152 filelayout_commit_release(data);
1153 return -EAGAIN;
Fred Isamane0c2b382011-03-23 13:27:53 +00001154}
1155
Trond Myklebust8dd37752012-03-15 17:16:40 -04001156static int
Fred Isaman1763da12012-04-20 14:47:57 -04001157transfer_commit_list(struct list_head *src, struct list_head *dst,
1158 struct nfs_commit_info *cinfo, int max)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001159{
Trond Myklebust8dd37752012-03-15 17:16:40 -04001160 struct nfs_page *req, *tmp;
1161 int ret = 0;
1162
1163 list_for_each_entry_safe(req, tmp, src, wb_list) {
1164 if (!nfs_lock_request(req))
1165 continue;
Trond Myklebust53b8ee32012-05-22 16:36:27 -04001166 kref_get(&req->wb_kref);
Fred Isamanea2cf222012-04-20 14:47:53 -04001167 if (cond_resched_lock(cinfo->lock))
Trond Myklebust3b3be882012-03-17 11:59:30 -04001168 list_safe_reset_next(req, tmp, wb_list);
Fred Isamanea2cf222012-04-20 14:47:53 -04001169 nfs_request_remove_commit_list(req, cinfo);
Trond Myklebust8dd37752012-03-15 17:16:40 -04001170 clear_bit(PG_COMMIT_TO_DS, &req->wb_flags);
1171 nfs_list_add_request(req, dst);
1172 ret++;
Fred Isaman1763da12012-04-20 14:47:57 -04001173 if ((ret == max) && !cinfo->dreq)
Trond Myklebust8dd37752012-03-15 17:16:40 -04001174 break;
1175 }
Fred Isaman1763da12012-04-20 14:47:57 -04001176 return ret;
1177}
1178
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001179/* Note called with cinfo->lock held. */
Fred Isaman1763da12012-04-20 14:47:57 -04001180static int
1181filelayout_scan_ds_commit_list(struct pnfs_commit_bucket *bucket,
1182 struct nfs_commit_info *cinfo,
1183 int max)
1184{
1185 struct list_head *src = &bucket->written;
1186 struct list_head *dst = &bucket->committing;
1187 int ret;
1188
1189 ret = transfer_commit_list(src, dst, cinfo, max);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001190 if (ret) {
Fred Isamanea2cf222012-04-20 14:47:53 -04001191 cinfo->ds->nwritten -= ret;
1192 cinfo->ds->ncommitting += ret;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001193 bucket->clseg = bucket->wlseg;
1194 if (list_empty(src))
1195 bucket->wlseg = NULL;
1196 else
Trond Myklebust9369a432012-09-18 20:57:08 -04001197 pnfs_get_lseg(bucket->clseg);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001198 }
Trond Myklebust8dd37752012-03-15 17:16:40 -04001199 return ret;
1200}
1201
Fred Isamand6d6dc72012-03-08 17:29:35 -05001202/* Move reqs from written to committing lists, returning count of number moved.
Fred Isamanea2cf222012-04-20 14:47:53 -04001203 * Note called with cinfo->lock held.
Fred Isamand6d6dc72012-03-08 17:29:35 -05001204 */
Fred Isamanea2cf222012-04-20 14:47:53 -04001205static int filelayout_scan_commit_lists(struct nfs_commit_info *cinfo,
1206 int max)
Fred Isamand6d6dc72012-03-08 17:29:35 -05001207{
Fred Isamand6d6dc72012-03-08 17:29:35 -05001208 int i, rv = 0, cnt;
1209
Fred Isamanea2cf222012-04-20 14:47:53 -04001210 for (i = 0; i < cinfo->ds->nbuckets && max != 0; i++) {
1211 cnt = filelayout_scan_ds_commit_list(&cinfo->ds->buckets[i],
1212 cinfo, max);
Fred Isamand6d6dc72012-03-08 17:29:35 -05001213 max -= cnt;
1214 rv += cnt;
1215 }
Fred Isamand6d6dc72012-03-08 17:29:35 -05001216 return rv;
1217}
1218
Fred Isaman1763da12012-04-20 14:47:57 -04001219/* Pull everything off the committing lists and dump into @dst */
1220static void filelayout_recover_commit_reqs(struct list_head *dst,
1221 struct nfs_commit_info *cinfo)
1222{
1223 struct pnfs_commit_bucket *b;
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001224 struct pnfs_layout_segment *freeme;
Fred Isaman1763da12012-04-20 14:47:57 -04001225 int i;
1226
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001227restart:
Weston Andros Adamson471252c2014-01-21 15:21:33 -05001228 spin_lock(cinfo->lock);
Fred Isaman1763da12012-04-20 14:47:57 -04001229 for (i = 0, b = cinfo->ds->buckets; i < cinfo->ds->nbuckets; i++, b++) {
1230 if (transfer_commit_list(&b->written, dst, cinfo, 0)) {
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001231 freeme = b->wlseg;
Fred Isaman1763da12012-04-20 14:47:57 -04001232 b->wlseg = NULL;
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001233 spin_unlock(cinfo->lock);
1234 pnfs_put_lseg(freeme);
1235 goto restart;
Fred Isaman1763da12012-04-20 14:47:57 -04001236 }
1237 }
1238 cinfo->ds->nwritten = 0;
Weston Andros Adamson471252c2014-01-21 15:21:33 -05001239 spin_unlock(cinfo->lock);
Fred Isaman1763da12012-04-20 14:47:57 -04001240}
1241
Weston Andros Adamson02d14262014-07-17 20:42:17 -04001242/* filelayout_search_commit_reqs - Search lists in @cinfo for the head reqest
1243 * for @page
1244 * @cinfo - commit info for current inode
1245 * @page - page to search for matching head request
1246 *
1247 * Returns a the head request if one is found, otherwise returns NULL.
1248 */
1249static struct nfs_page *
1250filelayout_search_commit_reqs(struct nfs_commit_info *cinfo, struct page *page)
1251{
1252 struct nfs_page *freq, *t;
1253 struct pnfs_commit_bucket *b;
1254 int i;
1255
1256 /* Linearly search the commit lists for each bucket until a matching
1257 * request is found */
1258 for (i = 0, b = cinfo->ds->buckets; i < cinfo->ds->nbuckets; i++, b++) {
1259 list_for_each_entry_safe(freq, t, &b->written, wb_list) {
1260 if (freq->wb_page == page)
1261 return freq->wb_head;
1262 }
1263 list_for_each_entry_safe(freq, t, &b->committing, wb_list) {
1264 if (freq->wb_page == page)
1265 return freq->wb_head;
1266 }
1267 }
1268
1269 return NULL;
1270}
1271
Peng Tao0b0bc6e2014-07-03 13:07:46 +08001272static void filelayout_retry_commit(struct nfs_commit_info *cinfo, int idx)
1273{
1274 struct pnfs_ds_commit_info *fl_cinfo = cinfo->ds;
Weston Andros Adamson224ecbf2014-09-09 17:51:47 -04001275 struct pnfs_commit_bucket *bucket;
Peng Tao0b0bc6e2014-07-03 13:07:46 +08001276 struct pnfs_layout_segment *freeme;
1277 int i;
1278
Weston Andros Adamson224ecbf2014-09-09 17:51:47 -04001279 for (i = idx; i < fl_cinfo->nbuckets; i++) {
1280 bucket = &fl_cinfo->buckets[i];
Peng Tao0b0bc6e2014-07-03 13:07:46 +08001281 if (list_empty(&bucket->committing))
1282 continue;
1283 nfs_retry_commit(&bucket->committing, bucket->clseg, cinfo);
1284 spin_lock(cinfo->lock);
1285 freeme = bucket->clseg;
1286 bucket->clseg = NULL;
1287 spin_unlock(cinfo->lock);
1288 pnfs_put_lseg(freeme);
1289 }
1290}
1291
Trond Myklebust9390f422012-03-16 13:52:45 -04001292static unsigned int
Fred Isamanea2cf222012-04-20 14:47:53 -04001293alloc_ds_commits(struct nfs_commit_info *cinfo, struct list_head *list)
Fred Isamane0c2b382011-03-23 13:27:53 +00001294{
Fred Isamanea2cf222012-04-20 14:47:53 -04001295 struct pnfs_ds_commit_info *fl_cinfo;
1296 struct pnfs_commit_bucket *bucket;
Fred Isaman0b7c0152012-04-20 14:47:39 -04001297 struct nfs_commit_data *data;
Peng Tao0b0bc6e2014-07-03 13:07:46 +08001298 int i;
Trond Myklebust9390f422012-03-16 13:52:45 -04001299 unsigned int nreq = 0;
Fred Isamane0c2b382011-03-23 13:27:53 +00001300
Fred Isamanea2cf222012-04-20 14:47:53 -04001301 fl_cinfo = cinfo->ds;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001302 bucket = fl_cinfo->buckets;
1303 for (i = 0; i < fl_cinfo->nbuckets; i++, bucket++) {
1304 if (list_empty(&bucket->committing))
Fred Isamane0c2b382011-03-23 13:27:53 +00001305 continue;
1306 data = nfs_commitdata_alloc();
1307 if (!data)
Trond Myklebust9390f422012-03-16 13:52:45 -04001308 break;
Fred Isamane0c2b382011-03-23 13:27:53 +00001309 data->ds_commit_index = i;
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001310 spin_lock(cinfo->lock);
Fred Isaman799ba8d2012-04-20 14:47:38 -04001311 data->lseg = bucket->clseg;
1312 bucket->clseg = NULL;
Weston Andros Adamsond201c4d2014-05-15 11:56:40 -04001313 spin_unlock(cinfo->lock);
Fred Isamane0c2b382011-03-23 13:27:53 +00001314 list_add(&data->pages, list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001315 nreq++;
Fred Isamane0c2b382011-03-23 13:27:53 +00001316 }
Fred Isamane0c2b382011-03-23 13:27:53 +00001317
Trond Myklebust9390f422012-03-16 13:52:45 -04001318 /* Clean up on error */
Peng Tao0b0bc6e2014-07-03 13:07:46 +08001319 filelayout_retry_commit(cinfo, i);
Fred Isamane0c2b382011-03-23 13:27:53 +00001320 /* Caller will clean up entries put on list */
Trond Myklebust9390f422012-03-16 13:52:45 -04001321 return nreq;
Fred Isamane0c2b382011-03-23 13:27:53 +00001322}
1323
1324/* This follows nfs_commit_list pretty closely */
1325static int
1326filelayout_commit_pagelist(struct inode *inode, struct list_head *mds_pages,
Fred Isamanea2cf222012-04-20 14:47:53 -04001327 int how, struct nfs_commit_info *cinfo)
Fred Isamane0c2b382011-03-23 13:27:53 +00001328{
Fred Isaman0b7c0152012-04-20 14:47:39 -04001329 struct nfs_commit_data *data, *tmp;
Fred Isamane0c2b382011-03-23 13:27:53 +00001330 LIST_HEAD(list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001331 unsigned int nreq = 0;
Fred Isamane0c2b382011-03-23 13:27:53 +00001332
1333 if (!list_empty(mds_pages)) {
1334 data = nfs_commitdata_alloc();
Trond Myklebust9390f422012-03-16 13:52:45 -04001335 if (data != NULL) {
1336 data->lseg = NULL;
1337 list_add(&data->pages, &list);
1338 nreq++;
Peng Tao0b0bc6e2014-07-03 13:07:46 +08001339 } else {
Fred Isamanea2cf222012-04-20 14:47:53 -04001340 nfs_retry_commit(mds_pages, NULL, cinfo);
Peng Tao0b0bc6e2014-07-03 13:07:46 +08001341 filelayout_retry_commit(cinfo, 0);
1342 cinfo->completion_ops->error_cleanup(NFS_I(inode));
1343 return -ENOMEM;
1344 }
Fred Isamane0c2b382011-03-23 13:27:53 +00001345 }
1346
Fred Isamanea2cf222012-04-20 14:47:53 -04001347 nreq += alloc_ds_commits(cinfo, &list);
Trond Myklebust9390f422012-03-16 13:52:45 -04001348
1349 if (nreq == 0) {
Fred Isamanf453a542012-04-20 14:47:54 -04001350 cinfo->completion_ops->error_cleanup(NFS_I(inode));
Trond Myklebust9390f422012-03-16 13:52:45 -04001351 goto out;
1352 }
1353
Fred Isamanea2cf222012-04-20 14:47:53 -04001354 atomic_add(nreq, &cinfo->mds->rpcs_out);
Fred Isamane0c2b382011-03-23 13:27:53 +00001355
1356 list_for_each_entry_safe(data, tmp, &list, pages) {
1357 list_del_init(&data->pages);
Fred Isamane0c2b382011-03-23 13:27:53 +00001358 if (!data->lseg) {
Fred Isamanf453a542012-04-20 14:47:54 -04001359 nfs_init_commit(data, mds_pages, NULL, cinfo);
Fred Isaman0b7c0152012-04-20 14:47:39 -04001360 nfs_initiate_commit(NFS_CLIENT(inode), data,
Andy Adamson9f0ec1762012-04-27 17:53:44 -04001361 data->mds_ops, how, 0);
Fred Isamane0c2b382011-03-23 13:27:53 +00001362 } else {
Fred Isamanea2cf222012-04-20 14:47:53 -04001363 struct pnfs_commit_bucket *buckets;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001364
Fred Isamanea2cf222012-04-20 14:47:53 -04001365 buckets = cinfo->ds->buckets;
Fred Isamanf453a542012-04-20 14:47:54 -04001366 nfs_init_commit(data, &buckets[data->ds_commit_index].committing, data->lseg, cinfo);
Fred Isamane0c2b382011-03-23 13:27:53 +00001367 filelayout_initiate_commit(data, how);
1368 }
1369 }
Trond Myklebust9390f422012-03-16 13:52:45 -04001370out:
Fred Isamanea2cf222012-04-20 14:47:53 -04001371 cinfo->ds->ncommitting = 0;
Trond Myklebust9390f422012-03-16 13:52:45 -04001372 return PNFS_ATTEMPTED;
Fred Isamane0c2b382011-03-23 13:27:53 +00001373}
1374
Benny Halevy1775bc32011-05-20 13:47:33 +02001375static void
1376filelayout_free_deveiceid_node(struct nfs4_deviceid_node *d)
1377{
1378 nfs4_fl_free_deviceid(container_of(d, struct nfs4_file_layout_dsaddr, id_node));
1379}
1380
Fred Isaman799ba8d2012-04-20 14:47:38 -04001381static struct pnfs_layout_hdr *
1382filelayout_alloc_layout_hdr(struct inode *inode, gfp_t gfp_flags)
1383{
1384 struct nfs4_filelayout *flo;
1385
1386 flo = kzalloc(sizeof(*flo), gfp_flags);
Trond Myklebust6df200f2014-05-29 20:06:55 -04001387 return flo != NULL ? &flo->generic_hdr : NULL;
Fred Isaman799ba8d2012-04-20 14:47:38 -04001388}
1389
1390static void
1391filelayout_free_layout_hdr(struct pnfs_layout_hdr *lo)
1392{
1393 kfree(FILELAYOUT_FROM_HDR(lo));
1394}
1395
Fred Isamanea2cf222012-04-20 14:47:53 -04001396static struct pnfs_ds_commit_info *
1397filelayout_get_ds_info(struct inode *inode)
1398{
Fred Isamandf011742012-04-24 14:50:34 -04001399 struct pnfs_layout_hdr *layout = NFS_I(inode)->layout;
1400
1401 if (layout == NULL)
1402 return NULL;
1403 else
1404 return &FILELAYOUT_FROM_HDR(layout)->commit_info;
Fred Isamanea2cf222012-04-20 14:47:53 -04001405}
1406
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001407static struct pnfs_layoutdriver_type filelayout_type = {
Christoph Hellwigea8eecd2011-03-01 01:34:21 +00001408 .id = LAYOUT_NFSV4_1_FILES,
1409 .name = "LAYOUT_NFSV4_1_FILES",
1410 .owner = THIS_MODULE,
Fred Isaman799ba8d2012-04-20 14:47:38 -04001411 .alloc_layout_hdr = filelayout_alloc_layout_hdr,
1412 .free_layout_hdr = filelayout_free_layout_hdr,
Christoph Hellwigea8eecd2011-03-01 01:34:21 +00001413 .alloc_lseg = filelayout_alloc_lseg,
1414 .free_lseg = filelayout_free_lseg,
Trond Myklebust1751c362011-06-10 13:30:23 -04001415 .pg_read_ops = &filelayout_pg_read_ops,
1416 .pg_write_ops = &filelayout_pg_write_ops,
Fred Isamanea2cf222012-04-20 14:47:53 -04001417 .get_ds_info = &filelayout_get_ds_info,
Trond Myklebust8dd37752012-03-15 17:16:40 -04001418 .mark_request_commit = filelayout_mark_request_commit,
1419 .clear_request_commit = filelayout_clear_request_commit,
Fred Isamand6d6dc72012-03-08 17:29:35 -05001420 .scan_commit_lists = filelayout_scan_commit_lists,
Fred Isaman1763da12012-04-20 14:47:57 -04001421 .recover_commit_reqs = filelayout_recover_commit_reqs,
Weston Andros Adamson02d14262014-07-17 20:42:17 -04001422 .search_commit_reqs = filelayout_search_commit_reqs,
Fred Isamane0c2b382011-03-23 13:27:53 +00001423 .commit_pagelist = filelayout_commit_pagelist,
Andy Adamsondc70d7b2011-03-01 01:34:19 +00001424 .read_pagelist = filelayout_read_pagelist,
Andy Adamson0382b742011-03-03 15:13:45 +00001425 .write_pagelist = filelayout_write_pagelist,
Benny Halevy1775bc32011-05-20 13:47:33 +02001426 .free_deviceid_node = filelayout_free_deveiceid_node,
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001427};
1428
1429static int __init nfs4filelayout_init(void)
1430{
1431 printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n",
1432 __func__);
1433 return pnfs_register_layoutdriver(&filelayout_type);
1434}
1435
1436static void __exit nfs4filelayout_exit(void)
1437{
1438 printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n",
1439 __func__);
1440 pnfs_unregister_layoutdriver(&filelayout_type);
1441}
1442
J. Bruce Fieldsf85ef692011-07-15 19:18:42 -04001443MODULE_ALIAS("nfs-layouttype4-1");
1444
Dean Hildebrand7ab672c2010-10-20 00:18:00 -04001445module_init(nfs4filelayout_init);
1446module_exit(nfs4filelayout_exit);