page_io.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * linux/mm/page_io.c
  4. *
  5. * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
  6. *
  7. * Swap reorganised 29.12.95,
  8. * Asynchronous swapping added 30.12.95. Stephen Tweedie
  9. * Removed race in async swapping. 14.4.1996. Bruno Haible
  10. * Add swap of shared pages through the page cache. 20.2.1998. Stephen Tweedie
  11. * Always use brw_page, life becomes simpler. 12 May 1998 Eric Biederman
  12. */
  13. #include <linux/mm.h>
  14. #include <linux/kernel_stat.h>
  15. #include <linux/gfp.h>
  16. #include <linux/pagemap.h>
  17. #include <linux/swap.h>
  18. #include <linux/bio.h>
  19. #include <linux/swapops.h>
  20. #include <linux/buffer_head.h>
  21. #include <linux/writeback.h>
  22. #include <linux/frontswap.h>
  23. #include <linux/blkdev.h>
  24. #include <linux/uio.h>
  25. #include <linux/sched/task.h>
  26. #include <asm/pgtable.h>
  27. static struct bio *get_swap_bio(gfp_t gfp_flags,
  28. struct page *page, bio_end_io_t end_io)
  29. {
  30. int i, nr = hpage_nr_pages(page);
  31. struct bio *bio;
  32. bio = bio_alloc(gfp_flags, nr);
  33. if (bio) {
  34. struct block_device *bdev;
  35. bio->bi_iter.bi_sector = map_swap_page(page, &bdev);
  36. bio_set_dev(bio, bdev);
  37. bio->bi_end_io = end_io;
  38. for (i = 0; i < nr; i++)
  39. bio_add_page(bio, page + i, PAGE_SIZE, 0);
  40. VM_BUG_ON(bio->bi_iter.bi_size != PAGE_SIZE * nr);
  41. }
  42. return bio;
  43. }
  44. void end_swap_bio_write(struct bio *bio)
  45. {
  46. struct page *page = bio_first_page_all(bio);
  47. if (bio->bi_status) {
  48. SetPageError(page);
  49. /*
  50. * We failed to write the page out to swap-space.
  51. * Re-dirty the page in order to avoid it being reclaimed.
  52. * Also print a dire warning that things will go BAD (tm)
  53. * very quickly.
  54. *
  55. * Also clear PG_reclaim to avoid rotate_reclaimable_page()
  56. */
  57. set_page_dirty(page);
  58. pr_alert("Write-error on swap-device (%u:%u:%llu)\n",
  59. MAJOR(bio_dev(bio)), MINOR(bio_dev(bio)),
  60. (unsigned long long)bio->bi_iter.bi_sector);
  61. ClearPageReclaim(page);
  62. }
  63. end_page_writeback(page);
  64. bio_put(bio);
  65. }
  66. static void swap_slot_free_notify(struct page *page)
  67. {
  68. struct swap_info_struct *sis;
  69. struct gendisk *disk;
  70. swp_entry_t entry;
  71. /*
  72. * There is no guarantee that the page is in swap cache - the software
  73. * suspend code (at least) uses end_swap_bio_read() against a non-
  74. * swapcache page. So we must check PG_swapcache before proceeding with
  75. * this optimization.
  76. */
  77. if (unlikely(!PageSwapCache(page)))
  78. return;
  79. sis = page_swap_info(page);
  80. if (!(sis->flags & SWP_BLKDEV))
  81. return;
  82. /*
  83. * The swap subsystem performs lazy swap slot freeing,
  84. * expecting that the page will be swapped out again.
  85. * So we can avoid an unnecessary write if the page
  86. * isn't redirtied.
  87. * This is good for real swap storage because we can
  88. * reduce unnecessary I/O and enhance wear-leveling
  89. * if an SSD is used as the as swap device.
  90. * But if in-memory swap device (eg zram) is used,
  91. * this causes a duplicated copy between uncompressed
  92. * data in VM-owned memory and compressed data in
  93. * zram-owned memory. So let's free zram-owned memory
  94. * and make the VM-owned decompressed page *dirty*,
  95. * so the page should be swapped out somewhere again if
  96. * we again wish to reclaim it.
  97. */
  98. disk = sis->bdev->bd_disk;
  99. entry.val = page_private(page);
  100. if (disk->fops->swap_slot_free_notify &&
  101. __swap_count(sis, entry) == 1) {
  102. unsigned long offset;
  103. offset = swp_offset(entry);
  104. SetPageDirty(page);
  105. disk->fops->swap_slot_free_notify(sis->bdev,
  106. offset);
  107. }
  108. }
  109. static void end_swap_bio_read(struct bio *bio)
  110. {
  111. struct page *page = bio_first_page_all(bio);
  112. struct task_struct *waiter = bio->bi_private;
  113. if (bio->bi_status) {
  114. SetPageError(page);
  115. ClearPageUptodate(page);
  116. pr_alert("Read-error on swap-device (%u:%u:%llu)\n",
  117. MAJOR(bio_dev(bio)), MINOR(bio_dev(bio)),
  118. (unsigned long long)bio->bi_iter.bi_sector);
  119. goto out;
  120. }
  121. SetPageUptodate(page);
  122. swap_slot_free_notify(page);
  123. out:
  124. unlock_page(page);
  125. WRITE_ONCE(bio->bi_private, NULL);
  126. bio_put(bio);
  127. wake_up_process(waiter);
  128. put_task_struct(waiter);
  129. }
  130. int generic_swapfile_activate(struct swap_info_struct *sis,
  131. struct file *swap_file,
  132. sector_t *span)
  133. {
  134. struct address_space *mapping = swap_file->f_mapping;
  135. struct inode *inode = mapping->host;
  136. unsigned blocks_per_page;
  137. unsigned long page_no;
  138. unsigned blkbits;
  139. sector_t probe_block;
  140. sector_t last_block;
  141. sector_t lowest_block = -1;
  142. sector_t highest_block = 0;
  143. int nr_extents = 0;
  144. int ret;
  145. blkbits = inode->i_blkbits;
  146. blocks_per_page = PAGE_SIZE >> blkbits;
  147. /*
  148. * Map all the blocks into the extent list. This code doesn't try
  149. * to be very smart.
  150. */
  151. probe_block = 0;
  152. page_no = 0;
  153. last_block = i_size_read(inode) >> blkbits;
  154. while ((probe_block + blocks_per_page) <= last_block &&
  155. page_no < sis->max) {
  156. unsigned block_in_page;
  157. sector_t first_block;
  158. cond_resched();
  159. first_block = bmap(inode, probe_block);
  160. if (first_block == 0)
  161. goto bad_bmap;
  162. /*
  163. * It must be PAGE_SIZE aligned on-disk
  164. */
  165. if (first_block & (blocks_per_page - 1)) {
  166. probe_block++;
  167. goto reprobe;
  168. }
  169. for (block_in_page = 1; block_in_page < blocks_per_page;
  170. block_in_page++) {
  171. sector_t block;
  172. block = bmap(inode, probe_block + block_in_page);
  173. if (block == 0)
  174. goto bad_bmap;
  175. if (block != first_block + block_in_page) {
  176. /* Discontiguity */
  177. probe_block++;
  178. goto reprobe;
  179. }
  180. }
  181. first_block >>= (PAGE_SHIFT - blkbits);
  182. if (page_no) { /* exclude the header page */
  183. if (first_block < lowest_block)
  184. lowest_block = first_block;
  185. if (first_block > highest_block)
  186. highest_block = first_block;
  187. }
  188. /*
  189. * We found a PAGE_SIZE-length, PAGE_SIZE-aligned run of blocks
  190. */
  191. ret = add_swap_extent(sis, page_no, 1, first_block);
  192. if (ret < 0)
  193. goto out;
  194. nr_extents += ret;
  195. page_no++;
  196. probe_block += blocks_per_page;
  197. reprobe:
  198. continue;
  199. }
  200. ret = nr_extents;
  201. *span = 1 + highest_block - lowest_block;
  202. if (page_no == 0)
  203. page_no = 1; /* force Empty message */
  204. sis->max = page_no;
  205. sis->pages = page_no - 1;
  206. sis->highest_bit = page_no - 1;
  207. out:
  208. return ret;
  209. bad_bmap:
  210. pr_err("swapon: swapfile has holes\n");
  211. ret = -EINVAL;
  212. goto out;
  213. }
  214. /*
  215. * We may have stale swap cache pages in memory: notice
  216. * them here and get rid of the unnecessary final write.
  217. */
  218. int swap_writepage(struct page *page, struct writeback_control *wbc)
  219. {
  220. int ret = 0;
  221. if (try_to_free_swap(page)) {
  222. unlock_page(page);
  223. goto out;
  224. }
  225. if (frontswap_store(page) == 0) {
  226. set_page_writeback(page);
  227. unlock_page(page);
  228. end_page_writeback(page);
  229. goto out;
  230. }
  231. ret = __swap_writepage(page, wbc, end_swap_bio_write);
  232. out:
  233. return ret;
  234. }
  235. static inline void count_swpout_vm_event(struct page *page)
  236. {
  237. #ifdef CONFIG_TRANSPARENT_HUGEPAGE
  238. if (unlikely(PageTransHuge(page)))
  239. count_vm_event(THP_SWPOUT);
  240. #endif
  241. count_vm_events(PSWPOUT, hpage_nr_pages(page));
  242. }
  243. int __swap_writepage(struct page *page, struct writeback_control *wbc,
  244. bio_end_io_t end_write_func)
  245. {
  246. struct bio *bio;
  247. int ret;
  248. struct swap_info_struct *sis = page_swap_info(page);
  249. VM_BUG_ON_PAGE(!PageSwapCache(page), page);
  250. if (sis->flags & SWP_FILE) {
  251. struct kiocb kiocb;
  252. struct file *swap_file = sis->swap_file;
  253. struct address_space *mapping = swap_file->f_mapping;
  254. struct bio_vec bv = {
  255. .bv_page = page,
  256. .bv_len = PAGE_SIZE,
  257. .bv_offset = 0
  258. };
  259. struct iov_iter from;
  260. iov_iter_bvec(&from, ITER_BVEC | WRITE, &bv, 1, PAGE_SIZE);
  261. init_sync_kiocb(&kiocb, swap_file);
  262. kiocb.ki_pos = page_file_offset(page);
  263. set_page_writeback(page);
  264. unlock_page(page);
  265. ret = mapping->a_ops->direct_IO(&kiocb, &from);
  266. if (ret == PAGE_SIZE) {
  267. count_vm_event(PSWPOUT);
  268. ret = 0;
  269. } else {
  270. /*
  271. * In the case of swap-over-nfs, this can be a
  272. * temporary failure if the system has limited
  273. * memory for allocating transmit buffers.
  274. * Mark the page dirty and avoid
  275. * rotate_reclaimable_page but rate-limit the
  276. * messages but do not flag PageError like
  277. * the normal direct-to-bio case as it could
  278. * be temporary.
  279. */
  280. set_page_dirty(page);
  281. ClearPageReclaim(page);
  282. pr_err_ratelimited("Write error on dio swapfile (%llu)\n",
  283. page_file_offset(page));
  284. }
  285. end_page_writeback(page);
  286. return ret;
  287. }
  288. ret = bdev_write_page(sis->bdev, map_swap_page(page, &sis->bdev),
  289. page, wbc);
  290. if (!ret) {
  291. count_swpout_vm_event(page);
  292. return 0;
  293. }
  294. ret = 0;
  295. bio = get_swap_bio(GFP_NOIO, page, end_write_func);
  296. if (bio == NULL) {
  297. set_page_dirty(page);
  298. unlock_page(page);
  299. ret = -ENOMEM;
  300. goto out;
  301. }
  302. bio->bi_opf = REQ_OP_WRITE | REQ_SWAP | wbc_to_write_flags(wbc);
  303. bio_associate_blkcg_from_page(bio, page);
  304. count_swpout_vm_event(page);
  305. set_page_writeback(page);
  306. unlock_page(page);
  307. submit_bio(bio);
  308. out:
  309. return ret;
  310. }
  311. int swap_readpage(struct page *page, bool synchronous)
  312. {
  313. struct bio *bio;
  314. int ret = 0;
  315. struct swap_info_struct *sis = page_swap_info(page);
  316. blk_qc_t qc;
  317. struct gendisk *disk;
  318. VM_BUG_ON_PAGE(!PageSwapCache(page) && !synchronous, page);
  319. VM_BUG_ON_PAGE(!PageLocked(page), page);
  320. VM_BUG_ON_PAGE(PageUptodate(page), page);
  321. if (frontswap_load(page) == 0) {
  322. SetPageUptodate(page);
  323. unlock_page(page);
  324. goto out;
  325. }
  326. if (sis->flags & SWP_FILE) {
  327. struct file *swap_file = sis->swap_file;
  328. struct address_space *mapping = swap_file->f_mapping;
  329. ret = mapping->a_ops->readpage(swap_file, page);
  330. if (!ret)
  331. count_vm_event(PSWPIN);
  332. return ret;
  333. }
  334. ret = bdev_read_page(sis->bdev, map_swap_page(page, &sis->bdev), page);
  335. if (!ret) {
  336. if (trylock_page(page)) {
  337. swap_slot_free_notify(page);
  338. unlock_page(page);
  339. }
  340. count_vm_event(PSWPIN);
  341. return 0;
  342. }
  343. ret = 0;
  344. bio = get_swap_bio(GFP_KERNEL, page, end_swap_bio_read);
  345. if (bio == NULL) {
  346. unlock_page(page);
  347. ret = -ENOMEM;
  348. goto out;
  349. }
  350. disk = bio->bi_disk;
  351. /*
  352. * Keep this task valid during swap readpage because the oom killer may
  353. * attempt to access it in the page fault retry time check.
  354. */
  355. get_task_struct(current);
  356. bio->bi_private = current;
  357. bio_set_op_attrs(bio, REQ_OP_READ, 0);
  358. count_vm_event(PSWPIN);
  359. bio_get(bio);
  360. qc = submit_bio(bio);
  361. while (synchronous) {
  362. set_current_state(TASK_UNINTERRUPTIBLE);
  363. if (!READ_ONCE(bio->bi_private))
  364. break;
  365. if (!blk_poll(disk->queue, qc))
  366. break;
  367. }
  368. __set_current_state(TASK_RUNNING);
  369. bio_put(bio);
  370. out:
  371. return ret;
  372. }
  373. int swap_set_page_dirty(struct page *page)
  374. {
  375. struct swap_info_struct *sis = page_swap_info(page);
  376. if (sis->flags & SWP_FILE) {
  377. struct address_space *mapping = sis->swap_file->f_mapping;
  378. VM_BUG_ON_PAGE(!PageSwapCache(page), page);
  379. return mapping->a_ops->set_page_dirty(page);
  380. } else {
  381. return __set_page_dirty_no_writeback(page);
  382. }
  383. }