rmap.c 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717
  1. /*
  2. * mm/rmap.c - physical to virtual reverse mappings
  3. *
  4. * Copyright 2001, Rik van Riel <riel@conectiva.com.br>
  5. * Released under the General Public License (GPL).
  6. *
  7. * Simple, low overhead reverse mapping scheme.
  8. * Please try to keep this thing as modular as possible.
  9. *
  10. * Provides methods for unmapping each kind of mapped page:
  11. * the anon methods track anonymous pages, and
  12. * the file methods track pages belonging to an inode.
  13. *
  14. * Original design by Rik van Riel <riel@conectiva.com.br> 2001
  15. * File methods by Dave McCracken <dmccr@us.ibm.com> 2003, 2004
  16. * Anonymous methods by Andrea Arcangeli <andrea@suse.de> 2004
  17. * Contributions by Hugh Dickins 2003, 2004
  18. */
  19. /*
  20. * Lock ordering in mm:
  21. *
  22. * inode->i_mutex (while writing or truncating, not reading or faulting)
  23. * mm->mmap_sem
  24. * page->flags PG_locked (lock_page)
  25. * mapping->i_mmap_rwsem
  26. * anon_vma->rwsem
  27. * mm->page_table_lock or pte_lock
  28. * zone->lru_lock (in mark_page_accessed, isolate_lru_page)
  29. * swap_lock (in swap_duplicate, swap_info_get)
  30. * mmlist_lock (in mmput, drain_mmlist and others)
  31. * mapping->private_lock (in __set_page_dirty_buffers)
  32. * mem_cgroup_{begin,end}_page_stat (memcg->move_lock)
  33. * mapping->tree_lock (widely used)
  34. * inode->i_lock (in set_page_dirty's __mark_inode_dirty)
  35. * bdi.wb->list_lock (in set_page_dirty's __mark_inode_dirty)
  36. * sb_lock (within inode_lock in fs/fs-writeback.c)
  37. * mapping->tree_lock (widely used, in set_page_dirty,
  38. * in arch-dependent flush_dcache_mmap_lock,
  39. * within bdi.wb->list_lock in __sync_single_inode)
  40. *
  41. * anon_vma->rwsem,mapping->i_mutex (memory_failure, collect_procs_anon)
  42. * ->tasklist_lock
  43. * pte map lock
  44. */
  45. #include <linux/mm.h>
  46. #include <linux/pagemap.h>
  47. #include <linux/swap.h>
  48. #include <linux/swapops.h>
  49. #include <linux/slab.h>
  50. #include <linux/init.h>
  51. #include <linux/ksm.h>
  52. #include <linux/rmap.h>
  53. #include <linux/rcupdate.h>
  54. #include <linux/export.h>
  55. #include <linux/memcontrol.h>
  56. #include <linux/mmu_notifier.h>
  57. #include <linux/migrate.h>
  58. #include <linux/hugetlb.h>
  59. #include <linux/backing-dev.h>
  60. #include <linux/page_idle.h>
  61. #include <asm/tlbflush.h>
  62. #include <trace/events/tlb.h>
  63. #include "internal.h"
  64. static struct kmem_cache *anon_vma_cachep;
  65. static struct kmem_cache *anon_vma_chain_cachep;
  66. static inline struct anon_vma *anon_vma_alloc(void)
  67. {
  68. struct anon_vma *anon_vma;
  69. anon_vma = kmem_cache_alloc(anon_vma_cachep, GFP_KERNEL);
  70. if (anon_vma) {
  71. atomic_set(&anon_vma->refcount, 1);
  72. anon_vma->degree = 1; /* Reference for first vma */
  73. anon_vma->parent = anon_vma;
  74. /*
  75. * Initialise the anon_vma root to point to itself. If called
  76. * from fork, the root will be reset to the parents anon_vma.
  77. */
  78. anon_vma->root = anon_vma;
  79. }
  80. return anon_vma;
  81. }
  82. static inline void anon_vma_free(struct anon_vma *anon_vma)
  83. {
  84. VM_BUG_ON(atomic_read(&anon_vma->refcount));
  85. /*
  86. * Synchronize against page_lock_anon_vma_read() such that
  87. * we can safely hold the lock without the anon_vma getting
  88. * freed.
  89. *
  90. * Relies on the full mb implied by the atomic_dec_and_test() from
  91. * put_anon_vma() against the acquire barrier implied by
  92. * down_read_trylock() from page_lock_anon_vma_read(). This orders:
  93. *
  94. * page_lock_anon_vma_read() VS put_anon_vma()
  95. * down_read_trylock() atomic_dec_and_test()
  96. * LOCK MB
  97. * atomic_read() rwsem_is_locked()
  98. *
  99. * LOCK should suffice since the actual taking of the lock must
  100. * happen _before_ what follows.
  101. */
  102. might_sleep();
  103. if (rwsem_is_locked(&anon_vma->root->rwsem)) {
  104. anon_vma_lock_write(anon_vma);
  105. anon_vma_unlock_write(anon_vma);
  106. }
  107. kmem_cache_free(anon_vma_cachep, anon_vma);
  108. }
  109. static inline struct anon_vma_chain *anon_vma_chain_alloc(gfp_t gfp)
  110. {
  111. return kmem_cache_alloc(anon_vma_chain_cachep, gfp);
  112. }
  113. static void anon_vma_chain_free(struct anon_vma_chain *anon_vma_chain)
  114. {
  115. kmem_cache_free(anon_vma_chain_cachep, anon_vma_chain);
  116. }
  117. static void anon_vma_chain_link(struct vm_area_struct *vma,
  118. struct anon_vma_chain *avc,
  119. struct anon_vma *anon_vma)
  120. {
  121. avc->vma = vma;
  122. avc->anon_vma = anon_vma;
  123. list_add(&avc->same_vma, &vma->anon_vma_chain);
  124. anon_vma_interval_tree_insert(avc, &anon_vma->rb_root);
  125. }
  126. /**
  127. * anon_vma_prepare - attach an anon_vma to a memory region
  128. * @vma: the memory region in question
  129. *
  130. * This makes sure the memory mapping described by 'vma' has
  131. * an 'anon_vma' attached to it, so that we can associate the
  132. * anonymous pages mapped into it with that anon_vma.
  133. *
  134. * The common case will be that we already have one, but if
  135. * not we either need to find an adjacent mapping that we
  136. * can re-use the anon_vma from (very common when the only
  137. * reason for splitting a vma has been mprotect()), or we
  138. * allocate a new one.
  139. *
  140. * Anon-vma allocations are very subtle, because we may have
  141. * optimistically looked up an anon_vma in page_lock_anon_vma_read()
  142. * and that may actually touch the spinlock even in the newly
  143. * allocated vma (it depends on RCU to make sure that the
  144. * anon_vma isn't actually destroyed).
  145. *
  146. * As a result, we need to do proper anon_vma locking even
  147. * for the new allocation. At the same time, we do not want
  148. * to do any locking for the common case of already having
  149. * an anon_vma.
  150. *
  151. * This must be called with the mmap_sem held for reading.
  152. */
  153. int anon_vma_prepare(struct vm_area_struct *vma)
  154. {
  155. struct anon_vma *anon_vma = vma->anon_vma;
  156. struct anon_vma_chain *avc;
  157. might_sleep();
  158. if (unlikely(!anon_vma)) {
  159. struct mm_struct *mm = vma->vm_mm;
  160. struct anon_vma *allocated;
  161. avc = anon_vma_chain_alloc(GFP_KERNEL);
  162. if (!avc)
  163. goto out_enomem;
  164. anon_vma = find_mergeable_anon_vma(vma);
  165. allocated = NULL;
  166. if (!anon_vma) {
  167. anon_vma = anon_vma_alloc();
  168. if (unlikely(!anon_vma))
  169. goto out_enomem_free_avc;
  170. allocated = anon_vma;
  171. }
  172. anon_vma_lock_write(anon_vma);
  173. /* page_table_lock to protect against threads */
  174. spin_lock(&mm->page_table_lock);
  175. if (likely(!vma->anon_vma)) {
  176. vma->anon_vma = anon_vma;
  177. anon_vma_chain_link(vma, avc, anon_vma);
  178. /* vma reference or self-parent link for new root */
  179. anon_vma->degree++;
  180. allocated = NULL;
  181. avc = NULL;
  182. }
  183. spin_unlock(&mm->page_table_lock);
  184. anon_vma_unlock_write(anon_vma);
  185. if (unlikely(allocated))
  186. put_anon_vma(allocated);
  187. if (unlikely(avc))
  188. anon_vma_chain_free(avc);
  189. }
  190. return 0;
  191. out_enomem_free_avc:
  192. anon_vma_chain_free(avc);
  193. out_enomem:
  194. return -ENOMEM;
  195. }
  196. /*
  197. * This is a useful helper function for locking the anon_vma root as
  198. * we traverse the vma->anon_vma_chain, looping over anon_vma's that
  199. * have the same vma.
  200. *
  201. * Such anon_vma's should have the same root, so you'd expect to see
  202. * just a single mutex_lock for the whole traversal.
  203. */
  204. static inline struct anon_vma *lock_anon_vma_root(struct anon_vma *root, struct anon_vma *anon_vma)
  205. {
  206. struct anon_vma *new_root = anon_vma->root;
  207. if (new_root != root) {
  208. if (WARN_ON_ONCE(root))
  209. up_write(&root->rwsem);
  210. root = new_root;
  211. down_write(&root->rwsem);
  212. }
  213. return root;
  214. }
  215. static inline void unlock_anon_vma_root(struct anon_vma *root)
  216. {
  217. if (root)
  218. up_write(&root->rwsem);
  219. }
  220. /*
  221. * Attach the anon_vmas from src to dst.
  222. * Returns 0 on success, -ENOMEM on failure.
  223. *
  224. * If dst->anon_vma is NULL this function tries to find and reuse existing
  225. * anon_vma which has no vmas and only one child anon_vma. This prevents
  226. * degradation of anon_vma hierarchy to endless linear chain in case of
  227. * constantly forking task. On the other hand, an anon_vma with more than one
  228. * child isn't reused even if there was no alive vma, thus rmap walker has a
  229. * good chance of avoiding scanning the whole hierarchy when it searches where
  230. * page is mapped.
  231. */
  232. int anon_vma_clone(struct vm_area_struct *dst, struct vm_area_struct *src)
  233. {
  234. struct anon_vma_chain *avc, *pavc;
  235. struct anon_vma *root = NULL;
  236. list_for_each_entry_reverse(pavc, &src->anon_vma_chain, same_vma) {
  237. struct anon_vma *anon_vma;
  238. avc = anon_vma_chain_alloc(GFP_NOWAIT | __GFP_NOWARN);
  239. if (unlikely(!avc)) {
  240. unlock_anon_vma_root(root);
  241. root = NULL;
  242. avc = anon_vma_chain_alloc(GFP_KERNEL);
  243. if (!avc)
  244. goto enomem_failure;
  245. }
  246. anon_vma = pavc->anon_vma;
  247. root = lock_anon_vma_root(root, anon_vma);
  248. anon_vma_chain_link(dst, avc, anon_vma);
  249. /*
  250. * Reuse existing anon_vma if its degree lower than two,
  251. * that means it has no vma and only one anon_vma child.
  252. *
  253. * Do not chose parent anon_vma, otherwise first child
  254. * will always reuse it. Root anon_vma is never reused:
  255. * it has self-parent reference and at least one child.
  256. */
  257. if (!dst->anon_vma && anon_vma != src->anon_vma &&
  258. anon_vma->degree < 2)
  259. dst->anon_vma = anon_vma;
  260. }
  261. if (dst->anon_vma)
  262. dst->anon_vma->degree++;
  263. unlock_anon_vma_root(root);
  264. return 0;
  265. enomem_failure:
  266. /*
  267. * dst->anon_vma is dropped here otherwise its degree can be incorrectly
  268. * decremented in unlink_anon_vmas().
  269. * We can safely do this because callers of anon_vma_clone() don't care
  270. * about dst->anon_vma if anon_vma_clone() failed.
  271. */
  272. dst->anon_vma = NULL;
  273. unlink_anon_vmas(dst);
  274. return -ENOMEM;
  275. }
  276. /*
  277. * Attach vma to its own anon_vma, as well as to the anon_vmas that
  278. * the corresponding VMA in the parent process is attached to.
  279. * Returns 0 on success, non-zero on failure.
  280. */
  281. int anon_vma_fork(struct vm_area_struct *vma, struct vm_area_struct *pvma)
  282. {
  283. struct anon_vma_chain *avc;
  284. struct anon_vma *anon_vma;
  285. int error;
  286. /* Don't bother if the parent process has no anon_vma here. */
  287. if (!pvma->anon_vma)
  288. return 0;
  289. /* Drop inherited anon_vma, we'll reuse existing or allocate new. */
  290. vma->anon_vma = NULL;
  291. /*
  292. * First, attach the new VMA to the parent VMA's anon_vmas,
  293. * so rmap can find non-COWed pages in child processes.
  294. */
  295. error = anon_vma_clone(vma, pvma);
  296. if (error)
  297. return error;
  298. /* An existing anon_vma has been reused, all done then. */
  299. if (vma->anon_vma)
  300. return 0;
  301. /* Then add our own anon_vma. */
  302. anon_vma = anon_vma_alloc();
  303. if (!anon_vma)
  304. goto out_error;
  305. avc = anon_vma_chain_alloc(GFP_KERNEL);
  306. if (!avc)
  307. goto out_error_free_anon_vma;
  308. /*
  309. * The root anon_vma's spinlock is the lock actually used when we
  310. * lock any of the anon_vmas in this anon_vma tree.
  311. */
  312. anon_vma->root = pvma->anon_vma->root;
  313. anon_vma->parent = pvma->anon_vma;
  314. /*
  315. * With refcounts, an anon_vma can stay around longer than the
  316. * process it belongs to. The root anon_vma needs to be pinned until
  317. * this anon_vma is freed, because the lock lives in the root.
  318. */
  319. get_anon_vma(anon_vma->root);
  320. /* Mark this anon_vma as the one where our new (COWed) pages go. */
  321. vma->anon_vma = anon_vma;
  322. anon_vma_lock_write(anon_vma);
  323. anon_vma_chain_link(vma, avc, anon_vma);
  324. anon_vma->parent->degree++;
  325. anon_vma_unlock_write(anon_vma);
  326. return 0;
  327. out_error_free_anon_vma:
  328. put_anon_vma(anon_vma);
  329. out_error:
  330. unlink_anon_vmas(vma);
  331. return -ENOMEM;
  332. }
  333. void unlink_anon_vmas(struct vm_area_struct *vma)
  334. {
  335. struct anon_vma_chain *avc, *next;
  336. struct anon_vma *root = NULL;
  337. /*
  338. * Unlink each anon_vma chained to the VMA. This list is ordered
  339. * from newest to oldest, ensuring the root anon_vma gets freed last.
  340. */
  341. list_for_each_entry_safe(avc, next, &vma->anon_vma_chain, same_vma) {
  342. struct anon_vma *anon_vma = avc->anon_vma;
  343. root = lock_anon_vma_root(root, anon_vma);
  344. anon_vma_interval_tree_remove(avc, &anon_vma->rb_root);
  345. /*
  346. * Leave empty anon_vmas on the list - we'll need
  347. * to free them outside the lock.
  348. */
  349. if (RB_EMPTY_ROOT(&anon_vma->rb_root)) {
  350. anon_vma->parent->degree--;
  351. continue;
  352. }
  353. list_del(&avc->same_vma);
  354. anon_vma_chain_free(avc);
  355. }
  356. if (vma->anon_vma)
  357. vma->anon_vma->degree--;
  358. unlock_anon_vma_root(root);
  359. /*
  360. * Iterate the list once more, it now only contains empty and unlinked
  361. * anon_vmas, destroy them. Could not do before due to __put_anon_vma()
  362. * needing to write-acquire the anon_vma->root->rwsem.
  363. */
  364. list_for_each_entry_safe(avc, next, &vma->anon_vma_chain, same_vma) {
  365. struct anon_vma *anon_vma = avc->anon_vma;
  366. BUG_ON(anon_vma->degree);
  367. put_anon_vma(anon_vma);
  368. list_del(&avc->same_vma);
  369. anon_vma_chain_free(avc);
  370. }
  371. }
  372. static void anon_vma_ctor(void *data)
  373. {
  374. struct anon_vma *anon_vma = data;
  375. init_rwsem(&anon_vma->rwsem);
  376. atomic_set(&anon_vma->refcount, 0);
  377. anon_vma->rb_root = RB_ROOT;
  378. }
  379. void __init anon_vma_init(void)
  380. {
  381. anon_vma_cachep = kmem_cache_create("anon_vma", sizeof(struct anon_vma),
  382. 0, SLAB_DESTROY_BY_RCU|SLAB_PANIC, anon_vma_ctor);
  383. anon_vma_chain_cachep = KMEM_CACHE(anon_vma_chain, SLAB_PANIC);
  384. }
  385. /*
  386. * Getting a lock on a stable anon_vma from a page off the LRU is tricky!
  387. *
  388. * Since there is no serialization what so ever against page_remove_rmap()
  389. * the best this function can do is return a locked anon_vma that might
  390. * have been relevant to this page.
  391. *
  392. * The page might have been remapped to a different anon_vma or the anon_vma
  393. * returned may already be freed (and even reused).
  394. *
  395. * In case it was remapped to a different anon_vma, the new anon_vma will be a
  396. * child of the old anon_vma, and the anon_vma lifetime rules will therefore
  397. * ensure that any anon_vma obtained from the page will still be valid for as
  398. * long as we observe page_mapped() [ hence all those page_mapped() tests ].
  399. *
  400. * All users of this function must be very careful when walking the anon_vma
  401. * chain and verify that the page in question is indeed mapped in it
  402. * [ something equivalent to page_mapped_in_vma() ].
  403. *
  404. * Since anon_vma's slab is DESTROY_BY_RCU and we know from page_remove_rmap()
  405. * that the anon_vma pointer from page->mapping is valid if there is a
  406. * mapcount, we can dereference the anon_vma after observing those.
  407. */
  408. struct anon_vma *page_get_anon_vma(struct page *page)
  409. {
  410. struct anon_vma *anon_vma = NULL;
  411. unsigned long anon_mapping;
  412. rcu_read_lock();
  413. anon_mapping = (unsigned long)READ_ONCE(page->mapping);
  414. if ((anon_mapping & PAGE_MAPPING_FLAGS) != PAGE_MAPPING_ANON)
  415. goto out;
  416. if (!page_mapped(page))
  417. goto out;
  418. anon_vma = (struct anon_vma *) (anon_mapping - PAGE_MAPPING_ANON);
  419. if (!atomic_inc_not_zero(&anon_vma->refcount)) {
  420. anon_vma = NULL;
  421. goto out;
  422. }
  423. /*
  424. * If this page is still mapped, then its anon_vma cannot have been
  425. * freed. But if it has been unmapped, we have no security against the
  426. * anon_vma structure being freed and reused (for another anon_vma:
  427. * SLAB_DESTROY_BY_RCU guarantees that - so the atomic_inc_not_zero()
  428. * above cannot corrupt).
  429. */
  430. if (!page_mapped(page)) {
  431. rcu_read_unlock();
  432. put_anon_vma(anon_vma);
  433. return NULL;
  434. }
  435. out:
  436. rcu_read_unlock();
  437. return anon_vma;
  438. }
  439. /*
  440. * Similar to page_get_anon_vma() except it locks the anon_vma.
  441. *
  442. * Its a little more complex as it tries to keep the fast path to a single
  443. * atomic op -- the trylock. If we fail the trylock, we fall back to getting a
  444. * reference like with page_get_anon_vma() and then block on the mutex.
  445. */
  446. struct anon_vma *page_lock_anon_vma_read(struct page *page)
  447. {
  448. struct anon_vma *anon_vma = NULL;
  449. struct anon_vma *root_anon_vma;
  450. unsigned long anon_mapping;
  451. rcu_read_lock();
  452. anon_mapping = (unsigned long)READ_ONCE(page->mapping);
  453. if ((anon_mapping & PAGE_MAPPING_FLAGS) != PAGE_MAPPING_ANON)
  454. goto out;
  455. if (!page_mapped(page))
  456. goto out;
  457. anon_vma = (struct anon_vma *) (anon_mapping - PAGE_MAPPING_ANON);
  458. root_anon_vma = READ_ONCE(anon_vma->root);
  459. if (down_read_trylock(&root_anon_vma->rwsem)) {
  460. /*
  461. * If the page is still mapped, then this anon_vma is still
  462. * its anon_vma, and holding the mutex ensures that it will
  463. * not go away, see anon_vma_free().
  464. */
  465. if (!page_mapped(page)) {
  466. up_read(&root_anon_vma->rwsem);
  467. anon_vma = NULL;
  468. }
  469. goto out;
  470. }
  471. /* trylock failed, we got to sleep */
  472. if (!atomic_inc_not_zero(&anon_vma->refcount)) {
  473. anon_vma = NULL;
  474. goto out;
  475. }
  476. if (!page_mapped(page)) {
  477. rcu_read_unlock();
  478. put_anon_vma(anon_vma);
  479. return NULL;
  480. }
  481. /* we pinned the anon_vma, its safe to sleep */
  482. rcu_read_unlock();
  483. anon_vma_lock_read(anon_vma);
  484. if (atomic_dec_and_test(&anon_vma->refcount)) {
  485. /*
  486. * Oops, we held the last refcount, release the lock
  487. * and bail -- can't simply use put_anon_vma() because
  488. * we'll deadlock on the anon_vma_lock_write() recursion.
  489. */
  490. anon_vma_unlock_read(anon_vma);
  491. __put_anon_vma(anon_vma);
  492. anon_vma = NULL;
  493. }
  494. return anon_vma;
  495. out:
  496. rcu_read_unlock();
  497. return anon_vma;
  498. }
  499. void page_unlock_anon_vma_read(struct anon_vma *anon_vma)
  500. {
  501. anon_vma_unlock_read(anon_vma);
  502. }
  503. /*
  504. * At what user virtual address is page expected in @vma?
  505. */
  506. static inline unsigned long
  507. __vma_address(struct page *page, struct vm_area_struct *vma)
  508. {
  509. pgoff_t pgoff = page_to_pgoff(page);
  510. return vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
  511. }
  512. inline unsigned long
  513. vma_address(struct page *page, struct vm_area_struct *vma)
  514. {
  515. unsigned long address = __vma_address(page, vma);
  516. /* page should be within @vma mapping range */
  517. VM_BUG_ON_VMA(address < vma->vm_start || address >= vma->vm_end, vma);
  518. return address;
  519. }
  520. #ifdef CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH
  521. static void percpu_flush_tlb_batch_pages(void *data)
  522. {
  523. /*
  524. * All TLB entries are flushed on the assumption that it is
  525. * cheaper to flush all TLBs and let them be refilled than
  526. * flushing individual PFNs. Note that we do not track mm's
  527. * to flush as that might simply be multiple full TLB flushes
  528. * for no gain.
  529. */
  530. count_vm_tlb_event(NR_TLB_REMOTE_FLUSH_RECEIVED);
  531. flush_tlb_local();
  532. }
  533. /*
  534. * Flush TLB entries for recently unmapped pages from remote CPUs. It is
  535. * important if a PTE was dirty when it was unmapped that it's flushed
  536. * before any IO is initiated on the page to prevent lost writes. Similarly,
  537. * it must be flushed before freeing to prevent data leakage.
  538. */
  539. void try_to_unmap_flush(void)
  540. {
  541. struct tlbflush_unmap_batch *tlb_ubc = &current->tlb_ubc;
  542. int cpu;
  543. if (!tlb_ubc->flush_required)
  544. return;
  545. cpu = get_cpu();
  546. trace_tlb_flush(TLB_REMOTE_SHOOTDOWN, -1UL);
  547. if (cpumask_test_cpu(cpu, &tlb_ubc->cpumask))
  548. percpu_flush_tlb_batch_pages(&tlb_ubc->cpumask);
  549. if (cpumask_any_but(&tlb_ubc->cpumask, cpu) < nr_cpu_ids) {
  550. smp_call_function_many(&tlb_ubc->cpumask,
  551. percpu_flush_tlb_batch_pages, (void *)tlb_ubc, true);
  552. }
  553. cpumask_clear(&tlb_ubc->cpumask);
  554. tlb_ubc->flush_required = false;
  555. tlb_ubc->writable = false;
  556. put_cpu();
  557. }
  558. /* Flush iff there are potentially writable TLB entries that can race with IO */
  559. void try_to_unmap_flush_dirty(void)
  560. {
  561. struct tlbflush_unmap_batch *tlb_ubc = &current->tlb_ubc;
  562. if (tlb_ubc->writable)
  563. try_to_unmap_flush();
  564. }
  565. static void set_tlb_ubc_flush_pending(struct mm_struct *mm,
  566. struct page *page, bool writable)
  567. {
  568. struct tlbflush_unmap_batch *tlb_ubc = &current->tlb_ubc;
  569. cpumask_or(&tlb_ubc->cpumask, &tlb_ubc->cpumask, mm_cpumask(mm));
  570. tlb_ubc->flush_required = true;
  571. /*
  572. * If the PTE was dirty then it's best to assume it's writable. The
  573. * caller must use try_to_unmap_flush_dirty() or try_to_unmap_flush()
  574. * before the page is queued for IO.
  575. */
  576. if (writable)
  577. tlb_ubc->writable = true;
  578. }
  579. /*
  580. * Returns true if the TLB flush should be deferred to the end of a batch of
  581. * unmap operations to reduce IPIs.
  582. */
  583. static bool should_defer_flush(struct mm_struct *mm, enum ttu_flags flags)
  584. {
  585. bool should_defer = false;
  586. if (!(flags & TTU_BATCH_FLUSH))
  587. return false;
  588. /* If remote CPUs need to be flushed then defer batch the flush */
  589. if (cpumask_any_but(mm_cpumask(mm), get_cpu()) < nr_cpu_ids)
  590. should_defer = true;
  591. put_cpu();
  592. return should_defer;
  593. }
  594. #else
  595. static void set_tlb_ubc_flush_pending(struct mm_struct *mm,
  596. struct page *page, bool writable)
  597. {
  598. }
  599. static bool should_defer_flush(struct mm_struct *mm, enum ttu_flags flags)
  600. {
  601. return false;
  602. }
  603. #endif /* CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH */
  604. /*
  605. * At what user virtual address is page expected in vma?
  606. * Caller should check the page is actually part of the vma.
  607. */
  608. unsigned long page_address_in_vma(struct page *page, struct vm_area_struct *vma)
  609. {
  610. unsigned long address;
  611. if (PageAnon(page)) {
  612. struct anon_vma *page__anon_vma = page_anon_vma(page);
  613. /*
  614. * Note: swapoff's unuse_vma() is more efficient with this
  615. * check, and needs it to match anon_vma when KSM is active.
  616. */
  617. if (!vma->anon_vma || !page__anon_vma ||
  618. vma->anon_vma->root != page__anon_vma->root)
  619. return -EFAULT;
  620. } else if (page->mapping) {
  621. if (!vma->vm_file || vma->vm_file->f_mapping != page->mapping)
  622. return -EFAULT;
  623. } else
  624. return -EFAULT;
  625. address = __vma_address(page, vma);
  626. if (unlikely(address < vma->vm_start || address >= vma->vm_end))
  627. return -EFAULT;
  628. return address;
  629. }
  630. pmd_t *mm_find_pmd(struct mm_struct *mm, unsigned long address)
  631. {
  632. pgd_t *pgd;
  633. pud_t *pud;
  634. pmd_t *pmd = NULL;
  635. pmd_t pmde;
  636. pgd = pgd_offset(mm, address);
  637. if (!pgd_present(*pgd))
  638. goto out;
  639. pud = pud_offset(pgd, address);
  640. if (!pud_present(*pud))
  641. goto out;
  642. pmd = pmd_offset(pud, address);
  643. /*
  644. * Some THP functions use the sequence pmdp_huge_clear_flush(), set_pmd_at()
  645. * without holding anon_vma lock for write. So when looking for a
  646. * genuine pmde (in which to find pte), test present and !THP together.
  647. */
  648. pmde = *pmd;
  649. barrier();
  650. if (!pmd_present(pmde) || pmd_trans_huge(pmde))
  651. pmd = NULL;
  652. out:
  653. return pmd;
  654. }
  655. /*
  656. * Check that @page is mapped at @address into @mm.
  657. *
  658. * If @sync is false, page_check_address may perform a racy check to avoid
  659. * the page table lock when the pte is not present (helpful when reclaiming
  660. * highly shared pages).
  661. *
  662. * On success returns with pte mapped and locked.
  663. */
  664. pte_t *__page_check_address(struct page *page, struct mm_struct *mm,
  665. unsigned long address, spinlock_t **ptlp, int sync)
  666. {
  667. pmd_t *pmd;
  668. pte_t *pte;
  669. spinlock_t *ptl;
  670. if (unlikely(PageHuge(page))) {
  671. /* when pud is not present, pte will be NULL */
  672. pte = huge_pte_offset(mm, address);
  673. if (!pte)
  674. return NULL;
  675. ptl = huge_pte_lockptr(page_hstate(page), mm, pte);
  676. goto check;
  677. }
  678. pmd = mm_find_pmd(mm, address);
  679. if (!pmd)
  680. return NULL;
  681. pte = pte_offset_map(pmd, address);
  682. /* Make a quick check before getting the lock */
  683. if (!sync && !pte_present(*pte)) {
  684. pte_unmap(pte);
  685. return NULL;
  686. }
  687. ptl = pte_lockptr(mm, pmd);
  688. check:
  689. spin_lock(ptl);
  690. if (pte_present(*pte) && page_to_pfn(page) == pte_pfn(*pte)) {
  691. *ptlp = ptl;
  692. return pte;
  693. }
  694. pte_unmap_unlock(pte, ptl);
  695. return NULL;
  696. }
  697. /**
  698. * page_mapped_in_vma - check whether a page is really mapped in a VMA
  699. * @page: the page to test
  700. * @vma: the VMA to test
  701. *
  702. * Returns 1 if the page is mapped into the page tables of the VMA, 0
  703. * if the page is not mapped into the page tables of this VMA. Only
  704. * valid for normal file or anonymous VMAs.
  705. */
  706. int page_mapped_in_vma(struct page *page, struct vm_area_struct *vma)
  707. {
  708. unsigned long address;
  709. pte_t *pte;
  710. spinlock_t *ptl;
  711. address = __vma_address(page, vma);
  712. if (unlikely(address < vma->vm_start || address >= vma->vm_end))
  713. return 0;
  714. pte = page_check_address(page, vma->vm_mm, address, &ptl, 1);
  715. if (!pte) /* the page is not in this mm */
  716. return 0;
  717. pte_unmap_unlock(pte, ptl);
  718. return 1;
  719. }
  720. struct page_referenced_arg {
  721. int mapcount;
  722. int referenced;
  723. unsigned long vm_flags;
  724. struct mem_cgroup *memcg;
  725. };
  726. /*
  727. * arg: page_referenced_arg will be passed
  728. */
  729. static int page_referenced_one(struct page *page, struct vm_area_struct *vma,
  730. unsigned long address, void *arg)
  731. {
  732. struct mm_struct *mm = vma->vm_mm;
  733. spinlock_t *ptl;
  734. int referenced = 0;
  735. struct page_referenced_arg *pra = arg;
  736. if (unlikely(PageTransHuge(page))) {
  737. pmd_t *pmd;
  738. /*
  739. * rmap might return false positives; we must filter
  740. * these out using page_check_address_pmd().
  741. */
  742. pmd = page_check_address_pmd(page, mm, address,
  743. PAGE_CHECK_ADDRESS_PMD_FLAG, &ptl);
  744. if (!pmd)
  745. return SWAP_AGAIN;
  746. if (vma->vm_flags & VM_LOCKED) {
  747. spin_unlock(ptl);
  748. pra->vm_flags |= VM_LOCKED;
  749. return SWAP_FAIL; /* To break the loop */
  750. }
  751. /* go ahead even if the pmd is pmd_trans_splitting() */
  752. if (pmdp_clear_flush_young_notify(vma, address, pmd))
  753. referenced++;
  754. spin_unlock(ptl);
  755. } else {
  756. pte_t *pte;
  757. /*
  758. * rmap might return false positives; we must filter
  759. * these out using page_check_address().
  760. */
  761. pte = page_check_address(page, mm, address, &ptl, 0);
  762. if (!pte)
  763. return SWAP_AGAIN;
  764. if (vma->vm_flags & VM_LOCKED) {
  765. pte_unmap_unlock(pte, ptl);
  766. pra->vm_flags |= VM_LOCKED;
  767. return SWAP_FAIL; /* To break the loop */
  768. }
  769. if (ptep_clear_flush_young_notify(vma, address, pte)) {
  770. /*
  771. * Don't treat a reference through a sequentially read
  772. * mapping as such. If the page has been used in
  773. * another mapping, we will catch it; if this other
  774. * mapping is already gone, the unmap path will have
  775. * set PG_referenced or activated the page.
  776. */
  777. if (likely(!(vma->vm_flags & VM_SEQ_READ)))
  778. referenced++;
  779. }
  780. pte_unmap_unlock(pte, ptl);
  781. }
  782. if (referenced)
  783. clear_page_idle(page);
  784. if (test_and_clear_page_young(page))
  785. referenced++;
  786. if (referenced) {
  787. pra->referenced++;
  788. pra->vm_flags |= vma->vm_flags;
  789. }
  790. pra->mapcount--;
  791. if (!pra->mapcount)
  792. return SWAP_SUCCESS; /* To break the loop */
  793. return SWAP_AGAIN;
  794. }
  795. static bool invalid_page_referenced_vma(struct vm_area_struct *vma, void *arg)
  796. {
  797. struct page_referenced_arg *pra = arg;
  798. struct mem_cgroup *memcg = pra->memcg;
  799. if (!mm_match_cgroup(vma->vm_mm, memcg))
  800. return true;
  801. return false;
  802. }
  803. /**
  804. * page_referenced - test if the page was referenced
  805. * @page: the page to test
  806. * @is_locked: caller holds lock on the page
  807. * @memcg: target memory cgroup
  808. * @vm_flags: collect encountered vma->vm_flags who actually referenced the page
  809. *
  810. * Quick test_and_clear_referenced for all mappings to a page,
  811. * returns the number of ptes which referenced the page.
  812. */
  813. int page_referenced(struct page *page,
  814. int is_locked,
  815. struct mem_cgroup *memcg,
  816. unsigned long *vm_flags)
  817. {
  818. int ret;
  819. int we_locked = 0;
  820. struct page_referenced_arg pra = {
  821. .mapcount = page_mapcount(page),
  822. .memcg = memcg,
  823. };
  824. struct rmap_walk_control rwc = {
  825. .rmap_one = page_referenced_one,
  826. .arg = (void *)&pra,
  827. .anon_lock = page_lock_anon_vma_read,
  828. };
  829. *vm_flags = 0;
  830. if (!page_mapped(page))
  831. return 0;
  832. if (!page_rmapping(page))
  833. return 0;
  834. if (!is_locked && (!PageAnon(page) || PageKsm(page))) {
  835. we_locked = trylock_page(page);
  836. if (!we_locked)
  837. return 1;
  838. }
  839. /*
  840. * If we are reclaiming on behalf of a cgroup, skip
  841. * counting on behalf of references from different
  842. * cgroups
  843. */
  844. if (memcg) {
  845. rwc.invalid_vma = invalid_page_referenced_vma;
  846. }
  847. ret = rmap_walk(page, &rwc);
  848. *vm_flags = pra.vm_flags;
  849. if (we_locked)
  850. unlock_page(page);
  851. return pra.referenced;
  852. }
  853. static int page_mkclean_one(struct page *page, struct vm_area_struct *vma,
  854. unsigned long address, void *arg)
  855. {
  856. struct mm_struct *mm = vma->vm_mm;
  857. pte_t *pte;
  858. spinlock_t *ptl;
  859. int ret = 0;
  860. int *cleaned = arg;
  861. pte = page_check_address(page, mm, address, &ptl, 1);
  862. if (!pte)
  863. goto out;
  864. if (pte_dirty(*pte) || pte_write(*pte)) {
  865. pte_t entry;
  866. flush_cache_page(vma, address, pte_pfn(*pte));
  867. entry = ptep_clear_flush(vma, address, pte);
  868. entry = pte_wrprotect(entry);
  869. entry = pte_mkclean(entry);
  870. set_pte_at(mm, address, pte, entry);
  871. ret = 1;
  872. }
  873. pte_unmap_unlock(pte, ptl);
  874. if (ret) {
  875. mmu_notifier_invalidate_page(mm, address);
  876. (*cleaned)++;
  877. }
  878. out:
  879. return SWAP_AGAIN;
  880. }
  881. static bool invalid_mkclean_vma(struct vm_area_struct *vma, void *arg)
  882. {
  883. if (vma->vm_flags & VM_SHARED)
  884. return false;
  885. return true;
  886. }
  887. int page_mkclean(struct page *page)
  888. {
  889. int cleaned = 0;
  890. struct address_space *mapping;
  891. struct rmap_walk_control rwc = {
  892. .arg = (void *)&cleaned,
  893. .rmap_one = page_mkclean_one,
  894. .invalid_vma = invalid_mkclean_vma,
  895. };
  896. BUG_ON(!PageLocked(page));
  897. if (!page_mapped(page))
  898. return 0;
  899. mapping = page_mapping(page);
  900. if (!mapping)
  901. return 0;
  902. rmap_walk(page, &rwc);
  903. return cleaned;
  904. }
  905. EXPORT_SYMBOL_GPL(page_mkclean);
  906. /**
  907. * page_move_anon_rmap - move a page to our anon_vma
  908. * @page: the page to move to our anon_vma
  909. * @vma: the vma the page belongs to
  910. * @address: the user virtual address mapped
  911. *
  912. * When a page belongs exclusively to one process after a COW event,
  913. * that page can be moved into the anon_vma that belongs to just that
  914. * process, so the rmap code will not search the parent or sibling
  915. * processes.
  916. */
  917. void page_move_anon_rmap(struct page *page,
  918. struct vm_area_struct *vma, unsigned long address)
  919. {
  920. struct anon_vma *anon_vma = vma->anon_vma;
  921. VM_BUG_ON_PAGE(!PageLocked(page), page);
  922. VM_BUG_ON_VMA(!anon_vma, vma);
  923. VM_BUG_ON_PAGE(page->index != linear_page_index(vma, address), page);
  924. anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON;
  925. /*
  926. * Ensure that anon_vma and the PAGE_MAPPING_ANON bit are written
  927. * simultaneously, so a concurrent reader (eg page_referenced()'s
  928. * PageAnon()) will not see one without the other.
  929. */
  930. WRITE_ONCE(page->mapping, (struct address_space *) anon_vma);
  931. }
  932. /**
  933. * __page_set_anon_rmap - set up new anonymous rmap
  934. * @page: Page to add to rmap
  935. * @vma: VM area to add page to.
  936. * @address: User virtual address of the mapping
  937. * @exclusive: the page is exclusively owned by the current process
  938. */
  939. static void __page_set_anon_rmap(struct page *page,
  940. struct vm_area_struct *vma, unsigned long address, int exclusive)
  941. {
  942. struct anon_vma *anon_vma = vma->anon_vma;
  943. BUG_ON(!anon_vma);
  944. if (PageAnon(page))
  945. return;
  946. /*
  947. * If the page isn't exclusively mapped into this vma,
  948. * we must use the _oldest_ possible anon_vma for the
  949. * page mapping!
  950. */
  951. if (!exclusive)
  952. anon_vma = anon_vma->root;
  953. anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON;
  954. page->mapping = (struct address_space *) anon_vma;
  955. page->index = linear_page_index(vma, address);
  956. }
  957. /**
  958. * __page_check_anon_rmap - sanity check anonymous rmap addition
  959. * @page: the page to add the mapping to
  960. * @vma: the vm area in which the mapping is added
  961. * @address: the user virtual address mapped
  962. */
  963. static void __page_check_anon_rmap(struct page *page,
  964. struct vm_area_struct *vma, unsigned long address)
  965. {
  966. #ifdef CONFIG_DEBUG_VM
  967. /*
  968. * The page's anon-rmap details (mapping and index) are guaranteed to
  969. * be set up correctly at this point.
  970. *
  971. * We have exclusion against page_add_anon_rmap because the caller
  972. * always holds the page locked, except if called from page_dup_rmap,
  973. * in which case the page is already known to be setup.
  974. *
  975. * We have exclusion against page_add_new_anon_rmap because those pages
  976. * are initially only visible via the pagetables, and the pte is locked
  977. * over the call to page_add_new_anon_rmap.
  978. */
  979. BUG_ON(page_anon_vma(page)->root != vma->anon_vma->root);
  980. BUG_ON(page->index != linear_page_index(vma, address));
  981. #endif
  982. }
  983. /**
  984. * page_add_anon_rmap - add pte mapping to an anonymous page
  985. * @page: the page to add the mapping to
  986. * @vma: the vm area in which the mapping is added
  987. * @address: the user virtual address mapped
  988. *
  989. * The caller needs to hold the pte lock, and the page must be locked in
  990. * the anon_vma case: to serialize mapping,index checking after setting,
  991. * and to ensure that PageAnon is not being upgraded racily to PageKsm
  992. * (but PageKsm is never downgraded to PageAnon).
  993. */
  994. void page_add_anon_rmap(struct page *page,
  995. struct vm_area_struct *vma, unsigned long address)
  996. {
  997. do_page_add_anon_rmap(page, vma, address, 0);
  998. }
  999. /*
  1000. * Special version of the above for do_swap_page, which often runs
  1001. * into pages that are exclusively owned by the current process.
  1002. * Everybody else should continue to use page_add_anon_rmap above.
  1003. */
  1004. void do_page_add_anon_rmap(struct page *page,
  1005. struct vm_area_struct *vma, unsigned long address, int exclusive)
  1006. {
  1007. int first = atomic_inc_and_test(&page->_mapcount);
  1008. if (first) {
  1009. /*
  1010. * We use the irq-unsafe __{inc|mod}_zone_page_stat because
  1011. * these counters are not modified in interrupt context, and
  1012. * pte lock(a spinlock) is held, which implies preemption
  1013. * disabled.
  1014. */
  1015. if (PageTransHuge(page))
  1016. __inc_zone_page_state(page,
  1017. NR_ANON_TRANSPARENT_HUGEPAGES);
  1018. __mod_zone_page_state(page_zone(page), NR_ANON_PAGES,
  1019. hpage_nr_pages(page));
  1020. }
  1021. if (unlikely(PageKsm(page)))
  1022. return;
  1023. VM_BUG_ON_PAGE(!PageLocked(page), page);
  1024. /* address might be in next vma when migration races vma_adjust */
  1025. if (first)
  1026. __page_set_anon_rmap(page, vma, address, exclusive);
  1027. else
  1028. __page_check_anon_rmap(page, vma, address);
  1029. }
  1030. /**
  1031. * page_add_new_anon_rmap - add pte mapping to a new anonymous page
  1032. * @page: the page to add the mapping to
  1033. * @vma: the vm area in which the mapping is added
  1034. * @address: the user virtual address mapped
  1035. *
  1036. * Same as page_add_anon_rmap but must only be called on *new* pages.
  1037. * This means the inc-and-test can be bypassed.
  1038. * Page does not have to be locked.
  1039. */
  1040. void page_add_new_anon_rmap(struct page *page,
  1041. struct vm_area_struct *vma, unsigned long address)
  1042. {
  1043. VM_BUG_ON_VMA(address < vma->vm_start || address >= vma->vm_end, vma);
  1044. SetPageSwapBacked(page);
  1045. atomic_set(&page->_mapcount, 0); /* increment count (starts at -1) */
  1046. if (PageTransHuge(page))
  1047. __inc_zone_page_state(page, NR_ANON_TRANSPARENT_HUGEPAGES);
  1048. __mod_zone_page_state(page_zone(page), NR_ANON_PAGES,
  1049. hpage_nr_pages(page));
  1050. __page_set_anon_rmap(page, vma, address, 1);
  1051. }
  1052. /**
  1053. * page_add_file_rmap - add pte mapping to a file page
  1054. * @page: the page to add the mapping to
  1055. *
  1056. * The caller needs to hold the pte lock.
  1057. */
  1058. void page_add_file_rmap(struct page *page)
  1059. {
  1060. struct mem_cgroup *memcg;
  1061. memcg = mem_cgroup_begin_page_stat(page);
  1062. if (atomic_inc_and_test(&page->_mapcount)) {
  1063. __inc_zone_page_state(page, NR_FILE_MAPPED);
  1064. mem_cgroup_inc_page_stat(memcg, MEM_CGROUP_STAT_FILE_MAPPED);
  1065. }
  1066. mem_cgroup_end_page_stat(memcg);
  1067. }
  1068. static void page_remove_file_rmap(struct page *page)
  1069. {
  1070. struct mem_cgroup *memcg;
  1071. memcg = mem_cgroup_begin_page_stat(page);
  1072. /* page still mapped by someone else? */
  1073. if (!atomic_add_negative(-1, &page->_mapcount))
  1074. goto out;
  1075. /* Hugepages are not counted in NR_FILE_MAPPED for now. */
  1076. if (unlikely(PageHuge(page)))
  1077. goto out;
  1078. /*
  1079. * We use the irq-unsafe __{inc|mod}_zone_page_stat because
  1080. * these counters are not modified in interrupt context, and
  1081. * pte lock(a spinlock) is held, which implies preemption disabled.
  1082. */
  1083. __dec_zone_page_state(page, NR_FILE_MAPPED);
  1084. mem_cgroup_dec_page_stat(memcg, MEM_CGROUP_STAT_FILE_MAPPED);
  1085. if (unlikely(PageMlocked(page)))
  1086. clear_page_mlock(page);
  1087. out:
  1088. mem_cgroup_end_page_stat(memcg);
  1089. }
  1090. /**
  1091. * page_remove_rmap - take down pte mapping from a page
  1092. * @page: page to remove mapping from
  1093. *
  1094. * The caller needs to hold the pte lock.
  1095. */
  1096. void page_remove_rmap(struct page *page)
  1097. {
  1098. if (!PageAnon(page)) {
  1099. page_remove_file_rmap(page);
  1100. return;
  1101. }
  1102. /* page still mapped by someone else? */
  1103. if (!atomic_add_negative(-1, &page->_mapcount))
  1104. return;
  1105. /* Hugepages are not counted in NR_ANON_PAGES for now. */
  1106. if (unlikely(PageHuge(page)))
  1107. return;
  1108. /*
  1109. * We use the irq-unsafe __{inc|mod}_zone_page_stat because
  1110. * these counters are not modified in interrupt context, and
  1111. * pte lock(a spinlock) is held, which implies preemption disabled.
  1112. */
  1113. if (PageTransHuge(page))
  1114. __dec_zone_page_state(page, NR_ANON_TRANSPARENT_HUGEPAGES);
  1115. __mod_zone_page_state(page_zone(page), NR_ANON_PAGES,
  1116. -hpage_nr_pages(page));
  1117. if (unlikely(PageMlocked(page)))
  1118. clear_page_mlock(page);
  1119. /*
  1120. * It would be tidy to reset the PageAnon mapping here,
  1121. * but that might overwrite a racing page_add_anon_rmap
  1122. * which increments mapcount after us but sets mapping
  1123. * before us: so leave the reset to free_hot_cold_page,
  1124. * and remember that it's only reliable while mapped.
  1125. * Leaving it set also helps swapoff to reinstate ptes
  1126. * faster for those pages still in swapcache.
  1127. */
  1128. }
  1129. /*
  1130. * @arg: enum ttu_flags will be passed to this argument
  1131. */
  1132. static int try_to_unmap_one(struct page *page, struct vm_area_struct *vma,
  1133. unsigned long address, void *arg)
  1134. {
  1135. struct mm_struct *mm = vma->vm_mm;
  1136. pte_t *pte;
  1137. pte_t pteval;
  1138. spinlock_t *ptl;
  1139. int ret = SWAP_AGAIN;
  1140. enum ttu_flags flags = (enum ttu_flags)arg;
  1141. /* munlock has nothing to gain from examining un-locked vmas */
  1142. if ((flags & TTU_MUNLOCK) && !(vma->vm_flags & VM_LOCKED))
  1143. goto out;
  1144. pte = page_check_address(page, mm, address, &ptl, 0);
  1145. if (!pte)
  1146. goto out;
  1147. /*
  1148. * If the page is mlock()d, we cannot swap it out.
  1149. * If it's recently referenced (perhaps page_referenced
  1150. * skipped over this mm) then we should reactivate it.
  1151. */
  1152. if (!(flags & TTU_IGNORE_MLOCK)) {
  1153. if (vma->vm_flags & VM_LOCKED) {
  1154. /* Holding pte lock, we do *not* need mmap_sem here */
  1155. mlock_vma_page(page);
  1156. ret = SWAP_MLOCK;
  1157. goto out_unmap;
  1158. }
  1159. if (flags & TTU_MUNLOCK)
  1160. goto out_unmap;
  1161. }
  1162. if (!(flags & TTU_IGNORE_ACCESS)) {
  1163. if (ptep_clear_flush_young_notify(vma, address, pte)) {
  1164. ret = SWAP_FAIL;
  1165. goto out_unmap;
  1166. }
  1167. }
  1168. /* Nuke the page table entry. */
  1169. flush_cache_page(vma, address, page_to_pfn(page));
  1170. if (should_defer_flush(mm, flags)) {
  1171. /*
  1172. * We clear the PTE but do not flush so potentially a remote
  1173. * CPU could still be writing to the page. If the entry was
  1174. * previously clean then the architecture must guarantee that
  1175. * a clear->dirty transition on a cached TLB entry is written
  1176. * through and traps if the PTE is unmapped.
  1177. */
  1178. pteval = ptep_get_and_clear(mm, address, pte);
  1179. set_tlb_ubc_flush_pending(mm, page, pte_dirty(pteval));
  1180. } else {
  1181. pteval = ptep_clear_flush(vma, address, pte);
  1182. }
  1183. /* Move the dirty bit to the physical page now the pte is gone. */
  1184. if (pte_dirty(pteval))
  1185. set_page_dirty(page);
  1186. /* Update high watermark before we lower rss */
  1187. update_hiwater_rss(mm);
  1188. if (PageHWPoison(page) && !(flags & TTU_IGNORE_HWPOISON)) {
  1189. if (PageHuge(page)) {
  1190. hugetlb_count_sub(1 << compound_order(page), mm);
  1191. } else {
  1192. if (PageAnon(page))
  1193. dec_mm_counter(mm, MM_ANONPAGES);
  1194. else
  1195. dec_mm_counter(mm, MM_FILEPAGES);
  1196. }
  1197. set_pte_at(mm, address, pte,
  1198. swp_entry_to_pte(make_hwpoison_entry(page)));
  1199. } else if (pte_unused(pteval)) {
  1200. /*
  1201. * The guest indicated that the page content is of no
  1202. * interest anymore. Simply discard the pte, vmscan
  1203. * will take care of the rest.
  1204. */
  1205. if (PageAnon(page))
  1206. dec_mm_counter(mm, MM_ANONPAGES);
  1207. else
  1208. dec_mm_counter(mm, MM_FILEPAGES);
  1209. } else if (IS_ENABLED(CONFIG_MIGRATION) && (flags & TTU_MIGRATION)) {
  1210. swp_entry_t entry;
  1211. pte_t swp_pte;
  1212. /*
  1213. * Store the pfn of the page in a special migration
  1214. * pte. do_swap_page() will wait until the migration
  1215. * pte is removed and then restart fault handling.
  1216. */
  1217. entry = make_migration_entry(page, pte_write(pteval));
  1218. swp_pte = swp_entry_to_pte(entry);
  1219. if (pte_soft_dirty(pteval))
  1220. swp_pte = pte_swp_mksoft_dirty(swp_pte);
  1221. set_pte_at(mm, address, pte, swp_pte);
  1222. } else if (PageAnon(page)) {
  1223. swp_entry_t entry = { .val = page_private(page) };
  1224. pte_t swp_pte;
  1225. /*
  1226. * Store the swap location in the pte.
  1227. * See handle_pte_fault() ...
  1228. */
  1229. VM_BUG_ON_PAGE(!PageSwapCache(page), page);
  1230. if (swap_duplicate(entry) < 0) {
  1231. set_pte_at(mm, address, pte, pteval);
  1232. ret = SWAP_FAIL;
  1233. goto out_unmap;
  1234. }
  1235. if (list_empty(&mm->mmlist)) {
  1236. spin_lock(&mmlist_lock);
  1237. if (list_empty(&mm->mmlist))
  1238. list_add(&mm->mmlist, &init_mm.mmlist);
  1239. spin_unlock(&mmlist_lock);
  1240. }
  1241. dec_mm_counter(mm, MM_ANONPAGES);
  1242. inc_mm_counter(mm, MM_SWAPENTS);
  1243. swp_pte = swp_entry_to_pte(entry);
  1244. if (pte_soft_dirty(pteval))
  1245. swp_pte = pte_swp_mksoft_dirty(swp_pte);
  1246. set_pte_at(mm, address, pte, swp_pte);
  1247. } else
  1248. dec_mm_counter(mm, MM_FILEPAGES);
  1249. page_remove_rmap(page);
  1250. page_cache_release(page);
  1251. out_unmap:
  1252. pte_unmap_unlock(pte, ptl);
  1253. if (ret != SWAP_FAIL && ret != SWAP_MLOCK && !(flags & TTU_MUNLOCK))
  1254. mmu_notifier_invalidate_page(mm, address);
  1255. out:
  1256. return ret;
  1257. }
  1258. bool is_vma_temporary_stack(struct vm_area_struct *vma)
  1259. {
  1260. int maybe_stack = vma->vm_flags & (VM_GROWSDOWN | VM_GROWSUP);
  1261. if (!maybe_stack)
  1262. return false;
  1263. if ((vma->vm_flags & VM_STACK_INCOMPLETE_SETUP) ==
  1264. VM_STACK_INCOMPLETE_SETUP)
  1265. return true;
  1266. return false;
  1267. }
  1268. static bool invalid_migration_vma(struct vm_area_struct *vma, void *arg)
  1269. {
  1270. return is_vma_temporary_stack(vma);
  1271. }
  1272. static int page_not_mapped(struct page *page)
  1273. {
  1274. return !page_mapped(page);
  1275. };
  1276. /**
  1277. * try_to_unmap - try to remove all page table mappings to a page
  1278. * @page: the page to get unmapped
  1279. * @flags: action and flags
  1280. *
  1281. * Tries to remove all the page table entries which are mapping this
  1282. * page, used in the pageout path. Caller must hold the page lock.
  1283. * Return values are:
  1284. *
  1285. * SWAP_SUCCESS - we succeeded in removing all mappings
  1286. * SWAP_AGAIN - we missed a mapping, try again later
  1287. * SWAP_FAIL - the page is unswappable
  1288. * SWAP_MLOCK - page is mlocked.
  1289. */
  1290. int try_to_unmap(struct page *page, enum ttu_flags flags)
  1291. {
  1292. int ret;
  1293. struct rmap_walk_control rwc = {
  1294. .rmap_one = try_to_unmap_one,
  1295. .arg = (void *)flags,
  1296. .done = page_not_mapped,
  1297. .anon_lock = page_lock_anon_vma_read,
  1298. };
  1299. VM_BUG_ON_PAGE(!PageHuge(page) && PageTransHuge(page), page);
  1300. /*
  1301. * During exec, a temporary VMA is setup and later moved.
  1302. * The VMA is moved under the anon_vma lock but not the
  1303. * page tables leading to a race where migration cannot
  1304. * find the migration ptes. Rather than increasing the
  1305. * locking requirements of exec(), migration skips
  1306. * temporary VMAs until after exec() completes.
  1307. */
  1308. if ((flags & TTU_MIGRATION) && !PageKsm(page) && PageAnon(page))
  1309. rwc.invalid_vma = invalid_migration_vma;
  1310. ret = rmap_walk(page, &rwc);
  1311. if (ret != SWAP_MLOCK && !page_mapped(page))
  1312. ret = SWAP_SUCCESS;
  1313. return ret;
  1314. }
  1315. /**
  1316. * try_to_munlock - try to munlock a page
  1317. * @page: the page to be munlocked
  1318. *
  1319. * Called from munlock code. Checks all of the VMAs mapping the page
  1320. * to make sure nobody else has this page mlocked. The page will be
  1321. * returned with PG_mlocked cleared if no other vmas have it mlocked.
  1322. *
  1323. * Return values are:
  1324. *
  1325. * SWAP_AGAIN - no vma is holding page mlocked, or,
  1326. * SWAP_AGAIN - page mapped in mlocked vma -- couldn't acquire mmap sem
  1327. * SWAP_FAIL - page cannot be located at present
  1328. * SWAP_MLOCK - page is now mlocked.
  1329. */
  1330. int try_to_munlock(struct page *page)
  1331. {
  1332. int ret;
  1333. struct rmap_walk_control rwc = {
  1334. .rmap_one = try_to_unmap_one,
  1335. .arg = (void *)TTU_MUNLOCK,
  1336. .done = page_not_mapped,
  1337. .anon_lock = page_lock_anon_vma_read,
  1338. };
  1339. VM_BUG_ON_PAGE(!PageLocked(page) || PageLRU(page), page);
  1340. ret = rmap_walk(page, &rwc);
  1341. return ret;
  1342. }
  1343. void __put_anon_vma(struct anon_vma *anon_vma)
  1344. {
  1345. struct anon_vma *root = anon_vma->root;
  1346. anon_vma_free(anon_vma);
  1347. if (root != anon_vma && atomic_dec_and_test(&root->refcount))
  1348. anon_vma_free(root);
  1349. }
  1350. static struct anon_vma *rmap_walk_anon_lock(struct page *page,
  1351. struct rmap_walk_control *rwc)
  1352. {
  1353. struct anon_vma *anon_vma;
  1354. if (rwc->anon_lock)
  1355. return rwc->anon_lock(page);
  1356. /*
  1357. * Note: remove_migration_ptes() cannot use page_lock_anon_vma_read()
  1358. * because that depends on page_mapped(); but not all its usages
  1359. * are holding mmap_sem. Users without mmap_sem are required to
  1360. * take a reference count to prevent the anon_vma disappearing
  1361. */
  1362. anon_vma = page_anon_vma(page);
  1363. if (!anon_vma)
  1364. return NULL;
  1365. anon_vma_lock_read(anon_vma);
  1366. return anon_vma;
  1367. }
  1368. /*
  1369. * rmap_walk_anon - do something to anonymous page using the object-based
  1370. * rmap method
  1371. * @page: the page to be handled
  1372. * @rwc: control variable according to each walk type
  1373. *
  1374. * Find all the mappings of a page using the mapping pointer and the vma chains
  1375. * contained in the anon_vma struct it points to.
  1376. *
  1377. * When called from try_to_munlock(), the mmap_sem of the mm containing the vma
  1378. * where the page was found will be held for write. So, we won't recheck
  1379. * vm_flags for that VMA. That should be OK, because that vma shouldn't be
  1380. * LOCKED.
  1381. */
  1382. static int rmap_walk_anon(struct page *page, struct rmap_walk_control *rwc)
  1383. {
  1384. struct anon_vma *anon_vma;
  1385. pgoff_t pgoff;
  1386. struct anon_vma_chain *avc;
  1387. int ret = SWAP_AGAIN;
  1388. anon_vma = rmap_walk_anon_lock(page, rwc);
  1389. if (!anon_vma)
  1390. return ret;
  1391. pgoff = page_to_pgoff(page);
  1392. anon_vma_interval_tree_foreach(avc, &anon_vma->rb_root, pgoff, pgoff) {
  1393. struct vm_area_struct *vma = avc->vma;
  1394. unsigned long address = vma_address(page, vma);
  1395. cond_resched();
  1396. if (rwc->invalid_vma && rwc->invalid_vma(vma, rwc->arg))
  1397. continue;
  1398. ret = rwc->rmap_one(page, vma, address, rwc->arg);
  1399. if (ret != SWAP_AGAIN)
  1400. break;
  1401. if (rwc->done && rwc->done(page))
  1402. break;
  1403. }
  1404. anon_vma_unlock_read(anon_vma);
  1405. return ret;
  1406. }
  1407. /*
  1408. * rmap_walk_file - do something to file page using the object-based rmap method
  1409. * @page: the page to be handled
  1410. * @rwc: control variable according to each walk type
  1411. *
  1412. * Find all the mappings of a page using the mapping pointer and the vma chains
  1413. * contained in the address_space struct it points to.
  1414. *
  1415. * When called from try_to_munlock(), the mmap_sem of the mm containing the vma
  1416. * where the page was found will be held for write. So, we won't recheck
  1417. * vm_flags for that VMA. That should be OK, because that vma shouldn't be
  1418. * LOCKED.
  1419. */
  1420. static int rmap_walk_file(struct page *page, struct rmap_walk_control *rwc)
  1421. {
  1422. struct address_space *mapping = page->mapping;
  1423. pgoff_t pgoff;
  1424. struct vm_area_struct *vma;
  1425. int ret = SWAP_AGAIN;
  1426. /*
  1427. * The page lock not only makes sure that page->mapping cannot
  1428. * suddenly be NULLified by truncation, it makes sure that the
  1429. * structure at mapping cannot be freed and reused yet,
  1430. * so we can safely take mapping->i_mmap_rwsem.
  1431. */
  1432. VM_BUG_ON_PAGE(!PageLocked(page), page);
  1433. if (!mapping)
  1434. return ret;
  1435. pgoff = page_to_pgoff(page);
  1436. i_mmap_lock_read(mapping);
  1437. vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) {
  1438. unsigned long address = vma_address(page, vma);
  1439. cond_resched();
  1440. if (rwc->invalid_vma && rwc->invalid_vma(vma, rwc->arg))
  1441. continue;
  1442. ret = rwc->rmap_one(page, vma, address, rwc->arg);
  1443. if (ret != SWAP_AGAIN)
  1444. goto done;
  1445. if (rwc->done && rwc->done(page))
  1446. goto done;
  1447. }
  1448. done:
  1449. i_mmap_unlock_read(mapping);
  1450. return ret;
  1451. }
  1452. int rmap_walk(struct page *page, struct rmap_walk_control *rwc)
  1453. {
  1454. if (unlikely(PageKsm(page)))
  1455. return rmap_walk_ksm(page, rwc);
  1456. else if (PageAnon(page))
  1457. return rmap_walk_anon(page, rwc);
  1458. else
  1459. return rmap_walk_file(page, rwc);
  1460. }
  1461. #ifdef CONFIG_HUGETLB_PAGE
  1462. /*
  1463. * The following three functions are for anonymous (private mapped) hugepages.
  1464. * Unlike common anonymous pages, anonymous hugepages have no accounting code
  1465. * and no lru code, because we handle hugepages differently from common pages.
  1466. */
  1467. static void __hugepage_set_anon_rmap(struct page *page,
  1468. struct vm_area_struct *vma, unsigned long address, int exclusive)
  1469. {
  1470. struct anon_vma *anon_vma = vma->anon_vma;
  1471. BUG_ON(!anon_vma);
  1472. if (PageAnon(page))
  1473. return;
  1474. if (!exclusive)
  1475. anon_vma = anon_vma->root;
  1476. anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON;
  1477. page->mapping = (struct address_space *) anon_vma;
  1478. page->index = linear_page_index(vma, address);
  1479. }
  1480. void hugepage_add_anon_rmap(struct page *page,
  1481. struct vm_area_struct *vma, unsigned long address)
  1482. {
  1483. struct anon_vma *anon_vma = vma->anon_vma;
  1484. int first;
  1485. BUG_ON(!PageLocked(page));
  1486. BUG_ON(!anon_vma);
  1487. /* address might be in next vma when migration races vma_adjust */
  1488. first = atomic_inc_and_test(&page->_mapcount);
  1489. if (first)
  1490. __hugepage_set_anon_rmap(page, vma, address, 0);
  1491. }
  1492. void hugepage_add_new_anon_rmap(struct page *page,
  1493. struct vm_area_struct *vma, unsigned long address)
  1494. {
  1495. BUG_ON(address < vma->vm_start || address >= vma->vm_end);
  1496. atomic_set(&page->_mapcount, 0);
  1497. __hugepage_set_anon_rmap(page, vma, address, 1);
  1498. }
  1499. #endif /* CONFIG_HUGETLB_PAGE */