rmap.c 43 KB

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