memory.c 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897
  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/ksm.h>
  44. #include <linux/rmap.h>
  45. #include <linux/export.h>
  46. #include <linux/delayacct.h>
  47. #include <linux/init.h>
  48. #include <linux/writeback.h>
  49. #include <linux/memcontrol.h>
  50. #include <linux/mmu_notifier.h>
  51. #include <linux/kallsyms.h>
  52. #include <linux/swapops.h>
  53. #include <linux/elf.h>
  54. #include <linux/gfp.h>
  55. #include <linux/migrate.h>
  56. #include <linux/string.h>
  57. #include <linux/dma-debug.h>
  58. #include <linux/debugfs.h>
  59. #include <linux/userfaultfd_k.h>
  60. #include <asm/io.h>
  61. #include <asm/pgalloc.h>
  62. #include <asm/uaccess.h>
  63. #include <asm/tlb.h>
  64. #include <asm/tlbflush.h>
  65. #include <asm/pgtable.h>
  66. #include "internal.h"
  67. #ifdef LAST_CPUPID_NOT_IN_PAGE_FLAGS
  68. #warning Unfortunate NUMA and NUMA Balancing config, growing page-frame for last_cpupid.
  69. #endif
  70. #ifndef CONFIG_NEED_MULTIPLE_NODES
  71. /* use the per-pgdat data instead for discontigmem - mbligh */
  72. unsigned long max_mapnr;
  73. struct page *mem_map;
  74. EXPORT_SYMBOL(max_mapnr);
  75. EXPORT_SYMBOL(mem_map);
  76. #endif
  77. /*
  78. * A number of key systems in x86 including ioremap() rely on the assumption
  79. * that high_memory defines the upper bound on direct map memory, then end
  80. * of ZONE_NORMAL. Under CONFIG_DISCONTIG this means that max_low_pfn and
  81. * highstart_pfn must be the same; there must be no gap between ZONE_NORMAL
  82. * and ZONE_HIGHMEM.
  83. */
  84. void * high_memory;
  85. EXPORT_SYMBOL(high_memory);
  86. /*
  87. * Randomize the address space (stacks, mmaps, brk, etc.).
  88. *
  89. * ( When CONFIG_COMPAT_BRK=y we exclude brk from randomization,
  90. * as ancient (libc5 based) binaries can segfault. )
  91. */
  92. int randomize_va_space __read_mostly =
  93. #ifdef CONFIG_COMPAT_BRK
  94. 1;
  95. #else
  96. 2;
  97. #endif
  98. static int __init disable_randmaps(char *s)
  99. {
  100. randomize_va_space = 0;
  101. return 1;
  102. }
  103. __setup("norandmaps", disable_randmaps);
  104. unsigned long zero_pfn __read_mostly;
  105. unsigned long highest_memmap_pfn __read_mostly;
  106. EXPORT_SYMBOL(zero_pfn);
  107. /*
  108. * CONFIG_MMU architectures set up ZERO_PAGE in their paging_init()
  109. */
  110. static int __init init_zero_pfn(void)
  111. {
  112. zero_pfn = page_to_pfn(ZERO_PAGE(0));
  113. return 0;
  114. }
  115. core_initcall(init_zero_pfn);
  116. #if defined(SPLIT_RSS_COUNTING)
  117. void sync_mm_rss(struct mm_struct *mm)
  118. {
  119. int i;
  120. for (i = 0; i < NR_MM_COUNTERS; i++) {
  121. if (current->rss_stat.count[i]) {
  122. add_mm_counter(mm, i, current->rss_stat.count[i]);
  123. current->rss_stat.count[i] = 0;
  124. }
  125. }
  126. current->rss_stat.events = 0;
  127. }
  128. static void add_mm_counter_fast(struct mm_struct *mm, int member, int val)
  129. {
  130. struct task_struct *task = current;
  131. if (likely(task->mm == mm))
  132. task->rss_stat.count[member] += val;
  133. else
  134. add_mm_counter(mm, member, val);
  135. }
  136. #define inc_mm_counter_fast(mm, member) add_mm_counter_fast(mm, member, 1)
  137. #define dec_mm_counter_fast(mm, member) add_mm_counter_fast(mm, member, -1)
  138. /* sync counter once per 64 page faults */
  139. #define TASK_RSS_EVENTS_THRESH (64)
  140. static void check_sync_rss_stat(struct task_struct *task)
  141. {
  142. if (unlikely(task != current))
  143. return;
  144. if (unlikely(task->rss_stat.events++ > TASK_RSS_EVENTS_THRESH))
  145. sync_mm_rss(task->mm);
  146. }
  147. #else /* SPLIT_RSS_COUNTING */
  148. #define inc_mm_counter_fast(mm, member) inc_mm_counter(mm, member)
  149. #define dec_mm_counter_fast(mm, member) dec_mm_counter(mm, member)
  150. static void check_sync_rss_stat(struct task_struct *task)
  151. {
  152. }
  153. #endif /* SPLIT_RSS_COUNTING */
  154. #ifdef HAVE_GENERIC_MMU_GATHER
  155. static bool tlb_next_batch(struct mmu_gather *tlb)
  156. {
  157. struct mmu_gather_batch *batch;
  158. batch = tlb->active;
  159. if (batch->next) {
  160. tlb->active = batch->next;
  161. return true;
  162. }
  163. if (tlb->batch_count == MAX_GATHER_BATCH_COUNT)
  164. return false;
  165. batch = (void *)__get_free_pages(GFP_NOWAIT | __GFP_NOWARN, 0);
  166. if (!batch)
  167. return false;
  168. tlb->batch_count++;
  169. batch->next = NULL;
  170. batch->nr = 0;
  171. batch->max = MAX_GATHER_BATCH;
  172. tlb->active->next = batch;
  173. tlb->active = batch;
  174. return true;
  175. }
  176. /* tlb_gather_mmu
  177. * Called to initialize an (on-stack) mmu_gather structure for page-table
  178. * tear-down from @mm. The @fullmm argument is used when @mm is without
  179. * users and we're going to destroy the full address space (exit/execve).
  180. */
  181. void tlb_gather_mmu(struct mmu_gather *tlb, struct mm_struct *mm, unsigned long start, unsigned long end)
  182. {
  183. tlb->mm = mm;
  184. /* Is it from 0 to ~0? */
  185. tlb->fullmm = !(start | (end+1));
  186. tlb->need_flush_all = 0;
  187. tlb->local.next = NULL;
  188. tlb->local.nr = 0;
  189. tlb->local.max = ARRAY_SIZE(tlb->__pages);
  190. tlb->active = &tlb->local;
  191. tlb->batch_count = 0;
  192. #ifdef CONFIG_HAVE_RCU_TABLE_FREE
  193. tlb->batch = NULL;
  194. #endif
  195. __tlb_reset_range(tlb);
  196. }
  197. static void tlb_flush_mmu_tlbonly(struct mmu_gather *tlb)
  198. {
  199. if (!tlb->end)
  200. return;
  201. tlb_flush(tlb);
  202. mmu_notifier_invalidate_range(tlb->mm, tlb->start, tlb->end);
  203. #ifdef CONFIG_HAVE_RCU_TABLE_FREE
  204. tlb_table_flush(tlb);
  205. #endif
  206. __tlb_reset_range(tlb);
  207. }
  208. static void tlb_flush_mmu_free(struct mmu_gather *tlb)
  209. {
  210. struct mmu_gather_batch *batch;
  211. for (batch = &tlb->local; batch && batch->nr; batch = batch->next) {
  212. free_pages_and_swap_cache(batch->pages, batch->nr);
  213. batch->nr = 0;
  214. }
  215. tlb->active = &tlb->local;
  216. }
  217. void tlb_flush_mmu(struct mmu_gather *tlb)
  218. {
  219. tlb_flush_mmu_tlbonly(tlb);
  220. tlb_flush_mmu_free(tlb);
  221. }
  222. /* tlb_finish_mmu
  223. * Called at the end of the shootdown operation to free up any resources
  224. * that were required.
  225. */
  226. void tlb_finish_mmu(struct mmu_gather *tlb, unsigned long start, unsigned long end)
  227. {
  228. struct mmu_gather_batch *batch, *next;
  229. tlb_flush_mmu(tlb);
  230. /* keep the page table cache within bounds */
  231. check_pgt_cache();
  232. for (batch = tlb->local.next; batch; batch = next) {
  233. next = batch->next;
  234. free_pages((unsigned long)batch, 0);
  235. }
  236. tlb->local.next = NULL;
  237. }
  238. /* __tlb_remove_page
  239. * Must perform the equivalent to __free_pte(pte_get_and_clear(ptep)), while
  240. * handling the additional races in SMP caused by other CPUs caching valid
  241. * mappings in their TLBs. Returns the number of free page slots left.
  242. * When out of page slots we must call tlb_flush_mmu().
  243. */
  244. int __tlb_remove_page(struct mmu_gather *tlb, struct page *page)
  245. {
  246. struct mmu_gather_batch *batch;
  247. VM_BUG_ON(!tlb->end);
  248. batch = tlb->active;
  249. batch->pages[batch->nr++] = page;
  250. if (batch->nr == batch->max) {
  251. if (!tlb_next_batch(tlb))
  252. return 0;
  253. batch = tlb->active;
  254. }
  255. VM_BUG_ON_PAGE(batch->nr > batch->max, page);
  256. return batch->max - batch->nr;
  257. }
  258. #endif /* HAVE_GENERIC_MMU_GATHER */
  259. #ifdef CONFIG_HAVE_RCU_TABLE_FREE
  260. /*
  261. * See the comment near struct mmu_table_batch.
  262. */
  263. static void tlb_remove_table_smp_sync(void *arg)
  264. {
  265. /* Simply deliver the interrupt */
  266. }
  267. static void tlb_remove_table_one(void *table)
  268. {
  269. /*
  270. * This isn't an RCU grace period and hence the page-tables cannot be
  271. * assumed to be actually RCU-freed.
  272. *
  273. * It is however sufficient for software page-table walkers that rely on
  274. * IRQ disabling. See the comment near struct mmu_table_batch.
  275. */
  276. smp_call_function(tlb_remove_table_smp_sync, NULL, 1);
  277. __tlb_remove_table(table);
  278. }
  279. static void tlb_remove_table_rcu(struct rcu_head *head)
  280. {
  281. struct mmu_table_batch *batch;
  282. int i;
  283. batch = container_of(head, struct mmu_table_batch, rcu);
  284. for (i = 0; i < batch->nr; i++)
  285. __tlb_remove_table(batch->tables[i]);
  286. free_page((unsigned long)batch);
  287. }
  288. void tlb_table_flush(struct mmu_gather *tlb)
  289. {
  290. struct mmu_table_batch **batch = &tlb->batch;
  291. if (*batch) {
  292. call_rcu_sched(&(*batch)->rcu, tlb_remove_table_rcu);
  293. *batch = NULL;
  294. }
  295. }
  296. void tlb_remove_table(struct mmu_gather *tlb, void *table)
  297. {
  298. struct mmu_table_batch **batch = &tlb->batch;
  299. /*
  300. * When there's less then two users of this mm there cannot be a
  301. * concurrent page-table walk.
  302. */
  303. if (atomic_read(&tlb->mm->mm_users) < 2) {
  304. __tlb_remove_table(table);
  305. return;
  306. }
  307. if (*batch == NULL) {
  308. *batch = (struct mmu_table_batch *)__get_free_page(GFP_NOWAIT | __GFP_NOWARN);
  309. if (*batch == NULL) {
  310. tlb_remove_table_one(table);
  311. return;
  312. }
  313. (*batch)->nr = 0;
  314. }
  315. (*batch)->tables[(*batch)->nr++] = table;
  316. if ((*batch)->nr == MAX_TABLE_BATCH)
  317. tlb_table_flush(tlb);
  318. }
  319. #endif /* CONFIG_HAVE_RCU_TABLE_FREE */
  320. /*
  321. * Note: this doesn't free the actual pages themselves. That
  322. * has been handled earlier when unmapping all the memory regions.
  323. */
  324. static void free_pte_range(struct mmu_gather *tlb, pmd_t *pmd,
  325. unsigned long addr)
  326. {
  327. pgtable_t token = pmd_pgtable(*pmd);
  328. pmd_clear(pmd);
  329. pte_free_tlb(tlb, token, addr);
  330. atomic_long_dec(&tlb->mm->nr_ptes);
  331. }
  332. static inline void free_pmd_range(struct mmu_gather *tlb, pud_t *pud,
  333. unsigned long addr, unsigned long end,
  334. unsigned long floor, unsigned long ceiling)
  335. {
  336. pmd_t *pmd;
  337. unsigned long next;
  338. unsigned long start;
  339. start = addr;
  340. pmd = pmd_offset(pud, addr);
  341. do {
  342. next = pmd_addr_end(addr, end);
  343. if (pmd_none_or_clear_bad(pmd))
  344. continue;
  345. free_pte_range(tlb, pmd, addr);
  346. } while (pmd++, addr = next, addr != end);
  347. start &= PUD_MASK;
  348. if (start < floor)
  349. return;
  350. if (ceiling) {
  351. ceiling &= PUD_MASK;
  352. if (!ceiling)
  353. return;
  354. }
  355. if (end - 1 > ceiling - 1)
  356. return;
  357. pmd = pmd_offset(pud, start);
  358. pud_clear(pud);
  359. pmd_free_tlb(tlb, pmd, start);
  360. mm_dec_nr_pmds(tlb->mm);
  361. }
  362. static inline void free_pud_range(struct mmu_gather *tlb, pgd_t *pgd,
  363. unsigned long addr, unsigned long end,
  364. unsigned long floor, unsigned long ceiling)
  365. {
  366. pud_t *pud;
  367. unsigned long next;
  368. unsigned long start;
  369. start = addr;
  370. pud = pud_offset(pgd, addr);
  371. do {
  372. next = pud_addr_end(addr, end);
  373. if (pud_none_or_clear_bad(pud))
  374. continue;
  375. free_pmd_range(tlb, pud, addr, next, floor, ceiling);
  376. } while (pud++, addr = next, addr != end);
  377. start &= PGDIR_MASK;
  378. if (start < floor)
  379. return;
  380. if (ceiling) {
  381. ceiling &= PGDIR_MASK;
  382. if (!ceiling)
  383. return;
  384. }
  385. if (end - 1 > ceiling - 1)
  386. return;
  387. pud = pud_offset(pgd, start);
  388. pgd_clear(pgd);
  389. pud_free_tlb(tlb, pud, start);
  390. }
  391. /*
  392. * This function frees user-level page tables of a process.
  393. */
  394. void free_pgd_range(struct mmu_gather *tlb,
  395. unsigned long addr, unsigned long end,
  396. unsigned long floor, unsigned long ceiling)
  397. {
  398. pgd_t *pgd;
  399. unsigned long next;
  400. /*
  401. * The next few lines have given us lots of grief...
  402. *
  403. * Why are we testing PMD* at this top level? Because often
  404. * there will be no work to do at all, and we'd prefer not to
  405. * go all the way down to the bottom just to discover that.
  406. *
  407. * Why all these "- 1"s? Because 0 represents both the bottom
  408. * of the address space and the top of it (using -1 for the
  409. * top wouldn't help much: the masks would do the wrong thing).
  410. * The rule is that addr 0 and floor 0 refer to the bottom of
  411. * the address space, but end 0 and ceiling 0 refer to the top
  412. * Comparisons need to use "end - 1" and "ceiling - 1" (though
  413. * that end 0 case should be mythical).
  414. *
  415. * Wherever addr is brought up or ceiling brought down, we must
  416. * be careful to reject "the opposite 0" before it confuses the
  417. * subsequent tests. But what about where end is brought down
  418. * by PMD_SIZE below? no, end can't go down to 0 there.
  419. *
  420. * Whereas we round start (addr) and ceiling down, by different
  421. * masks at different levels, in order to test whether a table
  422. * now has no other vmas using it, so can be freed, we don't
  423. * bother to round floor or end up - the tests don't need that.
  424. */
  425. addr &= PMD_MASK;
  426. if (addr < floor) {
  427. addr += PMD_SIZE;
  428. if (!addr)
  429. return;
  430. }
  431. if (ceiling) {
  432. ceiling &= PMD_MASK;
  433. if (!ceiling)
  434. return;
  435. }
  436. if (end - 1 > ceiling - 1)
  437. end -= PMD_SIZE;
  438. if (addr > end - 1)
  439. return;
  440. pgd = pgd_offset(tlb->mm, addr);
  441. do {
  442. next = pgd_addr_end(addr, end);
  443. if (pgd_none_or_clear_bad(pgd))
  444. continue;
  445. free_pud_range(tlb, pgd, addr, next, floor, ceiling);
  446. } while (pgd++, addr = next, addr != end);
  447. }
  448. void free_pgtables(struct mmu_gather *tlb, struct vm_area_struct *vma,
  449. unsigned long floor, unsigned long ceiling)
  450. {
  451. while (vma) {
  452. struct vm_area_struct *next = vma->vm_next;
  453. unsigned long addr = vma->vm_start;
  454. /*
  455. * Hide vma from rmap and truncate_pagecache before freeing
  456. * pgtables
  457. */
  458. unlink_anon_vmas(vma);
  459. unlink_file_vma(vma);
  460. if (is_vm_hugetlb_page(vma)) {
  461. hugetlb_free_pgd_range(tlb, addr, vma->vm_end,
  462. floor, next? next->vm_start: ceiling);
  463. } else {
  464. /*
  465. * Optimization: gather nearby vmas into one call down
  466. */
  467. while (next && next->vm_start <= vma->vm_end + PMD_SIZE
  468. && !is_vm_hugetlb_page(next)) {
  469. vma = next;
  470. next = vma->vm_next;
  471. unlink_anon_vmas(vma);
  472. unlink_file_vma(vma);
  473. }
  474. free_pgd_range(tlb, addr, vma->vm_end,
  475. floor, next? next->vm_start: ceiling);
  476. }
  477. vma = next;
  478. }
  479. }
  480. int __pte_alloc(struct mm_struct *mm, struct vm_area_struct *vma,
  481. pmd_t *pmd, unsigned long address)
  482. {
  483. spinlock_t *ptl;
  484. pgtable_t new = pte_alloc_one(mm, address);
  485. int wait_split_huge_page;
  486. if (!new)
  487. return -ENOMEM;
  488. /*
  489. * Ensure all pte setup (eg. pte page lock and page clearing) are
  490. * visible before the pte is made visible to other CPUs by being
  491. * put into page tables.
  492. *
  493. * The other side of the story is the pointer chasing in the page
  494. * table walking code (when walking the page table without locking;
  495. * ie. most of the time). Fortunately, these data accesses consist
  496. * of a chain of data-dependent loads, meaning most CPUs (alpha
  497. * being the notable exception) will already guarantee loads are
  498. * seen in-order. See the alpha page table accessors for the
  499. * smp_read_barrier_depends() barriers in page table walking code.
  500. */
  501. smp_wmb(); /* Could be smp_wmb__xxx(before|after)_spin_lock */
  502. ptl = pmd_lock(mm, pmd);
  503. wait_split_huge_page = 0;
  504. if (likely(pmd_none(*pmd))) { /* Has another populated it ? */
  505. atomic_long_inc(&mm->nr_ptes);
  506. pmd_populate(mm, pmd, new);
  507. new = NULL;
  508. } else if (unlikely(pmd_trans_splitting(*pmd)))
  509. wait_split_huge_page = 1;
  510. spin_unlock(ptl);
  511. if (new)
  512. pte_free(mm, new);
  513. if (wait_split_huge_page)
  514. wait_split_huge_page(vma->anon_vma, pmd);
  515. return 0;
  516. }
  517. int __pte_alloc_kernel(pmd_t *pmd, unsigned long address)
  518. {
  519. pte_t *new = pte_alloc_one_kernel(&init_mm, address);
  520. if (!new)
  521. return -ENOMEM;
  522. smp_wmb(); /* See comment in __pte_alloc */
  523. spin_lock(&init_mm.page_table_lock);
  524. if (likely(pmd_none(*pmd))) { /* Has another populated it ? */
  525. pmd_populate_kernel(&init_mm, pmd, new);
  526. new = NULL;
  527. } else
  528. VM_BUG_ON(pmd_trans_splitting(*pmd));
  529. spin_unlock(&init_mm.page_table_lock);
  530. if (new)
  531. pte_free_kernel(&init_mm, new);
  532. return 0;
  533. }
  534. static inline void init_rss_vec(int *rss)
  535. {
  536. memset(rss, 0, sizeof(int) * NR_MM_COUNTERS);
  537. }
  538. static inline void add_mm_rss_vec(struct mm_struct *mm, int *rss)
  539. {
  540. int i;
  541. if (current->mm == mm)
  542. sync_mm_rss(mm);
  543. for (i = 0; i < NR_MM_COUNTERS; i++)
  544. if (rss[i])
  545. add_mm_counter(mm, i, rss[i]);
  546. }
  547. /*
  548. * This function is called to print an error when a bad pte
  549. * is found. For example, we might have a PFN-mapped pte in
  550. * a region that doesn't allow it.
  551. *
  552. * The calling function must still handle the error.
  553. */
  554. static void print_bad_pte(struct vm_area_struct *vma, unsigned long addr,
  555. pte_t pte, struct page *page)
  556. {
  557. pgd_t *pgd = pgd_offset(vma->vm_mm, addr);
  558. pud_t *pud = pud_offset(pgd, addr);
  559. pmd_t *pmd = pmd_offset(pud, addr);
  560. struct address_space *mapping;
  561. pgoff_t index;
  562. static unsigned long resume;
  563. static unsigned long nr_shown;
  564. static unsigned long nr_unshown;
  565. /*
  566. * Allow a burst of 60 reports, then keep quiet for that minute;
  567. * or allow a steady drip of one report per second.
  568. */
  569. if (nr_shown == 60) {
  570. if (time_before(jiffies, resume)) {
  571. nr_unshown++;
  572. return;
  573. }
  574. if (nr_unshown) {
  575. printk(KERN_ALERT
  576. "BUG: Bad page map: %lu messages suppressed\n",
  577. nr_unshown);
  578. nr_unshown = 0;
  579. }
  580. nr_shown = 0;
  581. }
  582. if (nr_shown++ == 0)
  583. resume = jiffies + 60 * HZ;
  584. mapping = vma->vm_file ? vma->vm_file->f_mapping : NULL;
  585. index = linear_page_index(vma, addr);
  586. printk(KERN_ALERT
  587. "BUG: Bad page map in process %s pte:%08llx pmd:%08llx\n",
  588. current->comm,
  589. (long long)pte_val(pte), (long long)pmd_val(*pmd));
  590. if (page)
  591. dump_page(page, "bad pte");
  592. printk(KERN_ALERT
  593. "addr:%p vm_flags:%08lx anon_vma:%p mapping:%p index:%lx\n",
  594. (void *)addr, vma->vm_flags, vma->anon_vma, mapping, index);
  595. /*
  596. * Choose text because data symbols depend on CONFIG_KALLSYMS_ALL=y
  597. */
  598. pr_alert("file:%pD fault:%pf mmap:%pf readpage:%pf\n",
  599. vma->vm_file,
  600. vma->vm_ops ? vma->vm_ops->fault : NULL,
  601. vma->vm_file ? vma->vm_file->f_op->mmap : NULL,
  602. mapping ? mapping->a_ops->readpage : NULL);
  603. dump_stack();
  604. add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
  605. }
  606. /*
  607. * vm_normal_page -- This function gets the "struct page" associated with a pte.
  608. *
  609. * "Special" mappings do not wish to be associated with a "struct page" (either
  610. * it doesn't exist, or it exists but they don't want to touch it). In this
  611. * case, NULL is returned here. "Normal" mappings do have a struct page.
  612. *
  613. * There are 2 broad cases. Firstly, an architecture may define a pte_special()
  614. * pte bit, in which case this function is trivial. Secondly, an architecture
  615. * may not have a spare pte bit, which requires a more complicated scheme,
  616. * described below.
  617. *
  618. * A raw VM_PFNMAP mapping (ie. one that is not COWed) is always considered a
  619. * special mapping (even if there are underlying and valid "struct pages").
  620. * COWed pages of a VM_PFNMAP are always normal.
  621. *
  622. * The way we recognize COWed pages within VM_PFNMAP mappings is through the
  623. * rules set up by "remap_pfn_range()": the vma will have the VM_PFNMAP bit
  624. * set, and the vm_pgoff will point to the first PFN mapped: thus every special
  625. * mapping will always honor the rule
  626. *
  627. * pfn_of_page == vma->vm_pgoff + ((addr - vma->vm_start) >> PAGE_SHIFT)
  628. *
  629. * And for normal mappings this is false.
  630. *
  631. * This restricts such mappings to be a linear translation from virtual address
  632. * to pfn. To get around this restriction, we allow arbitrary mappings so long
  633. * as the vma is not a COW mapping; in that case, we know that all ptes are
  634. * special (because none can have been COWed).
  635. *
  636. *
  637. * In order to support COW of arbitrary special mappings, we have VM_MIXEDMAP.
  638. *
  639. * VM_MIXEDMAP mappings can likewise contain memory with or without "struct
  640. * page" backing, however the difference is that _all_ pages with a struct
  641. * page (that is, those where pfn_valid is true) are refcounted and considered
  642. * normal pages by the VM. The disadvantage is that pages are refcounted
  643. * (which can be slower and simply not an option for some PFNMAP users). The
  644. * advantage is that we don't have to follow the strict linearity rule of
  645. * PFNMAP mappings in order to support COWable mappings.
  646. *
  647. */
  648. #ifdef __HAVE_ARCH_PTE_SPECIAL
  649. # define HAVE_PTE_SPECIAL 1
  650. #else
  651. # define HAVE_PTE_SPECIAL 0
  652. #endif
  653. struct page *vm_normal_page(struct vm_area_struct *vma, unsigned long addr,
  654. pte_t pte)
  655. {
  656. unsigned long pfn = pte_pfn(pte);
  657. if (HAVE_PTE_SPECIAL) {
  658. if (likely(!pte_special(pte)))
  659. goto check_pfn;
  660. if (vma->vm_ops && vma->vm_ops->find_special_page)
  661. return vma->vm_ops->find_special_page(vma, addr);
  662. if (vma->vm_flags & (VM_PFNMAP | VM_MIXEDMAP))
  663. return NULL;
  664. if (!is_zero_pfn(pfn))
  665. print_bad_pte(vma, addr, pte, NULL);
  666. return NULL;
  667. }
  668. /* !HAVE_PTE_SPECIAL case follows: */
  669. if (unlikely(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP))) {
  670. if (vma->vm_flags & VM_MIXEDMAP) {
  671. if (!pfn_valid(pfn))
  672. return NULL;
  673. goto out;
  674. } else {
  675. unsigned long off;
  676. off = (addr - vma->vm_start) >> PAGE_SHIFT;
  677. if (pfn == vma->vm_pgoff + off)
  678. return NULL;
  679. if (!is_cow_mapping(vma->vm_flags))
  680. return NULL;
  681. }
  682. }
  683. if (is_zero_pfn(pfn))
  684. return NULL;
  685. check_pfn:
  686. if (unlikely(pfn > highest_memmap_pfn)) {
  687. print_bad_pte(vma, addr, pte, NULL);
  688. return NULL;
  689. }
  690. /*
  691. * NOTE! We still have PageReserved() pages in the page tables.
  692. * eg. VDSO mappings can cause them to exist.
  693. */
  694. out:
  695. return pfn_to_page(pfn);
  696. }
  697. /*
  698. * copy one vm_area from one task to the other. Assumes the page tables
  699. * already present in the new task to be cleared in the whole range
  700. * covered by this vma.
  701. */
  702. static inline unsigned long
  703. copy_one_pte(struct mm_struct *dst_mm, struct mm_struct *src_mm,
  704. pte_t *dst_pte, pte_t *src_pte, struct vm_area_struct *vma,
  705. unsigned long addr, int *rss)
  706. {
  707. unsigned long vm_flags = vma->vm_flags;
  708. pte_t pte = *src_pte;
  709. struct page *page;
  710. /* pte contains position in swap or file, so copy. */
  711. if (unlikely(!pte_present(pte))) {
  712. swp_entry_t entry = pte_to_swp_entry(pte);
  713. if (likely(!non_swap_entry(entry))) {
  714. if (swap_duplicate(entry) < 0)
  715. return entry.val;
  716. /* make sure dst_mm is on swapoff's mmlist. */
  717. if (unlikely(list_empty(&dst_mm->mmlist))) {
  718. spin_lock(&mmlist_lock);
  719. if (list_empty(&dst_mm->mmlist))
  720. list_add(&dst_mm->mmlist,
  721. &src_mm->mmlist);
  722. spin_unlock(&mmlist_lock);
  723. }
  724. rss[MM_SWAPENTS]++;
  725. } else if (is_migration_entry(entry)) {
  726. page = migration_entry_to_page(entry);
  727. if (PageAnon(page))
  728. rss[MM_ANONPAGES]++;
  729. else
  730. rss[MM_FILEPAGES]++;
  731. if (is_write_migration_entry(entry) &&
  732. is_cow_mapping(vm_flags)) {
  733. /*
  734. * COW mappings require pages in both
  735. * parent and child to be set to read.
  736. */
  737. make_migration_entry_read(&entry);
  738. pte = swp_entry_to_pte(entry);
  739. if (pte_swp_soft_dirty(*src_pte))
  740. pte = pte_swp_mksoft_dirty(pte);
  741. set_pte_at(src_mm, addr, src_pte, pte);
  742. }
  743. }
  744. goto out_set_pte;
  745. }
  746. /*
  747. * If it's a COW mapping, write protect it both
  748. * in the parent and the child
  749. */
  750. if (is_cow_mapping(vm_flags)) {
  751. ptep_set_wrprotect(src_mm, addr, src_pte);
  752. pte = pte_wrprotect(pte);
  753. }
  754. /*
  755. * If it's a shared mapping, mark it clean in
  756. * the child
  757. */
  758. if (vm_flags & VM_SHARED)
  759. pte = pte_mkclean(pte);
  760. pte = pte_mkold(pte);
  761. page = vm_normal_page(vma, addr, pte);
  762. if (page) {
  763. get_page(page);
  764. page_dup_rmap(page);
  765. if (PageAnon(page))
  766. rss[MM_ANONPAGES]++;
  767. else
  768. rss[MM_FILEPAGES]++;
  769. }
  770. out_set_pte:
  771. set_pte_at(dst_mm, addr, dst_pte, pte);
  772. return 0;
  773. }
  774. static int copy_pte_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
  775. pmd_t *dst_pmd, pmd_t *src_pmd, struct vm_area_struct *vma,
  776. unsigned long addr, unsigned long end)
  777. {
  778. pte_t *orig_src_pte, *orig_dst_pte;
  779. pte_t *src_pte, *dst_pte;
  780. spinlock_t *src_ptl, *dst_ptl;
  781. int progress = 0;
  782. int rss[NR_MM_COUNTERS];
  783. swp_entry_t entry = (swp_entry_t){0};
  784. again:
  785. init_rss_vec(rss);
  786. dst_pte = pte_alloc_map_lock(dst_mm, dst_pmd, addr, &dst_ptl);
  787. if (!dst_pte)
  788. return -ENOMEM;
  789. src_pte = pte_offset_map(src_pmd, addr);
  790. src_ptl = pte_lockptr(src_mm, src_pmd);
  791. spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
  792. orig_src_pte = src_pte;
  793. orig_dst_pte = dst_pte;
  794. arch_enter_lazy_mmu_mode();
  795. do {
  796. /*
  797. * We are holding two locks at this point - either of them
  798. * could generate latencies in another task on another CPU.
  799. */
  800. if (progress >= 32) {
  801. progress = 0;
  802. if (need_resched() ||
  803. spin_needbreak(src_ptl) || spin_needbreak(dst_ptl))
  804. break;
  805. }
  806. if (pte_none(*src_pte)) {
  807. progress++;
  808. continue;
  809. }
  810. entry.val = copy_one_pte(dst_mm, src_mm, dst_pte, src_pte,
  811. vma, addr, rss);
  812. if (entry.val)
  813. break;
  814. progress += 8;
  815. } while (dst_pte++, src_pte++, addr += PAGE_SIZE, addr != end);
  816. arch_leave_lazy_mmu_mode();
  817. spin_unlock(src_ptl);
  818. pte_unmap(orig_src_pte);
  819. add_mm_rss_vec(dst_mm, rss);
  820. pte_unmap_unlock(orig_dst_pte, dst_ptl);
  821. cond_resched();
  822. if (entry.val) {
  823. if (add_swap_count_continuation(entry, GFP_KERNEL) < 0)
  824. return -ENOMEM;
  825. progress = 0;
  826. }
  827. if (addr != end)
  828. goto again;
  829. return 0;
  830. }
  831. static inline int copy_pmd_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
  832. pud_t *dst_pud, pud_t *src_pud, struct vm_area_struct *vma,
  833. unsigned long addr, unsigned long end)
  834. {
  835. pmd_t *src_pmd, *dst_pmd;
  836. unsigned long next;
  837. dst_pmd = pmd_alloc(dst_mm, dst_pud, addr);
  838. if (!dst_pmd)
  839. return -ENOMEM;
  840. src_pmd = pmd_offset(src_pud, addr);
  841. do {
  842. next = pmd_addr_end(addr, end);
  843. if (pmd_trans_huge(*src_pmd)) {
  844. int err;
  845. VM_BUG_ON(next-addr != HPAGE_PMD_SIZE);
  846. err = copy_huge_pmd(dst_mm, src_mm,
  847. dst_pmd, src_pmd, addr, vma);
  848. if (err == -ENOMEM)
  849. return -ENOMEM;
  850. if (!err)
  851. continue;
  852. /* fall through */
  853. }
  854. if (pmd_none_or_clear_bad(src_pmd))
  855. continue;
  856. if (copy_pte_range(dst_mm, src_mm, dst_pmd, src_pmd,
  857. vma, addr, next))
  858. return -ENOMEM;
  859. } while (dst_pmd++, src_pmd++, addr = next, addr != end);
  860. return 0;
  861. }
  862. static inline int copy_pud_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
  863. pgd_t *dst_pgd, pgd_t *src_pgd, struct vm_area_struct *vma,
  864. unsigned long addr, unsigned long end)
  865. {
  866. pud_t *src_pud, *dst_pud;
  867. unsigned long next;
  868. dst_pud = pud_alloc(dst_mm, dst_pgd, addr);
  869. if (!dst_pud)
  870. return -ENOMEM;
  871. src_pud = pud_offset(src_pgd, addr);
  872. do {
  873. next = pud_addr_end(addr, end);
  874. if (pud_none_or_clear_bad(src_pud))
  875. continue;
  876. if (copy_pmd_range(dst_mm, src_mm, dst_pud, src_pud,
  877. vma, addr, next))
  878. return -ENOMEM;
  879. } while (dst_pud++, src_pud++, addr = next, addr != end);
  880. return 0;
  881. }
  882. int copy_page_range(struct mm_struct *dst_mm, struct mm_struct *src_mm,
  883. struct vm_area_struct *vma)
  884. {
  885. pgd_t *src_pgd, *dst_pgd;
  886. unsigned long next;
  887. unsigned long addr = vma->vm_start;
  888. unsigned long end = vma->vm_end;
  889. unsigned long mmun_start; /* For mmu_notifiers */
  890. unsigned long mmun_end; /* For mmu_notifiers */
  891. bool is_cow;
  892. int ret;
  893. /*
  894. * Don't copy ptes where a page fault will fill them correctly.
  895. * Fork becomes much lighter when there are big shared or private
  896. * readonly mappings. The tradeoff is that copy_page_range is more
  897. * efficient than faulting.
  898. */
  899. if (!(vma->vm_flags & (VM_HUGETLB | VM_PFNMAP | VM_MIXEDMAP)) &&
  900. !vma->anon_vma)
  901. return 0;
  902. if (is_vm_hugetlb_page(vma))
  903. return copy_hugetlb_page_range(dst_mm, src_mm, vma);
  904. if (unlikely(vma->vm_flags & VM_PFNMAP)) {
  905. /*
  906. * We do not free on error cases below as remove_vma
  907. * gets called on error from higher level routine
  908. */
  909. ret = track_pfn_copy(vma);
  910. if (ret)
  911. return ret;
  912. }
  913. /*
  914. * We need to invalidate the secondary MMU mappings only when
  915. * there could be a permission downgrade on the ptes of the
  916. * parent mm. And a permission downgrade will only happen if
  917. * is_cow_mapping() returns true.
  918. */
  919. is_cow = is_cow_mapping(vma->vm_flags);
  920. mmun_start = addr;
  921. mmun_end = end;
  922. if (is_cow)
  923. mmu_notifier_invalidate_range_start(src_mm, mmun_start,
  924. mmun_end);
  925. ret = 0;
  926. dst_pgd = pgd_offset(dst_mm, addr);
  927. src_pgd = pgd_offset(src_mm, addr);
  928. do {
  929. next = pgd_addr_end(addr, end);
  930. if (pgd_none_or_clear_bad(src_pgd))
  931. continue;
  932. if (unlikely(copy_pud_range(dst_mm, src_mm, dst_pgd, src_pgd,
  933. vma, addr, next))) {
  934. ret = -ENOMEM;
  935. break;
  936. }
  937. } while (dst_pgd++, src_pgd++, addr = next, addr != end);
  938. if (is_cow)
  939. mmu_notifier_invalidate_range_end(src_mm, mmun_start, mmun_end);
  940. return ret;
  941. }
  942. static unsigned long zap_pte_range(struct mmu_gather *tlb,
  943. struct vm_area_struct *vma, pmd_t *pmd,
  944. unsigned long addr, unsigned long end,
  945. struct zap_details *details)
  946. {
  947. struct mm_struct *mm = tlb->mm;
  948. int force_flush = 0;
  949. int rss[NR_MM_COUNTERS];
  950. spinlock_t *ptl;
  951. pte_t *start_pte;
  952. pte_t *pte;
  953. swp_entry_t entry;
  954. again:
  955. init_rss_vec(rss);
  956. start_pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
  957. pte = start_pte;
  958. arch_enter_lazy_mmu_mode();
  959. do {
  960. pte_t ptent = *pte;
  961. if (pte_none(ptent)) {
  962. continue;
  963. }
  964. if (pte_present(ptent)) {
  965. struct page *page;
  966. page = vm_normal_page(vma, addr, ptent);
  967. if (unlikely(details) && page) {
  968. /*
  969. * unmap_shared_mapping_pages() wants to
  970. * invalidate cache without truncating:
  971. * unmap shared but keep private pages.
  972. */
  973. if (details->check_mapping &&
  974. details->check_mapping != page->mapping)
  975. continue;
  976. }
  977. ptent = ptep_get_and_clear_full(mm, addr, pte,
  978. tlb->fullmm);
  979. tlb_remove_tlb_entry(tlb, pte, addr);
  980. if (unlikely(!page))
  981. continue;
  982. if (PageAnon(page))
  983. rss[MM_ANONPAGES]--;
  984. else {
  985. if (pte_dirty(ptent)) {
  986. force_flush = 1;
  987. set_page_dirty(page);
  988. }
  989. if (pte_young(ptent) &&
  990. likely(!(vma->vm_flags & VM_SEQ_READ)))
  991. mark_page_accessed(page);
  992. rss[MM_FILEPAGES]--;
  993. }
  994. page_remove_rmap(page);
  995. if (unlikely(page_mapcount(page) < 0))
  996. print_bad_pte(vma, addr, ptent, page);
  997. if (unlikely(!__tlb_remove_page(tlb, page))) {
  998. force_flush = 1;
  999. addr += PAGE_SIZE;
  1000. break;
  1001. }
  1002. continue;
  1003. }
  1004. /* If details->check_mapping, we leave swap entries. */
  1005. if (unlikely(details))
  1006. continue;
  1007. entry = pte_to_swp_entry(ptent);
  1008. if (!non_swap_entry(entry))
  1009. rss[MM_SWAPENTS]--;
  1010. else if (is_migration_entry(entry)) {
  1011. struct page *page;
  1012. page = migration_entry_to_page(entry);
  1013. if (PageAnon(page))
  1014. rss[MM_ANONPAGES]--;
  1015. else
  1016. rss[MM_FILEPAGES]--;
  1017. }
  1018. if (unlikely(!free_swap_and_cache(entry)))
  1019. print_bad_pte(vma, addr, ptent, NULL);
  1020. pte_clear_not_present_full(mm, addr, pte, tlb->fullmm);
  1021. } while (pte++, addr += PAGE_SIZE, addr != end);
  1022. add_mm_rss_vec(mm, rss);
  1023. arch_leave_lazy_mmu_mode();
  1024. /* Do the actual TLB flush before dropping ptl */
  1025. if (force_flush)
  1026. tlb_flush_mmu_tlbonly(tlb);
  1027. pte_unmap_unlock(start_pte, ptl);
  1028. /*
  1029. * If we forced a TLB flush (either due to running out of
  1030. * batch buffers or because we needed to flush dirty TLB
  1031. * entries before releasing the ptl), free the batched
  1032. * memory too. Restart if we didn't do everything.
  1033. */
  1034. if (force_flush) {
  1035. force_flush = 0;
  1036. tlb_flush_mmu_free(tlb);
  1037. if (addr != end)
  1038. goto again;
  1039. }
  1040. return addr;
  1041. }
  1042. static inline unsigned long zap_pmd_range(struct mmu_gather *tlb,
  1043. struct vm_area_struct *vma, pud_t *pud,
  1044. unsigned long addr, unsigned long end,
  1045. struct zap_details *details)
  1046. {
  1047. pmd_t *pmd;
  1048. unsigned long next;
  1049. pmd = pmd_offset(pud, addr);
  1050. do {
  1051. next = pmd_addr_end(addr, end);
  1052. if (pmd_trans_huge(*pmd)) {
  1053. if (next - addr != HPAGE_PMD_SIZE) {
  1054. #ifdef CONFIG_DEBUG_VM
  1055. if (!rwsem_is_locked(&tlb->mm->mmap_sem)) {
  1056. pr_err("%s: mmap_sem is unlocked! addr=0x%lx end=0x%lx vma->vm_start=0x%lx vma->vm_end=0x%lx\n",
  1057. __func__, addr, end,
  1058. vma->vm_start,
  1059. vma->vm_end);
  1060. BUG();
  1061. }
  1062. #endif
  1063. split_huge_page_pmd(vma, addr, pmd);
  1064. } else if (zap_huge_pmd(tlb, vma, pmd, addr))
  1065. goto next;
  1066. /* fall through */
  1067. }
  1068. /*
  1069. * Here there can be other concurrent MADV_DONTNEED or
  1070. * trans huge page faults running, and if the pmd is
  1071. * none or trans huge it can change under us. This is
  1072. * because MADV_DONTNEED holds the mmap_sem in read
  1073. * mode.
  1074. */
  1075. if (pmd_none_or_trans_huge_or_clear_bad(pmd))
  1076. goto next;
  1077. next = zap_pte_range(tlb, vma, pmd, addr, next, details);
  1078. next:
  1079. cond_resched();
  1080. } while (pmd++, addr = next, addr != end);
  1081. return addr;
  1082. }
  1083. static inline unsigned long zap_pud_range(struct mmu_gather *tlb,
  1084. struct vm_area_struct *vma, pgd_t *pgd,
  1085. unsigned long addr, unsigned long end,
  1086. struct zap_details *details)
  1087. {
  1088. pud_t *pud;
  1089. unsigned long next;
  1090. pud = pud_offset(pgd, addr);
  1091. do {
  1092. next = pud_addr_end(addr, end);
  1093. if (pud_none_or_clear_bad(pud))
  1094. continue;
  1095. next = zap_pmd_range(tlb, vma, pud, addr, next, details);
  1096. } while (pud++, addr = next, addr != end);
  1097. return addr;
  1098. }
  1099. static void unmap_page_range(struct mmu_gather *tlb,
  1100. struct vm_area_struct *vma,
  1101. unsigned long addr, unsigned long end,
  1102. struct zap_details *details)
  1103. {
  1104. pgd_t *pgd;
  1105. unsigned long next;
  1106. if (details && !details->check_mapping)
  1107. details = NULL;
  1108. BUG_ON(addr >= end);
  1109. tlb_start_vma(tlb, vma);
  1110. pgd = pgd_offset(vma->vm_mm, addr);
  1111. do {
  1112. next = pgd_addr_end(addr, end);
  1113. if (pgd_none_or_clear_bad(pgd))
  1114. continue;
  1115. next = zap_pud_range(tlb, vma, pgd, addr, next, details);
  1116. } while (pgd++, addr = next, addr != end);
  1117. tlb_end_vma(tlb, vma);
  1118. }
  1119. static void unmap_single_vma(struct mmu_gather *tlb,
  1120. struct vm_area_struct *vma, unsigned long start_addr,
  1121. unsigned long end_addr,
  1122. struct zap_details *details)
  1123. {
  1124. unsigned long start = max(vma->vm_start, start_addr);
  1125. unsigned long end;
  1126. if (start >= vma->vm_end)
  1127. return;
  1128. end = min(vma->vm_end, end_addr);
  1129. if (end <= vma->vm_start)
  1130. return;
  1131. if (vma->vm_file)
  1132. uprobe_munmap(vma, start, end);
  1133. if (unlikely(vma->vm_flags & VM_PFNMAP))
  1134. untrack_pfn(vma, 0, 0);
  1135. if (start != end) {
  1136. if (unlikely(is_vm_hugetlb_page(vma))) {
  1137. /*
  1138. * It is undesirable to test vma->vm_file as it
  1139. * should be non-null for valid hugetlb area.
  1140. * However, vm_file will be NULL in the error
  1141. * cleanup path of mmap_region. When
  1142. * hugetlbfs ->mmap method fails,
  1143. * mmap_region() nullifies vma->vm_file
  1144. * before calling this function to clean up.
  1145. * Since no pte has actually been setup, it is
  1146. * safe to do nothing in this case.
  1147. */
  1148. if (vma->vm_file) {
  1149. i_mmap_lock_write(vma->vm_file->f_mapping);
  1150. __unmap_hugepage_range_final(tlb, vma, start, end, NULL);
  1151. i_mmap_unlock_write(vma->vm_file->f_mapping);
  1152. }
  1153. } else
  1154. unmap_page_range(tlb, vma, start, end, details);
  1155. }
  1156. }
  1157. /**
  1158. * unmap_vmas - unmap a range of memory covered by a list of vma's
  1159. * @tlb: address of the caller's struct mmu_gather
  1160. * @vma: the starting vma
  1161. * @start_addr: virtual address at which to start unmapping
  1162. * @end_addr: virtual address at which to end unmapping
  1163. *
  1164. * Unmap all pages in the vma list.
  1165. *
  1166. * Only addresses between `start' and `end' will be unmapped.
  1167. *
  1168. * The VMA list must be sorted in ascending virtual address order.
  1169. *
  1170. * unmap_vmas() assumes that the caller will flush the whole unmapped address
  1171. * range after unmap_vmas() returns. So the only responsibility here is to
  1172. * ensure that any thus-far unmapped pages are flushed before unmap_vmas()
  1173. * drops the lock and schedules.
  1174. */
  1175. void unmap_vmas(struct mmu_gather *tlb,
  1176. struct vm_area_struct *vma, unsigned long start_addr,
  1177. unsigned long end_addr)
  1178. {
  1179. struct mm_struct *mm = vma->vm_mm;
  1180. mmu_notifier_invalidate_range_start(mm, start_addr, end_addr);
  1181. for ( ; vma && vma->vm_start < end_addr; vma = vma->vm_next)
  1182. unmap_single_vma(tlb, vma, start_addr, end_addr, NULL);
  1183. mmu_notifier_invalidate_range_end(mm, start_addr, end_addr);
  1184. }
  1185. /**
  1186. * zap_page_range - remove user pages in a given range
  1187. * @vma: vm_area_struct holding the applicable pages
  1188. * @start: starting address of pages to zap
  1189. * @size: number of bytes to zap
  1190. * @details: details of shared cache invalidation
  1191. *
  1192. * Caller must protect the VMA list
  1193. */
  1194. void zap_page_range(struct vm_area_struct *vma, unsigned long start,
  1195. unsigned long size, struct zap_details *details)
  1196. {
  1197. struct mm_struct *mm = vma->vm_mm;
  1198. struct mmu_gather tlb;
  1199. unsigned long end = start + size;
  1200. lru_add_drain();
  1201. tlb_gather_mmu(&tlb, mm, start, end);
  1202. update_hiwater_rss(mm);
  1203. mmu_notifier_invalidate_range_start(mm, start, end);
  1204. for ( ; vma && vma->vm_start < end; vma = vma->vm_next)
  1205. unmap_single_vma(&tlb, vma, start, end, details);
  1206. mmu_notifier_invalidate_range_end(mm, start, end);
  1207. tlb_finish_mmu(&tlb, start, end);
  1208. }
  1209. /**
  1210. * zap_page_range_single - remove user pages in a given range
  1211. * @vma: vm_area_struct holding the applicable pages
  1212. * @address: starting address of pages to zap
  1213. * @size: number of bytes to zap
  1214. * @details: details of shared cache invalidation
  1215. *
  1216. * The range must fit into one VMA.
  1217. */
  1218. static void zap_page_range_single(struct vm_area_struct *vma, unsigned long address,
  1219. unsigned long size, struct zap_details *details)
  1220. {
  1221. struct mm_struct *mm = vma->vm_mm;
  1222. struct mmu_gather tlb;
  1223. unsigned long end = address + size;
  1224. lru_add_drain();
  1225. tlb_gather_mmu(&tlb, mm, address, end);
  1226. update_hiwater_rss(mm);
  1227. mmu_notifier_invalidate_range_start(mm, address, end);
  1228. unmap_single_vma(&tlb, vma, address, end, details);
  1229. mmu_notifier_invalidate_range_end(mm, address, end);
  1230. tlb_finish_mmu(&tlb, address, end);
  1231. }
  1232. /**
  1233. * zap_vma_ptes - remove ptes mapping the vma
  1234. * @vma: vm_area_struct holding ptes to be zapped
  1235. * @address: starting address of pages to zap
  1236. * @size: number of bytes to zap
  1237. *
  1238. * This function only unmaps ptes assigned to VM_PFNMAP vmas.
  1239. *
  1240. * The entire address range must be fully contained within the vma.
  1241. *
  1242. * Returns 0 if successful.
  1243. */
  1244. int zap_vma_ptes(struct vm_area_struct *vma, unsigned long address,
  1245. unsigned long size)
  1246. {
  1247. if (address < vma->vm_start || address + size > vma->vm_end ||
  1248. !(vma->vm_flags & VM_PFNMAP))
  1249. return -1;
  1250. zap_page_range_single(vma, address, size, NULL);
  1251. return 0;
  1252. }
  1253. EXPORT_SYMBOL_GPL(zap_vma_ptes);
  1254. pte_t *__get_locked_pte(struct mm_struct *mm, unsigned long addr,
  1255. spinlock_t **ptl)
  1256. {
  1257. pgd_t * pgd = pgd_offset(mm, addr);
  1258. pud_t * pud = pud_alloc(mm, pgd, addr);
  1259. if (pud) {
  1260. pmd_t * pmd = pmd_alloc(mm, pud, addr);
  1261. if (pmd) {
  1262. VM_BUG_ON(pmd_trans_huge(*pmd));
  1263. return pte_alloc_map_lock(mm, pmd, addr, ptl);
  1264. }
  1265. }
  1266. return NULL;
  1267. }
  1268. /*
  1269. * This is the old fallback for page remapping.
  1270. *
  1271. * For historical reasons, it only allows reserved pages. Only
  1272. * old drivers should use this, and they needed to mark their
  1273. * pages reserved for the old functions anyway.
  1274. */
  1275. static int insert_page(struct vm_area_struct *vma, unsigned long addr,
  1276. struct page *page, pgprot_t prot)
  1277. {
  1278. struct mm_struct *mm = vma->vm_mm;
  1279. int retval;
  1280. pte_t *pte;
  1281. spinlock_t *ptl;
  1282. retval = -EINVAL;
  1283. if (PageAnon(page))
  1284. goto out;
  1285. retval = -ENOMEM;
  1286. flush_dcache_page(page);
  1287. pte = get_locked_pte(mm, addr, &ptl);
  1288. if (!pte)
  1289. goto out;
  1290. retval = -EBUSY;
  1291. if (!pte_none(*pte))
  1292. goto out_unlock;
  1293. /* Ok, finally just insert the thing.. */
  1294. get_page(page);
  1295. inc_mm_counter_fast(mm, MM_FILEPAGES);
  1296. page_add_file_rmap(page);
  1297. set_pte_at(mm, addr, pte, mk_pte(page, prot));
  1298. retval = 0;
  1299. pte_unmap_unlock(pte, ptl);
  1300. return retval;
  1301. out_unlock:
  1302. pte_unmap_unlock(pte, ptl);
  1303. out:
  1304. return retval;
  1305. }
  1306. /**
  1307. * vm_insert_page - insert single page into user vma
  1308. * @vma: user vma to map to
  1309. * @addr: target user address of this page
  1310. * @page: source kernel page
  1311. *
  1312. * This allows drivers to insert individual pages they've allocated
  1313. * into a user vma.
  1314. *
  1315. * The page has to be a nice clean _individual_ kernel allocation.
  1316. * If you allocate a compound page, you need to have marked it as
  1317. * such (__GFP_COMP), or manually just split the page up yourself
  1318. * (see split_page()).
  1319. *
  1320. * NOTE! Traditionally this was done with "remap_pfn_range()" which
  1321. * took an arbitrary page protection parameter. This doesn't allow
  1322. * that. Your vma protection will have to be set up correctly, which
  1323. * means that if you want a shared writable mapping, you'd better
  1324. * ask for a shared writable mapping!
  1325. *
  1326. * The page does not need to be reserved.
  1327. *
  1328. * Usually this function is called from f_op->mmap() handler
  1329. * under mm->mmap_sem write-lock, so it can change vma->vm_flags.
  1330. * Caller must set VM_MIXEDMAP on vma if it wants to call this
  1331. * function from other places, for example from page-fault handler.
  1332. */
  1333. int vm_insert_page(struct vm_area_struct *vma, unsigned long addr,
  1334. struct page *page)
  1335. {
  1336. if (addr < vma->vm_start || addr >= vma->vm_end)
  1337. return -EFAULT;
  1338. if (!page_count(page))
  1339. return -EINVAL;
  1340. if (!(vma->vm_flags & VM_MIXEDMAP)) {
  1341. BUG_ON(down_read_trylock(&vma->vm_mm->mmap_sem));
  1342. BUG_ON(vma->vm_flags & VM_PFNMAP);
  1343. vma->vm_flags |= VM_MIXEDMAP;
  1344. }
  1345. return insert_page(vma, addr, page, vma->vm_page_prot);
  1346. }
  1347. EXPORT_SYMBOL(vm_insert_page);
  1348. static int insert_pfn(struct vm_area_struct *vma, unsigned long addr,
  1349. unsigned long pfn, pgprot_t prot)
  1350. {
  1351. struct mm_struct *mm = vma->vm_mm;
  1352. int retval;
  1353. pte_t *pte, entry;
  1354. spinlock_t *ptl;
  1355. retval = -ENOMEM;
  1356. pte = get_locked_pte(mm, addr, &ptl);
  1357. if (!pte)
  1358. goto out;
  1359. retval = -EBUSY;
  1360. if (!pte_none(*pte))
  1361. goto out_unlock;
  1362. /* Ok, finally just insert the thing.. */
  1363. entry = pte_mkspecial(pfn_pte(pfn, prot));
  1364. set_pte_at(mm, addr, pte, entry);
  1365. update_mmu_cache(vma, addr, pte); /* XXX: why not for insert_page? */
  1366. retval = 0;
  1367. out_unlock:
  1368. pte_unmap_unlock(pte, ptl);
  1369. out:
  1370. return retval;
  1371. }
  1372. /**
  1373. * vm_insert_pfn - insert single pfn into user vma
  1374. * @vma: user vma to map to
  1375. * @addr: target user address of this page
  1376. * @pfn: source kernel pfn
  1377. *
  1378. * Similar to vm_insert_page, this allows drivers to insert individual pages
  1379. * they've allocated into a user vma. Same comments apply.
  1380. *
  1381. * This function should only be called from a vm_ops->fault handler, and
  1382. * in that case the handler should return NULL.
  1383. *
  1384. * vma cannot be a COW mapping.
  1385. *
  1386. * As this is called only for pages that do not currently exist, we
  1387. * do not need to flush old virtual caches or the TLB.
  1388. */
  1389. int vm_insert_pfn(struct vm_area_struct *vma, unsigned long addr,
  1390. unsigned long pfn)
  1391. {
  1392. int ret;
  1393. pgprot_t pgprot = vma->vm_page_prot;
  1394. /*
  1395. * Technically, architectures with pte_special can avoid all these
  1396. * restrictions (same for remap_pfn_range). However we would like
  1397. * consistency in testing and feature parity among all, so we should
  1398. * try to keep these invariants in place for everybody.
  1399. */
  1400. BUG_ON(!(vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)));
  1401. BUG_ON((vma->vm_flags & (VM_PFNMAP|VM_MIXEDMAP)) ==
  1402. (VM_PFNMAP|VM_MIXEDMAP));
  1403. BUG_ON((vma->vm_flags & VM_PFNMAP) && is_cow_mapping(vma->vm_flags));
  1404. BUG_ON((vma->vm_flags & VM_MIXEDMAP) && pfn_valid(pfn));
  1405. if (addr < vma->vm_start || addr >= vma->vm_end)
  1406. return -EFAULT;
  1407. if (track_pfn_insert(vma, &pgprot, pfn))
  1408. return -EINVAL;
  1409. ret = insert_pfn(vma, addr, pfn, pgprot);
  1410. return ret;
  1411. }
  1412. EXPORT_SYMBOL(vm_insert_pfn);
  1413. int vm_insert_mixed(struct vm_area_struct *vma, unsigned long addr,
  1414. unsigned long pfn)
  1415. {
  1416. BUG_ON(!(vma->vm_flags & VM_MIXEDMAP));
  1417. if (addr < vma->vm_start || addr >= vma->vm_end)
  1418. return -EFAULT;
  1419. /*
  1420. * If we don't have pte special, then we have to use the pfn_valid()
  1421. * based VM_MIXEDMAP scheme (see vm_normal_page), and thus we *must*
  1422. * refcount the page if pfn_valid is true (hence insert_page rather
  1423. * than insert_pfn). If a zero_pfn were inserted into a VM_MIXEDMAP
  1424. * without pte special, it would there be refcounted as a normal page.
  1425. */
  1426. if (!HAVE_PTE_SPECIAL && pfn_valid(pfn)) {
  1427. struct page *page;
  1428. page = pfn_to_page(pfn);
  1429. return insert_page(vma, addr, page, vma->vm_page_prot);
  1430. }
  1431. return insert_pfn(vma, addr, pfn, vma->vm_page_prot);
  1432. }
  1433. EXPORT_SYMBOL(vm_insert_mixed);
  1434. /*
  1435. * maps a range of physical memory into the requested pages. the old
  1436. * mappings are removed. any references to nonexistent pages results
  1437. * in null mappings (currently treated as "copy-on-access")
  1438. */
  1439. static int remap_pte_range(struct mm_struct *mm, pmd_t *pmd,
  1440. unsigned long addr, unsigned long end,
  1441. unsigned long pfn, pgprot_t prot)
  1442. {
  1443. pte_t *pte;
  1444. spinlock_t *ptl;
  1445. pte = pte_alloc_map_lock(mm, pmd, addr, &ptl);
  1446. if (!pte)
  1447. return -ENOMEM;
  1448. arch_enter_lazy_mmu_mode();
  1449. do {
  1450. BUG_ON(!pte_none(*pte));
  1451. set_pte_at(mm, addr, pte, pte_mkspecial(pfn_pte(pfn, prot)));
  1452. pfn++;
  1453. } while (pte++, addr += PAGE_SIZE, addr != end);
  1454. arch_leave_lazy_mmu_mode();
  1455. pte_unmap_unlock(pte - 1, ptl);
  1456. return 0;
  1457. }
  1458. static inline int remap_pmd_range(struct mm_struct *mm, pud_t *pud,
  1459. unsigned long addr, unsigned long end,
  1460. unsigned long pfn, pgprot_t prot)
  1461. {
  1462. pmd_t *pmd;
  1463. unsigned long next;
  1464. pfn -= addr >> PAGE_SHIFT;
  1465. pmd = pmd_alloc(mm, pud, addr);
  1466. if (!pmd)
  1467. return -ENOMEM;
  1468. VM_BUG_ON(pmd_trans_huge(*pmd));
  1469. do {
  1470. next = pmd_addr_end(addr, end);
  1471. if (remap_pte_range(mm, pmd, addr, next,
  1472. pfn + (addr >> PAGE_SHIFT), prot))
  1473. return -ENOMEM;
  1474. } while (pmd++, addr = next, addr != end);
  1475. return 0;
  1476. }
  1477. static inline int remap_pud_range(struct mm_struct *mm, pgd_t *pgd,
  1478. unsigned long addr, unsigned long end,
  1479. unsigned long pfn, pgprot_t prot)
  1480. {
  1481. pud_t *pud;
  1482. unsigned long next;
  1483. pfn -= addr >> PAGE_SHIFT;
  1484. pud = pud_alloc(mm, pgd, addr);
  1485. if (!pud)
  1486. return -ENOMEM;
  1487. do {
  1488. next = pud_addr_end(addr, end);
  1489. if (remap_pmd_range(mm, pud, addr, next,
  1490. pfn + (addr >> PAGE_SHIFT), prot))
  1491. return -ENOMEM;
  1492. } while (pud++, addr = next, addr != end);
  1493. return 0;
  1494. }
  1495. /**
  1496. * remap_pfn_range - remap kernel memory to userspace
  1497. * @vma: user vma to map to
  1498. * @addr: target user address to start at
  1499. * @pfn: physical address of kernel memory
  1500. * @size: size of map area
  1501. * @prot: page protection flags for this mapping
  1502. *
  1503. * Note: this is only safe if the mm semaphore is held when called.
  1504. */
  1505. int remap_pfn_range(struct vm_area_struct *vma, unsigned long addr,
  1506. unsigned long pfn, unsigned long size, pgprot_t prot)
  1507. {
  1508. pgd_t *pgd;
  1509. unsigned long next;
  1510. unsigned long end = addr + PAGE_ALIGN(size);
  1511. struct mm_struct *mm = vma->vm_mm;
  1512. int err;
  1513. /*
  1514. * Physically remapped pages are special. Tell the
  1515. * rest of the world about it:
  1516. * VM_IO tells people not to look at these pages
  1517. * (accesses can have side effects).
  1518. * VM_PFNMAP tells the core MM that the base pages are just
  1519. * raw PFN mappings, and do not have a "struct page" associated
  1520. * with them.
  1521. * VM_DONTEXPAND
  1522. * Disable vma merging and expanding with mremap().
  1523. * VM_DONTDUMP
  1524. * Omit vma from core dump, even when VM_IO turned off.
  1525. *
  1526. * There's a horrible special case to handle copy-on-write
  1527. * behaviour that some programs depend on. We mark the "original"
  1528. * un-COW'ed pages by matching them up with "vma->vm_pgoff".
  1529. * See vm_normal_page() for details.
  1530. */
  1531. if (is_cow_mapping(vma->vm_flags)) {
  1532. if (addr != vma->vm_start || end != vma->vm_end)
  1533. return -EINVAL;
  1534. vma->vm_pgoff = pfn;
  1535. }
  1536. err = track_pfn_remap(vma, &prot, pfn, addr, PAGE_ALIGN(size));
  1537. if (err)
  1538. return -EINVAL;
  1539. vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP;
  1540. BUG_ON(addr >= end);
  1541. pfn -= addr >> PAGE_SHIFT;
  1542. pgd = pgd_offset(mm, addr);
  1543. flush_cache_range(vma, addr, end);
  1544. do {
  1545. next = pgd_addr_end(addr, end);
  1546. err = remap_pud_range(mm, pgd, addr, next,
  1547. pfn + (addr >> PAGE_SHIFT), prot);
  1548. if (err)
  1549. break;
  1550. } while (pgd++, addr = next, addr != end);
  1551. if (err)
  1552. untrack_pfn(vma, pfn, PAGE_ALIGN(size));
  1553. return err;
  1554. }
  1555. EXPORT_SYMBOL(remap_pfn_range);
  1556. /**
  1557. * vm_iomap_memory - remap memory to userspace
  1558. * @vma: user vma to map to
  1559. * @start: start of area
  1560. * @len: size of area
  1561. *
  1562. * This is a simplified io_remap_pfn_range() for common driver use. The
  1563. * driver just needs to give us the physical memory range to be mapped,
  1564. * we'll figure out the rest from the vma information.
  1565. *
  1566. * NOTE! Some drivers might want to tweak vma->vm_page_prot first to get
  1567. * whatever write-combining details or similar.
  1568. */
  1569. int vm_iomap_memory(struct vm_area_struct *vma, phys_addr_t start, unsigned long len)
  1570. {
  1571. unsigned long vm_len, pfn, pages;
  1572. /* Check that the physical memory area passed in looks valid */
  1573. if (start + len < start)
  1574. return -EINVAL;
  1575. /*
  1576. * You *really* shouldn't map things that aren't page-aligned,
  1577. * but we've historically allowed it because IO memory might
  1578. * just have smaller alignment.
  1579. */
  1580. len += start & ~PAGE_MASK;
  1581. pfn = start >> PAGE_SHIFT;
  1582. pages = (len + ~PAGE_MASK) >> PAGE_SHIFT;
  1583. if (pfn + pages < pfn)
  1584. return -EINVAL;
  1585. /* We start the mapping 'vm_pgoff' pages into the area */
  1586. if (vma->vm_pgoff > pages)
  1587. return -EINVAL;
  1588. pfn += vma->vm_pgoff;
  1589. pages -= vma->vm_pgoff;
  1590. /* Can we fit all of the mapping? */
  1591. vm_len = vma->vm_end - vma->vm_start;
  1592. if (vm_len >> PAGE_SHIFT > pages)
  1593. return -EINVAL;
  1594. /* Ok, let it rip */
  1595. return io_remap_pfn_range(vma, vma->vm_start, pfn, vm_len, vma->vm_page_prot);
  1596. }
  1597. EXPORT_SYMBOL(vm_iomap_memory);
  1598. static int apply_to_pte_range(struct mm_struct *mm, pmd_t *pmd,
  1599. unsigned long addr, unsigned long end,
  1600. pte_fn_t fn, void *data)
  1601. {
  1602. pte_t *pte;
  1603. int err;
  1604. pgtable_t token;
  1605. spinlock_t *uninitialized_var(ptl);
  1606. pte = (mm == &init_mm) ?
  1607. pte_alloc_kernel(pmd, addr) :
  1608. pte_alloc_map_lock(mm, pmd, addr, &ptl);
  1609. if (!pte)
  1610. return -ENOMEM;
  1611. BUG_ON(pmd_huge(*pmd));
  1612. arch_enter_lazy_mmu_mode();
  1613. token = pmd_pgtable(*pmd);
  1614. do {
  1615. err = fn(pte++, token, addr, data);
  1616. if (err)
  1617. break;
  1618. } while (addr += PAGE_SIZE, addr != end);
  1619. arch_leave_lazy_mmu_mode();
  1620. if (mm != &init_mm)
  1621. pte_unmap_unlock(pte-1, ptl);
  1622. return err;
  1623. }
  1624. static int apply_to_pmd_range(struct mm_struct *mm, pud_t *pud,
  1625. unsigned long addr, unsigned long end,
  1626. pte_fn_t fn, void *data)
  1627. {
  1628. pmd_t *pmd;
  1629. unsigned long next;
  1630. int err;
  1631. BUG_ON(pud_huge(*pud));
  1632. pmd = pmd_alloc(mm, pud, addr);
  1633. if (!pmd)
  1634. return -ENOMEM;
  1635. do {
  1636. next = pmd_addr_end(addr, end);
  1637. err = apply_to_pte_range(mm, pmd, addr, next, fn, data);
  1638. if (err)
  1639. break;
  1640. } while (pmd++, addr = next, addr != end);
  1641. return err;
  1642. }
  1643. static int apply_to_pud_range(struct mm_struct *mm, pgd_t *pgd,
  1644. unsigned long addr, unsigned long end,
  1645. pte_fn_t fn, void *data)
  1646. {
  1647. pud_t *pud;
  1648. unsigned long next;
  1649. int err;
  1650. pud = pud_alloc(mm, pgd, addr);
  1651. if (!pud)
  1652. return -ENOMEM;
  1653. do {
  1654. next = pud_addr_end(addr, end);
  1655. err = apply_to_pmd_range(mm, pud, addr, next, fn, data);
  1656. if (err)
  1657. break;
  1658. } while (pud++, addr = next, addr != end);
  1659. return err;
  1660. }
  1661. /*
  1662. * Scan a region of virtual memory, filling in page tables as necessary
  1663. * and calling a provided function on each leaf page table.
  1664. */
  1665. int apply_to_page_range(struct mm_struct *mm, unsigned long addr,
  1666. unsigned long size, pte_fn_t fn, void *data)
  1667. {
  1668. pgd_t *pgd;
  1669. unsigned long next;
  1670. unsigned long end = addr + size;
  1671. int err;
  1672. BUG_ON(addr >= end);
  1673. pgd = pgd_offset(mm, addr);
  1674. do {
  1675. next = pgd_addr_end(addr, end);
  1676. err = apply_to_pud_range(mm, pgd, addr, next, fn, data);
  1677. if (err)
  1678. break;
  1679. } while (pgd++, addr = next, addr != end);
  1680. return err;
  1681. }
  1682. EXPORT_SYMBOL_GPL(apply_to_page_range);
  1683. /*
  1684. * handle_pte_fault chooses page fault handler according to an entry which was
  1685. * read non-atomically. Before making any commitment, on those architectures
  1686. * or configurations (e.g. i386 with PAE) which might give a mix of unmatched
  1687. * parts, do_swap_page must check under lock before unmapping the pte and
  1688. * proceeding (but do_wp_page is only called after already making such a check;
  1689. * and do_anonymous_page can safely check later on).
  1690. */
  1691. static inline int pte_unmap_same(struct mm_struct *mm, pmd_t *pmd,
  1692. pte_t *page_table, pte_t orig_pte)
  1693. {
  1694. int same = 1;
  1695. #if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
  1696. if (sizeof(pte_t) > sizeof(unsigned long)) {
  1697. spinlock_t *ptl = pte_lockptr(mm, pmd);
  1698. spin_lock(ptl);
  1699. same = pte_same(*page_table, orig_pte);
  1700. spin_unlock(ptl);
  1701. }
  1702. #endif
  1703. pte_unmap(page_table);
  1704. return same;
  1705. }
  1706. static inline void cow_user_page(struct page *dst, struct page *src, unsigned long va, struct vm_area_struct *vma)
  1707. {
  1708. debug_dma_assert_idle(src);
  1709. /*
  1710. * If the source page was a PFN mapping, we don't have
  1711. * a "struct page" for it. We do a best-effort copy by
  1712. * just copying from the original user address. If that
  1713. * fails, we just zero-fill it. Live with it.
  1714. */
  1715. if (unlikely(!src)) {
  1716. void *kaddr = kmap_atomic(dst);
  1717. void __user *uaddr = (void __user *)(va & PAGE_MASK);
  1718. /*
  1719. * This really shouldn't fail, because the page is there
  1720. * in the page tables. But it might just be unreadable,
  1721. * in which case we just give up and fill the result with
  1722. * zeroes.
  1723. */
  1724. if (__copy_from_user_inatomic(kaddr, uaddr, PAGE_SIZE))
  1725. clear_page(kaddr);
  1726. kunmap_atomic(kaddr);
  1727. flush_dcache_page(dst);
  1728. } else
  1729. copy_user_highpage(dst, src, va, vma);
  1730. }
  1731. /*
  1732. * Notify the address space that the page is about to become writable so that
  1733. * it can prohibit this or wait for the page to get into an appropriate state.
  1734. *
  1735. * We do this without the lock held, so that it can sleep if it needs to.
  1736. */
  1737. static int do_page_mkwrite(struct vm_area_struct *vma, struct page *page,
  1738. unsigned long address)
  1739. {
  1740. struct vm_fault vmf;
  1741. int ret;
  1742. vmf.virtual_address = (void __user *)(address & PAGE_MASK);
  1743. vmf.pgoff = page->index;
  1744. vmf.flags = FAULT_FLAG_WRITE|FAULT_FLAG_MKWRITE;
  1745. vmf.page = page;
  1746. vmf.cow_page = NULL;
  1747. ret = vma->vm_ops->page_mkwrite(vma, &vmf);
  1748. if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))
  1749. return ret;
  1750. if (unlikely(!(ret & VM_FAULT_LOCKED))) {
  1751. lock_page(page);
  1752. if (!page->mapping) {
  1753. unlock_page(page);
  1754. return 0; /* retry */
  1755. }
  1756. ret |= VM_FAULT_LOCKED;
  1757. } else
  1758. VM_BUG_ON_PAGE(!PageLocked(page), page);
  1759. return ret;
  1760. }
  1761. /*
  1762. * Handle write page faults for pages that can be reused in the current vma
  1763. *
  1764. * This can happen either due to the mapping being with the VM_SHARED flag,
  1765. * or due to us being the last reference standing to the page. In either
  1766. * case, all we need to do here is to mark the page as writable and update
  1767. * any related book-keeping.
  1768. */
  1769. static inline int wp_page_reuse(struct mm_struct *mm,
  1770. struct vm_area_struct *vma, unsigned long address,
  1771. pte_t *page_table, spinlock_t *ptl, pte_t orig_pte,
  1772. struct page *page, int page_mkwrite,
  1773. int dirty_shared)
  1774. __releases(ptl)
  1775. {
  1776. pte_t entry;
  1777. /*
  1778. * Clear the pages cpupid information as the existing
  1779. * information potentially belongs to a now completely
  1780. * unrelated process.
  1781. */
  1782. if (page)
  1783. page_cpupid_xchg_last(page, (1 << LAST_CPUPID_SHIFT) - 1);
  1784. flush_cache_page(vma, address, pte_pfn(orig_pte));
  1785. entry = pte_mkyoung(orig_pte);
  1786. entry = maybe_mkwrite(pte_mkdirty(entry), vma);
  1787. if (ptep_set_access_flags(vma, address, page_table, entry, 1))
  1788. update_mmu_cache(vma, address, page_table);
  1789. pte_unmap_unlock(page_table, ptl);
  1790. if (dirty_shared) {
  1791. struct address_space *mapping;
  1792. int dirtied;
  1793. if (!page_mkwrite)
  1794. lock_page(page);
  1795. dirtied = set_page_dirty(page);
  1796. VM_BUG_ON_PAGE(PageAnon(page), page);
  1797. mapping = page->mapping;
  1798. unlock_page(page);
  1799. page_cache_release(page);
  1800. if ((dirtied || page_mkwrite) && mapping) {
  1801. /*
  1802. * Some device drivers do not set page.mapping
  1803. * but still dirty their pages
  1804. */
  1805. balance_dirty_pages_ratelimited(mapping);
  1806. }
  1807. if (!page_mkwrite)
  1808. file_update_time(vma->vm_file);
  1809. }
  1810. return VM_FAULT_WRITE;
  1811. }
  1812. /*
  1813. * Handle the case of a page which we actually need to copy to a new page.
  1814. *
  1815. * Called with mmap_sem locked and the old page referenced, but
  1816. * without the ptl held.
  1817. *
  1818. * High level logic flow:
  1819. *
  1820. * - Allocate a page, copy the content of the old page to the new one.
  1821. * - Handle book keeping and accounting - cgroups, mmu-notifiers, etc.
  1822. * - Take the PTL. If the pte changed, bail out and release the allocated page
  1823. * - If the pte is still the way we remember it, update the page table and all
  1824. * relevant references. This includes dropping the reference the page-table
  1825. * held to the old page, as well as updating the rmap.
  1826. * - In any case, unlock the PTL and drop the reference we took to the old page.
  1827. */
  1828. static int wp_page_copy(struct mm_struct *mm, struct vm_area_struct *vma,
  1829. unsigned long address, pte_t *page_table, pmd_t *pmd,
  1830. pte_t orig_pte, struct page *old_page)
  1831. {
  1832. struct page *new_page = NULL;
  1833. spinlock_t *ptl = NULL;
  1834. pte_t entry;
  1835. int page_copied = 0;
  1836. const unsigned long mmun_start = address & PAGE_MASK; /* For mmu_notifiers */
  1837. const unsigned long mmun_end = mmun_start + PAGE_SIZE; /* For mmu_notifiers */
  1838. struct mem_cgroup *memcg;
  1839. if (unlikely(anon_vma_prepare(vma)))
  1840. goto oom;
  1841. if (is_zero_pfn(pte_pfn(orig_pte))) {
  1842. new_page = alloc_zeroed_user_highpage_movable(vma, address);
  1843. if (!new_page)
  1844. goto oom;
  1845. } else {
  1846. new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
  1847. if (!new_page)
  1848. goto oom;
  1849. cow_user_page(new_page, old_page, address, vma);
  1850. }
  1851. if (mem_cgroup_try_charge(new_page, mm, GFP_KERNEL, &memcg))
  1852. goto oom_free_new;
  1853. __SetPageUptodate(new_page);
  1854. mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
  1855. /*
  1856. * Re-check the pte - we dropped the lock
  1857. */
  1858. page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
  1859. if (likely(pte_same(*page_table, orig_pte))) {
  1860. if (old_page) {
  1861. if (!PageAnon(old_page)) {
  1862. dec_mm_counter_fast(mm, MM_FILEPAGES);
  1863. inc_mm_counter_fast(mm, MM_ANONPAGES);
  1864. }
  1865. } else {
  1866. inc_mm_counter_fast(mm, MM_ANONPAGES);
  1867. }
  1868. flush_cache_page(vma, address, pte_pfn(orig_pte));
  1869. entry = mk_pte(new_page, vma->vm_page_prot);
  1870. entry = maybe_mkwrite(pte_mkdirty(entry), vma);
  1871. /*
  1872. * Clear the pte entry and flush it first, before updating the
  1873. * pte with the new entry. This will avoid a race condition
  1874. * seen in the presence of one thread doing SMC and another
  1875. * thread doing COW.
  1876. */
  1877. ptep_clear_flush_notify(vma, address, page_table);
  1878. page_add_new_anon_rmap(new_page, vma, address);
  1879. mem_cgroup_commit_charge(new_page, memcg, false);
  1880. lru_cache_add_active_or_unevictable(new_page, vma);
  1881. /*
  1882. * We call the notify macro here because, when using secondary
  1883. * mmu page tables (such as kvm shadow page tables), we want the
  1884. * new page to be mapped directly into the secondary page table.
  1885. */
  1886. set_pte_at_notify(mm, address, page_table, entry);
  1887. update_mmu_cache(vma, address, page_table);
  1888. if (old_page) {
  1889. /*
  1890. * Only after switching the pte to the new page may
  1891. * we remove the mapcount here. Otherwise another
  1892. * process may come and find the rmap count decremented
  1893. * before the pte is switched to the new page, and
  1894. * "reuse" the old page writing into it while our pte
  1895. * here still points into it and can be read by other
  1896. * threads.
  1897. *
  1898. * The critical issue is to order this
  1899. * page_remove_rmap with the ptp_clear_flush above.
  1900. * Those stores are ordered by (if nothing else,)
  1901. * the barrier present in the atomic_add_negative
  1902. * in page_remove_rmap.
  1903. *
  1904. * Then the TLB flush in ptep_clear_flush ensures that
  1905. * no process can access the old page before the
  1906. * decremented mapcount is visible. And the old page
  1907. * cannot be reused until after the decremented
  1908. * mapcount is visible. So transitively, TLBs to
  1909. * old page will be flushed before it can be reused.
  1910. */
  1911. page_remove_rmap(old_page);
  1912. }
  1913. /* Free the old page.. */
  1914. new_page = old_page;
  1915. page_copied = 1;
  1916. } else {
  1917. mem_cgroup_cancel_charge(new_page, memcg);
  1918. }
  1919. if (new_page)
  1920. page_cache_release(new_page);
  1921. pte_unmap_unlock(page_table, ptl);
  1922. mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
  1923. if (old_page) {
  1924. /*
  1925. * Don't let another task, with possibly unlocked vma,
  1926. * keep the mlocked page.
  1927. */
  1928. if (page_copied && (vma->vm_flags & VM_LOCKED)) {
  1929. lock_page(old_page); /* LRU manipulation */
  1930. munlock_vma_page(old_page);
  1931. unlock_page(old_page);
  1932. }
  1933. page_cache_release(old_page);
  1934. }
  1935. return page_copied ? VM_FAULT_WRITE : 0;
  1936. oom_free_new:
  1937. page_cache_release(new_page);
  1938. oom:
  1939. if (old_page)
  1940. page_cache_release(old_page);
  1941. return VM_FAULT_OOM;
  1942. }
  1943. /*
  1944. * Handle write page faults for VM_MIXEDMAP or VM_PFNMAP for a VM_SHARED
  1945. * mapping
  1946. */
  1947. static int wp_pfn_shared(struct mm_struct *mm,
  1948. struct vm_area_struct *vma, unsigned long address,
  1949. pte_t *page_table, spinlock_t *ptl, pte_t orig_pte,
  1950. pmd_t *pmd)
  1951. {
  1952. if (vma->vm_ops && vma->vm_ops->pfn_mkwrite) {
  1953. struct vm_fault vmf = {
  1954. .page = NULL,
  1955. .pgoff = linear_page_index(vma, address),
  1956. .virtual_address = (void __user *)(address & PAGE_MASK),
  1957. .flags = FAULT_FLAG_WRITE | FAULT_FLAG_MKWRITE,
  1958. };
  1959. int ret;
  1960. pte_unmap_unlock(page_table, ptl);
  1961. ret = vma->vm_ops->pfn_mkwrite(vma, &vmf);
  1962. if (ret & VM_FAULT_ERROR)
  1963. return ret;
  1964. page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
  1965. /*
  1966. * We might have raced with another page fault while we
  1967. * released the pte_offset_map_lock.
  1968. */
  1969. if (!pte_same(*page_table, orig_pte)) {
  1970. pte_unmap_unlock(page_table, ptl);
  1971. return 0;
  1972. }
  1973. }
  1974. return wp_page_reuse(mm, vma, address, page_table, ptl, orig_pte,
  1975. NULL, 0, 0);
  1976. }
  1977. static int wp_page_shared(struct mm_struct *mm, struct vm_area_struct *vma,
  1978. unsigned long address, pte_t *page_table,
  1979. pmd_t *pmd, spinlock_t *ptl, pte_t orig_pte,
  1980. struct page *old_page)
  1981. __releases(ptl)
  1982. {
  1983. int page_mkwrite = 0;
  1984. page_cache_get(old_page);
  1985. /*
  1986. * Only catch write-faults on shared writable pages,
  1987. * read-only shared pages can get COWed by
  1988. * get_user_pages(.write=1, .force=1).
  1989. */
  1990. if (vma->vm_ops && vma->vm_ops->page_mkwrite) {
  1991. int tmp;
  1992. pte_unmap_unlock(page_table, ptl);
  1993. tmp = do_page_mkwrite(vma, old_page, address);
  1994. if (unlikely(!tmp || (tmp &
  1995. (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))) {
  1996. page_cache_release(old_page);
  1997. return tmp;
  1998. }
  1999. /*
  2000. * Since we dropped the lock we need to revalidate
  2001. * the PTE as someone else may have changed it. If
  2002. * they did, we just return, as we can count on the
  2003. * MMU to tell us if they didn't also make it writable.
  2004. */
  2005. page_table = pte_offset_map_lock(mm, pmd, address,
  2006. &ptl);
  2007. if (!pte_same(*page_table, orig_pte)) {
  2008. unlock_page(old_page);
  2009. pte_unmap_unlock(page_table, ptl);
  2010. page_cache_release(old_page);
  2011. return 0;
  2012. }
  2013. page_mkwrite = 1;
  2014. }
  2015. return wp_page_reuse(mm, vma, address, page_table, ptl,
  2016. orig_pte, old_page, page_mkwrite, 1);
  2017. }
  2018. /*
  2019. * This routine handles present pages, when users try to write
  2020. * to a shared page. It is done by copying the page to a new address
  2021. * and decrementing the shared-page counter for the old page.
  2022. *
  2023. * Note that this routine assumes that the protection checks have been
  2024. * done by the caller (the low-level page fault routine in most cases).
  2025. * Thus we can safely just mark it writable once we've done any necessary
  2026. * COW.
  2027. *
  2028. * We also mark the page dirty at this point even though the page will
  2029. * change only once the write actually happens. This avoids a few races,
  2030. * and potentially makes it more efficient.
  2031. *
  2032. * We enter with non-exclusive mmap_sem (to exclude vma changes,
  2033. * but allow concurrent faults), with pte both mapped and locked.
  2034. * We return with mmap_sem still held, but pte unmapped and unlocked.
  2035. */
  2036. static int do_wp_page(struct mm_struct *mm, struct vm_area_struct *vma,
  2037. unsigned long address, pte_t *page_table, pmd_t *pmd,
  2038. spinlock_t *ptl, pte_t orig_pte)
  2039. __releases(ptl)
  2040. {
  2041. struct page *old_page;
  2042. old_page = vm_normal_page(vma, address, orig_pte);
  2043. if (!old_page) {
  2044. /*
  2045. * VM_MIXEDMAP !pfn_valid() case, or VM_SOFTDIRTY clear on a
  2046. * VM_PFNMAP VMA.
  2047. *
  2048. * We should not cow pages in a shared writeable mapping.
  2049. * Just mark the pages writable and/or call ops->pfn_mkwrite.
  2050. */
  2051. if ((vma->vm_flags & (VM_WRITE|VM_SHARED)) ==
  2052. (VM_WRITE|VM_SHARED))
  2053. return wp_pfn_shared(mm, vma, address, page_table, ptl,
  2054. orig_pte, pmd);
  2055. pte_unmap_unlock(page_table, ptl);
  2056. return wp_page_copy(mm, vma, address, page_table, pmd,
  2057. orig_pte, old_page);
  2058. }
  2059. /*
  2060. * Take out anonymous pages first, anonymous shared vmas are
  2061. * not dirty accountable.
  2062. */
  2063. if (PageAnon(old_page) && !PageKsm(old_page)) {
  2064. if (!trylock_page(old_page)) {
  2065. page_cache_get(old_page);
  2066. pte_unmap_unlock(page_table, ptl);
  2067. lock_page(old_page);
  2068. page_table = pte_offset_map_lock(mm, pmd, address,
  2069. &ptl);
  2070. if (!pte_same(*page_table, orig_pte)) {
  2071. unlock_page(old_page);
  2072. pte_unmap_unlock(page_table, ptl);
  2073. page_cache_release(old_page);
  2074. return 0;
  2075. }
  2076. page_cache_release(old_page);
  2077. }
  2078. if (reuse_swap_page(old_page)) {
  2079. /*
  2080. * The page is all ours. Move it to our anon_vma so
  2081. * the rmap code will not search our parent or siblings.
  2082. * Protected against the rmap code by the page lock.
  2083. */
  2084. page_move_anon_rmap(old_page, vma, address);
  2085. unlock_page(old_page);
  2086. return wp_page_reuse(mm, vma, address, page_table, ptl,
  2087. orig_pte, old_page, 0, 0);
  2088. }
  2089. unlock_page(old_page);
  2090. } else if (unlikely((vma->vm_flags & (VM_WRITE|VM_SHARED)) ==
  2091. (VM_WRITE|VM_SHARED))) {
  2092. return wp_page_shared(mm, vma, address, page_table, pmd,
  2093. ptl, orig_pte, old_page);
  2094. }
  2095. /*
  2096. * Ok, we need to copy. Oh, well..
  2097. */
  2098. page_cache_get(old_page);
  2099. pte_unmap_unlock(page_table, ptl);
  2100. return wp_page_copy(mm, vma, address, page_table, pmd,
  2101. orig_pte, old_page);
  2102. }
  2103. static void unmap_mapping_range_vma(struct vm_area_struct *vma,
  2104. unsigned long start_addr, unsigned long end_addr,
  2105. struct zap_details *details)
  2106. {
  2107. zap_page_range_single(vma, start_addr, end_addr - start_addr, details);
  2108. }
  2109. static inline void unmap_mapping_range_tree(struct rb_root *root,
  2110. struct zap_details *details)
  2111. {
  2112. struct vm_area_struct *vma;
  2113. pgoff_t vba, vea, zba, zea;
  2114. vma_interval_tree_foreach(vma, root,
  2115. details->first_index, details->last_index) {
  2116. vba = vma->vm_pgoff;
  2117. vea = vba + vma_pages(vma) - 1;
  2118. /* Assume for now that PAGE_CACHE_SHIFT == PAGE_SHIFT */
  2119. zba = details->first_index;
  2120. if (zba < vba)
  2121. zba = vba;
  2122. zea = details->last_index;
  2123. if (zea > vea)
  2124. zea = vea;
  2125. unmap_mapping_range_vma(vma,
  2126. ((zba - vba) << PAGE_SHIFT) + vma->vm_start,
  2127. ((zea - vba + 1) << PAGE_SHIFT) + vma->vm_start,
  2128. details);
  2129. }
  2130. }
  2131. /**
  2132. * unmap_mapping_range - unmap the portion of all mmaps in the specified
  2133. * address_space corresponding to the specified page range in the underlying
  2134. * file.
  2135. *
  2136. * @mapping: the address space containing mmaps to be unmapped.
  2137. * @holebegin: byte in first page to unmap, relative to the start of
  2138. * the underlying file. This will be rounded down to a PAGE_SIZE
  2139. * boundary. Note that this is different from truncate_pagecache(), which
  2140. * must keep the partial page. In contrast, we must get rid of
  2141. * partial pages.
  2142. * @holelen: size of prospective hole in bytes. This will be rounded
  2143. * up to a PAGE_SIZE boundary. A holelen of zero truncates to the
  2144. * end of the file.
  2145. * @even_cows: 1 when truncating a file, unmap even private COWed pages;
  2146. * but 0 when invalidating pagecache, don't throw away private data.
  2147. */
  2148. void unmap_mapping_range(struct address_space *mapping,
  2149. loff_t const holebegin, loff_t const holelen, int even_cows)
  2150. {
  2151. struct zap_details details;
  2152. pgoff_t hba = holebegin >> PAGE_SHIFT;
  2153. pgoff_t hlen = (holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
  2154. /* Check for overflow. */
  2155. if (sizeof(holelen) > sizeof(hlen)) {
  2156. long long holeend =
  2157. (holebegin + holelen + PAGE_SIZE - 1) >> PAGE_SHIFT;
  2158. if (holeend & ~(long long)ULONG_MAX)
  2159. hlen = ULONG_MAX - hba + 1;
  2160. }
  2161. details.check_mapping = even_cows? NULL: mapping;
  2162. details.first_index = hba;
  2163. details.last_index = hba + hlen - 1;
  2164. if (details.last_index < details.first_index)
  2165. details.last_index = ULONG_MAX;
  2166. i_mmap_lock_write(mapping);
  2167. if (unlikely(!RB_EMPTY_ROOT(&mapping->i_mmap)))
  2168. unmap_mapping_range_tree(&mapping->i_mmap, &details);
  2169. i_mmap_unlock_write(mapping);
  2170. }
  2171. EXPORT_SYMBOL(unmap_mapping_range);
  2172. /*
  2173. * We enter with non-exclusive mmap_sem (to exclude vma changes,
  2174. * but allow concurrent faults), and pte mapped but not yet locked.
  2175. * We return with pte unmapped and unlocked.
  2176. *
  2177. * We return with the mmap_sem locked or unlocked in the same cases
  2178. * as does filemap_fault().
  2179. */
  2180. static int do_swap_page(struct mm_struct *mm, struct vm_area_struct *vma,
  2181. unsigned long address, pte_t *page_table, pmd_t *pmd,
  2182. unsigned int flags, pte_t orig_pte)
  2183. {
  2184. spinlock_t *ptl;
  2185. struct page *page, *swapcache;
  2186. struct mem_cgroup *memcg;
  2187. swp_entry_t entry;
  2188. pte_t pte;
  2189. int locked;
  2190. int exclusive = 0;
  2191. int ret = 0;
  2192. if (!pte_unmap_same(mm, pmd, page_table, orig_pte))
  2193. goto out;
  2194. entry = pte_to_swp_entry(orig_pte);
  2195. if (unlikely(non_swap_entry(entry))) {
  2196. if (is_migration_entry(entry)) {
  2197. migration_entry_wait(mm, pmd, address);
  2198. } else if (is_hwpoison_entry(entry)) {
  2199. ret = VM_FAULT_HWPOISON;
  2200. } else {
  2201. print_bad_pte(vma, address, orig_pte, NULL);
  2202. ret = VM_FAULT_SIGBUS;
  2203. }
  2204. goto out;
  2205. }
  2206. delayacct_set_flag(DELAYACCT_PF_SWAPIN);
  2207. page = lookup_swap_cache(entry);
  2208. if (!page) {
  2209. page = swapin_readahead(entry,
  2210. GFP_HIGHUSER_MOVABLE, vma, address);
  2211. if (!page) {
  2212. /*
  2213. * Back out if somebody else faulted in this pte
  2214. * while we released the pte lock.
  2215. */
  2216. page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
  2217. if (likely(pte_same(*page_table, orig_pte)))
  2218. ret = VM_FAULT_OOM;
  2219. delayacct_clear_flag(DELAYACCT_PF_SWAPIN);
  2220. goto unlock;
  2221. }
  2222. /* Had to read the page from swap area: Major fault */
  2223. ret = VM_FAULT_MAJOR;
  2224. count_vm_event(PGMAJFAULT);
  2225. mem_cgroup_count_vm_event(mm, PGMAJFAULT);
  2226. } else if (PageHWPoison(page)) {
  2227. /*
  2228. * hwpoisoned dirty swapcache pages are kept for killing
  2229. * owner processes (which may be unknown at hwpoison time)
  2230. */
  2231. ret = VM_FAULT_HWPOISON;
  2232. delayacct_clear_flag(DELAYACCT_PF_SWAPIN);
  2233. swapcache = page;
  2234. goto out_release;
  2235. }
  2236. swapcache = page;
  2237. locked = lock_page_or_retry(page, mm, flags);
  2238. delayacct_clear_flag(DELAYACCT_PF_SWAPIN);
  2239. if (!locked) {
  2240. ret |= VM_FAULT_RETRY;
  2241. goto out_release;
  2242. }
  2243. /*
  2244. * Make sure try_to_free_swap or reuse_swap_page or swapoff did not
  2245. * release the swapcache from under us. The page pin, and pte_same
  2246. * test below, are not enough to exclude that. Even if it is still
  2247. * swapcache, we need to check that the page's swap has not changed.
  2248. */
  2249. if (unlikely(!PageSwapCache(page) || page_private(page) != entry.val))
  2250. goto out_page;
  2251. page = ksm_might_need_to_copy(page, vma, address);
  2252. if (unlikely(!page)) {
  2253. ret = VM_FAULT_OOM;
  2254. page = swapcache;
  2255. goto out_page;
  2256. }
  2257. if (mem_cgroup_try_charge(page, mm, GFP_KERNEL, &memcg)) {
  2258. ret = VM_FAULT_OOM;
  2259. goto out_page;
  2260. }
  2261. /*
  2262. * Back out if somebody else already faulted in this pte.
  2263. */
  2264. page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
  2265. if (unlikely(!pte_same(*page_table, orig_pte)))
  2266. goto out_nomap;
  2267. if (unlikely(!PageUptodate(page))) {
  2268. ret = VM_FAULT_SIGBUS;
  2269. goto out_nomap;
  2270. }
  2271. /*
  2272. * The page isn't present yet, go ahead with the fault.
  2273. *
  2274. * Be careful about the sequence of operations here.
  2275. * To get its accounting right, reuse_swap_page() must be called
  2276. * while the page is counted on swap but not yet in mapcount i.e.
  2277. * before page_add_anon_rmap() and swap_free(); try_to_free_swap()
  2278. * must be called after the swap_free(), or it will never succeed.
  2279. */
  2280. inc_mm_counter_fast(mm, MM_ANONPAGES);
  2281. dec_mm_counter_fast(mm, MM_SWAPENTS);
  2282. pte = mk_pte(page, vma->vm_page_prot);
  2283. if ((flags & FAULT_FLAG_WRITE) && reuse_swap_page(page)) {
  2284. pte = maybe_mkwrite(pte_mkdirty(pte), vma);
  2285. flags &= ~FAULT_FLAG_WRITE;
  2286. ret |= VM_FAULT_WRITE;
  2287. exclusive = 1;
  2288. }
  2289. flush_icache_page(vma, page);
  2290. if (pte_swp_soft_dirty(orig_pte))
  2291. pte = pte_mksoft_dirty(pte);
  2292. set_pte_at(mm, address, page_table, pte);
  2293. if (page == swapcache) {
  2294. do_page_add_anon_rmap(page, vma, address, exclusive);
  2295. mem_cgroup_commit_charge(page, memcg, true);
  2296. } else { /* ksm created a completely new copy */
  2297. page_add_new_anon_rmap(page, vma, address);
  2298. mem_cgroup_commit_charge(page, memcg, false);
  2299. lru_cache_add_active_or_unevictable(page, vma);
  2300. }
  2301. swap_free(entry);
  2302. if (vm_swap_full() || (vma->vm_flags & VM_LOCKED) || PageMlocked(page))
  2303. try_to_free_swap(page);
  2304. unlock_page(page);
  2305. if (page != swapcache) {
  2306. /*
  2307. * Hold the lock to avoid the swap entry to be reused
  2308. * until we take the PT lock for the pte_same() check
  2309. * (to avoid false positives from pte_same). For
  2310. * further safety release the lock after the swap_free
  2311. * so that the swap count won't change under a
  2312. * parallel locked swapcache.
  2313. */
  2314. unlock_page(swapcache);
  2315. page_cache_release(swapcache);
  2316. }
  2317. if (flags & FAULT_FLAG_WRITE) {
  2318. ret |= do_wp_page(mm, vma, address, page_table, pmd, ptl, pte);
  2319. if (ret & VM_FAULT_ERROR)
  2320. ret &= VM_FAULT_ERROR;
  2321. goto out;
  2322. }
  2323. /* No need to invalidate - it was non-present before */
  2324. update_mmu_cache(vma, address, page_table);
  2325. unlock:
  2326. pte_unmap_unlock(page_table, ptl);
  2327. out:
  2328. return ret;
  2329. out_nomap:
  2330. mem_cgroup_cancel_charge(page, memcg);
  2331. pte_unmap_unlock(page_table, ptl);
  2332. out_page:
  2333. unlock_page(page);
  2334. out_release:
  2335. page_cache_release(page);
  2336. if (page != swapcache) {
  2337. unlock_page(swapcache);
  2338. page_cache_release(swapcache);
  2339. }
  2340. return ret;
  2341. }
  2342. /*
  2343. * This is like a special single-page "expand_{down|up}wards()",
  2344. * except we must first make sure that 'address{-|+}PAGE_SIZE'
  2345. * doesn't hit another vma.
  2346. */
  2347. static inline int check_stack_guard_page(struct vm_area_struct *vma, unsigned long address)
  2348. {
  2349. address &= PAGE_MASK;
  2350. if ((vma->vm_flags & VM_GROWSDOWN) && address == vma->vm_start) {
  2351. struct vm_area_struct *prev = vma->vm_prev;
  2352. /*
  2353. * Is there a mapping abutting this one below?
  2354. *
  2355. * That's only ok if it's the same stack mapping
  2356. * that has gotten split..
  2357. */
  2358. if (prev && prev->vm_end == address)
  2359. return prev->vm_flags & VM_GROWSDOWN ? 0 : -ENOMEM;
  2360. return expand_downwards(vma, address - PAGE_SIZE);
  2361. }
  2362. if ((vma->vm_flags & VM_GROWSUP) && address + PAGE_SIZE == vma->vm_end) {
  2363. struct vm_area_struct *next = vma->vm_next;
  2364. /* As VM_GROWSDOWN but s/below/above/ */
  2365. if (next && next->vm_start == address + PAGE_SIZE)
  2366. return next->vm_flags & VM_GROWSUP ? 0 : -ENOMEM;
  2367. return expand_upwards(vma, address + PAGE_SIZE);
  2368. }
  2369. return 0;
  2370. }
  2371. /*
  2372. * We enter with non-exclusive mmap_sem (to exclude vma changes,
  2373. * but allow concurrent faults), and pte mapped but not yet locked.
  2374. * We return with mmap_sem still held, but pte unmapped and unlocked.
  2375. */
  2376. static int do_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
  2377. unsigned long address, pte_t *page_table, pmd_t *pmd,
  2378. unsigned int flags)
  2379. {
  2380. struct mem_cgroup *memcg;
  2381. struct page *page;
  2382. spinlock_t *ptl;
  2383. pte_t entry;
  2384. pte_unmap(page_table);
  2385. /* File mapping without ->vm_ops ? */
  2386. if (vma->vm_flags & VM_SHARED)
  2387. return VM_FAULT_SIGBUS;
  2388. /* Check if we need to add a guard page to the stack */
  2389. if (check_stack_guard_page(vma, address) < 0)
  2390. return VM_FAULT_SIGSEGV;
  2391. /* Use the zero-page for reads */
  2392. if (!(flags & FAULT_FLAG_WRITE) && !mm_forbids_zeropage(mm)) {
  2393. entry = pte_mkspecial(pfn_pte(my_zero_pfn(address),
  2394. vma->vm_page_prot));
  2395. page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
  2396. if (!pte_none(*page_table))
  2397. goto unlock;
  2398. /* Deliver the page fault to userland, check inside PT lock */
  2399. if (userfaultfd_missing(vma)) {
  2400. pte_unmap_unlock(page_table, ptl);
  2401. return handle_userfault(vma, address, flags,
  2402. VM_UFFD_MISSING);
  2403. }
  2404. goto setpte;
  2405. }
  2406. /* Allocate our own private page. */
  2407. if (unlikely(anon_vma_prepare(vma)))
  2408. goto oom;
  2409. page = alloc_zeroed_user_highpage_movable(vma, address);
  2410. if (!page)
  2411. goto oom;
  2412. if (mem_cgroup_try_charge(page, mm, GFP_KERNEL, &memcg))
  2413. goto oom_free_page;
  2414. /*
  2415. * The memory barrier inside __SetPageUptodate makes sure that
  2416. * preceeding stores to the page contents become visible before
  2417. * the set_pte_at() write.
  2418. */
  2419. __SetPageUptodate(page);
  2420. entry = mk_pte(page, vma->vm_page_prot);
  2421. if (vma->vm_flags & VM_WRITE)
  2422. entry = pte_mkwrite(pte_mkdirty(entry));
  2423. page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
  2424. if (!pte_none(*page_table))
  2425. goto release;
  2426. /* Deliver the page fault to userland, check inside PT lock */
  2427. if (userfaultfd_missing(vma)) {
  2428. pte_unmap_unlock(page_table, ptl);
  2429. mem_cgroup_cancel_charge(page, memcg);
  2430. page_cache_release(page);
  2431. return handle_userfault(vma, address, flags,
  2432. VM_UFFD_MISSING);
  2433. }
  2434. inc_mm_counter_fast(mm, MM_ANONPAGES);
  2435. page_add_new_anon_rmap(page, vma, address);
  2436. mem_cgroup_commit_charge(page, memcg, false);
  2437. lru_cache_add_active_or_unevictable(page, vma);
  2438. setpte:
  2439. set_pte_at(mm, address, page_table, entry);
  2440. /* No need to invalidate - it was non-present before */
  2441. update_mmu_cache(vma, address, page_table);
  2442. unlock:
  2443. pte_unmap_unlock(page_table, ptl);
  2444. return 0;
  2445. release:
  2446. mem_cgroup_cancel_charge(page, memcg);
  2447. page_cache_release(page);
  2448. goto unlock;
  2449. oom_free_page:
  2450. page_cache_release(page);
  2451. oom:
  2452. return VM_FAULT_OOM;
  2453. }
  2454. /*
  2455. * The mmap_sem must have been held on entry, and may have been
  2456. * released depending on flags and vma->vm_ops->fault() return value.
  2457. * See filemap_fault() and __lock_page_retry().
  2458. */
  2459. static int __do_fault(struct vm_area_struct *vma, unsigned long address,
  2460. pgoff_t pgoff, unsigned int flags,
  2461. struct page *cow_page, struct page **page)
  2462. {
  2463. struct vm_fault vmf;
  2464. int ret;
  2465. vmf.virtual_address = (void __user *)(address & PAGE_MASK);
  2466. vmf.pgoff = pgoff;
  2467. vmf.flags = flags;
  2468. vmf.page = NULL;
  2469. vmf.cow_page = cow_page;
  2470. ret = vma->vm_ops->fault(vma, &vmf);
  2471. if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
  2472. return ret;
  2473. if (!vmf.page)
  2474. goto out;
  2475. if (unlikely(PageHWPoison(vmf.page))) {
  2476. if (ret & VM_FAULT_LOCKED)
  2477. unlock_page(vmf.page);
  2478. page_cache_release(vmf.page);
  2479. return VM_FAULT_HWPOISON;
  2480. }
  2481. if (unlikely(!(ret & VM_FAULT_LOCKED)))
  2482. lock_page(vmf.page);
  2483. else
  2484. VM_BUG_ON_PAGE(!PageLocked(vmf.page), vmf.page);
  2485. out:
  2486. *page = vmf.page;
  2487. return ret;
  2488. }
  2489. /**
  2490. * do_set_pte - setup new PTE entry for given page and add reverse page mapping.
  2491. *
  2492. * @vma: virtual memory area
  2493. * @address: user virtual address
  2494. * @page: page to map
  2495. * @pte: pointer to target page table entry
  2496. * @write: true, if new entry is writable
  2497. * @anon: true, if it's anonymous page
  2498. *
  2499. * Caller must hold page table lock relevant for @pte.
  2500. *
  2501. * Target users are page handler itself and implementations of
  2502. * vm_ops->map_pages.
  2503. */
  2504. void do_set_pte(struct vm_area_struct *vma, unsigned long address,
  2505. struct page *page, pte_t *pte, bool write, bool anon)
  2506. {
  2507. pte_t entry;
  2508. flush_icache_page(vma, page);
  2509. entry = mk_pte(page, vma->vm_page_prot);
  2510. if (write)
  2511. entry = maybe_mkwrite(pte_mkdirty(entry), vma);
  2512. if (anon) {
  2513. inc_mm_counter_fast(vma->vm_mm, MM_ANONPAGES);
  2514. page_add_new_anon_rmap(page, vma, address);
  2515. } else {
  2516. inc_mm_counter_fast(vma->vm_mm, MM_FILEPAGES);
  2517. page_add_file_rmap(page);
  2518. }
  2519. set_pte_at(vma->vm_mm, address, pte, entry);
  2520. /* no need to invalidate: a not-present page won't be cached */
  2521. update_mmu_cache(vma, address, pte);
  2522. }
  2523. static unsigned long fault_around_bytes __read_mostly =
  2524. rounddown_pow_of_two(65536);
  2525. #ifdef CONFIG_DEBUG_FS
  2526. static int fault_around_bytes_get(void *data, u64 *val)
  2527. {
  2528. *val = fault_around_bytes;
  2529. return 0;
  2530. }
  2531. /*
  2532. * fault_around_pages() and fault_around_mask() expects fault_around_bytes
  2533. * rounded down to nearest page order. It's what do_fault_around() expects to
  2534. * see.
  2535. */
  2536. static int fault_around_bytes_set(void *data, u64 val)
  2537. {
  2538. if (val / PAGE_SIZE > PTRS_PER_PTE)
  2539. return -EINVAL;
  2540. if (val > PAGE_SIZE)
  2541. fault_around_bytes = rounddown_pow_of_two(val);
  2542. else
  2543. fault_around_bytes = PAGE_SIZE; /* rounddown_pow_of_two(0) is undefined */
  2544. return 0;
  2545. }
  2546. DEFINE_SIMPLE_ATTRIBUTE(fault_around_bytes_fops,
  2547. fault_around_bytes_get, fault_around_bytes_set, "%llu\n");
  2548. static int __init fault_around_debugfs(void)
  2549. {
  2550. void *ret;
  2551. ret = debugfs_create_file("fault_around_bytes", 0644, NULL, NULL,
  2552. &fault_around_bytes_fops);
  2553. if (!ret)
  2554. pr_warn("Failed to create fault_around_bytes in debugfs");
  2555. return 0;
  2556. }
  2557. late_initcall(fault_around_debugfs);
  2558. #endif
  2559. /*
  2560. * do_fault_around() tries to map few pages around the fault address. The hope
  2561. * is that the pages will be needed soon and this will lower the number of
  2562. * faults to handle.
  2563. *
  2564. * It uses vm_ops->map_pages() to map the pages, which skips the page if it's
  2565. * not ready to be mapped: not up-to-date, locked, etc.
  2566. *
  2567. * This function is called with the page table lock taken. In the split ptlock
  2568. * case the page table lock only protects only those entries which belong to
  2569. * the page table corresponding to the fault address.
  2570. *
  2571. * This function doesn't cross the VMA boundaries, in order to call map_pages()
  2572. * only once.
  2573. *
  2574. * fault_around_pages() defines how many pages we'll try to map.
  2575. * do_fault_around() expects it to return a power of two less than or equal to
  2576. * PTRS_PER_PTE.
  2577. *
  2578. * The virtual address of the area that we map is naturally aligned to the
  2579. * fault_around_pages() value (and therefore to page order). This way it's
  2580. * easier to guarantee that we don't cross page table boundaries.
  2581. */
  2582. static void do_fault_around(struct vm_area_struct *vma, unsigned long address,
  2583. pte_t *pte, pgoff_t pgoff, unsigned int flags)
  2584. {
  2585. unsigned long start_addr, nr_pages, mask;
  2586. pgoff_t max_pgoff;
  2587. struct vm_fault vmf;
  2588. int off;
  2589. nr_pages = READ_ONCE(fault_around_bytes) >> PAGE_SHIFT;
  2590. mask = ~(nr_pages * PAGE_SIZE - 1) & PAGE_MASK;
  2591. start_addr = max(address & mask, vma->vm_start);
  2592. off = ((address - start_addr) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1);
  2593. pte -= off;
  2594. pgoff -= off;
  2595. /*
  2596. * max_pgoff is either end of page table or end of vma
  2597. * or fault_around_pages() from pgoff, depending what is nearest.
  2598. */
  2599. max_pgoff = pgoff - ((start_addr >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)) +
  2600. PTRS_PER_PTE - 1;
  2601. max_pgoff = min3(max_pgoff, vma_pages(vma) + vma->vm_pgoff - 1,
  2602. pgoff + nr_pages - 1);
  2603. /* Check if it makes any sense to call ->map_pages */
  2604. while (!pte_none(*pte)) {
  2605. if (++pgoff > max_pgoff)
  2606. return;
  2607. start_addr += PAGE_SIZE;
  2608. if (start_addr >= vma->vm_end)
  2609. return;
  2610. pte++;
  2611. }
  2612. vmf.virtual_address = (void __user *) start_addr;
  2613. vmf.pte = pte;
  2614. vmf.pgoff = pgoff;
  2615. vmf.max_pgoff = max_pgoff;
  2616. vmf.flags = flags;
  2617. vma->vm_ops->map_pages(vma, &vmf);
  2618. }
  2619. static int do_read_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  2620. unsigned long address, pmd_t *pmd,
  2621. pgoff_t pgoff, unsigned int flags, pte_t orig_pte)
  2622. {
  2623. struct page *fault_page;
  2624. spinlock_t *ptl;
  2625. pte_t *pte;
  2626. int ret = 0;
  2627. /*
  2628. * Let's call ->map_pages() first and use ->fault() as fallback
  2629. * if page by the offset is not ready to be mapped (cold cache or
  2630. * something).
  2631. */
  2632. if (vma->vm_ops->map_pages && fault_around_bytes >> PAGE_SHIFT > 1) {
  2633. pte = pte_offset_map_lock(mm, pmd, address, &ptl);
  2634. do_fault_around(vma, address, pte, pgoff, flags);
  2635. if (!pte_same(*pte, orig_pte))
  2636. goto unlock_out;
  2637. pte_unmap_unlock(pte, ptl);
  2638. }
  2639. ret = __do_fault(vma, address, pgoff, flags, NULL, &fault_page);
  2640. if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
  2641. return ret;
  2642. pte = pte_offset_map_lock(mm, pmd, address, &ptl);
  2643. if (unlikely(!pte_same(*pte, orig_pte))) {
  2644. pte_unmap_unlock(pte, ptl);
  2645. unlock_page(fault_page);
  2646. page_cache_release(fault_page);
  2647. return ret;
  2648. }
  2649. do_set_pte(vma, address, fault_page, pte, false, false);
  2650. unlock_page(fault_page);
  2651. unlock_out:
  2652. pte_unmap_unlock(pte, ptl);
  2653. return ret;
  2654. }
  2655. static int do_cow_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  2656. unsigned long address, pmd_t *pmd,
  2657. pgoff_t pgoff, unsigned int flags, pte_t orig_pte)
  2658. {
  2659. struct page *fault_page, *new_page;
  2660. struct mem_cgroup *memcg;
  2661. spinlock_t *ptl;
  2662. pte_t *pte;
  2663. int ret;
  2664. if (unlikely(anon_vma_prepare(vma)))
  2665. return VM_FAULT_OOM;
  2666. new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
  2667. if (!new_page)
  2668. return VM_FAULT_OOM;
  2669. if (mem_cgroup_try_charge(new_page, mm, GFP_KERNEL, &memcg)) {
  2670. page_cache_release(new_page);
  2671. return VM_FAULT_OOM;
  2672. }
  2673. ret = __do_fault(vma, address, pgoff, flags, new_page, &fault_page);
  2674. if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
  2675. goto uncharge_out;
  2676. if (fault_page)
  2677. copy_user_highpage(new_page, fault_page, address, vma);
  2678. __SetPageUptodate(new_page);
  2679. pte = pte_offset_map_lock(mm, pmd, address, &ptl);
  2680. if (unlikely(!pte_same(*pte, orig_pte))) {
  2681. pte_unmap_unlock(pte, ptl);
  2682. if (fault_page) {
  2683. unlock_page(fault_page);
  2684. page_cache_release(fault_page);
  2685. } else {
  2686. /*
  2687. * The fault handler has no page to lock, so it holds
  2688. * i_mmap_lock for write to protect against truncate.
  2689. */
  2690. i_mmap_unlock_write(vma->vm_file->f_mapping);
  2691. }
  2692. goto uncharge_out;
  2693. }
  2694. do_set_pte(vma, address, new_page, pte, true, true);
  2695. mem_cgroup_commit_charge(new_page, memcg, false);
  2696. lru_cache_add_active_or_unevictable(new_page, vma);
  2697. pte_unmap_unlock(pte, ptl);
  2698. if (fault_page) {
  2699. unlock_page(fault_page);
  2700. page_cache_release(fault_page);
  2701. } else {
  2702. /*
  2703. * The fault handler has no page to lock, so it holds
  2704. * i_mmap_lock for write to protect against truncate.
  2705. */
  2706. i_mmap_unlock_write(vma->vm_file->f_mapping);
  2707. }
  2708. return ret;
  2709. uncharge_out:
  2710. mem_cgroup_cancel_charge(new_page, memcg);
  2711. page_cache_release(new_page);
  2712. return ret;
  2713. }
  2714. static int do_shared_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  2715. unsigned long address, pmd_t *pmd,
  2716. pgoff_t pgoff, unsigned int flags, pte_t orig_pte)
  2717. {
  2718. struct page *fault_page;
  2719. struct address_space *mapping;
  2720. spinlock_t *ptl;
  2721. pte_t *pte;
  2722. int dirtied = 0;
  2723. int ret, tmp;
  2724. ret = __do_fault(vma, address, pgoff, flags, NULL, &fault_page);
  2725. if (unlikely(ret & (VM_FAULT_ERROR | VM_FAULT_NOPAGE | VM_FAULT_RETRY)))
  2726. return ret;
  2727. /*
  2728. * Check if the backing address space wants to know that the page is
  2729. * about to become writable
  2730. */
  2731. if (vma->vm_ops->page_mkwrite) {
  2732. unlock_page(fault_page);
  2733. tmp = do_page_mkwrite(vma, fault_page, address);
  2734. if (unlikely(!tmp ||
  2735. (tmp & (VM_FAULT_ERROR | VM_FAULT_NOPAGE)))) {
  2736. page_cache_release(fault_page);
  2737. return tmp;
  2738. }
  2739. }
  2740. pte = pte_offset_map_lock(mm, pmd, address, &ptl);
  2741. if (unlikely(!pte_same(*pte, orig_pte))) {
  2742. pte_unmap_unlock(pte, ptl);
  2743. unlock_page(fault_page);
  2744. page_cache_release(fault_page);
  2745. return ret;
  2746. }
  2747. do_set_pte(vma, address, fault_page, pte, true, false);
  2748. pte_unmap_unlock(pte, ptl);
  2749. if (set_page_dirty(fault_page))
  2750. dirtied = 1;
  2751. /*
  2752. * Take a local copy of the address_space - page.mapping may be zeroed
  2753. * by truncate after unlock_page(). The address_space itself remains
  2754. * pinned by vma->vm_file's reference. We rely on unlock_page()'s
  2755. * release semantics to prevent the compiler from undoing this copying.
  2756. */
  2757. mapping = fault_page->mapping;
  2758. unlock_page(fault_page);
  2759. if ((dirtied || vma->vm_ops->page_mkwrite) && mapping) {
  2760. /*
  2761. * Some device drivers do not set page.mapping but still
  2762. * dirty their pages
  2763. */
  2764. balance_dirty_pages_ratelimited(mapping);
  2765. }
  2766. if (!vma->vm_ops->page_mkwrite)
  2767. file_update_time(vma->vm_file);
  2768. return ret;
  2769. }
  2770. /*
  2771. * We enter with non-exclusive mmap_sem (to exclude vma changes,
  2772. * but allow concurrent faults).
  2773. * The mmap_sem may have been released depending on flags and our
  2774. * return value. See filemap_fault() and __lock_page_or_retry().
  2775. */
  2776. static int do_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  2777. unsigned long address, pte_t *page_table, pmd_t *pmd,
  2778. unsigned int flags, pte_t orig_pte)
  2779. {
  2780. pgoff_t pgoff = (((address & PAGE_MASK)
  2781. - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
  2782. pte_unmap(page_table);
  2783. /* The VMA was not fully populated on mmap() or missing VM_DONTEXPAND */
  2784. if (!vma->vm_ops->fault)
  2785. return VM_FAULT_SIGBUS;
  2786. if (!(flags & FAULT_FLAG_WRITE))
  2787. return do_read_fault(mm, vma, address, pmd, pgoff, flags,
  2788. orig_pte);
  2789. if (!(vma->vm_flags & VM_SHARED))
  2790. return do_cow_fault(mm, vma, address, pmd, pgoff, flags,
  2791. orig_pte);
  2792. return do_shared_fault(mm, vma, address, pmd, pgoff, flags, orig_pte);
  2793. }
  2794. static int numa_migrate_prep(struct page *page, struct vm_area_struct *vma,
  2795. unsigned long addr, int page_nid,
  2796. int *flags)
  2797. {
  2798. get_page(page);
  2799. count_vm_numa_event(NUMA_HINT_FAULTS);
  2800. if (page_nid == numa_node_id()) {
  2801. count_vm_numa_event(NUMA_HINT_FAULTS_LOCAL);
  2802. *flags |= TNF_FAULT_LOCAL;
  2803. }
  2804. return mpol_misplaced(page, vma, addr);
  2805. }
  2806. static int do_numa_page(struct mm_struct *mm, struct vm_area_struct *vma,
  2807. unsigned long addr, pte_t pte, pte_t *ptep, pmd_t *pmd)
  2808. {
  2809. struct page *page = NULL;
  2810. spinlock_t *ptl;
  2811. int page_nid = -1;
  2812. int last_cpupid;
  2813. int target_nid;
  2814. bool migrated = false;
  2815. bool was_writable = pte_write(pte);
  2816. int flags = 0;
  2817. /* A PROT_NONE fault should not end up here */
  2818. BUG_ON(!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE)));
  2819. /*
  2820. * The "pte" at this point cannot be used safely without
  2821. * validation through pte_unmap_same(). It's of NUMA type but
  2822. * the pfn may be screwed if the read is non atomic.
  2823. *
  2824. * We can safely just do a "set_pte_at()", because the old
  2825. * page table entry is not accessible, so there would be no
  2826. * concurrent hardware modifications to the PTE.
  2827. */
  2828. ptl = pte_lockptr(mm, pmd);
  2829. spin_lock(ptl);
  2830. if (unlikely(!pte_same(*ptep, pte))) {
  2831. pte_unmap_unlock(ptep, ptl);
  2832. goto out;
  2833. }
  2834. /* Make it present again */
  2835. pte = pte_modify(pte, vma->vm_page_prot);
  2836. pte = pte_mkyoung(pte);
  2837. if (was_writable)
  2838. pte = pte_mkwrite(pte);
  2839. set_pte_at(mm, addr, ptep, pte);
  2840. update_mmu_cache(vma, addr, ptep);
  2841. page = vm_normal_page(vma, addr, pte);
  2842. if (!page) {
  2843. pte_unmap_unlock(ptep, ptl);
  2844. return 0;
  2845. }
  2846. /*
  2847. * Avoid grouping on RO pages in general. RO pages shouldn't hurt as
  2848. * much anyway since they can be in shared cache state. This misses
  2849. * the case where a mapping is writable but the process never writes
  2850. * to it but pte_write gets cleared during protection updates and
  2851. * pte_dirty has unpredictable behaviour between PTE scan updates,
  2852. * background writeback, dirty balancing and application behaviour.
  2853. */
  2854. if (!(vma->vm_flags & VM_WRITE))
  2855. flags |= TNF_NO_GROUP;
  2856. /*
  2857. * Flag if the page is shared between multiple address spaces. This
  2858. * is later used when determining whether to group tasks together
  2859. */
  2860. if (page_mapcount(page) > 1 && (vma->vm_flags & VM_SHARED))
  2861. flags |= TNF_SHARED;
  2862. last_cpupid = page_cpupid_last(page);
  2863. page_nid = page_to_nid(page);
  2864. target_nid = numa_migrate_prep(page, vma, addr, page_nid, &flags);
  2865. pte_unmap_unlock(ptep, ptl);
  2866. if (target_nid == -1) {
  2867. put_page(page);
  2868. goto out;
  2869. }
  2870. /* Migrate to the requested node */
  2871. migrated = migrate_misplaced_page(page, vma, target_nid);
  2872. if (migrated) {
  2873. page_nid = target_nid;
  2874. flags |= TNF_MIGRATED;
  2875. } else
  2876. flags |= TNF_MIGRATE_FAIL;
  2877. out:
  2878. if (page_nid != -1)
  2879. task_numa_fault(last_cpupid, page_nid, 1, flags);
  2880. return 0;
  2881. }
  2882. static int create_huge_pmd(struct mm_struct *mm, struct vm_area_struct *vma,
  2883. unsigned long address, pmd_t *pmd, unsigned int flags)
  2884. {
  2885. if (vma_is_anonymous(vma))
  2886. return do_huge_pmd_anonymous_page(mm, vma, address, pmd, flags);
  2887. if (vma->vm_ops->pmd_fault)
  2888. return vma->vm_ops->pmd_fault(vma, address, pmd, flags);
  2889. return VM_FAULT_FALLBACK;
  2890. }
  2891. static int wp_huge_pmd(struct mm_struct *mm, struct vm_area_struct *vma,
  2892. unsigned long address, pmd_t *pmd, pmd_t orig_pmd,
  2893. unsigned int flags)
  2894. {
  2895. if (vma_is_anonymous(vma))
  2896. return do_huge_pmd_wp_page(mm, vma, address, pmd, orig_pmd);
  2897. if (vma->vm_ops->pmd_fault)
  2898. return vma->vm_ops->pmd_fault(vma, address, pmd, flags);
  2899. return VM_FAULT_FALLBACK;
  2900. }
  2901. /*
  2902. * These routines also need to handle stuff like marking pages dirty
  2903. * and/or accessed for architectures that don't do it in hardware (most
  2904. * RISC architectures). The early dirtying is also good on the i386.
  2905. *
  2906. * There is also a hook called "update_mmu_cache()" that architectures
  2907. * with external mmu caches can use to update those (ie the Sparc or
  2908. * PowerPC hashed page tables that act as extended TLBs).
  2909. *
  2910. * We enter with non-exclusive mmap_sem (to exclude vma changes,
  2911. * but allow concurrent faults), and pte mapped but not yet locked.
  2912. * We return with pte unmapped and unlocked.
  2913. *
  2914. * The mmap_sem may have been released depending on flags and our
  2915. * return value. See filemap_fault() and __lock_page_or_retry().
  2916. */
  2917. static int handle_pte_fault(struct mm_struct *mm,
  2918. struct vm_area_struct *vma, unsigned long address,
  2919. pte_t *pte, pmd_t *pmd, unsigned int flags)
  2920. {
  2921. pte_t entry;
  2922. spinlock_t *ptl;
  2923. /*
  2924. * some architectures can have larger ptes than wordsize,
  2925. * e.g.ppc44x-defconfig has CONFIG_PTE_64BIT=y and CONFIG_32BIT=y,
  2926. * so READ_ONCE or ACCESS_ONCE cannot guarantee atomic accesses.
  2927. * The code below just needs a consistent view for the ifs and
  2928. * we later double check anyway with the ptl lock held. So here
  2929. * a barrier will do.
  2930. */
  2931. entry = *pte;
  2932. barrier();
  2933. if (!pte_present(entry)) {
  2934. if (pte_none(entry)) {
  2935. if (vma_is_anonymous(vma))
  2936. return do_anonymous_page(mm, vma, address,
  2937. pte, pmd, flags);
  2938. else
  2939. return do_fault(mm, vma, address, pte, pmd,
  2940. flags, entry);
  2941. }
  2942. return do_swap_page(mm, vma, address,
  2943. pte, pmd, flags, entry);
  2944. }
  2945. if (pte_protnone(entry))
  2946. return do_numa_page(mm, vma, address, entry, pte, pmd);
  2947. ptl = pte_lockptr(mm, pmd);
  2948. spin_lock(ptl);
  2949. if (unlikely(!pte_same(*pte, entry)))
  2950. goto unlock;
  2951. if (flags & FAULT_FLAG_WRITE) {
  2952. if (!pte_write(entry))
  2953. return do_wp_page(mm, vma, address,
  2954. pte, pmd, ptl, entry);
  2955. entry = pte_mkdirty(entry);
  2956. }
  2957. entry = pte_mkyoung(entry);
  2958. if (ptep_set_access_flags(vma, address, pte, entry, flags & FAULT_FLAG_WRITE)) {
  2959. update_mmu_cache(vma, address, pte);
  2960. } else {
  2961. /*
  2962. * This is needed only for protection faults but the arch code
  2963. * is not yet telling us if this is a protection fault or not.
  2964. * This still avoids useless tlb flushes for .text page faults
  2965. * with threads.
  2966. */
  2967. if (flags & FAULT_FLAG_WRITE)
  2968. flush_tlb_fix_spurious_fault(vma, address);
  2969. }
  2970. unlock:
  2971. pte_unmap_unlock(pte, ptl);
  2972. return 0;
  2973. }
  2974. /*
  2975. * By the time we get here, we already hold the mm semaphore
  2976. *
  2977. * The mmap_sem may have been released depending on flags and our
  2978. * return value. See filemap_fault() and __lock_page_or_retry().
  2979. */
  2980. static int __handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  2981. unsigned long address, unsigned int flags)
  2982. {
  2983. pgd_t *pgd;
  2984. pud_t *pud;
  2985. pmd_t *pmd;
  2986. pte_t *pte;
  2987. if (unlikely(is_vm_hugetlb_page(vma)))
  2988. return hugetlb_fault(mm, vma, address, flags);
  2989. pgd = pgd_offset(mm, address);
  2990. pud = pud_alloc(mm, pgd, address);
  2991. if (!pud)
  2992. return VM_FAULT_OOM;
  2993. pmd = pmd_alloc(mm, pud, address);
  2994. if (!pmd)
  2995. return VM_FAULT_OOM;
  2996. if (pmd_none(*pmd) && transparent_hugepage_enabled(vma)) {
  2997. int ret = create_huge_pmd(mm, vma, address, pmd, flags);
  2998. if (!(ret & VM_FAULT_FALLBACK))
  2999. return ret;
  3000. } else {
  3001. pmd_t orig_pmd = *pmd;
  3002. int ret;
  3003. barrier();
  3004. if (pmd_trans_huge(orig_pmd)) {
  3005. unsigned int dirty = flags & FAULT_FLAG_WRITE;
  3006. /*
  3007. * If the pmd is splitting, return and retry the
  3008. * the fault. Alternative: wait until the split
  3009. * is done, and goto retry.
  3010. */
  3011. if (pmd_trans_splitting(orig_pmd))
  3012. return 0;
  3013. if (pmd_protnone(orig_pmd))
  3014. return do_huge_pmd_numa_page(mm, vma, address,
  3015. orig_pmd, pmd);
  3016. if (dirty && !pmd_write(orig_pmd)) {
  3017. ret = wp_huge_pmd(mm, vma, address, pmd,
  3018. orig_pmd, flags);
  3019. if (!(ret & VM_FAULT_FALLBACK))
  3020. return ret;
  3021. } else {
  3022. huge_pmd_set_accessed(mm, vma, address, pmd,
  3023. orig_pmd, dirty);
  3024. return 0;
  3025. }
  3026. }
  3027. }
  3028. /*
  3029. * Use __pte_alloc instead of pte_alloc_map, because we can't
  3030. * run pte_offset_map on the pmd, if an huge pmd could
  3031. * materialize from under us from a different thread.
  3032. */
  3033. if (unlikely(pmd_none(*pmd)) &&
  3034. unlikely(__pte_alloc(mm, vma, pmd, address)))
  3035. return VM_FAULT_OOM;
  3036. /* if an huge pmd materialized from under us just retry later */
  3037. if (unlikely(pmd_trans_huge(*pmd)))
  3038. return 0;
  3039. /*
  3040. * A regular pmd is established and it can't morph into a huge pmd
  3041. * from under us anymore at this point because we hold the mmap_sem
  3042. * read mode and khugepaged takes it in write mode. So now it's
  3043. * safe to run pte_offset_map().
  3044. */
  3045. pte = pte_offset_map(pmd, address);
  3046. return handle_pte_fault(mm, vma, address, pte, pmd, flags);
  3047. }
  3048. /*
  3049. * By the time we get here, we already hold the mm semaphore
  3050. *
  3051. * The mmap_sem may have been released depending on flags and our
  3052. * return value. See filemap_fault() and __lock_page_or_retry().
  3053. */
  3054. int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  3055. unsigned long address, unsigned int flags)
  3056. {
  3057. int ret;
  3058. __set_current_state(TASK_RUNNING);
  3059. count_vm_event(PGFAULT);
  3060. mem_cgroup_count_vm_event(mm, PGFAULT);
  3061. /* do counter updates before entering really critical section. */
  3062. check_sync_rss_stat(current);
  3063. /*
  3064. * Enable the memcg OOM handling for faults triggered in user
  3065. * space. Kernel faults are handled more gracefully.
  3066. */
  3067. if (flags & FAULT_FLAG_USER)
  3068. mem_cgroup_oom_enable();
  3069. ret = __handle_mm_fault(mm, vma, address, flags);
  3070. if (flags & FAULT_FLAG_USER) {
  3071. mem_cgroup_oom_disable();
  3072. /*
  3073. * The task may have entered a memcg OOM situation but
  3074. * if the allocation error was handled gracefully (no
  3075. * VM_FAULT_OOM), there is no need to kill anything.
  3076. * Just clean up the OOM state peacefully.
  3077. */
  3078. if (task_in_memcg_oom(current) && !(ret & VM_FAULT_OOM))
  3079. mem_cgroup_oom_synchronize(false);
  3080. }
  3081. return ret;
  3082. }
  3083. EXPORT_SYMBOL_GPL(handle_mm_fault);
  3084. #ifndef __PAGETABLE_PUD_FOLDED
  3085. /*
  3086. * Allocate page upper directory.
  3087. * We've already handled the fast-path in-line.
  3088. */
  3089. int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
  3090. {
  3091. pud_t *new = pud_alloc_one(mm, address);
  3092. if (!new)
  3093. return -ENOMEM;
  3094. smp_wmb(); /* See comment in __pte_alloc */
  3095. spin_lock(&mm->page_table_lock);
  3096. if (pgd_present(*pgd)) /* Another has populated it */
  3097. pud_free(mm, new);
  3098. else
  3099. pgd_populate(mm, pgd, new);
  3100. spin_unlock(&mm->page_table_lock);
  3101. return 0;
  3102. }
  3103. #endif /* __PAGETABLE_PUD_FOLDED */
  3104. #ifndef __PAGETABLE_PMD_FOLDED
  3105. /*
  3106. * Allocate page middle directory.
  3107. * We've already handled the fast-path in-line.
  3108. */
  3109. int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address)
  3110. {
  3111. pmd_t *new = pmd_alloc_one(mm, address);
  3112. if (!new)
  3113. return -ENOMEM;
  3114. smp_wmb(); /* See comment in __pte_alloc */
  3115. spin_lock(&mm->page_table_lock);
  3116. #ifndef __ARCH_HAS_4LEVEL_HACK
  3117. if (!pud_present(*pud)) {
  3118. mm_inc_nr_pmds(mm);
  3119. pud_populate(mm, pud, new);
  3120. } else /* Another has populated it */
  3121. pmd_free(mm, new);
  3122. #else
  3123. if (!pgd_present(*pud)) {
  3124. mm_inc_nr_pmds(mm);
  3125. pgd_populate(mm, pud, new);
  3126. } else /* Another has populated it */
  3127. pmd_free(mm, new);
  3128. #endif /* __ARCH_HAS_4LEVEL_HACK */
  3129. spin_unlock(&mm->page_table_lock);
  3130. return 0;
  3131. }
  3132. #endif /* __PAGETABLE_PMD_FOLDED */
  3133. static int __follow_pte(struct mm_struct *mm, unsigned long address,
  3134. pte_t **ptepp, spinlock_t **ptlp)
  3135. {
  3136. pgd_t *pgd;
  3137. pud_t *pud;
  3138. pmd_t *pmd;
  3139. pte_t *ptep;
  3140. pgd = pgd_offset(mm, address);
  3141. if (pgd_none(*pgd) || unlikely(pgd_bad(*pgd)))
  3142. goto out;
  3143. pud = pud_offset(pgd, address);
  3144. if (pud_none(*pud) || unlikely(pud_bad(*pud)))
  3145. goto out;
  3146. pmd = pmd_offset(pud, address);
  3147. VM_BUG_ON(pmd_trans_huge(*pmd));
  3148. if (pmd_none(*pmd) || unlikely(pmd_bad(*pmd)))
  3149. goto out;
  3150. /* We cannot handle huge page PFN maps. Luckily they don't exist. */
  3151. if (pmd_huge(*pmd))
  3152. goto out;
  3153. ptep = pte_offset_map_lock(mm, pmd, address, ptlp);
  3154. if (!ptep)
  3155. goto out;
  3156. if (!pte_present(*ptep))
  3157. goto unlock;
  3158. *ptepp = ptep;
  3159. return 0;
  3160. unlock:
  3161. pte_unmap_unlock(ptep, *ptlp);
  3162. out:
  3163. return -EINVAL;
  3164. }
  3165. static inline int follow_pte(struct mm_struct *mm, unsigned long address,
  3166. pte_t **ptepp, spinlock_t **ptlp)
  3167. {
  3168. int res;
  3169. /* (void) is needed to make gcc happy */
  3170. (void) __cond_lock(*ptlp,
  3171. !(res = __follow_pte(mm, address, ptepp, ptlp)));
  3172. return res;
  3173. }
  3174. /**
  3175. * follow_pfn - look up PFN at a user virtual address
  3176. * @vma: memory mapping
  3177. * @address: user virtual address
  3178. * @pfn: location to store found PFN
  3179. *
  3180. * Only IO mappings and raw PFN mappings are allowed.
  3181. *
  3182. * Returns zero and the pfn at @pfn on success, -ve otherwise.
  3183. */
  3184. int follow_pfn(struct vm_area_struct *vma, unsigned long address,
  3185. unsigned long *pfn)
  3186. {
  3187. int ret = -EINVAL;
  3188. spinlock_t *ptl;
  3189. pte_t *ptep;
  3190. if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
  3191. return ret;
  3192. ret = follow_pte(vma->vm_mm, address, &ptep, &ptl);
  3193. if (ret)
  3194. return ret;
  3195. *pfn = pte_pfn(*ptep);
  3196. pte_unmap_unlock(ptep, ptl);
  3197. return 0;
  3198. }
  3199. EXPORT_SYMBOL(follow_pfn);
  3200. #ifdef CONFIG_HAVE_IOREMAP_PROT
  3201. int follow_phys(struct vm_area_struct *vma,
  3202. unsigned long address, unsigned int flags,
  3203. unsigned long *prot, resource_size_t *phys)
  3204. {
  3205. int ret = -EINVAL;
  3206. pte_t *ptep, pte;
  3207. spinlock_t *ptl;
  3208. if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
  3209. goto out;
  3210. if (follow_pte(vma->vm_mm, address, &ptep, &ptl))
  3211. goto out;
  3212. pte = *ptep;
  3213. if ((flags & FOLL_WRITE) && !pte_write(pte))
  3214. goto unlock;
  3215. *prot = pgprot_val(pte_pgprot(pte));
  3216. *phys = (resource_size_t)pte_pfn(pte) << PAGE_SHIFT;
  3217. ret = 0;
  3218. unlock:
  3219. pte_unmap_unlock(ptep, ptl);
  3220. out:
  3221. return ret;
  3222. }
  3223. int generic_access_phys(struct vm_area_struct *vma, unsigned long addr,
  3224. void *buf, int len, int write)
  3225. {
  3226. resource_size_t phys_addr;
  3227. unsigned long prot = 0;
  3228. void __iomem *maddr;
  3229. int offset = addr & (PAGE_SIZE-1);
  3230. if (follow_phys(vma, addr, write, &prot, &phys_addr))
  3231. return -EINVAL;
  3232. maddr = ioremap_prot(phys_addr, PAGE_ALIGN(len + offset), prot);
  3233. if (write)
  3234. memcpy_toio(maddr + offset, buf, len);
  3235. else
  3236. memcpy_fromio(buf, maddr + offset, len);
  3237. iounmap(maddr);
  3238. return len;
  3239. }
  3240. EXPORT_SYMBOL_GPL(generic_access_phys);
  3241. #endif
  3242. /*
  3243. * Access another process' address space as given in mm. If non-NULL, use the
  3244. * given task for page fault accounting.
  3245. */
  3246. static int __access_remote_vm(struct task_struct *tsk, struct mm_struct *mm,
  3247. unsigned long addr, void *buf, int len, int write)
  3248. {
  3249. struct vm_area_struct *vma;
  3250. void *old_buf = buf;
  3251. down_read(&mm->mmap_sem);
  3252. /* ignore errors, just check how much was successfully transferred */
  3253. while (len) {
  3254. int bytes, ret, offset;
  3255. void *maddr;
  3256. struct page *page = NULL;
  3257. ret = get_user_pages(tsk, mm, addr, 1,
  3258. write, 1, &page, &vma);
  3259. if (ret <= 0) {
  3260. #ifndef CONFIG_HAVE_IOREMAP_PROT
  3261. break;
  3262. #else
  3263. /*
  3264. * Check if this is a VM_IO | VM_PFNMAP VMA, which
  3265. * we can access using slightly different code.
  3266. */
  3267. vma = find_vma(mm, addr);
  3268. if (!vma || vma->vm_start > addr)
  3269. break;
  3270. if (vma->vm_ops && vma->vm_ops->access)
  3271. ret = vma->vm_ops->access(vma, addr, buf,
  3272. len, write);
  3273. if (ret <= 0)
  3274. break;
  3275. bytes = ret;
  3276. #endif
  3277. } else {
  3278. bytes = len;
  3279. offset = addr & (PAGE_SIZE-1);
  3280. if (bytes > PAGE_SIZE-offset)
  3281. bytes = PAGE_SIZE-offset;
  3282. maddr = kmap(page);
  3283. if (write) {
  3284. copy_to_user_page(vma, page, addr,
  3285. maddr + offset, buf, bytes);
  3286. set_page_dirty_lock(page);
  3287. } else {
  3288. copy_from_user_page(vma, page, addr,
  3289. buf, maddr + offset, bytes);
  3290. }
  3291. kunmap(page);
  3292. page_cache_release(page);
  3293. }
  3294. len -= bytes;
  3295. buf += bytes;
  3296. addr += bytes;
  3297. }
  3298. up_read(&mm->mmap_sem);
  3299. return buf - old_buf;
  3300. }
  3301. /**
  3302. * access_remote_vm - access another process' address space
  3303. * @mm: the mm_struct of the target address space
  3304. * @addr: start address to access
  3305. * @buf: source or destination buffer
  3306. * @len: number of bytes to transfer
  3307. * @write: whether the access is a write
  3308. *
  3309. * The caller must hold a reference on @mm.
  3310. */
  3311. int access_remote_vm(struct mm_struct *mm, unsigned long addr,
  3312. void *buf, int len, int write)
  3313. {
  3314. return __access_remote_vm(NULL, mm, addr, buf, len, write);
  3315. }
  3316. /*
  3317. * Access another process' address space.
  3318. * Source/target buffer must be kernel space,
  3319. * Do not walk the page table directly, use get_user_pages
  3320. */
  3321. int access_process_vm(struct task_struct *tsk, unsigned long addr,
  3322. void *buf, int len, int write)
  3323. {
  3324. struct mm_struct *mm;
  3325. int ret;
  3326. mm = get_task_mm(tsk);
  3327. if (!mm)
  3328. return 0;
  3329. ret = __access_remote_vm(tsk, mm, addr, buf, len, write);
  3330. mmput(mm);
  3331. return ret;
  3332. }
  3333. /*
  3334. * Print the name of a VMA.
  3335. */
  3336. void print_vma_addr(char *prefix, unsigned long ip)
  3337. {
  3338. struct mm_struct *mm = current->mm;
  3339. struct vm_area_struct *vma;
  3340. /*
  3341. * Do not print if we are in atomic
  3342. * contexts (in exception stacks, etc.):
  3343. */
  3344. if (preempt_count())
  3345. return;
  3346. down_read(&mm->mmap_sem);
  3347. vma = find_vma(mm, ip);
  3348. if (vma && vma->vm_file) {
  3349. struct file *f = vma->vm_file;
  3350. char *buf = (char *)__get_free_page(GFP_KERNEL);
  3351. if (buf) {
  3352. char *p;
  3353. p = file_path(f, buf, PAGE_SIZE);
  3354. if (IS_ERR(p))
  3355. p = "?";
  3356. printk("%s%s[%lx+%lx]", prefix, kbasename(p),
  3357. vma->vm_start,
  3358. vma->vm_end - vma->vm_start);
  3359. free_page((unsigned long)buf);
  3360. }
  3361. }
  3362. up_read(&mm->mmap_sem);
  3363. }
  3364. #if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_DEBUG_ATOMIC_SLEEP)
  3365. void __might_fault(const char *file, int line)
  3366. {
  3367. /*
  3368. * Some code (nfs/sunrpc) uses socket ops on kernel memory while
  3369. * holding the mmap_sem, this is safe because kernel memory doesn't
  3370. * get paged out, therefore we'll never actually fault, and the
  3371. * below annotations will generate false positives.
  3372. */
  3373. if (segment_eq(get_fs(), KERNEL_DS))
  3374. return;
  3375. if (pagefault_disabled())
  3376. return;
  3377. __might_sleep(file, line, 0);
  3378. #if defined(CONFIG_DEBUG_ATOMIC_SLEEP)
  3379. if (current->mm)
  3380. might_lock_read(&current->mm->mmap_sem);
  3381. #endif
  3382. }
  3383. EXPORT_SYMBOL(__might_fault);
  3384. #endif
  3385. #if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_HUGETLBFS)
  3386. static void clear_gigantic_page(struct page *page,
  3387. unsigned long addr,
  3388. unsigned int pages_per_huge_page)
  3389. {
  3390. int i;
  3391. struct page *p = page;
  3392. might_sleep();
  3393. for (i = 0; i < pages_per_huge_page;
  3394. i++, p = mem_map_next(p, page, i)) {
  3395. cond_resched();
  3396. clear_user_highpage(p, addr + i * PAGE_SIZE);
  3397. }
  3398. }
  3399. void clear_huge_page(struct page *page,
  3400. unsigned long addr, unsigned int pages_per_huge_page)
  3401. {
  3402. int i;
  3403. if (unlikely(pages_per_huge_page > MAX_ORDER_NR_PAGES)) {
  3404. clear_gigantic_page(page, addr, pages_per_huge_page);
  3405. return;
  3406. }
  3407. might_sleep();
  3408. for (i = 0; i < pages_per_huge_page; i++) {
  3409. cond_resched();
  3410. clear_user_highpage(page + i, addr + i * PAGE_SIZE);
  3411. }
  3412. }
  3413. static void copy_user_gigantic_page(struct page *dst, struct page *src,
  3414. unsigned long addr,
  3415. struct vm_area_struct *vma,
  3416. unsigned int pages_per_huge_page)
  3417. {
  3418. int i;
  3419. struct page *dst_base = dst;
  3420. struct page *src_base = src;
  3421. for (i = 0; i < pages_per_huge_page; ) {
  3422. cond_resched();
  3423. copy_user_highpage(dst, src, addr + i*PAGE_SIZE, vma);
  3424. i++;
  3425. dst = mem_map_next(dst, dst_base, i);
  3426. src = mem_map_next(src, src_base, i);
  3427. }
  3428. }
  3429. void copy_user_huge_page(struct page *dst, struct page *src,
  3430. unsigned long addr, struct vm_area_struct *vma,
  3431. unsigned int pages_per_huge_page)
  3432. {
  3433. int i;
  3434. if (unlikely(pages_per_huge_page > MAX_ORDER_NR_PAGES)) {
  3435. copy_user_gigantic_page(dst, src, addr, vma,
  3436. pages_per_huge_page);
  3437. return;
  3438. }
  3439. might_sleep();
  3440. for (i = 0; i < pages_per_huge_page; i++) {
  3441. cond_resched();
  3442. copy_user_highpage(dst + i, src + i, addr + i*PAGE_SIZE, vma);
  3443. }
  3444. }
  3445. #endif /* CONFIG_TRANSPARENT_HUGEPAGE || CONFIG_HUGETLBFS */
  3446. #if USE_SPLIT_PTE_PTLOCKS && ALLOC_SPLIT_PTLOCKS
  3447. static struct kmem_cache *page_ptl_cachep;
  3448. void __init ptlock_cache_init(void)
  3449. {
  3450. page_ptl_cachep = kmem_cache_create("page->ptl", sizeof(spinlock_t), 0,
  3451. SLAB_PANIC, NULL);
  3452. }
  3453. bool ptlock_alloc(struct page *page)
  3454. {
  3455. spinlock_t *ptl;
  3456. ptl = kmem_cache_alloc(page_ptl_cachep, GFP_KERNEL);
  3457. if (!ptl)
  3458. return false;
  3459. page->ptl = ptl;
  3460. return true;
  3461. }
  3462. void ptlock_free(struct page *page)
  3463. {
  3464. kmem_cache_free(page_ptl_cachep, page->ptl);
  3465. }
  3466. #endif