memory.c 108 KB

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