diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
commit | c71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch) | |
tree | ecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /fs/nfs/nfs4filelayout.c | |
parent | ea53c912f8a86a8567697115b6a0d8152beee5c8 (diff) | |
parent | 6a00f206debf8a5c8899055726ad127dbeeed098 (diff) |
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts:
litmus/sched_cedf.c
Diffstat (limited to 'fs/nfs/nfs4filelayout.c')
-rw-r--r-- | fs/nfs/nfs4filelayout.c | 906 |
1 files changed, 906 insertions, 0 deletions
diff --git a/fs/nfs/nfs4filelayout.c b/fs/nfs/nfs4filelayout.c new file mode 100644 index 000000000000..f9d03abcd04c --- /dev/null +++ b/fs/nfs/nfs4filelayout.c | |||
@@ -0,0 +1,906 @@ | |||
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 | |||
35 | #include "internal.h" | ||
36 | #include "nfs4filelayout.h" | ||
37 | |||
38 | #define NFSDBG_FACILITY NFSDBG_PNFS_LD | ||
39 | |||
40 | MODULE_LICENSE("GPL"); | ||
41 | MODULE_AUTHOR("Dean Hildebrand <dhildebz@umich.edu>"); | ||
42 | MODULE_DESCRIPTION("The NFSv4 file layout driver"); | ||
43 | |||
44 | #define FILELAYOUT_POLL_RETRY_MAX (15*HZ) | ||
45 | |||
46 | static loff_t | ||
47 | filelayout_get_dense_offset(struct nfs4_filelayout_segment *flseg, | ||
48 | loff_t offset) | ||
49 | { | ||
50 | u32 stripe_width = flseg->stripe_unit * flseg->dsaddr->stripe_count; | ||
51 | u64 tmp; | ||
52 | |||
53 | offset -= flseg->pattern_offset; | ||
54 | tmp = offset; | ||
55 | do_div(tmp, stripe_width); | ||
56 | |||
57 | return tmp * flseg->stripe_unit + do_div(offset, flseg->stripe_unit); | ||
58 | } | ||
59 | |||
60 | /* This function is used by the layout driver to calculate the | ||
61 | * offset of the file on the dserver based on whether the | ||
62 | * layout type is STRIPE_DENSE or STRIPE_SPARSE | ||
63 | */ | ||
64 | static loff_t | ||
65 | filelayout_get_dserver_offset(struct pnfs_layout_segment *lseg, loff_t offset) | ||
66 | { | ||
67 | struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg); | ||
68 | |||
69 | switch (flseg->stripe_type) { | ||
70 | case STRIPE_SPARSE: | ||
71 | return offset; | ||
72 | |||
73 | case STRIPE_DENSE: | ||
74 | return filelayout_get_dense_offset(flseg, offset); | ||
75 | } | ||
76 | |||
77 | BUG(); | ||
78 | } | ||
79 | |||
80 | /* For data server errors we don't recover from */ | ||
81 | static void | ||
82 | filelayout_set_lo_fail(struct pnfs_layout_segment *lseg) | ||
83 | { | ||
84 | if (lseg->pls_range.iomode == IOMODE_RW) { | ||
85 | dprintk("%s Setting layout IOMODE_RW fail bit\n", __func__); | ||
86 | set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags); | ||
87 | } else { | ||
88 | dprintk("%s Setting layout IOMODE_READ fail bit\n", __func__); | ||
89 | set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags); | ||
90 | } | ||
91 | } | ||
92 | |||
93 | static int filelayout_async_handle_error(struct rpc_task *task, | ||
94 | struct nfs4_state *state, | ||
95 | struct nfs_client *clp, | ||
96 | int *reset) | ||
97 | { | ||
98 | if (task->tk_status >= 0) | ||
99 | return 0; | ||
100 | |||
101 | *reset = 0; | ||
102 | |||
103 | switch (task->tk_status) { | ||
104 | case -NFS4ERR_BADSESSION: | ||
105 | case -NFS4ERR_BADSLOT: | ||
106 | case -NFS4ERR_BAD_HIGH_SLOT: | ||
107 | case -NFS4ERR_DEADSESSION: | ||
108 | case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION: | ||
109 | case -NFS4ERR_SEQ_FALSE_RETRY: | ||
110 | case -NFS4ERR_SEQ_MISORDERED: | ||
111 | dprintk("%s ERROR %d, Reset session. Exchangeid " | ||
112 | "flags 0x%x\n", __func__, task->tk_status, | ||
113 | clp->cl_exchange_flags); | ||
114 | nfs4_schedule_session_recovery(clp->cl_session); | ||
115 | break; | ||
116 | case -NFS4ERR_DELAY: | ||
117 | case -NFS4ERR_GRACE: | ||
118 | case -EKEYEXPIRED: | ||
119 | rpc_delay(task, FILELAYOUT_POLL_RETRY_MAX); | ||
120 | break; | ||
121 | case -NFS4ERR_RETRY_UNCACHED_REP: | ||
122 | break; | ||
123 | default: | ||
124 | dprintk("%s DS error. Retry through MDS %d\n", __func__, | ||
125 | task->tk_status); | ||
126 | *reset = 1; | ||
127 | break; | ||
128 | } | ||
129 | task->tk_status = 0; | ||
130 | return -EAGAIN; | ||
131 | } | ||
132 | |||
133 | /* NFS_PROTO call done callback routines */ | ||
134 | |||
135 | static int filelayout_read_done_cb(struct rpc_task *task, | ||
136 | struct nfs_read_data *data) | ||
137 | { | ||
138 | struct nfs_client *clp = data->ds_clp; | ||
139 | int reset = 0; | ||
140 | |||
141 | dprintk("%s DS read\n", __func__); | ||
142 | |||
143 | if (filelayout_async_handle_error(task, data->args.context->state, | ||
144 | data->ds_clp, &reset) == -EAGAIN) { | ||
145 | dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n", | ||
146 | __func__, data->ds_clp, data->ds_clp->cl_session); | ||
147 | if (reset) { | ||
148 | filelayout_set_lo_fail(data->lseg); | ||
149 | nfs4_reset_read(task, data); | ||
150 | clp = NFS_SERVER(data->inode)->nfs_client; | ||
151 | } | ||
152 | nfs_restart_rpc(task, clp); | ||
153 | return -EAGAIN; | ||
154 | } | ||
155 | |||
156 | return 0; | ||
157 | } | ||
158 | |||
159 | /* | ||
160 | * We reference the rpc_cred of the first WRITE that triggers the need for | ||
161 | * a LAYOUTCOMMIT, and use it to send the layoutcommit compound. | ||
162 | * rfc5661 is not clear about which credential should be used. | ||
163 | */ | ||
164 | static void | ||
165 | filelayout_set_layoutcommit(struct nfs_write_data *wdata) | ||
166 | { | ||
167 | if (FILELAYOUT_LSEG(wdata->lseg)->commit_through_mds || | ||
168 | wdata->res.verf->committed == NFS_FILE_SYNC) | ||
169 | return; | ||
170 | |||
171 | pnfs_set_layoutcommit(wdata); | ||
172 | dprintk("%s ionde %lu pls_end_pos %lu\n", __func__, wdata->inode->i_ino, | ||
173 | (unsigned long) wdata->lseg->pls_end_pos); | ||
174 | } | ||
175 | |||
176 | /* | ||
177 | * Call ops for the async read/write cases | ||
178 | * In the case of dense layouts, the offset needs to be reset to its | ||
179 | * original value. | ||
180 | */ | ||
181 | static void filelayout_read_prepare(struct rpc_task *task, void *data) | ||
182 | { | ||
183 | struct nfs_read_data *rdata = (struct nfs_read_data *)data; | ||
184 | |||
185 | rdata->read_done_cb = filelayout_read_done_cb; | ||
186 | |||
187 | if (nfs41_setup_sequence(rdata->ds_clp->cl_session, | ||
188 | &rdata->args.seq_args, &rdata->res.seq_res, | ||
189 | 0, task)) | ||
190 | return; | ||
191 | |||
192 | rpc_call_start(task); | ||
193 | } | ||
194 | |||
195 | static void filelayout_read_call_done(struct rpc_task *task, void *data) | ||
196 | { | ||
197 | struct nfs_read_data *rdata = (struct nfs_read_data *)data; | ||
198 | |||
199 | dprintk("--> %s task->tk_status %d\n", __func__, task->tk_status); | ||
200 | |||
201 | /* Note this may cause RPC to be resent */ | ||
202 | rdata->mds_ops->rpc_call_done(task, data); | ||
203 | } | ||
204 | |||
205 | static void filelayout_read_release(void *data) | ||
206 | { | ||
207 | struct nfs_read_data *rdata = (struct nfs_read_data *)data; | ||
208 | |||
209 | rdata->mds_ops->rpc_release(data); | ||
210 | } | ||
211 | |||
212 | static int filelayout_write_done_cb(struct rpc_task *task, | ||
213 | struct nfs_write_data *data) | ||
214 | { | ||
215 | int reset = 0; | ||
216 | |||
217 | if (filelayout_async_handle_error(task, data->args.context->state, | ||
218 | data->ds_clp, &reset) == -EAGAIN) { | ||
219 | struct nfs_client *clp; | ||
220 | |||
221 | dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n", | ||
222 | __func__, data->ds_clp, data->ds_clp->cl_session); | ||
223 | if (reset) { | ||
224 | filelayout_set_lo_fail(data->lseg); | ||
225 | nfs4_reset_write(task, data); | ||
226 | clp = NFS_SERVER(data->inode)->nfs_client; | ||
227 | } else | ||
228 | clp = data->ds_clp; | ||
229 | nfs_restart_rpc(task, clp); | ||
230 | return -EAGAIN; | ||
231 | } | ||
232 | |||
233 | filelayout_set_layoutcommit(data); | ||
234 | return 0; | ||
235 | } | ||
236 | |||
237 | /* Fake up some data that will cause nfs_commit_release to retry the writes. */ | ||
238 | static void prepare_to_resend_writes(struct nfs_write_data *data) | ||
239 | { | ||
240 | struct nfs_page *first = nfs_list_entry(data->pages.next); | ||
241 | |||
242 | data->task.tk_status = 0; | ||
243 | memcpy(data->verf.verifier, first->wb_verf.verifier, | ||
244 | sizeof(first->wb_verf.verifier)); | ||
245 | data->verf.verifier[0]++; /* ensure verifier mismatch */ | ||
246 | } | ||
247 | |||
248 | static int filelayout_commit_done_cb(struct rpc_task *task, | ||
249 | struct nfs_write_data *data) | ||
250 | { | ||
251 | int reset = 0; | ||
252 | |||
253 | if (filelayout_async_handle_error(task, data->args.context->state, | ||
254 | data->ds_clp, &reset) == -EAGAIN) { | ||
255 | dprintk("%s calling restart ds_clp %p ds_clp->cl_session %p\n", | ||
256 | __func__, data->ds_clp, data->ds_clp->cl_session); | ||
257 | if (reset) { | ||
258 | prepare_to_resend_writes(data); | ||
259 | filelayout_set_lo_fail(data->lseg); | ||
260 | } else | ||
261 | nfs_restart_rpc(task, data->ds_clp); | ||
262 | return -EAGAIN; | ||
263 | } | ||
264 | |||
265 | return 0; | ||
266 | } | ||
267 | |||
268 | static void filelayout_write_prepare(struct rpc_task *task, void *data) | ||
269 | { | ||
270 | struct nfs_write_data *wdata = (struct nfs_write_data *)data; | ||
271 | |||
272 | if (nfs41_setup_sequence(wdata->ds_clp->cl_session, | ||
273 | &wdata->args.seq_args, &wdata->res.seq_res, | ||
274 | 0, task)) | ||
275 | return; | ||
276 | |||
277 | rpc_call_start(task); | ||
278 | } | ||
279 | |||
280 | static void filelayout_write_call_done(struct rpc_task *task, void *data) | ||
281 | { | ||
282 | struct nfs_write_data *wdata = (struct nfs_write_data *)data; | ||
283 | |||
284 | /* Note this may cause RPC to be resent */ | ||
285 | wdata->mds_ops->rpc_call_done(task, data); | ||
286 | } | ||
287 | |||
288 | static void filelayout_write_release(void *data) | ||
289 | { | ||
290 | struct nfs_write_data *wdata = (struct nfs_write_data *)data; | ||
291 | |||
292 | wdata->mds_ops->rpc_release(data); | ||
293 | } | ||
294 | |||
295 | static void filelayout_commit_release(void *data) | ||
296 | { | ||
297 | struct nfs_write_data *wdata = (struct nfs_write_data *)data; | ||
298 | |||
299 | nfs_commit_release_pages(wdata); | ||
300 | if (atomic_dec_and_test(&NFS_I(wdata->inode)->commits_outstanding)) | ||
301 | nfs_commit_clear_lock(NFS_I(wdata->inode)); | ||
302 | nfs_commitdata_release(wdata); | ||
303 | } | ||
304 | |||
305 | struct rpc_call_ops filelayout_read_call_ops = { | ||
306 | .rpc_call_prepare = filelayout_read_prepare, | ||
307 | .rpc_call_done = filelayout_read_call_done, | ||
308 | .rpc_release = filelayout_read_release, | ||
309 | }; | ||
310 | |||
311 | struct rpc_call_ops filelayout_write_call_ops = { | ||
312 | .rpc_call_prepare = filelayout_write_prepare, | ||
313 | .rpc_call_done = filelayout_write_call_done, | ||
314 | .rpc_release = filelayout_write_release, | ||
315 | }; | ||
316 | |||
317 | struct rpc_call_ops filelayout_commit_call_ops = { | ||
318 | .rpc_call_prepare = filelayout_write_prepare, | ||
319 | .rpc_call_done = filelayout_write_call_done, | ||
320 | .rpc_release = filelayout_commit_release, | ||
321 | }; | ||
322 | |||
323 | static enum pnfs_try_status | ||
324 | filelayout_read_pagelist(struct nfs_read_data *data) | ||
325 | { | ||
326 | struct pnfs_layout_segment *lseg = data->lseg; | ||
327 | struct nfs4_pnfs_ds *ds; | ||
328 | loff_t offset = data->args.offset; | ||
329 | u32 j, idx; | ||
330 | struct nfs_fh *fh; | ||
331 | int status; | ||
332 | |||
333 | dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n", | ||
334 | __func__, data->inode->i_ino, | ||
335 | data->args.pgbase, (size_t)data->args.count, offset); | ||
336 | |||
337 | /* Retrieve the correct rpc_client for the byte range */ | ||
338 | j = nfs4_fl_calc_j_index(lseg, offset); | ||
339 | idx = nfs4_fl_calc_ds_index(lseg, j); | ||
340 | ds = nfs4_fl_prepare_ds(lseg, idx); | ||
341 | if (!ds) { | ||
342 | /* Either layout fh index faulty, or ds connect failed */ | ||
343 | set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags); | ||
344 | set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags); | ||
345 | return PNFS_NOT_ATTEMPTED; | ||
346 | } | ||
347 | dprintk("%s USE DS:ip %x %hu\n", __func__, | ||
348 | ntohl(ds->ds_ip_addr), ntohs(ds->ds_port)); | ||
349 | |||
350 | /* No multipath support. Use first DS */ | ||
351 | data->ds_clp = ds->ds_clp; | ||
352 | fh = nfs4_fl_select_ds_fh(lseg, j); | ||
353 | if (fh) | ||
354 | data->args.fh = fh; | ||
355 | |||
356 | data->args.offset = filelayout_get_dserver_offset(lseg, offset); | ||
357 | data->mds_offset = offset; | ||
358 | |||
359 | /* Perform an asynchronous read to ds */ | ||
360 | status = nfs_initiate_read(data, ds->ds_clp->cl_rpcclient, | ||
361 | &filelayout_read_call_ops); | ||
362 | BUG_ON(status != 0); | ||
363 | return PNFS_ATTEMPTED; | ||
364 | } | ||
365 | |||
366 | /* Perform async writes. */ | ||
367 | static enum pnfs_try_status | ||
368 | filelayout_write_pagelist(struct nfs_write_data *data, int sync) | ||
369 | { | ||
370 | struct pnfs_layout_segment *lseg = data->lseg; | ||
371 | struct nfs4_pnfs_ds *ds; | ||
372 | loff_t offset = data->args.offset; | ||
373 | u32 j, idx; | ||
374 | struct nfs_fh *fh; | ||
375 | int status; | ||
376 | |||
377 | /* Retrieve the correct rpc_client for the byte range */ | ||
378 | j = nfs4_fl_calc_j_index(lseg, offset); | ||
379 | idx = nfs4_fl_calc_ds_index(lseg, j); | ||
380 | ds = nfs4_fl_prepare_ds(lseg, idx); | ||
381 | if (!ds) { | ||
382 | printk(KERN_ERR "%s: prepare_ds failed, use MDS\n", __func__); | ||
383 | set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags); | ||
384 | set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags); | ||
385 | return PNFS_NOT_ATTEMPTED; | ||
386 | } | ||
387 | dprintk("%s ino %lu sync %d req %Zu@%llu DS:%x:%hu\n", __func__, | ||
388 | data->inode->i_ino, sync, (size_t) data->args.count, offset, | ||
389 | ntohl(ds->ds_ip_addr), ntohs(ds->ds_port)); | ||
390 | |||
391 | data->write_done_cb = filelayout_write_done_cb; | ||
392 | data->ds_clp = ds->ds_clp; | ||
393 | fh = nfs4_fl_select_ds_fh(lseg, j); | ||
394 | if (fh) | ||
395 | data->args.fh = fh; | ||
396 | /* | ||
397 | * Get the file offset on the dserver. Set the write offset to | ||
398 | * this offset and save the original offset. | ||
399 | */ | ||
400 | data->args.offset = filelayout_get_dserver_offset(lseg, offset); | ||
401 | |||
402 | /* Perform an asynchronous write */ | ||
403 | status = nfs_initiate_write(data, ds->ds_clp->cl_rpcclient, | ||
404 | &filelayout_write_call_ops, sync); | ||
405 | BUG_ON(status != 0); | ||
406 | return PNFS_ATTEMPTED; | ||
407 | } | ||
408 | |||
409 | /* | ||
410 | * filelayout_check_layout() | ||
411 | * | ||
412 | * Make sure layout segment parameters are sane WRT the device. | ||
413 | * At this point no generic layer initialization of the lseg has occurred, | ||
414 | * and nothing has been added to the layout_hdr cache. | ||
415 | * | ||
416 | */ | ||
417 | static int | ||
418 | filelayout_check_layout(struct pnfs_layout_hdr *lo, | ||
419 | struct nfs4_filelayout_segment *fl, | ||
420 | struct nfs4_layoutget_res *lgr, | ||
421 | struct nfs4_deviceid *id, | ||
422 | gfp_t gfp_flags) | ||
423 | { | ||
424 | struct nfs4_deviceid_node *d; | ||
425 | struct nfs4_file_layout_dsaddr *dsaddr; | ||
426 | int status = -EINVAL; | ||
427 | struct nfs_server *nfss = NFS_SERVER(lo->plh_inode); | ||
428 | |||
429 | dprintk("--> %s\n", __func__); | ||
430 | |||
431 | if (fl->pattern_offset > lgr->range.offset) { | ||
432 | dprintk("%s pattern_offset %lld too large\n", | ||
433 | __func__, fl->pattern_offset); | ||
434 | goto out; | ||
435 | } | ||
436 | |||
437 | if (!fl->stripe_unit || fl->stripe_unit % PAGE_SIZE) { | ||
438 | dprintk("%s Invalid stripe unit (%u)\n", | ||
439 | __func__, fl->stripe_unit); | ||
440 | goto out; | ||
441 | } | ||
442 | |||
443 | /* find and reference the deviceid */ | ||
444 | d = nfs4_find_get_deviceid(NFS_SERVER(lo->plh_inode)->pnfs_curr_ld, | ||
445 | NFS_SERVER(lo->plh_inode)->nfs_client, id); | ||
446 | if (d == NULL) { | ||
447 | dsaddr = get_device_info(lo->plh_inode, id, gfp_flags); | ||
448 | if (dsaddr == NULL) | ||
449 | goto out; | ||
450 | } else | ||
451 | dsaddr = container_of(d, struct nfs4_file_layout_dsaddr, id_node); | ||
452 | fl->dsaddr = dsaddr; | ||
453 | |||
454 | if (fl->first_stripe_index < 0 || | ||
455 | fl->first_stripe_index >= dsaddr->stripe_count) { | ||
456 | dprintk("%s Bad first_stripe_index %d\n", | ||
457 | __func__, fl->first_stripe_index); | ||
458 | goto out_put; | ||
459 | } | ||
460 | |||
461 | if ((fl->stripe_type == STRIPE_SPARSE && | ||
462 | fl->num_fh > 1 && fl->num_fh != dsaddr->ds_num) || | ||
463 | (fl->stripe_type == STRIPE_DENSE && | ||
464 | fl->num_fh != dsaddr->stripe_count)) { | ||
465 | dprintk("%s num_fh %u not valid for given packing\n", | ||
466 | __func__, fl->num_fh); | ||
467 | goto out_put; | ||
468 | } | ||
469 | |||
470 | if (fl->stripe_unit % nfss->rsize || fl->stripe_unit % nfss->wsize) { | ||
471 | dprintk("%s Stripe unit (%u) not aligned with rsize %u " | ||
472 | "wsize %u\n", __func__, fl->stripe_unit, nfss->rsize, | ||
473 | nfss->wsize); | ||
474 | } | ||
475 | |||
476 | status = 0; | ||
477 | out: | ||
478 | dprintk("--> %s returns %d\n", __func__, status); | ||
479 | return status; | ||
480 | out_put: | ||
481 | nfs4_fl_put_deviceid(dsaddr); | ||
482 | goto out; | ||
483 | } | ||
484 | |||
485 | static void filelayout_free_fh_array(struct nfs4_filelayout_segment *fl) | ||
486 | { | ||
487 | int i; | ||
488 | |||
489 | for (i = 0; i < fl->num_fh; i++) { | ||
490 | if (!fl->fh_array[i]) | ||
491 | break; | ||
492 | kfree(fl->fh_array[i]); | ||
493 | } | ||
494 | kfree(fl->fh_array); | ||
495 | fl->fh_array = NULL; | ||
496 | } | ||
497 | |||
498 | static void | ||
499 | _filelayout_free_lseg(struct nfs4_filelayout_segment *fl) | ||
500 | { | ||
501 | filelayout_free_fh_array(fl); | ||
502 | kfree(fl); | ||
503 | } | ||
504 | |||
505 | static int | ||
506 | filelayout_decode_layout(struct pnfs_layout_hdr *flo, | ||
507 | struct nfs4_filelayout_segment *fl, | ||
508 | struct nfs4_layoutget_res *lgr, | ||
509 | struct nfs4_deviceid *id, | ||
510 | gfp_t gfp_flags) | ||
511 | { | ||
512 | struct xdr_stream stream; | ||
513 | struct xdr_buf buf; | ||
514 | struct page *scratch; | ||
515 | __be32 *p; | ||
516 | uint32_t nfl_util; | ||
517 | int i; | ||
518 | |||
519 | dprintk("%s: set_layout_map Begin\n", __func__); | ||
520 | |||
521 | scratch = alloc_page(gfp_flags); | ||
522 | if (!scratch) | ||
523 | return -ENOMEM; | ||
524 | |||
525 | xdr_init_decode_pages(&stream, &buf, lgr->layoutp->pages, lgr->layoutp->len); | ||
526 | xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE); | ||
527 | |||
528 | /* 20 = ufl_util (4), first_stripe_index (4), pattern_offset (8), | ||
529 | * num_fh (4) */ | ||
530 | p = xdr_inline_decode(&stream, NFS4_DEVICEID4_SIZE + 20); | ||
531 | if (unlikely(!p)) | ||
532 | goto out_err; | ||
533 | |||
534 | memcpy(id, p, sizeof(*id)); | ||
535 | p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE); | ||
536 | nfs4_print_deviceid(id); | ||
537 | |||
538 | nfl_util = be32_to_cpup(p++); | ||
539 | if (nfl_util & NFL4_UFLG_COMMIT_THRU_MDS) | ||
540 | fl->commit_through_mds = 1; | ||
541 | if (nfl_util & NFL4_UFLG_DENSE) | ||
542 | fl->stripe_type = STRIPE_DENSE; | ||
543 | else | ||
544 | fl->stripe_type = STRIPE_SPARSE; | ||
545 | fl->stripe_unit = nfl_util & ~NFL4_UFLG_MASK; | ||
546 | |||
547 | fl->first_stripe_index = be32_to_cpup(p++); | ||
548 | p = xdr_decode_hyper(p, &fl->pattern_offset); | ||
549 | fl->num_fh = be32_to_cpup(p++); | ||
550 | |||
551 | dprintk("%s: nfl_util 0x%X num_fh %u fsi %u po %llu\n", | ||
552 | __func__, nfl_util, fl->num_fh, fl->first_stripe_index, | ||
553 | fl->pattern_offset); | ||
554 | |||
555 | /* Note that a zero value for num_fh is legal for STRIPE_SPARSE. | ||
556 | * Futher checking is done in filelayout_check_layout */ | ||
557 | if (fl->num_fh < 0 || fl->num_fh > | ||
558 | max(NFS4_PNFS_MAX_STRIPE_CNT, NFS4_PNFS_MAX_MULTI_CNT)) | ||
559 | goto out_err; | ||
560 | |||
561 | if (fl->num_fh > 0) { | ||
562 | fl->fh_array = kzalloc(fl->num_fh * sizeof(struct nfs_fh *), | ||
563 | gfp_flags); | ||
564 | if (!fl->fh_array) | ||
565 | goto out_err; | ||
566 | } | ||
567 | |||
568 | for (i = 0; i < fl->num_fh; i++) { | ||
569 | /* Do we want to use a mempool here? */ | ||
570 | fl->fh_array[i] = kmalloc(sizeof(struct nfs_fh), gfp_flags); | ||
571 | if (!fl->fh_array[i]) | ||
572 | goto out_err_free; | ||
573 | |||
574 | p = xdr_inline_decode(&stream, 4); | ||
575 | if (unlikely(!p)) | ||
576 | goto out_err_free; | ||
577 | fl->fh_array[i]->size = be32_to_cpup(p++); | ||
578 | if (sizeof(struct nfs_fh) < fl->fh_array[i]->size) { | ||
579 | printk(KERN_ERR "Too big fh %d received %d\n", | ||
580 | i, fl->fh_array[i]->size); | ||
581 | goto out_err_free; | ||
582 | } | ||
583 | |||
584 | p = xdr_inline_decode(&stream, fl->fh_array[i]->size); | ||
585 | if (unlikely(!p)) | ||
586 | goto out_err_free; | ||
587 | memcpy(fl->fh_array[i]->data, p, fl->fh_array[i]->size); | ||
588 | dprintk("DEBUG: %s: fh len %d\n", __func__, | ||
589 | fl->fh_array[i]->size); | ||
590 | } | ||
591 | |||
592 | __free_page(scratch); | ||
593 | return 0; | ||
594 | |||
595 | out_err_free: | ||
596 | filelayout_free_fh_array(fl); | ||
597 | out_err: | ||
598 | __free_page(scratch); | ||
599 | return -EIO; | ||
600 | } | ||
601 | |||
602 | static void | ||
603 | filelayout_free_lseg(struct pnfs_layout_segment *lseg) | ||
604 | { | ||
605 | struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg); | ||
606 | |||
607 | dprintk("--> %s\n", __func__); | ||
608 | nfs4_fl_put_deviceid(fl->dsaddr); | ||
609 | kfree(fl->commit_buckets); | ||
610 | _filelayout_free_lseg(fl); | ||
611 | } | ||
612 | |||
613 | static struct pnfs_layout_segment * | ||
614 | filelayout_alloc_lseg(struct pnfs_layout_hdr *layoutid, | ||
615 | struct nfs4_layoutget_res *lgr, | ||
616 | gfp_t gfp_flags) | ||
617 | { | ||
618 | struct nfs4_filelayout_segment *fl; | ||
619 | int rc; | ||
620 | struct nfs4_deviceid id; | ||
621 | |||
622 | dprintk("--> %s\n", __func__); | ||
623 | fl = kzalloc(sizeof(*fl), gfp_flags); | ||
624 | if (!fl) | ||
625 | return NULL; | ||
626 | |||
627 | rc = filelayout_decode_layout(layoutid, fl, lgr, &id, gfp_flags); | ||
628 | if (rc != 0 || filelayout_check_layout(layoutid, fl, lgr, &id, gfp_flags)) { | ||
629 | _filelayout_free_lseg(fl); | ||
630 | return NULL; | ||
631 | } | ||
632 | |||
633 | /* This assumes there is only one IOMODE_RW lseg. What | ||
634 | * we really want to do is have a layout_hdr level | ||
635 | * dictionary of <multipath_list4, fh> keys, each | ||
636 | * associated with a struct list_head, populated by calls | ||
637 | * to filelayout_write_pagelist(). | ||
638 | * */ | ||
639 | if ((!fl->commit_through_mds) && (lgr->range.iomode == IOMODE_RW)) { | ||
640 | int i; | ||
641 | int size = (fl->stripe_type == STRIPE_SPARSE) ? | ||
642 | fl->dsaddr->ds_num : fl->dsaddr->stripe_count; | ||
643 | |||
644 | fl->commit_buckets = kcalloc(size, sizeof(struct list_head), gfp_flags); | ||
645 | if (!fl->commit_buckets) { | ||
646 | filelayout_free_lseg(&fl->generic_hdr); | ||
647 | return NULL; | ||
648 | } | ||
649 | fl->number_of_buckets = size; | ||
650 | for (i = 0; i < size; i++) | ||
651 | INIT_LIST_HEAD(&fl->commit_buckets[i]); | ||
652 | } | ||
653 | return &fl->generic_hdr; | ||
654 | } | ||
655 | |||
656 | /* | ||
657 | * filelayout_pg_test(). Called by nfs_can_coalesce_requests() | ||
658 | * | ||
659 | * return true : coalesce page | ||
660 | * return false : don't coalesce page | ||
661 | */ | ||
662 | bool | ||
663 | filelayout_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev, | ||
664 | struct nfs_page *req) | ||
665 | { | ||
666 | u64 p_stripe, r_stripe; | ||
667 | u32 stripe_unit; | ||
668 | |||
669 | if (!pnfs_generic_pg_test(pgio, prev, req) || | ||
670 | !nfs_generic_pg_test(pgio, prev, req)) | ||
671 | return false; | ||
672 | |||
673 | if (!pgio->pg_lseg) | ||
674 | return 1; | ||
675 | p_stripe = (u64)prev->wb_index << PAGE_CACHE_SHIFT; | ||
676 | r_stripe = (u64)req->wb_index << PAGE_CACHE_SHIFT; | ||
677 | stripe_unit = FILELAYOUT_LSEG(pgio->pg_lseg)->stripe_unit; | ||
678 | |||
679 | do_div(p_stripe, stripe_unit); | ||
680 | do_div(r_stripe, stripe_unit); | ||
681 | |||
682 | return (p_stripe == r_stripe); | ||
683 | } | ||
684 | |||
685 | static bool filelayout_mark_pnfs_commit(struct pnfs_layout_segment *lseg) | ||
686 | { | ||
687 | return !FILELAYOUT_LSEG(lseg)->commit_through_mds; | ||
688 | } | ||
689 | |||
690 | static u32 select_bucket_index(struct nfs4_filelayout_segment *fl, u32 j) | ||
691 | { | ||
692 | if (fl->stripe_type == STRIPE_SPARSE) | ||
693 | return nfs4_fl_calc_ds_index(&fl->generic_hdr, j); | ||
694 | else | ||
695 | return j; | ||
696 | } | ||
697 | |||
698 | struct list_head *filelayout_choose_commit_list(struct nfs_page *req) | ||
699 | { | ||
700 | struct pnfs_layout_segment *lseg = req->wb_commit_lseg; | ||
701 | struct nfs4_filelayout_segment *fl = FILELAYOUT_LSEG(lseg); | ||
702 | u32 i, j; | ||
703 | struct list_head *list; | ||
704 | |||
705 | /* Note that we are calling nfs4_fl_calc_j_index on each page | ||
706 | * that ends up being committed to a data server. An attractive | ||
707 | * alternative is to add a field to nfs_write_data and nfs_page | ||
708 | * to store the value calculated in filelayout_write_pagelist | ||
709 | * and just use that here. | ||
710 | */ | ||
711 | j = nfs4_fl_calc_j_index(lseg, | ||
712 | (loff_t)req->wb_index << PAGE_CACHE_SHIFT); | ||
713 | i = select_bucket_index(fl, j); | ||
714 | list = &fl->commit_buckets[i]; | ||
715 | if (list_empty(list)) { | ||
716 | /* Non-empty buckets hold a reference on the lseg */ | ||
717 | get_lseg(lseg); | ||
718 | } | ||
719 | return list; | ||
720 | } | ||
721 | |||
722 | static u32 calc_ds_index_from_commit(struct pnfs_layout_segment *lseg, u32 i) | ||
723 | { | ||
724 | struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg); | ||
725 | |||
726 | if (flseg->stripe_type == STRIPE_SPARSE) | ||
727 | return i; | ||
728 | else | ||
729 | return nfs4_fl_calc_ds_index(lseg, i); | ||
730 | } | ||
731 | |||
732 | static struct nfs_fh * | ||
733 | select_ds_fh_from_commit(struct pnfs_layout_segment *lseg, u32 i) | ||
734 | { | ||
735 | struct nfs4_filelayout_segment *flseg = FILELAYOUT_LSEG(lseg); | ||
736 | |||
737 | if (flseg->stripe_type == STRIPE_SPARSE) { | ||
738 | if (flseg->num_fh == 1) | ||
739 | i = 0; | ||
740 | else if (flseg->num_fh == 0) | ||
741 | /* Use the MDS OPEN fh set in nfs_read_rpcsetup */ | ||
742 | return NULL; | ||
743 | } | ||
744 | return flseg->fh_array[i]; | ||
745 | } | ||
746 | |||
747 | static int filelayout_initiate_commit(struct nfs_write_data *data, int how) | ||
748 | { | ||
749 | struct pnfs_layout_segment *lseg = data->lseg; | ||
750 | struct nfs4_pnfs_ds *ds; | ||
751 | u32 idx; | ||
752 | struct nfs_fh *fh; | ||
753 | |||
754 | idx = calc_ds_index_from_commit(lseg, data->ds_commit_index); | ||
755 | ds = nfs4_fl_prepare_ds(lseg, idx); | ||
756 | if (!ds) { | ||
757 | printk(KERN_ERR "%s: prepare_ds failed, use MDS\n", __func__); | ||
758 | set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags); | ||
759 | set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags); | ||
760 | prepare_to_resend_writes(data); | ||
761 | data->mds_ops->rpc_release(data); | ||
762 | return -EAGAIN; | ||
763 | } | ||
764 | dprintk("%s ino %lu, how %d\n", __func__, data->inode->i_ino, how); | ||
765 | data->write_done_cb = filelayout_commit_done_cb; | ||
766 | data->ds_clp = ds->ds_clp; | ||
767 | fh = select_ds_fh_from_commit(lseg, data->ds_commit_index); | ||
768 | if (fh) | ||
769 | data->args.fh = fh; | ||
770 | return nfs_initiate_commit(data, ds->ds_clp->cl_rpcclient, | ||
771 | &filelayout_commit_call_ops, how); | ||
772 | } | ||
773 | |||
774 | /* | ||
775 | * This is only useful while we are using whole file layouts. | ||
776 | */ | ||
777 | static struct pnfs_layout_segment *find_only_write_lseg(struct inode *inode) | ||
778 | { | ||
779 | struct pnfs_layout_segment *lseg, *rv = NULL; | ||
780 | |||
781 | spin_lock(&inode->i_lock); | ||
782 | list_for_each_entry(lseg, &NFS_I(inode)->layout->plh_segs, pls_list) | ||
783 | if (lseg->pls_range.iomode == IOMODE_RW) | ||
784 | rv = get_lseg(lseg); | ||
785 | spin_unlock(&inode->i_lock); | ||
786 | return rv; | ||
787 | } | ||
788 | |||
789 | static int alloc_ds_commits(struct inode *inode, struct list_head *list) | ||
790 | { | ||
791 | struct pnfs_layout_segment *lseg; | ||
792 | struct nfs4_filelayout_segment *fl; | ||
793 | struct nfs_write_data *data; | ||
794 | int i, j; | ||
795 | |||
796 | /* Won't need this when non-whole file layout segments are supported | ||
797 | * instead we will use a pnfs_layout_hdr structure */ | ||
798 | lseg = find_only_write_lseg(inode); | ||
799 | if (!lseg) | ||
800 | return 0; | ||
801 | fl = FILELAYOUT_LSEG(lseg); | ||
802 | for (i = 0; i < fl->number_of_buckets; i++) { | ||
803 | if (list_empty(&fl->commit_buckets[i])) | ||
804 | continue; | ||
805 | data = nfs_commitdata_alloc(); | ||
806 | if (!data) | ||
807 | goto out_bad; | ||
808 | data->ds_commit_index = i; | ||
809 | data->lseg = lseg; | ||
810 | list_add(&data->pages, list); | ||
811 | } | ||
812 | put_lseg(lseg); | ||
813 | return 0; | ||
814 | |||
815 | out_bad: | ||
816 | for (j = i; j < fl->number_of_buckets; j++) { | ||
817 | if (list_empty(&fl->commit_buckets[i])) | ||
818 | continue; | ||
819 | nfs_retry_commit(&fl->commit_buckets[i], lseg); | ||
820 | put_lseg(lseg); /* associated with emptying bucket */ | ||
821 | } | ||
822 | put_lseg(lseg); | ||
823 | /* Caller will clean up entries put on list */ | ||
824 | return -ENOMEM; | ||
825 | } | ||
826 | |||
827 | /* This follows nfs_commit_list pretty closely */ | ||
828 | static int | ||
829 | filelayout_commit_pagelist(struct inode *inode, struct list_head *mds_pages, | ||
830 | int how) | ||
831 | { | ||
832 | struct nfs_write_data *data, *tmp; | ||
833 | LIST_HEAD(list); | ||
834 | |||
835 | if (!list_empty(mds_pages)) { | ||
836 | data = nfs_commitdata_alloc(); | ||
837 | if (!data) | ||
838 | goto out_bad; | ||
839 | data->lseg = NULL; | ||
840 | list_add(&data->pages, &list); | ||
841 | } | ||
842 | |||
843 | if (alloc_ds_commits(inode, &list)) | ||
844 | goto out_bad; | ||
845 | |||
846 | list_for_each_entry_safe(data, tmp, &list, pages) { | ||
847 | list_del_init(&data->pages); | ||
848 | atomic_inc(&NFS_I(inode)->commits_outstanding); | ||
849 | if (!data->lseg) { | ||
850 | nfs_init_commit(data, mds_pages, NULL); | ||
851 | nfs_initiate_commit(data, NFS_CLIENT(inode), | ||
852 | data->mds_ops, how); | ||
853 | } else { | ||
854 | nfs_init_commit(data, &FILELAYOUT_LSEG(data->lseg)->commit_buckets[data->ds_commit_index], data->lseg); | ||
855 | filelayout_initiate_commit(data, how); | ||
856 | } | ||
857 | } | ||
858 | return 0; | ||
859 | out_bad: | ||
860 | list_for_each_entry_safe(data, tmp, &list, pages) { | ||
861 | nfs_retry_commit(&data->pages, data->lseg); | ||
862 | list_del_init(&data->pages); | ||
863 | nfs_commit_free(data); | ||
864 | } | ||
865 | nfs_retry_commit(mds_pages, NULL); | ||
866 | nfs_commit_clear_lock(NFS_I(inode)); | ||
867 | return -ENOMEM; | ||
868 | } | ||
869 | |||
870 | static void | ||
871 | filelayout_free_deveiceid_node(struct nfs4_deviceid_node *d) | ||
872 | { | ||
873 | nfs4_fl_free_deviceid(container_of(d, struct nfs4_file_layout_dsaddr, id_node)); | ||
874 | } | ||
875 | |||
876 | static struct pnfs_layoutdriver_type filelayout_type = { | ||
877 | .id = LAYOUT_NFSV4_1_FILES, | ||
878 | .name = "LAYOUT_NFSV4_1_FILES", | ||
879 | .owner = THIS_MODULE, | ||
880 | .alloc_lseg = filelayout_alloc_lseg, | ||
881 | .free_lseg = filelayout_free_lseg, | ||
882 | .pg_test = filelayout_pg_test, | ||
883 | .mark_pnfs_commit = filelayout_mark_pnfs_commit, | ||
884 | .choose_commit_list = filelayout_choose_commit_list, | ||
885 | .commit_pagelist = filelayout_commit_pagelist, | ||
886 | .read_pagelist = filelayout_read_pagelist, | ||
887 | .write_pagelist = filelayout_write_pagelist, | ||
888 | .free_deviceid_node = filelayout_free_deveiceid_node, | ||
889 | }; | ||
890 | |||
891 | static int __init nfs4filelayout_init(void) | ||
892 | { | ||
893 | printk(KERN_INFO "%s: NFSv4 File Layout Driver Registering...\n", | ||
894 | __func__); | ||
895 | return pnfs_register_layoutdriver(&filelayout_type); | ||
896 | } | ||
897 | |||
898 | static void __exit nfs4filelayout_exit(void) | ||
899 | { | ||
900 | printk(KERN_INFO "%s: NFSv4 File Layout Driver Unregistering...\n", | ||
901 | __func__); | ||
902 | pnfs_unregister_layoutdriver(&filelayout_type); | ||
903 | } | ||
904 | |||
905 | module_init(nfs4filelayout_init); | ||
906 | module_exit(nfs4filelayout_exit); | ||