pnfs.c 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533
  1. /*
  2. * pNFS functions to call and manage layout drivers.
  3. *
  4. * Copyright (c) 2002 [year of first publication]
  5. * The Regents of the University of Michigan
  6. * All Rights Reserved
  7. *
  8. * Dean Hildebrand <dhildebz@umich.edu>
  9. *
  10. * Permission is granted to use, copy, create derivative works, and
  11. * redistribute this software and such derivative works for any purpose,
  12. * so long as the name of the University of Michigan is not used in
  13. * any advertising or publicity pertaining to the use or distribution
  14. * of this software without specific, written prior authorization. If
  15. * the above copyright notice or any other identification of the
  16. * University of Michigan is included in any copy of any portion of
  17. * this software, then the disclaimer below must also be included.
  18. *
  19. * This software is provided as is, without representation or warranty
  20. * of any kind either express or implied, including without limitation
  21. * the implied warranties of merchantability, fitness for a particular
  22. * purpose, or noninfringement. The Regents of the University of
  23. * Michigan shall not be liable for any damages, including special,
  24. * indirect, incidental, or consequential damages, with respect to any
  25. * claim arising out of or in connection with the use of the software,
  26. * even if it has been or is hereafter advised of the possibility of
  27. * such damages.
  28. */
  29. #include <linux/nfs_fs.h>
  30. #include <linux/nfs_page.h>
  31. #include <linux/module.h>
  32. #include "internal.h"
  33. #include "pnfs.h"
  34. #include "iostat.h"
  35. #define NFSDBG_FACILITY NFSDBG_PNFS
  36. /* Locking:
  37. *
  38. * pnfs_spinlock:
  39. * protects pnfs_modules_tbl.
  40. */
  41. static DEFINE_SPINLOCK(pnfs_spinlock);
  42. /*
  43. * pnfs_modules_tbl holds all pnfs modules
  44. */
  45. static LIST_HEAD(pnfs_modules_tbl);
  46. /* Return the registered pnfs layout driver module matching given id */
  47. static struct pnfs_layoutdriver_type *
  48. find_pnfs_driver_locked(u32 id)
  49. {
  50. struct pnfs_layoutdriver_type *local;
  51. list_for_each_entry(local, &pnfs_modules_tbl, pnfs_tblid)
  52. if (local->id == id)
  53. goto out;
  54. local = NULL;
  55. out:
  56. dprintk("%s: Searching for id %u, found %p\n", __func__, id, local);
  57. return local;
  58. }
  59. static struct pnfs_layoutdriver_type *
  60. find_pnfs_driver(u32 id)
  61. {
  62. struct pnfs_layoutdriver_type *local;
  63. spin_lock(&pnfs_spinlock);
  64. local = find_pnfs_driver_locked(id);
  65. spin_unlock(&pnfs_spinlock);
  66. return local;
  67. }
  68. void
  69. unset_pnfs_layoutdriver(struct nfs_server *nfss)
  70. {
  71. if (nfss->pnfs_curr_ld) {
  72. if (nfss->pnfs_curr_ld->clear_layoutdriver)
  73. nfss->pnfs_curr_ld->clear_layoutdriver(nfss);
  74. module_put(nfss->pnfs_curr_ld->owner);
  75. }
  76. nfss->pnfs_curr_ld = NULL;
  77. }
  78. /*
  79. * Try to set the server's pnfs module to the pnfs layout type specified by id.
  80. * Currently only one pNFS layout driver per filesystem is supported.
  81. *
  82. * @id layout type. Zero (illegal layout type) indicates pNFS not in use.
  83. */
  84. void
  85. set_pnfs_layoutdriver(struct nfs_server *server, const struct nfs_fh *mntfh,
  86. u32 id)
  87. {
  88. struct pnfs_layoutdriver_type *ld_type = NULL;
  89. if (id == 0)
  90. goto out_no_driver;
  91. if (!(server->nfs_client->cl_exchange_flags &
  92. (EXCHGID4_FLAG_USE_NON_PNFS | EXCHGID4_FLAG_USE_PNFS_MDS))) {
  93. printk(KERN_ERR "NFS: %s: id %u cl_exchange_flags 0x%x\n",
  94. __func__, id, server->nfs_client->cl_exchange_flags);
  95. goto out_no_driver;
  96. }
  97. ld_type = find_pnfs_driver(id);
  98. if (!ld_type) {
  99. request_module("%s-%u", LAYOUT_NFSV4_1_MODULE_PREFIX, id);
  100. ld_type = find_pnfs_driver(id);
  101. if (!ld_type) {
  102. dprintk("%s: No pNFS module found for %u.\n",
  103. __func__, id);
  104. goto out_no_driver;
  105. }
  106. }
  107. if (!try_module_get(ld_type->owner)) {
  108. dprintk("%s: Could not grab reference on module\n", __func__);
  109. goto out_no_driver;
  110. }
  111. server->pnfs_curr_ld = ld_type;
  112. if (ld_type->set_layoutdriver
  113. && ld_type->set_layoutdriver(server, mntfh)) {
  114. printk(KERN_ERR "NFS: %s: Error initializing pNFS layout "
  115. "driver %u.\n", __func__, id);
  116. module_put(ld_type->owner);
  117. goto out_no_driver;
  118. }
  119. dprintk("%s: pNFS module for %u set\n", __func__, id);
  120. return;
  121. out_no_driver:
  122. dprintk("%s: Using NFSv4 I/O\n", __func__);
  123. server->pnfs_curr_ld = NULL;
  124. }
  125. int
  126. pnfs_register_layoutdriver(struct pnfs_layoutdriver_type *ld_type)
  127. {
  128. int status = -EINVAL;
  129. struct pnfs_layoutdriver_type *tmp;
  130. if (ld_type->id == 0) {
  131. printk(KERN_ERR "NFS: %s id 0 is reserved\n", __func__);
  132. return status;
  133. }
  134. if (!ld_type->alloc_lseg || !ld_type->free_lseg) {
  135. printk(KERN_ERR "NFS: %s Layout driver must provide "
  136. "alloc_lseg and free_lseg.\n", __func__);
  137. return status;
  138. }
  139. spin_lock(&pnfs_spinlock);
  140. tmp = find_pnfs_driver_locked(ld_type->id);
  141. if (!tmp) {
  142. list_add(&ld_type->pnfs_tblid, &pnfs_modules_tbl);
  143. status = 0;
  144. dprintk("%s Registering id:%u name:%s\n", __func__, ld_type->id,
  145. ld_type->name);
  146. } else {
  147. printk(KERN_ERR "NFS: %s Module with id %d already loaded!\n",
  148. __func__, ld_type->id);
  149. }
  150. spin_unlock(&pnfs_spinlock);
  151. return status;
  152. }
  153. EXPORT_SYMBOL_GPL(pnfs_register_layoutdriver);
  154. void
  155. pnfs_unregister_layoutdriver(struct pnfs_layoutdriver_type *ld_type)
  156. {
  157. dprintk("%s Deregistering id:%u\n", __func__, ld_type->id);
  158. spin_lock(&pnfs_spinlock);
  159. list_del(&ld_type->pnfs_tblid);
  160. spin_unlock(&pnfs_spinlock);
  161. }
  162. EXPORT_SYMBOL_GPL(pnfs_unregister_layoutdriver);
  163. /*
  164. * pNFS client layout cache
  165. */
  166. /* Need to hold i_lock if caller does not already hold reference */
  167. void
  168. get_layout_hdr(struct pnfs_layout_hdr *lo)
  169. {
  170. atomic_inc(&lo->plh_refcount);
  171. }
  172. static struct pnfs_layout_hdr *
  173. pnfs_alloc_layout_hdr(struct inode *ino, gfp_t gfp_flags)
  174. {
  175. struct pnfs_layoutdriver_type *ld = NFS_SERVER(ino)->pnfs_curr_ld;
  176. return ld->alloc_layout_hdr ? ld->alloc_layout_hdr(ino, gfp_flags) :
  177. kzalloc(sizeof(struct pnfs_layout_hdr), gfp_flags);
  178. }
  179. static void
  180. pnfs_free_layout_hdr(struct pnfs_layout_hdr *lo)
  181. {
  182. struct pnfs_layoutdriver_type *ld = NFS_SERVER(lo->plh_inode)->pnfs_curr_ld;
  183. put_rpccred(lo->plh_lc_cred);
  184. return ld->alloc_layout_hdr ? ld->free_layout_hdr(lo) : kfree(lo);
  185. }
  186. static void
  187. destroy_layout_hdr(struct pnfs_layout_hdr *lo)
  188. {
  189. dprintk("%s: freeing layout cache %p\n", __func__, lo);
  190. BUG_ON(!list_empty(&lo->plh_layouts));
  191. NFS_I(lo->plh_inode)->layout = NULL;
  192. pnfs_free_layout_hdr(lo);
  193. }
  194. static void
  195. put_layout_hdr_locked(struct pnfs_layout_hdr *lo)
  196. {
  197. if (atomic_dec_and_test(&lo->plh_refcount))
  198. destroy_layout_hdr(lo);
  199. }
  200. void
  201. put_layout_hdr(struct pnfs_layout_hdr *lo)
  202. {
  203. struct inode *inode = lo->plh_inode;
  204. if (atomic_dec_and_lock(&lo->plh_refcount, &inode->i_lock)) {
  205. destroy_layout_hdr(lo);
  206. spin_unlock(&inode->i_lock);
  207. }
  208. }
  209. static void
  210. init_lseg(struct pnfs_layout_hdr *lo, struct pnfs_layout_segment *lseg)
  211. {
  212. INIT_LIST_HEAD(&lseg->pls_list);
  213. INIT_LIST_HEAD(&lseg->pls_lc_list);
  214. atomic_set(&lseg->pls_refcount, 1);
  215. smp_mb();
  216. set_bit(NFS_LSEG_VALID, &lseg->pls_flags);
  217. lseg->pls_layout = lo;
  218. }
  219. static void free_lseg(struct pnfs_layout_segment *lseg)
  220. {
  221. struct inode *ino = lseg->pls_layout->plh_inode;
  222. NFS_SERVER(ino)->pnfs_curr_ld->free_lseg(lseg);
  223. /* Matched by get_layout_hdr in pnfs_insert_layout */
  224. put_layout_hdr(NFS_I(ino)->layout);
  225. }
  226. static void
  227. put_lseg_common(struct pnfs_layout_segment *lseg)
  228. {
  229. struct inode *inode = lseg->pls_layout->plh_inode;
  230. WARN_ON(test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
  231. list_del_init(&lseg->pls_list);
  232. if (list_empty(&lseg->pls_layout->plh_segs)) {
  233. set_bit(NFS_LAYOUT_DESTROYED, &lseg->pls_layout->plh_flags);
  234. /* Matched by initial refcount set in alloc_init_layout_hdr */
  235. put_layout_hdr_locked(lseg->pls_layout);
  236. }
  237. rpc_wake_up(&NFS_SERVER(inode)->roc_rpcwaitq);
  238. }
  239. void
  240. put_lseg(struct pnfs_layout_segment *lseg)
  241. {
  242. struct inode *inode;
  243. if (!lseg)
  244. return;
  245. dprintk("%s: lseg %p ref %d valid %d\n", __func__, lseg,
  246. atomic_read(&lseg->pls_refcount),
  247. test_bit(NFS_LSEG_VALID, &lseg->pls_flags));
  248. inode = lseg->pls_layout->plh_inode;
  249. if (atomic_dec_and_lock(&lseg->pls_refcount, &inode->i_lock)) {
  250. LIST_HEAD(free_me);
  251. put_lseg_common(lseg);
  252. list_add(&lseg->pls_list, &free_me);
  253. spin_unlock(&inode->i_lock);
  254. pnfs_free_lseg_list(&free_me);
  255. }
  256. }
  257. EXPORT_SYMBOL_GPL(put_lseg);
  258. static inline u64
  259. end_offset(u64 start, u64 len)
  260. {
  261. u64 end;
  262. end = start + len;
  263. return end >= start ? end : NFS4_MAX_UINT64;
  264. }
  265. /* last octet in a range */
  266. static inline u64
  267. last_byte_offset(u64 start, u64 len)
  268. {
  269. u64 end;
  270. BUG_ON(!len);
  271. end = start + len;
  272. return end > start ? end - 1 : NFS4_MAX_UINT64;
  273. }
  274. /*
  275. * is l2 fully contained in l1?
  276. * start1 end1
  277. * [----------------------------------)
  278. * start2 end2
  279. * [----------------)
  280. */
  281. static inline int
  282. lo_seg_contained(struct pnfs_layout_range *l1,
  283. struct pnfs_layout_range *l2)
  284. {
  285. u64 start1 = l1->offset;
  286. u64 end1 = end_offset(start1, l1->length);
  287. u64 start2 = l2->offset;
  288. u64 end2 = end_offset(start2, l2->length);
  289. return (start1 <= start2) && (end1 >= end2);
  290. }
  291. /*
  292. * is l1 and l2 intersecting?
  293. * start1 end1
  294. * [----------------------------------)
  295. * start2 end2
  296. * [----------------)
  297. */
  298. static inline int
  299. lo_seg_intersecting(struct pnfs_layout_range *l1,
  300. struct pnfs_layout_range *l2)
  301. {
  302. u64 start1 = l1->offset;
  303. u64 end1 = end_offset(start1, l1->length);
  304. u64 start2 = l2->offset;
  305. u64 end2 = end_offset(start2, l2->length);
  306. return (end1 == NFS4_MAX_UINT64 || end1 > start2) &&
  307. (end2 == NFS4_MAX_UINT64 || end2 > start1);
  308. }
  309. static bool
  310. should_free_lseg(struct pnfs_layout_range *lseg_range,
  311. struct pnfs_layout_range *recall_range)
  312. {
  313. return (recall_range->iomode == IOMODE_ANY ||
  314. lseg_range->iomode == recall_range->iomode) &&
  315. lo_seg_intersecting(lseg_range, recall_range);
  316. }
  317. /* Returns 1 if lseg is removed from list, 0 otherwise */
  318. static int mark_lseg_invalid(struct pnfs_layout_segment *lseg,
  319. struct list_head *tmp_list)
  320. {
  321. int rv = 0;
  322. if (test_and_clear_bit(NFS_LSEG_VALID, &lseg->pls_flags)) {
  323. /* Remove the reference keeping the lseg in the
  324. * list. It will now be removed when all
  325. * outstanding io is finished.
  326. */
  327. dprintk("%s: lseg %p ref %d\n", __func__, lseg,
  328. atomic_read(&lseg->pls_refcount));
  329. if (atomic_dec_and_test(&lseg->pls_refcount)) {
  330. put_lseg_common(lseg);
  331. list_add(&lseg->pls_list, tmp_list);
  332. rv = 1;
  333. }
  334. }
  335. return rv;
  336. }
  337. /* Returns count of number of matching invalid lsegs remaining in list
  338. * after call.
  339. */
  340. int
  341. mark_matching_lsegs_invalid(struct pnfs_layout_hdr *lo,
  342. struct list_head *tmp_list,
  343. struct pnfs_layout_range *recall_range)
  344. {
  345. struct pnfs_layout_segment *lseg, *next;
  346. int invalid = 0, removed = 0;
  347. dprintk("%s:Begin lo %p\n", __func__, lo);
  348. if (list_empty(&lo->plh_segs)) {
  349. if (!test_and_set_bit(NFS_LAYOUT_DESTROYED, &lo->plh_flags))
  350. put_layout_hdr_locked(lo);
  351. return 0;
  352. }
  353. list_for_each_entry_safe(lseg, next, &lo->plh_segs, pls_list)
  354. if (!recall_range ||
  355. should_free_lseg(&lseg->pls_range, recall_range)) {
  356. dprintk("%s: freeing lseg %p iomode %d "
  357. "offset %llu length %llu\n", __func__,
  358. lseg, lseg->pls_range.iomode, lseg->pls_range.offset,
  359. lseg->pls_range.length);
  360. invalid++;
  361. removed += mark_lseg_invalid(lseg, tmp_list);
  362. }
  363. dprintk("%s:Return %i\n", __func__, invalid - removed);
  364. return invalid - removed;
  365. }
  366. /* note free_me must contain lsegs from a single layout_hdr */
  367. void
  368. pnfs_free_lseg_list(struct list_head *free_me)
  369. {
  370. struct pnfs_layout_segment *lseg, *tmp;
  371. struct pnfs_layout_hdr *lo;
  372. if (list_empty(free_me))
  373. return;
  374. lo = list_first_entry(free_me, struct pnfs_layout_segment,
  375. pls_list)->pls_layout;
  376. if (test_bit(NFS_LAYOUT_DESTROYED, &lo->plh_flags)) {
  377. struct nfs_client *clp;
  378. clp = NFS_SERVER(lo->plh_inode)->nfs_client;
  379. spin_lock(&clp->cl_lock);
  380. list_del_init(&lo->plh_layouts);
  381. spin_unlock(&clp->cl_lock);
  382. }
  383. list_for_each_entry_safe(lseg, tmp, free_me, pls_list) {
  384. list_del(&lseg->pls_list);
  385. free_lseg(lseg);
  386. }
  387. }
  388. void
  389. pnfs_destroy_layout(struct nfs_inode *nfsi)
  390. {
  391. struct pnfs_layout_hdr *lo;
  392. LIST_HEAD(tmp_list);
  393. spin_lock(&nfsi->vfs_inode.i_lock);
  394. lo = nfsi->layout;
  395. if (lo) {
  396. lo->plh_block_lgets++; /* permanently block new LAYOUTGETs */
  397. mark_matching_lsegs_invalid(lo, &tmp_list, NULL);
  398. }
  399. spin_unlock(&nfsi->vfs_inode.i_lock);
  400. pnfs_free_lseg_list(&tmp_list);
  401. }
  402. /*
  403. * Called by the state manger to remove all layouts established under an
  404. * expired lease.
  405. */
  406. void
  407. pnfs_destroy_all_layouts(struct nfs_client *clp)
  408. {
  409. struct nfs_server *server;
  410. struct pnfs_layout_hdr *lo;
  411. LIST_HEAD(tmp_list);
  412. nfs4_deviceid_mark_client_invalid(clp);
  413. nfs4_deviceid_purge_client(clp);
  414. spin_lock(&clp->cl_lock);
  415. rcu_read_lock();
  416. list_for_each_entry_rcu(server, &clp->cl_superblocks, client_link) {
  417. if (!list_empty(&server->layouts))
  418. list_splice_init(&server->layouts, &tmp_list);
  419. }
  420. rcu_read_unlock();
  421. spin_unlock(&clp->cl_lock);
  422. while (!list_empty(&tmp_list)) {
  423. lo = list_entry(tmp_list.next, struct pnfs_layout_hdr,
  424. plh_layouts);
  425. dprintk("%s freeing layout for inode %lu\n", __func__,
  426. lo->plh_inode->i_ino);
  427. list_del_init(&lo->plh_layouts);
  428. pnfs_destroy_layout(NFS_I(lo->plh_inode));
  429. }
  430. }
  431. /* update lo->plh_stateid with new if is more recent */
  432. void
  433. pnfs_set_layout_stateid(struct pnfs_layout_hdr *lo, const nfs4_stateid *new,
  434. bool update_barrier)
  435. {
  436. u32 oldseq, newseq;
  437. oldseq = be32_to_cpu(lo->plh_stateid.seqid);
  438. newseq = be32_to_cpu(new->seqid);
  439. if ((int)(newseq - oldseq) > 0) {
  440. nfs4_stateid_copy(&lo->plh_stateid, new);
  441. if (update_barrier) {
  442. u32 new_barrier = be32_to_cpu(new->seqid);
  443. if ((int)(new_barrier - lo->plh_barrier))
  444. lo->plh_barrier = new_barrier;
  445. } else {
  446. /* Because of wraparound, we want to keep the barrier
  447. * "close" to the current seqids. It needs to be
  448. * within 2**31 to count as "behind", so if it
  449. * gets too near that limit, give us a litle leeway
  450. * and bring it to within 2**30.
  451. * NOTE - and yes, this is all unsigned arithmetic.
  452. */
  453. if (unlikely((newseq - lo->plh_barrier) > (3 << 29)))
  454. lo->plh_barrier = newseq - (1 << 30);
  455. }
  456. }
  457. }
  458. /* lget is set to 1 if called from inside send_layoutget call chain */
  459. static bool
  460. pnfs_layoutgets_blocked(struct pnfs_layout_hdr *lo, nfs4_stateid *stateid,
  461. int lget)
  462. {
  463. if ((stateid) &&
  464. (int)(lo->plh_barrier - be32_to_cpu(stateid->seqid)) >= 0)
  465. return true;
  466. return lo->plh_block_lgets ||
  467. test_bit(NFS_LAYOUT_DESTROYED, &lo->plh_flags) ||
  468. test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags) ||
  469. (list_empty(&lo->plh_segs) &&
  470. (atomic_read(&lo->plh_outstanding) > lget));
  471. }
  472. int
  473. pnfs_choose_layoutget_stateid(nfs4_stateid *dst, struct pnfs_layout_hdr *lo,
  474. struct nfs4_state *open_state)
  475. {
  476. int status = 0;
  477. dprintk("--> %s\n", __func__);
  478. spin_lock(&lo->plh_inode->i_lock);
  479. if (pnfs_layoutgets_blocked(lo, NULL, 1)) {
  480. status = -EAGAIN;
  481. } else if (list_empty(&lo->plh_segs)) {
  482. int seq;
  483. do {
  484. seq = read_seqbegin(&open_state->seqlock);
  485. nfs4_stateid_copy(dst, &open_state->stateid);
  486. } while (read_seqretry(&open_state->seqlock, seq));
  487. } else
  488. nfs4_stateid_copy(dst, &lo->plh_stateid);
  489. spin_unlock(&lo->plh_inode->i_lock);
  490. dprintk("<-- %s\n", __func__);
  491. return status;
  492. }
  493. /*
  494. * Get layout from server.
  495. * for now, assume that whole file layouts are requested.
  496. * arg->offset: 0
  497. * arg->length: all ones
  498. */
  499. static struct pnfs_layout_segment *
  500. send_layoutget(struct pnfs_layout_hdr *lo,
  501. struct nfs_open_context *ctx,
  502. struct pnfs_layout_range *range,
  503. gfp_t gfp_flags)
  504. {
  505. struct inode *ino = lo->plh_inode;
  506. struct nfs_server *server = NFS_SERVER(ino);
  507. struct nfs4_layoutget *lgp;
  508. struct pnfs_layout_segment *lseg = NULL;
  509. dprintk("--> %s\n", __func__);
  510. BUG_ON(ctx == NULL);
  511. lgp = kzalloc(sizeof(*lgp), gfp_flags);
  512. if (lgp == NULL)
  513. return NULL;
  514. lgp->args.minlength = PAGE_CACHE_SIZE;
  515. if (lgp->args.minlength > range->length)
  516. lgp->args.minlength = range->length;
  517. lgp->args.maxcount = PNFS_LAYOUT_MAXSIZE;
  518. lgp->args.range = *range;
  519. lgp->args.type = server->pnfs_curr_ld->id;
  520. lgp->args.inode = ino;
  521. lgp->args.ctx = get_nfs_open_context(ctx);
  522. lgp->lsegpp = &lseg;
  523. lgp->gfp_flags = gfp_flags;
  524. /* Synchronously retrieve layout information from server and
  525. * store in lseg.
  526. */
  527. nfs4_proc_layoutget(lgp, gfp_flags);
  528. if (!lseg) {
  529. /* remember that LAYOUTGET failed and suspend trying */
  530. set_bit(lo_fail_bit(range->iomode), &lo->plh_flags);
  531. }
  532. return lseg;
  533. }
  534. /* Initiates a LAYOUTRETURN(FILE) */
  535. int
  536. _pnfs_return_layout(struct inode *ino)
  537. {
  538. struct pnfs_layout_hdr *lo = NULL;
  539. struct nfs_inode *nfsi = NFS_I(ino);
  540. LIST_HEAD(tmp_list);
  541. struct nfs4_layoutreturn *lrp;
  542. nfs4_stateid stateid;
  543. int status = 0;
  544. dprintk("--> %s\n", __func__);
  545. spin_lock(&ino->i_lock);
  546. lo = nfsi->layout;
  547. if (!lo) {
  548. spin_unlock(&ino->i_lock);
  549. dprintk("%s: no layout to return\n", __func__);
  550. return status;
  551. }
  552. stateid = nfsi->layout->plh_stateid;
  553. /* Reference matched in nfs4_layoutreturn_release */
  554. get_layout_hdr(lo);
  555. mark_matching_lsegs_invalid(lo, &tmp_list, NULL);
  556. lo->plh_block_lgets++;
  557. spin_unlock(&ino->i_lock);
  558. pnfs_free_lseg_list(&tmp_list);
  559. WARN_ON(test_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags));
  560. lrp = kzalloc(sizeof(*lrp), GFP_KERNEL);
  561. if (unlikely(lrp == NULL)) {
  562. status = -ENOMEM;
  563. set_bit(NFS_LAYOUT_RW_FAILED, &lo->plh_flags);
  564. set_bit(NFS_LAYOUT_RO_FAILED, &lo->plh_flags);
  565. put_layout_hdr(lo);
  566. goto out;
  567. }
  568. lrp->args.stateid = stateid;
  569. lrp->args.layout_type = NFS_SERVER(ino)->pnfs_curr_ld->id;
  570. lrp->args.inode = ino;
  571. lrp->args.layout = lo;
  572. lrp->clp = NFS_SERVER(ino)->nfs_client;
  573. status = nfs4_proc_layoutreturn(lrp);
  574. out:
  575. dprintk("<-- %s status: %d\n", __func__, status);
  576. return status;
  577. }
  578. bool pnfs_roc(struct inode *ino)
  579. {
  580. struct pnfs_layout_hdr *lo;
  581. struct pnfs_layout_segment *lseg, *tmp;
  582. LIST_HEAD(tmp_list);
  583. bool found = false;
  584. spin_lock(&ino->i_lock);
  585. lo = NFS_I(ino)->layout;
  586. if (!lo || !test_and_clear_bit(NFS_LAYOUT_ROC, &lo->plh_flags) ||
  587. test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags))
  588. goto out_nolayout;
  589. list_for_each_entry_safe(lseg, tmp, &lo->plh_segs, pls_list)
  590. if (test_bit(NFS_LSEG_ROC, &lseg->pls_flags)) {
  591. mark_lseg_invalid(lseg, &tmp_list);
  592. found = true;
  593. }
  594. if (!found)
  595. goto out_nolayout;
  596. lo->plh_block_lgets++;
  597. get_layout_hdr(lo); /* matched in pnfs_roc_release */
  598. spin_unlock(&ino->i_lock);
  599. pnfs_free_lseg_list(&tmp_list);
  600. return true;
  601. out_nolayout:
  602. spin_unlock(&ino->i_lock);
  603. return false;
  604. }
  605. void pnfs_roc_release(struct inode *ino)
  606. {
  607. struct pnfs_layout_hdr *lo;
  608. spin_lock(&ino->i_lock);
  609. lo = NFS_I(ino)->layout;
  610. lo->plh_block_lgets--;
  611. put_layout_hdr_locked(lo);
  612. spin_unlock(&ino->i_lock);
  613. }
  614. void pnfs_roc_set_barrier(struct inode *ino, u32 barrier)
  615. {
  616. struct pnfs_layout_hdr *lo;
  617. spin_lock(&ino->i_lock);
  618. lo = NFS_I(ino)->layout;
  619. if ((int)(barrier - lo->plh_barrier) > 0)
  620. lo->plh_barrier = barrier;
  621. spin_unlock(&ino->i_lock);
  622. }
  623. bool pnfs_roc_drain(struct inode *ino, u32 *barrier)
  624. {
  625. struct nfs_inode *nfsi = NFS_I(ino);
  626. struct pnfs_layout_segment *lseg;
  627. bool found = false;
  628. spin_lock(&ino->i_lock);
  629. list_for_each_entry(lseg, &nfsi->layout->plh_segs, pls_list)
  630. if (test_bit(NFS_LSEG_ROC, &lseg->pls_flags)) {
  631. found = true;
  632. break;
  633. }
  634. if (!found) {
  635. struct pnfs_layout_hdr *lo = nfsi->layout;
  636. u32 current_seqid = be32_to_cpu(lo->plh_stateid.seqid);
  637. /* Since close does not return a layout stateid for use as
  638. * a barrier, we choose the worst-case barrier.
  639. */
  640. *barrier = current_seqid + atomic_read(&lo->plh_outstanding);
  641. }
  642. spin_unlock(&ino->i_lock);
  643. return found;
  644. }
  645. /*
  646. * Compare two layout segments for sorting into layout cache.
  647. * We want to preferentially return RW over RO layouts, so ensure those
  648. * are seen first.
  649. */
  650. static s64
  651. cmp_layout(struct pnfs_layout_range *l1,
  652. struct pnfs_layout_range *l2)
  653. {
  654. s64 d;
  655. /* high offset > low offset */
  656. d = l1->offset - l2->offset;
  657. if (d)
  658. return d;
  659. /* short length > long length */
  660. d = l2->length - l1->length;
  661. if (d)
  662. return d;
  663. /* read > read/write */
  664. return (int)(l1->iomode == IOMODE_READ) - (int)(l2->iomode == IOMODE_READ);
  665. }
  666. static void
  667. pnfs_insert_layout(struct pnfs_layout_hdr *lo,
  668. struct pnfs_layout_segment *lseg)
  669. {
  670. struct pnfs_layout_segment *lp;
  671. dprintk("%s:Begin\n", __func__);
  672. assert_spin_locked(&lo->plh_inode->i_lock);
  673. list_for_each_entry(lp, &lo->plh_segs, pls_list) {
  674. if (cmp_layout(&lseg->pls_range, &lp->pls_range) > 0)
  675. continue;
  676. list_add_tail(&lseg->pls_list, &lp->pls_list);
  677. dprintk("%s: inserted lseg %p "
  678. "iomode %d offset %llu length %llu before "
  679. "lp %p iomode %d offset %llu length %llu\n",
  680. __func__, lseg, lseg->pls_range.iomode,
  681. lseg->pls_range.offset, lseg->pls_range.length,
  682. lp, lp->pls_range.iomode, lp->pls_range.offset,
  683. lp->pls_range.length);
  684. goto out;
  685. }
  686. list_add_tail(&lseg->pls_list, &lo->plh_segs);
  687. dprintk("%s: inserted lseg %p "
  688. "iomode %d offset %llu length %llu at tail\n",
  689. __func__, lseg, lseg->pls_range.iomode,
  690. lseg->pls_range.offset, lseg->pls_range.length);
  691. out:
  692. get_layout_hdr(lo);
  693. dprintk("%s:Return\n", __func__);
  694. }
  695. static struct pnfs_layout_hdr *
  696. alloc_init_layout_hdr(struct inode *ino,
  697. struct nfs_open_context *ctx,
  698. gfp_t gfp_flags)
  699. {
  700. struct pnfs_layout_hdr *lo;
  701. lo = pnfs_alloc_layout_hdr(ino, gfp_flags);
  702. if (!lo)
  703. return NULL;
  704. atomic_set(&lo->plh_refcount, 1);
  705. INIT_LIST_HEAD(&lo->plh_layouts);
  706. INIT_LIST_HEAD(&lo->plh_segs);
  707. INIT_LIST_HEAD(&lo->plh_bulk_recall);
  708. lo->plh_inode = ino;
  709. lo->plh_lc_cred = get_rpccred(ctx->state->owner->so_cred);
  710. return lo;
  711. }
  712. static struct pnfs_layout_hdr *
  713. pnfs_find_alloc_layout(struct inode *ino,
  714. struct nfs_open_context *ctx,
  715. gfp_t gfp_flags)
  716. {
  717. struct nfs_inode *nfsi = NFS_I(ino);
  718. struct pnfs_layout_hdr *new = NULL;
  719. dprintk("%s Begin ino=%p layout=%p\n", __func__, ino, nfsi->layout);
  720. assert_spin_locked(&ino->i_lock);
  721. if (nfsi->layout) {
  722. if (test_bit(NFS_LAYOUT_DESTROYED, &nfsi->layout->plh_flags))
  723. return NULL;
  724. else
  725. return nfsi->layout;
  726. }
  727. spin_unlock(&ino->i_lock);
  728. new = alloc_init_layout_hdr(ino, ctx, gfp_flags);
  729. spin_lock(&ino->i_lock);
  730. if (likely(nfsi->layout == NULL)) /* Won the race? */
  731. nfsi->layout = new;
  732. else
  733. pnfs_free_layout_hdr(new);
  734. return nfsi->layout;
  735. }
  736. /*
  737. * iomode matching rules:
  738. * iomode lseg match
  739. * ----- ----- -----
  740. * ANY READ true
  741. * ANY RW true
  742. * RW READ false
  743. * RW RW true
  744. * READ READ true
  745. * READ RW true
  746. */
  747. static int
  748. is_matching_lseg(struct pnfs_layout_range *ls_range,
  749. struct pnfs_layout_range *range)
  750. {
  751. struct pnfs_layout_range range1;
  752. if ((range->iomode == IOMODE_RW &&
  753. ls_range->iomode != IOMODE_RW) ||
  754. !lo_seg_intersecting(ls_range, range))
  755. return 0;
  756. /* range1 covers only the first byte in the range */
  757. range1 = *range;
  758. range1.length = 1;
  759. return lo_seg_contained(ls_range, &range1);
  760. }
  761. /*
  762. * lookup range in layout
  763. */
  764. static struct pnfs_layout_segment *
  765. pnfs_find_lseg(struct pnfs_layout_hdr *lo,
  766. struct pnfs_layout_range *range)
  767. {
  768. struct pnfs_layout_segment *lseg, *ret = NULL;
  769. dprintk("%s:Begin\n", __func__);
  770. assert_spin_locked(&lo->plh_inode->i_lock);
  771. list_for_each_entry(lseg, &lo->plh_segs, pls_list) {
  772. if (test_bit(NFS_LSEG_VALID, &lseg->pls_flags) &&
  773. is_matching_lseg(&lseg->pls_range, range)) {
  774. ret = get_lseg(lseg);
  775. break;
  776. }
  777. if (lseg->pls_range.offset > range->offset)
  778. break;
  779. }
  780. dprintk("%s:Return lseg %p ref %d\n",
  781. __func__, ret, ret ? atomic_read(&ret->pls_refcount) : 0);
  782. return ret;
  783. }
  784. /*
  785. * Layout segment is retreived from the server if not cached.
  786. * The appropriate layout segment is referenced and returned to the caller.
  787. */
  788. struct pnfs_layout_segment *
  789. pnfs_update_layout(struct inode *ino,
  790. struct nfs_open_context *ctx,
  791. loff_t pos,
  792. u64 count,
  793. enum pnfs_iomode iomode,
  794. gfp_t gfp_flags)
  795. {
  796. struct pnfs_layout_range arg = {
  797. .iomode = iomode,
  798. .offset = pos,
  799. .length = count,
  800. };
  801. unsigned pg_offset;
  802. struct nfs_inode *nfsi = NFS_I(ino);
  803. struct nfs_server *server = NFS_SERVER(ino);
  804. struct nfs_client *clp = server->nfs_client;
  805. struct pnfs_layout_hdr *lo;
  806. struct pnfs_layout_segment *lseg = NULL;
  807. bool first = false;
  808. if (!pnfs_enabled_sb(NFS_SERVER(ino)))
  809. return NULL;
  810. spin_lock(&ino->i_lock);
  811. lo = pnfs_find_alloc_layout(ino, ctx, gfp_flags);
  812. if (lo == NULL) {
  813. dprintk("%s ERROR: can't get pnfs_layout_hdr\n", __func__);
  814. goto out_unlock;
  815. }
  816. /* Do we even need to bother with this? */
  817. if (test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags)) {
  818. dprintk("%s matches recall, use MDS\n", __func__);
  819. goto out_unlock;
  820. }
  821. /* if LAYOUTGET already failed once we don't try again */
  822. if (test_bit(lo_fail_bit(iomode), &nfsi->layout->plh_flags))
  823. goto out_unlock;
  824. /* Check to see if the layout for the given range already exists */
  825. lseg = pnfs_find_lseg(lo, &arg);
  826. if (lseg)
  827. goto out_unlock;
  828. if (pnfs_layoutgets_blocked(lo, NULL, 0))
  829. goto out_unlock;
  830. atomic_inc(&lo->plh_outstanding);
  831. get_layout_hdr(lo);
  832. if (list_empty(&lo->plh_segs))
  833. first = true;
  834. spin_unlock(&ino->i_lock);
  835. if (first) {
  836. /* The lo must be on the clp list if there is any
  837. * chance of a CB_LAYOUTRECALL(FILE) coming in.
  838. */
  839. spin_lock(&clp->cl_lock);
  840. BUG_ON(!list_empty(&lo->plh_layouts));
  841. list_add_tail(&lo->plh_layouts, &server->layouts);
  842. spin_unlock(&clp->cl_lock);
  843. }
  844. pg_offset = arg.offset & ~PAGE_CACHE_MASK;
  845. if (pg_offset) {
  846. arg.offset -= pg_offset;
  847. arg.length += pg_offset;
  848. }
  849. if (arg.length != NFS4_MAX_UINT64)
  850. arg.length = PAGE_CACHE_ALIGN(arg.length);
  851. lseg = send_layoutget(lo, ctx, &arg, gfp_flags);
  852. if (!lseg && first) {
  853. spin_lock(&clp->cl_lock);
  854. list_del_init(&lo->plh_layouts);
  855. spin_unlock(&clp->cl_lock);
  856. }
  857. atomic_dec(&lo->plh_outstanding);
  858. put_layout_hdr(lo);
  859. out:
  860. dprintk("%s end, state 0x%lx lseg %p\n", __func__,
  861. nfsi->layout ? nfsi->layout->plh_flags : -1, lseg);
  862. return lseg;
  863. out_unlock:
  864. spin_unlock(&ino->i_lock);
  865. goto out;
  866. }
  867. EXPORT_SYMBOL_GPL(pnfs_update_layout);
  868. int
  869. pnfs_layout_process(struct nfs4_layoutget *lgp)
  870. {
  871. struct pnfs_layout_hdr *lo = NFS_I(lgp->args.inode)->layout;
  872. struct nfs4_layoutget_res *res = &lgp->res;
  873. struct pnfs_layout_segment *lseg;
  874. struct inode *ino = lo->plh_inode;
  875. int status = 0;
  876. /* Inject layout blob into I/O device driver */
  877. lseg = NFS_SERVER(ino)->pnfs_curr_ld->alloc_lseg(lo, res, lgp->gfp_flags);
  878. if (!lseg || IS_ERR(lseg)) {
  879. if (!lseg)
  880. status = -ENOMEM;
  881. else
  882. status = PTR_ERR(lseg);
  883. dprintk("%s: Could not allocate layout: error %d\n",
  884. __func__, status);
  885. goto out;
  886. }
  887. spin_lock(&ino->i_lock);
  888. if (test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags)) {
  889. dprintk("%s forget reply due to recall\n", __func__);
  890. goto out_forget_reply;
  891. }
  892. if (pnfs_layoutgets_blocked(lo, &res->stateid, 1)) {
  893. dprintk("%s forget reply due to state\n", __func__);
  894. goto out_forget_reply;
  895. }
  896. init_lseg(lo, lseg);
  897. lseg->pls_range = res->range;
  898. *lgp->lsegpp = get_lseg(lseg);
  899. pnfs_insert_layout(lo, lseg);
  900. if (res->return_on_close) {
  901. set_bit(NFS_LSEG_ROC, &lseg->pls_flags);
  902. set_bit(NFS_LAYOUT_ROC, &lo->plh_flags);
  903. }
  904. /* Done processing layoutget. Set the layout stateid */
  905. pnfs_set_layout_stateid(lo, &res->stateid, false);
  906. spin_unlock(&ino->i_lock);
  907. out:
  908. return status;
  909. out_forget_reply:
  910. spin_unlock(&ino->i_lock);
  911. lseg->pls_layout = lo;
  912. NFS_SERVER(ino)->pnfs_curr_ld->free_lseg(lseg);
  913. goto out;
  914. }
  915. void
  916. pnfs_generic_pg_init_read(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
  917. {
  918. BUG_ON(pgio->pg_lseg != NULL);
  919. pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
  920. req->wb_context,
  921. req_offset(req),
  922. req->wb_bytes,
  923. IOMODE_READ,
  924. GFP_KERNEL);
  925. /* If no lseg, fall back to read through mds */
  926. if (pgio->pg_lseg == NULL)
  927. nfs_pageio_reset_read_mds(pgio);
  928. }
  929. EXPORT_SYMBOL_GPL(pnfs_generic_pg_init_read);
  930. void
  931. pnfs_generic_pg_init_write(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
  932. {
  933. BUG_ON(pgio->pg_lseg != NULL);
  934. pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
  935. req->wb_context,
  936. req_offset(req),
  937. req->wb_bytes,
  938. IOMODE_RW,
  939. GFP_NOFS);
  940. /* If no lseg, fall back to write through mds */
  941. if (pgio->pg_lseg == NULL)
  942. nfs_pageio_reset_write_mds(pgio);
  943. }
  944. EXPORT_SYMBOL_GPL(pnfs_generic_pg_init_write);
  945. bool
  946. pnfs_pageio_init_read(struct nfs_pageio_descriptor *pgio, struct inode *inode)
  947. {
  948. struct nfs_server *server = NFS_SERVER(inode);
  949. struct pnfs_layoutdriver_type *ld = server->pnfs_curr_ld;
  950. if (ld == NULL)
  951. return false;
  952. nfs_pageio_init(pgio, inode, ld->pg_read_ops, server->rsize, 0);
  953. return true;
  954. }
  955. bool
  956. pnfs_pageio_init_write(struct nfs_pageio_descriptor *pgio, struct inode *inode, int ioflags)
  957. {
  958. struct nfs_server *server = NFS_SERVER(inode);
  959. struct pnfs_layoutdriver_type *ld = server->pnfs_curr_ld;
  960. if (ld == NULL)
  961. return false;
  962. nfs_pageio_init(pgio, inode, ld->pg_write_ops, server->wsize, ioflags);
  963. return true;
  964. }
  965. bool
  966. pnfs_generic_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
  967. struct nfs_page *req)
  968. {
  969. if (pgio->pg_lseg == NULL)
  970. return nfs_generic_pg_test(pgio, prev, req);
  971. /*
  972. * Test if a nfs_page is fully contained in the pnfs_layout_range.
  973. * Note that this test makes several assumptions:
  974. * - that the previous nfs_page in the struct nfs_pageio_descriptor
  975. * is known to lie within the range.
  976. * - that the nfs_page being tested is known to be contiguous with the
  977. * previous nfs_page.
  978. * - Layout ranges are page aligned, so we only have to test the
  979. * start offset of the request.
  980. *
  981. * Please also note that 'end_offset' is actually the offset of the
  982. * first byte that lies outside the pnfs_layout_range. FIXME?
  983. *
  984. */
  985. return req_offset(req) < end_offset(pgio->pg_lseg->pls_range.offset,
  986. pgio->pg_lseg->pls_range.length);
  987. }
  988. EXPORT_SYMBOL_GPL(pnfs_generic_pg_test);
  989. static int pnfs_write_done_resend_to_mds(struct inode *inode, struct list_head *head)
  990. {
  991. struct nfs_pageio_descriptor pgio;
  992. LIST_HEAD(failed);
  993. /* Resend all requests through the MDS */
  994. nfs_pageio_init_write_mds(&pgio, inode, FLUSH_STABLE);
  995. while (!list_empty(head)) {
  996. struct nfs_page *req = nfs_list_entry(head->next);
  997. nfs_list_remove_request(req);
  998. if (!nfs_pageio_add_request(&pgio, req))
  999. nfs_list_add_request(req, &failed);
  1000. }
  1001. nfs_pageio_complete(&pgio);
  1002. if (!list_empty(&failed)) {
  1003. /* For some reason our attempt to resend pages. Mark the
  1004. * overall send request as having failed, and let
  1005. * nfs_writeback_release_full deal with the error.
  1006. */
  1007. list_move(&failed, head);
  1008. return -EIO;
  1009. }
  1010. return 0;
  1011. }
  1012. /*
  1013. * Called by non rpc-based layout drivers
  1014. */
  1015. void pnfs_ld_write_done(struct nfs_write_data *data)
  1016. {
  1017. if (likely(!data->pnfs_error)) {
  1018. pnfs_set_layoutcommit(data);
  1019. data->mds_ops->rpc_call_done(&data->task, data);
  1020. } else {
  1021. dprintk("pnfs write error = %d\n", data->pnfs_error);
  1022. if (NFS_SERVER(data->inode)->pnfs_curr_ld->flags &
  1023. PNFS_LAYOUTRET_ON_ERROR) {
  1024. /* Don't lo_commit on error, Server will needs to
  1025. * preform a file recovery.
  1026. */
  1027. clear_bit(NFS_INO_LAYOUTCOMMIT,
  1028. &NFS_I(data->inode)->flags);
  1029. pnfs_return_layout(data->inode);
  1030. }
  1031. data->task.tk_status = pnfs_write_done_resend_to_mds(data->inode, &data->pages);
  1032. }
  1033. put_lseg(data->lseg);
  1034. data->mds_ops->rpc_release(data);
  1035. }
  1036. EXPORT_SYMBOL_GPL(pnfs_ld_write_done);
  1037. static void
  1038. pnfs_write_through_mds(struct nfs_pageio_descriptor *desc,
  1039. struct nfs_write_data *data)
  1040. {
  1041. list_splice_tail_init(&data->pages, &desc->pg_list);
  1042. if (data->req && list_empty(&data->req->wb_list))
  1043. nfs_list_add_request(data->req, &desc->pg_list);
  1044. nfs_pageio_reset_write_mds(desc);
  1045. desc->pg_recoalesce = 1;
  1046. put_lseg(data->lseg);
  1047. nfs_writedata_release(data);
  1048. }
  1049. static enum pnfs_try_status
  1050. pnfs_try_to_write_data(struct nfs_write_data *wdata,
  1051. const struct rpc_call_ops *call_ops,
  1052. struct pnfs_layout_segment *lseg,
  1053. int how)
  1054. {
  1055. struct inode *inode = wdata->inode;
  1056. enum pnfs_try_status trypnfs;
  1057. struct nfs_server *nfss = NFS_SERVER(inode);
  1058. wdata->mds_ops = call_ops;
  1059. wdata->lseg = get_lseg(lseg);
  1060. dprintk("%s: Writing ino:%lu %u@%llu (how %d)\n", __func__,
  1061. inode->i_ino, wdata->args.count, wdata->args.offset, how);
  1062. trypnfs = nfss->pnfs_curr_ld->write_pagelist(wdata, how);
  1063. if (trypnfs == PNFS_NOT_ATTEMPTED) {
  1064. put_lseg(wdata->lseg);
  1065. wdata->lseg = NULL;
  1066. } else
  1067. nfs_inc_stats(inode, NFSIOS_PNFS_WRITE);
  1068. dprintk("%s End (trypnfs:%d)\n", __func__, trypnfs);
  1069. return trypnfs;
  1070. }
  1071. static void
  1072. pnfs_do_multiple_writes(struct nfs_pageio_descriptor *desc, struct list_head *head, int how)
  1073. {
  1074. struct nfs_write_data *data;
  1075. const struct rpc_call_ops *call_ops = desc->pg_rpc_callops;
  1076. struct pnfs_layout_segment *lseg = desc->pg_lseg;
  1077. desc->pg_lseg = NULL;
  1078. while (!list_empty(head)) {
  1079. enum pnfs_try_status trypnfs;
  1080. data = list_entry(head->next, struct nfs_write_data, list);
  1081. list_del_init(&data->list);
  1082. trypnfs = pnfs_try_to_write_data(data, call_ops, lseg, how);
  1083. if (trypnfs == PNFS_NOT_ATTEMPTED)
  1084. pnfs_write_through_mds(desc, data);
  1085. }
  1086. put_lseg(lseg);
  1087. }
  1088. int
  1089. pnfs_generic_pg_writepages(struct nfs_pageio_descriptor *desc)
  1090. {
  1091. LIST_HEAD(head);
  1092. int ret;
  1093. ret = nfs_generic_flush(desc, &head);
  1094. if (ret != 0) {
  1095. put_lseg(desc->pg_lseg);
  1096. desc->pg_lseg = NULL;
  1097. return ret;
  1098. }
  1099. pnfs_do_multiple_writes(desc, &head, desc->pg_ioflags);
  1100. return 0;
  1101. }
  1102. EXPORT_SYMBOL_GPL(pnfs_generic_pg_writepages);
  1103. static void pnfs_ld_handle_read_error(struct nfs_read_data *data)
  1104. {
  1105. struct nfs_pageio_descriptor pgio;
  1106. put_lseg(data->lseg);
  1107. data->lseg = NULL;
  1108. dprintk("pnfs write error = %d\n", data->pnfs_error);
  1109. if (NFS_SERVER(data->inode)->pnfs_curr_ld->flags &
  1110. PNFS_LAYOUTRET_ON_ERROR)
  1111. pnfs_return_layout(data->inode);
  1112. nfs_pageio_init_read_mds(&pgio, data->inode);
  1113. while (!list_empty(&data->pages)) {
  1114. struct nfs_page *req = nfs_list_entry(data->pages.next);
  1115. nfs_list_remove_request(req);
  1116. nfs_pageio_add_request(&pgio, req);
  1117. }
  1118. nfs_pageio_complete(&pgio);
  1119. }
  1120. /*
  1121. * Called by non rpc-based layout drivers
  1122. */
  1123. void pnfs_ld_read_done(struct nfs_read_data *data)
  1124. {
  1125. if (likely(!data->pnfs_error)) {
  1126. __nfs4_read_done_cb(data);
  1127. data->mds_ops->rpc_call_done(&data->task, data);
  1128. } else
  1129. pnfs_ld_handle_read_error(data);
  1130. put_lseg(data->lseg);
  1131. data->mds_ops->rpc_release(data);
  1132. }
  1133. EXPORT_SYMBOL_GPL(pnfs_ld_read_done);
  1134. static void
  1135. pnfs_read_through_mds(struct nfs_pageio_descriptor *desc,
  1136. struct nfs_read_data *data)
  1137. {
  1138. list_splice_tail_init(&data->pages, &desc->pg_list);
  1139. if (data->req && list_empty(&data->req->wb_list))
  1140. nfs_list_add_request(data->req, &desc->pg_list);
  1141. nfs_pageio_reset_read_mds(desc);
  1142. desc->pg_recoalesce = 1;
  1143. nfs_readdata_release(data);
  1144. }
  1145. /*
  1146. * Call the appropriate parallel I/O subsystem read function.
  1147. */
  1148. static enum pnfs_try_status
  1149. pnfs_try_to_read_data(struct nfs_read_data *rdata,
  1150. const struct rpc_call_ops *call_ops,
  1151. struct pnfs_layout_segment *lseg)
  1152. {
  1153. struct inode *inode = rdata->inode;
  1154. struct nfs_server *nfss = NFS_SERVER(inode);
  1155. enum pnfs_try_status trypnfs;
  1156. rdata->mds_ops = call_ops;
  1157. rdata->lseg = get_lseg(lseg);
  1158. dprintk("%s: Reading ino:%lu %u@%llu\n",
  1159. __func__, inode->i_ino, rdata->args.count, rdata->args.offset);
  1160. trypnfs = nfss->pnfs_curr_ld->read_pagelist(rdata);
  1161. if (trypnfs == PNFS_NOT_ATTEMPTED) {
  1162. put_lseg(rdata->lseg);
  1163. rdata->lseg = NULL;
  1164. } else {
  1165. nfs_inc_stats(inode, NFSIOS_PNFS_READ);
  1166. }
  1167. dprintk("%s End (trypnfs:%d)\n", __func__, trypnfs);
  1168. return trypnfs;
  1169. }
  1170. static void
  1171. pnfs_do_multiple_reads(struct nfs_pageio_descriptor *desc, struct list_head *head)
  1172. {
  1173. struct nfs_read_data *data;
  1174. const struct rpc_call_ops *call_ops = desc->pg_rpc_callops;
  1175. struct pnfs_layout_segment *lseg = desc->pg_lseg;
  1176. desc->pg_lseg = NULL;
  1177. while (!list_empty(head)) {
  1178. enum pnfs_try_status trypnfs;
  1179. data = list_entry(head->next, struct nfs_read_data, list);
  1180. list_del_init(&data->list);
  1181. trypnfs = pnfs_try_to_read_data(data, call_ops, lseg);
  1182. if (trypnfs == PNFS_NOT_ATTEMPTED)
  1183. pnfs_read_through_mds(desc, data);
  1184. }
  1185. put_lseg(lseg);
  1186. }
  1187. int
  1188. pnfs_generic_pg_readpages(struct nfs_pageio_descriptor *desc)
  1189. {
  1190. LIST_HEAD(head);
  1191. int ret;
  1192. ret = nfs_generic_pagein(desc, &head);
  1193. if (ret != 0) {
  1194. put_lseg(desc->pg_lseg);
  1195. desc->pg_lseg = NULL;
  1196. return ret;
  1197. }
  1198. pnfs_do_multiple_reads(desc, &head);
  1199. return 0;
  1200. }
  1201. EXPORT_SYMBOL_GPL(pnfs_generic_pg_readpages);
  1202. /*
  1203. * There can be multiple RW segments.
  1204. */
  1205. static void pnfs_list_write_lseg(struct inode *inode, struct list_head *listp)
  1206. {
  1207. struct pnfs_layout_segment *lseg;
  1208. list_for_each_entry(lseg, &NFS_I(inode)->layout->plh_segs, pls_list) {
  1209. if (lseg->pls_range.iomode == IOMODE_RW &&
  1210. test_and_clear_bit(NFS_LSEG_LAYOUTCOMMIT, &lseg->pls_flags))
  1211. list_add(&lseg->pls_lc_list, listp);
  1212. }
  1213. }
  1214. static void pnfs_list_write_lseg_done(struct inode *inode, struct list_head *listp)
  1215. {
  1216. struct pnfs_layout_segment *lseg, *tmp;
  1217. unsigned long *bitlock = &NFS_I(inode)->flags;
  1218. /* Matched by references in pnfs_set_layoutcommit */
  1219. list_for_each_entry_safe(lseg, tmp, listp, pls_lc_list) {
  1220. list_del_init(&lseg->pls_lc_list);
  1221. put_lseg(lseg);
  1222. }
  1223. clear_bit_unlock(NFS_INO_LAYOUTCOMMITTING, bitlock);
  1224. smp_mb__after_clear_bit();
  1225. wake_up_bit(bitlock, NFS_INO_LAYOUTCOMMITTING);
  1226. }
  1227. void pnfs_set_lo_fail(struct pnfs_layout_segment *lseg)
  1228. {
  1229. if (lseg->pls_range.iomode == IOMODE_RW) {
  1230. dprintk("%s Setting layout IOMODE_RW fail bit\n", __func__);
  1231. set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
  1232. } else {
  1233. dprintk("%s Setting layout IOMODE_READ fail bit\n", __func__);
  1234. set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
  1235. }
  1236. }
  1237. EXPORT_SYMBOL_GPL(pnfs_set_lo_fail);
  1238. void
  1239. pnfs_set_layoutcommit(struct nfs_write_data *wdata)
  1240. {
  1241. struct nfs_inode *nfsi = NFS_I(wdata->inode);
  1242. loff_t end_pos = wdata->mds_offset + wdata->res.count;
  1243. bool mark_as_dirty = false;
  1244. spin_lock(&nfsi->vfs_inode.i_lock);
  1245. if (!test_and_set_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags)) {
  1246. mark_as_dirty = true;
  1247. dprintk("%s: Set layoutcommit for inode %lu ",
  1248. __func__, wdata->inode->i_ino);
  1249. }
  1250. if (!test_and_set_bit(NFS_LSEG_LAYOUTCOMMIT, &wdata->lseg->pls_flags)) {
  1251. /* references matched in nfs4_layoutcommit_release */
  1252. get_lseg(wdata->lseg);
  1253. }
  1254. if (end_pos > nfsi->layout->plh_lwb)
  1255. nfsi->layout->plh_lwb = end_pos;
  1256. spin_unlock(&nfsi->vfs_inode.i_lock);
  1257. dprintk("%s: lseg %p end_pos %llu\n",
  1258. __func__, wdata->lseg, nfsi->layout->plh_lwb);
  1259. /* if pnfs_layoutcommit_inode() runs between inode locks, the next one
  1260. * will be a noop because NFS_INO_LAYOUTCOMMIT will not be set */
  1261. if (mark_as_dirty)
  1262. mark_inode_dirty_sync(wdata->inode);
  1263. }
  1264. EXPORT_SYMBOL_GPL(pnfs_set_layoutcommit);
  1265. void pnfs_cleanup_layoutcommit(struct nfs4_layoutcommit_data *data)
  1266. {
  1267. struct nfs_server *nfss = NFS_SERVER(data->args.inode);
  1268. if (nfss->pnfs_curr_ld->cleanup_layoutcommit)
  1269. nfss->pnfs_curr_ld->cleanup_layoutcommit(data);
  1270. pnfs_list_write_lseg_done(data->args.inode, &data->lseg_list);
  1271. }
  1272. /*
  1273. * For the LAYOUT4_NFSV4_1_FILES layout type, NFS_DATA_SYNC WRITEs and
  1274. * NFS_UNSTABLE WRITEs with a COMMIT to data servers must store enough
  1275. * data to disk to allow the server to recover the data if it crashes.
  1276. * LAYOUTCOMMIT is only needed when the NFL4_UFLG_COMMIT_THRU_MDS flag
  1277. * is off, and a COMMIT is sent to a data server, or
  1278. * if WRITEs to a data server return NFS_DATA_SYNC.
  1279. */
  1280. int
  1281. pnfs_layoutcommit_inode(struct inode *inode, bool sync)
  1282. {
  1283. struct nfs4_layoutcommit_data *data;
  1284. struct nfs_inode *nfsi = NFS_I(inode);
  1285. loff_t end_pos;
  1286. int status = 0;
  1287. dprintk("--> %s inode %lu\n", __func__, inode->i_ino);
  1288. if (!test_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags))
  1289. return 0;
  1290. /* Note kzalloc ensures data->res.seq_res.sr_slot == NULL */
  1291. data = kzalloc(sizeof(*data), GFP_NOFS);
  1292. if (!data) {
  1293. status = -ENOMEM;
  1294. goto out;
  1295. }
  1296. if (!test_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags))
  1297. goto out_free;
  1298. if (test_and_set_bit(NFS_INO_LAYOUTCOMMITTING, &nfsi->flags)) {
  1299. if (!sync) {
  1300. status = -EAGAIN;
  1301. goto out_free;
  1302. }
  1303. status = wait_on_bit_lock(&nfsi->flags, NFS_INO_LAYOUTCOMMITTING,
  1304. nfs_wait_bit_killable, TASK_KILLABLE);
  1305. if (status)
  1306. goto out_free;
  1307. }
  1308. INIT_LIST_HEAD(&data->lseg_list);
  1309. spin_lock(&inode->i_lock);
  1310. if (!test_and_clear_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags)) {
  1311. clear_bit(NFS_INO_LAYOUTCOMMITTING, &nfsi->flags);
  1312. spin_unlock(&inode->i_lock);
  1313. wake_up_bit(&nfsi->flags, NFS_INO_LAYOUTCOMMITTING);
  1314. goto out_free;
  1315. }
  1316. pnfs_list_write_lseg(inode, &data->lseg_list);
  1317. end_pos = nfsi->layout->plh_lwb;
  1318. nfsi->layout->plh_lwb = 0;
  1319. nfs4_stateid_copy(&data->args.stateid, &nfsi->layout->plh_stateid);
  1320. spin_unlock(&inode->i_lock);
  1321. data->args.inode = inode;
  1322. data->cred = get_rpccred(nfsi->layout->plh_lc_cred);
  1323. nfs_fattr_init(&data->fattr);
  1324. data->args.bitmask = NFS_SERVER(inode)->cache_consistency_bitmask;
  1325. data->res.fattr = &data->fattr;
  1326. data->args.lastbytewritten = end_pos - 1;
  1327. data->res.server = NFS_SERVER(inode);
  1328. status = nfs4_proc_layoutcommit(data, sync);
  1329. out:
  1330. if (status)
  1331. mark_inode_dirty_sync(inode);
  1332. dprintk("<-- %s status %d\n", __func__, status);
  1333. return status;
  1334. out_free:
  1335. kfree(data);
  1336. goto out;
  1337. }