rmap.c 46 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607
  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. * inode->i_alloc_sem (vmtruncate_range)
  24. * mm->mmap_sem
  25. * page->flags PG_locked (lock_page)
  26. * mapping->i_mmap_lock
  27. * anon_vma->lock
  28. * mm->page_table_lock or pte_lock
  29. * zone->lru_lock (in mark_page_accessed, isolate_lru_page)
  30. * swap_lock (in swap_duplicate, swap_info_get)
  31. * mmlist_lock (in mmput, drain_mmlist and others)
  32. * mapping->private_lock (in __set_page_dirty_buffers)
  33. * inode_lock (in set_page_dirty's __mark_inode_dirty)
  34. * sb_lock (within inode_lock in fs/fs-writeback.c)
  35. * mapping->tree_lock (widely used, in set_page_dirty,
  36. * in arch-dependent flush_dcache_mmap_lock,
  37. * within inode_lock in __sync_single_inode)
  38. *
  39. * (code doesn't rely on that order so it could be switched around)
  40. * ->tasklist_lock
  41. * anon_vma->lock (memory_failure, collect_procs_anon)
  42. * pte map lock
  43. */
  44. #include <linux/mm.h>
  45. #include <linux/pagemap.h>
  46. #include <linux/swap.h>
  47. #include <linux/swapops.h>
  48. #include <linux/slab.h>
  49. #include <linux/init.h>
  50. #include <linux/ksm.h>
  51. #include <linux/rmap.h>
  52. #include <linux/rcupdate.h>
  53. #include <linux/module.h>
  54. #include <linux/memcontrol.h>
  55. #include <linux/mmu_notifier.h>
  56. #include <linux/migrate.h>
  57. #include <linux/hugetlb.h>
  58. #include <asm/tlbflush.h>
  59. #include "internal.h"
  60. static struct kmem_cache *anon_vma_cachep;
  61. static struct kmem_cache *anon_vma_chain_cachep;
  62. static inline struct anon_vma *anon_vma_alloc(void)
  63. {
  64. return kmem_cache_alloc(anon_vma_cachep, GFP_KERNEL);
  65. }
  66. void anon_vma_free(struct anon_vma *anon_vma)
  67. {
  68. kmem_cache_free(anon_vma_cachep, anon_vma);
  69. }
  70. static inline struct anon_vma_chain *anon_vma_chain_alloc(void)
  71. {
  72. return kmem_cache_alloc(anon_vma_chain_cachep, GFP_KERNEL);
  73. }
  74. void anon_vma_chain_free(struct anon_vma_chain *anon_vma_chain)
  75. {
  76. kmem_cache_free(anon_vma_chain_cachep, anon_vma_chain);
  77. }
  78. /**
  79. * anon_vma_prepare - attach an anon_vma to a memory region
  80. * @vma: the memory region in question
  81. *
  82. * This makes sure the memory mapping described by 'vma' has
  83. * an 'anon_vma' attached to it, so that we can associate the
  84. * anonymous pages mapped into it with that anon_vma.
  85. *
  86. * The common case will be that we already have one, but if
  87. * if not we either need to find an adjacent mapping that we
  88. * can re-use the anon_vma from (very common when the only
  89. * reason for splitting a vma has been mprotect()), or we
  90. * allocate a new one.
  91. *
  92. * Anon-vma allocations are very subtle, because we may have
  93. * optimistically looked up an anon_vma in page_lock_anon_vma()
  94. * and that may actually touch the spinlock even in the newly
  95. * allocated vma (it depends on RCU to make sure that the
  96. * anon_vma isn't actually destroyed).
  97. *
  98. * As a result, we need to do proper anon_vma locking even
  99. * for the new allocation. At the same time, we do not want
  100. * to do any locking for the common case of already having
  101. * an anon_vma.
  102. *
  103. * This must be called with the mmap_sem held for reading.
  104. */
  105. int anon_vma_prepare(struct vm_area_struct *vma)
  106. {
  107. struct anon_vma *anon_vma = vma->anon_vma;
  108. struct anon_vma_chain *avc;
  109. might_sleep();
  110. if (unlikely(!anon_vma)) {
  111. struct mm_struct *mm = vma->vm_mm;
  112. struct anon_vma *allocated;
  113. avc = anon_vma_chain_alloc();
  114. if (!avc)
  115. goto out_enomem;
  116. anon_vma = find_mergeable_anon_vma(vma);
  117. allocated = NULL;
  118. if (!anon_vma) {
  119. anon_vma = anon_vma_alloc();
  120. if (unlikely(!anon_vma))
  121. goto out_enomem_free_avc;
  122. allocated = anon_vma;
  123. /*
  124. * This VMA had no anon_vma yet. This anon_vma is
  125. * the root of any anon_vma tree that might form.
  126. */
  127. anon_vma->root = anon_vma;
  128. }
  129. anon_vma_lock(anon_vma);
  130. /* page_table_lock to protect against threads */
  131. spin_lock(&mm->page_table_lock);
  132. if (likely(!vma->anon_vma)) {
  133. vma->anon_vma = anon_vma;
  134. avc->anon_vma = anon_vma;
  135. avc->vma = vma;
  136. list_add(&avc->same_vma, &vma->anon_vma_chain);
  137. list_add_tail(&avc->same_anon_vma, &anon_vma->head);
  138. allocated = NULL;
  139. avc = NULL;
  140. }
  141. spin_unlock(&mm->page_table_lock);
  142. anon_vma_unlock(anon_vma);
  143. if (unlikely(allocated))
  144. anon_vma_free(allocated);
  145. if (unlikely(avc))
  146. anon_vma_chain_free(avc);
  147. }
  148. return 0;
  149. out_enomem_free_avc:
  150. anon_vma_chain_free(avc);
  151. out_enomem:
  152. return -ENOMEM;
  153. }
  154. static void anon_vma_chain_link(struct vm_area_struct *vma,
  155. struct anon_vma_chain *avc,
  156. struct anon_vma *anon_vma)
  157. {
  158. avc->vma = vma;
  159. avc->anon_vma = anon_vma;
  160. list_add(&avc->same_vma, &vma->anon_vma_chain);
  161. anon_vma_lock(anon_vma);
  162. list_add_tail(&avc->same_anon_vma, &anon_vma->head);
  163. anon_vma_unlock(anon_vma);
  164. }
  165. /*
  166. * Attach the anon_vmas from src to dst.
  167. * Returns 0 on success, -ENOMEM on failure.
  168. */
  169. int anon_vma_clone(struct vm_area_struct *dst, struct vm_area_struct *src)
  170. {
  171. struct anon_vma_chain *avc, *pavc;
  172. list_for_each_entry_reverse(pavc, &src->anon_vma_chain, same_vma) {
  173. avc = anon_vma_chain_alloc();
  174. if (!avc)
  175. goto enomem_failure;
  176. anon_vma_chain_link(dst, avc, pavc->anon_vma);
  177. }
  178. return 0;
  179. enomem_failure:
  180. unlink_anon_vmas(dst);
  181. return -ENOMEM;
  182. }
  183. /*
  184. * Attach vma to its own anon_vma, as well as to the anon_vmas that
  185. * the corresponding VMA in the parent process is attached to.
  186. * Returns 0 on success, non-zero on failure.
  187. */
  188. int anon_vma_fork(struct vm_area_struct *vma, struct vm_area_struct *pvma)
  189. {
  190. struct anon_vma_chain *avc;
  191. struct anon_vma *anon_vma;
  192. /* Don't bother if the parent process has no anon_vma here. */
  193. if (!pvma->anon_vma)
  194. return 0;
  195. /*
  196. * First, attach the new VMA to the parent VMA's anon_vmas,
  197. * so rmap can find non-COWed pages in child processes.
  198. */
  199. if (anon_vma_clone(vma, pvma))
  200. return -ENOMEM;
  201. /* Then add our own anon_vma. */
  202. anon_vma = anon_vma_alloc();
  203. if (!anon_vma)
  204. goto out_error;
  205. avc = anon_vma_chain_alloc();
  206. if (!avc)
  207. goto out_error_free_anon_vma;
  208. /*
  209. * The root anon_vma's spinlock is the lock actually used when we
  210. * lock any of the anon_vmas in this anon_vma tree.
  211. */
  212. anon_vma->root = pvma->anon_vma->root;
  213. /*
  214. * With KSM refcounts, an anon_vma can stay around longer than the
  215. * process it belongs to. The root anon_vma needs to be pinned
  216. * until this anon_vma is freed, because the lock lives in the root.
  217. */
  218. get_anon_vma(anon_vma->root);
  219. /* Mark this anon_vma as the one where our new (COWed) pages go. */
  220. vma->anon_vma = anon_vma;
  221. anon_vma_chain_link(vma, avc, anon_vma);
  222. return 0;
  223. out_error_free_anon_vma:
  224. anon_vma_free(anon_vma);
  225. out_error:
  226. unlink_anon_vmas(vma);
  227. return -ENOMEM;
  228. }
  229. static void anon_vma_unlink(struct anon_vma_chain *anon_vma_chain)
  230. {
  231. struct anon_vma *anon_vma = anon_vma_chain->anon_vma;
  232. int empty;
  233. /* If anon_vma_fork fails, we can get an empty anon_vma_chain. */
  234. if (!anon_vma)
  235. return;
  236. anon_vma_lock(anon_vma);
  237. list_del(&anon_vma_chain->same_anon_vma);
  238. /* We must garbage collect the anon_vma if it's empty */
  239. empty = list_empty(&anon_vma->head) && !anonvma_external_refcount(anon_vma);
  240. anon_vma_unlock(anon_vma);
  241. if (empty) {
  242. /* We no longer need the root anon_vma */
  243. if (anon_vma->root != anon_vma)
  244. drop_anon_vma(anon_vma->root);
  245. anon_vma_free(anon_vma);
  246. }
  247. }
  248. void unlink_anon_vmas(struct vm_area_struct *vma)
  249. {
  250. struct anon_vma_chain *avc, *next;
  251. /*
  252. * Unlink each anon_vma chained to the VMA. This list is ordered
  253. * from newest to oldest, ensuring the root anon_vma gets freed last.
  254. */
  255. list_for_each_entry_safe(avc, next, &vma->anon_vma_chain, same_vma) {
  256. anon_vma_unlink(avc);
  257. list_del(&avc->same_vma);
  258. anon_vma_chain_free(avc);
  259. }
  260. }
  261. static void anon_vma_ctor(void *data)
  262. {
  263. struct anon_vma *anon_vma = data;
  264. spin_lock_init(&anon_vma->lock);
  265. anonvma_external_refcount_init(anon_vma);
  266. INIT_LIST_HEAD(&anon_vma->head);
  267. }
  268. void __init anon_vma_init(void)
  269. {
  270. anon_vma_cachep = kmem_cache_create("anon_vma", sizeof(struct anon_vma),
  271. 0, SLAB_DESTROY_BY_RCU|SLAB_PANIC, anon_vma_ctor);
  272. anon_vma_chain_cachep = KMEM_CACHE(anon_vma_chain, SLAB_PANIC);
  273. }
  274. /*
  275. * Getting a lock on a stable anon_vma from a page off the LRU is
  276. * tricky: page_lock_anon_vma rely on RCU to guard against the races.
  277. */
  278. struct anon_vma *page_lock_anon_vma(struct page *page)
  279. {
  280. struct anon_vma *anon_vma, *root_anon_vma;
  281. unsigned long anon_mapping;
  282. rcu_read_lock();
  283. anon_mapping = (unsigned long) ACCESS_ONCE(page->mapping);
  284. if ((anon_mapping & PAGE_MAPPING_FLAGS) != PAGE_MAPPING_ANON)
  285. goto out;
  286. if (!page_mapped(page))
  287. goto out;
  288. anon_vma = (struct anon_vma *) (anon_mapping - PAGE_MAPPING_ANON);
  289. root_anon_vma = ACCESS_ONCE(anon_vma->root);
  290. spin_lock(&root_anon_vma->lock);
  291. /*
  292. * If this page is still mapped, then its anon_vma cannot have been
  293. * freed. But if it has been unmapped, we have no security against
  294. * the anon_vma structure being freed and reused (for another anon_vma:
  295. * SLAB_DESTROY_BY_RCU guarantees that - so the spin_lock above cannot
  296. * corrupt): with anon_vma_prepare() or anon_vma_fork() redirecting
  297. * anon_vma->root before page_unlock_anon_vma() is called to unlock.
  298. */
  299. if (page_mapped(page))
  300. return anon_vma;
  301. spin_unlock(&root_anon_vma->lock);
  302. out:
  303. rcu_read_unlock();
  304. return NULL;
  305. }
  306. void page_unlock_anon_vma(struct anon_vma *anon_vma)
  307. {
  308. anon_vma_unlock(anon_vma);
  309. rcu_read_unlock();
  310. }
  311. /*
  312. * At what user virtual address is page expected in @vma?
  313. * Returns virtual address or -EFAULT if page's index/offset is not
  314. * within the range mapped the @vma.
  315. */
  316. static inline unsigned long
  317. vma_address(struct page *page, struct vm_area_struct *vma)
  318. {
  319. pgoff_t pgoff = page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
  320. unsigned long address;
  321. if (unlikely(is_vm_hugetlb_page(vma)))
  322. pgoff = page->index << huge_page_order(page_hstate(page));
  323. address = vma->vm_start + ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
  324. if (unlikely(address < vma->vm_start || address >= vma->vm_end)) {
  325. /* page should be within @vma mapping range */
  326. return -EFAULT;
  327. }
  328. return address;
  329. }
  330. /*
  331. * At what user virtual address is page expected in vma?
  332. * Caller should check the page is actually part of the vma.
  333. */
  334. unsigned long page_address_in_vma(struct page *page, struct vm_area_struct *vma)
  335. {
  336. if (PageAnon(page)) {
  337. struct anon_vma *page__anon_vma = page_anon_vma(page);
  338. /*
  339. * Note: swapoff's unuse_vma() is more efficient with this
  340. * check, and needs it to match anon_vma when KSM is active.
  341. */
  342. if (!vma->anon_vma || !page__anon_vma ||
  343. vma->anon_vma->root != page__anon_vma->root)
  344. return -EFAULT;
  345. } else if (page->mapping && !(vma->vm_flags & VM_NONLINEAR)) {
  346. if (!vma->vm_file ||
  347. vma->vm_file->f_mapping != page->mapping)
  348. return -EFAULT;
  349. } else
  350. return -EFAULT;
  351. return vma_address(page, vma);
  352. }
  353. /*
  354. * Check that @page is mapped at @address into @mm.
  355. *
  356. * If @sync is false, page_check_address may perform a racy check to avoid
  357. * the page table lock when the pte is not present (helpful when reclaiming
  358. * highly shared pages).
  359. *
  360. * On success returns with pte mapped and locked.
  361. */
  362. pte_t *page_check_address(struct page *page, struct mm_struct *mm,
  363. unsigned long address, spinlock_t **ptlp, int sync)
  364. {
  365. pgd_t *pgd;
  366. pud_t *pud;
  367. pmd_t *pmd;
  368. pte_t *pte;
  369. spinlock_t *ptl;
  370. if (unlikely(PageHuge(page))) {
  371. pte = huge_pte_offset(mm, address);
  372. ptl = &mm->page_table_lock;
  373. goto check;
  374. }
  375. pgd = pgd_offset(mm, address);
  376. if (!pgd_present(*pgd))
  377. return NULL;
  378. pud = pud_offset(pgd, address);
  379. if (!pud_present(*pud))
  380. return NULL;
  381. pmd = pmd_offset(pud, address);
  382. if (!pmd_present(*pmd))
  383. return NULL;
  384. pte = pte_offset_map(pmd, address);
  385. /* Make a quick check before getting the lock */
  386. if (!sync && !pte_present(*pte)) {
  387. pte_unmap(pte);
  388. return NULL;
  389. }
  390. ptl = pte_lockptr(mm, pmd);
  391. check:
  392. spin_lock(ptl);
  393. if (pte_present(*pte) && page_to_pfn(page) == pte_pfn(*pte)) {
  394. *ptlp = ptl;
  395. return pte;
  396. }
  397. pte_unmap_unlock(pte, ptl);
  398. return NULL;
  399. }
  400. /**
  401. * page_mapped_in_vma - check whether a page is really mapped in a VMA
  402. * @page: the page to test
  403. * @vma: the VMA to test
  404. *
  405. * Returns 1 if the page is mapped into the page tables of the VMA, 0
  406. * if the page is not mapped into the page tables of this VMA. Only
  407. * valid for normal file or anonymous VMAs.
  408. */
  409. int page_mapped_in_vma(struct page *page, struct vm_area_struct *vma)
  410. {
  411. unsigned long address;
  412. pte_t *pte;
  413. spinlock_t *ptl;
  414. address = vma_address(page, vma);
  415. if (address == -EFAULT) /* out of vma range */
  416. return 0;
  417. pte = page_check_address(page, vma->vm_mm, address, &ptl, 1);
  418. if (!pte) /* the page is not in this mm */
  419. return 0;
  420. pte_unmap_unlock(pte, ptl);
  421. return 1;
  422. }
  423. /*
  424. * Subfunctions of page_referenced: page_referenced_one called
  425. * repeatedly from either page_referenced_anon or page_referenced_file.
  426. */
  427. int page_referenced_one(struct page *page, struct vm_area_struct *vma,
  428. unsigned long address, unsigned int *mapcount,
  429. unsigned long *vm_flags)
  430. {
  431. struct mm_struct *mm = vma->vm_mm;
  432. pte_t *pte;
  433. spinlock_t *ptl;
  434. int referenced = 0;
  435. pte = page_check_address(page, mm, address, &ptl, 0);
  436. if (!pte)
  437. goto out;
  438. /*
  439. * Don't want to elevate referenced for mlocked page that gets this far,
  440. * in order that it progresses to try_to_unmap and is moved to the
  441. * unevictable list.
  442. */
  443. if (vma->vm_flags & VM_LOCKED) {
  444. *mapcount = 1; /* break early from loop */
  445. *vm_flags |= VM_LOCKED;
  446. goto out_unmap;
  447. }
  448. if (ptep_clear_flush_young_notify(vma, address, pte)) {
  449. /*
  450. * Don't treat a reference through a sequentially read
  451. * mapping as such. If the page has been used in
  452. * another mapping, we will catch it; if this other
  453. * mapping is already gone, the unmap path will have
  454. * set PG_referenced or activated the page.
  455. */
  456. if (likely(!VM_SequentialReadHint(vma)))
  457. referenced++;
  458. }
  459. /* Pretend the page is referenced if the task has the
  460. swap token and is in the middle of a page fault. */
  461. if (mm != current->mm && has_swap_token(mm) &&
  462. rwsem_is_locked(&mm->mmap_sem))
  463. referenced++;
  464. out_unmap:
  465. (*mapcount)--;
  466. pte_unmap_unlock(pte, ptl);
  467. if (referenced)
  468. *vm_flags |= vma->vm_flags;
  469. out:
  470. return referenced;
  471. }
  472. static int page_referenced_anon(struct page *page,
  473. struct mem_cgroup *mem_cont,
  474. unsigned long *vm_flags)
  475. {
  476. unsigned int mapcount;
  477. struct anon_vma *anon_vma;
  478. struct anon_vma_chain *avc;
  479. int referenced = 0;
  480. anon_vma = page_lock_anon_vma(page);
  481. if (!anon_vma)
  482. return referenced;
  483. mapcount = page_mapcount(page);
  484. list_for_each_entry(avc, &anon_vma->head, same_anon_vma) {
  485. struct vm_area_struct *vma = avc->vma;
  486. unsigned long address = vma_address(page, vma);
  487. if (address == -EFAULT)
  488. continue;
  489. /*
  490. * If we are reclaiming on behalf of a cgroup, skip
  491. * counting on behalf of references from different
  492. * cgroups
  493. */
  494. if (mem_cont && !mm_match_cgroup(vma->vm_mm, mem_cont))
  495. continue;
  496. referenced += page_referenced_one(page, vma, address,
  497. &mapcount, vm_flags);
  498. if (!mapcount)
  499. break;
  500. }
  501. page_unlock_anon_vma(anon_vma);
  502. return referenced;
  503. }
  504. /**
  505. * page_referenced_file - referenced check for object-based rmap
  506. * @page: the page we're checking references on.
  507. * @mem_cont: target memory controller
  508. * @vm_flags: collect encountered vma->vm_flags who actually referenced the page
  509. *
  510. * For an object-based mapped page, find all the places it is mapped and
  511. * check/clear the referenced flag. This is done by following the page->mapping
  512. * pointer, then walking the chain of vmas it holds. It returns the number
  513. * of references it found.
  514. *
  515. * This function is only called from page_referenced for object-based pages.
  516. */
  517. static int page_referenced_file(struct page *page,
  518. struct mem_cgroup *mem_cont,
  519. unsigned long *vm_flags)
  520. {
  521. unsigned int mapcount;
  522. struct address_space *mapping = page->mapping;
  523. pgoff_t pgoff = page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
  524. struct vm_area_struct *vma;
  525. struct prio_tree_iter iter;
  526. int referenced = 0;
  527. /*
  528. * The caller's checks on page->mapping and !PageAnon have made
  529. * sure that this is a file page: the check for page->mapping
  530. * excludes the case just before it gets set on an anon page.
  531. */
  532. BUG_ON(PageAnon(page));
  533. /*
  534. * The page lock not only makes sure that page->mapping cannot
  535. * suddenly be NULLified by truncation, it makes sure that the
  536. * structure at mapping cannot be freed and reused yet,
  537. * so we can safely take mapping->i_mmap_lock.
  538. */
  539. BUG_ON(!PageLocked(page));
  540. spin_lock(&mapping->i_mmap_lock);
  541. /*
  542. * i_mmap_lock does not stabilize mapcount at all, but mapcount
  543. * is more likely to be accurate if we note it after spinning.
  544. */
  545. mapcount = page_mapcount(page);
  546. vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
  547. unsigned long address = vma_address(page, vma);
  548. if (address == -EFAULT)
  549. continue;
  550. /*
  551. * If we are reclaiming on behalf of a cgroup, skip
  552. * counting on behalf of references from different
  553. * cgroups
  554. */
  555. if (mem_cont && !mm_match_cgroup(vma->vm_mm, mem_cont))
  556. continue;
  557. referenced += page_referenced_one(page, vma, address,
  558. &mapcount, vm_flags);
  559. if (!mapcount)
  560. break;
  561. }
  562. spin_unlock(&mapping->i_mmap_lock);
  563. return referenced;
  564. }
  565. /**
  566. * page_referenced - test if the page was referenced
  567. * @page: the page to test
  568. * @is_locked: caller holds lock on the page
  569. * @mem_cont: target memory controller
  570. * @vm_flags: collect encountered vma->vm_flags who actually referenced the page
  571. *
  572. * Quick test_and_clear_referenced for all mappings to a page,
  573. * returns the number of ptes which referenced the page.
  574. */
  575. int page_referenced(struct page *page,
  576. int is_locked,
  577. struct mem_cgroup *mem_cont,
  578. unsigned long *vm_flags)
  579. {
  580. int referenced = 0;
  581. int we_locked = 0;
  582. *vm_flags = 0;
  583. if (page_mapped(page) && page_rmapping(page)) {
  584. if (!is_locked && (!PageAnon(page) || PageKsm(page))) {
  585. we_locked = trylock_page(page);
  586. if (!we_locked) {
  587. referenced++;
  588. goto out;
  589. }
  590. }
  591. if (unlikely(PageKsm(page)))
  592. referenced += page_referenced_ksm(page, mem_cont,
  593. vm_flags);
  594. else if (PageAnon(page))
  595. referenced += page_referenced_anon(page, mem_cont,
  596. vm_flags);
  597. else if (page->mapping)
  598. referenced += page_referenced_file(page, mem_cont,
  599. vm_flags);
  600. if (we_locked)
  601. unlock_page(page);
  602. }
  603. out:
  604. if (page_test_and_clear_young(page))
  605. referenced++;
  606. return referenced;
  607. }
  608. static int page_mkclean_one(struct page *page, struct vm_area_struct *vma,
  609. unsigned long address)
  610. {
  611. struct mm_struct *mm = vma->vm_mm;
  612. pte_t *pte;
  613. spinlock_t *ptl;
  614. int ret = 0;
  615. pte = page_check_address(page, mm, address, &ptl, 1);
  616. if (!pte)
  617. goto out;
  618. if (pte_dirty(*pte) || pte_write(*pte)) {
  619. pte_t entry;
  620. flush_cache_page(vma, address, pte_pfn(*pte));
  621. entry = ptep_clear_flush_notify(vma, address, pte);
  622. entry = pte_wrprotect(entry);
  623. entry = pte_mkclean(entry);
  624. set_pte_at(mm, address, pte, entry);
  625. ret = 1;
  626. }
  627. pte_unmap_unlock(pte, ptl);
  628. out:
  629. return ret;
  630. }
  631. static int page_mkclean_file(struct address_space *mapping, struct page *page)
  632. {
  633. pgoff_t pgoff = page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
  634. struct vm_area_struct *vma;
  635. struct prio_tree_iter iter;
  636. int ret = 0;
  637. BUG_ON(PageAnon(page));
  638. spin_lock(&mapping->i_mmap_lock);
  639. vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
  640. if (vma->vm_flags & VM_SHARED) {
  641. unsigned long address = vma_address(page, vma);
  642. if (address == -EFAULT)
  643. continue;
  644. ret += page_mkclean_one(page, vma, address);
  645. }
  646. }
  647. spin_unlock(&mapping->i_mmap_lock);
  648. return ret;
  649. }
  650. int page_mkclean(struct page *page)
  651. {
  652. int ret = 0;
  653. BUG_ON(!PageLocked(page));
  654. if (page_mapped(page)) {
  655. struct address_space *mapping = page_mapping(page);
  656. if (mapping) {
  657. ret = page_mkclean_file(mapping, page);
  658. if (page_test_dirty(page)) {
  659. page_clear_dirty(page);
  660. ret = 1;
  661. }
  662. }
  663. }
  664. return ret;
  665. }
  666. EXPORT_SYMBOL_GPL(page_mkclean);
  667. /**
  668. * page_move_anon_rmap - move a page to our anon_vma
  669. * @page: the page to move to our anon_vma
  670. * @vma: the vma the page belongs to
  671. * @address: the user virtual address mapped
  672. *
  673. * When a page belongs exclusively to one process after a COW event,
  674. * that page can be moved into the anon_vma that belongs to just that
  675. * process, so the rmap code will not search the parent or sibling
  676. * processes.
  677. */
  678. void page_move_anon_rmap(struct page *page,
  679. struct vm_area_struct *vma, unsigned long address)
  680. {
  681. struct anon_vma *anon_vma = vma->anon_vma;
  682. VM_BUG_ON(!PageLocked(page));
  683. VM_BUG_ON(!anon_vma);
  684. VM_BUG_ON(page->index != linear_page_index(vma, address));
  685. anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON;
  686. page->mapping = (struct address_space *) anon_vma;
  687. }
  688. /**
  689. * __page_set_anon_rmap - setup new anonymous rmap
  690. * @page: the page to add the mapping to
  691. * @vma: the vm area in which the mapping is added
  692. * @address: the user virtual address mapped
  693. * @exclusive: the page is exclusively owned by the current process
  694. */
  695. static void __page_set_anon_rmap(struct page *page,
  696. struct vm_area_struct *vma, unsigned long address, int exclusive)
  697. {
  698. struct anon_vma *anon_vma = vma->anon_vma;
  699. BUG_ON(!anon_vma);
  700. /*
  701. * If the page isn't exclusively mapped into this vma,
  702. * we must use the _oldest_ possible anon_vma for the
  703. * page mapping!
  704. */
  705. if (!exclusive) {
  706. if (PageAnon(page))
  707. return;
  708. anon_vma = anon_vma->root;
  709. } else {
  710. /*
  711. * In this case, swapped-out-but-not-discarded swap-cache
  712. * is remapped. So, no need to update page->mapping here.
  713. * We convice anon_vma poitned by page->mapping is not obsolete
  714. * because vma->anon_vma is necessary to be a family of it.
  715. */
  716. if (PageAnon(page))
  717. return;
  718. }
  719. anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON;
  720. page->mapping = (struct address_space *) anon_vma;
  721. page->index = linear_page_index(vma, address);
  722. }
  723. /**
  724. * __page_check_anon_rmap - sanity check anonymous rmap addition
  725. * @page: the page to add the mapping to
  726. * @vma: the vm area in which the mapping is added
  727. * @address: the user virtual address mapped
  728. */
  729. static void __page_check_anon_rmap(struct page *page,
  730. struct vm_area_struct *vma, unsigned long address)
  731. {
  732. #ifdef CONFIG_DEBUG_VM
  733. /*
  734. * The page's anon-rmap details (mapping and index) are guaranteed to
  735. * be set up correctly at this point.
  736. *
  737. * We have exclusion against page_add_anon_rmap because the caller
  738. * always holds the page locked, except if called from page_dup_rmap,
  739. * in which case the page is already known to be setup.
  740. *
  741. * We have exclusion against page_add_new_anon_rmap because those pages
  742. * are initially only visible via the pagetables, and the pte is locked
  743. * over the call to page_add_new_anon_rmap.
  744. */
  745. BUG_ON(page_anon_vma(page)->root != vma->anon_vma->root);
  746. BUG_ON(page->index != linear_page_index(vma, address));
  747. #endif
  748. }
  749. /**
  750. * page_add_anon_rmap - add pte mapping to an anonymous page
  751. * @page: the page to add the mapping to
  752. * @vma: the vm area in which the mapping is added
  753. * @address: the user virtual address mapped
  754. *
  755. * The caller needs to hold the pte lock, and the page must be locked in
  756. * the anon_vma case: to serialize mapping,index checking after setting,
  757. * and to ensure that PageAnon is not being upgraded racily to PageKsm
  758. * (but PageKsm is never downgraded to PageAnon).
  759. */
  760. void page_add_anon_rmap(struct page *page,
  761. struct vm_area_struct *vma, unsigned long address)
  762. {
  763. do_page_add_anon_rmap(page, vma, address, 0);
  764. }
  765. /*
  766. * Special version of the above for do_swap_page, which often runs
  767. * into pages that are exclusively owned by the current process.
  768. * Everybody else should continue to use page_add_anon_rmap above.
  769. */
  770. void do_page_add_anon_rmap(struct page *page,
  771. struct vm_area_struct *vma, unsigned long address, int exclusive)
  772. {
  773. int first = atomic_inc_and_test(&page->_mapcount);
  774. if (first)
  775. __inc_zone_page_state(page, NR_ANON_PAGES);
  776. if (unlikely(PageKsm(page)))
  777. return;
  778. VM_BUG_ON(!PageLocked(page));
  779. VM_BUG_ON(address < vma->vm_start || address >= vma->vm_end);
  780. if (first)
  781. __page_set_anon_rmap(page, vma, address, exclusive);
  782. else
  783. __page_check_anon_rmap(page, vma, address);
  784. }
  785. /**
  786. * page_add_new_anon_rmap - add pte mapping to a new anonymous page
  787. * @page: the page to add the mapping to
  788. * @vma: the vm area in which the mapping is added
  789. * @address: the user virtual address mapped
  790. *
  791. * Same as page_add_anon_rmap but must only be called on *new* pages.
  792. * This means the inc-and-test can be bypassed.
  793. * Page does not have to be locked.
  794. */
  795. void page_add_new_anon_rmap(struct page *page,
  796. struct vm_area_struct *vma, unsigned long address)
  797. {
  798. VM_BUG_ON(address < vma->vm_start || address >= vma->vm_end);
  799. SetPageSwapBacked(page);
  800. atomic_set(&page->_mapcount, 0); /* increment count (starts at -1) */
  801. __inc_zone_page_state(page, NR_ANON_PAGES);
  802. __page_set_anon_rmap(page, vma, address, 1);
  803. if (page_evictable(page, vma))
  804. lru_cache_add_lru(page, LRU_ACTIVE_ANON);
  805. else
  806. add_page_to_unevictable_list(page);
  807. }
  808. /**
  809. * page_add_file_rmap - add pte mapping to a file page
  810. * @page: the page to add the mapping to
  811. *
  812. * The caller needs to hold the pte lock.
  813. */
  814. void page_add_file_rmap(struct page *page)
  815. {
  816. if (atomic_inc_and_test(&page->_mapcount)) {
  817. __inc_zone_page_state(page, NR_FILE_MAPPED);
  818. mem_cgroup_update_file_mapped(page, 1);
  819. }
  820. }
  821. /**
  822. * page_remove_rmap - take down pte mapping from a page
  823. * @page: page to remove mapping from
  824. *
  825. * The caller needs to hold the pte lock.
  826. */
  827. void page_remove_rmap(struct page *page)
  828. {
  829. /* page still mapped by someone else? */
  830. if (!atomic_add_negative(-1, &page->_mapcount))
  831. return;
  832. /*
  833. * Now that the last pte has gone, s390 must transfer dirty
  834. * flag from storage key to struct page. We can usually skip
  835. * this if the page is anon, so about to be freed; but perhaps
  836. * not if it's in swapcache - there might be another pte slot
  837. * containing the swap entry, but page not yet written to swap.
  838. */
  839. if ((!PageAnon(page) || PageSwapCache(page)) && page_test_dirty(page)) {
  840. page_clear_dirty(page);
  841. set_page_dirty(page);
  842. }
  843. /*
  844. * Hugepages are not counted in NR_ANON_PAGES nor NR_FILE_MAPPED
  845. * and not charged by memcg for now.
  846. */
  847. if (unlikely(PageHuge(page)))
  848. return;
  849. if (PageAnon(page)) {
  850. mem_cgroup_uncharge_page(page);
  851. __dec_zone_page_state(page, NR_ANON_PAGES);
  852. } else {
  853. __dec_zone_page_state(page, NR_FILE_MAPPED);
  854. mem_cgroup_update_file_mapped(page, -1);
  855. }
  856. /*
  857. * It would be tidy to reset the PageAnon mapping here,
  858. * but that might overwrite a racing page_add_anon_rmap
  859. * which increments mapcount after us but sets mapping
  860. * before us: so leave the reset to free_hot_cold_page,
  861. * and remember that it's only reliable while mapped.
  862. * Leaving it set also helps swapoff to reinstate ptes
  863. * faster for those pages still in swapcache.
  864. */
  865. }
  866. /*
  867. * Subfunctions of try_to_unmap: try_to_unmap_one called
  868. * repeatedly from either try_to_unmap_anon or try_to_unmap_file.
  869. */
  870. int try_to_unmap_one(struct page *page, struct vm_area_struct *vma,
  871. unsigned long address, enum ttu_flags flags)
  872. {
  873. struct mm_struct *mm = vma->vm_mm;
  874. pte_t *pte;
  875. pte_t pteval;
  876. spinlock_t *ptl;
  877. int ret = SWAP_AGAIN;
  878. pte = page_check_address(page, mm, address, &ptl, 0);
  879. if (!pte)
  880. goto out;
  881. /*
  882. * If the page is mlock()d, we cannot swap it out.
  883. * If it's recently referenced (perhaps page_referenced
  884. * skipped over this mm) then we should reactivate it.
  885. */
  886. if (!(flags & TTU_IGNORE_MLOCK)) {
  887. if (vma->vm_flags & VM_LOCKED)
  888. goto out_mlock;
  889. if (TTU_ACTION(flags) == TTU_MUNLOCK)
  890. goto out_unmap;
  891. }
  892. if (!(flags & TTU_IGNORE_ACCESS)) {
  893. if (ptep_clear_flush_young_notify(vma, address, pte)) {
  894. ret = SWAP_FAIL;
  895. goto out_unmap;
  896. }
  897. }
  898. /* Nuke the page table entry. */
  899. flush_cache_page(vma, address, page_to_pfn(page));
  900. pteval = ptep_clear_flush_notify(vma, address, pte);
  901. /* Move the dirty bit to the physical page now the pte is gone. */
  902. if (pte_dirty(pteval))
  903. set_page_dirty(page);
  904. /* Update high watermark before we lower rss */
  905. update_hiwater_rss(mm);
  906. if (PageHWPoison(page) && !(flags & TTU_IGNORE_HWPOISON)) {
  907. if (PageAnon(page))
  908. dec_mm_counter(mm, MM_ANONPAGES);
  909. else
  910. dec_mm_counter(mm, MM_FILEPAGES);
  911. set_pte_at(mm, address, pte,
  912. swp_entry_to_pte(make_hwpoison_entry(page)));
  913. } else if (PageAnon(page)) {
  914. swp_entry_t entry = { .val = page_private(page) };
  915. if (PageSwapCache(page)) {
  916. /*
  917. * Store the swap location in the pte.
  918. * See handle_pte_fault() ...
  919. */
  920. if (swap_duplicate(entry) < 0) {
  921. set_pte_at(mm, address, pte, pteval);
  922. ret = SWAP_FAIL;
  923. goto out_unmap;
  924. }
  925. if (list_empty(&mm->mmlist)) {
  926. spin_lock(&mmlist_lock);
  927. if (list_empty(&mm->mmlist))
  928. list_add(&mm->mmlist, &init_mm.mmlist);
  929. spin_unlock(&mmlist_lock);
  930. }
  931. dec_mm_counter(mm, MM_ANONPAGES);
  932. inc_mm_counter(mm, MM_SWAPENTS);
  933. } else if (PAGE_MIGRATION) {
  934. /*
  935. * Store the pfn of the page in a special migration
  936. * pte. do_swap_page() will wait until the migration
  937. * pte is removed and then restart fault handling.
  938. */
  939. BUG_ON(TTU_ACTION(flags) != TTU_MIGRATION);
  940. entry = make_migration_entry(page, pte_write(pteval));
  941. }
  942. set_pte_at(mm, address, pte, swp_entry_to_pte(entry));
  943. BUG_ON(pte_file(*pte));
  944. } else if (PAGE_MIGRATION && (TTU_ACTION(flags) == TTU_MIGRATION)) {
  945. /* Establish migration entry for a file page */
  946. swp_entry_t entry;
  947. entry = make_migration_entry(page, pte_write(pteval));
  948. set_pte_at(mm, address, pte, swp_entry_to_pte(entry));
  949. } else
  950. dec_mm_counter(mm, MM_FILEPAGES);
  951. page_remove_rmap(page);
  952. page_cache_release(page);
  953. out_unmap:
  954. pte_unmap_unlock(pte, ptl);
  955. out:
  956. return ret;
  957. out_mlock:
  958. pte_unmap_unlock(pte, ptl);
  959. /*
  960. * We need mmap_sem locking, Otherwise VM_LOCKED check makes
  961. * unstable result and race. Plus, We can't wait here because
  962. * we now hold anon_vma->lock or mapping->i_mmap_lock.
  963. * if trylock failed, the page remain in evictable lru and later
  964. * vmscan could retry to move the page to unevictable lru if the
  965. * page is actually mlocked.
  966. */
  967. if (down_read_trylock(&vma->vm_mm->mmap_sem)) {
  968. if (vma->vm_flags & VM_LOCKED) {
  969. mlock_vma_page(page);
  970. ret = SWAP_MLOCK;
  971. }
  972. up_read(&vma->vm_mm->mmap_sem);
  973. }
  974. return ret;
  975. }
  976. /*
  977. * objrmap doesn't work for nonlinear VMAs because the assumption that
  978. * offset-into-file correlates with offset-into-virtual-addresses does not hold.
  979. * Consequently, given a particular page and its ->index, we cannot locate the
  980. * ptes which are mapping that page without an exhaustive linear search.
  981. *
  982. * So what this code does is a mini "virtual scan" of each nonlinear VMA which
  983. * maps the file to which the target page belongs. The ->vm_private_data field
  984. * holds the current cursor into that scan. Successive searches will circulate
  985. * around the vma's virtual address space.
  986. *
  987. * So as more replacement pressure is applied to the pages in a nonlinear VMA,
  988. * more scanning pressure is placed against them as well. Eventually pages
  989. * will become fully unmapped and are eligible for eviction.
  990. *
  991. * For very sparsely populated VMAs this is a little inefficient - chances are
  992. * there there won't be many ptes located within the scan cluster. In this case
  993. * maybe we could scan further - to the end of the pte page, perhaps.
  994. *
  995. * Mlocked pages: check VM_LOCKED under mmap_sem held for read, if we can
  996. * acquire it without blocking. If vma locked, mlock the pages in the cluster,
  997. * rather than unmapping them. If we encounter the "check_page" that vmscan is
  998. * trying to unmap, return SWAP_MLOCK, else default SWAP_AGAIN.
  999. */
  1000. #define CLUSTER_SIZE min(32*PAGE_SIZE, PMD_SIZE)
  1001. #define CLUSTER_MASK (~(CLUSTER_SIZE - 1))
  1002. static int try_to_unmap_cluster(unsigned long cursor, unsigned int *mapcount,
  1003. struct vm_area_struct *vma, struct page *check_page)
  1004. {
  1005. struct mm_struct *mm = vma->vm_mm;
  1006. pgd_t *pgd;
  1007. pud_t *pud;
  1008. pmd_t *pmd;
  1009. pte_t *pte;
  1010. pte_t pteval;
  1011. spinlock_t *ptl;
  1012. struct page *page;
  1013. unsigned long address;
  1014. unsigned long end;
  1015. int ret = SWAP_AGAIN;
  1016. int locked_vma = 0;
  1017. address = (vma->vm_start + cursor) & CLUSTER_MASK;
  1018. end = address + CLUSTER_SIZE;
  1019. if (address < vma->vm_start)
  1020. address = vma->vm_start;
  1021. if (end > vma->vm_end)
  1022. end = vma->vm_end;
  1023. pgd = pgd_offset(mm, address);
  1024. if (!pgd_present(*pgd))
  1025. return ret;
  1026. pud = pud_offset(pgd, address);
  1027. if (!pud_present(*pud))
  1028. return ret;
  1029. pmd = pmd_offset(pud, address);
  1030. if (!pmd_present(*pmd))
  1031. return ret;
  1032. /*
  1033. * If we can acquire the mmap_sem for read, and vma is VM_LOCKED,
  1034. * keep the sem while scanning the cluster for mlocking pages.
  1035. */
  1036. if (down_read_trylock(&vma->vm_mm->mmap_sem)) {
  1037. locked_vma = (vma->vm_flags & VM_LOCKED);
  1038. if (!locked_vma)
  1039. up_read(&vma->vm_mm->mmap_sem); /* don't need it */
  1040. }
  1041. pte = pte_offset_map_lock(mm, pmd, address, &ptl);
  1042. /* Update high watermark before we lower rss */
  1043. update_hiwater_rss(mm);
  1044. for (; address < end; pte++, address += PAGE_SIZE) {
  1045. if (!pte_present(*pte))
  1046. continue;
  1047. page = vm_normal_page(vma, address, *pte);
  1048. BUG_ON(!page || PageAnon(page));
  1049. if (locked_vma) {
  1050. mlock_vma_page(page); /* no-op if already mlocked */
  1051. if (page == check_page)
  1052. ret = SWAP_MLOCK;
  1053. continue; /* don't unmap */
  1054. }
  1055. if (ptep_clear_flush_young_notify(vma, address, pte))
  1056. continue;
  1057. /* Nuke the page table entry. */
  1058. flush_cache_page(vma, address, pte_pfn(*pte));
  1059. pteval = ptep_clear_flush_notify(vma, address, pte);
  1060. /* If nonlinear, store the file page offset in the pte. */
  1061. if (page->index != linear_page_index(vma, address))
  1062. set_pte_at(mm, address, pte, pgoff_to_pte(page->index));
  1063. /* Move the dirty bit to the physical page now the pte is gone. */
  1064. if (pte_dirty(pteval))
  1065. set_page_dirty(page);
  1066. page_remove_rmap(page);
  1067. page_cache_release(page);
  1068. dec_mm_counter(mm, MM_FILEPAGES);
  1069. (*mapcount)--;
  1070. }
  1071. pte_unmap_unlock(pte - 1, ptl);
  1072. if (locked_vma)
  1073. up_read(&vma->vm_mm->mmap_sem);
  1074. return ret;
  1075. }
  1076. static bool is_vma_temporary_stack(struct vm_area_struct *vma)
  1077. {
  1078. int maybe_stack = vma->vm_flags & (VM_GROWSDOWN | VM_GROWSUP);
  1079. if (!maybe_stack)
  1080. return false;
  1081. if ((vma->vm_flags & VM_STACK_INCOMPLETE_SETUP) ==
  1082. VM_STACK_INCOMPLETE_SETUP)
  1083. return true;
  1084. return false;
  1085. }
  1086. /**
  1087. * try_to_unmap_anon - unmap or unlock anonymous page using the object-based
  1088. * rmap method
  1089. * @page: the page to unmap/unlock
  1090. * @flags: action and flags
  1091. *
  1092. * Find all the mappings of a page using the mapping pointer and the vma chains
  1093. * contained in the anon_vma struct it points to.
  1094. *
  1095. * This function is only called from try_to_unmap/try_to_munlock for
  1096. * anonymous pages.
  1097. * When called from try_to_munlock(), the mmap_sem of the mm containing the vma
  1098. * where the page was found will be held for write. So, we won't recheck
  1099. * vm_flags for that VMA. That should be OK, because that vma shouldn't be
  1100. * 'LOCKED.
  1101. */
  1102. static int try_to_unmap_anon(struct page *page, enum ttu_flags flags)
  1103. {
  1104. struct anon_vma *anon_vma;
  1105. struct anon_vma_chain *avc;
  1106. int ret = SWAP_AGAIN;
  1107. anon_vma = page_lock_anon_vma(page);
  1108. if (!anon_vma)
  1109. return ret;
  1110. list_for_each_entry(avc, &anon_vma->head, same_anon_vma) {
  1111. struct vm_area_struct *vma = avc->vma;
  1112. unsigned long address;
  1113. /*
  1114. * During exec, a temporary VMA is setup and later moved.
  1115. * The VMA is moved under the anon_vma lock but not the
  1116. * page tables leading to a race where migration cannot
  1117. * find the migration ptes. Rather than increasing the
  1118. * locking requirements of exec(), migration skips
  1119. * temporary VMAs until after exec() completes.
  1120. */
  1121. if (PAGE_MIGRATION && (flags & TTU_MIGRATION) &&
  1122. is_vma_temporary_stack(vma))
  1123. continue;
  1124. address = vma_address(page, vma);
  1125. if (address == -EFAULT)
  1126. continue;
  1127. ret = try_to_unmap_one(page, vma, address, flags);
  1128. if (ret != SWAP_AGAIN || !page_mapped(page))
  1129. break;
  1130. }
  1131. page_unlock_anon_vma(anon_vma);
  1132. return ret;
  1133. }
  1134. /**
  1135. * try_to_unmap_file - unmap/unlock file page using the object-based rmap method
  1136. * @page: the page to unmap/unlock
  1137. * @flags: action and flags
  1138. *
  1139. * Find all the mappings of a page using the mapping pointer and the vma chains
  1140. * contained in the address_space struct it points to.
  1141. *
  1142. * This function is only called from try_to_unmap/try_to_munlock for
  1143. * object-based pages.
  1144. * When called from try_to_munlock(), the mmap_sem of the mm containing the vma
  1145. * where the page was found will be held for write. So, we won't recheck
  1146. * vm_flags for that VMA. That should be OK, because that vma shouldn't be
  1147. * 'LOCKED.
  1148. */
  1149. static int try_to_unmap_file(struct page *page, enum ttu_flags flags)
  1150. {
  1151. struct address_space *mapping = page->mapping;
  1152. pgoff_t pgoff = page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
  1153. struct vm_area_struct *vma;
  1154. struct prio_tree_iter iter;
  1155. int ret = SWAP_AGAIN;
  1156. unsigned long cursor;
  1157. unsigned long max_nl_cursor = 0;
  1158. unsigned long max_nl_size = 0;
  1159. unsigned int mapcount;
  1160. spin_lock(&mapping->i_mmap_lock);
  1161. vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
  1162. unsigned long address = vma_address(page, vma);
  1163. if (address == -EFAULT)
  1164. continue;
  1165. ret = try_to_unmap_one(page, vma, address, flags);
  1166. if (ret != SWAP_AGAIN || !page_mapped(page))
  1167. goto out;
  1168. }
  1169. if (list_empty(&mapping->i_mmap_nonlinear))
  1170. goto out;
  1171. /*
  1172. * We don't bother to try to find the munlocked page in nonlinears.
  1173. * It's costly. Instead, later, page reclaim logic may call
  1174. * try_to_unmap(TTU_MUNLOCK) and recover PG_mlocked lazily.
  1175. */
  1176. if (TTU_ACTION(flags) == TTU_MUNLOCK)
  1177. goto out;
  1178. list_for_each_entry(vma, &mapping->i_mmap_nonlinear,
  1179. shared.vm_set.list) {
  1180. cursor = (unsigned long) vma->vm_private_data;
  1181. if (cursor > max_nl_cursor)
  1182. max_nl_cursor = cursor;
  1183. cursor = vma->vm_end - vma->vm_start;
  1184. if (cursor > max_nl_size)
  1185. max_nl_size = cursor;
  1186. }
  1187. if (max_nl_size == 0) { /* all nonlinears locked or reserved ? */
  1188. ret = SWAP_FAIL;
  1189. goto out;
  1190. }
  1191. /*
  1192. * We don't try to search for this page in the nonlinear vmas,
  1193. * and page_referenced wouldn't have found it anyway. Instead
  1194. * just walk the nonlinear vmas trying to age and unmap some.
  1195. * The mapcount of the page we came in with is irrelevant,
  1196. * but even so use it as a guide to how hard we should try?
  1197. */
  1198. mapcount = page_mapcount(page);
  1199. if (!mapcount)
  1200. goto out;
  1201. cond_resched_lock(&mapping->i_mmap_lock);
  1202. max_nl_size = (max_nl_size + CLUSTER_SIZE - 1) & CLUSTER_MASK;
  1203. if (max_nl_cursor == 0)
  1204. max_nl_cursor = CLUSTER_SIZE;
  1205. do {
  1206. list_for_each_entry(vma, &mapping->i_mmap_nonlinear,
  1207. shared.vm_set.list) {
  1208. cursor = (unsigned long) vma->vm_private_data;
  1209. while ( cursor < max_nl_cursor &&
  1210. cursor < vma->vm_end - vma->vm_start) {
  1211. if (try_to_unmap_cluster(cursor, &mapcount,
  1212. vma, page) == SWAP_MLOCK)
  1213. ret = SWAP_MLOCK;
  1214. cursor += CLUSTER_SIZE;
  1215. vma->vm_private_data = (void *) cursor;
  1216. if ((int)mapcount <= 0)
  1217. goto out;
  1218. }
  1219. vma->vm_private_data = (void *) max_nl_cursor;
  1220. }
  1221. cond_resched_lock(&mapping->i_mmap_lock);
  1222. max_nl_cursor += CLUSTER_SIZE;
  1223. } while (max_nl_cursor <= max_nl_size);
  1224. /*
  1225. * Don't loop forever (perhaps all the remaining pages are
  1226. * in locked vmas). Reset cursor on all unreserved nonlinear
  1227. * vmas, now forgetting on which ones it had fallen behind.
  1228. */
  1229. list_for_each_entry(vma, &mapping->i_mmap_nonlinear, shared.vm_set.list)
  1230. vma->vm_private_data = NULL;
  1231. out:
  1232. spin_unlock(&mapping->i_mmap_lock);
  1233. return ret;
  1234. }
  1235. /**
  1236. * try_to_unmap - try to remove all page table mappings to a page
  1237. * @page: the page to get unmapped
  1238. * @flags: action and flags
  1239. *
  1240. * Tries to remove all the page table entries which are mapping this
  1241. * page, used in the pageout path. Caller must hold the page lock.
  1242. * Return values are:
  1243. *
  1244. * SWAP_SUCCESS - we succeeded in removing all mappings
  1245. * SWAP_AGAIN - we missed a mapping, try again later
  1246. * SWAP_FAIL - the page is unswappable
  1247. * SWAP_MLOCK - page is mlocked.
  1248. */
  1249. int try_to_unmap(struct page *page, enum ttu_flags flags)
  1250. {
  1251. int ret;
  1252. BUG_ON(!PageLocked(page));
  1253. if (unlikely(PageKsm(page)))
  1254. ret = try_to_unmap_ksm(page, flags);
  1255. else if (PageAnon(page))
  1256. ret = try_to_unmap_anon(page, flags);
  1257. else
  1258. ret = try_to_unmap_file(page, flags);
  1259. if (ret != SWAP_MLOCK && !page_mapped(page))
  1260. ret = SWAP_SUCCESS;
  1261. return ret;
  1262. }
  1263. /**
  1264. * try_to_munlock - try to munlock a page
  1265. * @page: the page to be munlocked
  1266. *
  1267. * Called from munlock code. Checks all of the VMAs mapping the page
  1268. * to make sure nobody else has this page mlocked. The page will be
  1269. * returned with PG_mlocked cleared if no other vmas have it mlocked.
  1270. *
  1271. * Return values are:
  1272. *
  1273. * SWAP_AGAIN - no vma is holding page mlocked, or,
  1274. * SWAP_AGAIN - page mapped in mlocked vma -- couldn't acquire mmap sem
  1275. * SWAP_FAIL - page cannot be located at present
  1276. * SWAP_MLOCK - page is now mlocked.
  1277. */
  1278. int try_to_munlock(struct page *page)
  1279. {
  1280. VM_BUG_ON(!PageLocked(page) || PageLRU(page));
  1281. if (unlikely(PageKsm(page)))
  1282. return try_to_unmap_ksm(page, TTU_MUNLOCK);
  1283. else if (PageAnon(page))
  1284. return try_to_unmap_anon(page, TTU_MUNLOCK);
  1285. else
  1286. return try_to_unmap_file(page, TTU_MUNLOCK);
  1287. }
  1288. #if defined(CONFIG_KSM) || defined(CONFIG_MIGRATION)
  1289. /*
  1290. * Drop an anon_vma refcount, freeing the anon_vma and anon_vma->root
  1291. * if necessary. Be careful to do all the tests under the lock. Once
  1292. * we know we are the last user, nobody else can get a reference and we
  1293. * can do the freeing without the lock.
  1294. */
  1295. void drop_anon_vma(struct anon_vma *anon_vma)
  1296. {
  1297. BUG_ON(atomic_read(&anon_vma->external_refcount) <= 0);
  1298. if (atomic_dec_and_lock(&anon_vma->external_refcount, &anon_vma->root->lock)) {
  1299. struct anon_vma *root = anon_vma->root;
  1300. int empty = list_empty(&anon_vma->head);
  1301. int last_root_user = 0;
  1302. int root_empty = 0;
  1303. /*
  1304. * The refcount on a non-root anon_vma got dropped. Drop
  1305. * the refcount on the root and check if we need to free it.
  1306. */
  1307. if (empty && anon_vma != root) {
  1308. BUG_ON(atomic_read(&root->external_refcount) <= 0);
  1309. last_root_user = atomic_dec_and_test(&root->external_refcount);
  1310. root_empty = list_empty(&root->head);
  1311. }
  1312. anon_vma_unlock(anon_vma);
  1313. if (empty) {
  1314. anon_vma_free(anon_vma);
  1315. if (root_empty && last_root_user)
  1316. anon_vma_free(root);
  1317. }
  1318. }
  1319. }
  1320. #endif
  1321. #ifdef CONFIG_MIGRATION
  1322. /*
  1323. * rmap_walk() and its helpers rmap_walk_anon() and rmap_walk_file():
  1324. * Called by migrate.c to remove migration ptes, but might be used more later.
  1325. */
  1326. static int rmap_walk_anon(struct page *page, int (*rmap_one)(struct page *,
  1327. struct vm_area_struct *, unsigned long, void *), void *arg)
  1328. {
  1329. struct anon_vma *anon_vma;
  1330. struct anon_vma_chain *avc;
  1331. int ret = SWAP_AGAIN;
  1332. /*
  1333. * Note: remove_migration_ptes() cannot use page_lock_anon_vma()
  1334. * because that depends on page_mapped(); but not all its usages
  1335. * are holding mmap_sem. Users without mmap_sem are required to
  1336. * take a reference count to prevent the anon_vma disappearing
  1337. */
  1338. anon_vma = page_anon_vma(page);
  1339. if (!anon_vma)
  1340. return ret;
  1341. anon_vma_lock(anon_vma);
  1342. list_for_each_entry(avc, &anon_vma->head, same_anon_vma) {
  1343. struct vm_area_struct *vma = avc->vma;
  1344. unsigned long address = vma_address(page, vma);
  1345. if (address == -EFAULT)
  1346. continue;
  1347. ret = rmap_one(page, vma, address, arg);
  1348. if (ret != SWAP_AGAIN)
  1349. break;
  1350. }
  1351. anon_vma_unlock(anon_vma);
  1352. return ret;
  1353. }
  1354. static int rmap_walk_file(struct page *page, int (*rmap_one)(struct page *,
  1355. struct vm_area_struct *, unsigned long, void *), void *arg)
  1356. {
  1357. struct address_space *mapping = page->mapping;
  1358. pgoff_t pgoff = page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
  1359. struct vm_area_struct *vma;
  1360. struct prio_tree_iter iter;
  1361. int ret = SWAP_AGAIN;
  1362. if (!mapping)
  1363. return ret;
  1364. spin_lock(&mapping->i_mmap_lock);
  1365. vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
  1366. unsigned long address = vma_address(page, vma);
  1367. if (address == -EFAULT)
  1368. continue;
  1369. ret = rmap_one(page, vma, address, arg);
  1370. if (ret != SWAP_AGAIN)
  1371. break;
  1372. }
  1373. /*
  1374. * No nonlinear handling: being always shared, nonlinear vmas
  1375. * never contain migration ptes. Decide what to do about this
  1376. * limitation to linear when we need rmap_walk() on nonlinear.
  1377. */
  1378. spin_unlock(&mapping->i_mmap_lock);
  1379. return ret;
  1380. }
  1381. int rmap_walk(struct page *page, int (*rmap_one)(struct page *,
  1382. struct vm_area_struct *, unsigned long, void *), void *arg)
  1383. {
  1384. VM_BUG_ON(!PageLocked(page));
  1385. if (unlikely(PageKsm(page)))
  1386. return rmap_walk_ksm(page, rmap_one, arg);
  1387. else if (PageAnon(page))
  1388. return rmap_walk_anon(page, rmap_one, arg);
  1389. else
  1390. return rmap_walk_file(page, rmap_one, arg);
  1391. }
  1392. #endif /* CONFIG_MIGRATION */
  1393. #ifdef CONFIG_HUGETLB_PAGE
  1394. /*
  1395. * The following three functions are for anonymous (private mapped) hugepages.
  1396. * Unlike common anonymous pages, anonymous hugepages have no accounting code
  1397. * and no lru code, because we handle hugepages differently from common pages.
  1398. */
  1399. static void __hugepage_set_anon_rmap(struct page *page,
  1400. struct vm_area_struct *vma, unsigned long address, int exclusive)
  1401. {
  1402. struct anon_vma *anon_vma = vma->anon_vma;
  1403. BUG_ON(!anon_vma);
  1404. if (PageAnon(page))
  1405. return;
  1406. if (!exclusive)
  1407. anon_vma = anon_vma->root;
  1408. anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON;
  1409. page->mapping = (struct address_space *) anon_vma;
  1410. page->index = linear_page_index(vma, address);
  1411. }
  1412. void hugepage_add_anon_rmap(struct page *page,
  1413. struct vm_area_struct *vma, unsigned long address)
  1414. {
  1415. struct anon_vma *anon_vma = vma->anon_vma;
  1416. int first;
  1417. BUG_ON(!PageLocked(page));
  1418. BUG_ON(!anon_vma);
  1419. BUG_ON(address < vma->vm_start || address >= vma->vm_end);
  1420. first = atomic_inc_and_test(&page->_mapcount);
  1421. if (first)
  1422. __hugepage_set_anon_rmap(page, vma, address, 0);
  1423. }
  1424. void hugepage_add_new_anon_rmap(struct page *page,
  1425. struct vm_area_struct *vma, unsigned long address)
  1426. {
  1427. BUG_ON(address < vma->vm_start || address >= vma->vm_end);
  1428. atomic_set(&page->_mapcount, 0);
  1429. __hugepage_set_anon_rmap(page, vma, address, 1);
  1430. }
  1431. #endif /* CONFIG_HUGETLB_PAGE */