diff options
author | Tom Haynes <Thomas.Haynes@primarydata.com> | 2014-05-12 17:35:52 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2014-05-29 20:21:56 -0400 |
commit | b5968725f46d9535e908689bd04bf676f71138bb (patch) | |
tree | 9a39fb8ec08c39f0c4193b6ba2d797b0f789744f /fs/nfs/filelayout/filelayout.c | |
parent | 0aa61e78a0f262a2f94bd138831c97749cfca5bf (diff) |
Push the file layout driver into a subdirectory
The object and block layouts already exist in their own
subdirectories. This patch completes the set!
Note that as a layout denotes nfs4 already, I stripped
that prefix out of the file names.
Signed-off-by: Tom Haynes <Thomas.Haynes@primarydata.com>
Acked-by: Jeff Layton <jlayton@poochiereds.net>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs/filelayout/filelayout.c')
-rw-r--r-- | fs/nfs/filelayout/filelayout.c | 1409 |
1 files changed, 1409 insertions, 0 deletions
diff --git a/fs/nfs/filelayout/filelayout.c b/fs/nfs/filelayout/filelayout.c new file mode 100644 index 000000000000..a008e8590417 --- /dev/null +++ b/fs/nfs/filelayout/filelayout.c | |||
@@ -0,0 +1,1409 @@ | |||
1 | /* | ||
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> | ||
33 | #include <linux/nfs_page.h> | ||
34 | #include <linux/module.h> | ||
35 | |||
36 | #include <linux/sunrpc/metrics.h> | ||
37 | |||
38 | #include "../nfs4session.h" | ||
39 | #include "../internal.h" | ||
40 | #include "../delegation.h" | ||
41 | #include "filelayout.h" | ||
42 | #include "../nfs4trace.h" | ||
43 | |||
44 | #define NFSDBG_FACILITY NFSDBG_PNFS_LD | ||
45 | |||
46 | MODULE_LICENSE("GPL"); | ||
47 | MODULE_AUTHOR("Dean Hildebrand <dhildebz@umich.edu>"); | ||
48 | MODULE_DESCRIPTION("The NFSv4 file layout driver"); | ||
49 | |||
50 | #define FILELAYOUT_POLL_RETRY_MAX (15*HZ) | ||
51 | |||
52 | static loff_t | ||
53 | filelayout_get_dense_offset(struct nfs4_filelayout_segment *flseg, | ||
54 | loff_t offset) | ||
55 | { | ||
56 | u32 stripe_width = flseg->stripe_unit * flseg->dsaddr->stripe_count; | ||
57 | u64 stripe_no; | ||
58 | u32 rem; | ||
59 | |||
60 | offset -= flseg->pattern_offset; | ||
61 | stripe_no = div_u64(offset, stripe_width); | ||
62 | div_u64_rem(offset, flseg->stripe_unit, &rem); | ||
63 | |||
64 | return stripe_no * flseg->stripe_unit + rem; | ||
65 | } | ||
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 | */ | ||
71 | static loff_t | ||
72 | filelayout_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 | |||
87 | static void filelayout_reset_write(struct nfs_pgio_data *data) | ||
88 | { | ||
89 | struct nfs_pgio_header *hdr = data->header; | ||
90 | 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 " | ||
94 | "(req %s/%llu, %u bytes @ offset %llu)\n", __func__, | ||
95 | data->task.tk_pid, | ||
96 | hdr->inode->i_sb->s_id, | ||
97 | (unsigned long long)NFS_FILEID(hdr->inode), | ||
98 | 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, | ||
103 | hdr->completion_ops, | ||
104 | hdr->dreq); | ||
105 | } | ||
106 | } | ||
107 | |||
108 | static void filelayout_reset_read(struct nfs_pgio_data *data) | ||
109 | { | ||
110 | struct nfs_pgio_header *hdr = data->header; | ||
111 | 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 " | ||
115 | "(req %s/%llu, %u bytes @ offset %llu)\n", __func__, | ||
116 | data->task.tk_pid, | ||
117 | hdr->inode->i_sb->s_id, | ||
118 | (unsigned long long)NFS_FILEID(hdr->inode), | ||
119 | 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, | ||
124 | hdr->completion_ops, | ||
125 | hdr->dreq); | ||
126 | } | ||
127 | } | ||
128 | |||
129 | static 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; | ||
133 | pnfs_return_layout(inode); | ||
134 | } | ||
135 | |||
136 | static int filelayout_async_handle_error(struct rpc_task *task, | ||
137 | struct nfs4_state *state, | ||
138 | struct nfs_client *clp, | ||
139 | struct pnfs_layout_segment *lseg) | ||
140 | { | ||
141 | struct pnfs_layout_hdr *lo = lseg->pls_layout; | ||
142 | struct inode *inode = lo->plh_inode; | ||
143 | struct nfs_server *mds_server = NFS_SERVER(inode); | ||
144 | struct nfs4_deviceid_node *devid = FILELAYOUT_DEVID_NODE(lseg); | ||
145 | struct nfs_client *mds_client = mds_server->nfs_client; | ||
146 | struct nfs4_slot_table *tbl = &clp->cl_session->fc_slot_table; | ||
147 | |||
148 | if (task->tk_status >= 0) | ||
149 | return 0; | ||
150 | |||
151 | switch (task->tk_status) { | ||
152 | /* MDS state errors */ | ||
153 | case -NFS4ERR_DELEG_REVOKED: | ||
154 | case -NFS4ERR_ADMIN_REVOKED: | ||
155 | case -NFS4ERR_BAD_STATEID: | ||
156 | if (state == NULL) | ||
157 | break; | ||
158 | nfs_remove_bad_delegation(state->inode); | ||
159 | case -NFS4ERR_OPENMODE: | ||
160 | if (state == NULL) | ||
161 | break; | ||
162 | if (nfs4_schedule_stateid_recovery(mds_server, state) < 0) | ||
163 | goto out_bad_stateid; | ||
164 | goto wait_on_recovery; | ||
165 | case -NFS4ERR_EXPIRED: | ||
166 | if (state != NULL) { | ||
167 | if (nfs4_schedule_stateid_recovery(mds_server, state) < 0) | ||
168 | goto out_bad_stateid; | ||
169 | } | ||
170 | nfs4_schedule_lease_recovery(mds_client); | ||
171 | goto wait_on_recovery; | ||
172 | /* DS session errors */ | ||
173 | 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); | ||
183 | nfs4_schedule_session_recovery(clp->cl_session, task->tk_status); | ||
184 | break; | ||
185 | case -NFS4ERR_DELAY: | ||
186 | case -NFS4ERR_GRACE: | ||
187 | rpc_delay(task, FILELAYOUT_POLL_RETRY_MAX); | ||
188 | break; | ||
189 | case -NFS4ERR_RETRY_UNCACHED_REP: | ||
190 | break; | ||
191 | /* 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 | */ | ||
207 | pnfs_destroy_layout(NFS_I(inode)); | ||
208 | rpc_wake_up(&tbl->slot_tbl_waitq); | ||
209 | goto reset; | ||
210 | /* 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__, | ||
219 | task->tk_status); | ||
220 | nfs4_mark_deviceid_unavailable(devid); | ||
221 | set_bit(NFS_LAYOUT_RETURN, &lo->plh_flags); | ||
222 | rpc_wake_up(&tbl->slot_tbl_waitq); | ||
223 | /* fall through */ | ||
224 | default: | ||
225 | reset: | ||
226 | dprintk("%s Retry through MDS. Error %d\n", __func__, | ||
227 | task->tk_status); | ||
228 | return -NFS4ERR_RESET_TO_MDS; | ||
229 | } | ||
230 | out: | ||
231 | task->tk_status = 0; | ||
232 | return -EAGAIN; | ||
233 | out_bad_stateid: | ||
234 | task->tk_status = -EIO; | ||
235 | return 0; | ||
236 | wait_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; | ||
241 | } | ||
242 | |||
243 | /* NFS_PROTO call done callback routines */ | ||
244 | |||
245 | static int filelayout_read_done_cb(struct rpc_task *task, | ||
246 | struct nfs_pgio_data *data) | ||
247 | { | ||
248 | struct nfs_pgio_header *hdr = data->header; | ||
249 | int err; | ||
250 | |||
251 | trace_nfs4_pnfs_read(data, task->tk_status); | ||
252 | err = filelayout_async_handle_error(task, data->args.context->state, | ||
253 | data->ds_clp, hdr->lseg); | ||
254 | |||
255 | switch (err) { | ||
256 | case -NFS4ERR_RESET_TO_MDS: | ||
257 | filelayout_reset_read(data); | ||
258 | return task->tk_status; | ||
259 | case -EAGAIN: | ||
260 | rpc_restart_call_prepare(task); | ||
261 | return -EAGAIN; | ||
262 | } | ||
263 | |||
264 | return 0; | ||
265 | } | ||
266 | |||
267 | /* | ||
268 | * 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 | */ | ||
272 | static void | ||
273 | filelayout_set_layoutcommit(struct nfs_pgio_data *wdata) | ||
274 | { | ||
275 | struct nfs_pgio_header *hdr = wdata->header; | ||
276 | |||
277 | if (FILELAYOUT_LSEG(hdr->lseg)->commit_through_mds || | ||
278 | wdata->res.verf->committed == NFS_FILE_SYNC) | ||
279 | return; | ||
280 | |||
281 | pnfs_set_layoutcommit(wdata); | ||
282 | dprintk("%s ionde %lu pls_end_pos %lu\n", __func__, hdr->inode->i_ino, | ||
283 | (unsigned long) NFS_I(hdr->inode)->layout->plh_lwb); | ||
284 | } | ||
285 | |||
286 | bool | ||
287 | filelayout_test_devid_unavailable(struct nfs4_deviceid_node *node) | ||
288 | { | ||
289 | return filelayout_test_devid_invalid(node) || | ||
290 | nfs4_test_deviceid_unavailable(node); | ||
291 | } | ||
292 | |||
293 | static bool | ||
294 | filelayout_reset_to_mds(struct pnfs_layout_segment *lseg) | ||
295 | { | ||
296 | struct nfs4_deviceid_node *node = FILELAYOUT_DEVID_NODE(lseg); | ||
297 | |||
298 | return filelayout_test_devid_unavailable(node); | ||
299 | } | ||
300 | |||
301 | /* | ||
302 | * 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 | */ | ||
306 | static void filelayout_read_prepare(struct rpc_task *task, void *data) | ||
307 | { | ||
308 | struct nfs_pgio_data *rdata = data; | ||
309 | |||
310 | if (unlikely(test_bit(NFS_CONTEXT_BAD, &rdata->args.context->flags))) { | ||
311 | rpc_exit(task, -EIO); | ||
312 | return; | ||
313 | } | ||
314 | if (filelayout_reset_to_mds(rdata->header->lseg)) { | ||
315 | 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 | } | ||
320 | rdata->pgio_done_cb = filelayout_read_done_cb; | ||
321 | |||
322 | if (nfs41_setup_sequence(rdata->ds_clp->cl_session, | ||
323 | &rdata->args.seq_args, | ||
324 | &rdata->res.seq_res, | ||
325 | task)) | ||
326 | return; | ||
327 | 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 */ | ||
330 | } | ||
331 | |||
332 | static void filelayout_read_call_done(struct rpc_task *task, void *data) | ||
333 | { | ||
334 | struct nfs_pgio_data *rdata = data; | ||
335 | |||
336 | dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status); | ||
337 | |||
338 | if (test_bit(NFS_IOHDR_REDO, &rdata->header->flags) && | ||
339 | task->tk_status == 0) { | ||
340 | nfs41_sequence_done(task, &rdata->res.seq_res); | ||
341 | return; | ||
342 | } | ||
343 | |||
344 | /* Note this may cause RPC to be resent */ | ||
345 | rdata->header->mds_ops->rpc_call_done(task, data); | ||
346 | } | ||
347 | |||
348 | static void filelayout_read_count_stats(struct rpc_task *task, void *data) | ||
349 | { | ||
350 | struct nfs_pgio_data *rdata = data; | ||
351 | |||
352 | rpc_count_iostats(task, NFS_SERVER(rdata->header->inode)->client->cl_metrics); | ||
353 | } | ||
354 | |||
355 | static void filelayout_read_release(void *data) | ||
356 | { | ||
357 | struct nfs_pgio_data *rdata = data; | ||
358 | struct pnfs_layout_hdr *lo = rdata->header->lseg->pls_layout; | ||
359 | |||
360 | filelayout_fenceme(lo->plh_inode, lo); | ||
361 | nfs_put_client(rdata->ds_clp); | ||
362 | rdata->header->mds_ops->rpc_release(data); | ||
363 | } | ||
364 | |||
365 | static int filelayout_write_done_cb(struct rpc_task *task, | ||
366 | struct nfs_pgio_data *data) | ||
367 | { | ||
368 | struct nfs_pgio_header *hdr = data->header; | ||
369 | int err; | ||
370 | |||
371 | trace_nfs4_pnfs_write(data, task->tk_status); | ||
372 | 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: | ||
380 | rpc_restart_call_prepare(task); | ||
381 | return -EAGAIN; | ||
382 | } | ||
383 | |||
384 | filelayout_set_layoutcommit(data); | ||
385 | return 0; | ||
386 | } | ||
387 | |||
388 | /* Fake up some data that will cause nfs_commit_release to retry the writes. */ | ||
389 | static void prepare_to_resend_writes(struct nfs_commit_data *data) | ||
390 | { | ||
391 | struct nfs_page *first = nfs_list_entry(data->pages.next); | ||
392 | |||
393 | data->task.tk_status = 0; | ||
394 | memcpy(&data->verf.verifier, &first->wb_verf, | ||
395 | sizeof(data->verf.verifier)); | ||
396 | data->verf.verifier.data[0]++; /* ensure verifier mismatch */ | ||
397 | } | ||
398 | |||
399 | static int filelayout_commit_done_cb(struct rpc_task *task, | ||
400 | struct nfs_commit_data *data) | ||
401 | { | ||
402 | int err; | ||
403 | |||
404 | trace_nfs4_pnfs_commit_ds(data, task->tk_status); | ||
405 | 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); | ||
414 | return -EAGAIN; | ||
415 | } | ||
416 | |||
417 | return 0; | ||
418 | } | ||
419 | |||
420 | static void filelayout_write_prepare(struct rpc_task *task, void *data) | ||
421 | { | ||
422 | struct nfs_pgio_data *wdata = data; | ||
423 | |||
424 | if (unlikely(test_bit(NFS_CONTEXT_BAD, &wdata->args.context->flags))) { | ||
425 | rpc_exit(task, -EIO); | ||
426 | return; | ||
427 | } | ||
428 | if (filelayout_reset_to_mds(wdata->header->lseg)) { | ||
429 | 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 | } | ||
434 | if (nfs41_setup_sequence(wdata->ds_clp->cl_session, | ||
435 | &wdata->args.seq_args, | ||
436 | &wdata->res.seq_res, | ||
437 | task)) | ||
438 | return; | ||
439 | 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 */ | ||
442 | } | ||
443 | |||
444 | static void filelayout_write_call_done(struct rpc_task *task, void *data) | ||
445 | { | ||
446 | struct nfs_pgio_data *wdata = data; | ||
447 | |||
448 | if (test_bit(NFS_IOHDR_REDO, &wdata->header->flags) && | ||
449 | task->tk_status == 0) { | ||
450 | nfs41_sequence_done(task, &wdata->res.seq_res); | ||
451 | return; | ||
452 | } | ||
453 | |||
454 | /* Note this may cause RPC to be resent */ | ||
455 | wdata->header->mds_ops->rpc_call_done(task, data); | ||
456 | } | ||
457 | |||
458 | static void filelayout_write_count_stats(struct rpc_task *task, void *data) | ||
459 | { | ||
460 | struct nfs_pgio_data *wdata = data; | ||
461 | |||
462 | rpc_count_iostats(task, NFS_SERVER(wdata->header->inode)->client->cl_metrics); | ||
463 | } | ||
464 | |||
465 | static void filelayout_write_release(void *data) | ||
466 | { | ||
467 | struct nfs_pgio_data *wdata = data; | ||
468 | struct pnfs_layout_hdr *lo = wdata->header->lseg->pls_layout; | ||
469 | |||
470 | filelayout_fenceme(lo->plh_inode, lo); | ||
471 | nfs_put_client(wdata->ds_clp); | ||
472 | wdata->header->mds_ops->rpc_release(data); | ||
473 | } | ||
474 | |||
475 | static void filelayout_commit_prepare(struct rpc_task *task, void *data) | ||
476 | { | ||
477 | struct nfs_commit_data *wdata = data; | ||
478 | |||
479 | nfs41_setup_sequence(wdata->ds_clp->cl_session, | ||
480 | &wdata->args.seq_args, | ||
481 | &wdata->res.seq_res, | ||
482 | task); | ||
483 | } | ||
484 | |||
485 | static 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 | |||
493 | static 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 | |||
500 | static void filelayout_commit_release(void *calldata) | ||
501 | { | ||
502 | struct nfs_commit_data *data = calldata; | ||
503 | |||
504 | data->completion_ops->completion(data); | ||
505 | pnfs_put_lseg(data->lseg); | ||
506 | nfs_put_client(data->ds_clp); | ||
507 | nfs_commitdata_release(data); | ||
508 | } | ||
509 | |||
510 | static const struct rpc_call_ops filelayout_read_call_ops = { | ||
511 | .rpc_call_prepare = filelayout_read_prepare, | ||
512 | .rpc_call_done = filelayout_read_call_done, | ||
513 | .rpc_count_stats = filelayout_read_count_stats, | ||
514 | .rpc_release = filelayout_read_release, | ||
515 | }; | ||
516 | |||
517 | static const struct rpc_call_ops filelayout_write_call_ops = { | ||
518 | .rpc_call_prepare = filelayout_write_prepare, | ||
519 | .rpc_call_done = filelayout_write_call_done, | ||
520 | .rpc_count_stats = filelayout_write_count_stats, | ||
521 | .rpc_release = filelayout_write_release, | ||
522 | }; | ||
523 | |||
524 | static const struct rpc_call_ops filelayout_commit_call_ops = { | ||
525 | .rpc_call_prepare = filelayout_commit_prepare, | ||
526 | .rpc_call_done = filelayout_write_commit_done, | ||
527 | .rpc_count_stats = filelayout_commit_count_stats, | ||
528 | .rpc_release = filelayout_commit_release, | ||
529 | }; | ||
530 | |||
531 | static enum pnfs_try_status | ||
532 | filelayout_read_pagelist(struct nfs_pgio_data *data) | ||
533 | { | ||
534 | struct nfs_pgio_header *hdr = data->header; | ||
535 | struct pnfs_layout_segment *lseg = hdr->lseg; | ||
536 | struct nfs4_pnfs_ds *ds; | ||
537 | struct rpc_clnt *ds_clnt; | ||
538 | loff_t offset = data->args.offset; | ||
539 | u32 j, idx; | ||
540 | struct nfs_fh *fh; | ||
541 | |||
542 | dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n", | ||
543 | __func__, hdr->inode->i_ino, | ||
544 | 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); | ||
550 | if (!ds) | ||
551 | return PNFS_NOT_ATTEMPTED; | ||
552 | |||
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 | |||
557 | dprintk("%s USE DS: %s cl_count %d\n", __func__, | ||
558 | ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count)); | ||
559 | |||
560 | /* No multipath support. Use first DS */ | ||
561 | atomic_inc(&ds->ds_clp->cl_count); | ||
562 | data->ds_clp = ds->ds_clp; | ||
563 | data->ds_idx = idx; | ||
564 | 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 */ | ||
572 | nfs_initiate_pgio(ds_clnt, data, | ||
573 | &filelayout_read_call_ops, 0, RPC_TASK_SOFTCONN); | ||
574 | return PNFS_ATTEMPTED; | ||
575 | } | ||
576 | |||
577 | /* Perform async writes. */ | ||
578 | static enum pnfs_try_status | ||
579 | filelayout_write_pagelist(struct nfs_pgio_data *data, int sync) | ||
580 | { | ||
581 | struct nfs_pgio_header *hdr = data->header; | ||
582 | struct pnfs_layout_segment *lseg = hdr->lseg; | ||
583 | struct nfs4_pnfs_ds *ds; | ||
584 | struct rpc_clnt *ds_clnt; | ||
585 | loff_t offset = data->args.offset; | ||
586 | u32 j, idx; | ||
587 | struct nfs_fh *fh; | ||
588 | |||
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); | ||
593 | if (!ds) | ||
594 | return PNFS_NOT_ATTEMPTED; | ||
595 | |||
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 | |||
600 | 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)); | ||
603 | |||
604 | data->pgio_done_cb = filelayout_write_done_cb; | ||
605 | atomic_inc(&ds->ds_clp->cl_count); | ||
606 | data->ds_clp = ds->ds_clp; | ||
607 | data->ds_idx = idx; | ||
608 | 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); | ||
616 | |||
617 | /* Perform an asynchronous write */ | ||
618 | nfs_initiate_pgio(ds_clnt, data, | ||
619 | &filelayout_write_call_ops, sync, | ||
620 | RPC_TASK_SOFTCONN); | ||
621 | return PNFS_ATTEMPTED; | ||
622 | } | ||
623 | |||
624 | /* | ||
625 | * 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 | */ | ||
632 | static int | ||
633 | filelayout_check_layout(struct pnfs_layout_hdr *lo, | ||
634 | struct nfs4_filelayout_segment *fl, | ||
635 | struct nfs4_layoutget_res *lgr, | ||
636 | struct nfs4_deviceid *id, | ||
637 | gfp_t gfp_flags) | ||
638 | { | ||
639 | struct nfs4_deviceid_node *d; | ||
640 | struct nfs4_file_layout_dsaddr *dsaddr; | ||
641 | int status = -EINVAL; | ||
642 | |||
643 | dprintk("--> %s\n", __func__); | ||
644 | |||
645 | /* FIXME: remove this check when layout segment support is added */ | ||
646 | if (lgr->range.offset != 0 || | ||
647 | lgr->range.length != NFS4_MAX_UINT64) { | ||
648 | dprintk("%s Only whole file layouts supported. Use MDS i/o\n", | ||
649 | __func__); | ||
650 | goto out; | ||
651 | } | ||
652 | |||
653 | if (fl->pattern_offset > lgr->range.offset) { | ||
654 | dprintk("%s pattern_offset %lld too large\n", | ||
655 | __func__, fl->pattern_offset); | ||
656 | goto out; | ||
657 | } | ||
658 | |||
659 | if (!fl->stripe_unit) { | ||
660 | dprintk("%s Invalid stripe unit (%u)\n", | ||
661 | __func__, fl->stripe_unit); | ||
662 | goto out; | ||
663 | } | ||
664 | |||
665 | /* find and reference the deviceid */ | ||
666 | d = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode)->pnfs_curr_ld, | ||
667 | NFS_SERVER(lo->plh_inode)->nfs_client, id); | ||
668 | if (d == NULL) { | ||
669 | dsaddr = filelayout_get_device_info(lo->plh_inode, id, | ||
670 | lo->plh_lc_cred, gfp_flags); | ||
671 | if (dsaddr == NULL) | ||
672 | goto out; | ||
673 | } else | ||
674 | dsaddr = container_of(d, struct nfs4_file_layout_dsaddr, id_node); | ||
675 | /* Found deviceid is unavailable */ | ||
676 | if (filelayout_test_devid_unavailable(&dsaddr->id_node)) | ||
677 | goto out_put; | ||
678 | |||
679 | fl->dsaddr = dsaddr; | ||
680 | |||
681 | if (fl->first_stripe_index >= dsaddr->stripe_count) { | ||
682 | dprintk("%s Bad first_stripe_index %u\n", | ||
683 | __func__, fl->first_stripe_index); | ||
684 | goto out_put; | ||
685 | } | ||
686 | |||
687 | if ((fl->stripe_type == STRIPE_SPARSE && | ||
688 | fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) || | ||
689 | (fl->stripe_type == STRIPE_DENSE && | ||
690 | fl->num_fh != dsaddr->stripe_count)) { | ||
691 | dprintk("%s num_fh %u not valid for given packing\n", | ||
692 | __func__, fl->num_fh); | ||
693 | goto out_put; | ||
694 | } | ||
695 | |||
696 | status = 0; | ||
697 | out: | ||
698 | dprintk("--> %s returns %d\n", __func__, status); | ||
699 | return status; | ||
700 | out_put: | ||
701 | nfs4_fl_put_deviceid(dsaddr); | ||
702 | goto out; | ||
703 | } | ||
704 | |||
705 | static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl) | ||
706 | { | ||
707 | int i; | ||
708 | |||
709 | for (i = 0; i < fl->num_fh; i++) { | ||
710 | if (!fl->fh_array[i]) | ||
711 | break; | ||
712 | kfree(fl->fh_array[i]); | ||
713 | } | ||
714 | kfree(fl->fh_array); | ||
715 | fl->fh_array = NULL; | ||
716 | } | ||
717 | |||
718 | static void | ||
719 | _filelayout_free_lseg(struct nfs4_filelayout_segment *fl) | ||
720 | { | ||
721 | filelayout_free_fh_array(fl); | ||
722 | kfree(fl); | ||
723 | } | ||
724 | |||
725 | static int | ||
726 | filelayout_decode_layout(struct pnfs_layout_hdr *flo, | ||
727 | struct nfs4_filelayout_segment *fl, | ||
728 | struct nfs4_layoutget_res *lgr, | ||
729 | struct nfs4_deviceid *id, | ||
730 | gfp_t gfp_flags) | ||
731 | { | ||
732 | struct xdr_stream stream; | ||
733 | struct xdr_buf buf; | ||
734 | struct page *scratch; | ||
735 | __be32 *p; | ||
736 | uint32_t nfl_util; | ||
737 | int i; | ||
738 | |||
739 | dprintk("%s: set_layout_map Begin\n", __func__); | ||
740 | |||
741 | scratch = alloc_page(gfp_flags); | ||
742 | if (!scratch) | ||
743 | return -ENOMEM; | ||
744 | |||
745 | xdr_init_decode_pages(&stream, &buf, lgr->layoutp->pages, lgr->layoutp->len); | ||
746 | xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE); | ||
747 | |||
748 | /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8), | ||
749 | * num_fh (4) */ | ||
750 | p = xdr_inline_decode(&stream, NFS4_DEVICEID4_SIZE + 20); | ||
751 | if (unlikely(!p)) | ||
752 | goto out_err; | ||
753 | |||
754 | memcpy(id, p, sizeof(*id)); | ||
755 | p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE); | ||
756 | nfs4_print_deviceid(id); | ||
757 | |||
758 | nfl_util = be32_to_cpup(p++); | ||
759 | if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS) | ||
760 | fl->commit_through_mds = 1; | ||
761 | if (nfl_util & NFL4_UFLG_DENSE) | ||
762 | fl->stripe_type = STRIPE_DENSE; | ||
763 | else | ||
764 | fl->stripe_type = STRIPE_SPARSE; | ||
765 | fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK; | ||
766 | |||
767 | fl->first_stripe_index = be32_to_cpup(p++); | ||
768 | p = xdr_decode_hyper(p, &fl->pattern_offset); | ||
769 | fl->num_fh = be32_to_cpup(p++); | ||
770 | |||
771 | dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n", | ||
772 | __func__, nfl_util, fl->num_fh, fl->first_stripe_index, | ||
773 | fl->pattern_offset); | ||
774 | |||
775 | /* Note that a zero value for num_fh is legal for STRIPE_SPARSE. | ||
776 | * Futher checking is done in filelayout_check_layout */ | ||
777 | if (fl->num_fh > | ||
778 | max(NFS4_PNFS_MAX_STRIPE_CNT, NFS4_PNFS_MAX_MULTI_CNT)) | ||
779 | goto out_err; | ||
780 | |||
781 | if (fl->num_fh > 0) { | ||
782 | fl->fh_array = kcalloc(fl->num_fh, sizeof(fl->fh_array[0]), | ||
783 | gfp_flags); | ||
784 | if (!fl->fh_array) | ||
785 | goto out_err; | ||
786 | } | ||
787 | |||
788 | for (i = 0; i < fl->num_fh; i++) { | ||
789 | /* Do we want to use a mempool here? */ | ||
790 | fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), gfp_flags); | ||
791 | if (!fl->fh_array[i]) | ||
792 | goto out_err_free; | ||
793 | |||
794 | p = xdr_inline_decode(&stream, 4); | ||
795 | if (unlikely(!p)) | ||
796 | goto out_err_free; | ||
797 | fl->fh_array[i]->size = be32_to_cpup(p++); | ||
798 | if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) { | ||
799 | printk(KERN_ERR "NFS: Too big fh %d received %d\n", | ||
800 | i, fl->fh_array[i]->size); | ||
801 | goto out_err_free; | ||
802 | } | ||
803 | |||
804 | p = xdr_inline_decode(&stream, fl->fh_array[i]->size); | ||
805 | if (unlikely(!p)) | ||
806 | goto out_err_free; | ||
807 | memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size); | ||
808 | dprintk("DEBUG: %s: fh len %d\n", __func__, | ||
809 | fl->fh_array[i]->size); | ||
810 | } | ||
811 | |||
812 | __free_page(scratch); | ||
813 | return 0; | ||
814 | |||
815 | out_err_free: | ||
816 | filelayout_free_fh_array(fl); | ||
817 | out_err: | ||
818 | __free_page(scratch); | ||
819 | return -EIO; | ||
820 | } | ||
821 | |||
822 | static void | ||
823 | filelayout_free_lseg(struct pnfs_layout_segment *lseg) | ||
824 | { | ||
825 | struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg); | ||
826 | |||
827 | dprintk("--> %s\n", __func__); | ||
828 | nfs4_fl_put_deviceid(fl->dsaddr); | ||
829 | /* This assumes a single RW lseg */ | ||
830 | if (lseg->pls_range.iomode == IOMODE_RW) { | ||
831 | struct nfs4_filelayout *flo; | ||
832 | |||
833 | flo = FILELAYOUT_FROM_HDR(lseg->pls_layout); | ||
834 | flo->commit_info.nbuckets = 0; | ||
835 | kfree(flo->commit_info.buckets); | ||
836 | flo->commit_info.buckets = NULL; | ||
837 | } | ||
838 | _filelayout_free_lseg(fl); | ||
839 | } | ||
840 | |||
841 | static int | ||
842 | filelayout_alloc_commit_info(struct pnfs_layout_segment *lseg, | ||
843 | struct nfs_commit_info *cinfo, | ||
844 | gfp_t gfp_flags) | ||
845 | { | ||
846 | struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg); | ||
847 | struct pnfs_commit_bucket *buckets; | ||
848 | int size, i; | ||
849 | |||
850 | if (fl->commit_through_mds) | ||
851 | return 0; | ||
852 | |||
853 | size = (fl->stripe_type == STRIPE_SPARSE) ? | ||
854 | fl->dsaddr->ds_num : fl->dsaddr->stripe_count; | ||
855 | |||
856 | if (cinfo->ds->nbuckets >= size) { | ||
857 | /* This assumes there is only one IOMODE_RW lseg. What | ||
858 | * we really want to do is have a layout_hdr level | ||
859 | * dictionary of <multipath_list4, fh> keys, each | ||
860 | * associated with a struct list_head, populated by calls | ||
861 | * to filelayout_write_pagelist(). | ||
862 | * */ | ||
863 | return 0; | ||
864 | } | ||
865 | |||
866 | buckets = kcalloc(size, sizeof(struct pnfs_commit_bucket), | ||
867 | gfp_flags); | ||
868 | if (!buckets) | ||
869 | return -ENOMEM; | ||
870 | for (i = 0; i < size; i++) { | ||
871 | INIT_LIST_HEAD(&buckets[i].written); | ||
872 | INIT_LIST_HEAD(&buckets[i].committing); | ||
873 | /* mark direct verifier as unset */ | ||
874 | buckets[i].direct_verf.committed = NFS_INVALID_STABLE_HOW; | ||
875 | } | ||
876 | |||
877 | spin_lock(cinfo->lock); | ||
878 | if (cinfo->ds->nbuckets >= size) | ||
879 | goto out; | ||
880 | for (i = 0; i < cinfo->ds->nbuckets; i++) { | ||
881 | list_splice(&cinfo->ds->buckets[i].written, | ||
882 | &buckets[i].written); | ||
883 | list_splice(&cinfo->ds->buckets[i].committing, | ||
884 | &buckets[i].committing); | ||
885 | buckets[i].direct_verf.committed = | ||
886 | cinfo->ds->buckets[i].direct_verf.committed; | ||
887 | buckets[i].wlseg = cinfo->ds->buckets[i].wlseg; | ||
888 | buckets[i].clseg = cinfo->ds->buckets[i].clseg; | ||
889 | } | ||
890 | swap(cinfo->ds->buckets, buckets); | ||
891 | cinfo->ds->nbuckets = size; | ||
892 | out: | ||
893 | spin_unlock(cinfo->lock); | ||
894 | kfree(buckets); | ||
895 | return 0; | ||
896 | } | ||
897 | |||
898 | static struct pnfs_layout_segment * | ||
899 | filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid, | ||
900 | struct nfs4_layoutget_res *lgr, | ||
901 | gfp_t gfp_flags) | ||
902 | { | ||
903 | struct nfs4_filelayout_segment *fl; | ||
904 | int rc; | ||
905 | struct nfs4_deviceid id; | ||
906 | |||
907 | dprintk("--> %s\n", __func__); | ||
908 | fl = kzalloc(sizeof(*fl), gfp_flags); | ||
909 | if (!fl) | ||
910 | return NULL; | ||
911 | |||
912 | rc = filelayout_decode_layout(layoutid, fl, lgr, &id, gfp_flags); | ||
913 | if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id, gfp_flags)) { | ||
914 | _filelayout_free_lseg(fl); | ||
915 | return NULL; | ||
916 | } | ||
917 | return &fl->generic_hdr; | ||
918 | } | ||
919 | |||
920 | /* | ||
921 | * filelayout_pg_test(). Called by nfs_can_coalesce_requests() | ||
922 | * | ||
923 | * Return 0 if @req cannot be coalesced into @pgio, otherwise return the number | ||
924 | * of bytes (maximum @req->wb_bytes) that can be coalesced. | ||
925 | */ | ||
926 | static size_t | ||
927 | filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev, | ||
928 | struct nfs_page *req) | ||
929 | { | ||
930 | unsigned int size; | ||
931 | u64 p_stripe, r_stripe; | ||
932 | u32 stripe_offset; | ||
933 | u64 segment_offset = pgio->pg_lseg->pls_range.offset; | ||
934 | u32 stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit; | ||
935 | |||
936 | /* calls nfs_generic_pg_test */ | ||
937 | size = pnfs_generic_pg_test(pgio, prev, req); | ||
938 | if (!size) | ||
939 | return 0; | ||
940 | |||
941 | /* see if req and prev are in the same stripe */ | ||
942 | if (prev) { | ||
943 | p_stripe = (u64)req_offset(prev) - segment_offset; | ||
944 | r_stripe = (u64)req_offset(req) - segment_offset; | ||
945 | do_div(p_stripe, stripe_unit); | ||
946 | do_div(r_stripe, stripe_unit); | ||
947 | |||
948 | if (p_stripe != r_stripe) | ||
949 | return 0; | ||
950 | } | ||
951 | |||
952 | /* calculate remaining bytes in the current stripe */ | ||
953 | div_u64_rem((u64)req_offset(req) - segment_offset, | ||
954 | stripe_unit, | ||
955 | &stripe_offset); | ||
956 | WARN_ON_ONCE(stripe_offset > stripe_unit); | ||
957 | if (stripe_offset >= stripe_unit) | ||
958 | return 0; | ||
959 | return min(stripe_unit - (unsigned int)stripe_offset, size); | ||
960 | } | ||
961 | |||
962 | static void | ||
963 | filelayout_pg_init_read(struct nfs_pageio_descriptor *pgio, | ||
964 | struct nfs_page *req) | ||
965 | { | ||
966 | if (!pgio->pg_lseg) | ||
967 | pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode, | ||
968 | req->wb_context, | ||
969 | 0, | ||
970 | NFS4_MAX_UINT64, | ||
971 | IOMODE_READ, | ||
972 | GFP_KERNEL); | ||
973 | /* If no lseg, fall back to read through mds */ | ||
974 | if (pgio->pg_lseg == NULL) | ||
975 | nfs_pageio_reset_read_mds(pgio); | ||
976 | } | ||
977 | |||
978 | static void | ||
979 | filelayout_pg_init_write(struct nfs_pageio_descriptor *pgio, | ||
980 | struct nfs_page *req) | ||
981 | { | ||
982 | struct nfs_commit_info cinfo; | ||
983 | int status; | ||
984 | |||
985 | if (!pgio->pg_lseg) | ||
986 | pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode, | ||
987 | req->wb_context, | ||
988 | 0, | ||
989 | NFS4_MAX_UINT64, | ||
990 | IOMODE_RW, | ||
991 | GFP_NOFS); | ||
992 | /* If no lseg, fall back to write through mds */ | ||
993 | if (pgio->pg_lseg == NULL) | ||
994 | goto out_mds; | ||
995 | nfs_init_cinfo(&cinfo, pgio->pg_inode, pgio->pg_dreq); | ||
996 | status = filelayout_alloc_commit_info(pgio->pg_lseg, &cinfo, GFP_NOFS); | ||
997 | if (status < 0) { | ||
998 | pnfs_put_lseg(pgio->pg_lseg); | ||
999 | pgio->pg_lseg = NULL; | ||
1000 | goto out_mds; | ||
1001 | } | ||
1002 | return; | ||
1003 | out_mds: | ||
1004 | nfs_pageio_reset_write_mds(pgio); | ||
1005 | } | ||
1006 | |||
1007 | static const struct nfs_pageio_ops filelayout_pg_read_ops = { | ||
1008 | .pg_init = filelayout_pg_init_read, | ||
1009 | .pg_test = filelayout_pg_test, | ||
1010 | .pg_doio = pnfs_generic_pg_readpages, | ||
1011 | }; | ||
1012 | |||
1013 | static const struct nfs_pageio_ops filelayout_pg_write_ops = { | ||
1014 | .pg_init = filelayout_pg_init_write, | ||
1015 | .pg_test = filelayout_pg_test, | ||
1016 | .pg_doio = pnfs_generic_pg_writepages, | ||
1017 | }; | ||
1018 | |||
1019 | static u32 select_bucket_index(struct nfs4_filelayout_segment *fl, u32 j) | ||
1020 | { | ||
1021 | if (fl->stripe_type == STRIPE_SPARSE) | ||
1022 | return nfs4_fl_calc_ds_index(&fl->generic_hdr, j); | ||
1023 | else | ||
1024 | return j; | ||
1025 | } | ||
1026 | |||
1027 | /* The generic layer is about to remove the req from the commit list. | ||
1028 | * If this will make the bucket empty, it will need to put the lseg reference. | ||
1029 | */ | ||
1030 | static void | ||
1031 | filelayout_clear_request_commit(struct nfs_page *req, | ||
1032 | struct nfs_commit_info *cinfo) | ||
1033 | { | ||
1034 | struct pnfs_layout_segment *freeme = NULL; | ||
1035 | |||
1036 | spin_lock(cinfo->lock); | ||
1037 | if (!test_and_clear_bit(PG_COMMIT_TO_DS, &req->wb_flags)) | ||
1038 | goto out; | ||
1039 | cinfo->ds->nwritten--; | ||
1040 | if (list_is_singular(&req->wb_list)) { | ||
1041 | struct pnfs_commit_bucket *bucket; | ||
1042 | |||
1043 | bucket = list_first_entry(&req->wb_list, | ||
1044 | struct pnfs_commit_bucket, | ||
1045 | written); | ||
1046 | freeme = bucket->wlseg; | ||
1047 | bucket->wlseg = NULL; | ||
1048 | } | ||
1049 | out: | ||
1050 | nfs_request_remove_commit_list(req, cinfo); | ||
1051 | spin_unlock(cinfo->lock); | ||
1052 | pnfs_put_lseg(freeme); | ||
1053 | } | ||
1054 | |||
1055 | static struct list_head * | ||
1056 | filelayout_choose_commit_list(struct nfs_page *req, | ||
1057 | struct pnfs_layout_segment *lseg, | ||
1058 | struct nfs_commit_info *cinfo) | ||
1059 | { | ||
1060 | struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg); | ||
1061 | u32 i, j; | ||
1062 | struct list_head *list; | ||
1063 | struct pnfs_commit_bucket *buckets; | ||
1064 | |||
1065 | if (fl->commit_through_mds) | ||
1066 | return &cinfo->mds->list; | ||
1067 | |||
1068 | /* Note that we are calling nfs4_fl_calc_j_index on each page | ||
1069 | * that ends up being committed to a data server. An attractive | ||
1070 | * alternative is to add a field to nfs_write_data and nfs_page | ||
1071 | * to store the value calculated in filelayout_write_pagelist | ||
1072 | * and just use that here. | ||
1073 | */ | ||
1074 | j = nfs4_fl_calc_j_index(lseg, req_offset(req)); | ||
1075 | i = select_bucket_index(fl, j); | ||
1076 | spin_lock(cinfo->lock); | ||
1077 | buckets = cinfo->ds->buckets; | ||
1078 | list = &buckets[i].written; | ||
1079 | if (list_empty(list)) { | ||
1080 | /* Non-empty buckets hold a reference on the lseg. That ref | ||
1081 | * is normally transferred to the COMMIT call and released | ||
1082 | * there. It could also be released if the last req is pulled | ||
1083 | * off due to a rewrite, in which case it will be done in | ||
1084 | * filelayout_clear_request_commit | ||
1085 | */ | ||
1086 | buckets[i].wlseg = pnfs_get_lseg(lseg); | ||
1087 | } | ||
1088 | set_bit(PG_COMMIT_TO_DS, &req->wb_flags); | ||
1089 | cinfo->ds->nwritten++; | ||
1090 | spin_unlock(cinfo->lock); | ||
1091 | return list; | ||
1092 | } | ||
1093 | |||
1094 | static void | ||
1095 | filelayout_mark_request_commit(struct nfs_page *req, | ||
1096 | struct pnfs_layout_segment *lseg, | ||
1097 | struct nfs_commit_info *cinfo) | ||
1098 | { | ||
1099 | struct list_head *list; | ||
1100 | |||
1101 | list = filelayout_choose_commit_list(req, lseg, cinfo); | ||
1102 | nfs_request_add_commit_list(req, list, cinfo); | ||
1103 | } | ||
1104 | |||
1105 | static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i) | ||
1106 | { | ||
1107 | struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg); | ||
1108 | |||
1109 | if (flseg->stripe_type == STRIPE_SPARSE) | ||
1110 | return i; | ||
1111 | else | ||
1112 | return nfs4_fl_calc_ds_index(lseg, i); | ||
1113 | } | ||
1114 | |||
1115 | static struct nfs_fh * | ||
1116 | select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i) | ||
1117 | { | ||
1118 | struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg); | ||
1119 | |||
1120 | if (flseg->stripe_type == STRIPE_SPARSE) { | ||
1121 | if (flseg->num_fh == 1) | ||
1122 | i = 0; | ||
1123 | else if (flseg->num_fh == 0) | ||
1124 | /* Use the MDS OPEN fh set in nfs_read_rpcsetup */ | ||
1125 | return NULL; | ||
1126 | } | ||
1127 | return flseg->fh_array[i]; | ||
1128 | } | ||
1129 | |||
1130 | static int filelayout_initiate_commit(struct nfs_commit_data *data, int how) | ||
1131 | { | ||
1132 | struct pnfs_layout_segment *lseg = data->lseg; | ||
1133 | struct nfs4_pnfs_ds *ds; | ||
1134 | struct rpc_clnt *ds_clnt; | ||
1135 | u32 idx; | ||
1136 | struct nfs_fh *fh; | ||
1137 | |||
1138 | idx = calc_ds_index_from_commit(lseg, data->ds_commit_index); | ||
1139 | ds = nfs4_fl_prepare_ds(lseg, idx); | ||
1140 | if (!ds) | ||
1141 | goto out_err; | ||
1142 | |||
1143 | ds_clnt = nfs4_find_or_create_ds_client(ds->ds_clp, data->inode); | ||
1144 | if (IS_ERR(ds_clnt)) | ||
1145 | goto out_err; | ||
1146 | |||
1147 | dprintk("%s ino %lu, how %d cl_count %d\n", __func__, | ||
1148 | data->inode->i_ino, how, atomic_read(&ds->ds_clp->cl_count)); | ||
1149 | data->commit_done_cb = filelayout_commit_done_cb; | ||
1150 | atomic_inc(&ds->ds_clp->cl_count); | ||
1151 | data->ds_clp = ds->ds_clp; | ||
1152 | fh = select_ds_fh_from_commit(lseg, data->ds_commit_index); | ||
1153 | if (fh) | ||
1154 | data->args.fh = fh; | ||
1155 | return nfs_initiate_commit(ds_clnt, data, | ||
1156 | &filelayout_commit_call_ops, how, | ||
1157 | RPC_TASK_SOFTCONN); | ||
1158 | out_err: | ||
1159 | prepare_to_resend_writes(data); | ||
1160 | filelayout_commit_release(data); | ||
1161 | return -EAGAIN; | ||
1162 | } | ||
1163 | |||
1164 | static int | ||
1165 | transfer_commit_list(struct list_head *src, struct list_head *dst, | ||
1166 | struct nfs_commit_info *cinfo, int max) | ||
1167 | { | ||
1168 | struct nfs_page *req, *tmp; | ||
1169 | int ret = 0; | ||
1170 | |||
1171 | list_for_each_entry_safe(req, tmp, src, wb_list) { | ||
1172 | if (!nfs_lock_request(req)) | ||
1173 | continue; | ||
1174 | kref_get(&req->wb_kref); | ||
1175 | if (cond_resched_lock(cinfo->lock)) | ||
1176 | list_safe_reset_next(req, tmp, wb_list); | ||
1177 | nfs_request_remove_commit_list(req, cinfo); | ||
1178 | clear_bit(PG_COMMIT_TO_DS, &req->wb_flags); | ||
1179 | nfs_list_add_request(req, dst); | ||
1180 | ret++; | ||
1181 | if ((ret == max) && !cinfo->dreq) | ||
1182 | break; | ||
1183 | } | ||
1184 | return ret; | ||
1185 | } | ||
1186 | |||
1187 | /* Note called with cinfo->lock held. */ | ||
1188 | static int | ||
1189 | filelayout_scan_ds_commit_list(struct pnfs_commit_bucket *bucket, | ||
1190 | struct nfs_commit_info *cinfo, | ||
1191 | int max) | ||
1192 | { | ||
1193 | struct list_head *src = &bucket->written; | ||
1194 | struct list_head *dst = &bucket->committing; | ||
1195 | int ret; | ||
1196 | |||
1197 | ret = transfer_commit_list(src, dst, cinfo, max); | ||
1198 | if (ret) { | ||
1199 | cinfo->ds->nwritten -= ret; | ||
1200 | cinfo->ds->ncommitting += ret; | ||
1201 | bucket->clseg = bucket->wlseg; | ||
1202 | if (list_empty(src)) | ||
1203 | bucket->wlseg = NULL; | ||
1204 | else | ||
1205 | pnfs_get_lseg(bucket->clseg); | ||
1206 | } | ||
1207 | return ret; | ||
1208 | } | ||
1209 | |||
1210 | /* Move reqs from written to committing lists, returning count of number moved. | ||
1211 | * Note called with cinfo->lock held. | ||
1212 | */ | ||
1213 | static int filelayout_scan_commit_lists(struct nfs_commit_info *cinfo, | ||
1214 | int max) | ||
1215 | { | ||
1216 | int i, rv = 0, cnt; | ||
1217 | |||
1218 | for (i = 0; i < cinfo->ds->nbuckets && max != 0; i++) { | ||
1219 | cnt = filelayout_scan_ds_commit_list(&cinfo->ds->buckets[i], | ||
1220 | cinfo, max); | ||
1221 | max -= cnt; | ||
1222 | rv += cnt; | ||
1223 | } | ||
1224 | return rv; | ||
1225 | } | ||
1226 | |||
1227 | /* Pull everything off the committing lists and dump into @dst */ | ||
1228 | static void filelayout_recover_commit_reqs(struct list_head *dst, | ||
1229 | struct nfs_commit_info *cinfo) | ||
1230 | { | ||
1231 | struct pnfs_commit_bucket *b; | ||
1232 | struct pnfs_layout_segment *freeme; | ||
1233 | int i; | ||
1234 | |||
1235 | restart: | ||
1236 | spin_lock(cinfo->lock); | ||
1237 | for (i = 0, b = cinfo->ds->buckets; i < cinfo->ds->nbuckets; i++, b++) { | ||
1238 | if (transfer_commit_list(&b->written, dst, cinfo, 0)) { | ||
1239 | freeme = b->wlseg; | ||
1240 | b->wlseg = NULL; | ||
1241 | spin_unlock(cinfo->lock); | ||
1242 | pnfs_put_lseg(freeme); | ||
1243 | goto restart; | ||
1244 | } | ||
1245 | } | ||
1246 | cinfo->ds->nwritten = 0; | ||
1247 | spin_unlock(cinfo->lock); | ||
1248 | } | ||
1249 | |||
1250 | static unsigned int | ||
1251 | alloc_ds_commits(struct nfs_commit_info *cinfo, struct list_head *list) | ||
1252 | { | ||
1253 | struct pnfs_ds_commit_info *fl_cinfo; | ||
1254 | struct pnfs_commit_bucket *bucket; | ||
1255 | struct nfs_commit_data *data; | ||
1256 | int i, j; | ||
1257 | unsigned int nreq = 0; | ||
1258 | struct pnfs_layout_segment *freeme; | ||
1259 | |||
1260 | fl_cinfo = cinfo->ds; | ||
1261 | bucket = fl_cinfo->buckets; | ||
1262 | for (i = 0; i < fl_cinfo->nbuckets; i++, bucket++) { | ||
1263 | if (list_empty(&bucket->committing)) | ||
1264 | continue; | ||
1265 | data = nfs_commitdata_alloc(); | ||
1266 | if (!data) | ||
1267 | break; | ||
1268 | data->ds_commit_index = i; | ||
1269 | spin_lock(cinfo->lock); | ||
1270 | data->lseg = bucket->clseg; | ||
1271 | bucket->clseg = NULL; | ||
1272 | spin_unlock(cinfo->lock); | ||
1273 | list_add(&data->pages, list); | ||
1274 | nreq++; | ||
1275 | } | ||
1276 | |||
1277 | /* Clean up on error */ | ||
1278 | for (j = i; j < fl_cinfo->nbuckets; j++, bucket++) { | ||
1279 | if (list_empty(&bucket->committing)) | ||
1280 | continue; | ||
1281 | nfs_retry_commit(&bucket->committing, bucket->clseg, cinfo); | ||
1282 | spin_lock(cinfo->lock); | ||
1283 | freeme = bucket->clseg; | ||
1284 | bucket->clseg = NULL; | ||
1285 | spin_unlock(cinfo->lock); | ||
1286 | pnfs_put_lseg(freeme); | ||
1287 | } | ||
1288 | /* Caller will clean up entries put on list */ | ||
1289 | return nreq; | ||
1290 | } | ||
1291 | |||
1292 | /* This follows nfs_commit_list pretty closely */ | ||
1293 | static int | ||
1294 | filelayout_commit_pagelist(struct inode *inode, struct list_head *mds_pages, | ||
1295 | int how, struct nfs_commit_info *cinfo) | ||
1296 | { | ||
1297 | struct nfs_commit_data *data, *tmp; | ||
1298 | LIST_HEAD(list); | ||
1299 | unsigned int nreq = 0; | ||
1300 | |||
1301 | if (!list_empty(mds_pages)) { | ||
1302 | data = nfs_commitdata_alloc(); | ||
1303 | if (data != NULL) { | ||
1304 | data->lseg = NULL; | ||
1305 | list_add(&data->pages, &list); | ||
1306 | nreq++; | ||
1307 | } else | ||
1308 | nfs_retry_commit(mds_pages, NULL, cinfo); | ||
1309 | } | ||
1310 | |||
1311 | nreq += alloc_ds_commits(cinfo, &list); | ||
1312 | |||
1313 | if (nreq == 0) { | ||
1314 | cinfo->completion_ops->error_cleanup(NFS_I(inode)); | ||
1315 | goto out; | ||
1316 | } | ||
1317 | |||
1318 | atomic_add(nreq, &cinfo->mds->rpcs_out); | ||
1319 | |||
1320 | list_for_each_entry_safe(data, tmp, &list, pages) { | ||
1321 | list_del_init(&data->pages); | ||
1322 | if (!data->lseg) { | ||
1323 | nfs_init_commit(data, mds_pages, NULL, cinfo); | ||
1324 | nfs_initiate_commit(NFS_CLIENT(inode), data, | ||
1325 | data->mds_ops, how, 0); | ||
1326 | } else { | ||
1327 | struct pnfs_commit_bucket *buckets; | ||
1328 | |||
1329 | buckets = cinfo->ds->buckets; | ||
1330 | nfs_init_commit(data, &buckets[data->ds_commit_index].committing, data->lseg, cinfo); | ||
1331 | filelayout_initiate_commit(data, how); | ||
1332 | } | ||
1333 | } | ||
1334 | out: | ||
1335 | cinfo->ds->ncommitting = 0; | ||
1336 | return PNFS_ATTEMPTED; | ||
1337 | } | ||
1338 | |||
1339 | static void | ||
1340 | filelayout_free_deveiceid_node(struct nfs4_deviceid_node *d) | ||
1341 | { | ||
1342 | nfs4_fl_free_deviceid(container_of(d, struct nfs4_file_layout_dsaddr, id_node)); | ||
1343 | } | ||
1344 | |||
1345 | static struct pnfs_layout_hdr * | ||
1346 | filelayout_alloc_layout_hdr(struct inode *inode, gfp_t gfp_flags) | ||
1347 | { | ||
1348 | struct nfs4_filelayout *flo; | ||
1349 | |||
1350 | flo = kzalloc(sizeof(*flo), gfp_flags); | ||
1351 | return flo != NULL ? &flo->generic_hdr : NULL; | ||
1352 | } | ||
1353 | |||
1354 | static void | ||
1355 | filelayout_free_layout_hdr(struct pnfs_layout_hdr *lo) | ||
1356 | { | ||
1357 | kfree(FILELAYOUT_FROM_HDR(lo)); | ||
1358 | } | ||
1359 | |||
1360 | static struct pnfs_ds_commit_info * | ||
1361 | filelayout_get_ds_info(struct inode *inode) | ||
1362 | { | ||
1363 | struct pnfs_layout_hdr *layout = NFS_I(inode)->layout; | ||
1364 | |||
1365 | if (layout == NULL) | ||
1366 | return NULL; | ||
1367 | else | ||
1368 | return &FILELAYOUT_FROM_HDR(layout)->commit_info; | ||
1369 | } | ||
1370 | |||
1371 | static struct pnfs_layoutdriver_type filelayout_type = { | ||
1372 | .id = LAYOUT_NFSV4_1_FILES, | ||
1373 | .name = "LAYOUT_NFSV4_1_FILES", | ||
1374 | .owner = THIS_MODULE, | ||
1375 | .alloc_layout_hdr = filelayout_alloc_layout_hdr, | ||
1376 | .free_layout_hdr = filelayout_free_layout_hdr, | ||
1377 | .alloc_lseg = filelayout_alloc_lseg, | ||
1378 | .free_lseg = filelayout_free_lseg, | ||
1379 | .pg_read_ops = &filelayout_pg_read_ops, | ||
1380 | .pg_write_ops = &filelayout_pg_write_ops, | ||
1381 | .get_ds_info = &filelayout_get_ds_info, | ||
1382 | .mark_request_commit = filelayout_mark_request_commit, | ||
1383 | .clear_request_commit = filelayout_clear_request_commit, | ||
1384 | .scan_commit_lists = filelayout_scan_commit_lists, | ||
1385 | .recover_commit_reqs = filelayout_recover_commit_reqs, | ||
1386 | .commit_pagelist = filelayout_commit_pagelist, | ||
1387 | .read_pagelist = filelayout_read_pagelist, | ||
1388 | .write_pagelist = filelayout_write_pagelist, | ||
1389 | .free_deviceid_node = filelayout_free_deveiceid_node, | ||
1390 | }; | ||
1391 | |||
1392 | static int __init nfs4filelayout_init(void) | ||
1393 | { | ||
1394 | printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n", | ||
1395 | __func__); | ||
1396 | return pnfs_register_layoutdriver(&filelayout_type); | ||
1397 | } | ||
1398 | |||
1399 | static void __exit nfs4filelayout_exit(void) | ||
1400 | { | ||
1401 | printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n", | ||
1402 | __func__); | ||
1403 | pnfs_unregister_layoutdriver(&filelayout_type); | ||
1404 | } | ||
1405 | |||
1406 | MODULE_ALIAS("nfs-layouttype4-1"); | ||
1407 | |||
1408 | module_init(nfs4filelayout_init); | ||
1409 | module_exit(nfs4filelayout_exit); | ||