nfs4filelayout.c 25 KB

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