nfs4filelayout.c 25 KB

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