pnfs.c 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611
  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. struct page **pages = NULL;
  510. int i;
  511. u32 max_resp_sz, max_pages;
  512. dprintk("--> %s\n", __func__);
  513. BUG_ON(ctx == NULL);
  514. lgp = kzalloc(sizeof(*lgp), gfp_flags);
  515. if (lgp == NULL)
  516. return NULL;
  517. /* allocate pages for xdr post processing */
  518. max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz;
  519. max_pages = nfs_page_array_len(0, max_resp_sz);
  520. pages = kcalloc(max_pages, sizeof(struct page *), gfp_flags);
  521. if (!pages)
  522. goto out_err_free;
  523. for (i = 0; i < max_pages; i++) {
  524. pages[i] = alloc_page(gfp_flags);
  525. if (!pages[i])
  526. goto out_err_free;
  527. }
  528. lgp->args.minlength = PAGE_CACHE_SIZE;
  529. if (lgp->args.minlength > range->length)
  530. lgp->args.minlength = range->length;
  531. lgp->args.maxcount = PNFS_LAYOUT_MAXSIZE;
  532. lgp->args.range = *range;
  533. lgp->args.type = server->pnfs_curr_ld->id;
  534. lgp->args.inode = ino;
  535. lgp->args.ctx = get_nfs_open_context(ctx);
  536. lgp->args.layout.pages = pages;
  537. lgp->args.layout.pglen = max_pages * PAGE_SIZE;
  538. lgp->lsegpp = &lseg;
  539. lgp->gfp_flags = gfp_flags;
  540. /* Synchronously retrieve layout information from server and
  541. * store in lseg.
  542. */
  543. nfs4_proc_layoutget(lgp);
  544. if (!lseg) {
  545. /* remember that LAYOUTGET failed and suspend trying */
  546. set_bit(lo_fail_bit(range->iomode), &lo->plh_flags);
  547. }
  548. /* free xdr pages */
  549. for (i = 0; i < max_pages; i++)
  550. __free_page(pages[i]);
  551. kfree(pages);
  552. return lseg;
  553. out_err_free:
  554. /* free any allocated xdr pages, lgp as it's not used */
  555. if (pages) {
  556. for (i = 0; i < max_pages; i++) {
  557. if (!pages[i])
  558. break;
  559. __free_page(pages[i]);
  560. }
  561. kfree(pages);
  562. }
  563. kfree(lgp);
  564. return NULL;
  565. }
  566. /* Initiates a LAYOUTRETURN(FILE) */
  567. int
  568. _pnfs_return_layout(struct inode *ino)
  569. {
  570. struct pnfs_layout_hdr *lo = NULL;
  571. struct nfs_inode *nfsi = NFS_I(ino);
  572. LIST_HEAD(tmp_list);
  573. struct nfs4_layoutreturn *lrp;
  574. nfs4_stateid stateid;
  575. int status = 0;
  576. dprintk("--> %s\n", __func__);
  577. spin_lock(&ino->i_lock);
  578. lo = nfsi->layout;
  579. if (!lo) {
  580. spin_unlock(&ino->i_lock);
  581. dprintk("%s: no layout to return\n", __func__);
  582. return status;
  583. }
  584. stateid = nfsi->layout->plh_stateid;
  585. /* Reference matched in nfs4_layoutreturn_release */
  586. get_layout_hdr(lo);
  587. mark_matching_lsegs_invalid(lo, &tmp_list, NULL);
  588. lo->plh_block_lgets++;
  589. spin_unlock(&ino->i_lock);
  590. pnfs_free_lseg_list(&tmp_list);
  591. WARN_ON(test_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags));
  592. lrp = kzalloc(sizeof(*lrp), GFP_KERNEL);
  593. if (unlikely(lrp == NULL)) {
  594. status = -ENOMEM;
  595. set_bit(NFS_LAYOUT_RW_FAILED, &lo->plh_flags);
  596. set_bit(NFS_LAYOUT_RO_FAILED, &lo->plh_flags);
  597. put_layout_hdr(lo);
  598. goto out;
  599. }
  600. lrp->args.stateid = stateid;
  601. lrp->args.layout_type = NFS_SERVER(ino)->pnfs_curr_ld->id;
  602. lrp->args.inode = ino;
  603. lrp->args.layout = lo;
  604. lrp->clp = NFS_SERVER(ino)->nfs_client;
  605. status = nfs4_proc_layoutreturn(lrp);
  606. out:
  607. dprintk("<-- %s status: %d\n", __func__, status);
  608. return status;
  609. }
  610. bool pnfs_roc(struct inode *ino)
  611. {
  612. struct pnfs_layout_hdr *lo;
  613. struct pnfs_layout_segment *lseg, *tmp;
  614. LIST_HEAD(tmp_list);
  615. bool found = false;
  616. spin_lock(&ino->i_lock);
  617. lo = NFS_I(ino)->layout;
  618. if (!lo || !test_and_clear_bit(NFS_LAYOUT_ROC, &lo->plh_flags) ||
  619. test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags))
  620. goto out_nolayout;
  621. list_for_each_entry_safe(lseg, tmp, &lo->plh_segs, pls_list)
  622. if (test_bit(NFS_LSEG_ROC, &lseg->pls_flags)) {
  623. mark_lseg_invalid(lseg, &tmp_list);
  624. found = true;
  625. }
  626. if (!found)
  627. goto out_nolayout;
  628. lo->plh_block_lgets++;
  629. get_layout_hdr(lo); /* matched in pnfs_roc_release */
  630. spin_unlock(&ino->i_lock);
  631. pnfs_free_lseg_list(&tmp_list);
  632. return true;
  633. out_nolayout:
  634. spin_unlock(&ino->i_lock);
  635. return false;
  636. }
  637. void pnfs_roc_release(struct inode *ino)
  638. {
  639. struct pnfs_layout_hdr *lo;
  640. spin_lock(&ino->i_lock);
  641. lo = NFS_I(ino)->layout;
  642. lo->plh_block_lgets--;
  643. put_layout_hdr_locked(lo);
  644. spin_unlock(&ino->i_lock);
  645. }
  646. void pnfs_roc_set_barrier(struct inode *ino, u32 barrier)
  647. {
  648. struct pnfs_layout_hdr *lo;
  649. spin_lock(&ino->i_lock);
  650. lo = NFS_I(ino)->layout;
  651. if ((int)(barrier - lo->plh_barrier) > 0)
  652. lo->plh_barrier = barrier;
  653. spin_unlock(&ino->i_lock);
  654. }
  655. bool pnfs_roc_drain(struct inode *ino, u32 *barrier)
  656. {
  657. struct nfs_inode *nfsi = NFS_I(ino);
  658. struct pnfs_layout_segment *lseg;
  659. bool found = false;
  660. spin_lock(&ino->i_lock);
  661. list_for_each_entry(lseg, &nfsi->layout->plh_segs, pls_list)
  662. if (test_bit(NFS_LSEG_ROC, &lseg->pls_flags)) {
  663. found = true;
  664. break;
  665. }
  666. if (!found) {
  667. struct pnfs_layout_hdr *lo = nfsi->layout;
  668. u32 current_seqid = be32_to_cpu(lo->plh_stateid.seqid);
  669. /* Since close does not return a layout stateid for use as
  670. * a barrier, we choose the worst-case barrier.
  671. */
  672. *barrier = current_seqid + atomic_read(&lo->plh_outstanding);
  673. }
  674. spin_unlock(&ino->i_lock);
  675. return found;
  676. }
  677. /*
  678. * Compare two layout segments for sorting into layout cache.
  679. * We want to preferentially return RW over RO layouts, so ensure those
  680. * are seen first.
  681. */
  682. static s64
  683. cmp_layout(struct pnfs_layout_range *l1,
  684. struct pnfs_layout_range *l2)
  685. {
  686. s64 d;
  687. /* high offset > low offset */
  688. d = l1->offset - l2->offset;
  689. if (d)
  690. return d;
  691. /* short length > long length */
  692. d = l2->length - l1->length;
  693. if (d)
  694. return d;
  695. /* read > read/write */
  696. return (int)(l1->iomode == IOMODE_READ) - (int)(l2->iomode == IOMODE_READ);
  697. }
  698. static void
  699. pnfs_insert_layout(struct pnfs_layout_hdr *lo,
  700. struct pnfs_layout_segment *lseg)
  701. {
  702. struct pnfs_layout_segment *lp;
  703. dprintk("%s:Begin\n", __func__);
  704. assert_spin_locked(&lo->plh_inode->i_lock);
  705. list_for_each_entry(lp, &lo->plh_segs, pls_list) {
  706. if (cmp_layout(&lseg->pls_range, &lp->pls_range) > 0)
  707. continue;
  708. list_add_tail(&lseg->pls_list, &lp->pls_list);
  709. dprintk("%s: inserted lseg %p "
  710. "iomode %d offset %llu length %llu before "
  711. "lp %p iomode %d offset %llu length %llu\n",
  712. __func__, lseg, lseg->pls_range.iomode,
  713. lseg->pls_range.offset, lseg->pls_range.length,
  714. lp, lp->pls_range.iomode, lp->pls_range.offset,
  715. lp->pls_range.length);
  716. goto out;
  717. }
  718. list_add_tail(&lseg->pls_list, &lo->plh_segs);
  719. dprintk("%s: inserted lseg %p "
  720. "iomode %d offset %llu length %llu at tail\n",
  721. __func__, lseg, lseg->pls_range.iomode,
  722. lseg->pls_range.offset, lseg->pls_range.length);
  723. out:
  724. get_layout_hdr(lo);
  725. dprintk("%s:Return\n", __func__);
  726. }
  727. static struct pnfs_layout_hdr *
  728. alloc_init_layout_hdr(struct inode *ino,
  729. struct nfs_open_context *ctx,
  730. gfp_t gfp_flags)
  731. {
  732. struct pnfs_layout_hdr *lo;
  733. lo = pnfs_alloc_layout_hdr(ino, gfp_flags);
  734. if (!lo)
  735. return NULL;
  736. atomic_set(&lo->plh_refcount, 1);
  737. INIT_LIST_HEAD(&lo->plh_layouts);
  738. INIT_LIST_HEAD(&lo->plh_segs);
  739. INIT_LIST_HEAD(&lo->plh_bulk_recall);
  740. lo->plh_inode = ino;
  741. lo->plh_lc_cred = get_rpccred(ctx->state->owner->so_cred);
  742. return lo;
  743. }
  744. static struct pnfs_layout_hdr *
  745. pnfs_find_alloc_layout(struct inode *ino,
  746. struct nfs_open_context *ctx,
  747. gfp_t gfp_flags)
  748. {
  749. struct nfs_inode *nfsi = NFS_I(ino);
  750. struct pnfs_layout_hdr *new = NULL;
  751. dprintk("%s Begin ino=%p layout=%p\n", __func__, ino, nfsi->layout);
  752. assert_spin_locked(&ino->i_lock);
  753. if (nfsi->layout) {
  754. if (test_bit(NFS_LAYOUT_DESTROYED, &nfsi->layout->plh_flags))
  755. return NULL;
  756. else
  757. return nfsi->layout;
  758. }
  759. spin_unlock(&ino->i_lock);
  760. new = alloc_init_layout_hdr(ino, ctx, gfp_flags);
  761. spin_lock(&ino->i_lock);
  762. if (likely(nfsi->layout == NULL)) /* Won the race? */
  763. nfsi->layout = new;
  764. else
  765. pnfs_free_layout_hdr(new);
  766. return nfsi->layout;
  767. }
  768. /*
  769. * iomode matching rules:
  770. * iomode lseg match
  771. * ----- ----- -----
  772. * ANY READ true
  773. * ANY RW true
  774. * RW READ false
  775. * RW RW true
  776. * READ READ true
  777. * READ RW true
  778. */
  779. static int
  780. is_matching_lseg(struct pnfs_layout_range *ls_range,
  781. struct pnfs_layout_range *range)
  782. {
  783. struct pnfs_layout_range range1;
  784. if ((range->iomode == IOMODE_RW &&
  785. ls_range->iomode != IOMODE_RW) ||
  786. !lo_seg_intersecting(ls_range, range))
  787. return 0;
  788. /* range1 covers only the first byte in the range */
  789. range1 = *range;
  790. range1.length = 1;
  791. return lo_seg_contained(ls_range, &range1);
  792. }
  793. /*
  794. * lookup range in layout
  795. */
  796. static struct pnfs_layout_segment *
  797. pnfs_find_lseg(struct pnfs_layout_hdr *lo,
  798. struct pnfs_layout_range *range)
  799. {
  800. struct pnfs_layout_segment *lseg, *ret = NULL;
  801. dprintk("%s:Begin\n", __func__);
  802. assert_spin_locked(&lo->plh_inode->i_lock);
  803. list_for_each_entry(lseg, &lo->plh_segs, pls_list) {
  804. if (test_bit(NFS_LSEG_VALID, &lseg->pls_flags) &&
  805. is_matching_lseg(&lseg->pls_range, range)) {
  806. ret = get_lseg(lseg);
  807. break;
  808. }
  809. if (lseg->pls_range.offset > range->offset)
  810. break;
  811. }
  812. dprintk("%s:Return lseg %p ref %d\n",
  813. __func__, ret, ret ? atomic_read(&ret->pls_refcount) : 0);
  814. return ret;
  815. }
  816. /*
  817. * Layout segment is retreived from the server if not cached.
  818. * The appropriate layout segment is referenced and returned to the caller.
  819. */
  820. struct pnfs_layout_segment *
  821. pnfs_update_layout(struct inode *ino,
  822. struct nfs_open_context *ctx,
  823. loff_t pos,
  824. u64 count,
  825. enum pnfs_iomode iomode,
  826. gfp_t gfp_flags)
  827. {
  828. struct pnfs_layout_range arg = {
  829. .iomode = iomode,
  830. .offset = pos,
  831. .length = count,
  832. };
  833. unsigned pg_offset;
  834. struct nfs_inode *nfsi = NFS_I(ino);
  835. struct nfs_server *server = NFS_SERVER(ino);
  836. struct nfs_client *clp = server->nfs_client;
  837. struct pnfs_layout_hdr *lo;
  838. struct pnfs_layout_segment *lseg = NULL;
  839. bool first = false;
  840. if (!pnfs_enabled_sb(NFS_SERVER(ino)))
  841. return NULL;
  842. spin_lock(&ino->i_lock);
  843. lo = pnfs_find_alloc_layout(ino, ctx, gfp_flags);
  844. if (lo == NULL) {
  845. dprintk("%s ERROR: can't get pnfs_layout_hdr\n", __func__);
  846. goto out_unlock;
  847. }
  848. /* Do we even need to bother with this? */
  849. if (test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags)) {
  850. dprintk("%s matches recall, use MDS\n", __func__);
  851. goto out_unlock;
  852. }
  853. /* if LAYOUTGET already failed once we don't try again */
  854. if (test_bit(lo_fail_bit(iomode), &nfsi->layout->plh_flags))
  855. goto out_unlock;
  856. /* Check to see if the layout for the given range already exists */
  857. lseg = pnfs_find_lseg(lo, &arg);
  858. if (lseg)
  859. goto out_unlock;
  860. if (pnfs_layoutgets_blocked(lo, NULL, 0))
  861. goto out_unlock;
  862. atomic_inc(&lo->plh_outstanding);
  863. get_layout_hdr(lo);
  864. if (list_empty(&lo->plh_segs))
  865. first = true;
  866. spin_unlock(&ino->i_lock);
  867. if (first) {
  868. /* The lo must be on the clp list if there is any
  869. * chance of a CB_LAYOUTRECALL(FILE) coming in.
  870. */
  871. spin_lock(&clp->cl_lock);
  872. BUG_ON(!list_empty(&lo->plh_layouts));
  873. list_add_tail(&lo->plh_layouts, &server->layouts);
  874. spin_unlock(&clp->cl_lock);
  875. }
  876. pg_offset = arg.offset & ~PAGE_CACHE_MASK;
  877. if (pg_offset) {
  878. arg.offset -= pg_offset;
  879. arg.length += pg_offset;
  880. }
  881. if (arg.length != NFS4_MAX_UINT64)
  882. arg.length = PAGE_CACHE_ALIGN(arg.length);
  883. lseg = send_layoutget(lo, ctx, &arg, gfp_flags);
  884. if (!lseg && first) {
  885. spin_lock(&clp->cl_lock);
  886. list_del_init(&lo->plh_layouts);
  887. spin_unlock(&clp->cl_lock);
  888. }
  889. atomic_dec(&lo->plh_outstanding);
  890. put_layout_hdr(lo);
  891. out:
  892. dprintk("%s end, state 0x%lx lseg %p\n", __func__,
  893. nfsi->layout ? nfsi->layout->plh_flags : -1, lseg);
  894. return lseg;
  895. out_unlock:
  896. spin_unlock(&ino->i_lock);
  897. goto out;
  898. }
  899. EXPORT_SYMBOL_GPL(pnfs_update_layout);
  900. int
  901. pnfs_layout_process(struct nfs4_layoutget *lgp)
  902. {
  903. struct pnfs_layout_hdr *lo = NFS_I(lgp->args.inode)->layout;
  904. struct nfs4_layoutget_res *res = &lgp->res;
  905. struct pnfs_layout_segment *lseg;
  906. struct inode *ino = lo->plh_inode;
  907. int status = 0;
  908. /* Inject layout blob into I/O device driver */
  909. lseg = NFS_SERVER(ino)->pnfs_curr_ld->alloc_lseg(lo, res, lgp->gfp_flags);
  910. if (!lseg || IS_ERR(lseg)) {
  911. if (!lseg)
  912. status = -ENOMEM;
  913. else
  914. status = PTR_ERR(lseg);
  915. dprintk("%s: Could not allocate layout: error %d\n",
  916. __func__, status);
  917. goto out;
  918. }
  919. spin_lock(&ino->i_lock);
  920. if (test_bit(NFS_LAYOUT_BULK_RECALL, &lo->plh_flags)) {
  921. dprintk("%s forget reply due to recall\n", __func__);
  922. goto out_forget_reply;
  923. }
  924. if (pnfs_layoutgets_blocked(lo, &res->stateid, 1)) {
  925. dprintk("%s forget reply due to state\n", __func__);
  926. goto out_forget_reply;
  927. }
  928. init_lseg(lo, lseg);
  929. lseg->pls_range = res->range;
  930. *lgp->lsegpp = get_lseg(lseg);
  931. pnfs_insert_layout(lo, lseg);
  932. if (res->return_on_close) {
  933. set_bit(NFS_LSEG_ROC, &lseg->pls_flags);
  934. set_bit(NFS_LAYOUT_ROC, &lo->plh_flags);
  935. }
  936. /* Done processing layoutget. Set the layout stateid */
  937. pnfs_set_layout_stateid(lo, &res->stateid, false);
  938. spin_unlock(&ino->i_lock);
  939. out:
  940. return status;
  941. out_forget_reply:
  942. spin_unlock(&ino->i_lock);
  943. lseg->pls_layout = lo;
  944. NFS_SERVER(ino)->pnfs_curr_ld->free_lseg(lseg);
  945. goto out;
  946. }
  947. void
  948. pnfs_generic_pg_init_read(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
  949. {
  950. BUG_ON(pgio->pg_lseg != NULL);
  951. pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
  952. req->wb_context,
  953. req_offset(req),
  954. req->wb_bytes,
  955. IOMODE_READ,
  956. GFP_KERNEL);
  957. /* If no lseg, fall back to read through mds */
  958. if (pgio->pg_lseg == NULL)
  959. nfs_pageio_reset_read_mds(pgio);
  960. }
  961. EXPORT_SYMBOL_GPL(pnfs_generic_pg_init_read);
  962. void
  963. pnfs_generic_pg_init_write(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
  964. {
  965. BUG_ON(pgio->pg_lseg != NULL);
  966. pgio->pg_lseg = pnfs_update_layout(pgio->pg_inode,
  967. req->wb_context,
  968. req_offset(req),
  969. req->wb_bytes,
  970. IOMODE_RW,
  971. GFP_NOFS);
  972. /* If no lseg, fall back to write through mds */
  973. if (pgio->pg_lseg == NULL)
  974. nfs_pageio_reset_write_mds(pgio);
  975. }
  976. EXPORT_SYMBOL_GPL(pnfs_generic_pg_init_write);
  977. bool
  978. pnfs_pageio_init_read(struct nfs_pageio_descriptor *pgio, struct inode *inode)
  979. {
  980. struct nfs_server *server = NFS_SERVER(inode);
  981. struct pnfs_layoutdriver_type *ld = server->pnfs_curr_ld;
  982. if (ld == NULL)
  983. return false;
  984. nfs_pageio_init(pgio, inode, ld->pg_read_ops, server->rsize, 0);
  985. return true;
  986. }
  987. bool
  988. pnfs_pageio_init_write(struct nfs_pageio_descriptor *pgio, struct inode *inode, int ioflags)
  989. {
  990. struct nfs_server *server = NFS_SERVER(inode);
  991. struct pnfs_layoutdriver_type *ld = server->pnfs_curr_ld;
  992. if (ld == NULL)
  993. return false;
  994. nfs_pageio_init(pgio, inode, ld->pg_write_ops, server->wsize, ioflags);
  995. return true;
  996. }
  997. bool
  998. pnfs_generic_pg_test(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
  999. struct nfs_page *req)
  1000. {
  1001. if (pgio->pg_lseg == NULL)
  1002. return nfs_generic_pg_test(pgio, prev, req);
  1003. /*
  1004. * Test if a nfs_page is fully contained in the pnfs_layout_range.
  1005. * Note that this test makes several assumptions:
  1006. * - that the previous nfs_page in the struct nfs_pageio_descriptor
  1007. * is known to lie within the range.
  1008. * - that the nfs_page being tested is known to be contiguous with the
  1009. * previous nfs_page.
  1010. * - Layout ranges are page aligned, so we only have to test the
  1011. * start offset of the request.
  1012. *
  1013. * Please also note that 'end_offset' is actually the offset of the
  1014. * first byte that lies outside the pnfs_layout_range. FIXME?
  1015. *
  1016. */
  1017. return req_offset(req) < end_offset(pgio->pg_lseg->pls_range.offset,
  1018. pgio->pg_lseg->pls_range.length);
  1019. }
  1020. EXPORT_SYMBOL_GPL(pnfs_generic_pg_test);
  1021. static int pnfs_write_done_resend_to_mds(struct inode *inode, struct list_head *head)
  1022. {
  1023. struct nfs_pageio_descriptor pgio;
  1024. LIST_HEAD(failed);
  1025. /* Resend all requests through the MDS */
  1026. nfs_pageio_init_write_mds(&pgio, inode, FLUSH_STABLE);
  1027. while (!list_empty(head)) {
  1028. struct nfs_page *req = nfs_list_entry(head->next);
  1029. nfs_list_remove_request(req);
  1030. if (!nfs_pageio_add_request(&pgio, req))
  1031. nfs_list_add_request(req, &failed);
  1032. }
  1033. nfs_pageio_complete(&pgio);
  1034. if (!list_empty(&failed)) {
  1035. /* For some reason our attempt to resend pages. Mark the
  1036. * overall send request as having failed, and let
  1037. * nfs_writeback_release_full deal with the error.
  1038. */
  1039. list_move(&failed, head);
  1040. return -EIO;
  1041. }
  1042. return 0;
  1043. }
  1044. static void pnfs_ld_handle_write_error(struct nfs_write_data *data)
  1045. {
  1046. struct nfs_pgio_header *hdr = data->header;
  1047. dprintk("pnfs write error = %d\n", hdr->pnfs_error);
  1048. if (NFS_SERVER(hdr->inode)->pnfs_curr_ld->flags &
  1049. PNFS_LAYOUTRET_ON_ERROR) {
  1050. clear_bit(NFS_INO_LAYOUTCOMMIT, &NFS_I(hdr->inode)->flags);
  1051. pnfs_return_layout(hdr->inode);
  1052. }
  1053. if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags))
  1054. data->task.tk_status = pnfs_write_done_resend_to_mds(hdr->inode,
  1055. &hdr->pages);
  1056. }
  1057. /*
  1058. * Called by non rpc-based layout drivers
  1059. */
  1060. void pnfs_ld_write_done(struct nfs_write_data *data)
  1061. {
  1062. struct nfs_pgio_header *hdr = data->header;
  1063. if (!hdr->pnfs_error) {
  1064. pnfs_set_layoutcommit(data);
  1065. hdr->mds_ops->rpc_call_done(&data->task, data);
  1066. } else
  1067. pnfs_ld_handle_write_error(data);
  1068. hdr->mds_ops->rpc_release(data);
  1069. }
  1070. EXPORT_SYMBOL_GPL(pnfs_ld_write_done);
  1071. static void
  1072. pnfs_write_through_mds(struct nfs_pageio_descriptor *desc,
  1073. struct nfs_write_data *data)
  1074. {
  1075. struct nfs_pgio_header *hdr = data->header;
  1076. if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
  1077. list_splice_tail_init(&hdr->pages, &desc->pg_list);
  1078. nfs_pageio_reset_write_mds(desc);
  1079. desc->pg_recoalesce = 1;
  1080. }
  1081. nfs_writedata_release(data);
  1082. }
  1083. static enum pnfs_try_status
  1084. pnfs_try_to_write_data(struct nfs_write_data *wdata,
  1085. const struct rpc_call_ops *call_ops,
  1086. struct pnfs_layout_segment *lseg,
  1087. int how)
  1088. {
  1089. struct nfs_pgio_header *hdr = wdata->header;
  1090. struct inode *inode = hdr->inode;
  1091. enum pnfs_try_status trypnfs;
  1092. struct nfs_server *nfss = NFS_SERVER(inode);
  1093. hdr->mds_ops = call_ops;
  1094. dprintk("%s: Writing ino:%lu %u@%llu (how %d)\n", __func__,
  1095. inode->i_ino, wdata->args.count, wdata->args.offset, how);
  1096. trypnfs = nfss->pnfs_curr_ld->write_pagelist(wdata, how);
  1097. if (trypnfs != PNFS_NOT_ATTEMPTED)
  1098. nfs_inc_stats(inode, NFSIOS_PNFS_WRITE);
  1099. dprintk("%s End (trypnfs:%d)\n", __func__, trypnfs);
  1100. return trypnfs;
  1101. }
  1102. static void
  1103. pnfs_do_multiple_writes(struct nfs_pageio_descriptor *desc, struct list_head *head, int how)
  1104. {
  1105. struct nfs_write_data *data;
  1106. const struct rpc_call_ops *call_ops = desc->pg_rpc_callops;
  1107. struct pnfs_layout_segment *lseg = desc->pg_lseg;
  1108. desc->pg_lseg = NULL;
  1109. while (!list_empty(head)) {
  1110. enum pnfs_try_status trypnfs;
  1111. data = list_first_entry(head, struct nfs_write_data, list);
  1112. list_del_init(&data->list);
  1113. trypnfs = pnfs_try_to_write_data(data, call_ops, lseg, how);
  1114. if (trypnfs == PNFS_NOT_ATTEMPTED)
  1115. pnfs_write_through_mds(desc, data);
  1116. }
  1117. put_lseg(lseg);
  1118. }
  1119. static void pnfs_writehdr_free(struct nfs_pgio_header *hdr)
  1120. {
  1121. put_lseg(hdr->lseg);
  1122. nfs_writehdr_free(hdr);
  1123. }
  1124. int
  1125. pnfs_generic_pg_writepages(struct nfs_pageio_descriptor *desc)
  1126. {
  1127. struct nfs_write_header *whdr;
  1128. struct nfs_pgio_header *hdr;
  1129. int ret;
  1130. whdr = nfs_writehdr_alloc();
  1131. if (!whdr) {
  1132. nfs_async_write_error(&desc->pg_list);
  1133. put_lseg(desc->pg_lseg);
  1134. desc->pg_lseg = NULL;
  1135. return -ENOMEM;
  1136. }
  1137. hdr = &whdr->header;
  1138. nfs_pgheader_init(desc, hdr, pnfs_writehdr_free);
  1139. hdr->lseg = get_lseg(desc->pg_lseg);
  1140. atomic_inc(&hdr->refcnt);
  1141. ret = nfs_generic_flush(desc, hdr);
  1142. if (ret != 0) {
  1143. put_lseg(desc->pg_lseg);
  1144. desc->pg_lseg = NULL;
  1145. set_bit(NFS_IOHDR_REDO, &hdr->flags);
  1146. } else
  1147. pnfs_do_multiple_writes(desc, &hdr->rpc_list, desc->pg_ioflags);
  1148. if (atomic_dec_and_test(&hdr->refcnt))
  1149. nfs_write_completion(hdr);
  1150. return ret;
  1151. }
  1152. EXPORT_SYMBOL_GPL(pnfs_generic_pg_writepages);
  1153. static int pnfs_read_done_resend_to_mds(struct inode *inode, struct list_head *head)
  1154. {
  1155. struct nfs_pageio_descriptor pgio;
  1156. LIST_HEAD(failed);
  1157. /* Resend all requests through the MDS */
  1158. nfs_pageio_init_read_mds(&pgio, inode);
  1159. while (!list_empty(head)) {
  1160. struct nfs_page *req = nfs_list_entry(head->next);
  1161. nfs_list_remove_request(req);
  1162. if (!nfs_pageio_add_request(&pgio, req))
  1163. nfs_list_add_request(req, &failed);
  1164. }
  1165. nfs_pageio_complete(&pgio);
  1166. if (!list_empty(&failed)) {
  1167. list_move(&failed, head);
  1168. return -EIO;
  1169. }
  1170. return 0;
  1171. }
  1172. static void pnfs_ld_handle_read_error(struct nfs_read_data *data)
  1173. {
  1174. struct nfs_pgio_header *hdr = data->header;
  1175. dprintk("pnfs read error = %d\n", hdr->pnfs_error);
  1176. if (NFS_SERVER(hdr->inode)->pnfs_curr_ld->flags &
  1177. PNFS_LAYOUTRET_ON_ERROR) {
  1178. clear_bit(NFS_INO_LAYOUTCOMMIT, &NFS_I(hdr->inode)->flags);
  1179. pnfs_return_layout(hdr->inode);
  1180. }
  1181. if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags))
  1182. data->task.tk_status = pnfs_read_done_resend_to_mds(hdr->inode,
  1183. &hdr->pages);
  1184. }
  1185. /*
  1186. * Called by non rpc-based layout drivers
  1187. */
  1188. void pnfs_ld_read_done(struct nfs_read_data *data)
  1189. {
  1190. struct nfs_pgio_header *hdr = data->header;
  1191. if (likely(!hdr->pnfs_error)) {
  1192. __nfs4_read_done_cb(data);
  1193. hdr->mds_ops->rpc_call_done(&data->task, data);
  1194. } else
  1195. pnfs_ld_handle_read_error(data);
  1196. hdr->mds_ops->rpc_release(data);
  1197. }
  1198. EXPORT_SYMBOL_GPL(pnfs_ld_read_done);
  1199. static void
  1200. pnfs_read_through_mds(struct nfs_pageio_descriptor *desc,
  1201. struct nfs_read_data *data)
  1202. {
  1203. struct nfs_pgio_header *hdr = data->header;
  1204. if (!test_and_set_bit(NFS_IOHDR_REDO, &hdr->flags)) {
  1205. list_splice_tail_init(&hdr->pages, &desc->pg_list);
  1206. nfs_pageio_reset_read_mds(desc);
  1207. desc->pg_recoalesce = 1;
  1208. }
  1209. nfs_readdata_release(data);
  1210. }
  1211. /*
  1212. * Call the appropriate parallel I/O subsystem read function.
  1213. */
  1214. static enum pnfs_try_status
  1215. pnfs_try_to_read_data(struct nfs_read_data *rdata,
  1216. const struct rpc_call_ops *call_ops,
  1217. struct pnfs_layout_segment *lseg)
  1218. {
  1219. struct nfs_pgio_header *hdr = rdata->header;
  1220. struct inode *inode = hdr->inode;
  1221. struct nfs_server *nfss = NFS_SERVER(inode);
  1222. enum pnfs_try_status trypnfs;
  1223. hdr->mds_ops = call_ops;
  1224. dprintk("%s: Reading ino:%lu %u@%llu\n",
  1225. __func__, inode->i_ino, rdata->args.count, rdata->args.offset);
  1226. trypnfs = nfss->pnfs_curr_ld->read_pagelist(rdata);
  1227. if (trypnfs != PNFS_NOT_ATTEMPTED)
  1228. nfs_inc_stats(inode, NFSIOS_PNFS_READ);
  1229. dprintk("%s End (trypnfs:%d)\n", __func__, trypnfs);
  1230. return trypnfs;
  1231. }
  1232. static void
  1233. pnfs_do_multiple_reads(struct nfs_pageio_descriptor *desc, struct list_head *head)
  1234. {
  1235. struct nfs_read_data *data;
  1236. const struct rpc_call_ops *call_ops = desc->pg_rpc_callops;
  1237. struct pnfs_layout_segment *lseg = desc->pg_lseg;
  1238. desc->pg_lseg = NULL;
  1239. while (!list_empty(head)) {
  1240. enum pnfs_try_status trypnfs;
  1241. data = list_first_entry(head, struct nfs_read_data, list);
  1242. list_del_init(&data->list);
  1243. trypnfs = pnfs_try_to_read_data(data, call_ops, lseg);
  1244. if (trypnfs == PNFS_NOT_ATTEMPTED)
  1245. pnfs_read_through_mds(desc, data);
  1246. }
  1247. put_lseg(lseg);
  1248. }
  1249. static void pnfs_readhdr_free(struct nfs_pgio_header *hdr)
  1250. {
  1251. put_lseg(hdr->lseg);
  1252. nfs_readhdr_free(hdr);
  1253. }
  1254. int
  1255. pnfs_generic_pg_readpages(struct nfs_pageio_descriptor *desc)
  1256. {
  1257. struct nfs_read_header *rhdr;
  1258. struct nfs_pgio_header *hdr;
  1259. int ret;
  1260. rhdr = nfs_readhdr_alloc();
  1261. if (!rhdr) {
  1262. nfs_async_read_error(&desc->pg_list);
  1263. ret = -ENOMEM;
  1264. put_lseg(desc->pg_lseg);
  1265. desc->pg_lseg = NULL;
  1266. return ret;
  1267. }
  1268. hdr = &rhdr->header;
  1269. nfs_pgheader_init(desc, hdr, pnfs_readhdr_free);
  1270. hdr->lseg = get_lseg(desc->pg_lseg);
  1271. atomic_inc(&hdr->refcnt);
  1272. ret = nfs_generic_pagein(desc, hdr);
  1273. if (ret != 0) {
  1274. put_lseg(desc->pg_lseg);
  1275. desc->pg_lseg = NULL;
  1276. set_bit(NFS_IOHDR_REDO, &hdr->flags);
  1277. } else
  1278. pnfs_do_multiple_reads(desc, &hdr->rpc_list);
  1279. if (atomic_dec_and_test(&hdr->refcnt))
  1280. nfs_read_completion(hdr);
  1281. return ret;
  1282. }
  1283. EXPORT_SYMBOL_GPL(pnfs_generic_pg_readpages);
  1284. /*
  1285. * There can be multiple RW segments.
  1286. */
  1287. static void pnfs_list_write_lseg(struct inode *inode, struct list_head *listp)
  1288. {
  1289. struct pnfs_layout_segment *lseg;
  1290. list_for_each_entry(lseg, &NFS_I(inode)->layout->plh_segs, pls_list) {
  1291. if (lseg->pls_range.iomode == IOMODE_RW &&
  1292. test_bit(NFS_LSEG_LAYOUTCOMMIT, &lseg->pls_flags))
  1293. list_add(&lseg->pls_lc_list, listp);
  1294. }
  1295. }
  1296. void pnfs_set_lo_fail(struct pnfs_layout_segment *lseg)
  1297. {
  1298. if (lseg->pls_range.iomode == IOMODE_RW) {
  1299. dprintk("%s Setting layout IOMODE_RW fail bit\n", __func__);
  1300. set_bit(lo_fail_bit(IOMODE_RW), &lseg->pls_layout->plh_flags);
  1301. } else {
  1302. dprintk("%s Setting layout IOMODE_READ fail bit\n", __func__);
  1303. set_bit(lo_fail_bit(IOMODE_READ), &lseg->pls_layout->plh_flags);
  1304. }
  1305. }
  1306. EXPORT_SYMBOL_GPL(pnfs_set_lo_fail);
  1307. void
  1308. pnfs_set_layoutcommit(struct nfs_write_data *wdata)
  1309. {
  1310. struct nfs_pgio_header *hdr = wdata->header;
  1311. struct inode *inode = hdr->inode;
  1312. struct nfs_inode *nfsi = NFS_I(inode);
  1313. loff_t end_pos = wdata->mds_offset + wdata->res.count;
  1314. bool mark_as_dirty = false;
  1315. spin_lock(&inode->i_lock);
  1316. if (!test_and_set_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags)) {
  1317. mark_as_dirty = true;
  1318. dprintk("%s: Set layoutcommit for inode %lu ",
  1319. __func__, inode->i_ino);
  1320. }
  1321. if (!test_and_set_bit(NFS_LSEG_LAYOUTCOMMIT, &hdr->lseg->pls_flags)) {
  1322. /* references matched in nfs4_layoutcommit_release */
  1323. get_lseg(hdr->lseg);
  1324. }
  1325. if (end_pos > nfsi->layout->plh_lwb)
  1326. nfsi->layout->plh_lwb = end_pos;
  1327. spin_unlock(&inode->i_lock);
  1328. dprintk("%s: lseg %p end_pos %llu\n",
  1329. __func__, hdr->lseg, nfsi->layout->plh_lwb);
  1330. /* if pnfs_layoutcommit_inode() runs between inode locks, the next one
  1331. * will be a noop because NFS_INO_LAYOUTCOMMIT will not be set */
  1332. if (mark_as_dirty)
  1333. mark_inode_dirty_sync(inode);
  1334. }
  1335. EXPORT_SYMBOL_GPL(pnfs_set_layoutcommit);
  1336. void pnfs_cleanup_layoutcommit(struct nfs4_layoutcommit_data *data)
  1337. {
  1338. struct nfs_server *nfss = NFS_SERVER(data->args.inode);
  1339. if (nfss->pnfs_curr_ld->cleanup_layoutcommit)
  1340. nfss->pnfs_curr_ld->cleanup_layoutcommit(data);
  1341. }
  1342. /*
  1343. * For the LAYOUT4_NFSV4_1_FILES layout type, NFS_DATA_SYNC WRITEs and
  1344. * NFS_UNSTABLE WRITEs with a COMMIT to data servers must store enough
  1345. * data to disk to allow the server to recover the data if it crashes.
  1346. * LAYOUTCOMMIT is only needed when the NFL4_UFLG_COMMIT_THRU_MDS flag
  1347. * is off, and a COMMIT is sent to a data server, or
  1348. * if WRITEs to a data server return NFS_DATA_SYNC.
  1349. */
  1350. int
  1351. pnfs_layoutcommit_inode(struct inode *inode, bool sync)
  1352. {
  1353. struct nfs4_layoutcommit_data *data;
  1354. struct nfs_inode *nfsi = NFS_I(inode);
  1355. loff_t end_pos;
  1356. int status = 0;
  1357. dprintk("--> %s inode %lu\n", __func__, inode->i_ino);
  1358. if (!test_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags))
  1359. return 0;
  1360. /* Note kzalloc ensures data->res.seq_res.sr_slot == NULL */
  1361. data = kzalloc(sizeof(*data), GFP_NOFS);
  1362. if (!data) {
  1363. status = -ENOMEM;
  1364. goto out;
  1365. }
  1366. if (!test_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags))
  1367. goto out_free;
  1368. if (test_and_set_bit(NFS_INO_LAYOUTCOMMITTING, &nfsi->flags)) {
  1369. if (!sync) {
  1370. status = -EAGAIN;
  1371. goto out_free;
  1372. }
  1373. status = wait_on_bit_lock(&nfsi->flags, NFS_INO_LAYOUTCOMMITTING,
  1374. nfs_wait_bit_killable, TASK_KILLABLE);
  1375. if (status)
  1376. goto out_free;
  1377. }
  1378. INIT_LIST_HEAD(&data->lseg_list);
  1379. spin_lock(&inode->i_lock);
  1380. if (!test_and_clear_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags)) {
  1381. clear_bit(NFS_INO_LAYOUTCOMMITTING, &nfsi->flags);
  1382. spin_unlock(&inode->i_lock);
  1383. wake_up_bit(&nfsi->flags, NFS_INO_LAYOUTCOMMITTING);
  1384. goto out_free;
  1385. }
  1386. pnfs_list_write_lseg(inode, &data->lseg_list);
  1387. end_pos = nfsi->layout->plh_lwb;
  1388. nfsi->layout->plh_lwb = 0;
  1389. nfs4_stateid_copy(&data->args.stateid, &nfsi->layout->plh_stateid);
  1390. spin_unlock(&inode->i_lock);
  1391. data->args.inode = inode;
  1392. data->cred = get_rpccred(nfsi->layout->plh_lc_cred);
  1393. nfs_fattr_init(&data->fattr);
  1394. data->args.bitmask = NFS_SERVER(inode)->cache_consistency_bitmask;
  1395. data->res.fattr = &data->fattr;
  1396. data->args.lastbytewritten = end_pos - 1;
  1397. data->res.server = NFS_SERVER(inode);
  1398. status = nfs4_proc_layoutcommit(data, sync);
  1399. out:
  1400. if (status)
  1401. mark_inode_dirty_sync(inode);
  1402. dprintk("<-- %s status %d\n", __func__, status);
  1403. return status;
  1404. out_free:
  1405. kfree(data);
  1406. goto out;
  1407. }