memory.c 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868
  1. /*
  2. * linux/mm/memory.c
  3. *
  4. * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
  5. */
  6. /*
  7. * demand-loading started 01.12.91 - seems it is high on the list of
  8. * things wanted, and it should be easy to implement. - Linus
  9. */
  10. /*
  11. * Ok, demand-loading was easy, shared pages a little bit tricker. Shared
  12. * pages started 02.12.91, seems to work. - Linus.
  13. *
  14. * Tested sharing by executing about 30 /bin/sh: under the old kernel it
  15. * would have taken more than the 6M I have free, but it worked well as
  16. * far as I could see.
  17. *
  18. * Also corrected some "invalidate()"s - I wasn't doing enough of them.
  19. */
  20. /*
  21. * Real VM (paging to/from disk) started 18.12.91. Much more work and
  22. * thought has to go into this. Oh, well..
  23. * 19.12.91 - works, somewhat. Sometimes I get faults, don't know why.
  24. * Found it. Everything seems to work now.
  25. * 20.12.91 - Ok, making the swap-device changeable like the root.
  26. */
  27. /*
  28. * 05.04.94 - Multi-page memory management added for v1.1.
  29. * Idea by Alex Bligh (alex@cconcepts.co.uk)
  30. *
  31. * 16.07.99 - Support of BIGMEM added by Gerhard Wichert, Siemens AG
  32. * (Gerhard.Wichert@pdb.siemens.de)
  33. *
  34. * Aug/Sep 2004 Changed to four level page tables (Andi Kleen)
  35. */
  36. #include <linux/kernel_stat.h>
  37. #include <linux/mm.h>
  38. #include <linux/hugetlb.h>
  39. #include <linux/mman.h>
  40. #include <linux/swap.h>
  41. #include <linux/highmem.h>
  42. #include <linux/pagemap.h>
  43. #include <linux/rmap.h>
  44. #include <linux/module.h>
  45. #include <linux/delayacct.h>
  46. #include <linux/init.h>
  47. #include <linux/writeback.h>
  48. #include <asm/pgalloc.h>
  49. #include <asm/uaccess.h>
  50. #include <asm/tlb.h>
  51. #include <asm/tlbflush.h>
  52. #include <asm/pgtable.h>
  53. #include <linux/swapops.h>
  54. #include <linux/elf.h>
  55. #ifndef CONFIG_NEED_MULTIPLE_NODES
  56. /* use the per-pgdat data instead for discontigmem - mbligh */
  57. unsigned long max_mapnr;
  58. struct page *mem_map;
  59. EXPORT_SYMBOL(max_mapnr);
  60. EXPORT_SYMBOL(mem_map);
  61. #endif
  62. unsigned long num_physpages;
  63. /*
  64. * A number of key systems in x86 including ioremap() rely on the assumption
  65. * that high_memory defines the upper bound on direct map memory, then end
  66. * of ZONE_NORMAL. Under CONFIG_DISCONTIG this means that max_low_pfn and
  67. * highstart_pfn must be the same; there must be no gap between ZONE_NORMAL
  68. * and ZONE_HIGHMEM.
  69. */
  70. void * high_memory;
  71. EXPORT_SYMBOL(num_physpages);
  72. EXPORT_SYMBOL(high_memory);
  73. int randomize_va_space __read_mostly = 1;
  74. static int __init disable_randmaps(char *s)
  75. {
  76. randomize_va_space = 0;
  77. return 1;
  78. }
  79. __setup("norandmaps", disable_randmaps);
  80. /*
  81. * If a p?d_bad entry is found while walking page tables, report
  82. * the error, before resetting entry to p?d_none. Usually (but
  83. * very seldom) called out from the p?d_none_or_clear_bad macros.
  84. */
  85. void pgd_clear_bad(pgd_t *pgd)
  86. {
  87. pgd_ERROR(*pgd);
  88. pgd_clear(pgd);
  89. }
  90. void pud_clear_bad(pud_t *pud)
  91. {
  92. pud_ERROR(*pud);
  93. pud_clear(pud);
  94. }
  95. void pmd_clear_bad(pmd_t *pmd)
  96. {
  97. pmd_ERROR(*pmd);
  98. pmd_clear(pmd);
  99. }
  100. /*
  101. * Note: this doesn't free the actual pages themselves. That
  102. * has been handled earlier when unmapping all the memory regions.
  103. */
  104. static void free_pte_range(struct mmu_gather *tlb, pmd_t *pmd)
  105. {
  106. struct page *page = pmd_page(*pmd);
  107. pmd_clear(pmd);
  108. pte_lock_deinit(page);
  109. pte_free_tlb(tlb, page);
  110. dec_zone_page_state(page, NR_PAGETABLE);
  111. tlb->mm->nr_ptes--;
  112. }
  113. static inline void free_pmd_range(struct mmu_gather *tlb, pud_t *pud,
  114. unsigned long addr, unsigned long end,
  115. unsigned long floor, unsigned long ceiling)
  116. {
  117. pmd_t *pmd;
  118. unsigned long next;
  119. unsigned long start;
  120. start = addr;
  121. pmd = pmd_offset(pud, addr);
  122. do {
  123. next = pmd_addr_end(addr, end);
  124. if (pmd_none_or_clear_bad(pmd))
  125. continue;
  126. free_pte_range(tlb, pmd);
  127. } while (pmd++, addr = next, addr != end);
  128. start &= PUD_MASK;
  129. if (start < floor)
  130. return;
  131. if (ceiling) {
  132. ceiling &= PUD_MASK;
  133. if (!ceiling)
  134. return;
  135. }
  136. if (end - 1 > ceiling - 1)
  137. return;
  138. pmd = pmd_offset(pud, start);
  139. pud_clear(pud);
  140. pmd_free_tlb(tlb, pmd);
  141. }
  142. static inline void free_pud_range(struct mmu_gather *tlb, pgd_t *pgd,
  143. unsigned long addr, unsigned long end,
  144. unsigned long floor, unsigned long ceiling)
  145. {
  146. pud_t *pud;
  147. unsigned long next;
  148. unsigned long start;
  149. start = addr;
  150. pud = pud_offset(pgd, addr);
  151. do {
  152. next = pud_addr_end(addr, end);
  153. if (pud_none_or_clear_bad(pud))
  154. continue;
  155. free_pmd_range(tlb, pud, addr, next, floor, ceiling);
  156. } while (pud++, addr = next, addr != end);
  157. start &= PGDIR_MASK;
  158. if (start < floor)
  159. return;
  160. if (ceiling) {
  161. ceiling &= PGDIR_MASK;
  162. if (!ceiling)
  163. return;
  164. }
  165. if (end - 1 > ceiling - 1)
  166. return;
  167. pud = pud_offset(pgd, start);
  168. pgd_clear(pgd);
  169. pud_free_tlb(tlb, pud);
  170. }
  171. /*
  172. * This function frees user-level page tables of a process.
  173. *
  174. * Must be called with pagetable lock held.
  175. */
  176. void free_pgd_range(struct mmu_gather **tlb,
  177. unsigned long addr, unsigned long end,
  178. unsigned long floor, unsigned long ceiling)
  179. {
  180. pgd_t *pgd;
  181. unsigned long next;
  182. unsigned long start;
  183. /*
  184. * The next few lines have given us lots of grief...
  185. *
  186. * Why are we testing PMD* at this top level? Because often
  187. * there will be no work to do at all, and we'd prefer not to
  188. * go all the way down to the bottom just to discover that.
  189. *
  190. * Why all these "- 1"s? Because 0 represents both the bottom
  191. * of the address space and the top of it (using -1 for the
  192. * top wouldn't help much: the masks would do the wrong thing).
  193. * The rule is that addr 0 and floor 0 refer to the bottom of
  194. * the address space, but end 0 and ceiling 0 refer to the top
  195. * Comparisons need to use "end - 1" and "ceiling - 1" (though
  196. * that end 0 case should be mythical).
  197. *
  198. * Wherever addr is brought up or ceiling brought down, we must
  199. * be careful to reject "the opposite 0" before it confuses the
  200. * subsequent tests. But what about where end is brought down
  201. * by PMD_SIZE below? no, end can't go down to 0 there.
  202. *
  203. * Whereas we round start (addr) and ceiling down, by different
  204. * masks at different levels, in order to test whether a table
  205. * now has no other vmas using it, so can be freed, we don't
  206. * bother to round floor or end up - the tests don't need that.
  207. */
  208. addr &= PMD_MASK;
  209. if (addr < floor) {
  210. addr += PMD_SIZE;
  211. if (!addr)
  212. return;
  213. }
  214. if (ceiling) {
  215. ceiling &= PMD_MASK;
  216. if (!ceiling)
  217. return;
  218. }
  219. if (end - 1 > ceiling - 1)
  220. end -= PMD_SIZE;
  221. if (addr > end - 1)
  222. return;
  223. start = addr;
  224. pgd = pgd_offset((*tlb)->mm, addr);
  225. do {
  226. next = pgd_addr_end(addr, end);
  227. if (pgd_none_or_clear_bad(pgd))
  228. continue;
  229. free_pud_range(*tlb, pgd, addr, next, floor, ceiling);
  230. } while (pgd++, addr = next, addr != end);
  231. if (!(*tlb)->fullmm)
  232. flush_tlb_pgtables((*tlb)->mm, start, end);
  233. }
  234. void free_pgtables(struct mmu_gather **tlb, struct vm_area_struct *vma,
  235. unsigned long floor, unsigned long ceiling)
  236. {
  237. while (vma) {
  238. struct vm_area_struct *next = vma->vm_next;
  239. unsigned long addr = vma->vm_start;
  240. /*
  241. * Hide vma from rmap and vmtruncate before freeing pgtables
  242. */
  243. anon_vma_unlink(vma);
  244. unlink_file_vma(vma);
  245. if (is_vm_hugetlb_page(vma)) {
  246. hugetlb_free_pgd_range(tlb, addr, vma->vm_end,
  247. floor, next? next->vm_start: ceiling);
  248. } else {
  249. /*
  250. * Optimization: gather nearby vmas into one call down
  251. */
  252. while (next && next->vm_start <= vma->vm_end + PMD_SIZE
  253. && !is_vm_hugetlb_page(next)) {
  254. vma = next;
  255. next = vma->vm_next;
  256. anon_vma_unlink(vma);
  257. unlink_file_vma(vma);
  258. }
  259. free_pgd_range(tlb, addr, vma->vm_end,
  260. floor, next? next->vm_start: ceiling);
  261. }
  262. vma = next;
  263. }
  264. }
  265. int __pte_alloc(struct mm_struct *mm, pmd_t *pmd, unsigned long address)
  266. {
  267. struct page *new = pte_alloc_one(mm, address);
  268. if (!new)
  269. return -ENOMEM;
  270. pte_lock_init(new);
  271. spin_lock(&mm->page_table_lock);
  272. if (pmd_present(*pmd)) { /* Another has populated it */
  273. pte_lock_deinit(new);
  274. pte_free(new);
  275. } else {
  276. mm->nr_ptes++;
  277. inc_zone_page_state(new, NR_PAGETABLE);
  278. pmd_populate(mm, pmd, new);
  279. }
  280. spin_unlock(&mm->page_table_lock);
  281. return 0;
  282. }
  283. int __pte_alloc_kernel(pmd_t *pmd, unsigned long address)
  284. {
  285. pte_t *new = pte_alloc_one_kernel(&init_mm, address);
  286. if (!new)
  287. return -ENOMEM;
  288. spin_lock(&init_mm.page_table_lock);
  289. if (pmd_present(*pmd)) /* Another has populated it */
  290. pte_free_kernel(new);
  291. else
  292. pmd_populate_kernel(&init_mm, pmd, new);
  293. spin_unlock(&init_mm.page_table_lock);
  294. return 0;
  295. }
  296. static inline void add_mm_rss(struct mm_struct *mm, int file_rss, int anon_rss)
  297. {
  298. if (file_rss)
  299. add_mm_counter(mm, file_rss, file_rss);
  300. if (anon_rss)
  301. add_mm_counter(mm, anon_rss, anon_rss);
  302. }
  303. /*
  304. * This function is called to print an error when a bad pte
  305. * is found. For example, we might have a PFN-mapped pte in
  306. * a region that doesn't allow it.
  307. *
  308. * The calling function must still handle the error.
  309. */
  310. void print_bad_pte(struct vm_area_struct *vma, pte_t pte, unsigned long vaddr)
  311. {
  312. printk(KERN_ERR "Bad pte = %08llx, process = %s, "
  313. "vm_flags = %lx, vaddr = %lx\n",
  314. (long long)pte_val(pte),
  315. (vma->vm_mm == current->mm ? current->comm : "???"),
  316. vma->vm_flags, vaddr);
  317. dump_stack();
  318. }
  319. static inline int is_cow_mapping(unsigned int flags)
  320. {
  321. return (flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
  322. }
  323. /*
  324. * This function gets the "struct page" associated with a pte.
  325. *
  326. * NOTE! Some mappings do not have "struct pages". A raw PFN mapping
  327. * will have each page table entry just pointing to a raw page frame
  328. * number, and as far as the VM layer is concerned, those do not have
  329. * pages associated with them - even if the PFN might point to memory
  330. * that otherwise is perfectly fine and has a "struct page".
  331. *
  332. * The way we recognize those mappings is through the rules set up
  333. * by "remap_pfn_range()": the vma will have the VM_PFNMAP bit set,
  334. * and the vm_pgoff will point to the first PFN mapped: thus every
  335. * page that is a raw mapping will always honor the rule
  336. *
  337. * pfn_of_page == vma->vm_pgoff + ((addr - vma->vm_start) >> PAGE_SHIFT)
  338. *
  339. * and if that isn't true, the page has been COW'ed (in which case it
  340. * _does_ have a "struct page" associated with it even if it is in a
  341. * VM_PFNMAP range).
  342. */
  343. struct page *vm_normal_page(struct vm_area_struct *vma, unsigned long addr, pte_t pte)
  344. {
  345. unsigned long pfn = pte_pfn(pte);
  346. if (unlikely(vma->vm_flags & VM_PFNMAP)) {
  347. unsigned long off = (addr - vma->vm_start) >> PAGE_SHIFT;
  348. if (pfn == vma->vm_pgoff + off)
  349. return NULL;
  350. if (!is_cow_mapping(vma->vm_flags))
  351. return NULL;
  352. }
  353. /*
  354. * Add some anal sanity checks for now. Eventually,
  355. * we should just do "return pfn_to_page(pfn)", but
  356. * in the meantime we check that we get a valid pfn,
  357. * and that the resulting page looks ok.
  358. */
  359. if (unlikely(!pfn_valid(pfn))) {
  360. print_bad_pte(vma, pte, addr);
  361. return NULL;
  362. }
  363. /*
  364. * NOTE! We still have PageReserved() pages in the page
  365. * tables.
  366. *
  367. * The PAGE_ZERO() pages and various VDSO mappings can
  368. * cause them to exist.
  369. */
  370. return pfn_to_page(pfn);
  371. }
  372. /*
  373. * copy one vm_area from one task to the other. Assumes the page tables
  374. * already present in the new task to be cleared in the whole range
  375. * covered by this vma.
  376. */
  377. static inline void
  378. copy_one_pte(struct mm_struct *dst_mm, struct mm_struct *src_mm,
  379. pte_t *dst_pte, pte_t *src_pte, struct vm_area_struct *vma,
  380. unsigned long addr, int *rss)
  381. {
  382. unsigned long vm_flags = vma->vm_flags;
  383. pte_t pte = *src_pte;
  384. struct page *page;
  385. /* pte contains position in swap or file, so copy. */
  386. if (unlikely(!pte_present(pte))) {
  387. if (!pte_file(pte)) {
  388. swp_entry_t entry = pte_to_swp_entry(pte);
  389. swap_duplicate(entry);
  390. /* make sure dst_mm is on swapoff's mmlist. */
  391. if (unlikely(list_empty(&dst_mm->mmlist))) {
  392. spin_lock(&mmlist_lock);
  393. if (list_empty(&dst_mm->mmlist))
  394. list_add(&dst_mm->mmlist,
  395. &src_mm->mmlist);
  396. spin_unlock(&mmlist_lock);
  397. }
  398. if (is_write_migration_entry(entry) &&
  399. is_cow_mapping(vm_flags)) {
  400. /*
  401. * COW mappings require pages in both parent
  402. * and child to be set to read.
  403. */
  404. make_migration_entry_read(&entry);
  405. pte = swp_entry_to_pte(entry);
  406. set_pte_at(src_mm, addr, src_pte, pte);
  407. }
  408. }
  409. goto out_set_pte;
  410. }
  411. /*
  412. * If it's a COW mapping, write protect it both
  413. * in the parent and the child
  414. */
  415. if (is_cow_mapping(vm_flags)) {
  416. ptep_set_wrprotect(src_mm, addr, src_pte);
  417. pte = pte_wrprotect(pte);
  418. }
  419. /*
  420. * If it's a shared mapping, mark it clean in
  421. * the child
  422. */
  423. if (vm_flags & VM_SHARED)
  424. pte = pte_mkclean(pte);
  425. pte = pte_mkold(pte);
  426. page = vm_normal_page(vma, addr, pte);
  427. if (page) {
  428. get_page(page);
  429. page_dup_rmap(page, vma, addr);
  430. rss[!!PageAnon(page)]++;
  431. }
  432. out_set_pte:
  433. set_pte_at(dst_mm, addr, dst_pte, pte);
  434. }
  435. static int copy_pte_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
  436. pmd_t *dst_pmd, pmd_t *src_pmd, struct vm_area_struct *vma,
  437. unsigned long addr, unsigned long end)
  438. {
  439. pte_t *src_pte, *dst_pte;
  440. spinlock_t *src_ptl, *dst_ptl;
  441. int progress = 0;
  442. int rss[2];
  443. again:
  444. rss[1] = rss[0] = 0;
  445. dst_pte = pte_alloc_map_lock(dst_mm, dst_pmd, addr, &dst_ptl);
  446. if (!dst_pte)
  447. return -ENOMEM;
  448. src_pte = pte_offset_map_nested(src_pmd, addr);
  449. src_ptl = pte_lockptr(src_mm, src_pmd);
  450. spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
  451. arch_enter_lazy_mmu_mode();
  452. do {
  453. /*
  454. * We are holding two locks at this point - either of them
  455. * could generate latencies in another task on another CPU.
  456. */
  457. if (progress >= 32) {
  458. progress = 0;
  459. if (need_resched() ||
  460. need_lockbreak(src_ptl) ||
  461. need_lockbreak(dst_ptl))
  462. break;
  463. }
  464. if (pte_none(*src_pte)) {
  465. progress++;
  466. continue;
  467. }
  468. copy_one_pte(dst_mm, src_mm, dst_pte, src_pte, vma, addr, rss);
  469. progress += 8;
  470. } while (dst_pte++, src_pte++, addr += PAGE_SIZE, addr != end);
  471. arch_leave_lazy_mmu_mode();
  472. spin_unlock(src_ptl);
  473. pte_unmap_nested(src_pte - 1);
  474. add_mm_rss(dst_mm, rss[0], rss[1]);
  475. pte_unmap_unlock(dst_pte - 1, dst_ptl);
  476. cond_resched();
  477. if (addr != end)
  478. goto again;
  479. return 0;
  480. }
  481. static inline int copy_pmd_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
  482. pud_t *dst_pud, pud_t *src_pud, struct vm_area_struct *vma,
  483. unsigned long addr, unsigned long end)
  484. {
  485. pmd_t *src_pmd, *dst_pmd;
  486. unsigned long next;
  487. dst_pmd = pmd_alloc(dst_mm, dst_pud, addr);
  488. if (!dst_pmd)
  489. return -ENOMEM;
  490. src_pmd = pmd_offset(src_pud, addr);
  491. do {
  492. next = pmd_addr_end(addr, end);
  493. if (pmd_none_or_clear_bad(src_pmd))
  494. continue;
  495. if (copy_pte_range(dst_mm, src_mm, dst_pmd, src_pmd,
  496. vma, addr, next))
  497. return -ENOMEM;
  498. } while (dst_pmd++, src_pmd++, addr = next, addr != end);
  499. return 0;
  500. }
  501. static inline int copy_pud_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
  502. pgd_t *dst_pgd, pgd_t *src_pgd, struct vm_area_struct *vma,
  503. unsigned long addr, unsigned long end)
  504. {
  505. pud_t *src_pud, *dst_pud;
  506. unsigned long next;
  507. dst_pud = pud_alloc(dst_mm, dst_pgd, addr);
  508. if (!dst_pud)
  509. return -ENOMEM;
  510. src_pud = pud_offset(src_pgd, addr);
  511. do {
  512. next = pud_addr_end(addr, end);
  513. if (pud_none_or_clear_bad(src_pud))
  514. continue;
  515. if (copy_pmd_range(dst_mm, src_mm, dst_pud, src_pud,
  516. vma, addr, next))
  517. return -ENOMEM;
  518. } while (dst_pud++, src_pud++, addr = next, addr != end);
  519. return 0;
  520. }
  521. int copy_page_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
  522. struct vm_area_struct *vma)
  523. {
  524. pgd_t *src_pgd, *dst_pgd;
  525. unsigned long next;
  526. unsigned long addr = vma->vm_start;
  527. unsigned long end = vma->vm_end;
  528. /*
  529. * Don't copy ptes where a page fault will fill them correctly.
  530. * Fork becomes much lighter when there are big shared or private
  531. * readonly mappings. The tradeoff is that copy_page_range is more
  532. * efficient than faulting.
  533. */
  534. if (!(vma->vm_flags & (VM_HUGETLB|VM_NONLINEAR|VM_PFNMAP|VM_INSERTPAGE))) {
  535. if (!vma->anon_vma)
  536. return 0;
  537. }
  538. if (is_vm_hugetlb_page(vma))
  539. return copy_hugetlb_page_range(dst_mm, src_mm, vma);
  540. dst_pgd = pgd_offset(dst_mm, addr);
  541. src_pgd = pgd_offset(src_mm, addr);
  542. do {
  543. next = pgd_addr_end(addr, end);
  544. if (pgd_none_or_clear_bad(src_pgd))
  545. continue;
  546. if (copy_pud_range(dst_mm, src_mm, dst_pgd, src_pgd,
  547. vma, addr, next))
  548. return -ENOMEM;
  549. } while (dst_pgd++, src_pgd++, addr = next, addr != end);
  550. return 0;
  551. }
  552. static unsigned long zap_pte_range(struct mmu_gather *tlb,
  553. struct vm_area_struct *vma, pmd_t *pmd,
  554. unsigned long addr, unsigned long end,
  555. long *zap_work, struct zap_details *details)
  556. {
  557. struct mm_struct *mm = tlb->mm;
  558. pte_t *pte;
  559. spinlock_t *ptl;
  560. int file_rss = 0;
  561. int anon_rss = 0;
  562. pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
  563. arch_enter_lazy_mmu_mode();
  564. do {
  565. pte_t ptent = *pte;
  566. if (pte_none(ptent)) {
  567. (*zap_work)--;
  568. continue;
  569. }
  570. (*zap_work) -= PAGE_SIZE;
  571. if (pte_present(ptent)) {
  572. struct page *page;
  573. page = vm_normal_page(vma, addr, ptent);
  574. if (unlikely(details) && page) {
  575. /*
  576. * unmap_shared_mapping_pages() wants to
  577. * invalidate cache without truncating:
  578. * unmap shared but keep private pages.
  579. */
  580. if (details->check_mapping &&
  581. details->check_mapping != page->mapping)
  582. continue;
  583. /*
  584. * Each page->index must be checked when
  585. * invalidating or truncating nonlinear.
  586. */
  587. if (details->nonlinear_vma &&
  588. (page->index < details->first_index ||
  589. page->index > details->last_index))
  590. continue;
  591. }
  592. ptent = ptep_get_and_clear_full(mm, addr, pte,
  593. tlb->fullmm);
  594. tlb_remove_tlb_entry(tlb, pte, addr);
  595. if (unlikely(!page))
  596. continue;
  597. if (unlikely(details) && details->nonlinear_vma
  598. && linear_page_index(details->nonlinear_vma,
  599. addr) != page->index)
  600. set_pte_at(mm, addr, pte,
  601. pgoff_to_pte(page->index));
  602. if (PageAnon(page))
  603. anon_rss--;
  604. else {
  605. if (pte_dirty(ptent))
  606. set_page_dirty(page);
  607. if (pte_young(ptent))
  608. SetPageReferenced(page);
  609. file_rss--;
  610. }
  611. page_remove_rmap(page, vma);
  612. tlb_remove_page(tlb, page);
  613. continue;
  614. }
  615. /*
  616. * If details->check_mapping, we leave swap entries;
  617. * if details->nonlinear_vma, we leave file entries.
  618. */
  619. if (unlikely(details))
  620. continue;
  621. if (!pte_file(ptent))
  622. free_swap_and_cache(pte_to_swp_entry(ptent));
  623. pte_clear_not_present_full(mm, addr, pte, tlb->fullmm);
  624. } while (pte++, addr += PAGE_SIZE, (addr != end && *zap_work > 0));
  625. add_mm_rss(mm, file_rss, anon_rss);
  626. arch_leave_lazy_mmu_mode();
  627. pte_unmap_unlock(pte - 1, ptl);
  628. return addr;
  629. }
  630. static inline unsigned long zap_pmd_range(struct mmu_gather *tlb,
  631. struct vm_area_struct *vma, pud_t *pud,
  632. unsigned long addr, unsigned long end,
  633. long *zap_work, struct zap_details *details)
  634. {
  635. pmd_t *pmd;
  636. unsigned long next;
  637. pmd = pmd_offset(pud, addr);
  638. do {
  639. next = pmd_addr_end(addr, end);
  640. if (pmd_none_or_clear_bad(pmd)) {
  641. (*zap_work)--;
  642. continue;
  643. }
  644. next = zap_pte_range(tlb, vma, pmd, addr, next,
  645. zap_work, details);
  646. } while (pmd++, addr = next, (addr != end && *zap_work > 0));
  647. return addr;
  648. }
  649. static inline unsigned long zap_pud_range(struct mmu_gather *tlb,
  650. struct vm_area_struct *vma, pgd_t *pgd,
  651. unsigned long addr, unsigned long end,
  652. long *zap_work, struct zap_details *details)
  653. {
  654. pud_t *pud;
  655. unsigned long next;
  656. pud = pud_offset(pgd, addr);
  657. do {
  658. next = pud_addr_end(addr, end);
  659. if (pud_none_or_clear_bad(pud)) {
  660. (*zap_work)--;
  661. continue;
  662. }
  663. next = zap_pmd_range(tlb, vma, pud, addr, next,
  664. zap_work, details);
  665. } while (pud++, addr = next, (addr != end && *zap_work > 0));
  666. return addr;
  667. }
  668. static unsigned long unmap_page_range(struct mmu_gather *tlb,
  669. struct vm_area_struct *vma,
  670. unsigned long addr, unsigned long end,
  671. long *zap_work, struct zap_details *details)
  672. {
  673. pgd_t *pgd;
  674. unsigned long next;
  675. if (details && !details->check_mapping && !details->nonlinear_vma)
  676. details = NULL;
  677. BUG_ON(addr >= end);
  678. tlb_start_vma(tlb, vma);
  679. pgd = pgd_offset(vma->vm_mm, addr);
  680. do {
  681. next = pgd_addr_end(addr, end);
  682. if (pgd_none_or_clear_bad(pgd)) {
  683. (*zap_work)--;
  684. continue;
  685. }
  686. next = zap_pud_range(tlb, vma, pgd, addr, next,
  687. zap_work, details);
  688. } while (pgd++, addr = next, (addr != end && *zap_work > 0));
  689. tlb_end_vma(tlb, vma);
  690. return addr;
  691. }
  692. #ifdef CONFIG_PREEMPT
  693. # define ZAP_BLOCK_SIZE (8 * PAGE_SIZE)
  694. #else
  695. /* No preempt: go for improved straight-line efficiency */
  696. # define ZAP_BLOCK_SIZE (1024 * PAGE_SIZE)
  697. #endif
  698. /**
  699. * unmap_vmas - unmap a range of memory covered by a list of vma's
  700. * @tlbp: address of the caller's struct mmu_gather
  701. * @vma: the starting vma
  702. * @start_addr: virtual address at which to start unmapping
  703. * @end_addr: virtual address at which to end unmapping
  704. * @nr_accounted: Place number of unmapped pages in vm-accountable vma's here
  705. * @details: details of nonlinear truncation or shared cache invalidation
  706. *
  707. * Returns the end address of the unmapping (restart addr if interrupted).
  708. *
  709. * Unmap all pages in the vma list.
  710. *
  711. * We aim to not hold locks for too long (for scheduling latency reasons).
  712. * So zap pages in ZAP_BLOCK_SIZE bytecounts. This means we need to
  713. * return the ending mmu_gather to the caller.
  714. *
  715. * Only addresses between `start' and `end' will be unmapped.
  716. *
  717. * The VMA list must be sorted in ascending virtual address order.
  718. *
  719. * unmap_vmas() assumes that the caller will flush the whole unmapped address
  720. * range after unmap_vmas() returns. So the only responsibility here is to
  721. * ensure that any thus-far unmapped pages are flushed before unmap_vmas()
  722. * drops the lock and schedules.
  723. */
  724. unsigned long unmap_vmas(struct mmu_gather **tlbp,
  725. struct vm_area_struct *vma, unsigned long start_addr,
  726. unsigned long end_addr, unsigned long *nr_accounted,
  727. struct zap_details *details)
  728. {
  729. long zap_work = ZAP_BLOCK_SIZE;
  730. unsigned long tlb_start = 0; /* For tlb_finish_mmu */
  731. int tlb_start_valid = 0;
  732. unsigned long start = start_addr;
  733. spinlock_t *i_mmap_lock = details? details->i_mmap_lock: NULL;
  734. int fullmm = (*tlbp)->fullmm;
  735. for ( ; vma && vma->vm_start < end_addr; vma = vma->vm_next) {
  736. unsigned long end;
  737. start = max(vma->vm_start, start_addr);
  738. if (start >= vma->vm_end)
  739. continue;
  740. end = min(vma->vm_end, end_addr);
  741. if (end <= vma->vm_start)
  742. continue;
  743. if (vma->vm_flags & VM_ACCOUNT)
  744. *nr_accounted += (end - start) >> PAGE_SHIFT;
  745. while (start != end) {
  746. if (!tlb_start_valid) {
  747. tlb_start = start;
  748. tlb_start_valid = 1;
  749. }
  750. if (unlikely(is_vm_hugetlb_page(vma))) {
  751. unmap_hugepage_range(vma, start, end);
  752. zap_work -= (end - start) /
  753. (HPAGE_SIZE / PAGE_SIZE);
  754. start = end;
  755. } else
  756. start = unmap_page_range(*tlbp, vma,
  757. start, end, &zap_work, details);
  758. if (zap_work > 0) {
  759. BUG_ON(start != end);
  760. break;
  761. }
  762. tlb_finish_mmu(*tlbp, tlb_start, start);
  763. if (need_resched() ||
  764. (i_mmap_lock && need_lockbreak(i_mmap_lock))) {
  765. if (i_mmap_lock) {
  766. *tlbp = NULL;
  767. goto out;
  768. }
  769. cond_resched();
  770. }
  771. *tlbp = tlb_gather_mmu(vma->vm_mm, fullmm);
  772. tlb_start_valid = 0;
  773. zap_work = ZAP_BLOCK_SIZE;
  774. }
  775. }
  776. out:
  777. return start; /* which is now the end (or restart) address */
  778. }
  779. /**
  780. * zap_page_range - remove user pages in a given range
  781. * @vma: vm_area_struct holding the applicable pages
  782. * @address: starting address of pages to zap
  783. * @size: number of bytes to zap
  784. * @details: details of nonlinear truncation or shared cache invalidation
  785. */
  786. unsigned long zap_page_range(struct vm_area_struct *vma, unsigned long address,
  787. unsigned long size, struct zap_details *details)
  788. {
  789. struct mm_struct *mm = vma->vm_mm;
  790. struct mmu_gather *tlb;
  791. unsigned long end = address + size;
  792. unsigned long nr_accounted = 0;
  793. lru_add_drain();
  794. tlb = tlb_gather_mmu(mm, 0);
  795. update_hiwater_rss(mm);
  796. end = unmap_vmas(&tlb, vma, address, end, &nr_accounted, details);
  797. if (tlb)
  798. tlb_finish_mmu(tlb, address, end);
  799. return end;
  800. }
  801. /*
  802. * Do a quick page-table lookup for a single page.
  803. */
  804. struct page *follow_page(struct vm_area_struct *vma, unsigned long address,
  805. unsigned int flags)
  806. {
  807. pgd_t *pgd;
  808. pud_t *pud;
  809. pmd_t *pmd;
  810. pte_t *ptep, pte;
  811. spinlock_t *ptl;
  812. struct page *page;
  813. struct mm_struct *mm = vma->vm_mm;
  814. page = follow_huge_addr(mm, address, flags & FOLL_WRITE);
  815. if (!IS_ERR(page)) {
  816. BUG_ON(flags & FOLL_GET);
  817. goto out;
  818. }
  819. page = NULL;
  820. pgd = pgd_offset(mm, address);
  821. if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd)))
  822. goto no_page_table;
  823. pud = pud_offset(pgd, address);
  824. if (pud_none(*pud) || unlikely(pud_bad(*pud)))
  825. goto no_page_table;
  826. pmd = pmd_offset(pud, address);
  827. if (pmd_none(*pmd) || unlikely(pmd_bad(*pmd)))
  828. goto no_page_table;
  829. if (pmd_huge(*pmd)) {
  830. BUG_ON(flags & FOLL_GET);
  831. page = follow_huge_pmd(mm, address, pmd, flags & FOLL_WRITE);
  832. goto out;
  833. }
  834. ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
  835. if (!ptep)
  836. goto out;
  837. pte = *ptep;
  838. if (!pte_present(pte))
  839. goto unlock;
  840. if ((flags & FOLL_WRITE) && !pte_write(pte))
  841. goto unlock;
  842. page = vm_normal_page(vma, address, pte);
  843. if (unlikely(!page))
  844. goto unlock;
  845. if (flags & FOLL_GET)
  846. get_page(page);
  847. if (flags & FOLL_TOUCH) {
  848. if ((flags & FOLL_WRITE) &&
  849. !pte_dirty(pte) && !PageDirty(page))
  850. set_page_dirty(page);
  851. mark_page_accessed(page);
  852. }
  853. unlock:
  854. pte_unmap_unlock(ptep, ptl);
  855. out:
  856. return page;
  857. no_page_table:
  858. /*
  859. * When core dumping an enormous anonymous area that nobody
  860. * has touched so far, we don't want to allocate page tables.
  861. */
  862. if (flags & FOLL_ANON) {
  863. page = ZERO_PAGE(address);
  864. if (flags & FOLL_GET)
  865. get_page(page);
  866. BUG_ON(flags & FOLL_WRITE);
  867. }
  868. return page;
  869. }
  870. int get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
  871. unsigned long start, int len, int write, int force,
  872. struct page **pages, struct vm_area_struct **vmas)
  873. {
  874. int i;
  875. unsigned int vm_flags;
  876. /*
  877. * Require read or write permissions.
  878. * If 'force' is set, we only require the "MAY" flags.
  879. */
  880. vm_flags = write ? (VM_WRITE | VM_MAYWRITE) : (VM_READ | VM_MAYREAD);
  881. vm_flags &= force ? (VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
  882. i = 0;
  883. do {
  884. struct vm_area_struct *vma;
  885. unsigned int foll_flags;
  886. vma = find_extend_vma(mm, start);
  887. if (!vma && in_gate_area(tsk, start)) {
  888. unsigned long pg = start & PAGE_MASK;
  889. struct vm_area_struct *gate_vma = get_gate_vma(tsk);
  890. pgd_t *pgd;
  891. pud_t *pud;
  892. pmd_t *pmd;
  893. pte_t *pte;
  894. if (write) /* user gate pages are read-only */
  895. return i ? : -EFAULT;
  896. if (pg > TASK_SIZE)
  897. pgd = pgd_offset_k(pg);
  898. else
  899. pgd = pgd_offset_gate(mm, pg);
  900. BUG_ON(pgd_none(*pgd));
  901. pud = pud_offset(pgd, pg);
  902. BUG_ON(pud_none(*pud));
  903. pmd = pmd_offset(pud, pg);
  904. if (pmd_none(*pmd))
  905. return i ? : -EFAULT;
  906. pte = pte_offset_map(pmd, pg);
  907. if (pte_none(*pte)) {
  908. pte_unmap(pte);
  909. return i ? : -EFAULT;
  910. }
  911. if (pages) {
  912. struct page *page = vm_normal_page(gate_vma, start, *pte);
  913. pages[i] = page;
  914. if (page)
  915. get_page(page);
  916. }
  917. pte_unmap(pte);
  918. if (vmas)
  919. vmas[i] = gate_vma;
  920. i++;
  921. start += PAGE_SIZE;
  922. len--;
  923. continue;
  924. }
  925. if (!vma || (vma->vm_flags & (VM_IO | VM_PFNMAP))
  926. || !(vm_flags & vma->vm_flags))
  927. return i ? : -EFAULT;
  928. if (is_vm_hugetlb_page(vma)) {
  929. i = follow_hugetlb_page(mm, vma, pages, vmas,
  930. &start, &len, i);
  931. continue;
  932. }
  933. foll_flags = FOLL_TOUCH;
  934. if (pages)
  935. foll_flags |= FOLL_GET;
  936. if (!write && !(vma->vm_flags & VM_LOCKED) &&
  937. (!vma->vm_ops || (!vma->vm_ops->nopage &&
  938. !vma->vm_ops->fault)))
  939. foll_flags |= FOLL_ANON;
  940. do {
  941. struct page *page;
  942. /*
  943. * If tsk is ooming, cut off its access to large memory
  944. * allocations. It has a pending SIGKILL, but it can't
  945. * be processed until returning to user space.
  946. */
  947. if (unlikely(test_tsk_thread_flag(tsk, TIF_MEMDIE)))
  948. return -ENOMEM;
  949. if (write)
  950. foll_flags |= FOLL_WRITE;
  951. cond_resched();
  952. while (!(page = follow_page(vma, start, foll_flags))) {
  953. int ret;
  954. ret = handle_mm_fault(mm, vma, start,
  955. foll_flags & FOLL_WRITE);
  956. if (ret & VM_FAULT_ERROR) {
  957. if (ret & VM_FAULT_OOM)
  958. return i ? i : -ENOMEM;
  959. else if (ret & VM_FAULT_SIGBUS)
  960. return i ? i : -EFAULT;
  961. BUG();
  962. }
  963. if (ret & VM_FAULT_MAJOR)
  964. tsk->maj_flt++;
  965. else
  966. tsk->min_flt++;
  967. /*
  968. * The VM_FAULT_WRITE bit tells us that
  969. * do_wp_page has broken COW when necessary,
  970. * even if maybe_mkwrite decided not to set
  971. * pte_write. We can thus safely do subsequent
  972. * page lookups as if they were reads.
  973. */
  974. if (ret & VM_FAULT_WRITE)
  975. foll_flags &= ~FOLL_WRITE;
  976. cond_resched();
  977. }
  978. if (pages) {
  979. pages[i] = page;
  980. flush_anon_page(vma, page, start);
  981. flush_dcache_page(page);
  982. }
  983. if (vmas)
  984. vmas[i] = vma;
  985. i++;
  986. start += PAGE_SIZE;
  987. len--;
  988. } while (len && start < vma->vm_end);
  989. } while (len);
  990. return i;
  991. }
  992. EXPORT_SYMBOL(get_user_pages);
  993. static int zeromap_pte_range(struct mm_struct *mm, pmd_t *pmd,
  994. unsigned long addr, unsigned long end, pgprot_t prot)
  995. {
  996. pte_t *pte;
  997. spinlock_t *ptl;
  998. int err = 0;
  999. pte = pte_alloc_map_lock(mm, pmd, addr, &ptl);
  1000. if (!pte)
  1001. return -EAGAIN;
  1002. arch_enter_lazy_mmu_mode();
  1003. do {
  1004. struct page *page = ZERO_PAGE(addr);
  1005. pte_t zero_pte = pte_wrprotect(mk_pte(page, prot));
  1006. if (unlikely(!pte_none(*pte))) {
  1007. err = -EEXIST;
  1008. pte++;
  1009. break;
  1010. }
  1011. page_cache_get(page);
  1012. page_add_file_rmap(page);
  1013. inc_mm_counter(mm, file_rss);
  1014. set_pte_at(mm, addr, pte, zero_pte);
  1015. } while (pte++, addr += PAGE_SIZE, addr != end);
  1016. arch_leave_lazy_mmu_mode();
  1017. pte_unmap_unlock(pte - 1, ptl);
  1018. return err;
  1019. }
  1020. static inline int zeromap_pmd_range(struct mm_struct *mm, pud_t *pud,
  1021. unsigned long addr, unsigned long end, pgprot_t prot)
  1022. {
  1023. pmd_t *pmd;
  1024. unsigned long next;
  1025. int err;
  1026. pmd = pmd_alloc(mm, pud, addr);
  1027. if (!pmd)
  1028. return -EAGAIN;
  1029. do {
  1030. next = pmd_addr_end(addr, end);
  1031. err = zeromap_pte_range(mm, pmd, addr, next, prot);
  1032. if (err)
  1033. break;
  1034. } while (pmd++, addr = next, addr != end);
  1035. return err;
  1036. }
  1037. static inline int zeromap_pud_range(struct mm_struct *mm, pgd_t *pgd,
  1038. unsigned long addr, unsigned long end, pgprot_t prot)
  1039. {
  1040. pud_t *pud;
  1041. unsigned long next;
  1042. int err;
  1043. pud = pud_alloc(mm, pgd, addr);
  1044. if (!pud)
  1045. return -EAGAIN;
  1046. do {
  1047. next = pud_addr_end(addr, end);
  1048. err = zeromap_pmd_range(mm, pud, addr, next, prot);
  1049. if (err)
  1050. break;
  1051. } while (pud++, addr = next, addr != end);
  1052. return err;
  1053. }
  1054. int zeromap_page_range(struct vm_area_struct *vma,
  1055. unsigned long addr, unsigned long size, pgprot_t prot)
  1056. {
  1057. pgd_t *pgd;
  1058. unsigned long next;
  1059. unsigned long end = addr + size;
  1060. struct mm_struct *mm = vma->vm_mm;
  1061. int err;
  1062. BUG_ON(addr >= end);
  1063. pgd = pgd_offset(mm, addr);
  1064. flush_cache_range(vma, addr, end);
  1065. do {
  1066. next = pgd_addr_end(addr, end);
  1067. err = zeromap_pud_range(mm, pgd, addr, next, prot);
  1068. if (err)
  1069. break;
  1070. } while (pgd++, addr = next, addr != end);
  1071. return err;
  1072. }
  1073. pte_t * fastcall get_locked_pte(struct mm_struct *mm, unsigned long addr, spinlock_t **ptl)
  1074. {
  1075. pgd_t * pgd = pgd_offset(mm, addr);
  1076. pud_t * pud = pud_alloc(mm, pgd, addr);
  1077. if (pud) {
  1078. pmd_t * pmd = pmd_alloc(mm, pud, addr);
  1079. if (pmd)
  1080. return pte_alloc_map_lock(mm, pmd, addr, ptl);
  1081. }
  1082. return NULL;
  1083. }
  1084. /*
  1085. * This is the old fallback for page remapping.
  1086. *
  1087. * For historical reasons, it only allows reserved pages. Only
  1088. * old drivers should use this, and they needed to mark their
  1089. * pages reserved for the old functions anyway.
  1090. */
  1091. static int insert_page(struct mm_struct *mm, unsigned long addr, struct page *page, pgprot_t prot)
  1092. {
  1093. int retval;
  1094. pte_t *pte;
  1095. spinlock_t *ptl;
  1096. retval = -EINVAL;
  1097. if (PageAnon(page))
  1098. goto out;
  1099. retval = -ENOMEM;
  1100. flush_dcache_page(page);
  1101. pte = get_locked_pte(mm, addr, &ptl);
  1102. if (!pte)
  1103. goto out;
  1104. retval = -EBUSY;
  1105. if (!pte_none(*pte))
  1106. goto out_unlock;
  1107. /* Ok, finally just insert the thing.. */
  1108. get_page(page);
  1109. inc_mm_counter(mm, file_rss);
  1110. page_add_file_rmap(page);
  1111. set_pte_at(mm, addr, pte, mk_pte(page, prot));
  1112. retval = 0;
  1113. out_unlock:
  1114. pte_unmap_unlock(pte, ptl);
  1115. out:
  1116. return retval;
  1117. }
  1118. /**
  1119. * vm_insert_page - insert single page into user vma
  1120. * @vma: user vma to map to
  1121. * @addr: target user address of this page
  1122. * @page: source kernel page
  1123. *
  1124. * This allows drivers to insert individual pages they've allocated
  1125. * into a user vma.
  1126. *
  1127. * The page has to be a nice clean _individual_ kernel allocation.
  1128. * If you allocate a compound page, you need to have marked it as
  1129. * such (__GFP_COMP), or manually just split the page up yourself
  1130. * (see split_page()).
  1131. *
  1132. * NOTE! Traditionally this was done with "remap_pfn_range()" which
  1133. * took an arbitrary page protection parameter. This doesn't allow
  1134. * that. Your vma protection will have to be set up correctly, which
  1135. * means that if you want a shared writable mapping, you'd better
  1136. * ask for a shared writable mapping!
  1137. *
  1138. * The page does not need to be reserved.
  1139. */
  1140. int vm_insert_page(struct vm_area_struct *vma, unsigned long addr, struct page *page)
  1141. {
  1142. if (addr < vma->vm_start || addr >= vma->vm_end)
  1143. return -EFAULT;
  1144. if (!page_count(page))
  1145. return -EINVAL;
  1146. vma->vm_flags |= VM_INSERTPAGE;
  1147. return insert_page(vma->vm_mm, addr, page, vma->vm_page_prot);
  1148. }
  1149. EXPORT_SYMBOL(vm_insert_page);
  1150. /**
  1151. * vm_insert_pfn - insert single pfn into user vma
  1152. * @vma: user vma to map to
  1153. * @addr: target user address of this page
  1154. * @pfn: source kernel pfn
  1155. *
  1156. * Similar to vm_inert_page, this allows drivers to insert individual pages
  1157. * they've allocated into a user vma. Same comments apply.
  1158. *
  1159. * This function should only be called from a vm_ops->fault handler, and
  1160. * in that case the handler should return NULL.
  1161. */
  1162. int vm_insert_pfn(struct vm_area_struct *vma, unsigned long addr,
  1163. unsigned long pfn)
  1164. {
  1165. struct mm_struct *mm = vma->vm_mm;
  1166. int retval;
  1167. pte_t *pte, entry;
  1168. spinlock_t *ptl;
  1169. BUG_ON(!(vma->vm_flags & VM_PFNMAP));
  1170. BUG_ON(is_cow_mapping(vma->vm_flags));
  1171. retval = -ENOMEM;
  1172. pte = get_locked_pte(mm, addr, &ptl);
  1173. if (!pte)
  1174. goto out;
  1175. retval = -EBUSY;
  1176. if (!pte_none(*pte))
  1177. goto out_unlock;
  1178. /* Ok, finally just insert the thing.. */
  1179. entry = pfn_pte(pfn, vma->vm_page_prot);
  1180. set_pte_at(mm, addr, pte, entry);
  1181. update_mmu_cache(vma, addr, entry);
  1182. retval = 0;
  1183. out_unlock:
  1184. pte_unmap_unlock(pte, ptl);
  1185. out:
  1186. return retval;
  1187. }
  1188. EXPORT_SYMBOL(vm_insert_pfn);
  1189. /*
  1190. * maps a range of physical memory into the requested pages. the old
  1191. * mappings are removed. any references to nonexistent pages results
  1192. * in null mappings (currently treated as "copy-on-access")
  1193. */
  1194. static int remap_pte_range(struct mm_struct *mm, pmd_t *pmd,
  1195. unsigned long addr, unsigned long end,
  1196. unsigned long pfn, pgprot_t prot)
  1197. {
  1198. pte_t *pte;
  1199. spinlock_t *ptl;
  1200. pte = pte_alloc_map_lock(mm, pmd, addr, &ptl);
  1201. if (!pte)
  1202. return -ENOMEM;
  1203. arch_enter_lazy_mmu_mode();
  1204. do {
  1205. BUG_ON(!pte_none(*pte));
  1206. set_pte_at(mm, addr, pte, pfn_pte(pfn, prot));
  1207. pfn++;
  1208. } while (pte++, addr += PAGE_SIZE, addr != end);
  1209. arch_leave_lazy_mmu_mode();
  1210. pte_unmap_unlock(pte - 1, ptl);
  1211. return 0;
  1212. }
  1213. static inline int remap_pmd_range(struct mm_struct *mm, pud_t *pud,
  1214. unsigned long addr, unsigned long end,
  1215. unsigned long pfn, pgprot_t prot)
  1216. {
  1217. pmd_t *pmd;
  1218. unsigned long next;
  1219. pfn -= addr >> PAGE_SHIFT;
  1220. pmd = pmd_alloc(mm, pud, addr);
  1221. if (!pmd)
  1222. return -ENOMEM;
  1223. do {
  1224. next = pmd_addr_end(addr, end);
  1225. if (remap_pte_range(mm, pmd, addr, next,
  1226. pfn + (addr >> PAGE_SHIFT), prot))
  1227. return -ENOMEM;
  1228. } while (pmd++, addr = next, addr != end);
  1229. return 0;
  1230. }
  1231. static inline int remap_pud_range(struct mm_struct *mm, pgd_t *pgd,
  1232. unsigned long addr, unsigned long end,
  1233. unsigned long pfn, pgprot_t prot)
  1234. {
  1235. pud_t *pud;
  1236. unsigned long next;
  1237. pfn -= addr >> PAGE_SHIFT;
  1238. pud = pud_alloc(mm, pgd, addr);
  1239. if (!pud)
  1240. return -ENOMEM;
  1241. do {
  1242. next = pud_addr_end(addr, end);
  1243. if (remap_pmd_range(mm, pud, addr, next,
  1244. pfn + (addr >> PAGE_SHIFT), prot))
  1245. return -ENOMEM;
  1246. } while (pud++, addr = next, addr != end);
  1247. return 0;
  1248. }
  1249. /**
  1250. * remap_pfn_range - remap kernel memory to userspace
  1251. * @vma: user vma to map to
  1252. * @addr: target user address to start at
  1253. * @pfn: physical address of kernel memory
  1254. * @size: size of map area
  1255. * @prot: page protection flags for this mapping
  1256. *
  1257. * Note: this is only safe if the mm semaphore is held when called.
  1258. */
  1259. int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
  1260. unsigned long pfn, unsigned long size, pgprot_t prot)
  1261. {
  1262. pgd_t *pgd;
  1263. unsigned long next;
  1264. unsigned long end = addr + PAGE_ALIGN(size);
  1265. struct mm_struct *mm = vma->vm_mm;
  1266. int err;
  1267. /*
  1268. * Physically remapped pages are special. Tell the
  1269. * rest of the world about it:
  1270. * VM_IO tells people not to look at these pages
  1271. * (accesses can have side effects).
  1272. * VM_RESERVED is specified all over the place, because
  1273. * in 2.4 it kept swapout's vma scan off this vma; but
  1274. * in 2.6 the LRU scan won't even find its pages, so this
  1275. * flag means no more than count its pages in reserved_vm,
  1276. * and omit it from core dump, even when VM_IO turned off.
  1277. * VM_PFNMAP tells the core MM that the base pages are just
  1278. * raw PFN mappings, and do not have a "struct page" associated
  1279. * with them.
  1280. *
  1281. * There's a horrible special case to handle copy-on-write
  1282. * behaviour that some programs depend on. We mark the "original"
  1283. * un-COW'ed pages by matching them up with "vma->vm_pgoff".
  1284. */
  1285. if (is_cow_mapping(vma->vm_flags)) {
  1286. if (addr != vma->vm_start || end != vma->vm_end)
  1287. return -EINVAL;
  1288. vma->vm_pgoff = pfn;
  1289. }
  1290. vma->vm_flags |= VM_IO | VM_RESERVED | VM_PFNMAP;
  1291. BUG_ON(addr >= end);
  1292. pfn -= addr >> PAGE_SHIFT;
  1293. pgd = pgd_offset(mm, addr);
  1294. flush_cache_range(vma, addr, end);
  1295. do {
  1296. next = pgd_addr_end(addr, end);
  1297. err = remap_pud_range(mm, pgd, addr, next,
  1298. pfn + (addr >> PAGE_SHIFT), prot);
  1299. if (err)
  1300. break;
  1301. } while (pgd++, addr = next, addr != end);
  1302. return err;
  1303. }
  1304. EXPORT_SYMBOL(remap_pfn_range);
  1305. static int apply_to_pte_range(struct mm_struct *mm, pmd_t *pmd,
  1306. unsigned long addr, unsigned long end,
  1307. pte_fn_t fn, void *data)
  1308. {
  1309. pte_t *pte;
  1310. int err;
  1311. struct page *pmd_page;
  1312. spinlock_t *uninitialized_var(ptl);
  1313. pte = (mm == &init_mm) ?
  1314. pte_alloc_kernel(pmd, addr) :
  1315. pte_alloc_map_lock(mm, pmd, addr, &ptl);
  1316. if (!pte)
  1317. return -ENOMEM;
  1318. BUG_ON(pmd_huge(*pmd));
  1319. pmd_page = pmd_page(*pmd);
  1320. do {
  1321. err = fn(pte, pmd_page, addr, data);
  1322. if (err)
  1323. break;
  1324. } while (pte++, addr += PAGE_SIZE, addr != end);
  1325. if (mm != &init_mm)
  1326. pte_unmap_unlock(pte-1, ptl);
  1327. return err;
  1328. }
  1329. static int apply_to_pmd_range(struct mm_struct *mm, pud_t *pud,
  1330. unsigned long addr, unsigned long end,
  1331. pte_fn_t fn, void *data)
  1332. {
  1333. pmd_t *pmd;
  1334. unsigned long next;
  1335. int err;
  1336. pmd = pmd_alloc(mm, pud, addr);
  1337. if (!pmd)
  1338. return -ENOMEM;
  1339. do {
  1340. next = pmd_addr_end(addr, end);
  1341. err = apply_to_pte_range(mm, pmd, addr, next, fn, data);
  1342. if (err)
  1343. break;
  1344. } while (pmd++, addr = next, addr != end);
  1345. return err;
  1346. }
  1347. static int apply_to_pud_range(struct mm_struct *mm, pgd_t *pgd,
  1348. unsigned long addr, unsigned long end,
  1349. pte_fn_t fn, void *data)
  1350. {
  1351. pud_t *pud;
  1352. unsigned long next;
  1353. int err;
  1354. pud = pud_alloc(mm, pgd, addr);
  1355. if (!pud)
  1356. return -ENOMEM;
  1357. do {
  1358. next = pud_addr_end(addr, end);
  1359. err = apply_to_pmd_range(mm, pud, addr, next, fn, data);
  1360. if (err)
  1361. break;
  1362. } while (pud++, addr = next, addr != end);
  1363. return err;
  1364. }
  1365. /*
  1366. * Scan a region of virtual memory, filling in page tables as necessary
  1367. * and calling a provided function on each leaf page table.
  1368. */
  1369. int apply_to_page_range(struct mm_struct *mm, unsigned long addr,
  1370. unsigned long size, pte_fn_t fn, void *data)
  1371. {
  1372. pgd_t *pgd;
  1373. unsigned long next;
  1374. unsigned long end = addr + size;
  1375. int err;
  1376. BUG_ON(addr >= end);
  1377. pgd = pgd_offset(mm, addr);
  1378. do {
  1379. next = pgd_addr_end(addr, end);
  1380. err = apply_to_pud_range(mm, pgd, addr, next, fn, data);
  1381. if (err)
  1382. break;
  1383. } while (pgd++, addr = next, addr != end);
  1384. return err;
  1385. }
  1386. EXPORT_SYMBOL_GPL(apply_to_page_range);
  1387. /*
  1388. * handle_pte_fault chooses page fault handler according to an entry
  1389. * which was read non-atomically. Before making any commitment, on
  1390. * those architectures or configurations (e.g. i386 with PAE) which
  1391. * might give a mix of unmatched parts, do_swap_page and do_file_page
  1392. * must check under lock before unmapping the pte and proceeding
  1393. * (but do_wp_page is only called after already making such a check;
  1394. * and do_anonymous_page and do_no_page can safely check later on).
  1395. */
  1396. static inline int pte_unmap_same(struct mm_struct *mm, pmd_t *pmd,
  1397. pte_t *page_table, pte_t orig_pte)
  1398. {
  1399. int same = 1;
  1400. #if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
  1401. if (sizeof(pte_t) > sizeof(unsigned long)) {
  1402. spinlock_t *ptl = pte_lockptr(mm, pmd);
  1403. spin_lock(ptl);
  1404. same = pte_same(*page_table, orig_pte);
  1405. spin_unlock(ptl);
  1406. }
  1407. #endif
  1408. pte_unmap(page_table);
  1409. return same;
  1410. }
  1411. /*
  1412. * Do pte_mkwrite, but only if the vma says VM_WRITE. We do this when
  1413. * servicing faults for write access. In the normal case, do always want
  1414. * pte_mkwrite. But get_user_pages can cause write faults for mappings
  1415. * that do not have writing enabled, when used by access_process_vm.
  1416. */
  1417. static inline pte_t maybe_mkwrite(pte_t pte, struct vm_area_struct *vma)
  1418. {
  1419. if (likely(vma->vm_flags & VM_WRITE))
  1420. pte = pte_mkwrite(pte);
  1421. return pte;
  1422. }
  1423. static inline void cow_user_page(struct page *dst, struct page *src, unsigned long va, struct vm_area_struct *vma)
  1424. {
  1425. /*
  1426. * If the source page was a PFN mapping, we don't have
  1427. * a "struct page" for it. We do a best-effort copy by
  1428. * just copying from the original user address. If that
  1429. * fails, we just zero-fill it. Live with it.
  1430. */
  1431. if (unlikely(!src)) {
  1432. void *kaddr = kmap_atomic(dst, KM_USER0);
  1433. void __user *uaddr = (void __user *)(va & PAGE_MASK);
  1434. /*
  1435. * This really shouldn't fail, because the page is there
  1436. * in the page tables. But it might just be unreadable,
  1437. * in which case we just give up and fill the result with
  1438. * zeroes.
  1439. */
  1440. if (__copy_from_user_inatomic(kaddr, uaddr, PAGE_SIZE))
  1441. memset(kaddr, 0, PAGE_SIZE);
  1442. kunmap_atomic(kaddr, KM_USER0);
  1443. flush_dcache_page(dst);
  1444. return;
  1445. }
  1446. copy_user_highpage(dst, src, va, vma);
  1447. }
  1448. /*
  1449. * This routine handles present pages, when users try to write
  1450. * to a shared page. It is done by copying the page to a new address
  1451. * and decrementing the shared-page counter for the old page.
  1452. *
  1453. * Note that this routine assumes that the protection checks have been
  1454. * done by the caller (the low-level page fault routine in most cases).
  1455. * Thus we can safely just mark it writable once we've done any necessary
  1456. * COW.
  1457. *
  1458. * We also mark the page dirty at this point even though the page will
  1459. * change only once the write actually happens. This avoids a few races,
  1460. * and potentially makes it more efficient.
  1461. *
  1462. * We enter with non-exclusive mmap_sem (to exclude vma changes,
  1463. * but allow concurrent faults), with pte both mapped and locked.
  1464. * We return with mmap_sem still held, but pte unmapped and unlocked.
  1465. */
  1466. static int do_wp_page(struct mm_struct *mm, struct vm_area_struct *vma,
  1467. unsigned long address, pte_t *page_table, pmd_t *pmd,
  1468. spinlock_t *ptl, pte_t orig_pte)
  1469. {
  1470. struct page *old_page, *new_page;
  1471. pte_t entry;
  1472. int reuse = 0, ret = 0;
  1473. struct page *dirty_page = NULL;
  1474. old_page = vm_normal_page(vma, address, orig_pte);
  1475. if (!old_page)
  1476. goto gotten;
  1477. /*
  1478. * Take out anonymous pages first, anonymous shared vmas are
  1479. * not dirty accountable.
  1480. */
  1481. if (PageAnon(old_page)) {
  1482. if (!TestSetPageLocked(old_page)) {
  1483. reuse = can_share_swap_page(old_page);
  1484. unlock_page(old_page);
  1485. }
  1486. } else if (unlikely((vma->vm_flags & (VM_WRITE|VM_SHARED)) ==
  1487. (VM_WRITE|VM_SHARED))) {
  1488. /*
  1489. * Only catch write-faults on shared writable pages,
  1490. * read-only shared pages can get COWed by
  1491. * get_user_pages(.write=1, .force=1).
  1492. */
  1493. if (vma->vm_ops && vma->vm_ops->page_mkwrite) {
  1494. /*
  1495. * Notify the address space that the page is about to
  1496. * become writable so that it can prohibit this or wait
  1497. * for the page to get into an appropriate state.
  1498. *
  1499. * We do this without the lock held, so that it can
  1500. * sleep if it needs to.
  1501. */
  1502. page_cache_get(old_page);
  1503. pte_unmap_unlock(page_table, ptl);
  1504. if (vma->vm_ops->page_mkwrite(vma, old_page) < 0)
  1505. goto unwritable_page;
  1506. /*
  1507. * Since we dropped the lock we need to revalidate
  1508. * the PTE as someone else may have changed it. If
  1509. * they did, we just return, as we can count on the
  1510. * MMU to tell us if they didn't also make it writable.
  1511. */
  1512. page_table = pte_offset_map_lock(mm, pmd, address,
  1513. &ptl);
  1514. page_cache_release(old_page);
  1515. if (!pte_same(*page_table, orig_pte))
  1516. goto unlock;
  1517. }
  1518. dirty_page = old_page;
  1519. get_page(dirty_page);
  1520. reuse = 1;
  1521. }
  1522. if (reuse) {
  1523. flush_cache_page(vma, address, pte_pfn(orig_pte));
  1524. entry = pte_mkyoung(orig_pte);
  1525. entry = maybe_mkwrite(pte_mkdirty(entry), vma);
  1526. if (ptep_set_access_flags(vma, address, page_table, entry,1)) {
  1527. update_mmu_cache(vma, address, entry);
  1528. lazy_mmu_prot_update(entry);
  1529. }
  1530. ret |= VM_FAULT_WRITE;
  1531. goto unlock;
  1532. }
  1533. /*
  1534. * Ok, we need to copy. Oh, well..
  1535. */
  1536. page_cache_get(old_page);
  1537. gotten:
  1538. pte_unmap_unlock(page_table, ptl);
  1539. if (unlikely(anon_vma_prepare(vma)))
  1540. goto oom;
  1541. if (old_page == ZERO_PAGE(address)) {
  1542. new_page = alloc_zeroed_user_highpage_movable(vma, address);
  1543. if (!new_page)
  1544. goto oom;
  1545. } else {
  1546. new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
  1547. if (!new_page)
  1548. goto oom;
  1549. cow_user_page(new_page, old_page, address, vma);
  1550. }
  1551. /*
  1552. * Re-check the pte - we dropped the lock
  1553. */
  1554. page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
  1555. if (likely(pte_same(*page_table, orig_pte))) {
  1556. if (old_page) {
  1557. page_remove_rmap(old_page, vma);
  1558. if (!PageAnon(old_page)) {
  1559. dec_mm_counter(mm, file_rss);
  1560. inc_mm_counter(mm, anon_rss);
  1561. }
  1562. } else
  1563. inc_mm_counter(mm, anon_rss);
  1564. flush_cache_page(vma, address, pte_pfn(orig_pte));
  1565. entry = mk_pte(new_page, vma->vm_page_prot);
  1566. entry = maybe_mkwrite(pte_mkdirty(entry), vma);
  1567. lazy_mmu_prot_update(entry);
  1568. /*
  1569. * Clear the pte entry and flush it first, before updating the
  1570. * pte with the new entry. This will avoid a race condition
  1571. * seen in the presence of one thread doing SMC and another
  1572. * thread doing COW.
  1573. */
  1574. ptep_clear_flush(vma, address, page_table);
  1575. set_pte_at(mm, address, page_table, entry);
  1576. update_mmu_cache(vma, address, entry);
  1577. lru_cache_add_active(new_page);
  1578. page_add_new_anon_rmap(new_page, vma, address);
  1579. /* Free the old page.. */
  1580. new_page = old_page;
  1581. ret |= VM_FAULT_WRITE;
  1582. }
  1583. if (new_page)
  1584. page_cache_release(new_page);
  1585. if (old_page)
  1586. page_cache_release(old_page);
  1587. unlock:
  1588. pte_unmap_unlock(page_table, ptl);
  1589. if (dirty_page) {
  1590. /*
  1591. * Yes, Virginia, this is actually required to prevent a race
  1592. * with clear_page_dirty_for_io() from clearing the page dirty
  1593. * bit after it clear all dirty ptes, but before a racing
  1594. * do_wp_page installs a dirty pte.
  1595. *
  1596. * do_no_page is protected similarly.
  1597. */
  1598. wait_on_page_locked(dirty_page);
  1599. set_page_dirty_balance(dirty_page);
  1600. put_page(dirty_page);
  1601. }
  1602. return ret;
  1603. oom:
  1604. if (old_page)
  1605. page_cache_release(old_page);
  1606. return VM_FAULT_OOM;
  1607. unwritable_page:
  1608. page_cache_release(old_page);
  1609. return VM_FAULT_SIGBUS;
  1610. }
  1611. /*
  1612. * Helper functions for unmap_mapping_range().
  1613. *
  1614. * __ Notes on dropping i_mmap_lock to reduce latency while unmapping __
  1615. *
  1616. * We have to restart searching the prio_tree whenever we drop the lock,
  1617. * since the iterator is only valid while the lock is held, and anyway
  1618. * a later vma might be split and reinserted earlier while lock dropped.
  1619. *
  1620. * The list of nonlinear vmas could be handled more efficiently, using
  1621. * a placeholder, but handle it in the same way until a need is shown.
  1622. * It is important to search the prio_tree before nonlinear list: a vma
  1623. * may become nonlinear and be shifted from prio_tree to nonlinear list
  1624. * while the lock is dropped; but never shifted from list to prio_tree.
  1625. *
  1626. * In order to make forward progress despite restarting the search,
  1627. * vm_truncate_count is used to mark a vma as now dealt with, so we can
  1628. * quickly skip it next time around. Since the prio_tree search only
  1629. * shows us those vmas affected by unmapping the range in question, we
  1630. * can't efficiently keep all vmas in step with mapping->truncate_count:
  1631. * so instead reset them all whenever it wraps back to 0 (then go to 1).
  1632. * mapping->truncate_count and vma->vm_truncate_count are protected by
  1633. * i_mmap_lock.
  1634. *
  1635. * In order to make forward progress despite repeatedly restarting some
  1636. * large vma, note the restart_addr from unmap_vmas when it breaks out:
  1637. * and restart from that address when we reach that vma again. It might
  1638. * have been split or merged, shrunk or extended, but never shifted: so
  1639. * restart_addr remains valid so long as it remains in the vma's range.
  1640. * unmap_mapping_range forces truncate_count to leap over page-aligned
  1641. * values so we can save vma's restart_addr in its truncate_count field.
  1642. */
  1643. #define is_restart_addr(truncate_count) (!((truncate_count) & ~PAGE_MASK))
  1644. static void reset_vma_truncate_counts(struct address_space *mapping)
  1645. {
  1646. struct vm_area_struct *vma;
  1647. struct prio_tree_iter iter;
  1648. vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, 0, ULONG_MAX)
  1649. vma->vm_truncate_count = 0;
  1650. list_for_each_entry(vma, &mapping->i_mmap_nonlinear, shared.vm_set.list)
  1651. vma->vm_truncate_count = 0;
  1652. }
  1653. static int unmap_mapping_range_vma(struct vm_area_struct *vma,
  1654. unsigned long start_addr, unsigned long end_addr,
  1655. struct zap_details *details)
  1656. {
  1657. unsigned long restart_addr;
  1658. int need_break;
  1659. /*
  1660. * files that support invalidating or truncating portions of the
  1661. * file from under mmaped areas must have their ->fault function
  1662. * return a locked page (and set VM_FAULT_LOCKED in the return).
  1663. * This provides synchronisation against concurrent unmapping here.
  1664. */
  1665. again:
  1666. restart_addr = vma->vm_truncate_count;
  1667. if (is_restart_addr(restart_addr) && start_addr < restart_addr) {
  1668. start_addr = restart_addr;
  1669. if (start_addr >= end_addr) {
  1670. /* Top of vma has been split off since last time */
  1671. vma->vm_truncate_count = details->truncate_count;
  1672. return 0;
  1673. }
  1674. }
  1675. restart_addr = zap_page_range(vma, start_addr,
  1676. end_addr - start_addr, details);
  1677. need_break = need_resched() ||
  1678. need_lockbreak(details->i_mmap_lock);
  1679. if (restart_addr >= end_addr) {
  1680. /* We have now completed this vma: mark it so */
  1681. vma->vm_truncate_count = details->truncate_count;
  1682. if (!need_break)
  1683. return 0;
  1684. } else {
  1685. /* Note restart_addr in vma's truncate_count field */
  1686. vma->vm_truncate_count = restart_addr;
  1687. if (!need_break)
  1688. goto again;
  1689. }
  1690. spin_unlock(details->i_mmap_lock);
  1691. cond_resched();
  1692. spin_lock(details->i_mmap_lock);
  1693. return -EINTR;
  1694. }
  1695. static inline void unmap_mapping_range_tree(struct prio_tree_root *root,
  1696. struct zap_details *details)
  1697. {
  1698. struct vm_area_struct *vma;
  1699. struct prio_tree_iter iter;
  1700. pgoff_t vba, vea, zba, zea;
  1701. restart:
  1702. vma_prio_tree_foreach(vma, &iter, root,
  1703. details->first_index, details->last_index) {
  1704. /* Skip quickly over those we have already dealt with */
  1705. if (vma->vm_truncate_count == details->truncate_count)
  1706. continue;
  1707. vba = vma->vm_pgoff;
  1708. vea = vba + ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) - 1;
  1709. /* Assume for now that PAGE_CACHE_SHIFT == PAGE_SHIFT */
  1710. zba = details->first_index;
  1711. if (zba < vba)
  1712. zba = vba;
  1713. zea = details->last_index;
  1714. if (zea > vea)
  1715. zea = vea;
  1716. if (unmap_mapping_range_vma(vma,
  1717. ((zba - vba) << PAGE_SHIFT) + vma->vm_start,
  1718. ((zea - vba + 1) << PAGE_SHIFT) + vma->vm_start,
  1719. details) < 0)
  1720. goto restart;
  1721. }
  1722. }
  1723. static inline void unmap_mapping_range_list(struct list_head *head,
  1724. struct zap_details *details)
  1725. {
  1726. struct vm_area_struct *vma;
  1727. /*
  1728. * In nonlinear VMAs there is no correspondence between virtual address
  1729. * offset and file offset. So we must perform an exhaustive search
  1730. * across *all* the pages in each nonlinear VMA, not just the pages
  1731. * whose virtual address lies outside the file truncation point.
  1732. */
  1733. restart:
  1734. list_for_each_entry(vma, head, shared.vm_set.list) {
  1735. /* Skip quickly over those we have already dealt with */
  1736. if (vma->vm_truncate_count == details->truncate_count)
  1737. continue;
  1738. details->nonlinear_vma = vma;
  1739. if (unmap_mapping_range_vma(vma, vma->vm_start,
  1740. vma->vm_end, details) < 0)
  1741. goto restart;
  1742. }
  1743. }
  1744. /**
  1745. * unmap_mapping_range - unmap the portion of all mmaps in the specified address_space corresponding to the specified page range in the underlying file.
  1746. * @mapping: the address space containing mmaps to be unmapped.
  1747. * @holebegin: byte in first page to unmap, relative to the start of
  1748. * the underlying file. This will be rounded down to a PAGE_SIZE
  1749. * boundary. Note that this is different from vmtruncate(), which
  1750. * must keep the partial page. In contrast, we must get rid of
  1751. * partial pages.
  1752. * @holelen: size of prospective hole in bytes. This will be rounded
  1753. * up to a PAGE_SIZE boundary. A holelen of zero truncates to the
  1754. * end of the file.
  1755. * @even_cows: 1 when truncating a file, unmap even private COWed pages;
  1756. * but 0 when invalidating pagecache, don't throw away private data.
  1757. */
  1758. void unmap_mapping_range(struct address_space *mapping,
  1759. loff_t const holebegin, loff_t const holelen, int even_cows)
  1760. {
  1761. struct zap_details details;
  1762. pgoff_t hba = holebegin >> PAGE_SHIFT;
  1763. pgoff_t hlen = (holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
  1764. /* Check for overflow. */
  1765. if (sizeof(holelen) > sizeof(hlen)) {
  1766. long long holeend =
  1767. (holebegin + holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
  1768. if (holeend & ~(long long)ULONG_MAX)
  1769. hlen = ULONG_MAX - hba + 1;
  1770. }
  1771. details.check_mapping = even_cows? NULL: mapping;
  1772. details.nonlinear_vma = NULL;
  1773. details.first_index = hba;
  1774. details.last_index = hba + hlen - 1;
  1775. if (details.last_index < details.first_index)
  1776. details.last_index = ULONG_MAX;
  1777. details.i_mmap_lock = &mapping->i_mmap_lock;
  1778. spin_lock(&mapping->i_mmap_lock);
  1779. /* Protect against endless unmapping loops */
  1780. mapping->truncate_count++;
  1781. if (unlikely(is_restart_addr(mapping->truncate_count))) {
  1782. if (mapping->truncate_count == 0)
  1783. reset_vma_truncate_counts(mapping);
  1784. mapping->truncate_count++;
  1785. }
  1786. details.truncate_count = mapping->truncate_count;
  1787. if (unlikely(!prio_tree_empty(&mapping->i_mmap)))
  1788. unmap_mapping_range_tree(&mapping->i_mmap, &details);
  1789. if (unlikely(!list_empty(&mapping->i_mmap_nonlinear)))
  1790. unmap_mapping_range_list(&mapping->i_mmap_nonlinear, &details);
  1791. spin_unlock(&mapping->i_mmap_lock);
  1792. }
  1793. EXPORT_SYMBOL(unmap_mapping_range);
  1794. /**
  1795. * vmtruncate - unmap mappings "freed" by truncate() syscall
  1796. * @inode: inode of the file used
  1797. * @offset: file offset to start truncating
  1798. *
  1799. * NOTE! We have to be ready to update the memory sharing
  1800. * between the file and the memory map for a potential last
  1801. * incomplete page. Ugly, but necessary.
  1802. */
  1803. int vmtruncate(struct inode * inode, loff_t offset)
  1804. {
  1805. struct address_space *mapping = inode->i_mapping;
  1806. unsigned long limit;
  1807. if (inode->i_size < offset)
  1808. goto do_expand;
  1809. /*
  1810. * truncation of in-use swapfiles is disallowed - it would cause
  1811. * subsequent swapout to scribble on the now-freed blocks.
  1812. */
  1813. if (IS_SWAPFILE(inode))
  1814. goto out_busy;
  1815. i_size_write(inode, offset);
  1816. /*
  1817. * unmap_mapping_range is called twice, first simply for efficiency
  1818. * so that truncate_inode_pages does fewer single-page unmaps. However
  1819. * after this first call, and before truncate_inode_pages finishes,
  1820. * it is possible for private pages to be COWed, which remain after
  1821. * truncate_inode_pages finishes, hence the second unmap_mapping_range
  1822. * call must be made for correctness.
  1823. */
  1824. unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
  1825. truncate_inode_pages(mapping, offset);
  1826. unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
  1827. goto out_truncate;
  1828. do_expand:
  1829. limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
  1830. if (limit != RLIM_INFINITY && offset > limit)
  1831. goto out_sig;
  1832. if (offset > inode->i_sb->s_maxbytes)
  1833. goto out_big;
  1834. i_size_write(inode, offset);
  1835. out_truncate:
  1836. if (inode->i_op && inode->i_op->truncate)
  1837. inode->i_op->truncate(inode);
  1838. return 0;
  1839. out_sig:
  1840. send_sig(SIGXFSZ, current, 0);
  1841. out_big:
  1842. return -EFBIG;
  1843. out_busy:
  1844. return -ETXTBSY;
  1845. }
  1846. EXPORT_SYMBOL(vmtruncate);
  1847. int vmtruncate_range(struct inode *inode, loff_t offset, loff_t end)
  1848. {
  1849. struct address_space *mapping = inode->i_mapping;
  1850. /*
  1851. * If the underlying filesystem is not going to provide
  1852. * a way to truncate a range of blocks (punch a hole) -
  1853. * we should return failure right now.
  1854. */
  1855. if (!inode->i_op || !inode->i_op->truncate_range)
  1856. return -ENOSYS;
  1857. mutex_lock(&inode->i_mutex);
  1858. down_write(&inode->i_alloc_sem);
  1859. unmap_mapping_range(mapping, offset, (end - offset), 1);
  1860. truncate_inode_pages_range(mapping, offset, end);
  1861. unmap_mapping_range(mapping, offset, (end - offset), 1);
  1862. inode->i_op->truncate_range(inode, offset, end);
  1863. up_write(&inode->i_alloc_sem);
  1864. mutex_unlock(&inode->i_mutex);
  1865. return 0;
  1866. }
  1867. /**
  1868. * swapin_readahead - swap in pages in hope we need them soon
  1869. * @entry: swap entry of this memory
  1870. * @addr: address to start
  1871. * @vma: user vma this addresses belong to
  1872. *
  1873. * Primitive swap readahead code. We simply read an aligned block of
  1874. * (1 << page_cluster) entries in the swap area. This method is chosen
  1875. * because it doesn't cost us any seek time. We also make sure to queue
  1876. * the 'original' request together with the readahead ones...
  1877. *
  1878. * This has been extended to use the NUMA policies from the mm triggering
  1879. * the readahead.
  1880. *
  1881. * Caller must hold down_read on the vma->vm_mm if vma is not NULL.
  1882. */
  1883. void swapin_readahead(swp_entry_t entry, unsigned long addr,struct vm_area_struct *vma)
  1884. {
  1885. #ifdef CONFIG_NUMA
  1886. struct vm_area_struct *next_vma = vma ? vma->vm_next : NULL;
  1887. #endif
  1888. int i, num;
  1889. struct page *new_page;
  1890. unsigned long offset;
  1891. /*
  1892. * Get the number of handles we should do readahead io to.
  1893. */
  1894. num = valid_swaphandles(entry, &offset);
  1895. for (i = 0; i < num; offset++, i++) {
  1896. /* Ok, do the async read-ahead now */
  1897. new_page = read_swap_cache_async(swp_entry(swp_type(entry),
  1898. offset), vma, addr);
  1899. if (!new_page)
  1900. break;
  1901. page_cache_release(new_page);
  1902. #ifdef CONFIG_NUMA
  1903. /*
  1904. * Find the next applicable VMA for the NUMA policy.
  1905. */
  1906. addr += PAGE_SIZE;
  1907. if (addr == 0)
  1908. vma = NULL;
  1909. if (vma) {
  1910. if (addr >= vma->vm_end) {
  1911. vma = next_vma;
  1912. next_vma = vma ? vma->vm_next : NULL;
  1913. }
  1914. if (vma && addr < vma->vm_start)
  1915. vma = NULL;
  1916. } else {
  1917. if (next_vma && addr >= next_vma->vm_start) {
  1918. vma = next_vma;
  1919. next_vma = vma->vm_next;
  1920. }
  1921. }
  1922. #endif
  1923. }
  1924. lru_add_drain(); /* Push any new pages onto the LRU now */
  1925. }
  1926. /*
  1927. * We enter with non-exclusive mmap_sem (to exclude vma changes,
  1928. * but allow concurrent faults), and pte mapped but not yet locked.
  1929. * We return with mmap_sem still held, but pte unmapped and unlocked.
  1930. */
  1931. static int do_swap_page(struct mm_struct *mm, struct vm_area_struct *vma,
  1932. unsigned long address, pte_t *page_table, pmd_t *pmd,
  1933. int write_access, pte_t orig_pte)
  1934. {
  1935. spinlock_t *ptl;
  1936. struct page *page;
  1937. swp_entry_t entry;
  1938. pte_t pte;
  1939. int ret = 0;
  1940. if (!pte_unmap_same(mm, pmd, page_table, orig_pte))
  1941. goto out;
  1942. entry = pte_to_swp_entry(orig_pte);
  1943. if (is_migration_entry(entry)) {
  1944. migration_entry_wait(mm, pmd, address);
  1945. goto out;
  1946. }
  1947. delayacct_set_flag(DELAYACCT_PF_SWAPIN);
  1948. page = lookup_swap_cache(entry);
  1949. if (!page) {
  1950. grab_swap_token(); /* Contend for token _before_ read-in */
  1951. swapin_readahead(entry, address, vma);
  1952. page = read_swap_cache_async(entry, vma, address);
  1953. if (!page) {
  1954. /*
  1955. * Back out if somebody else faulted in this pte
  1956. * while we released the pte lock.
  1957. */
  1958. page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
  1959. if (likely(pte_same(*page_table, orig_pte)))
  1960. ret = VM_FAULT_OOM;
  1961. delayacct_clear_flag(DELAYACCT_PF_SWAPIN);
  1962. goto unlock;
  1963. }
  1964. /* Had to read the page from swap area: Major fault */
  1965. ret = VM_FAULT_MAJOR;
  1966. count_vm_event(PGMAJFAULT);
  1967. }
  1968. delayacct_clear_flag(DELAYACCT_PF_SWAPIN);
  1969. mark_page_accessed(page);
  1970. lock_page(page);
  1971. /*
  1972. * Back out if somebody else already faulted in this pte.
  1973. */
  1974. page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
  1975. if (unlikely(!pte_same(*page_table, orig_pte)))
  1976. goto out_nomap;
  1977. if (unlikely(!PageUptodate(page))) {
  1978. ret = VM_FAULT_SIGBUS;
  1979. goto out_nomap;
  1980. }
  1981. /* The page isn't present yet, go ahead with the fault. */
  1982. inc_mm_counter(mm, anon_rss);
  1983. pte = mk_pte(page, vma->vm_page_prot);
  1984. if (write_access && can_share_swap_page(page)) {
  1985. pte = maybe_mkwrite(pte_mkdirty(pte), vma);
  1986. write_access = 0;
  1987. }
  1988. flush_icache_page(vma, page);
  1989. set_pte_at(mm, address, page_table, pte);
  1990. page_add_anon_rmap(page, vma, address);
  1991. swap_free(entry);
  1992. if (vm_swap_full())
  1993. remove_exclusive_swap_page(page);
  1994. unlock_page(page);
  1995. if (write_access) {
  1996. /* XXX: We could OR the do_wp_page code with this one? */
  1997. if (do_wp_page(mm, vma, address,
  1998. page_table, pmd, ptl, pte) & VM_FAULT_OOM)
  1999. ret = VM_FAULT_OOM;
  2000. goto out;
  2001. }
  2002. /* No need to invalidate - it was non-present before */
  2003. update_mmu_cache(vma, address, pte);
  2004. unlock:
  2005. pte_unmap_unlock(page_table, ptl);
  2006. out:
  2007. return ret;
  2008. out_nomap:
  2009. pte_unmap_unlock(page_table, ptl);
  2010. unlock_page(page);
  2011. page_cache_release(page);
  2012. return ret;
  2013. }
  2014. /*
  2015. * We enter with non-exclusive mmap_sem (to exclude vma changes,
  2016. * but allow concurrent faults), and pte mapped but not yet locked.
  2017. * We return with mmap_sem still held, but pte unmapped and unlocked.
  2018. */
  2019. static int do_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
  2020. unsigned long address, pte_t *page_table, pmd_t *pmd,
  2021. int write_access)
  2022. {
  2023. struct page *page;
  2024. spinlock_t *ptl;
  2025. pte_t entry;
  2026. if (write_access) {
  2027. /* Allocate our own private page. */
  2028. pte_unmap(page_table);
  2029. if (unlikely(anon_vma_prepare(vma)))
  2030. goto oom;
  2031. page = alloc_zeroed_user_highpage_movable(vma, address);
  2032. if (!page)
  2033. goto oom;
  2034. entry = mk_pte(page, vma->vm_page_prot);
  2035. entry = maybe_mkwrite(pte_mkdirty(entry), vma);
  2036. page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
  2037. if (!pte_none(*page_table))
  2038. goto release;
  2039. inc_mm_counter(mm, anon_rss);
  2040. lru_cache_add_active(page);
  2041. page_add_new_anon_rmap(page, vma, address);
  2042. } else {
  2043. /* Map the ZERO_PAGE - vm_page_prot is readonly */
  2044. page = ZERO_PAGE(address);
  2045. page_cache_get(page);
  2046. entry = mk_pte(page, vma->vm_page_prot);
  2047. ptl = pte_lockptr(mm, pmd);
  2048. spin_lock(ptl);
  2049. if (!pte_none(*page_table))
  2050. goto release;
  2051. inc_mm_counter(mm, file_rss);
  2052. page_add_file_rmap(page);
  2053. }
  2054. set_pte_at(mm, address, page_table, entry);
  2055. /* No need to invalidate - it was non-present before */
  2056. update_mmu_cache(vma, address, entry);
  2057. lazy_mmu_prot_update(entry);
  2058. unlock:
  2059. pte_unmap_unlock(page_table, ptl);
  2060. return 0;
  2061. release:
  2062. page_cache_release(page);
  2063. goto unlock;
  2064. oom:
  2065. return VM_FAULT_OOM;
  2066. }
  2067. /*
  2068. * __do_fault() tries to create a new page mapping. It aggressively
  2069. * tries to share with existing pages, but makes a separate copy if
  2070. * the FAULT_FLAG_WRITE is set in the flags parameter in order to avoid
  2071. * the next page fault.
  2072. *
  2073. * As this is called only for pages that do not currently exist, we
  2074. * do not need to flush old virtual caches or the TLB.
  2075. *
  2076. * We enter with non-exclusive mmap_sem (to exclude vma changes,
  2077. * but allow concurrent faults), and pte mapped but not yet locked.
  2078. * We return with mmap_sem still held, but pte unmapped and unlocked.
  2079. */
  2080. static int __do_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  2081. unsigned long address, pte_t *page_table, pmd_t *pmd,
  2082. pgoff_t pgoff, unsigned int flags, pte_t orig_pte)
  2083. {
  2084. spinlock_t *ptl;
  2085. struct page *page;
  2086. pte_t entry;
  2087. int anon = 0;
  2088. struct page *dirty_page = NULL;
  2089. struct vm_fault vmf;
  2090. int ret;
  2091. vmf.virtual_address = (void __user *)(address & PAGE_MASK);
  2092. vmf.pgoff = pgoff;
  2093. vmf.flags = flags;
  2094. vmf.page = NULL;
  2095. pte_unmap(page_table);
  2096. BUG_ON(vma->vm_flags & VM_PFNMAP);
  2097. if (likely(vma->vm_ops->fault)) {
  2098. ret = vma->vm_ops->fault(vma, &vmf);
  2099. if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))
  2100. return ret;
  2101. } else {
  2102. /* Legacy ->nopage path */
  2103. ret = 0;
  2104. vmf.page = vma->vm_ops->nopage(vma, address & PAGE_MASK, &ret);
  2105. /* no page was available -- either SIGBUS or OOM */
  2106. if (unlikely(vmf.page == NOPAGE_SIGBUS))
  2107. return VM_FAULT_SIGBUS;
  2108. else if (unlikely(vmf.page == NOPAGE_OOM))
  2109. return VM_FAULT_OOM;
  2110. }
  2111. /*
  2112. * For consistency in subsequent calls, make the faulted page always
  2113. * locked.
  2114. */
  2115. if (unlikely(!(ret & VM_FAULT_LOCKED)))
  2116. lock_page(vmf.page);
  2117. else
  2118. VM_BUG_ON(!PageLocked(vmf.page));
  2119. /*
  2120. * Should we do an early C-O-W break?
  2121. */
  2122. page = vmf.page;
  2123. if (flags & FAULT_FLAG_WRITE) {
  2124. if (!(vma->vm_flags & VM_SHARED)) {
  2125. anon = 1;
  2126. if (unlikely(anon_vma_prepare(vma))) {
  2127. ret = VM_FAULT_OOM;
  2128. goto out;
  2129. }
  2130. page = alloc_page_vma(GFP_HIGHUSER_MOVABLE,
  2131. vma, address);
  2132. if (!page) {
  2133. ret = VM_FAULT_OOM;
  2134. goto out;
  2135. }
  2136. copy_user_highpage(page, vmf.page, address, vma);
  2137. } else {
  2138. /*
  2139. * If the page will be shareable, see if the backing
  2140. * address space wants to know that the page is about
  2141. * to become writable
  2142. */
  2143. if (vma->vm_ops->page_mkwrite) {
  2144. unlock_page(page);
  2145. if (vma->vm_ops->page_mkwrite(vma, page) < 0) {
  2146. ret = VM_FAULT_SIGBUS;
  2147. anon = 1; /* no anon but release vmf.page */
  2148. goto out_unlocked;
  2149. }
  2150. lock_page(page);
  2151. /*
  2152. * XXX: this is not quite right (racy vs
  2153. * invalidate) to unlock and relock the page
  2154. * like this, however a better fix requires
  2155. * reworking page_mkwrite locking API, which
  2156. * is better done later.
  2157. */
  2158. if (!page->mapping) {
  2159. ret = 0;
  2160. anon = 1; /* no anon but release vmf.page */
  2161. goto out;
  2162. }
  2163. }
  2164. }
  2165. }
  2166. page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
  2167. /*
  2168. * This silly early PAGE_DIRTY setting removes a race
  2169. * due to the bad i386 page protection. But it's valid
  2170. * for other architectures too.
  2171. *
  2172. * Note that if write_access is true, we either now have
  2173. * an exclusive copy of the page, or this is a shared mapping,
  2174. * so we can make it writable and dirty to avoid having to
  2175. * handle that later.
  2176. */
  2177. /* Only go through if we didn't race with anybody else... */
  2178. if (likely(pte_same(*page_table, orig_pte))) {
  2179. flush_icache_page(vma, page);
  2180. entry = mk_pte(page, vma->vm_page_prot);
  2181. if (flags & FAULT_FLAG_WRITE)
  2182. entry = maybe_mkwrite(pte_mkdirty(entry), vma);
  2183. set_pte_at(mm, address, page_table, entry);
  2184. if (anon) {
  2185. inc_mm_counter(mm, anon_rss);
  2186. lru_cache_add_active(page);
  2187. page_add_new_anon_rmap(page, vma, address);
  2188. } else {
  2189. inc_mm_counter(mm, file_rss);
  2190. page_add_file_rmap(page);
  2191. if (flags & FAULT_FLAG_WRITE) {
  2192. dirty_page = page;
  2193. get_page(dirty_page);
  2194. }
  2195. }
  2196. /* no need to invalidate: a not-present page won't be cached */
  2197. update_mmu_cache(vma, address, entry);
  2198. lazy_mmu_prot_update(entry);
  2199. } else {
  2200. if (anon)
  2201. page_cache_release(page);
  2202. else
  2203. anon = 1; /* no anon but release faulted_page */
  2204. }
  2205. pte_unmap_unlock(page_table, ptl);
  2206. out:
  2207. unlock_page(vmf.page);
  2208. out_unlocked:
  2209. if (anon)
  2210. page_cache_release(vmf.page);
  2211. else if (dirty_page) {
  2212. set_page_dirty_balance(dirty_page);
  2213. put_page(dirty_page);
  2214. }
  2215. return ret;
  2216. }
  2217. static int do_linear_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  2218. unsigned long address, pte_t *page_table, pmd_t *pmd,
  2219. int write_access, pte_t orig_pte)
  2220. {
  2221. pgoff_t pgoff = (((address & PAGE_MASK)
  2222. - vma->vm_start) >> PAGE_CACHE_SHIFT) + vma->vm_pgoff;
  2223. unsigned int flags = (write_access ? FAULT_FLAG_WRITE : 0);
  2224. return __do_fault(mm, vma, address, page_table, pmd, pgoff,
  2225. flags, orig_pte);
  2226. }
  2227. /*
  2228. * do_no_pfn() tries to create a new page mapping for a page without
  2229. * a struct_page backing it
  2230. *
  2231. * As this is called only for pages that do not currently exist, we
  2232. * do not need to flush old virtual caches or the TLB.
  2233. *
  2234. * We enter with non-exclusive mmap_sem (to exclude vma changes,
  2235. * but allow concurrent faults), and pte mapped but not yet locked.
  2236. * We return with mmap_sem still held, but pte unmapped and unlocked.
  2237. *
  2238. * It is expected that the ->nopfn handler always returns the same pfn
  2239. * for a given virtual mapping.
  2240. *
  2241. * Mark this `noinline' to prevent it from bloating the main pagefault code.
  2242. */
  2243. static noinline int do_no_pfn(struct mm_struct *mm, struct vm_area_struct *vma,
  2244. unsigned long address, pte_t *page_table, pmd_t *pmd,
  2245. int write_access)
  2246. {
  2247. spinlock_t *ptl;
  2248. pte_t entry;
  2249. unsigned long pfn;
  2250. pte_unmap(page_table);
  2251. BUG_ON(!(vma->vm_flags & VM_PFNMAP));
  2252. BUG_ON(is_cow_mapping(vma->vm_flags));
  2253. pfn = vma->vm_ops->nopfn(vma, address & PAGE_MASK);
  2254. if (unlikely(pfn == NOPFN_OOM))
  2255. return VM_FAULT_OOM;
  2256. else if (unlikely(pfn == NOPFN_SIGBUS))
  2257. return VM_FAULT_SIGBUS;
  2258. else if (unlikely(pfn == NOPFN_REFAULT))
  2259. return 0;
  2260. page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
  2261. /* Only go through if we didn't race with anybody else... */
  2262. if (pte_none(*page_table)) {
  2263. entry = pfn_pte(pfn, vma->vm_page_prot);
  2264. if (write_access)
  2265. entry = maybe_mkwrite(pte_mkdirty(entry), vma);
  2266. set_pte_at(mm, address, page_table, entry);
  2267. }
  2268. pte_unmap_unlock(page_table, ptl);
  2269. return 0;
  2270. }
  2271. /*
  2272. * Fault of a previously existing named mapping. Repopulate the pte
  2273. * from the encoded file_pte if possible. This enables swappable
  2274. * nonlinear vmas.
  2275. *
  2276. * We enter with non-exclusive mmap_sem (to exclude vma changes,
  2277. * but allow concurrent faults), and pte mapped but not yet locked.
  2278. * We return with mmap_sem still held, but pte unmapped and unlocked.
  2279. */
  2280. static int do_nonlinear_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  2281. unsigned long address, pte_t *page_table, pmd_t *pmd,
  2282. int write_access, pte_t orig_pte)
  2283. {
  2284. unsigned int flags = FAULT_FLAG_NONLINEAR |
  2285. (write_access ? FAULT_FLAG_WRITE : 0);
  2286. pgoff_t pgoff;
  2287. if (!pte_unmap_same(mm, pmd, page_table, orig_pte))
  2288. return 0;
  2289. if (unlikely(!(vma->vm_flags & VM_NONLINEAR) ||
  2290. !(vma->vm_flags & VM_CAN_NONLINEAR))) {
  2291. /*
  2292. * Page table corrupted: show pte and kill process.
  2293. */
  2294. print_bad_pte(vma, orig_pte, address);
  2295. return VM_FAULT_OOM;
  2296. }
  2297. pgoff = pte_to_pgoff(orig_pte);
  2298. return __do_fault(mm, vma, address, page_table, pmd, pgoff,
  2299. flags, orig_pte);
  2300. }
  2301. /*
  2302. * These routines also need to handle stuff like marking pages dirty
  2303. * and/or accessed for architectures that don't do it in hardware (most
  2304. * RISC architectures). The early dirtying is also good on the i386.
  2305. *
  2306. * There is also a hook called "update_mmu_cache()" that architectures
  2307. * with external mmu caches can use to update those (ie the Sparc or
  2308. * PowerPC hashed page tables that act as extended TLBs).
  2309. *
  2310. * We enter with non-exclusive mmap_sem (to exclude vma changes,
  2311. * but allow concurrent faults), and pte mapped but not yet locked.
  2312. * We return with mmap_sem still held, but pte unmapped and unlocked.
  2313. */
  2314. static inline int handle_pte_fault(struct mm_struct *mm,
  2315. struct vm_area_struct *vma, unsigned long address,
  2316. pte_t *pte, pmd_t *pmd, int write_access)
  2317. {
  2318. pte_t entry;
  2319. spinlock_t *ptl;
  2320. entry = *pte;
  2321. if (!pte_present(entry)) {
  2322. if (pte_none(entry)) {
  2323. if (vma->vm_ops) {
  2324. if (vma->vm_ops->fault || vma->vm_ops->nopage)
  2325. return do_linear_fault(mm, vma, address,
  2326. pte, pmd, write_access, entry);
  2327. if (unlikely(vma->vm_ops->nopfn))
  2328. return do_no_pfn(mm, vma, address, pte,
  2329. pmd, write_access);
  2330. }
  2331. return do_anonymous_page(mm, vma, address,
  2332. pte, pmd, write_access);
  2333. }
  2334. if (pte_file(entry))
  2335. return do_nonlinear_fault(mm, vma, address,
  2336. pte, pmd, write_access, entry);
  2337. return do_swap_page(mm, vma, address,
  2338. pte, pmd, write_access, entry);
  2339. }
  2340. ptl = pte_lockptr(mm, pmd);
  2341. spin_lock(ptl);
  2342. if (unlikely(!pte_same(*pte, entry)))
  2343. goto unlock;
  2344. if (write_access) {
  2345. if (!pte_write(entry))
  2346. return do_wp_page(mm, vma, address,
  2347. pte, pmd, ptl, entry);
  2348. entry = pte_mkdirty(entry);
  2349. }
  2350. entry = pte_mkyoung(entry);
  2351. if (ptep_set_access_flags(vma, address, pte, entry, write_access)) {
  2352. update_mmu_cache(vma, address, entry);
  2353. lazy_mmu_prot_update(entry);
  2354. } else {
  2355. /*
  2356. * This is needed only for protection faults but the arch code
  2357. * is not yet telling us if this is a protection fault or not.
  2358. * This still avoids useless tlb flushes for .text page faults
  2359. * with threads.
  2360. */
  2361. if (write_access)
  2362. flush_tlb_page(vma, address);
  2363. }
  2364. unlock:
  2365. pte_unmap_unlock(pte, ptl);
  2366. return 0;
  2367. }
  2368. /*
  2369. * By the time we get here, we already hold the mm semaphore
  2370. */
  2371. int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  2372. unsigned long address, int write_access)
  2373. {
  2374. pgd_t *pgd;
  2375. pud_t *pud;
  2376. pmd_t *pmd;
  2377. pte_t *pte;
  2378. __set_current_state(TASK_RUNNING);
  2379. count_vm_event(PGFAULT);
  2380. if (unlikely(is_vm_hugetlb_page(vma)))
  2381. return hugetlb_fault(mm, vma, address, write_access);
  2382. pgd = pgd_offset(mm, address);
  2383. pud = pud_alloc(mm, pgd, address);
  2384. if (!pud)
  2385. return VM_FAULT_OOM;
  2386. pmd = pmd_alloc(mm, pud, address);
  2387. if (!pmd)
  2388. return VM_FAULT_OOM;
  2389. pte = pte_alloc_map(mm, pmd, address);
  2390. if (!pte)
  2391. return VM_FAULT_OOM;
  2392. return handle_pte_fault(mm, vma, address, pte, pmd, write_access);
  2393. }
  2394. EXPORT_SYMBOL_GPL(handle_mm_fault);
  2395. #ifndef __PAGETABLE_PUD_FOLDED
  2396. /*
  2397. * Allocate page upper directory.
  2398. * We've already handled the fast-path in-line.
  2399. */
  2400. int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
  2401. {
  2402. pud_t *new = pud_alloc_one(mm, address);
  2403. if (!new)
  2404. return -ENOMEM;
  2405. spin_lock(&mm->page_table_lock);
  2406. if (pgd_present(*pgd)) /* Another has populated it */
  2407. pud_free(new);
  2408. else
  2409. pgd_populate(mm, pgd, new);
  2410. spin_unlock(&mm->page_table_lock);
  2411. return 0;
  2412. }
  2413. #endif /* __PAGETABLE_PUD_FOLDED */
  2414. #ifndef __PAGETABLE_PMD_FOLDED
  2415. /*
  2416. * Allocate page middle directory.
  2417. * We've already handled the fast-path in-line.
  2418. */
  2419. int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address)
  2420. {
  2421. pmd_t *new = pmd_alloc_one(mm, address);
  2422. if (!new)
  2423. return -ENOMEM;
  2424. spin_lock(&mm->page_table_lock);
  2425. #ifndef __ARCH_HAS_4LEVEL_HACK
  2426. if (pud_present(*pud)) /* Another has populated it */
  2427. pmd_free(new);
  2428. else
  2429. pud_populate(mm, pud, new);
  2430. #else
  2431. if (pgd_present(*pud)) /* Another has populated it */
  2432. pmd_free(new);
  2433. else
  2434. pgd_populate(mm, pud, new);
  2435. #endif /* __ARCH_HAS_4LEVEL_HACK */
  2436. spin_unlock(&mm->page_table_lock);
  2437. return 0;
  2438. }
  2439. #endif /* __PAGETABLE_PMD_FOLDED */
  2440. int make_pages_present(unsigned long addr, unsigned long end)
  2441. {
  2442. int ret, len, write;
  2443. struct vm_area_struct * vma;
  2444. vma = find_vma(current->mm, addr);
  2445. if (!vma)
  2446. return -1;
  2447. write = (vma->vm_flags & VM_WRITE) != 0;
  2448. BUG_ON(addr >= end);
  2449. BUG_ON(end > vma->vm_end);
  2450. len = DIV_ROUND_UP(end, PAGE_SIZE) - addr/PAGE_SIZE;
  2451. ret = get_user_pages(current, current->mm, addr,
  2452. len, write, 0, NULL, NULL);
  2453. if (ret < 0)
  2454. return ret;
  2455. return ret == len ? 0 : -1;
  2456. }
  2457. /*
  2458. * Map a vmalloc()-space virtual address to the physical page.
  2459. */
  2460. struct page * vmalloc_to_page(void * vmalloc_addr)
  2461. {
  2462. unsigned long addr = (unsigned long) vmalloc_addr;
  2463. struct page *page = NULL;
  2464. pgd_t *pgd = pgd_offset_k(addr);
  2465. pud_t *pud;
  2466. pmd_t *pmd;
  2467. pte_t *ptep, pte;
  2468. if (!pgd_none(*pgd)) {
  2469. pud = pud_offset(pgd, addr);
  2470. if (!pud_none(*pud)) {
  2471. pmd = pmd_offset(pud, addr);
  2472. if (!pmd_none(*pmd)) {
  2473. ptep = pte_offset_map(pmd, addr);
  2474. pte = *ptep;
  2475. if (pte_present(pte))
  2476. page = pte_page(pte);
  2477. pte_unmap(ptep);
  2478. }
  2479. }
  2480. }
  2481. return page;
  2482. }
  2483. EXPORT_SYMBOL(vmalloc_to_page);
  2484. /*
  2485. * Map a vmalloc()-space virtual address to the physical page frame number.
  2486. */
  2487. unsigned long vmalloc_to_pfn(void * vmalloc_addr)
  2488. {
  2489. return page_to_pfn(vmalloc_to_page(vmalloc_addr));
  2490. }
  2491. EXPORT_SYMBOL(vmalloc_to_pfn);
  2492. #if !defined(__HAVE_ARCH_GATE_AREA)
  2493. #if defined(AT_SYSINFO_EHDR)
  2494. static struct vm_area_struct gate_vma;
  2495. static int __init gate_vma_init(void)
  2496. {
  2497. gate_vma.vm_mm = NULL;
  2498. gate_vma.vm_start = FIXADDR_USER_START;
  2499. gate_vma.vm_end = FIXADDR_USER_END;
  2500. gate_vma.vm_flags = VM_READ | VM_MAYREAD | VM_EXEC | VM_MAYEXEC;
  2501. gate_vma.vm_page_prot = __P101;
  2502. /*
  2503. * Make sure the vDSO gets into every core dump.
  2504. * Dumping its contents makes post-mortem fully interpretable later
  2505. * without matching up the same kernel and hardware config to see
  2506. * what PC values meant.
  2507. */
  2508. gate_vma.vm_flags |= VM_ALWAYSDUMP;
  2509. return 0;
  2510. }
  2511. __initcall(gate_vma_init);
  2512. #endif
  2513. struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
  2514. {
  2515. #ifdef AT_SYSINFO_EHDR
  2516. return &gate_vma;
  2517. #else
  2518. return NULL;
  2519. #endif
  2520. }
  2521. int in_gate_area_no_task(unsigned long addr)
  2522. {
  2523. #ifdef AT_SYSINFO_EHDR
  2524. if ((addr >= FIXADDR_USER_START) && (addr < FIXADDR_USER_END))
  2525. return 1;
  2526. #endif
  2527. return 0;
  2528. }
  2529. #endif /* __HAVE_ARCH_GATE_AREA */
  2530. /*
  2531. * Access another process' address space.
  2532. * Source/target buffer must be kernel space,
  2533. * Do not walk the page table directly, use get_user_pages
  2534. */
  2535. int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write)
  2536. {
  2537. struct mm_struct *mm;
  2538. struct vm_area_struct *vma;
  2539. struct page *page;
  2540. void *old_buf = buf;
  2541. mm = get_task_mm(tsk);
  2542. if (!mm)
  2543. return 0;
  2544. down_read(&mm->mmap_sem);
  2545. /* ignore errors, just check how much was sucessfully transfered */
  2546. while (len) {
  2547. int bytes, ret, offset;
  2548. void *maddr;
  2549. ret = get_user_pages(tsk, mm, addr, 1,
  2550. write, 1, &page, &vma);
  2551. if (ret <= 0)
  2552. break;
  2553. bytes = len;
  2554. offset = addr & (PAGE_SIZE-1);
  2555. if (bytes > PAGE_SIZE-offset)
  2556. bytes = PAGE_SIZE-offset;
  2557. maddr = kmap(page);
  2558. if (write) {
  2559. copy_to_user_page(vma, page, addr,
  2560. maddr + offset, buf, bytes);
  2561. set_page_dirty_lock(page);
  2562. } else {
  2563. copy_from_user_page(vma, page, addr,
  2564. buf, maddr + offset, bytes);
  2565. }
  2566. kunmap(page);
  2567. page_cache_release(page);
  2568. len -= bytes;
  2569. buf += bytes;
  2570. addr += bytes;
  2571. }
  2572. up_read(&mm->mmap_sem);
  2573. mmput(mm);
  2574. return buf - old_buf;
  2575. }
  2576. EXPORT_SYMBOL_GPL(access_process_vm);