read.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. /*
  2. * linux/fs/nfs/read.c
  3. *
  4. * Block I/O for NFS
  5. *
  6. * Partial copy of Linus' read cache modifications to fs/nfs/file.c
  7. * modified for async RPC by okir@monad.swb.de
  8. */
  9. #include <linux/time.h>
  10. #include <linux/kernel.h>
  11. #include <linux/errno.h>
  12. #include <linux/fcntl.h>
  13. #include <linux/stat.h>
  14. #include <linux/mm.h>
  15. #include <linux/slab.h>
  16. #include <linux/pagemap.h>
  17. #include <linux/sunrpc/clnt.h>
  18. #include <linux/nfs_fs.h>
  19. #include <linux/nfs_page.h>
  20. #include <linux/module.h>
  21. #include "nfs4_fs.h"
  22. #include "internal.h"
  23. #include "iostat.h"
  24. #include "fscache.h"
  25. #include "pnfs.h"
  26. #include "nfstrace.h"
  27. #define NFSDBG_FACILITY NFSDBG_PAGECACHE
  28. static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops;
  29. static const struct nfs_rw_ops nfs_rw_read_ops;
  30. static struct kmem_cache *nfs_rdata_cachep;
  31. static struct nfs_pgio_header *nfs_readhdr_alloc(void)
  32. {
  33. struct nfs_pgio_header *p = kmem_cache_zalloc(nfs_rdata_cachep, GFP_KERNEL);
  34. if (p)
  35. p->rw_mode = FMODE_READ;
  36. return p;
  37. }
  38. static void nfs_readhdr_free(struct nfs_pgio_header *rhdr)
  39. {
  40. kmem_cache_free(nfs_rdata_cachep, rhdr);
  41. }
  42. static
  43. int nfs_return_empty_page(struct page *page)
  44. {
  45. zero_user(page, 0, PAGE_SIZE);
  46. SetPageUptodate(page);
  47. unlock_page(page);
  48. return 0;
  49. }
  50. void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio,
  51. struct inode *inode, bool force_mds,
  52. const struct nfs_pgio_completion_ops *compl_ops)
  53. {
  54. struct nfs_server *server = NFS_SERVER(inode);
  55. const struct nfs_pageio_ops *pg_ops = &nfs_pgio_rw_ops;
  56. #ifdef CONFIG_NFS_V4_1
  57. if (server->pnfs_curr_ld && !force_mds)
  58. pg_ops = server->pnfs_curr_ld->pg_read_ops;
  59. #endif
  60. nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_read_ops,
  61. server->rsize, 0);
  62. }
  63. EXPORT_SYMBOL_GPL(nfs_pageio_init_read);
  64. void nfs_pageio_reset_read_mds(struct nfs_pageio_descriptor *pgio)
  65. {
  66. struct nfs_pgio_mirror *mirror;
  67. if (pgio->pg_ops && pgio->pg_ops->pg_cleanup)
  68. pgio->pg_ops->pg_cleanup(pgio);
  69. pgio->pg_ops = &nfs_pgio_rw_ops;
  70. /* read path should never have more than one mirror */
  71. WARN_ON_ONCE(pgio->pg_mirror_count != 1);
  72. mirror = &pgio->pg_mirrors[0];
  73. mirror->pg_bsize = NFS_SERVER(pgio->pg_inode)->rsize;
  74. }
  75. EXPORT_SYMBOL_GPL(nfs_pageio_reset_read_mds);
  76. static void nfs_readpage_release(struct nfs_page *req)
  77. {
  78. struct inode *inode = d_inode(req->wb_context->dentry);
  79. dprintk("NFS: read done (%s/%llu %d@%lld)\n", inode->i_sb->s_id,
  80. (unsigned long long)NFS_FILEID(inode), req->wb_bytes,
  81. (long long)req_offset(req));
  82. if (nfs_page_group_sync_on_bit(req, PG_UNLOCKPAGE)) {
  83. if (PageUptodate(req->wb_page))
  84. nfs_readpage_to_fscache(inode, req->wb_page, 0);
  85. unlock_page(req->wb_page);
  86. }
  87. nfs_release_request(req);
  88. }
  89. int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
  90. struct page *page)
  91. {
  92. struct nfs_page *new;
  93. unsigned int len;
  94. struct nfs_pageio_descriptor pgio;
  95. struct nfs_pgio_mirror *pgm;
  96. len = nfs_page_length(page);
  97. if (len == 0)
  98. return nfs_return_empty_page(page);
  99. new = nfs_create_request(ctx, page, NULL, 0, len);
  100. if (IS_ERR(new)) {
  101. unlock_page(page);
  102. return PTR_ERR(new);
  103. }
  104. if (len < PAGE_SIZE)
  105. zero_user_segment(page, len, PAGE_SIZE);
  106. nfs_pageio_init_read(&pgio, inode, false,
  107. &nfs_async_read_completion_ops);
  108. if (!nfs_pageio_add_request(&pgio, new)) {
  109. nfs_list_remove_request(new);
  110. nfs_readpage_release(new);
  111. }
  112. nfs_pageio_complete(&pgio);
  113. /* It doesn't make sense to do mirrored reads! */
  114. WARN_ON_ONCE(pgio.pg_mirror_count != 1);
  115. pgm = &pgio.pg_mirrors[0];
  116. NFS_I(inode)->read_io += pgm->pg_bytes_written;
  117. return pgio.pg_error < 0 ? pgio.pg_error : 0;
  118. }
  119. static void nfs_page_group_set_uptodate(struct nfs_page *req)
  120. {
  121. if (nfs_page_group_sync_on_bit(req, PG_UPTODATE))
  122. SetPageUptodate(req->wb_page);
  123. }
  124. static void nfs_read_completion(struct nfs_pgio_header *hdr)
  125. {
  126. unsigned long bytes = 0;
  127. if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
  128. goto out;
  129. while (!list_empty(&hdr->pages)) {
  130. struct nfs_page *req = nfs_list_entry(hdr->pages.next);
  131. struct page *page = req->wb_page;
  132. unsigned long start = req->wb_pgbase;
  133. unsigned long end = req->wb_pgbase + req->wb_bytes;
  134. if (test_bit(NFS_IOHDR_EOF, &hdr->flags)) {
  135. /* note: regions of the page not covered by a
  136. * request are zeroed in nfs_readpage_async /
  137. * readpage_async_filler */
  138. if (bytes > hdr->good_bytes) {
  139. /* nothing in this request was good, so zero
  140. * the full extent of the request */
  141. zero_user_segment(page, start, end);
  142. } else if (hdr->good_bytes - bytes < req->wb_bytes) {
  143. /* part of this request has good bytes, but
  144. * not all. zero the bad bytes */
  145. start += hdr->good_bytes - bytes;
  146. WARN_ON(start < req->wb_pgbase);
  147. zero_user_segment(page, start, end);
  148. }
  149. }
  150. bytes += req->wb_bytes;
  151. if (test_bit(NFS_IOHDR_ERROR, &hdr->flags)) {
  152. if (bytes <= hdr->good_bytes)
  153. nfs_page_group_set_uptodate(req);
  154. } else
  155. nfs_page_group_set_uptodate(req);
  156. nfs_list_remove_request(req);
  157. nfs_readpage_release(req);
  158. }
  159. out:
  160. hdr->release(hdr);
  161. }
  162. static void nfs_initiate_read(struct nfs_pgio_header *hdr,
  163. struct rpc_message *msg,
  164. const struct nfs_rpc_ops *rpc_ops,
  165. struct rpc_task_setup *task_setup_data, int how)
  166. {
  167. struct inode *inode = hdr->inode;
  168. int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0;
  169. task_setup_data->flags |= swap_flags;
  170. rpc_ops->read_setup(hdr, msg);
  171. trace_nfs_initiate_read(inode, hdr->io_start, hdr->good_bytes);
  172. }
  173. static void
  174. nfs_async_read_error(struct list_head *head, int error)
  175. {
  176. struct nfs_page *req;
  177. while (!list_empty(head)) {
  178. req = nfs_list_entry(head->next);
  179. nfs_list_remove_request(req);
  180. nfs_readpage_release(req);
  181. }
  182. }
  183. static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops = {
  184. .error_cleanup = nfs_async_read_error,
  185. .completion = nfs_read_completion,
  186. };
  187. /*
  188. * This is the callback from RPC telling us whether a reply was
  189. * received or some error occurred (timeout or socket shutdown).
  190. */
  191. static int nfs_readpage_done(struct rpc_task *task,
  192. struct nfs_pgio_header *hdr,
  193. struct inode *inode)
  194. {
  195. int status = NFS_PROTO(inode)->read_done(task, hdr);
  196. if (status != 0)
  197. return status;
  198. nfs_add_stats(inode, NFSIOS_SERVERREADBYTES, hdr->res.count);
  199. trace_nfs_readpage_done(inode, task->tk_status,
  200. hdr->args.offset, hdr->res.eof);
  201. if (task->tk_status == -ESTALE) {
  202. set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
  203. nfs_mark_for_revalidate(inode);
  204. }
  205. return 0;
  206. }
  207. static void nfs_readpage_retry(struct rpc_task *task,
  208. struct nfs_pgio_header *hdr)
  209. {
  210. struct nfs_pgio_args *argp = &hdr->args;
  211. struct nfs_pgio_res *resp = &hdr->res;
  212. /* This is a short read! */
  213. nfs_inc_stats(hdr->inode, NFSIOS_SHORTREAD);
  214. /* Has the server at least made some progress? */
  215. if (resp->count == 0) {
  216. nfs_set_pgio_error(hdr, -EIO, argp->offset);
  217. return;
  218. }
  219. /* For non rpc-based layout drivers, retry-through-MDS */
  220. if (!task->tk_ops) {
  221. hdr->pnfs_error = -EAGAIN;
  222. return;
  223. }
  224. /* Yes, so retry the read at the end of the hdr */
  225. hdr->mds_offset += resp->count;
  226. argp->offset += resp->count;
  227. argp->pgbase += resp->count;
  228. argp->count -= resp->count;
  229. rpc_restart_call_prepare(task);
  230. }
  231. static void nfs_readpage_result(struct rpc_task *task,
  232. struct nfs_pgio_header *hdr)
  233. {
  234. if (hdr->res.eof) {
  235. loff_t bound;
  236. bound = hdr->args.offset + hdr->res.count;
  237. spin_lock(&hdr->lock);
  238. if (bound < hdr->io_start + hdr->good_bytes) {
  239. set_bit(NFS_IOHDR_EOF, &hdr->flags);
  240. clear_bit(NFS_IOHDR_ERROR, &hdr->flags);
  241. hdr->good_bytes = bound - hdr->io_start;
  242. }
  243. spin_unlock(&hdr->lock);
  244. } else if (hdr->res.count < hdr->args.count)
  245. nfs_readpage_retry(task, hdr);
  246. }
  247. /*
  248. * Read a page over NFS.
  249. * We read the page synchronously in the following case:
  250. * - The error flag is set for this page. This happens only when a
  251. * previous async read operation failed.
  252. */
  253. int nfs_readpage(struct file *file, struct page *page)
  254. {
  255. struct nfs_open_context *ctx;
  256. struct inode *inode = page_file_mapping(page)->host;
  257. int error;
  258. dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
  259. page, PAGE_SIZE, page_index(page));
  260. nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
  261. nfs_add_stats(inode, NFSIOS_READPAGES, 1);
  262. /*
  263. * Try to flush any pending writes to the file..
  264. *
  265. * NOTE! Because we own the page lock, there cannot
  266. * be any new pending writes generated at this point
  267. * for this page (other pages can be written to).
  268. */
  269. error = nfs_wb_page(inode, page);
  270. if (error)
  271. goto out_unlock;
  272. if (PageUptodate(page))
  273. goto out_unlock;
  274. error = -ESTALE;
  275. if (NFS_STALE(inode))
  276. goto out_unlock;
  277. if (file == NULL) {
  278. error = -EBADF;
  279. ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
  280. if (ctx == NULL)
  281. goto out_unlock;
  282. } else
  283. ctx = get_nfs_open_context(nfs_file_open_context(file));
  284. if (!IS_SYNC(inode)) {
  285. error = nfs_readpage_from_fscache(ctx, inode, page);
  286. if (error == 0)
  287. goto out;
  288. }
  289. error = nfs_readpage_async(ctx, inode, page);
  290. out:
  291. put_nfs_open_context(ctx);
  292. return error;
  293. out_unlock:
  294. unlock_page(page);
  295. return error;
  296. }
  297. struct nfs_readdesc {
  298. struct nfs_pageio_descriptor *pgio;
  299. struct nfs_open_context *ctx;
  300. };
  301. static int
  302. readpage_async_filler(void *data, struct page *page)
  303. {
  304. struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
  305. struct nfs_page *new;
  306. unsigned int len;
  307. int error;
  308. len = nfs_page_length(page);
  309. if (len == 0)
  310. return nfs_return_empty_page(page);
  311. new = nfs_create_request(desc->ctx, page, NULL, 0, len);
  312. if (IS_ERR(new))
  313. goto out_error;
  314. if (len < PAGE_SIZE)
  315. zero_user_segment(page, len, PAGE_SIZE);
  316. if (!nfs_pageio_add_request(desc->pgio, new)) {
  317. nfs_list_remove_request(new);
  318. nfs_readpage_release(new);
  319. error = desc->pgio->pg_error;
  320. goto out;
  321. }
  322. return 0;
  323. out_error:
  324. error = PTR_ERR(new);
  325. unlock_page(page);
  326. out:
  327. return error;
  328. }
  329. int nfs_readpages(struct file *filp, struct address_space *mapping,
  330. struct list_head *pages, unsigned nr_pages)
  331. {
  332. struct nfs_pageio_descriptor pgio;
  333. struct nfs_pgio_mirror *pgm;
  334. struct nfs_readdesc desc = {
  335. .pgio = &pgio,
  336. };
  337. struct inode *inode = mapping->host;
  338. unsigned long npages;
  339. int ret = -ESTALE;
  340. dprintk("NFS: nfs_readpages (%s/%Lu %d)\n",
  341. inode->i_sb->s_id,
  342. (unsigned long long)NFS_FILEID(inode),
  343. nr_pages);
  344. nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
  345. if (NFS_STALE(inode))
  346. goto out;
  347. if (filp == NULL) {
  348. desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
  349. if (desc.ctx == NULL)
  350. return -EBADF;
  351. } else
  352. desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
  353. /* attempt to read as many of the pages as possible from the cache
  354. * - this returns -ENOBUFS immediately if the cookie is negative
  355. */
  356. ret = nfs_readpages_from_fscache(desc.ctx, inode, mapping,
  357. pages, &nr_pages);
  358. if (ret == 0)
  359. goto read_complete; /* all pages were read */
  360. nfs_pageio_init_read(&pgio, inode, false,
  361. &nfs_async_read_completion_ops);
  362. ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
  363. nfs_pageio_complete(&pgio);
  364. /* It doesn't make sense to do mirrored reads! */
  365. WARN_ON_ONCE(pgio.pg_mirror_count != 1);
  366. pgm = &pgio.pg_mirrors[0];
  367. NFS_I(inode)->read_io += pgm->pg_bytes_written;
  368. npages = (pgm->pg_bytes_written + PAGE_SIZE - 1) >>
  369. PAGE_SHIFT;
  370. nfs_add_stats(inode, NFSIOS_READPAGES, npages);
  371. read_complete:
  372. put_nfs_open_context(desc.ctx);
  373. out:
  374. return ret;
  375. }
  376. int __init nfs_init_readpagecache(void)
  377. {
  378. nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
  379. sizeof(struct nfs_pgio_header),
  380. 0, SLAB_HWCACHE_ALIGN,
  381. NULL);
  382. if (nfs_rdata_cachep == NULL)
  383. return -ENOMEM;
  384. return 0;
  385. }
  386. void nfs_destroy_readpagecache(void)
  387. {
  388. kmem_cache_destroy(nfs_rdata_cachep);
  389. }
  390. static const struct nfs_rw_ops nfs_rw_read_ops = {
  391. .rw_alloc_header = nfs_readhdr_alloc,
  392. .rw_free_header = nfs_readhdr_free,
  393. .rw_done = nfs_readpage_done,
  394. .rw_result = nfs_readpage_result,
  395. .rw_initiate = nfs_initiate_read,
  396. };