blocklayout.c 27 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054
  1. /*
  2. * linux/fs/nfs/blocklayout/blocklayout.c
  3. *
  4. * Module for the NFSv4.1 pNFS block layout driver.
  5. *
  6. * Copyright (c) 2006 The Regents of the University of Michigan.
  7. * All rights reserved.
  8. *
  9. * Andy Adamson <andros@citi.umich.edu>
  10. * Fred Isaman <iisaman@umich.edu>
  11. *
  12. * permission is granted to use, copy, create derivative works and
  13. * redistribute this software and such derivative works for any purpose,
  14. * so long as the name of the university of michigan is not used in
  15. * any advertising or publicity pertaining to the use or distribution
  16. * of this software without specific, written prior authorization. if
  17. * the above copyright notice or any other identification of the
  18. * university of michigan is included in any copy of any portion of
  19. * this software, then the disclaimer below must also be included.
  20. *
  21. * this software is provided as is, without representation from the
  22. * university of michigan as to its fitness for any purpose, and without
  23. * warranty by the university of michigan of any kind, either express
  24. * or implied, including without limitation the implied warranties of
  25. * merchantability and fitness for a particular purpose. the regents
  26. * of the university of michigan shall not be liable for any damages,
  27. * including special, indirect, incidental, or consequential damages,
  28. * with respect to any claim arising out or in connection with the use
  29. * of the software, even if it has been or is hereafter advised of the
  30. * possibility of such damages.
  31. */
  32. #include <linux/module.h>
  33. #include <linux/init.h>
  34. #include <linux/mount.h>
  35. #include <linux/namei.h>
  36. #include <linux/bio.h> /* struct bio */
  37. #include <linux/prefetch.h>
  38. #include <linux/pagevec.h>
  39. #include "../pnfs.h"
  40. #include "../nfs4session.h"
  41. #include "../internal.h"
  42. #include "blocklayout.h"
  43. #define NFSDBG_FACILITY NFSDBG_PNFS_LD
  44. MODULE_LICENSE("GPL");
  45. MODULE_AUTHOR("Andy Adamson <andros@citi.umich.edu>");
  46. MODULE_DESCRIPTION("The NFSv4.1 pNFS Block layout driver");
  47. static bool is_hole(struct pnfs_block_extent *be)
  48. {
  49. switch (be->be_state) {
  50. case PNFS_BLOCK_NONE_DATA:
  51. return true;
  52. case PNFS_BLOCK_INVALID_DATA:
  53. return be->be_tag ? false : true;
  54. default:
  55. return false;
  56. }
  57. }
  58. /* The data we are handed might be spread across several bios. We need
  59. * to track when the last one is finished.
  60. */
  61. struct parallel_io {
  62. struct kref refcnt;
  63. void (*pnfs_callback) (void *data);
  64. void *data;
  65. };
  66. static inline struct parallel_io *alloc_parallel(void *data)
  67. {
  68. struct parallel_io *rv;
  69. rv = kmalloc(sizeof(*rv), GFP_NOFS);
  70. if (rv) {
  71. rv->data = data;
  72. kref_init(&rv->refcnt);
  73. }
  74. return rv;
  75. }
  76. static inline void get_parallel(struct parallel_io *p)
  77. {
  78. kref_get(&p->refcnt);
  79. }
  80. static void destroy_parallel(struct kref *kref)
  81. {
  82. struct parallel_io *p = container_of(kref, struct parallel_io, refcnt);
  83. dprintk("%s enter\n", __func__);
  84. p->pnfs_callback(p->data);
  85. kfree(p);
  86. }
  87. static inline void put_parallel(struct parallel_io *p)
  88. {
  89. kref_put(&p->refcnt, destroy_parallel);
  90. }
  91. static struct bio *
  92. bl_submit_bio(struct bio *bio)
  93. {
  94. if (bio) {
  95. get_parallel(bio->bi_private);
  96. dprintk("%s submitting %s bio %u@%llu\n", __func__,
  97. bio_op(bio) == READ ? "read" : "write",
  98. bio->bi_iter.bi_size,
  99. (unsigned long long)bio->bi_iter.bi_sector);
  100. submit_bio(bio);
  101. }
  102. return NULL;
  103. }
  104. static struct bio *
  105. bl_alloc_init_bio(int npg, struct block_device *bdev, sector_t disk_sector,
  106. bio_end_io_t end_io, struct parallel_io *par)
  107. {
  108. struct bio *bio;
  109. npg = min(npg, BIO_MAX_PAGES);
  110. bio = bio_alloc(GFP_NOIO, npg);
  111. if (!bio && (current->flags & PF_MEMALLOC)) {
  112. while (!bio && (npg /= 2))
  113. bio = bio_alloc(GFP_NOIO, npg);
  114. }
  115. if (bio) {
  116. bio->bi_iter.bi_sector = disk_sector;
  117. bio_set_dev(bio, bdev);
  118. bio->bi_end_io = end_io;
  119. bio->bi_private = par;
  120. }
  121. return bio;
  122. }
  123. static bool offset_in_map(u64 offset, struct pnfs_block_dev_map *map)
  124. {
  125. return offset >= map->start && offset < map->start + map->len;
  126. }
  127. static struct bio *
  128. do_add_page_to_bio(struct bio *bio, int npg, int rw, sector_t isect,
  129. struct page *page, struct pnfs_block_dev_map *map,
  130. struct pnfs_block_extent *be, bio_end_io_t end_io,
  131. struct parallel_io *par, unsigned int offset, int *len)
  132. {
  133. struct pnfs_block_dev *dev =
  134. container_of(be->be_device, struct pnfs_block_dev, node);
  135. u64 disk_addr, end;
  136. dprintk("%s: npg %d rw %d isect %llu offset %u len %d\n", __func__,
  137. npg, rw, (unsigned long long)isect, offset, *len);
  138. /* translate to device offset */
  139. isect += be->be_v_offset;
  140. isect -= be->be_f_offset;
  141. /* translate to physical disk offset */
  142. disk_addr = (u64)isect << SECTOR_SHIFT;
  143. if (!offset_in_map(disk_addr, map)) {
  144. if (!dev->map(dev, disk_addr, map) || !offset_in_map(disk_addr, map))
  145. return ERR_PTR(-EIO);
  146. bio = bl_submit_bio(bio);
  147. }
  148. disk_addr += map->disk_offset;
  149. disk_addr -= map->start;
  150. /* limit length to what the device mapping allows */
  151. end = disk_addr + *len;
  152. if (end >= map->start + map->len)
  153. *len = map->start + map->len - disk_addr;
  154. retry:
  155. if (!bio) {
  156. bio = bl_alloc_init_bio(npg, map->bdev,
  157. disk_addr >> SECTOR_SHIFT, end_io, par);
  158. if (!bio)
  159. return ERR_PTR(-ENOMEM);
  160. bio_set_op_attrs(bio, rw, 0);
  161. }
  162. if (bio_add_page(bio, page, *len, offset) < *len) {
  163. bio = bl_submit_bio(bio);
  164. goto retry;
  165. }
  166. return bio;
  167. }
  168. static void bl_mark_devices_unavailable(struct nfs_pgio_header *header, bool rw)
  169. {
  170. struct pnfs_block_layout *bl = BLK_LSEG2EXT(header->lseg);
  171. size_t bytes_left = header->args.count;
  172. sector_t isect, extent_length = 0;
  173. struct pnfs_block_extent be;
  174. isect = header->args.offset >> SECTOR_SHIFT;
  175. bytes_left += header->args.offset - (isect << SECTOR_SHIFT);
  176. while (bytes_left > 0) {
  177. if (!ext_tree_lookup(bl, isect, &be, rw))
  178. return;
  179. extent_length = be.be_length - (isect - be.be_f_offset);
  180. nfs4_mark_deviceid_unavailable(be.be_device);
  181. isect += extent_length;
  182. if (bytes_left > extent_length << SECTOR_SHIFT)
  183. bytes_left -= extent_length << SECTOR_SHIFT;
  184. else
  185. bytes_left = 0;
  186. }
  187. }
  188. static void bl_end_io_read(struct bio *bio)
  189. {
  190. struct parallel_io *par = bio->bi_private;
  191. if (bio->bi_status) {
  192. struct nfs_pgio_header *header = par->data;
  193. if (!header->pnfs_error)
  194. header->pnfs_error = -EIO;
  195. pnfs_set_lo_fail(header->lseg);
  196. bl_mark_devices_unavailable(header, false);
  197. }
  198. bio_put(bio);
  199. put_parallel(par);
  200. }
  201. static void bl_read_cleanup(struct work_struct *work)
  202. {
  203. struct rpc_task *task;
  204. struct nfs_pgio_header *hdr;
  205. dprintk("%s enter\n", __func__);
  206. task = container_of(work, struct rpc_task, u.tk_work);
  207. hdr = container_of(task, struct nfs_pgio_header, task);
  208. pnfs_ld_read_done(hdr);
  209. }
  210. static void
  211. bl_end_par_io_read(void *data)
  212. {
  213. struct nfs_pgio_header *hdr = data;
  214. hdr->task.tk_status = hdr->pnfs_error;
  215. INIT_WORK(&hdr->task.u.tk_work, bl_read_cleanup);
  216. schedule_work(&hdr->task.u.tk_work);
  217. }
  218. static enum pnfs_try_status
  219. bl_read_pagelist(struct nfs_pgio_header *header)
  220. {
  221. struct pnfs_block_layout *bl = BLK_LSEG2EXT(header->lseg);
  222. struct pnfs_block_dev_map map = { .start = NFS4_MAX_UINT64 };
  223. struct bio *bio = NULL;
  224. struct pnfs_block_extent be;
  225. sector_t isect, extent_length = 0;
  226. struct parallel_io *par;
  227. loff_t f_offset = header->args.offset;
  228. size_t bytes_left = header->args.count;
  229. unsigned int pg_offset = header->args.pgbase, pg_len;
  230. struct page **pages = header->args.pages;
  231. int pg_index = header->args.pgbase >> PAGE_SHIFT;
  232. const bool is_dio = (header->dreq != NULL);
  233. struct blk_plug plug;
  234. int i;
  235. dprintk("%s enter nr_pages %u offset %lld count %u\n", __func__,
  236. header->page_array.npages, f_offset,
  237. (unsigned int)header->args.count);
  238. par = alloc_parallel(header);
  239. if (!par)
  240. return PNFS_NOT_ATTEMPTED;
  241. par->pnfs_callback = bl_end_par_io_read;
  242. blk_start_plug(&plug);
  243. isect = (sector_t) (f_offset >> SECTOR_SHIFT);
  244. /* Code assumes extents are page-aligned */
  245. for (i = pg_index; i < header->page_array.npages; i++) {
  246. if (extent_length <= 0) {
  247. /* We've used up the previous extent */
  248. bio = bl_submit_bio(bio);
  249. /* Get the next one */
  250. if (!ext_tree_lookup(bl, isect, &be, false)) {
  251. header->pnfs_error = -EIO;
  252. goto out;
  253. }
  254. extent_length = be.be_length - (isect - be.be_f_offset);
  255. }
  256. if (is_dio) {
  257. if (pg_offset + bytes_left > PAGE_SIZE)
  258. pg_len = PAGE_SIZE - pg_offset;
  259. else
  260. pg_len = bytes_left;
  261. } else {
  262. BUG_ON(pg_offset != 0);
  263. pg_len = PAGE_SIZE;
  264. }
  265. if (is_hole(&be)) {
  266. bio = bl_submit_bio(bio);
  267. /* Fill hole w/ zeroes w/o accessing device */
  268. dprintk("%s Zeroing page for hole\n", __func__);
  269. zero_user_segment(pages[i], pg_offset, pg_len);
  270. /* invalidate map */
  271. map.start = NFS4_MAX_UINT64;
  272. } else {
  273. bio = do_add_page_to_bio(bio,
  274. header->page_array.npages - i,
  275. READ,
  276. isect, pages[i], &map, &be,
  277. bl_end_io_read, par,
  278. pg_offset, &pg_len);
  279. if (IS_ERR(bio)) {
  280. header->pnfs_error = PTR_ERR(bio);
  281. bio = NULL;
  282. goto out;
  283. }
  284. }
  285. isect += (pg_len >> SECTOR_SHIFT);
  286. extent_length -= (pg_len >> SECTOR_SHIFT);
  287. f_offset += pg_len;
  288. bytes_left -= pg_len;
  289. pg_offset = 0;
  290. }
  291. if ((isect << SECTOR_SHIFT) >= header->inode->i_size) {
  292. header->res.eof = 1;
  293. header->res.count = header->inode->i_size - header->args.offset;
  294. } else {
  295. header->res.count = (isect << SECTOR_SHIFT) - header->args.offset;
  296. }
  297. out:
  298. bl_submit_bio(bio);
  299. blk_finish_plug(&plug);
  300. put_parallel(par);
  301. return PNFS_ATTEMPTED;
  302. }
  303. static void bl_end_io_write(struct bio *bio)
  304. {
  305. struct parallel_io *par = bio->bi_private;
  306. struct nfs_pgio_header *header = par->data;
  307. if (bio->bi_status) {
  308. if (!header->pnfs_error)
  309. header->pnfs_error = -EIO;
  310. pnfs_set_lo_fail(header->lseg);
  311. bl_mark_devices_unavailable(header, true);
  312. }
  313. bio_put(bio);
  314. put_parallel(par);
  315. }
  316. /* Function scheduled for call during bl_end_par_io_write,
  317. * it marks sectors as written and extends the commitlist.
  318. */
  319. static void bl_write_cleanup(struct work_struct *work)
  320. {
  321. struct rpc_task *task = container_of(work, struct rpc_task, u.tk_work);
  322. struct nfs_pgio_header *hdr =
  323. container_of(task, struct nfs_pgio_header, task);
  324. dprintk("%s enter\n", __func__);
  325. if (likely(!hdr->pnfs_error)) {
  326. struct pnfs_block_layout *bl = BLK_LSEG2EXT(hdr->lseg);
  327. u64 start = hdr->args.offset & (loff_t)PAGE_MASK;
  328. u64 end = (hdr->args.offset + hdr->args.count +
  329. PAGE_SIZE - 1) & (loff_t)PAGE_MASK;
  330. u64 lwb = hdr->args.offset + hdr->args.count;
  331. ext_tree_mark_written(bl, start >> SECTOR_SHIFT,
  332. (end - start) >> SECTOR_SHIFT, lwb);
  333. }
  334. pnfs_ld_write_done(hdr);
  335. }
  336. /* Called when last of bios associated with a bl_write_pagelist call finishes */
  337. static void bl_end_par_io_write(void *data)
  338. {
  339. struct nfs_pgio_header *hdr = data;
  340. hdr->task.tk_status = hdr->pnfs_error;
  341. hdr->verf.committed = NFS_FILE_SYNC;
  342. INIT_WORK(&hdr->task.u.tk_work, bl_write_cleanup);
  343. schedule_work(&hdr->task.u.tk_work);
  344. }
  345. static enum pnfs_try_status
  346. bl_write_pagelist(struct nfs_pgio_header *header, int sync)
  347. {
  348. struct pnfs_block_layout *bl = BLK_LSEG2EXT(header->lseg);
  349. struct pnfs_block_dev_map map = { .start = NFS4_MAX_UINT64 };
  350. struct bio *bio = NULL;
  351. struct pnfs_block_extent be;
  352. sector_t isect, extent_length = 0;
  353. struct parallel_io *par = NULL;
  354. loff_t offset = header->args.offset;
  355. size_t count = header->args.count;
  356. struct page **pages = header->args.pages;
  357. int pg_index = header->args.pgbase >> PAGE_SHIFT;
  358. unsigned int pg_len;
  359. struct blk_plug plug;
  360. int i;
  361. dprintk("%s enter, %zu@%lld\n", __func__, count, offset);
  362. /* At this point, header->page_aray is a (sequential) list of nfs_pages.
  363. * We want to write each, and if there is an error set pnfs_error
  364. * to have it redone using nfs.
  365. */
  366. par = alloc_parallel(header);
  367. if (!par)
  368. return PNFS_NOT_ATTEMPTED;
  369. par->pnfs_callback = bl_end_par_io_write;
  370. blk_start_plug(&plug);
  371. /* we always write out the whole page */
  372. offset = offset & (loff_t)PAGE_MASK;
  373. isect = offset >> SECTOR_SHIFT;
  374. for (i = pg_index; i < header->page_array.npages; i++) {
  375. if (extent_length <= 0) {
  376. /* We've used up the previous extent */
  377. bio = bl_submit_bio(bio);
  378. /* Get the next one */
  379. if (!ext_tree_lookup(bl, isect, &be, true)) {
  380. header->pnfs_error = -EINVAL;
  381. goto out;
  382. }
  383. extent_length = be.be_length - (isect - be.be_f_offset);
  384. }
  385. pg_len = PAGE_SIZE;
  386. bio = do_add_page_to_bio(bio, header->page_array.npages - i,
  387. WRITE, isect, pages[i], &map, &be,
  388. bl_end_io_write, par,
  389. 0, &pg_len);
  390. if (IS_ERR(bio)) {
  391. header->pnfs_error = PTR_ERR(bio);
  392. bio = NULL;
  393. goto out;
  394. }
  395. offset += pg_len;
  396. count -= pg_len;
  397. isect += (pg_len >> SECTOR_SHIFT);
  398. extent_length -= (pg_len >> SECTOR_SHIFT);
  399. }
  400. header->res.count = header->args.count;
  401. out:
  402. bl_submit_bio(bio);
  403. blk_finish_plug(&plug);
  404. put_parallel(par);
  405. return PNFS_ATTEMPTED;
  406. }
  407. static void bl_free_layout_hdr(struct pnfs_layout_hdr *lo)
  408. {
  409. struct pnfs_block_layout *bl = BLK_LO2EXT(lo);
  410. int err;
  411. dprintk("%s enter\n", __func__);
  412. err = ext_tree_remove(bl, true, 0, LLONG_MAX);
  413. WARN_ON(err);
  414. kfree(bl);
  415. }
  416. static struct pnfs_layout_hdr *__bl_alloc_layout_hdr(struct inode *inode,
  417. gfp_t gfp_flags, bool is_scsi_layout)
  418. {
  419. struct pnfs_block_layout *bl;
  420. dprintk("%s enter\n", __func__);
  421. bl = kzalloc(sizeof(*bl), gfp_flags);
  422. if (!bl)
  423. return NULL;
  424. bl->bl_ext_rw = RB_ROOT;
  425. bl->bl_ext_ro = RB_ROOT;
  426. spin_lock_init(&bl->bl_ext_lock);
  427. bl->bl_scsi_layout = is_scsi_layout;
  428. return &bl->bl_layout;
  429. }
  430. static struct pnfs_layout_hdr *bl_alloc_layout_hdr(struct inode *inode,
  431. gfp_t gfp_flags)
  432. {
  433. return __bl_alloc_layout_hdr(inode, gfp_flags, false);
  434. }
  435. static struct pnfs_layout_hdr *sl_alloc_layout_hdr(struct inode *inode,
  436. gfp_t gfp_flags)
  437. {
  438. return __bl_alloc_layout_hdr(inode, gfp_flags, true);
  439. }
  440. static void bl_free_lseg(struct pnfs_layout_segment *lseg)
  441. {
  442. dprintk("%s enter\n", __func__);
  443. kfree(lseg);
  444. }
  445. /* Tracks info needed to ensure extents in layout obey constraints of spec */
  446. struct layout_verification {
  447. u32 mode; /* R or RW */
  448. u64 start; /* Expected start of next non-COW extent */
  449. u64 inval; /* Start of INVAL coverage */
  450. u64 cowread; /* End of COW read coverage */
  451. };
  452. /* Verify the extent meets the layout requirements of the pnfs-block draft,
  453. * section 2.3.1.
  454. */
  455. static int verify_extent(struct pnfs_block_extent *be,
  456. struct layout_verification *lv)
  457. {
  458. if (lv->mode == IOMODE_READ) {
  459. if (be->be_state == PNFS_BLOCK_READWRITE_DATA ||
  460. be->be_state == PNFS_BLOCK_INVALID_DATA)
  461. return -EIO;
  462. if (be->be_f_offset != lv->start)
  463. return -EIO;
  464. lv->start += be->be_length;
  465. return 0;
  466. }
  467. /* lv->mode == IOMODE_RW */
  468. if (be->be_state == PNFS_BLOCK_READWRITE_DATA) {
  469. if (be->be_f_offset != lv->start)
  470. return -EIO;
  471. if (lv->cowread > lv->start)
  472. return -EIO;
  473. lv->start += be->be_length;
  474. lv->inval = lv->start;
  475. return 0;
  476. } else if (be->be_state == PNFS_BLOCK_INVALID_DATA) {
  477. if (be->be_f_offset != lv->start)
  478. return -EIO;
  479. lv->start += be->be_length;
  480. return 0;
  481. } else if (be->be_state == PNFS_BLOCK_READ_DATA) {
  482. if (be->be_f_offset > lv->start)
  483. return -EIO;
  484. if (be->be_f_offset < lv->inval)
  485. return -EIO;
  486. if (be->be_f_offset < lv->cowread)
  487. return -EIO;
  488. /* It looks like you might want to min this with lv->start,
  489. * but you really don't.
  490. */
  491. lv->inval = lv->inval + be->be_length;
  492. lv->cowread = be->be_f_offset + be->be_length;
  493. return 0;
  494. } else
  495. return -EIO;
  496. }
  497. static int decode_sector_number(__be32 **rp, sector_t *sp)
  498. {
  499. uint64_t s;
  500. *rp = xdr_decode_hyper(*rp, &s);
  501. if (s & 0x1ff) {
  502. printk(KERN_WARNING "NFS: %s: sector not aligned\n", __func__);
  503. return -1;
  504. }
  505. *sp = s >> SECTOR_SHIFT;
  506. return 0;
  507. }
  508. static struct nfs4_deviceid_node *
  509. bl_find_get_deviceid(struct nfs_server *server,
  510. const struct nfs4_deviceid *id, struct rpc_cred *cred,
  511. gfp_t gfp_mask)
  512. {
  513. struct nfs4_deviceid_node *node;
  514. unsigned long start, end;
  515. retry:
  516. node = nfs4_find_get_deviceid(server, id, cred, gfp_mask);
  517. if (!node)
  518. return ERR_PTR(-ENODEV);
  519. if (test_bit(NFS_DEVICEID_UNAVAILABLE, &node->flags) == 0)
  520. return node;
  521. end = jiffies;
  522. start = end - PNFS_DEVICE_RETRY_TIMEOUT;
  523. if (!time_in_range(node->timestamp_unavailable, start, end)) {
  524. nfs4_delete_deviceid(node->ld, node->nfs_client, id);
  525. goto retry;
  526. }
  527. return ERR_PTR(-ENODEV);
  528. }
  529. static int
  530. bl_alloc_extent(struct xdr_stream *xdr, struct pnfs_layout_hdr *lo,
  531. struct layout_verification *lv, struct list_head *extents,
  532. gfp_t gfp_mask)
  533. {
  534. struct pnfs_block_extent *be;
  535. struct nfs4_deviceid id;
  536. int error;
  537. __be32 *p;
  538. p = xdr_inline_decode(xdr, 28 + NFS4_DEVICEID4_SIZE);
  539. if (!p)
  540. return -EIO;
  541. be = kzalloc(sizeof(*be), GFP_NOFS);
  542. if (!be)
  543. return -ENOMEM;
  544. memcpy(&id, p, NFS4_DEVICEID4_SIZE);
  545. p += XDR_QUADLEN(NFS4_DEVICEID4_SIZE);
  546. be->be_device = bl_find_get_deviceid(NFS_SERVER(lo->plh_inode), &id,
  547. lo->plh_lc_cred, gfp_mask);
  548. if (IS_ERR(be->be_device)) {
  549. error = PTR_ERR(be->be_device);
  550. goto out_free_be;
  551. }
  552. /*
  553. * The next three values are read in as bytes, but stored in the
  554. * extent structure in 512-byte granularity.
  555. */
  556. error = -EIO;
  557. if (decode_sector_number(&p, &be->be_f_offset) < 0)
  558. goto out_put_deviceid;
  559. if (decode_sector_number(&p, &be->be_length) < 0)
  560. goto out_put_deviceid;
  561. if (decode_sector_number(&p, &be->be_v_offset) < 0)
  562. goto out_put_deviceid;
  563. be->be_state = be32_to_cpup(p++);
  564. error = verify_extent(be, lv);
  565. if (error) {
  566. dprintk("%s: extent verification failed\n", __func__);
  567. goto out_put_deviceid;
  568. }
  569. list_add_tail(&be->be_list, extents);
  570. return 0;
  571. out_put_deviceid:
  572. nfs4_put_deviceid_node(be->be_device);
  573. out_free_be:
  574. kfree(be);
  575. return error;
  576. }
  577. static struct pnfs_layout_segment *
  578. bl_alloc_lseg(struct pnfs_layout_hdr *lo, struct nfs4_layoutget_res *lgr,
  579. gfp_t gfp_mask)
  580. {
  581. struct layout_verification lv = {
  582. .mode = lgr->range.iomode,
  583. .start = lgr->range.offset >> SECTOR_SHIFT,
  584. .inval = lgr->range.offset >> SECTOR_SHIFT,
  585. .cowread = lgr->range.offset >> SECTOR_SHIFT,
  586. };
  587. struct pnfs_block_layout *bl = BLK_LO2EXT(lo);
  588. struct pnfs_layout_segment *lseg;
  589. struct xdr_buf buf;
  590. struct xdr_stream xdr;
  591. struct page *scratch;
  592. int status, i;
  593. uint32_t count;
  594. __be32 *p;
  595. LIST_HEAD(extents);
  596. dprintk("---> %s\n", __func__);
  597. lseg = kzalloc(sizeof(*lseg), gfp_mask);
  598. if (!lseg)
  599. return ERR_PTR(-ENOMEM);
  600. status = -ENOMEM;
  601. scratch = alloc_page(gfp_mask);
  602. if (!scratch)
  603. goto out;
  604. xdr_init_decode_pages(&xdr, &buf,
  605. lgr->layoutp->pages, lgr->layoutp->len);
  606. xdr_set_scratch_buffer(&xdr, page_address(scratch), PAGE_SIZE);
  607. status = -EIO;
  608. p = xdr_inline_decode(&xdr, 4);
  609. if (unlikely(!p))
  610. goto out_free_scratch;
  611. count = be32_to_cpup(p++);
  612. dprintk("%s: number of extents %d\n", __func__, count);
  613. /*
  614. * Decode individual extents, putting them in temporary staging area
  615. * until whole layout is decoded to make error recovery easier.
  616. */
  617. for (i = 0; i < count; i++) {
  618. status = bl_alloc_extent(&xdr, lo, &lv, &extents, gfp_mask);
  619. if (status)
  620. goto process_extents;
  621. }
  622. if (lgr->range.offset + lgr->range.length !=
  623. lv.start << SECTOR_SHIFT) {
  624. dprintk("%s Final length mismatch\n", __func__);
  625. status = -EIO;
  626. goto process_extents;
  627. }
  628. if (lv.start < lv.cowread) {
  629. dprintk("%s Final uncovered COW extent\n", __func__);
  630. status = -EIO;
  631. }
  632. process_extents:
  633. while (!list_empty(&extents)) {
  634. struct pnfs_block_extent *be =
  635. list_first_entry(&extents, struct pnfs_block_extent,
  636. be_list);
  637. list_del(&be->be_list);
  638. if (!status)
  639. status = ext_tree_insert(bl, be);
  640. if (status) {
  641. nfs4_put_deviceid_node(be->be_device);
  642. kfree(be);
  643. }
  644. }
  645. out_free_scratch:
  646. __free_page(scratch);
  647. out:
  648. dprintk("%s returns %d\n", __func__, status);
  649. switch (status) {
  650. case -ENODEV:
  651. /* Our extent block devices are unavailable */
  652. set_bit(NFS_LSEG_UNAVAILABLE, &lseg->pls_flags);
  653. /* Fall through */
  654. case 0:
  655. return lseg;
  656. default:
  657. kfree(lseg);
  658. return ERR_PTR(status);
  659. }
  660. }
  661. static void
  662. bl_return_range(struct pnfs_layout_hdr *lo,
  663. struct pnfs_layout_range *range)
  664. {
  665. struct pnfs_block_layout *bl = BLK_LO2EXT(lo);
  666. sector_t offset = range->offset >> SECTOR_SHIFT, end;
  667. if (range->offset % 8) {
  668. dprintk("%s: offset %lld not block size aligned\n",
  669. __func__, range->offset);
  670. return;
  671. }
  672. if (range->length != NFS4_MAX_UINT64) {
  673. if (range->length % 8) {
  674. dprintk("%s: length %lld not block size aligned\n",
  675. __func__, range->length);
  676. return;
  677. }
  678. end = offset + (range->length >> SECTOR_SHIFT);
  679. } else {
  680. end = round_down(NFS4_MAX_UINT64, PAGE_SIZE);
  681. }
  682. ext_tree_remove(bl, range->iomode & IOMODE_RW, offset, end);
  683. }
  684. static int
  685. bl_prepare_layoutcommit(struct nfs4_layoutcommit_args *arg)
  686. {
  687. return ext_tree_prepare_commit(arg);
  688. }
  689. static void
  690. bl_cleanup_layoutcommit(struct nfs4_layoutcommit_data *lcdata)
  691. {
  692. ext_tree_mark_committed(&lcdata->args, lcdata->res.status);
  693. }
  694. static int
  695. bl_set_layoutdriver(struct nfs_server *server, const struct nfs_fh *fh)
  696. {
  697. dprintk("%s enter\n", __func__);
  698. if (server->pnfs_blksize == 0) {
  699. dprintk("%s Server did not return blksize\n", __func__);
  700. return -EINVAL;
  701. }
  702. if (server->pnfs_blksize > PAGE_SIZE) {
  703. printk(KERN_ERR "%s: pNFS blksize %d not supported.\n",
  704. __func__, server->pnfs_blksize);
  705. return -EINVAL;
  706. }
  707. return 0;
  708. }
  709. static bool
  710. is_aligned_req(struct nfs_pageio_descriptor *pgio,
  711. struct nfs_page *req, unsigned int alignment, bool is_write)
  712. {
  713. /*
  714. * Always accept buffered writes, higher layers take care of the
  715. * right alignment.
  716. */
  717. if (pgio->pg_dreq == NULL)
  718. return true;
  719. if (!IS_ALIGNED(req->wb_offset, alignment))
  720. return false;
  721. if (IS_ALIGNED(req->wb_bytes, alignment))
  722. return true;
  723. if (is_write &&
  724. (req_offset(req) + req->wb_bytes == i_size_read(pgio->pg_inode))) {
  725. /*
  726. * If the write goes up to the inode size, just write
  727. * the full page. Data past the inode size is
  728. * guaranteed to be zeroed by the higher level client
  729. * code, and this behaviour is mandated by RFC 5663
  730. * section 2.3.2.
  731. */
  732. return true;
  733. }
  734. return false;
  735. }
  736. static void
  737. bl_pg_init_read(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
  738. {
  739. if (!is_aligned_req(pgio, req, SECTOR_SIZE, false)) {
  740. nfs_pageio_reset_read_mds(pgio);
  741. return;
  742. }
  743. pnfs_generic_pg_init_read(pgio, req);
  744. if (pgio->pg_lseg &&
  745. test_bit(NFS_LSEG_UNAVAILABLE, &pgio->pg_lseg->pls_flags)) {
  746. pnfs_error_mark_layout_for_return(pgio->pg_inode, pgio->pg_lseg);
  747. pnfs_set_lo_fail(pgio->pg_lseg);
  748. nfs_pageio_reset_read_mds(pgio);
  749. }
  750. }
  751. /*
  752. * Return 0 if @req cannot be coalesced into @pgio, otherwise return the number
  753. * of bytes (maximum @req->wb_bytes) that can be coalesced.
  754. */
  755. static size_t
  756. bl_pg_test_read(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
  757. struct nfs_page *req)
  758. {
  759. if (!is_aligned_req(pgio, req, SECTOR_SIZE, false))
  760. return 0;
  761. return pnfs_generic_pg_test(pgio, prev, req);
  762. }
  763. /*
  764. * Return the number of contiguous bytes for a given inode
  765. * starting at page frame idx.
  766. */
  767. static u64 pnfs_num_cont_bytes(struct inode *inode, pgoff_t idx)
  768. {
  769. struct address_space *mapping = inode->i_mapping;
  770. pgoff_t end;
  771. /* Optimize common case that writes from 0 to end of file */
  772. end = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
  773. if (end != inode->i_mapping->nrpages) {
  774. rcu_read_lock();
  775. end = page_cache_next_hole(mapping, idx + 1, ULONG_MAX);
  776. rcu_read_unlock();
  777. }
  778. if (!end)
  779. return i_size_read(inode) - (idx << PAGE_SHIFT);
  780. else
  781. return (end - idx) << PAGE_SHIFT;
  782. }
  783. static void
  784. bl_pg_init_write(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
  785. {
  786. u64 wb_size;
  787. if (!is_aligned_req(pgio, req, PAGE_SIZE, true)) {
  788. nfs_pageio_reset_write_mds(pgio);
  789. return;
  790. }
  791. if (pgio->pg_dreq == NULL)
  792. wb_size = pnfs_num_cont_bytes(pgio->pg_inode,
  793. req->wb_index);
  794. else
  795. wb_size = nfs_dreq_bytes_left(pgio->pg_dreq);
  796. pnfs_generic_pg_init_write(pgio, req, wb_size);
  797. if (pgio->pg_lseg &&
  798. test_bit(NFS_LSEG_UNAVAILABLE, &pgio->pg_lseg->pls_flags)) {
  799. pnfs_error_mark_layout_for_return(pgio->pg_inode, pgio->pg_lseg);
  800. pnfs_set_lo_fail(pgio->pg_lseg);
  801. nfs_pageio_reset_write_mds(pgio);
  802. }
  803. }
  804. /*
  805. * Return 0 if @req cannot be coalesced into @pgio, otherwise return the number
  806. * of bytes (maximum @req->wb_bytes) that can be coalesced.
  807. */
  808. static size_t
  809. bl_pg_test_write(struct nfs_pageio_descriptor *pgio, struct nfs_page *prev,
  810. struct nfs_page *req)
  811. {
  812. if (!is_aligned_req(pgio, req, PAGE_SIZE, true))
  813. return 0;
  814. return pnfs_generic_pg_test(pgio, prev, req);
  815. }
  816. static const struct nfs_pageio_ops bl_pg_read_ops = {
  817. .pg_init = bl_pg_init_read,
  818. .pg_test = bl_pg_test_read,
  819. .pg_doio = pnfs_generic_pg_readpages,
  820. .pg_cleanup = pnfs_generic_pg_cleanup,
  821. };
  822. static const struct nfs_pageio_ops bl_pg_write_ops = {
  823. .pg_init = bl_pg_init_write,
  824. .pg_test = bl_pg_test_write,
  825. .pg_doio = pnfs_generic_pg_writepages,
  826. .pg_cleanup = pnfs_generic_pg_cleanup,
  827. };
  828. static struct pnfs_layoutdriver_type blocklayout_type = {
  829. .id = LAYOUT_BLOCK_VOLUME,
  830. .name = "LAYOUT_BLOCK_VOLUME",
  831. .owner = THIS_MODULE,
  832. .flags = PNFS_LAYOUTRET_ON_SETATTR |
  833. PNFS_LAYOUTRET_ON_ERROR |
  834. PNFS_READ_WHOLE_PAGE,
  835. .read_pagelist = bl_read_pagelist,
  836. .write_pagelist = bl_write_pagelist,
  837. .alloc_layout_hdr = bl_alloc_layout_hdr,
  838. .free_layout_hdr = bl_free_layout_hdr,
  839. .alloc_lseg = bl_alloc_lseg,
  840. .free_lseg = bl_free_lseg,
  841. .return_range = bl_return_range,
  842. .prepare_layoutcommit = bl_prepare_layoutcommit,
  843. .cleanup_layoutcommit = bl_cleanup_layoutcommit,
  844. .set_layoutdriver = bl_set_layoutdriver,
  845. .alloc_deviceid_node = bl_alloc_deviceid_node,
  846. .free_deviceid_node = bl_free_deviceid_node,
  847. .pg_read_ops = &bl_pg_read_ops,
  848. .pg_write_ops = &bl_pg_write_ops,
  849. .sync = pnfs_generic_sync,
  850. };
  851. static struct pnfs_layoutdriver_type scsilayout_type = {
  852. .id = LAYOUT_SCSI,
  853. .name = "LAYOUT_SCSI",
  854. .owner = THIS_MODULE,
  855. .flags = PNFS_LAYOUTRET_ON_SETATTR |
  856. PNFS_LAYOUTRET_ON_ERROR |
  857. PNFS_READ_WHOLE_PAGE,
  858. .read_pagelist = bl_read_pagelist,
  859. .write_pagelist = bl_write_pagelist,
  860. .alloc_layout_hdr = sl_alloc_layout_hdr,
  861. .free_layout_hdr = bl_free_layout_hdr,
  862. .alloc_lseg = bl_alloc_lseg,
  863. .free_lseg = bl_free_lseg,
  864. .return_range = bl_return_range,
  865. .prepare_layoutcommit = bl_prepare_layoutcommit,
  866. .cleanup_layoutcommit = bl_cleanup_layoutcommit,
  867. .set_layoutdriver = bl_set_layoutdriver,
  868. .alloc_deviceid_node = bl_alloc_deviceid_node,
  869. .free_deviceid_node = bl_free_deviceid_node,
  870. .pg_read_ops = &bl_pg_read_ops,
  871. .pg_write_ops = &bl_pg_write_ops,
  872. .sync = pnfs_generic_sync,
  873. };
  874. static int __init nfs4blocklayout_init(void)
  875. {
  876. int ret;
  877. dprintk("%s: NFSv4 Block Layout Driver Registering...\n", __func__);
  878. ret = bl_init_pipefs();
  879. if (ret)
  880. goto out;
  881. ret = pnfs_register_layoutdriver(&blocklayout_type);
  882. if (ret)
  883. goto out_cleanup_pipe;
  884. ret = pnfs_register_layoutdriver(&scsilayout_type);
  885. if (ret)
  886. goto out_unregister_block;
  887. return 0;
  888. out_unregister_block:
  889. pnfs_unregister_layoutdriver(&blocklayout_type);
  890. out_cleanup_pipe:
  891. bl_cleanup_pipefs();
  892. out:
  893. return ret;
  894. }
  895. static void __exit nfs4blocklayout_exit(void)
  896. {
  897. dprintk("%s: NFSv4 Block Layout Driver Unregistering...\n",
  898. __func__);
  899. pnfs_unregister_layoutdriver(&scsilayout_type);
  900. pnfs_unregister_layoutdriver(&blocklayout_type);
  901. bl_cleanup_pipefs();
  902. }
  903. MODULE_ALIAS("nfs-layouttype4-3");
  904. MODULE_ALIAS("nfs-layouttype4-5");
  905. module_init(nfs4blocklayout_init);
  906. module_exit(nfs4blocklayout_exit);