mmu.c 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362
  1. /*
  2. * Kernel-based Virtual Machine driver for Linux
  3. *
  4. * This module enables machines with Intel VT-x extensions to run virtual
  5. * machines without emulation or binary translation.
  6. *
  7. * MMU support
  8. *
  9. * Copyright (C) 2006 Qumranet, Inc.
  10. * Copyright 2010 Red Hat, Inc. and/or its affiliates.
  11. *
  12. * Authors:
  13. * Yaniv Kamay <yaniv@qumranet.com>
  14. * Avi Kivity <avi@qumranet.com>
  15. *
  16. * This work is licensed under the terms of the GNU GPL, version 2. See
  17. * the COPYING file in the top-level directory.
  18. *
  19. */
  20. #include "irq.h"
  21. #include "mmu.h"
  22. #include "x86.h"
  23. #include "kvm_cache_regs.h"
  24. #include <linux/kvm_host.h>
  25. #include <linux/types.h>
  26. #include <linux/string.h>
  27. #include <linux/mm.h>
  28. #include <linux/highmem.h>
  29. #include <linux/module.h>
  30. #include <linux/swap.h>
  31. #include <linux/hugetlb.h>
  32. #include <linux/compiler.h>
  33. #include <linux/srcu.h>
  34. #include <linux/slab.h>
  35. #include <linux/uaccess.h>
  36. #include <asm/page.h>
  37. #include <asm/cmpxchg.h>
  38. #include <asm/io.h>
  39. #include <asm/vmx.h>
  40. /*
  41. * When setting this variable to true it enables Two-Dimensional-Paging
  42. * where the hardware walks 2 page tables:
  43. * 1. the guest-virtual to guest-physical
  44. * 2. while doing 1. it walks guest-physical to host-physical
  45. * If the hardware supports that we don't need to do shadow paging.
  46. */
  47. bool tdp_enabled = false;
  48. enum {
  49. AUDIT_PRE_PAGE_FAULT,
  50. AUDIT_POST_PAGE_FAULT,
  51. AUDIT_PRE_PTE_WRITE,
  52. AUDIT_POST_PTE_WRITE,
  53. AUDIT_PRE_SYNC,
  54. AUDIT_POST_SYNC
  55. };
  56. #undef MMU_DEBUG
  57. #ifdef MMU_DEBUG
  58. #define pgprintk(x...) do { if (dbg) printk(x); } while (0)
  59. #define rmap_printk(x...) do { if (dbg) printk(x); } while (0)
  60. #else
  61. #define pgprintk(x...) do { } while (0)
  62. #define rmap_printk(x...) do { } while (0)
  63. #endif
  64. #ifdef MMU_DEBUG
  65. static bool dbg = 0;
  66. module_param(dbg, bool, 0644);
  67. #endif
  68. #ifndef MMU_DEBUG
  69. #define ASSERT(x) do { } while (0)
  70. #else
  71. #define ASSERT(x) \
  72. if (!(x)) { \
  73. printk(KERN_WARNING "assertion failed %s:%d: %s\n", \
  74. __FILE__, __LINE__, #x); \
  75. }
  76. #endif
  77. #define PTE_PREFETCH_NUM 8
  78. #define PT_FIRST_AVAIL_BITS_SHIFT 10
  79. #define PT64_SECOND_AVAIL_BITS_SHIFT 52
  80. #define PT64_LEVEL_BITS 9
  81. #define PT64_LEVEL_SHIFT(level) \
  82. (PAGE_SHIFT + (level - 1) * PT64_LEVEL_BITS)
  83. #define PT64_INDEX(address, level)\
  84. (((address) >> PT64_LEVEL_SHIFT(level)) & ((1 << PT64_LEVEL_BITS) - 1))
  85. #define PT32_LEVEL_BITS 10
  86. #define PT32_LEVEL_SHIFT(level) \
  87. (PAGE_SHIFT + (level - 1) * PT32_LEVEL_BITS)
  88. #define PT32_LVL_OFFSET_MASK(level) \
  89. (PT32_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
  90. * PT32_LEVEL_BITS))) - 1))
  91. #define PT32_INDEX(address, level)\
  92. (((address) >> PT32_LEVEL_SHIFT(level)) & ((1 << PT32_LEVEL_BITS) - 1))
  93. #define PT64_BASE_ADDR_MASK (((1ULL << 52) - 1) & ~(u64)(PAGE_SIZE-1))
  94. #define PT64_DIR_BASE_ADDR_MASK \
  95. (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + PT64_LEVEL_BITS)) - 1))
  96. #define PT64_LVL_ADDR_MASK(level) \
  97. (PT64_BASE_ADDR_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
  98. * PT64_LEVEL_BITS))) - 1))
  99. #define PT64_LVL_OFFSET_MASK(level) \
  100. (PT64_BASE_ADDR_MASK & ((1ULL << (PAGE_SHIFT + (((level) - 1) \
  101. * PT64_LEVEL_BITS))) - 1))
  102. #define PT32_BASE_ADDR_MASK PAGE_MASK
  103. #define PT32_DIR_BASE_ADDR_MASK \
  104. (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + PT32_LEVEL_BITS)) - 1))
  105. #define PT32_LVL_ADDR_MASK(level) \
  106. (PAGE_MASK & ~((1ULL << (PAGE_SHIFT + (((level) - 1) \
  107. * PT32_LEVEL_BITS))) - 1))
  108. #define PT64_PERM_MASK (PT_PRESENT_MASK | PT_WRITABLE_MASK | PT_USER_MASK \
  109. | PT64_NX_MASK)
  110. #define ACC_EXEC_MASK 1
  111. #define ACC_WRITE_MASK PT_WRITABLE_MASK
  112. #define ACC_USER_MASK PT_USER_MASK
  113. #define ACC_ALL (ACC_EXEC_MASK | ACC_WRITE_MASK | ACC_USER_MASK)
  114. #include <trace/events/kvm.h>
  115. #define CREATE_TRACE_POINTS
  116. #include "mmutrace.h"
  117. #define SPTE_HOST_WRITEABLE (1ULL << PT_FIRST_AVAIL_BITS_SHIFT)
  118. #define SPTE_MMU_WRITEABLE (1ULL << (PT_FIRST_AVAIL_BITS_SHIFT + 1))
  119. #define SHADOW_PT_INDEX(addr, level) PT64_INDEX(addr, level)
  120. /* make pte_list_desc fit well in cache line */
  121. #define PTE_LIST_EXT 3
  122. struct pte_list_desc {
  123. u64 *sptes[PTE_LIST_EXT];
  124. struct pte_list_desc *more;
  125. };
  126. struct kvm_shadow_walk_iterator {
  127. u64 addr;
  128. hpa_t shadow_addr;
  129. u64 *sptep;
  130. int level;
  131. unsigned index;
  132. };
  133. #define for_each_shadow_entry(_vcpu, _addr, _walker) \
  134. for (shadow_walk_init(&(_walker), _vcpu, _addr); \
  135. shadow_walk_okay(&(_walker)); \
  136. shadow_walk_next(&(_walker)))
  137. #define for_each_shadow_entry_lockless(_vcpu, _addr, _walker, spte) \
  138. for (shadow_walk_init(&(_walker), _vcpu, _addr); \
  139. shadow_walk_okay(&(_walker)) && \
  140. ({ spte = mmu_spte_get_lockless(_walker.sptep); 1; }); \
  141. __shadow_walk_next(&(_walker), spte))
  142. static struct kmem_cache *pte_list_desc_cache;
  143. static struct kmem_cache *mmu_page_header_cache;
  144. static struct percpu_counter kvm_total_used_mmu_pages;
  145. static u64 __read_mostly shadow_nx_mask;
  146. static u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
  147. static u64 __read_mostly shadow_user_mask;
  148. static u64 __read_mostly shadow_accessed_mask;
  149. static u64 __read_mostly shadow_dirty_mask;
  150. static u64 __read_mostly shadow_mmio_mask;
  151. static void mmu_spte_set(u64 *sptep, u64 spte);
  152. static void mmu_free_roots(struct kvm_vcpu *vcpu);
  153. void kvm_mmu_set_mmio_spte_mask(u64 mmio_mask)
  154. {
  155. shadow_mmio_mask = mmio_mask;
  156. }
  157. EXPORT_SYMBOL_GPL(kvm_mmu_set_mmio_spte_mask);
  158. static void mark_mmio_spte(u64 *sptep, u64 gfn, unsigned access)
  159. {
  160. access &= ACC_WRITE_MASK | ACC_USER_MASK;
  161. trace_mark_mmio_spte(sptep, gfn, access);
  162. mmu_spte_set(sptep, shadow_mmio_mask | access | gfn << PAGE_SHIFT);
  163. }
  164. static bool is_mmio_spte(u64 spte)
  165. {
  166. return (spte & shadow_mmio_mask) == shadow_mmio_mask;
  167. }
  168. static gfn_t get_mmio_spte_gfn(u64 spte)
  169. {
  170. return (spte & ~shadow_mmio_mask) >> PAGE_SHIFT;
  171. }
  172. static unsigned get_mmio_spte_access(u64 spte)
  173. {
  174. return (spte & ~shadow_mmio_mask) & ~PAGE_MASK;
  175. }
  176. static bool set_mmio_spte(u64 *sptep, gfn_t gfn, pfn_t pfn, unsigned access)
  177. {
  178. if (unlikely(is_noslot_pfn(pfn))) {
  179. mark_mmio_spte(sptep, gfn, access);
  180. return true;
  181. }
  182. return false;
  183. }
  184. static inline u64 rsvd_bits(int s, int e)
  185. {
  186. return ((1ULL << (e - s + 1)) - 1) << s;
  187. }
  188. void kvm_mmu_set_mask_ptes(u64 user_mask, u64 accessed_mask,
  189. u64 dirty_mask, u64 nx_mask, u64 x_mask)
  190. {
  191. shadow_user_mask = user_mask;
  192. shadow_accessed_mask = accessed_mask;
  193. shadow_dirty_mask = dirty_mask;
  194. shadow_nx_mask = nx_mask;
  195. shadow_x_mask = x_mask;
  196. }
  197. EXPORT_SYMBOL_GPL(kvm_mmu_set_mask_ptes);
  198. static int is_cpuid_PSE36(void)
  199. {
  200. return 1;
  201. }
  202. static int is_nx(struct kvm_vcpu *vcpu)
  203. {
  204. return vcpu->arch.efer & EFER_NX;
  205. }
  206. static int is_shadow_present_pte(u64 pte)
  207. {
  208. return pte & PT_PRESENT_MASK && !is_mmio_spte(pte);
  209. }
  210. static int is_large_pte(u64 pte)
  211. {
  212. return pte & PT_PAGE_SIZE_MASK;
  213. }
  214. static int is_dirty_gpte(unsigned long pte)
  215. {
  216. return pte & PT_DIRTY_MASK;
  217. }
  218. static int is_rmap_spte(u64 pte)
  219. {
  220. return is_shadow_present_pte(pte);
  221. }
  222. static int is_last_spte(u64 pte, int level)
  223. {
  224. if (level == PT_PAGE_TABLE_LEVEL)
  225. return 1;
  226. if (is_large_pte(pte))
  227. return 1;
  228. return 0;
  229. }
  230. static pfn_t spte_to_pfn(u64 pte)
  231. {
  232. return (pte & PT64_BASE_ADDR_MASK) >> PAGE_SHIFT;
  233. }
  234. static gfn_t pse36_gfn_delta(u32 gpte)
  235. {
  236. int shift = 32 - PT32_DIR_PSE36_SHIFT - PAGE_SHIFT;
  237. return (gpte & PT32_DIR_PSE36_MASK) << shift;
  238. }
  239. #ifdef CONFIG_X86_64
  240. static void __set_spte(u64 *sptep, u64 spte)
  241. {
  242. *sptep = spte;
  243. }
  244. static void __update_clear_spte_fast(u64 *sptep, u64 spte)
  245. {
  246. *sptep = spte;
  247. }
  248. static u64 __update_clear_spte_slow(u64 *sptep, u64 spte)
  249. {
  250. return xchg(sptep, spte);
  251. }
  252. static u64 __get_spte_lockless(u64 *sptep)
  253. {
  254. return ACCESS_ONCE(*sptep);
  255. }
  256. static bool __check_direct_spte_mmio_pf(u64 spte)
  257. {
  258. /* It is valid if the spte is zapped. */
  259. return spte == 0ull;
  260. }
  261. #else
  262. union split_spte {
  263. struct {
  264. u32 spte_low;
  265. u32 spte_high;
  266. };
  267. u64 spte;
  268. };
  269. static void count_spte_clear(u64 *sptep, u64 spte)
  270. {
  271. struct kvm_mmu_page *sp = page_header(__pa(sptep));
  272. if (is_shadow_present_pte(spte))
  273. return;
  274. /* Ensure the spte is completely set before we increase the count */
  275. smp_wmb();
  276. sp->clear_spte_count++;
  277. }
  278. static void __set_spte(u64 *sptep, u64 spte)
  279. {
  280. union split_spte *ssptep, sspte;
  281. ssptep = (union split_spte *)sptep;
  282. sspte = (union split_spte)spte;
  283. ssptep->spte_high = sspte.spte_high;
  284. /*
  285. * If we map the spte from nonpresent to present, We should store
  286. * the high bits firstly, then set present bit, so cpu can not
  287. * fetch this spte while we are setting the spte.
  288. */
  289. smp_wmb();
  290. ssptep->spte_low = sspte.spte_low;
  291. }
  292. static void __update_clear_spte_fast(u64 *sptep, u64 spte)
  293. {
  294. union split_spte *ssptep, sspte;
  295. ssptep = (union split_spte *)sptep;
  296. sspte = (union split_spte)spte;
  297. ssptep->spte_low = sspte.spte_low;
  298. /*
  299. * If we map the spte from present to nonpresent, we should clear
  300. * present bit firstly to avoid vcpu fetch the old high bits.
  301. */
  302. smp_wmb();
  303. ssptep->spte_high = sspte.spte_high;
  304. count_spte_clear(sptep, spte);
  305. }
  306. static u64 __update_clear_spte_slow(u64 *sptep, u64 spte)
  307. {
  308. union split_spte *ssptep, sspte, orig;
  309. ssptep = (union split_spte *)sptep;
  310. sspte = (union split_spte)spte;
  311. /* xchg acts as a barrier before the setting of the high bits */
  312. orig.spte_low = xchg(&ssptep->spte_low, sspte.spte_low);
  313. orig.spte_high = ssptep->spte_high;
  314. ssptep->spte_high = sspte.spte_high;
  315. count_spte_clear(sptep, spte);
  316. return orig.spte;
  317. }
  318. /*
  319. * The idea using the light way get the spte on x86_32 guest is from
  320. * gup_get_pte(arch/x86/mm/gup.c).
  321. * The difference is we can not catch the spte tlb flush if we leave
  322. * guest mode, so we emulate it by increase clear_spte_count when spte
  323. * is cleared.
  324. */
  325. static u64 __get_spte_lockless(u64 *sptep)
  326. {
  327. struct kvm_mmu_page *sp = page_header(__pa(sptep));
  328. union split_spte spte, *orig = (union split_spte *)sptep;
  329. int count;
  330. retry:
  331. count = sp->clear_spte_count;
  332. smp_rmb();
  333. spte.spte_low = orig->spte_low;
  334. smp_rmb();
  335. spte.spte_high = orig->spte_high;
  336. smp_rmb();
  337. if (unlikely(spte.spte_low != orig->spte_low ||
  338. count != sp->clear_spte_count))
  339. goto retry;
  340. return spte.spte;
  341. }
  342. static bool __check_direct_spte_mmio_pf(u64 spte)
  343. {
  344. union split_spte sspte = (union split_spte)spte;
  345. u32 high_mmio_mask = shadow_mmio_mask >> 32;
  346. /* It is valid if the spte is zapped. */
  347. if (spte == 0ull)
  348. return true;
  349. /* It is valid if the spte is being zapped. */
  350. if (sspte.spte_low == 0ull &&
  351. (sspte.spte_high & high_mmio_mask) == high_mmio_mask)
  352. return true;
  353. return false;
  354. }
  355. #endif
  356. static bool spte_is_locklessly_modifiable(u64 spte)
  357. {
  358. return !(~spte & (SPTE_HOST_WRITEABLE | SPTE_MMU_WRITEABLE));
  359. }
  360. static bool spte_has_volatile_bits(u64 spte)
  361. {
  362. /*
  363. * Always atomicly update spte if it can be updated
  364. * out of mmu-lock, it can ensure dirty bit is not lost,
  365. * also, it can help us to get a stable is_writable_pte()
  366. * to ensure tlb flush is not missed.
  367. */
  368. if (spte_is_locklessly_modifiable(spte))
  369. return true;
  370. if (!shadow_accessed_mask)
  371. return false;
  372. if (!is_shadow_present_pte(spte))
  373. return false;
  374. if ((spte & shadow_accessed_mask) &&
  375. (!is_writable_pte(spte) || (spte & shadow_dirty_mask)))
  376. return false;
  377. return true;
  378. }
  379. static bool spte_is_bit_cleared(u64 old_spte, u64 new_spte, u64 bit_mask)
  380. {
  381. return (old_spte & bit_mask) && !(new_spte & bit_mask);
  382. }
  383. /* Rules for using mmu_spte_set:
  384. * Set the sptep from nonpresent to present.
  385. * Note: the sptep being assigned *must* be either not present
  386. * or in a state where the hardware will not attempt to update
  387. * the spte.
  388. */
  389. static void mmu_spte_set(u64 *sptep, u64 new_spte)
  390. {
  391. WARN_ON(is_shadow_present_pte(*sptep));
  392. __set_spte(sptep, new_spte);
  393. }
  394. /* Rules for using mmu_spte_update:
  395. * Update the state bits, it means the mapped pfn is not changged.
  396. *
  397. * Whenever we overwrite a writable spte with a read-only one we
  398. * should flush remote TLBs. Otherwise rmap_write_protect
  399. * will find a read-only spte, even though the writable spte
  400. * might be cached on a CPU's TLB, the return value indicates this
  401. * case.
  402. */
  403. static bool mmu_spte_update(u64 *sptep, u64 new_spte)
  404. {
  405. u64 old_spte = *sptep;
  406. bool ret = false;
  407. WARN_ON(!is_rmap_spte(new_spte));
  408. if (!is_shadow_present_pte(old_spte)) {
  409. mmu_spte_set(sptep, new_spte);
  410. return ret;
  411. }
  412. if (!spte_has_volatile_bits(old_spte))
  413. __update_clear_spte_fast(sptep, new_spte);
  414. else
  415. old_spte = __update_clear_spte_slow(sptep, new_spte);
  416. /*
  417. * For the spte updated out of mmu-lock is safe, since
  418. * we always atomicly update it, see the comments in
  419. * spte_has_volatile_bits().
  420. */
  421. if (is_writable_pte(old_spte) && !is_writable_pte(new_spte))
  422. ret = true;
  423. if (!shadow_accessed_mask)
  424. return ret;
  425. if (spte_is_bit_cleared(old_spte, new_spte, shadow_accessed_mask))
  426. kvm_set_pfn_accessed(spte_to_pfn(old_spte));
  427. if (spte_is_bit_cleared(old_spte, new_spte, shadow_dirty_mask))
  428. kvm_set_pfn_dirty(spte_to_pfn(old_spte));
  429. return ret;
  430. }
  431. /*
  432. * Rules for using mmu_spte_clear_track_bits:
  433. * It sets the sptep from present to nonpresent, and track the
  434. * state bits, it is used to clear the last level sptep.
  435. */
  436. static int mmu_spte_clear_track_bits(u64 *sptep)
  437. {
  438. pfn_t pfn;
  439. u64 old_spte = *sptep;
  440. if (!spte_has_volatile_bits(old_spte))
  441. __update_clear_spte_fast(sptep, 0ull);
  442. else
  443. old_spte = __update_clear_spte_slow(sptep, 0ull);
  444. if (!is_rmap_spte(old_spte))
  445. return 0;
  446. pfn = spte_to_pfn(old_spte);
  447. /*
  448. * KVM does not hold the refcount of the page used by
  449. * kvm mmu, before reclaiming the page, we should
  450. * unmap it from mmu first.
  451. */
  452. WARN_ON(!kvm_is_mmio_pfn(pfn) && !page_count(pfn_to_page(pfn)));
  453. if (!shadow_accessed_mask || old_spte & shadow_accessed_mask)
  454. kvm_set_pfn_accessed(pfn);
  455. if (!shadow_dirty_mask || (old_spte & shadow_dirty_mask))
  456. kvm_set_pfn_dirty(pfn);
  457. return 1;
  458. }
  459. /*
  460. * Rules for using mmu_spte_clear_no_track:
  461. * Directly clear spte without caring the state bits of sptep,
  462. * it is used to set the upper level spte.
  463. */
  464. static void mmu_spte_clear_no_track(u64 *sptep)
  465. {
  466. __update_clear_spte_fast(sptep, 0ull);
  467. }
  468. static u64 mmu_spte_get_lockless(u64 *sptep)
  469. {
  470. return __get_spte_lockless(sptep);
  471. }
  472. static void walk_shadow_page_lockless_begin(struct kvm_vcpu *vcpu)
  473. {
  474. /*
  475. * Prevent page table teardown by making any free-er wait during
  476. * kvm_flush_remote_tlbs() IPI to all active vcpus.
  477. */
  478. local_irq_disable();
  479. vcpu->mode = READING_SHADOW_PAGE_TABLES;
  480. /*
  481. * Make sure a following spte read is not reordered ahead of the write
  482. * to vcpu->mode.
  483. */
  484. smp_mb();
  485. }
  486. static void walk_shadow_page_lockless_end(struct kvm_vcpu *vcpu)
  487. {
  488. /*
  489. * Make sure the write to vcpu->mode is not reordered in front of
  490. * reads to sptes. If it does, kvm_commit_zap_page() can see us
  491. * OUTSIDE_GUEST_MODE and proceed to free the shadow page table.
  492. */
  493. smp_mb();
  494. vcpu->mode = OUTSIDE_GUEST_MODE;
  495. local_irq_enable();
  496. }
  497. static int mmu_topup_memory_cache(struct kvm_mmu_memory_cache *cache,
  498. struct kmem_cache *base_cache, int min)
  499. {
  500. void *obj;
  501. if (cache->nobjs >= min)
  502. return 0;
  503. while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
  504. obj = kmem_cache_zalloc(base_cache, GFP_KERNEL);
  505. if (!obj)
  506. return -ENOMEM;
  507. cache->objects[cache->nobjs++] = obj;
  508. }
  509. return 0;
  510. }
  511. static int mmu_memory_cache_free_objects(struct kvm_mmu_memory_cache *cache)
  512. {
  513. return cache->nobjs;
  514. }
  515. static void mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc,
  516. struct kmem_cache *cache)
  517. {
  518. while (mc->nobjs)
  519. kmem_cache_free(cache, mc->objects[--mc->nobjs]);
  520. }
  521. static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
  522. int min)
  523. {
  524. void *page;
  525. if (cache->nobjs >= min)
  526. return 0;
  527. while (cache->nobjs < ARRAY_SIZE(cache->objects)) {
  528. page = (void *)__get_free_page(GFP_KERNEL);
  529. if (!page)
  530. return -ENOMEM;
  531. cache->objects[cache->nobjs++] = page;
  532. }
  533. return 0;
  534. }
  535. static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
  536. {
  537. while (mc->nobjs)
  538. free_page((unsigned long)mc->objects[--mc->nobjs]);
  539. }
  540. static int mmu_topup_memory_caches(struct kvm_vcpu *vcpu)
  541. {
  542. int r;
  543. r = mmu_topup_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
  544. pte_list_desc_cache, 8 + PTE_PREFETCH_NUM);
  545. if (r)
  546. goto out;
  547. r = mmu_topup_memory_cache_page(&vcpu->arch.mmu_page_cache, 8);
  548. if (r)
  549. goto out;
  550. r = mmu_topup_memory_cache(&vcpu->arch.mmu_page_header_cache,
  551. mmu_page_header_cache, 4);
  552. out:
  553. return r;
  554. }
  555. static void mmu_free_memory_caches(struct kvm_vcpu *vcpu)
  556. {
  557. mmu_free_memory_cache(&vcpu->arch.mmu_pte_list_desc_cache,
  558. pte_list_desc_cache);
  559. mmu_free_memory_cache_page(&vcpu->arch.mmu_page_cache);
  560. mmu_free_memory_cache(&vcpu->arch.mmu_page_header_cache,
  561. mmu_page_header_cache);
  562. }
  563. static void *mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc)
  564. {
  565. void *p;
  566. BUG_ON(!mc->nobjs);
  567. p = mc->objects[--mc->nobjs];
  568. return p;
  569. }
  570. static struct pte_list_desc *mmu_alloc_pte_list_desc(struct kvm_vcpu *vcpu)
  571. {
  572. return mmu_memory_cache_alloc(&vcpu->arch.mmu_pte_list_desc_cache);
  573. }
  574. static void mmu_free_pte_list_desc(struct pte_list_desc *pte_list_desc)
  575. {
  576. kmem_cache_free(pte_list_desc_cache, pte_list_desc);
  577. }
  578. static gfn_t kvm_mmu_page_get_gfn(struct kvm_mmu_page *sp, int index)
  579. {
  580. if (!sp->role.direct)
  581. return sp->gfns[index];
  582. return sp->gfn + (index << ((sp->role.level - 1) * PT64_LEVEL_BITS));
  583. }
  584. static void kvm_mmu_page_set_gfn(struct kvm_mmu_page *sp, int index, gfn_t gfn)
  585. {
  586. if (sp->role.direct)
  587. BUG_ON(gfn != kvm_mmu_page_get_gfn(sp, index));
  588. else
  589. sp->gfns[index] = gfn;
  590. }
  591. /*
  592. * Return the pointer to the large page information for a given gfn,
  593. * handling slots that are not large page aligned.
  594. */
  595. static struct kvm_lpage_info *lpage_info_slot(gfn_t gfn,
  596. struct kvm_memory_slot *slot,
  597. int level)
  598. {
  599. unsigned long idx;
  600. idx = gfn_to_index(gfn, slot->base_gfn, level);
  601. return &slot->arch.lpage_info[level - 2][idx];
  602. }
  603. static void account_shadowed(struct kvm *kvm, gfn_t gfn)
  604. {
  605. struct kvm_memory_slot *slot;
  606. struct kvm_lpage_info *linfo;
  607. int i;
  608. slot = gfn_to_memslot(kvm, gfn);
  609. for (i = PT_DIRECTORY_LEVEL;
  610. i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
  611. linfo = lpage_info_slot(gfn, slot, i);
  612. linfo->write_count += 1;
  613. }
  614. kvm->arch.indirect_shadow_pages++;
  615. }
  616. static void unaccount_shadowed(struct kvm *kvm, gfn_t gfn)
  617. {
  618. struct kvm_memory_slot *slot;
  619. struct kvm_lpage_info *linfo;
  620. int i;
  621. slot = gfn_to_memslot(kvm, gfn);
  622. for (i = PT_DIRECTORY_LEVEL;
  623. i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
  624. linfo = lpage_info_slot(gfn, slot, i);
  625. linfo->write_count -= 1;
  626. WARN_ON(linfo->write_count < 0);
  627. }
  628. kvm->arch.indirect_shadow_pages--;
  629. }
  630. static int has_wrprotected_page(struct kvm *kvm,
  631. gfn_t gfn,
  632. int level)
  633. {
  634. struct kvm_memory_slot *slot;
  635. struct kvm_lpage_info *linfo;
  636. slot = gfn_to_memslot(kvm, gfn);
  637. if (slot) {
  638. linfo = lpage_info_slot(gfn, slot, level);
  639. return linfo->write_count;
  640. }
  641. return 1;
  642. }
  643. static int host_mapping_level(struct kvm *kvm, gfn_t gfn)
  644. {
  645. unsigned long page_size;
  646. int i, ret = 0;
  647. page_size = kvm_host_page_size(kvm, gfn);
  648. for (i = PT_PAGE_TABLE_LEVEL;
  649. i < (PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES); ++i) {
  650. if (page_size >= KVM_HPAGE_SIZE(i))
  651. ret = i;
  652. else
  653. break;
  654. }
  655. return ret;
  656. }
  657. static struct kvm_memory_slot *
  658. gfn_to_memslot_dirty_bitmap(struct kvm_vcpu *vcpu, gfn_t gfn,
  659. bool no_dirty_log)
  660. {
  661. struct kvm_memory_slot *slot;
  662. slot = gfn_to_memslot(vcpu->kvm, gfn);
  663. if (!slot || slot->flags & KVM_MEMSLOT_INVALID ||
  664. (no_dirty_log && slot->dirty_bitmap))
  665. slot = NULL;
  666. return slot;
  667. }
  668. static bool mapping_level_dirty_bitmap(struct kvm_vcpu *vcpu, gfn_t large_gfn)
  669. {
  670. return !gfn_to_memslot_dirty_bitmap(vcpu, large_gfn, true);
  671. }
  672. static int mapping_level(struct kvm_vcpu *vcpu, gfn_t large_gfn)
  673. {
  674. int host_level, level, max_level;
  675. host_level = host_mapping_level(vcpu->kvm, large_gfn);
  676. if (host_level == PT_PAGE_TABLE_LEVEL)
  677. return host_level;
  678. max_level = kvm_x86_ops->get_lpage_level() < host_level ?
  679. kvm_x86_ops->get_lpage_level() : host_level;
  680. for (level = PT_DIRECTORY_LEVEL; level <= max_level; ++level)
  681. if (has_wrprotected_page(vcpu->kvm, large_gfn, level))
  682. break;
  683. return level - 1;
  684. }
  685. /*
  686. * Pte mapping structures:
  687. *
  688. * If pte_list bit zero is zero, then pte_list point to the spte.
  689. *
  690. * If pte_list bit zero is one, (then pte_list & ~1) points to a struct
  691. * pte_list_desc containing more mappings.
  692. *
  693. * Returns the number of pte entries before the spte was added or zero if
  694. * the spte was not added.
  695. *
  696. */
  697. static int pte_list_add(struct kvm_vcpu *vcpu, u64 *spte,
  698. unsigned long *pte_list)
  699. {
  700. struct pte_list_desc *desc;
  701. int i, count = 0;
  702. if (!*pte_list) {
  703. rmap_printk("pte_list_add: %p %llx 0->1\n", spte, *spte);
  704. *pte_list = (unsigned long)spte;
  705. } else if (!(*pte_list & 1)) {
  706. rmap_printk("pte_list_add: %p %llx 1->many\n", spte, *spte);
  707. desc = mmu_alloc_pte_list_desc(vcpu);
  708. desc->sptes[0] = (u64 *)*pte_list;
  709. desc->sptes[1] = spte;
  710. *pte_list = (unsigned long)desc | 1;
  711. ++count;
  712. } else {
  713. rmap_printk("pte_list_add: %p %llx many->many\n", spte, *spte);
  714. desc = (struct pte_list_desc *)(*pte_list & ~1ul);
  715. while (desc->sptes[PTE_LIST_EXT-1] && desc->more) {
  716. desc = desc->more;
  717. count += PTE_LIST_EXT;
  718. }
  719. if (desc->sptes[PTE_LIST_EXT-1]) {
  720. desc->more = mmu_alloc_pte_list_desc(vcpu);
  721. desc = desc->more;
  722. }
  723. for (i = 0; desc->sptes[i]; ++i)
  724. ++count;
  725. desc->sptes[i] = spte;
  726. }
  727. return count;
  728. }
  729. static void
  730. pte_list_desc_remove_entry(unsigned long *pte_list, struct pte_list_desc *desc,
  731. int i, struct pte_list_desc *prev_desc)
  732. {
  733. int j;
  734. for (j = PTE_LIST_EXT - 1; !desc->sptes[j] && j > i; --j)
  735. ;
  736. desc->sptes[i] = desc->sptes[j];
  737. desc->sptes[j] = NULL;
  738. if (j != 0)
  739. return;
  740. if (!prev_desc && !desc->more)
  741. *pte_list = (unsigned long)desc->sptes[0];
  742. else
  743. if (prev_desc)
  744. prev_desc->more = desc->more;
  745. else
  746. *pte_list = (unsigned long)desc->more | 1;
  747. mmu_free_pte_list_desc(desc);
  748. }
  749. static void pte_list_remove(u64 *spte, unsigned long *pte_list)
  750. {
  751. struct pte_list_desc *desc;
  752. struct pte_list_desc *prev_desc;
  753. int i;
  754. if (!*pte_list) {
  755. printk(KERN_ERR "pte_list_remove: %p 0->BUG\n", spte);
  756. BUG();
  757. } else if (!(*pte_list & 1)) {
  758. rmap_printk("pte_list_remove: %p 1->0\n", spte);
  759. if ((u64 *)*pte_list != spte) {
  760. printk(KERN_ERR "pte_list_remove: %p 1->BUG\n", spte);
  761. BUG();
  762. }
  763. *pte_list = 0;
  764. } else {
  765. rmap_printk("pte_list_remove: %p many->many\n", spte);
  766. desc = (struct pte_list_desc *)(*pte_list & ~1ul);
  767. prev_desc = NULL;
  768. while (desc) {
  769. for (i = 0; i < PTE_LIST_EXT && desc->sptes[i]; ++i)
  770. if (desc->sptes[i] == spte) {
  771. pte_list_desc_remove_entry(pte_list,
  772. desc, i,
  773. prev_desc);
  774. return;
  775. }
  776. prev_desc = desc;
  777. desc = desc->more;
  778. }
  779. pr_err("pte_list_remove: %p many->many\n", spte);
  780. BUG();
  781. }
  782. }
  783. typedef void (*pte_list_walk_fn) (u64 *spte);
  784. static void pte_list_walk(unsigned long *pte_list, pte_list_walk_fn fn)
  785. {
  786. struct pte_list_desc *desc;
  787. int i;
  788. if (!*pte_list)
  789. return;
  790. if (!(*pte_list & 1))
  791. return fn((u64 *)*pte_list);
  792. desc = (struct pte_list_desc *)(*pte_list & ~1ul);
  793. while (desc) {
  794. for (i = 0; i < PTE_LIST_EXT && desc->sptes[i]; ++i)
  795. fn(desc->sptes[i]);
  796. desc = desc->more;
  797. }
  798. }
  799. static unsigned long *__gfn_to_rmap(gfn_t gfn, int level,
  800. struct kvm_memory_slot *slot)
  801. {
  802. unsigned long idx;
  803. idx = gfn_to_index(gfn, slot->base_gfn, level);
  804. return &slot->arch.rmap[level - PT_PAGE_TABLE_LEVEL][idx];
  805. }
  806. /*
  807. * Take gfn and return the reverse mapping to it.
  808. */
  809. static unsigned long *gfn_to_rmap(struct kvm *kvm, gfn_t gfn, int level)
  810. {
  811. struct kvm_memory_slot *slot;
  812. slot = gfn_to_memslot(kvm, gfn);
  813. return __gfn_to_rmap(gfn, level, slot);
  814. }
  815. static bool rmap_can_add(struct kvm_vcpu *vcpu)
  816. {
  817. struct kvm_mmu_memory_cache *cache;
  818. cache = &vcpu->arch.mmu_pte_list_desc_cache;
  819. return mmu_memory_cache_free_objects(cache);
  820. }
  821. static int rmap_add(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
  822. {
  823. struct kvm_mmu_page *sp;
  824. unsigned long *rmapp;
  825. sp = page_header(__pa(spte));
  826. kvm_mmu_page_set_gfn(sp, spte - sp->spt, gfn);
  827. rmapp = gfn_to_rmap(vcpu->kvm, gfn, sp->role.level);
  828. return pte_list_add(vcpu, spte, rmapp);
  829. }
  830. static void rmap_remove(struct kvm *kvm, u64 *spte)
  831. {
  832. struct kvm_mmu_page *sp;
  833. gfn_t gfn;
  834. unsigned long *rmapp;
  835. sp = page_header(__pa(spte));
  836. gfn = kvm_mmu_page_get_gfn(sp, spte - sp->spt);
  837. rmapp = gfn_to_rmap(kvm, gfn, sp->role.level);
  838. pte_list_remove(spte, rmapp);
  839. }
  840. /*
  841. * Used by the following functions to iterate through the sptes linked by a
  842. * rmap. All fields are private and not assumed to be used outside.
  843. */
  844. struct rmap_iterator {
  845. /* private fields */
  846. struct pte_list_desc *desc; /* holds the sptep if not NULL */
  847. int pos; /* index of the sptep */
  848. };
  849. /*
  850. * Iteration must be started by this function. This should also be used after
  851. * removing/dropping sptes from the rmap link because in such cases the
  852. * information in the itererator may not be valid.
  853. *
  854. * Returns sptep if found, NULL otherwise.
  855. */
  856. static u64 *rmap_get_first(unsigned long rmap, struct rmap_iterator *iter)
  857. {
  858. if (!rmap)
  859. return NULL;
  860. if (!(rmap & 1)) {
  861. iter->desc = NULL;
  862. return (u64 *)rmap;
  863. }
  864. iter->desc = (struct pte_list_desc *)(rmap & ~1ul);
  865. iter->pos = 0;
  866. return iter->desc->sptes[iter->pos];
  867. }
  868. /*
  869. * Must be used with a valid iterator: e.g. after rmap_get_first().
  870. *
  871. * Returns sptep if found, NULL otherwise.
  872. */
  873. static u64 *rmap_get_next(struct rmap_iterator *iter)
  874. {
  875. if (iter->desc) {
  876. if (iter->pos < PTE_LIST_EXT - 1) {
  877. u64 *sptep;
  878. ++iter->pos;
  879. sptep = iter->desc->sptes[iter->pos];
  880. if (sptep)
  881. return sptep;
  882. }
  883. iter->desc = iter->desc->more;
  884. if (iter->desc) {
  885. iter->pos = 0;
  886. /* desc->sptes[0] cannot be NULL */
  887. return iter->desc->sptes[iter->pos];
  888. }
  889. }
  890. return NULL;
  891. }
  892. static void drop_spte(struct kvm *kvm, u64 *sptep)
  893. {
  894. if (mmu_spte_clear_track_bits(sptep))
  895. rmap_remove(kvm, sptep);
  896. }
  897. static bool __drop_large_spte(struct kvm *kvm, u64 *sptep)
  898. {
  899. if (is_large_pte(*sptep)) {
  900. WARN_ON(page_header(__pa(sptep))->role.level ==
  901. PT_PAGE_TABLE_LEVEL);
  902. drop_spte(kvm, sptep);
  903. --kvm->stat.lpages;
  904. return true;
  905. }
  906. return false;
  907. }
  908. static void drop_large_spte(struct kvm_vcpu *vcpu, u64 *sptep)
  909. {
  910. if (__drop_large_spte(vcpu->kvm, sptep))
  911. kvm_flush_remote_tlbs(vcpu->kvm);
  912. }
  913. /*
  914. * Write-protect on the specified @sptep, @pt_protect indicates whether
  915. * spte writ-protection is caused by protecting shadow page table.
  916. * @flush indicates whether tlb need be flushed.
  917. *
  918. * Note: write protection is difference between drity logging and spte
  919. * protection:
  920. * - for dirty logging, the spte can be set to writable at anytime if
  921. * its dirty bitmap is properly set.
  922. * - for spte protection, the spte can be writable only after unsync-ing
  923. * shadow page.
  924. *
  925. * Return true if the spte is dropped.
  926. */
  927. static bool
  928. spte_write_protect(struct kvm *kvm, u64 *sptep, bool *flush, bool pt_protect)
  929. {
  930. u64 spte = *sptep;
  931. if (!is_writable_pte(spte) &&
  932. !(pt_protect && spte_is_locklessly_modifiable(spte)))
  933. return false;
  934. rmap_printk("rmap_write_protect: spte %p %llx\n", sptep, *sptep);
  935. if (__drop_large_spte(kvm, sptep)) {
  936. *flush |= true;
  937. return true;
  938. }
  939. if (pt_protect)
  940. spte &= ~SPTE_MMU_WRITEABLE;
  941. spte = spte & ~PT_WRITABLE_MASK;
  942. *flush |= mmu_spte_update(sptep, spte);
  943. return false;
  944. }
  945. static bool __rmap_write_protect(struct kvm *kvm, unsigned long *rmapp,
  946. bool pt_protect)
  947. {
  948. u64 *sptep;
  949. struct rmap_iterator iter;
  950. bool flush = false;
  951. for (sptep = rmap_get_first(*rmapp, &iter); sptep;) {
  952. BUG_ON(!(*sptep & PT_PRESENT_MASK));
  953. if (spte_write_protect(kvm, sptep, &flush, pt_protect)) {
  954. sptep = rmap_get_first(*rmapp, &iter);
  955. continue;
  956. }
  957. sptep = rmap_get_next(&iter);
  958. }
  959. return flush;
  960. }
  961. /**
  962. * kvm_mmu_write_protect_pt_masked - write protect selected PT level pages
  963. * @kvm: kvm instance
  964. * @slot: slot to protect
  965. * @gfn_offset: start of the BITS_PER_LONG pages we care about
  966. * @mask: indicates which pages we should protect
  967. *
  968. * Used when we do not need to care about huge page mappings: e.g. during dirty
  969. * logging we do not have any such mappings.
  970. */
  971. void kvm_mmu_write_protect_pt_masked(struct kvm *kvm,
  972. struct kvm_memory_slot *slot,
  973. gfn_t gfn_offset, unsigned long mask)
  974. {
  975. unsigned long *rmapp;
  976. while (mask) {
  977. rmapp = __gfn_to_rmap(slot->base_gfn + gfn_offset + __ffs(mask),
  978. PT_PAGE_TABLE_LEVEL, slot);
  979. __rmap_write_protect(kvm, rmapp, false);
  980. /* clear the first set bit */
  981. mask &= mask - 1;
  982. }
  983. }
  984. static bool rmap_write_protect(struct kvm *kvm, u64 gfn)
  985. {
  986. struct kvm_memory_slot *slot;
  987. unsigned long *rmapp;
  988. int i;
  989. bool write_protected = false;
  990. slot = gfn_to_memslot(kvm, gfn);
  991. for (i = PT_PAGE_TABLE_LEVEL;
  992. i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
  993. rmapp = __gfn_to_rmap(gfn, i, slot);
  994. write_protected |= __rmap_write_protect(kvm, rmapp, true);
  995. }
  996. return write_protected;
  997. }
  998. static int kvm_unmap_rmapp(struct kvm *kvm, unsigned long *rmapp,
  999. struct kvm_memory_slot *slot, unsigned long data)
  1000. {
  1001. u64 *sptep;
  1002. struct rmap_iterator iter;
  1003. int need_tlb_flush = 0;
  1004. while ((sptep = rmap_get_first(*rmapp, &iter))) {
  1005. BUG_ON(!(*sptep & PT_PRESENT_MASK));
  1006. rmap_printk("kvm_rmap_unmap_hva: spte %p %llx\n", sptep, *sptep);
  1007. drop_spte(kvm, sptep);
  1008. need_tlb_flush = 1;
  1009. }
  1010. return need_tlb_flush;
  1011. }
  1012. static int kvm_set_pte_rmapp(struct kvm *kvm, unsigned long *rmapp,
  1013. struct kvm_memory_slot *slot, unsigned long data)
  1014. {
  1015. u64 *sptep;
  1016. struct rmap_iterator iter;
  1017. int need_flush = 0;
  1018. u64 new_spte;
  1019. pte_t *ptep = (pte_t *)data;
  1020. pfn_t new_pfn;
  1021. WARN_ON(pte_huge(*ptep));
  1022. new_pfn = pte_pfn(*ptep);
  1023. for (sptep = rmap_get_first(*rmapp, &iter); sptep;) {
  1024. BUG_ON(!is_shadow_present_pte(*sptep));
  1025. rmap_printk("kvm_set_pte_rmapp: spte %p %llx\n", sptep, *sptep);
  1026. need_flush = 1;
  1027. if (pte_write(*ptep)) {
  1028. drop_spte(kvm, sptep);
  1029. sptep = rmap_get_first(*rmapp, &iter);
  1030. } else {
  1031. new_spte = *sptep & ~PT64_BASE_ADDR_MASK;
  1032. new_spte |= (u64)new_pfn << PAGE_SHIFT;
  1033. new_spte &= ~PT_WRITABLE_MASK;
  1034. new_spte &= ~SPTE_HOST_WRITEABLE;
  1035. new_spte &= ~shadow_accessed_mask;
  1036. mmu_spte_clear_track_bits(sptep);
  1037. mmu_spte_set(sptep, new_spte);
  1038. sptep = rmap_get_next(&iter);
  1039. }
  1040. }
  1041. if (need_flush)
  1042. kvm_flush_remote_tlbs(kvm);
  1043. return 0;
  1044. }
  1045. static int kvm_handle_hva_range(struct kvm *kvm,
  1046. unsigned long start,
  1047. unsigned long end,
  1048. unsigned long data,
  1049. int (*handler)(struct kvm *kvm,
  1050. unsigned long *rmapp,
  1051. struct kvm_memory_slot *slot,
  1052. unsigned long data))
  1053. {
  1054. int j;
  1055. int ret = 0;
  1056. struct kvm_memslots *slots;
  1057. struct kvm_memory_slot *memslot;
  1058. slots = kvm_memslots(kvm);
  1059. kvm_for_each_memslot(memslot, slots) {
  1060. unsigned long hva_start, hva_end;
  1061. gfn_t gfn_start, gfn_end;
  1062. hva_start = max(start, memslot->userspace_addr);
  1063. hva_end = min(end, memslot->userspace_addr +
  1064. (memslot->npages << PAGE_SHIFT));
  1065. if (hva_start >= hva_end)
  1066. continue;
  1067. /*
  1068. * {gfn(page) | page intersects with [hva_start, hva_end)} =
  1069. * {gfn_start, gfn_start+1, ..., gfn_end-1}.
  1070. */
  1071. gfn_start = hva_to_gfn_memslot(hva_start, memslot);
  1072. gfn_end = hva_to_gfn_memslot(hva_end + PAGE_SIZE - 1, memslot);
  1073. for (j = PT_PAGE_TABLE_LEVEL;
  1074. j < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++j) {
  1075. unsigned long idx, idx_end;
  1076. unsigned long *rmapp;
  1077. /*
  1078. * {idx(page_j) | page_j intersects with
  1079. * [hva_start, hva_end)} = {idx, idx+1, ..., idx_end}.
  1080. */
  1081. idx = gfn_to_index(gfn_start, memslot->base_gfn, j);
  1082. idx_end = gfn_to_index(gfn_end - 1, memslot->base_gfn, j);
  1083. rmapp = __gfn_to_rmap(gfn_start, j, memslot);
  1084. for (; idx <= idx_end; ++idx)
  1085. ret |= handler(kvm, rmapp++, memslot, data);
  1086. }
  1087. }
  1088. return ret;
  1089. }
  1090. static int kvm_handle_hva(struct kvm *kvm, unsigned long hva,
  1091. unsigned long data,
  1092. int (*handler)(struct kvm *kvm, unsigned long *rmapp,
  1093. struct kvm_memory_slot *slot,
  1094. unsigned long data))
  1095. {
  1096. return kvm_handle_hva_range(kvm, hva, hva + 1, data, handler);
  1097. }
  1098. int kvm_unmap_hva(struct kvm *kvm, unsigned long hva)
  1099. {
  1100. return kvm_handle_hva(kvm, hva, 0, kvm_unmap_rmapp);
  1101. }
  1102. int kvm_unmap_hva_range(struct kvm *kvm, unsigned long start, unsigned long end)
  1103. {
  1104. return kvm_handle_hva_range(kvm, start, end, 0, kvm_unmap_rmapp);
  1105. }
  1106. void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte)
  1107. {
  1108. kvm_handle_hva(kvm, hva, (unsigned long)&pte, kvm_set_pte_rmapp);
  1109. }
  1110. static int kvm_age_rmapp(struct kvm *kvm, unsigned long *rmapp,
  1111. struct kvm_memory_slot *slot, unsigned long data)
  1112. {
  1113. u64 *sptep;
  1114. struct rmap_iterator uninitialized_var(iter);
  1115. int young = 0;
  1116. /*
  1117. * In case of absence of EPT Access and Dirty Bits supports,
  1118. * emulate the accessed bit for EPT, by checking if this page has
  1119. * an EPT mapping, and clearing it if it does. On the next access,
  1120. * a new EPT mapping will be established.
  1121. * This has some overhead, but not as much as the cost of swapping
  1122. * out actively used pages or breaking up actively used hugepages.
  1123. */
  1124. if (!shadow_accessed_mask) {
  1125. young = kvm_unmap_rmapp(kvm, rmapp, slot, data);
  1126. goto out;
  1127. }
  1128. for (sptep = rmap_get_first(*rmapp, &iter); sptep;
  1129. sptep = rmap_get_next(&iter)) {
  1130. BUG_ON(!is_shadow_present_pte(*sptep));
  1131. if (*sptep & shadow_accessed_mask) {
  1132. young = 1;
  1133. clear_bit((ffs(shadow_accessed_mask) - 1),
  1134. (unsigned long *)sptep);
  1135. }
  1136. }
  1137. out:
  1138. /* @data has hva passed to kvm_age_hva(). */
  1139. trace_kvm_age_page(data, slot, young);
  1140. return young;
  1141. }
  1142. static int kvm_test_age_rmapp(struct kvm *kvm, unsigned long *rmapp,
  1143. struct kvm_memory_slot *slot, unsigned long data)
  1144. {
  1145. u64 *sptep;
  1146. struct rmap_iterator iter;
  1147. int young = 0;
  1148. /*
  1149. * If there's no access bit in the secondary pte set by the
  1150. * hardware it's up to gup-fast/gup to set the access bit in
  1151. * the primary pte or in the page structure.
  1152. */
  1153. if (!shadow_accessed_mask)
  1154. goto out;
  1155. for (sptep = rmap_get_first(*rmapp, &iter); sptep;
  1156. sptep = rmap_get_next(&iter)) {
  1157. BUG_ON(!is_shadow_present_pte(*sptep));
  1158. if (*sptep & shadow_accessed_mask) {
  1159. young = 1;
  1160. break;
  1161. }
  1162. }
  1163. out:
  1164. return young;
  1165. }
  1166. #define RMAP_RECYCLE_THRESHOLD 1000
  1167. static void rmap_recycle(struct kvm_vcpu *vcpu, u64 *spte, gfn_t gfn)
  1168. {
  1169. unsigned long *rmapp;
  1170. struct kvm_mmu_page *sp;
  1171. sp = page_header(__pa(spte));
  1172. rmapp = gfn_to_rmap(vcpu->kvm, gfn, sp->role.level);
  1173. kvm_unmap_rmapp(vcpu->kvm, rmapp, NULL, 0);
  1174. kvm_flush_remote_tlbs(vcpu->kvm);
  1175. }
  1176. int kvm_age_hva(struct kvm *kvm, unsigned long hva)
  1177. {
  1178. return kvm_handle_hva(kvm, hva, hva, kvm_age_rmapp);
  1179. }
  1180. int kvm_test_age_hva(struct kvm *kvm, unsigned long hva)
  1181. {
  1182. return kvm_handle_hva(kvm, hva, 0, kvm_test_age_rmapp);
  1183. }
  1184. #ifdef MMU_DEBUG
  1185. static int is_empty_shadow_page(u64 *spt)
  1186. {
  1187. u64 *pos;
  1188. u64 *end;
  1189. for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++)
  1190. if (is_shadow_present_pte(*pos)) {
  1191. printk(KERN_ERR "%s: %p %llx\n", __func__,
  1192. pos, *pos);
  1193. return 0;
  1194. }
  1195. return 1;
  1196. }
  1197. #endif
  1198. /*
  1199. * This value is the sum of all of the kvm instances's
  1200. * kvm->arch.n_used_mmu_pages values. We need a global,
  1201. * aggregate version in order to make the slab shrinker
  1202. * faster
  1203. */
  1204. static inline void kvm_mod_used_mmu_pages(struct kvm *kvm, int nr)
  1205. {
  1206. kvm->arch.n_used_mmu_pages += nr;
  1207. percpu_counter_add(&kvm_total_used_mmu_pages, nr);
  1208. }
  1209. /*
  1210. * Remove the sp from shadow page cache, after call it,
  1211. * we can not find this sp from the cache, and the shadow
  1212. * page table is still valid.
  1213. * It should be under the protection of mmu lock.
  1214. */
  1215. static void kvm_mmu_isolate_page(struct kvm_mmu_page *sp)
  1216. {
  1217. ASSERT(is_empty_shadow_page(sp->spt));
  1218. hlist_del(&sp->hash_link);
  1219. if (!sp->role.direct)
  1220. free_page((unsigned long)sp->gfns);
  1221. }
  1222. /*
  1223. * Free the shadow page table and the sp, we can do it
  1224. * out of the protection of mmu lock.
  1225. */
  1226. static void kvm_mmu_free_page(struct kvm_mmu_page *sp)
  1227. {
  1228. list_del(&sp->link);
  1229. free_page((unsigned long)sp->spt);
  1230. kmem_cache_free(mmu_page_header_cache, sp);
  1231. }
  1232. static unsigned kvm_page_table_hashfn(gfn_t gfn)
  1233. {
  1234. return gfn & ((1 << KVM_MMU_HASH_SHIFT) - 1);
  1235. }
  1236. static void mmu_page_add_parent_pte(struct kvm_vcpu *vcpu,
  1237. struct kvm_mmu_page *sp, u64 *parent_pte)
  1238. {
  1239. if (!parent_pte)
  1240. return;
  1241. pte_list_add(vcpu, parent_pte, &sp->parent_ptes);
  1242. }
  1243. static void mmu_page_remove_parent_pte(struct kvm_mmu_page *sp,
  1244. u64 *parent_pte)
  1245. {
  1246. pte_list_remove(parent_pte, &sp->parent_ptes);
  1247. }
  1248. static void drop_parent_pte(struct kvm_mmu_page *sp,
  1249. u64 *parent_pte)
  1250. {
  1251. mmu_page_remove_parent_pte(sp, parent_pte);
  1252. mmu_spte_clear_no_track(parent_pte);
  1253. }
  1254. static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu,
  1255. u64 *parent_pte, int direct)
  1256. {
  1257. struct kvm_mmu_page *sp;
  1258. sp = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_header_cache);
  1259. sp->spt = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
  1260. if (!direct)
  1261. sp->gfns = mmu_memory_cache_alloc(&vcpu->arch.mmu_page_cache);
  1262. set_page_private(virt_to_page(sp->spt), (unsigned long)sp);
  1263. list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages);
  1264. sp->parent_ptes = 0;
  1265. mmu_page_add_parent_pte(vcpu, sp, parent_pte);
  1266. kvm_mod_used_mmu_pages(vcpu->kvm, +1);
  1267. return sp;
  1268. }
  1269. static void mark_unsync(u64 *spte);
  1270. static void kvm_mmu_mark_parents_unsync(struct kvm_mmu_page *sp)
  1271. {
  1272. pte_list_walk(&sp->parent_ptes, mark_unsync);
  1273. }
  1274. static void mark_unsync(u64 *spte)
  1275. {
  1276. struct kvm_mmu_page *sp;
  1277. unsigned int index;
  1278. sp = page_header(__pa(spte));
  1279. index = spte - sp->spt;
  1280. if (__test_and_set_bit(index, sp->unsync_child_bitmap))
  1281. return;
  1282. if (sp->unsync_children++)
  1283. return;
  1284. kvm_mmu_mark_parents_unsync(sp);
  1285. }
  1286. static int nonpaging_sync_page(struct kvm_vcpu *vcpu,
  1287. struct kvm_mmu_page *sp)
  1288. {
  1289. return 1;
  1290. }
  1291. static void nonpaging_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
  1292. {
  1293. }
  1294. static void nonpaging_update_pte(struct kvm_vcpu *vcpu,
  1295. struct kvm_mmu_page *sp, u64 *spte,
  1296. const void *pte)
  1297. {
  1298. WARN_ON(1);
  1299. }
  1300. #define KVM_PAGE_ARRAY_NR 16
  1301. struct kvm_mmu_pages {
  1302. struct mmu_page_and_offset {
  1303. struct kvm_mmu_page *sp;
  1304. unsigned int idx;
  1305. } page[KVM_PAGE_ARRAY_NR];
  1306. unsigned int nr;
  1307. };
  1308. static int mmu_pages_add(struct kvm_mmu_pages *pvec, struct kvm_mmu_page *sp,
  1309. int idx)
  1310. {
  1311. int i;
  1312. if (sp->unsync)
  1313. for (i=0; i < pvec->nr; i++)
  1314. if (pvec->page[i].sp == sp)
  1315. return 0;
  1316. pvec->page[pvec->nr].sp = sp;
  1317. pvec->page[pvec->nr].idx = idx;
  1318. pvec->nr++;
  1319. return (pvec->nr == KVM_PAGE_ARRAY_NR);
  1320. }
  1321. static int __mmu_unsync_walk(struct kvm_mmu_page *sp,
  1322. struct kvm_mmu_pages *pvec)
  1323. {
  1324. int i, ret, nr_unsync_leaf = 0;
  1325. for_each_set_bit(i, sp->unsync_child_bitmap, 512) {
  1326. struct kvm_mmu_page *child;
  1327. u64 ent = sp->spt[i];
  1328. if (!is_shadow_present_pte(ent) || is_large_pte(ent))
  1329. goto clear_child_bitmap;
  1330. child = page_header(ent & PT64_BASE_ADDR_MASK);
  1331. if (child->unsync_children) {
  1332. if (mmu_pages_add(pvec, child, i))
  1333. return -ENOSPC;
  1334. ret = __mmu_unsync_walk(child, pvec);
  1335. if (!ret)
  1336. goto clear_child_bitmap;
  1337. else if (ret > 0)
  1338. nr_unsync_leaf += ret;
  1339. else
  1340. return ret;
  1341. } else if (child->unsync) {
  1342. nr_unsync_leaf++;
  1343. if (mmu_pages_add(pvec, child, i))
  1344. return -ENOSPC;
  1345. } else
  1346. goto clear_child_bitmap;
  1347. continue;
  1348. clear_child_bitmap:
  1349. __clear_bit(i, sp->unsync_child_bitmap);
  1350. sp->unsync_children--;
  1351. WARN_ON((int)sp->unsync_children < 0);
  1352. }
  1353. return nr_unsync_leaf;
  1354. }
  1355. static int mmu_unsync_walk(struct kvm_mmu_page *sp,
  1356. struct kvm_mmu_pages *pvec)
  1357. {
  1358. if (!sp->unsync_children)
  1359. return 0;
  1360. mmu_pages_add(pvec, sp, 0);
  1361. return __mmu_unsync_walk(sp, pvec);
  1362. }
  1363. static void kvm_unlink_unsync_page(struct kvm *kvm, struct kvm_mmu_page *sp)
  1364. {
  1365. WARN_ON(!sp->unsync);
  1366. trace_kvm_mmu_sync_page(sp);
  1367. sp->unsync = 0;
  1368. --kvm->stat.mmu_unsync;
  1369. }
  1370. static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
  1371. struct list_head *invalid_list);
  1372. static void kvm_mmu_commit_zap_page(struct kvm *kvm,
  1373. struct list_head *invalid_list);
  1374. #define for_each_gfn_sp(kvm, sp, gfn, pos) \
  1375. hlist_for_each_entry(sp, pos, \
  1376. &(kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)], hash_link) \
  1377. if ((sp)->gfn != (gfn)) {} else
  1378. #define for_each_gfn_indirect_valid_sp(kvm, sp, gfn, pos) \
  1379. hlist_for_each_entry(sp, pos, \
  1380. &(kvm)->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)], hash_link) \
  1381. if ((sp)->gfn != (gfn) || (sp)->role.direct || \
  1382. (sp)->role.invalid) {} else
  1383. /* @sp->gfn should be write-protected at the call site */
  1384. static int __kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
  1385. struct list_head *invalid_list, bool clear_unsync)
  1386. {
  1387. if (sp->role.cr4_pae != !!is_pae(vcpu)) {
  1388. kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
  1389. return 1;
  1390. }
  1391. if (clear_unsync)
  1392. kvm_unlink_unsync_page(vcpu->kvm, sp);
  1393. if (vcpu->arch.mmu.sync_page(vcpu, sp)) {
  1394. kvm_mmu_prepare_zap_page(vcpu->kvm, sp, invalid_list);
  1395. return 1;
  1396. }
  1397. kvm_mmu_flush_tlb(vcpu);
  1398. return 0;
  1399. }
  1400. static int kvm_sync_page_transient(struct kvm_vcpu *vcpu,
  1401. struct kvm_mmu_page *sp)
  1402. {
  1403. LIST_HEAD(invalid_list);
  1404. int ret;
  1405. ret = __kvm_sync_page(vcpu, sp, &invalid_list, false);
  1406. if (ret)
  1407. kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
  1408. return ret;
  1409. }
  1410. #ifdef CONFIG_KVM_MMU_AUDIT
  1411. #include "mmu_audit.c"
  1412. #else
  1413. static void kvm_mmu_audit(struct kvm_vcpu *vcpu, int point) { }
  1414. static void mmu_audit_disable(void) { }
  1415. #endif
  1416. static int kvm_sync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
  1417. struct list_head *invalid_list)
  1418. {
  1419. return __kvm_sync_page(vcpu, sp, invalid_list, true);
  1420. }
  1421. /* @gfn should be write-protected at the call site */
  1422. static void kvm_sync_pages(struct kvm_vcpu *vcpu, gfn_t gfn)
  1423. {
  1424. struct kvm_mmu_page *s;
  1425. struct hlist_node *node;
  1426. LIST_HEAD(invalid_list);
  1427. bool flush = false;
  1428. for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn, node) {
  1429. if (!s->unsync)
  1430. continue;
  1431. WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL);
  1432. kvm_unlink_unsync_page(vcpu->kvm, s);
  1433. if ((s->role.cr4_pae != !!is_pae(vcpu)) ||
  1434. (vcpu->arch.mmu.sync_page(vcpu, s))) {
  1435. kvm_mmu_prepare_zap_page(vcpu->kvm, s, &invalid_list);
  1436. continue;
  1437. }
  1438. flush = true;
  1439. }
  1440. kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
  1441. if (flush)
  1442. kvm_mmu_flush_tlb(vcpu);
  1443. }
  1444. struct mmu_page_path {
  1445. struct kvm_mmu_page *parent[PT64_ROOT_LEVEL-1];
  1446. unsigned int idx[PT64_ROOT_LEVEL-1];
  1447. };
  1448. #define for_each_sp(pvec, sp, parents, i) \
  1449. for (i = mmu_pages_next(&pvec, &parents, -1), \
  1450. sp = pvec.page[i].sp; \
  1451. i < pvec.nr && ({ sp = pvec.page[i].sp; 1;}); \
  1452. i = mmu_pages_next(&pvec, &parents, i))
  1453. static int mmu_pages_next(struct kvm_mmu_pages *pvec,
  1454. struct mmu_page_path *parents,
  1455. int i)
  1456. {
  1457. int n;
  1458. for (n = i+1; n < pvec->nr; n++) {
  1459. struct kvm_mmu_page *sp = pvec->page[n].sp;
  1460. if (sp->role.level == PT_PAGE_TABLE_LEVEL) {
  1461. parents->idx[0] = pvec->page[n].idx;
  1462. return n;
  1463. }
  1464. parents->parent[sp->role.level-2] = sp;
  1465. parents->idx[sp->role.level-1] = pvec->page[n].idx;
  1466. }
  1467. return n;
  1468. }
  1469. static void mmu_pages_clear_parents(struct mmu_page_path *parents)
  1470. {
  1471. struct kvm_mmu_page *sp;
  1472. unsigned int level = 0;
  1473. do {
  1474. unsigned int idx = parents->idx[level];
  1475. sp = parents->parent[level];
  1476. if (!sp)
  1477. return;
  1478. --sp->unsync_children;
  1479. WARN_ON((int)sp->unsync_children < 0);
  1480. __clear_bit(idx, sp->unsync_child_bitmap);
  1481. level++;
  1482. } while (level < PT64_ROOT_LEVEL-1 && !sp->unsync_children);
  1483. }
  1484. static void kvm_mmu_pages_init(struct kvm_mmu_page *parent,
  1485. struct mmu_page_path *parents,
  1486. struct kvm_mmu_pages *pvec)
  1487. {
  1488. parents->parent[parent->role.level-1] = NULL;
  1489. pvec->nr = 0;
  1490. }
  1491. static void mmu_sync_children(struct kvm_vcpu *vcpu,
  1492. struct kvm_mmu_page *parent)
  1493. {
  1494. int i;
  1495. struct kvm_mmu_page *sp;
  1496. struct mmu_page_path parents;
  1497. struct kvm_mmu_pages pages;
  1498. LIST_HEAD(invalid_list);
  1499. kvm_mmu_pages_init(parent, &parents, &pages);
  1500. while (mmu_unsync_walk(parent, &pages)) {
  1501. bool protected = false;
  1502. for_each_sp(pages, sp, parents, i)
  1503. protected |= rmap_write_protect(vcpu->kvm, sp->gfn);
  1504. if (protected)
  1505. kvm_flush_remote_tlbs(vcpu->kvm);
  1506. for_each_sp(pages, sp, parents, i) {
  1507. kvm_sync_page(vcpu, sp, &invalid_list);
  1508. mmu_pages_clear_parents(&parents);
  1509. }
  1510. kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
  1511. cond_resched_lock(&vcpu->kvm->mmu_lock);
  1512. kvm_mmu_pages_init(parent, &parents, &pages);
  1513. }
  1514. }
  1515. static void init_shadow_page_table(struct kvm_mmu_page *sp)
  1516. {
  1517. int i;
  1518. for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
  1519. sp->spt[i] = 0ull;
  1520. }
  1521. static void __clear_sp_write_flooding_count(struct kvm_mmu_page *sp)
  1522. {
  1523. sp->write_flooding_count = 0;
  1524. }
  1525. static void clear_sp_write_flooding_count(u64 *spte)
  1526. {
  1527. struct kvm_mmu_page *sp = page_header(__pa(spte));
  1528. __clear_sp_write_flooding_count(sp);
  1529. }
  1530. static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu,
  1531. gfn_t gfn,
  1532. gva_t gaddr,
  1533. unsigned level,
  1534. int direct,
  1535. unsigned access,
  1536. u64 *parent_pte)
  1537. {
  1538. union kvm_mmu_page_role role;
  1539. unsigned quadrant;
  1540. struct kvm_mmu_page *sp;
  1541. struct hlist_node *node;
  1542. bool need_sync = false;
  1543. role = vcpu->arch.mmu.base_role;
  1544. role.level = level;
  1545. role.direct = direct;
  1546. if (role.direct)
  1547. role.cr4_pae = 0;
  1548. role.access = access;
  1549. if (!vcpu->arch.mmu.direct_map
  1550. && vcpu->arch.mmu.root_level <= PT32_ROOT_LEVEL) {
  1551. quadrant = gaddr >> (PAGE_SHIFT + (PT64_PT_BITS * level));
  1552. quadrant &= (1 << ((PT32_PT_BITS - PT64_PT_BITS) * level)) - 1;
  1553. role.quadrant = quadrant;
  1554. }
  1555. for_each_gfn_sp(vcpu->kvm, sp, gfn, node) {
  1556. if (!need_sync && sp->unsync)
  1557. need_sync = true;
  1558. if (sp->role.word != role.word)
  1559. continue;
  1560. if (sp->unsync && kvm_sync_page_transient(vcpu, sp))
  1561. break;
  1562. mmu_page_add_parent_pte(vcpu, sp, parent_pte);
  1563. if (sp->unsync_children) {
  1564. kvm_make_request(KVM_REQ_MMU_SYNC, vcpu);
  1565. kvm_mmu_mark_parents_unsync(sp);
  1566. } else if (sp->unsync)
  1567. kvm_mmu_mark_parents_unsync(sp);
  1568. __clear_sp_write_flooding_count(sp);
  1569. trace_kvm_mmu_get_page(sp, false);
  1570. return sp;
  1571. }
  1572. ++vcpu->kvm->stat.mmu_cache_miss;
  1573. sp = kvm_mmu_alloc_page(vcpu, parent_pte, direct);
  1574. if (!sp)
  1575. return sp;
  1576. sp->gfn = gfn;
  1577. sp->role = role;
  1578. hlist_add_head(&sp->hash_link,
  1579. &vcpu->kvm->arch.mmu_page_hash[kvm_page_table_hashfn(gfn)]);
  1580. if (!direct) {
  1581. if (rmap_write_protect(vcpu->kvm, gfn))
  1582. kvm_flush_remote_tlbs(vcpu->kvm);
  1583. if (level > PT_PAGE_TABLE_LEVEL && need_sync)
  1584. kvm_sync_pages(vcpu, gfn);
  1585. account_shadowed(vcpu->kvm, gfn);
  1586. }
  1587. init_shadow_page_table(sp);
  1588. trace_kvm_mmu_get_page(sp, true);
  1589. return sp;
  1590. }
  1591. static void shadow_walk_init(struct kvm_shadow_walk_iterator *iterator,
  1592. struct kvm_vcpu *vcpu, u64 addr)
  1593. {
  1594. iterator->addr = addr;
  1595. iterator->shadow_addr = vcpu->arch.mmu.root_hpa;
  1596. iterator->level = vcpu->arch.mmu.shadow_root_level;
  1597. if (iterator->level == PT64_ROOT_LEVEL &&
  1598. vcpu->arch.mmu.root_level < PT64_ROOT_LEVEL &&
  1599. !vcpu->arch.mmu.direct_map)
  1600. --iterator->level;
  1601. if (iterator->level == PT32E_ROOT_LEVEL) {
  1602. iterator->shadow_addr
  1603. = vcpu->arch.mmu.pae_root[(addr >> 30) & 3];
  1604. iterator->shadow_addr &= PT64_BASE_ADDR_MASK;
  1605. --iterator->level;
  1606. if (!iterator->shadow_addr)
  1607. iterator->level = 0;
  1608. }
  1609. }
  1610. static bool shadow_walk_okay(struct kvm_shadow_walk_iterator *iterator)
  1611. {
  1612. if (iterator->level < PT_PAGE_TABLE_LEVEL)
  1613. return false;
  1614. iterator->index = SHADOW_PT_INDEX(iterator->addr, iterator->level);
  1615. iterator->sptep = ((u64 *)__va(iterator->shadow_addr)) + iterator->index;
  1616. return true;
  1617. }
  1618. static void __shadow_walk_next(struct kvm_shadow_walk_iterator *iterator,
  1619. u64 spte)
  1620. {
  1621. if (is_last_spte(spte, iterator->level)) {
  1622. iterator->level = 0;
  1623. return;
  1624. }
  1625. iterator->shadow_addr = spte & PT64_BASE_ADDR_MASK;
  1626. --iterator->level;
  1627. }
  1628. static void shadow_walk_next(struct kvm_shadow_walk_iterator *iterator)
  1629. {
  1630. return __shadow_walk_next(iterator, *iterator->sptep);
  1631. }
  1632. static void link_shadow_page(u64 *sptep, struct kvm_mmu_page *sp)
  1633. {
  1634. u64 spte;
  1635. spte = __pa(sp->spt)
  1636. | PT_PRESENT_MASK | PT_ACCESSED_MASK
  1637. | PT_WRITABLE_MASK | PT_USER_MASK;
  1638. mmu_spte_set(sptep, spte);
  1639. }
  1640. static void validate_direct_spte(struct kvm_vcpu *vcpu, u64 *sptep,
  1641. unsigned direct_access)
  1642. {
  1643. if (is_shadow_present_pte(*sptep) && !is_large_pte(*sptep)) {
  1644. struct kvm_mmu_page *child;
  1645. /*
  1646. * For the direct sp, if the guest pte's dirty bit
  1647. * changed form clean to dirty, it will corrupt the
  1648. * sp's access: allow writable in the read-only sp,
  1649. * so we should update the spte at this point to get
  1650. * a new sp with the correct access.
  1651. */
  1652. child = page_header(*sptep & PT64_BASE_ADDR_MASK);
  1653. if (child->role.access == direct_access)
  1654. return;
  1655. drop_parent_pte(child, sptep);
  1656. kvm_flush_remote_tlbs(vcpu->kvm);
  1657. }
  1658. }
  1659. static bool mmu_page_zap_pte(struct kvm *kvm, struct kvm_mmu_page *sp,
  1660. u64 *spte)
  1661. {
  1662. u64 pte;
  1663. struct kvm_mmu_page *child;
  1664. pte = *spte;
  1665. if (is_shadow_present_pte(pte)) {
  1666. if (is_last_spte(pte, sp->role.level)) {
  1667. drop_spte(kvm, spte);
  1668. if (is_large_pte(pte))
  1669. --kvm->stat.lpages;
  1670. } else {
  1671. child = page_header(pte & PT64_BASE_ADDR_MASK);
  1672. drop_parent_pte(child, spte);
  1673. }
  1674. return true;
  1675. }
  1676. if (is_mmio_spte(pte))
  1677. mmu_spte_clear_no_track(spte);
  1678. return false;
  1679. }
  1680. static void kvm_mmu_page_unlink_children(struct kvm *kvm,
  1681. struct kvm_mmu_page *sp)
  1682. {
  1683. unsigned i;
  1684. for (i = 0; i < PT64_ENT_PER_PAGE; ++i)
  1685. mmu_page_zap_pte(kvm, sp, sp->spt + i);
  1686. }
  1687. static void kvm_mmu_put_page(struct kvm_mmu_page *sp, u64 *parent_pte)
  1688. {
  1689. mmu_page_remove_parent_pte(sp, parent_pte);
  1690. }
  1691. static void kvm_mmu_unlink_parents(struct kvm *kvm, struct kvm_mmu_page *sp)
  1692. {
  1693. u64 *sptep;
  1694. struct rmap_iterator iter;
  1695. while ((sptep = rmap_get_first(sp->parent_ptes, &iter)))
  1696. drop_parent_pte(sp, sptep);
  1697. }
  1698. static int mmu_zap_unsync_children(struct kvm *kvm,
  1699. struct kvm_mmu_page *parent,
  1700. struct list_head *invalid_list)
  1701. {
  1702. int i, zapped = 0;
  1703. struct mmu_page_path parents;
  1704. struct kvm_mmu_pages pages;
  1705. if (parent->role.level == PT_PAGE_TABLE_LEVEL)
  1706. return 0;
  1707. kvm_mmu_pages_init(parent, &parents, &pages);
  1708. while (mmu_unsync_walk(parent, &pages)) {
  1709. struct kvm_mmu_page *sp;
  1710. for_each_sp(pages, sp, parents, i) {
  1711. kvm_mmu_prepare_zap_page(kvm, sp, invalid_list);
  1712. mmu_pages_clear_parents(&parents);
  1713. zapped++;
  1714. }
  1715. kvm_mmu_pages_init(parent, &parents, &pages);
  1716. }
  1717. return zapped;
  1718. }
  1719. static int kvm_mmu_prepare_zap_page(struct kvm *kvm, struct kvm_mmu_page *sp,
  1720. struct list_head *invalid_list)
  1721. {
  1722. int ret;
  1723. trace_kvm_mmu_prepare_zap_page(sp);
  1724. ++kvm->stat.mmu_shadow_zapped;
  1725. ret = mmu_zap_unsync_children(kvm, sp, invalid_list);
  1726. kvm_mmu_page_unlink_children(kvm, sp);
  1727. kvm_mmu_unlink_parents(kvm, sp);
  1728. if (!sp->role.invalid && !sp->role.direct)
  1729. unaccount_shadowed(kvm, sp->gfn);
  1730. if (sp->unsync)
  1731. kvm_unlink_unsync_page(kvm, sp);
  1732. if (!sp->root_count) {
  1733. /* Count self */
  1734. ret++;
  1735. list_move(&sp->link, invalid_list);
  1736. kvm_mod_used_mmu_pages(kvm, -1);
  1737. } else {
  1738. list_move(&sp->link, &kvm->arch.active_mmu_pages);
  1739. kvm_reload_remote_mmus(kvm);
  1740. }
  1741. sp->role.invalid = 1;
  1742. return ret;
  1743. }
  1744. static void kvm_mmu_commit_zap_page(struct kvm *kvm,
  1745. struct list_head *invalid_list)
  1746. {
  1747. struct kvm_mmu_page *sp;
  1748. if (list_empty(invalid_list))
  1749. return;
  1750. /*
  1751. * wmb: make sure everyone sees our modifications to the page tables
  1752. * rmb: make sure we see changes to vcpu->mode
  1753. */
  1754. smp_mb();
  1755. /*
  1756. * Wait for all vcpus to exit guest mode and/or lockless shadow
  1757. * page table walks.
  1758. */
  1759. kvm_flush_remote_tlbs(kvm);
  1760. do {
  1761. sp = list_first_entry(invalid_list, struct kvm_mmu_page, link);
  1762. WARN_ON(!sp->role.invalid || sp->root_count);
  1763. kvm_mmu_isolate_page(sp);
  1764. kvm_mmu_free_page(sp);
  1765. } while (!list_empty(invalid_list));
  1766. }
  1767. /*
  1768. * Changing the number of mmu pages allocated to the vm
  1769. * Note: if goal_nr_mmu_pages is too small, you will get dead lock
  1770. */
  1771. void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int goal_nr_mmu_pages)
  1772. {
  1773. LIST_HEAD(invalid_list);
  1774. /*
  1775. * If we set the number of mmu pages to be smaller be than the
  1776. * number of actived pages , we must to free some mmu pages before we
  1777. * change the value
  1778. */
  1779. if (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages) {
  1780. while (kvm->arch.n_used_mmu_pages > goal_nr_mmu_pages &&
  1781. !list_empty(&kvm->arch.active_mmu_pages)) {
  1782. struct kvm_mmu_page *page;
  1783. page = container_of(kvm->arch.active_mmu_pages.prev,
  1784. struct kvm_mmu_page, link);
  1785. kvm_mmu_prepare_zap_page(kvm, page, &invalid_list);
  1786. }
  1787. kvm_mmu_commit_zap_page(kvm, &invalid_list);
  1788. goal_nr_mmu_pages = kvm->arch.n_used_mmu_pages;
  1789. }
  1790. kvm->arch.n_max_mmu_pages = goal_nr_mmu_pages;
  1791. }
  1792. int kvm_mmu_unprotect_page(struct kvm *kvm, gfn_t gfn)
  1793. {
  1794. struct kvm_mmu_page *sp;
  1795. struct hlist_node *node;
  1796. LIST_HEAD(invalid_list);
  1797. int r;
  1798. pgprintk("%s: looking for gfn %llx\n", __func__, gfn);
  1799. r = 0;
  1800. spin_lock(&kvm->mmu_lock);
  1801. for_each_gfn_indirect_valid_sp(kvm, sp, gfn, node) {
  1802. pgprintk("%s: gfn %llx role %x\n", __func__, gfn,
  1803. sp->role.word);
  1804. r = 1;
  1805. kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list);
  1806. }
  1807. kvm_mmu_commit_zap_page(kvm, &invalid_list);
  1808. spin_unlock(&kvm->mmu_lock);
  1809. return r;
  1810. }
  1811. EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page);
  1812. /*
  1813. * The function is based on mtrr_type_lookup() in
  1814. * arch/x86/kernel/cpu/mtrr/generic.c
  1815. */
  1816. static int get_mtrr_type(struct mtrr_state_type *mtrr_state,
  1817. u64 start, u64 end)
  1818. {
  1819. int i;
  1820. u64 base, mask;
  1821. u8 prev_match, curr_match;
  1822. int num_var_ranges = KVM_NR_VAR_MTRR;
  1823. if (!mtrr_state->enabled)
  1824. return 0xFF;
  1825. /* Make end inclusive end, instead of exclusive */
  1826. end--;
  1827. /* Look in fixed ranges. Just return the type as per start */
  1828. if (mtrr_state->have_fixed && (start < 0x100000)) {
  1829. int idx;
  1830. if (start < 0x80000) {
  1831. idx = 0;
  1832. idx += (start >> 16);
  1833. return mtrr_state->fixed_ranges[idx];
  1834. } else if (start < 0xC0000) {
  1835. idx = 1 * 8;
  1836. idx += ((start - 0x80000) >> 14);
  1837. return mtrr_state->fixed_ranges[idx];
  1838. } else if (start < 0x1000000) {
  1839. idx = 3 * 8;
  1840. idx += ((start - 0xC0000) >> 12);
  1841. return mtrr_state->fixed_ranges[idx];
  1842. }
  1843. }
  1844. /*
  1845. * Look in variable ranges
  1846. * Look of multiple ranges matching this address and pick type
  1847. * as per MTRR precedence
  1848. */
  1849. if (!(mtrr_state->enabled & 2))
  1850. return mtrr_state->def_type;
  1851. prev_match = 0xFF;
  1852. for (i = 0; i < num_var_ranges; ++i) {
  1853. unsigned short start_state, end_state;
  1854. if (!(mtrr_state->var_ranges[i].mask_lo & (1 << 11)))
  1855. continue;
  1856. base = (((u64)mtrr_state->var_ranges[i].base_hi) << 32) +
  1857. (mtrr_state->var_ranges[i].base_lo & PAGE_MASK);
  1858. mask = (((u64)mtrr_state->var_ranges[i].mask_hi) << 32) +
  1859. (mtrr_state->var_ranges[i].mask_lo & PAGE_MASK);
  1860. start_state = ((start & mask) == (base & mask));
  1861. end_state = ((end & mask) == (base & mask));
  1862. if (start_state != end_state)
  1863. return 0xFE;
  1864. if ((start & mask) != (base & mask))
  1865. continue;
  1866. curr_match = mtrr_state->var_ranges[i].base_lo & 0xff;
  1867. if (prev_match == 0xFF) {
  1868. prev_match = curr_match;
  1869. continue;
  1870. }
  1871. if (prev_match == MTRR_TYPE_UNCACHABLE ||
  1872. curr_match == MTRR_TYPE_UNCACHABLE)
  1873. return MTRR_TYPE_UNCACHABLE;
  1874. if ((prev_match == MTRR_TYPE_WRBACK &&
  1875. curr_match == MTRR_TYPE_WRTHROUGH) ||
  1876. (prev_match == MTRR_TYPE_WRTHROUGH &&
  1877. curr_match == MTRR_TYPE_WRBACK)) {
  1878. prev_match = MTRR_TYPE_WRTHROUGH;
  1879. curr_match = MTRR_TYPE_WRTHROUGH;
  1880. }
  1881. if (prev_match != curr_match)
  1882. return MTRR_TYPE_UNCACHABLE;
  1883. }
  1884. if (prev_match != 0xFF)
  1885. return prev_match;
  1886. return mtrr_state->def_type;
  1887. }
  1888. u8 kvm_get_guest_memory_type(struct kvm_vcpu *vcpu, gfn_t gfn)
  1889. {
  1890. u8 mtrr;
  1891. mtrr = get_mtrr_type(&vcpu->arch.mtrr_state, gfn << PAGE_SHIFT,
  1892. (gfn << PAGE_SHIFT) + PAGE_SIZE);
  1893. if (mtrr == 0xfe || mtrr == 0xff)
  1894. mtrr = MTRR_TYPE_WRBACK;
  1895. return mtrr;
  1896. }
  1897. EXPORT_SYMBOL_GPL(kvm_get_guest_memory_type);
  1898. static void __kvm_unsync_page(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp)
  1899. {
  1900. trace_kvm_mmu_unsync_page(sp);
  1901. ++vcpu->kvm->stat.mmu_unsync;
  1902. sp->unsync = 1;
  1903. kvm_mmu_mark_parents_unsync(sp);
  1904. }
  1905. static void kvm_unsync_pages(struct kvm_vcpu *vcpu, gfn_t gfn)
  1906. {
  1907. struct kvm_mmu_page *s;
  1908. struct hlist_node *node;
  1909. for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn, node) {
  1910. if (s->unsync)
  1911. continue;
  1912. WARN_ON(s->role.level != PT_PAGE_TABLE_LEVEL);
  1913. __kvm_unsync_page(vcpu, s);
  1914. }
  1915. }
  1916. static int mmu_need_write_protect(struct kvm_vcpu *vcpu, gfn_t gfn,
  1917. bool can_unsync)
  1918. {
  1919. struct kvm_mmu_page *s;
  1920. struct hlist_node *node;
  1921. bool need_unsync = false;
  1922. for_each_gfn_indirect_valid_sp(vcpu->kvm, s, gfn, node) {
  1923. if (!can_unsync)
  1924. return 1;
  1925. if (s->role.level != PT_PAGE_TABLE_LEVEL)
  1926. return 1;
  1927. if (!need_unsync && !s->unsync) {
  1928. need_unsync = true;
  1929. }
  1930. }
  1931. if (need_unsync)
  1932. kvm_unsync_pages(vcpu, gfn);
  1933. return 0;
  1934. }
  1935. static int set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
  1936. unsigned pte_access, int level,
  1937. gfn_t gfn, pfn_t pfn, bool speculative,
  1938. bool can_unsync, bool host_writable)
  1939. {
  1940. u64 spte;
  1941. int ret = 0;
  1942. if (set_mmio_spte(sptep, gfn, pfn, pte_access))
  1943. return 0;
  1944. spte = PT_PRESENT_MASK;
  1945. if (!speculative)
  1946. spte |= shadow_accessed_mask;
  1947. if (pte_access & ACC_EXEC_MASK)
  1948. spte |= shadow_x_mask;
  1949. else
  1950. spte |= shadow_nx_mask;
  1951. if (pte_access & ACC_USER_MASK)
  1952. spte |= shadow_user_mask;
  1953. if (level > PT_PAGE_TABLE_LEVEL)
  1954. spte |= PT_PAGE_SIZE_MASK;
  1955. if (tdp_enabled)
  1956. spte |= kvm_x86_ops->get_mt_mask(vcpu, gfn,
  1957. kvm_is_mmio_pfn(pfn));
  1958. if (host_writable)
  1959. spte |= SPTE_HOST_WRITEABLE;
  1960. else
  1961. pte_access &= ~ACC_WRITE_MASK;
  1962. spte |= (u64)pfn << PAGE_SHIFT;
  1963. if (pte_access & ACC_WRITE_MASK) {
  1964. /*
  1965. * Other vcpu creates new sp in the window between
  1966. * mapping_level() and acquiring mmu-lock. We can
  1967. * allow guest to retry the access, the mapping can
  1968. * be fixed if guest refault.
  1969. */
  1970. if (level > PT_PAGE_TABLE_LEVEL &&
  1971. has_wrprotected_page(vcpu->kvm, gfn, level))
  1972. goto done;
  1973. spte |= PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE;
  1974. /*
  1975. * Optimization: for pte sync, if spte was writable the hash
  1976. * lookup is unnecessary (and expensive). Write protection
  1977. * is responsibility of mmu_get_page / kvm_sync_page.
  1978. * Same reasoning can be applied to dirty page accounting.
  1979. */
  1980. if (!can_unsync && is_writable_pte(*sptep))
  1981. goto set_pte;
  1982. if (mmu_need_write_protect(vcpu, gfn, can_unsync)) {
  1983. pgprintk("%s: found shadow page for %llx, marking ro\n",
  1984. __func__, gfn);
  1985. ret = 1;
  1986. pte_access &= ~ACC_WRITE_MASK;
  1987. spte &= ~(PT_WRITABLE_MASK | SPTE_MMU_WRITEABLE);
  1988. }
  1989. }
  1990. if (pte_access & ACC_WRITE_MASK)
  1991. mark_page_dirty(vcpu->kvm, gfn);
  1992. set_pte:
  1993. if (mmu_spte_update(sptep, spte))
  1994. kvm_flush_remote_tlbs(vcpu->kvm);
  1995. done:
  1996. return ret;
  1997. }
  1998. static void mmu_set_spte(struct kvm_vcpu *vcpu, u64 *sptep,
  1999. unsigned pt_access, unsigned pte_access,
  2000. int write_fault, int *emulate, int level, gfn_t gfn,
  2001. pfn_t pfn, bool speculative, bool host_writable)
  2002. {
  2003. int was_rmapped = 0;
  2004. int rmap_count;
  2005. pgprintk("%s: spte %llx access %x write_fault %d gfn %llx\n",
  2006. __func__, *sptep, pt_access,
  2007. write_fault, gfn);
  2008. if (is_rmap_spte(*sptep)) {
  2009. /*
  2010. * If we overwrite a PTE page pointer with a 2MB PMD, unlink
  2011. * the parent of the now unreachable PTE.
  2012. */
  2013. if (level > PT_PAGE_TABLE_LEVEL &&
  2014. !is_large_pte(*sptep)) {
  2015. struct kvm_mmu_page *child;
  2016. u64 pte = *sptep;
  2017. child = page_header(pte & PT64_BASE_ADDR_MASK);
  2018. drop_parent_pte(child, sptep);
  2019. kvm_flush_remote_tlbs(vcpu->kvm);
  2020. } else if (pfn != spte_to_pfn(*sptep)) {
  2021. pgprintk("hfn old %llx new %llx\n",
  2022. spte_to_pfn(*sptep), pfn);
  2023. drop_spte(vcpu->kvm, sptep);
  2024. kvm_flush_remote_tlbs(vcpu->kvm);
  2025. } else
  2026. was_rmapped = 1;
  2027. }
  2028. if (set_spte(vcpu, sptep, pte_access, level, gfn, pfn, speculative,
  2029. true, host_writable)) {
  2030. if (write_fault)
  2031. *emulate = 1;
  2032. kvm_mmu_flush_tlb(vcpu);
  2033. }
  2034. if (unlikely(is_mmio_spte(*sptep) && emulate))
  2035. *emulate = 1;
  2036. pgprintk("%s: setting spte %llx\n", __func__, *sptep);
  2037. pgprintk("instantiating %s PTE (%s) at %llx (%llx) addr %p\n",
  2038. is_large_pte(*sptep)? "2MB" : "4kB",
  2039. *sptep & PT_PRESENT_MASK ?"RW":"R", gfn,
  2040. *sptep, sptep);
  2041. if (!was_rmapped && is_large_pte(*sptep))
  2042. ++vcpu->kvm->stat.lpages;
  2043. if (is_shadow_present_pte(*sptep)) {
  2044. if (!was_rmapped) {
  2045. rmap_count = rmap_add(vcpu, sptep, gfn);
  2046. if (rmap_count > RMAP_RECYCLE_THRESHOLD)
  2047. rmap_recycle(vcpu, sptep, gfn);
  2048. }
  2049. }
  2050. kvm_release_pfn_clean(pfn);
  2051. }
  2052. static void nonpaging_new_cr3(struct kvm_vcpu *vcpu)
  2053. {
  2054. mmu_free_roots(vcpu);
  2055. }
  2056. static bool is_rsvd_bits_set(struct kvm_mmu *mmu, u64 gpte, int level)
  2057. {
  2058. int bit7;
  2059. bit7 = (gpte >> 7) & 1;
  2060. return (gpte & mmu->rsvd_bits_mask[bit7][level-1]) != 0;
  2061. }
  2062. static pfn_t pte_prefetch_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn,
  2063. bool no_dirty_log)
  2064. {
  2065. struct kvm_memory_slot *slot;
  2066. slot = gfn_to_memslot_dirty_bitmap(vcpu, gfn, no_dirty_log);
  2067. if (!slot)
  2068. return KVM_PFN_ERR_FAULT;
  2069. return gfn_to_pfn_memslot_atomic(slot, gfn);
  2070. }
  2071. static bool prefetch_invalid_gpte(struct kvm_vcpu *vcpu,
  2072. struct kvm_mmu_page *sp, u64 *spte,
  2073. u64 gpte)
  2074. {
  2075. if (is_rsvd_bits_set(&vcpu->arch.mmu, gpte, PT_PAGE_TABLE_LEVEL))
  2076. goto no_present;
  2077. if (!is_present_gpte(gpte))
  2078. goto no_present;
  2079. if (!(gpte & PT_ACCESSED_MASK))
  2080. goto no_present;
  2081. return false;
  2082. no_present:
  2083. drop_spte(vcpu->kvm, spte);
  2084. return true;
  2085. }
  2086. static int direct_pte_prefetch_many(struct kvm_vcpu *vcpu,
  2087. struct kvm_mmu_page *sp,
  2088. u64 *start, u64 *end)
  2089. {
  2090. struct page *pages[PTE_PREFETCH_NUM];
  2091. unsigned access = sp->role.access;
  2092. int i, ret;
  2093. gfn_t gfn;
  2094. gfn = kvm_mmu_page_get_gfn(sp, start - sp->spt);
  2095. if (!gfn_to_memslot_dirty_bitmap(vcpu, gfn, access & ACC_WRITE_MASK))
  2096. return -1;
  2097. ret = gfn_to_page_many_atomic(vcpu->kvm, gfn, pages, end - start);
  2098. if (ret <= 0)
  2099. return -1;
  2100. for (i = 0; i < ret; i++, gfn++, start++)
  2101. mmu_set_spte(vcpu, start, ACC_ALL, access, 0, NULL,
  2102. sp->role.level, gfn, page_to_pfn(pages[i]),
  2103. true, true);
  2104. return 0;
  2105. }
  2106. static void __direct_pte_prefetch(struct kvm_vcpu *vcpu,
  2107. struct kvm_mmu_page *sp, u64 *sptep)
  2108. {
  2109. u64 *spte, *start = NULL;
  2110. int i;
  2111. WARN_ON(!sp->role.direct);
  2112. i = (sptep - sp->spt) & ~(PTE_PREFETCH_NUM - 1);
  2113. spte = sp->spt + i;
  2114. for (i = 0; i < PTE_PREFETCH_NUM; i++, spte++) {
  2115. if (is_shadow_present_pte(*spte) || spte == sptep) {
  2116. if (!start)
  2117. continue;
  2118. if (direct_pte_prefetch_many(vcpu, sp, start, spte) < 0)
  2119. break;
  2120. start = NULL;
  2121. } else if (!start)
  2122. start = spte;
  2123. }
  2124. }
  2125. static void direct_pte_prefetch(struct kvm_vcpu *vcpu, u64 *sptep)
  2126. {
  2127. struct kvm_mmu_page *sp;
  2128. /*
  2129. * Since it's no accessed bit on EPT, it's no way to
  2130. * distinguish between actually accessed translations
  2131. * and prefetched, so disable pte prefetch if EPT is
  2132. * enabled.
  2133. */
  2134. if (!shadow_accessed_mask)
  2135. return;
  2136. sp = page_header(__pa(sptep));
  2137. if (sp->role.level > PT_PAGE_TABLE_LEVEL)
  2138. return;
  2139. __direct_pte_prefetch(vcpu, sp, sptep);
  2140. }
  2141. static int __direct_map(struct kvm_vcpu *vcpu, gpa_t v, int write,
  2142. int map_writable, int level, gfn_t gfn, pfn_t pfn,
  2143. bool prefault)
  2144. {
  2145. struct kvm_shadow_walk_iterator iterator;
  2146. struct kvm_mmu_page *sp;
  2147. int emulate = 0;
  2148. gfn_t pseudo_gfn;
  2149. for_each_shadow_entry(vcpu, (u64)gfn << PAGE_SHIFT, iterator) {
  2150. if (iterator.level == level) {
  2151. unsigned pte_access = ACC_ALL;
  2152. mmu_set_spte(vcpu, iterator.sptep, ACC_ALL, pte_access,
  2153. write, &emulate, level, gfn, pfn,
  2154. prefault, map_writable);
  2155. direct_pte_prefetch(vcpu, iterator.sptep);
  2156. ++vcpu->stat.pf_fixed;
  2157. break;
  2158. }
  2159. if (!is_shadow_present_pte(*iterator.sptep)) {
  2160. u64 base_addr = iterator.addr;
  2161. base_addr &= PT64_LVL_ADDR_MASK(iterator.level);
  2162. pseudo_gfn = base_addr >> PAGE_SHIFT;
  2163. sp = kvm_mmu_get_page(vcpu, pseudo_gfn, iterator.addr,
  2164. iterator.level - 1,
  2165. 1, ACC_ALL, iterator.sptep);
  2166. mmu_spte_set(iterator.sptep,
  2167. __pa(sp->spt)
  2168. | PT_PRESENT_MASK | PT_WRITABLE_MASK
  2169. | shadow_user_mask | shadow_x_mask
  2170. | shadow_accessed_mask);
  2171. }
  2172. }
  2173. return emulate;
  2174. }
  2175. static void kvm_send_hwpoison_signal(unsigned long address, struct task_struct *tsk)
  2176. {
  2177. siginfo_t info;
  2178. info.si_signo = SIGBUS;
  2179. info.si_errno = 0;
  2180. info.si_code = BUS_MCEERR_AR;
  2181. info.si_addr = (void __user *)address;
  2182. info.si_addr_lsb = PAGE_SHIFT;
  2183. send_sig_info(SIGBUS, &info, tsk);
  2184. }
  2185. static int kvm_handle_bad_page(struct kvm_vcpu *vcpu, gfn_t gfn, pfn_t pfn)
  2186. {
  2187. /*
  2188. * Do not cache the mmio info caused by writing the readonly gfn
  2189. * into the spte otherwise read access on readonly gfn also can
  2190. * caused mmio page fault and treat it as mmio access.
  2191. * Return 1 to tell kvm to emulate it.
  2192. */
  2193. if (pfn == KVM_PFN_ERR_RO_FAULT)
  2194. return 1;
  2195. if (pfn == KVM_PFN_ERR_HWPOISON) {
  2196. kvm_send_hwpoison_signal(gfn_to_hva(vcpu->kvm, gfn), current);
  2197. return 0;
  2198. }
  2199. return -EFAULT;
  2200. }
  2201. static void transparent_hugepage_adjust(struct kvm_vcpu *vcpu,
  2202. gfn_t *gfnp, pfn_t *pfnp, int *levelp)
  2203. {
  2204. pfn_t pfn = *pfnp;
  2205. gfn_t gfn = *gfnp;
  2206. int level = *levelp;
  2207. /*
  2208. * Check if it's a transparent hugepage. If this would be an
  2209. * hugetlbfs page, level wouldn't be set to
  2210. * PT_PAGE_TABLE_LEVEL and there would be no adjustment done
  2211. * here.
  2212. */
  2213. if (!is_error_noslot_pfn(pfn) && !kvm_is_mmio_pfn(pfn) &&
  2214. level == PT_PAGE_TABLE_LEVEL &&
  2215. PageTransCompound(pfn_to_page(pfn)) &&
  2216. !has_wrprotected_page(vcpu->kvm, gfn, PT_DIRECTORY_LEVEL)) {
  2217. unsigned long mask;
  2218. /*
  2219. * mmu_notifier_retry was successful and we hold the
  2220. * mmu_lock here, so the pmd can't become splitting
  2221. * from under us, and in turn
  2222. * __split_huge_page_refcount() can't run from under
  2223. * us and we can safely transfer the refcount from
  2224. * PG_tail to PG_head as we switch the pfn to tail to
  2225. * head.
  2226. */
  2227. *levelp = level = PT_DIRECTORY_LEVEL;
  2228. mask = KVM_PAGES_PER_HPAGE(level) - 1;
  2229. VM_BUG_ON((gfn & mask) != (pfn & mask));
  2230. if (pfn & mask) {
  2231. gfn &= ~mask;
  2232. *gfnp = gfn;
  2233. kvm_release_pfn_clean(pfn);
  2234. pfn &= ~mask;
  2235. kvm_get_pfn(pfn);
  2236. *pfnp = pfn;
  2237. }
  2238. }
  2239. }
  2240. static bool handle_abnormal_pfn(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn,
  2241. pfn_t pfn, unsigned access, int *ret_val)
  2242. {
  2243. bool ret = true;
  2244. /* The pfn is invalid, report the error! */
  2245. if (unlikely(is_error_pfn(pfn))) {
  2246. *ret_val = kvm_handle_bad_page(vcpu, gfn, pfn);
  2247. goto exit;
  2248. }
  2249. if (unlikely(is_noslot_pfn(pfn)))
  2250. vcpu_cache_mmio_info(vcpu, gva, gfn, access);
  2251. ret = false;
  2252. exit:
  2253. return ret;
  2254. }
  2255. static bool page_fault_can_be_fast(struct kvm_vcpu *vcpu, u32 error_code)
  2256. {
  2257. /*
  2258. * #PF can be fast only if the shadow page table is present and it
  2259. * is caused by write-protect, that means we just need change the
  2260. * W bit of the spte which can be done out of mmu-lock.
  2261. */
  2262. if (!(error_code & PFERR_PRESENT_MASK) ||
  2263. !(error_code & PFERR_WRITE_MASK))
  2264. return false;
  2265. return true;
  2266. }
  2267. static bool
  2268. fast_pf_fix_direct_spte(struct kvm_vcpu *vcpu, u64 *sptep, u64 spte)
  2269. {
  2270. struct kvm_mmu_page *sp = page_header(__pa(sptep));
  2271. gfn_t gfn;
  2272. WARN_ON(!sp->role.direct);
  2273. /*
  2274. * The gfn of direct spte is stable since it is calculated
  2275. * by sp->gfn.
  2276. */
  2277. gfn = kvm_mmu_page_get_gfn(sp, sptep - sp->spt);
  2278. if (cmpxchg64(sptep, spte, spte | PT_WRITABLE_MASK) == spte)
  2279. mark_page_dirty(vcpu->kvm, gfn);
  2280. return true;
  2281. }
  2282. /*
  2283. * Return value:
  2284. * - true: let the vcpu to access on the same address again.
  2285. * - false: let the real page fault path to fix it.
  2286. */
  2287. static bool fast_page_fault(struct kvm_vcpu *vcpu, gva_t gva, int level,
  2288. u32 error_code)
  2289. {
  2290. struct kvm_shadow_walk_iterator iterator;
  2291. bool ret = false;
  2292. u64 spte = 0ull;
  2293. if (!page_fault_can_be_fast(vcpu, error_code))
  2294. return false;
  2295. walk_shadow_page_lockless_begin(vcpu);
  2296. for_each_shadow_entry_lockless(vcpu, gva, iterator, spte)
  2297. if (!is_shadow_present_pte(spte) || iterator.level < level)
  2298. break;
  2299. /*
  2300. * If the mapping has been changed, let the vcpu fault on the
  2301. * same address again.
  2302. */
  2303. if (!is_rmap_spte(spte)) {
  2304. ret = true;
  2305. goto exit;
  2306. }
  2307. if (!is_last_spte(spte, level))
  2308. goto exit;
  2309. /*
  2310. * Check if it is a spurious fault caused by TLB lazily flushed.
  2311. *
  2312. * Need not check the access of upper level table entries since
  2313. * they are always ACC_ALL.
  2314. */
  2315. if (is_writable_pte(spte)) {
  2316. ret = true;
  2317. goto exit;
  2318. }
  2319. /*
  2320. * Currently, to simplify the code, only the spte write-protected
  2321. * by dirty-log can be fast fixed.
  2322. */
  2323. if (!spte_is_locklessly_modifiable(spte))
  2324. goto exit;
  2325. /*
  2326. * Currently, fast page fault only works for direct mapping since
  2327. * the gfn is not stable for indirect shadow page.
  2328. * See Documentation/virtual/kvm/locking.txt to get more detail.
  2329. */
  2330. ret = fast_pf_fix_direct_spte(vcpu, iterator.sptep, spte);
  2331. exit:
  2332. trace_fast_page_fault(vcpu, gva, error_code, iterator.sptep,
  2333. spte, ret);
  2334. walk_shadow_page_lockless_end(vcpu);
  2335. return ret;
  2336. }
  2337. static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
  2338. gva_t gva, pfn_t *pfn, bool write, bool *writable);
  2339. static int nonpaging_map(struct kvm_vcpu *vcpu, gva_t v, u32 error_code,
  2340. gfn_t gfn, bool prefault)
  2341. {
  2342. int r;
  2343. int level;
  2344. int force_pt_level;
  2345. pfn_t pfn;
  2346. unsigned long mmu_seq;
  2347. bool map_writable, write = error_code & PFERR_WRITE_MASK;
  2348. force_pt_level = mapping_level_dirty_bitmap(vcpu, gfn);
  2349. if (likely(!force_pt_level)) {
  2350. level = mapping_level(vcpu, gfn);
  2351. /*
  2352. * This path builds a PAE pagetable - so we can map
  2353. * 2mb pages at maximum. Therefore check if the level
  2354. * is larger than that.
  2355. */
  2356. if (level > PT_DIRECTORY_LEVEL)
  2357. level = PT_DIRECTORY_LEVEL;
  2358. gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
  2359. } else
  2360. level = PT_PAGE_TABLE_LEVEL;
  2361. if (fast_page_fault(vcpu, v, level, error_code))
  2362. return 0;
  2363. mmu_seq = vcpu->kvm->mmu_notifier_seq;
  2364. smp_rmb();
  2365. if (try_async_pf(vcpu, prefault, gfn, v, &pfn, write, &map_writable))
  2366. return 0;
  2367. if (handle_abnormal_pfn(vcpu, v, gfn, pfn, ACC_ALL, &r))
  2368. return r;
  2369. spin_lock(&vcpu->kvm->mmu_lock);
  2370. if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
  2371. goto out_unlock;
  2372. kvm_mmu_free_some_pages(vcpu);
  2373. if (likely(!force_pt_level))
  2374. transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
  2375. r = __direct_map(vcpu, v, write, map_writable, level, gfn, pfn,
  2376. prefault);
  2377. spin_unlock(&vcpu->kvm->mmu_lock);
  2378. return r;
  2379. out_unlock:
  2380. spin_unlock(&vcpu->kvm->mmu_lock);
  2381. kvm_release_pfn_clean(pfn);
  2382. return 0;
  2383. }
  2384. static void mmu_free_roots(struct kvm_vcpu *vcpu)
  2385. {
  2386. int i;
  2387. struct kvm_mmu_page *sp;
  2388. LIST_HEAD(invalid_list);
  2389. if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
  2390. return;
  2391. spin_lock(&vcpu->kvm->mmu_lock);
  2392. if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL &&
  2393. (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL ||
  2394. vcpu->arch.mmu.direct_map)) {
  2395. hpa_t root = vcpu->arch.mmu.root_hpa;
  2396. sp = page_header(root);
  2397. --sp->root_count;
  2398. if (!sp->root_count && sp->role.invalid) {
  2399. kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
  2400. kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
  2401. }
  2402. vcpu->arch.mmu.root_hpa = INVALID_PAGE;
  2403. spin_unlock(&vcpu->kvm->mmu_lock);
  2404. return;
  2405. }
  2406. for (i = 0; i < 4; ++i) {
  2407. hpa_t root = vcpu->arch.mmu.pae_root[i];
  2408. if (root) {
  2409. root &= PT64_BASE_ADDR_MASK;
  2410. sp = page_header(root);
  2411. --sp->root_count;
  2412. if (!sp->root_count && sp->role.invalid)
  2413. kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
  2414. &invalid_list);
  2415. }
  2416. vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
  2417. }
  2418. kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
  2419. spin_unlock(&vcpu->kvm->mmu_lock);
  2420. vcpu->arch.mmu.root_hpa = INVALID_PAGE;
  2421. }
  2422. static int mmu_check_root(struct kvm_vcpu *vcpu, gfn_t root_gfn)
  2423. {
  2424. int ret = 0;
  2425. if (!kvm_is_visible_gfn(vcpu->kvm, root_gfn)) {
  2426. kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu);
  2427. ret = 1;
  2428. }
  2429. return ret;
  2430. }
  2431. static int mmu_alloc_direct_roots(struct kvm_vcpu *vcpu)
  2432. {
  2433. struct kvm_mmu_page *sp;
  2434. unsigned i;
  2435. if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
  2436. spin_lock(&vcpu->kvm->mmu_lock);
  2437. kvm_mmu_free_some_pages(vcpu);
  2438. sp = kvm_mmu_get_page(vcpu, 0, 0, PT64_ROOT_LEVEL,
  2439. 1, ACC_ALL, NULL);
  2440. ++sp->root_count;
  2441. spin_unlock(&vcpu->kvm->mmu_lock);
  2442. vcpu->arch.mmu.root_hpa = __pa(sp->spt);
  2443. } else if (vcpu->arch.mmu.shadow_root_level == PT32E_ROOT_LEVEL) {
  2444. for (i = 0; i < 4; ++i) {
  2445. hpa_t root = vcpu->arch.mmu.pae_root[i];
  2446. ASSERT(!VALID_PAGE(root));
  2447. spin_lock(&vcpu->kvm->mmu_lock);
  2448. kvm_mmu_free_some_pages(vcpu);
  2449. sp = kvm_mmu_get_page(vcpu, i << (30 - PAGE_SHIFT),
  2450. i << 30,
  2451. PT32_ROOT_LEVEL, 1, ACC_ALL,
  2452. NULL);
  2453. root = __pa(sp->spt);
  2454. ++sp->root_count;
  2455. spin_unlock(&vcpu->kvm->mmu_lock);
  2456. vcpu->arch.mmu.pae_root[i] = root | PT_PRESENT_MASK;
  2457. }
  2458. vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
  2459. } else
  2460. BUG();
  2461. return 0;
  2462. }
  2463. static int mmu_alloc_shadow_roots(struct kvm_vcpu *vcpu)
  2464. {
  2465. struct kvm_mmu_page *sp;
  2466. u64 pdptr, pm_mask;
  2467. gfn_t root_gfn;
  2468. int i;
  2469. root_gfn = vcpu->arch.mmu.get_cr3(vcpu) >> PAGE_SHIFT;
  2470. if (mmu_check_root(vcpu, root_gfn))
  2471. return 1;
  2472. /*
  2473. * Do we shadow a long mode page table? If so we need to
  2474. * write-protect the guests page table root.
  2475. */
  2476. if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
  2477. hpa_t root = vcpu->arch.mmu.root_hpa;
  2478. ASSERT(!VALID_PAGE(root));
  2479. spin_lock(&vcpu->kvm->mmu_lock);
  2480. kvm_mmu_free_some_pages(vcpu);
  2481. sp = kvm_mmu_get_page(vcpu, root_gfn, 0, PT64_ROOT_LEVEL,
  2482. 0, ACC_ALL, NULL);
  2483. root = __pa(sp->spt);
  2484. ++sp->root_count;
  2485. spin_unlock(&vcpu->kvm->mmu_lock);
  2486. vcpu->arch.mmu.root_hpa = root;
  2487. return 0;
  2488. }
  2489. /*
  2490. * We shadow a 32 bit page table. This may be a legacy 2-level
  2491. * or a PAE 3-level page table. In either case we need to be aware that
  2492. * the shadow page table may be a PAE or a long mode page table.
  2493. */
  2494. pm_mask = PT_PRESENT_MASK;
  2495. if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL)
  2496. pm_mask |= PT_ACCESSED_MASK | PT_WRITABLE_MASK | PT_USER_MASK;
  2497. for (i = 0; i < 4; ++i) {
  2498. hpa_t root = vcpu->arch.mmu.pae_root[i];
  2499. ASSERT(!VALID_PAGE(root));
  2500. if (vcpu->arch.mmu.root_level == PT32E_ROOT_LEVEL) {
  2501. pdptr = vcpu->arch.mmu.get_pdptr(vcpu, i);
  2502. if (!is_present_gpte(pdptr)) {
  2503. vcpu->arch.mmu.pae_root[i] = 0;
  2504. continue;
  2505. }
  2506. root_gfn = pdptr >> PAGE_SHIFT;
  2507. if (mmu_check_root(vcpu, root_gfn))
  2508. return 1;
  2509. }
  2510. spin_lock(&vcpu->kvm->mmu_lock);
  2511. kvm_mmu_free_some_pages(vcpu);
  2512. sp = kvm_mmu_get_page(vcpu, root_gfn, i << 30,
  2513. PT32_ROOT_LEVEL, 0,
  2514. ACC_ALL, NULL);
  2515. root = __pa(sp->spt);
  2516. ++sp->root_count;
  2517. spin_unlock(&vcpu->kvm->mmu_lock);
  2518. vcpu->arch.mmu.pae_root[i] = root | pm_mask;
  2519. }
  2520. vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.pae_root);
  2521. /*
  2522. * If we shadow a 32 bit page table with a long mode page
  2523. * table we enter this path.
  2524. */
  2525. if (vcpu->arch.mmu.shadow_root_level == PT64_ROOT_LEVEL) {
  2526. if (vcpu->arch.mmu.lm_root == NULL) {
  2527. /*
  2528. * The additional page necessary for this is only
  2529. * allocated on demand.
  2530. */
  2531. u64 *lm_root;
  2532. lm_root = (void*)get_zeroed_page(GFP_KERNEL);
  2533. if (lm_root == NULL)
  2534. return 1;
  2535. lm_root[0] = __pa(vcpu->arch.mmu.pae_root) | pm_mask;
  2536. vcpu->arch.mmu.lm_root = lm_root;
  2537. }
  2538. vcpu->arch.mmu.root_hpa = __pa(vcpu->arch.mmu.lm_root);
  2539. }
  2540. return 0;
  2541. }
  2542. static int mmu_alloc_roots(struct kvm_vcpu *vcpu)
  2543. {
  2544. if (vcpu->arch.mmu.direct_map)
  2545. return mmu_alloc_direct_roots(vcpu);
  2546. else
  2547. return mmu_alloc_shadow_roots(vcpu);
  2548. }
  2549. static void mmu_sync_roots(struct kvm_vcpu *vcpu)
  2550. {
  2551. int i;
  2552. struct kvm_mmu_page *sp;
  2553. if (vcpu->arch.mmu.direct_map)
  2554. return;
  2555. if (!VALID_PAGE(vcpu->arch.mmu.root_hpa))
  2556. return;
  2557. vcpu_clear_mmio_info(vcpu, ~0ul);
  2558. kvm_mmu_audit(vcpu, AUDIT_PRE_SYNC);
  2559. if (vcpu->arch.mmu.root_level == PT64_ROOT_LEVEL) {
  2560. hpa_t root = vcpu->arch.mmu.root_hpa;
  2561. sp = page_header(root);
  2562. mmu_sync_children(vcpu, sp);
  2563. kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
  2564. return;
  2565. }
  2566. for (i = 0; i < 4; ++i) {
  2567. hpa_t root = vcpu->arch.mmu.pae_root[i];
  2568. if (root && VALID_PAGE(root)) {
  2569. root &= PT64_BASE_ADDR_MASK;
  2570. sp = page_header(root);
  2571. mmu_sync_children(vcpu, sp);
  2572. }
  2573. }
  2574. kvm_mmu_audit(vcpu, AUDIT_POST_SYNC);
  2575. }
  2576. void kvm_mmu_sync_roots(struct kvm_vcpu *vcpu)
  2577. {
  2578. spin_lock(&vcpu->kvm->mmu_lock);
  2579. mmu_sync_roots(vcpu);
  2580. spin_unlock(&vcpu->kvm->mmu_lock);
  2581. }
  2582. static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr,
  2583. u32 access, struct x86_exception *exception)
  2584. {
  2585. if (exception)
  2586. exception->error_code = 0;
  2587. return vaddr;
  2588. }
  2589. static gpa_t nonpaging_gva_to_gpa_nested(struct kvm_vcpu *vcpu, gva_t vaddr,
  2590. u32 access,
  2591. struct x86_exception *exception)
  2592. {
  2593. if (exception)
  2594. exception->error_code = 0;
  2595. return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access);
  2596. }
  2597. static bool quickly_check_mmio_pf(struct kvm_vcpu *vcpu, u64 addr, bool direct)
  2598. {
  2599. if (direct)
  2600. return vcpu_match_mmio_gpa(vcpu, addr);
  2601. return vcpu_match_mmio_gva(vcpu, addr);
  2602. }
  2603. /*
  2604. * On direct hosts, the last spte is only allows two states
  2605. * for mmio page fault:
  2606. * - It is the mmio spte
  2607. * - It is zapped or it is being zapped.
  2608. *
  2609. * This function completely checks the spte when the last spte
  2610. * is not the mmio spte.
  2611. */
  2612. static bool check_direct_spte_mmio_pf(u64 spte)
  2613. {
  2614. return __check_direct_spte_mmio_pf(spte);
  2615. }
  2616. static u64 walk_shadow_page_get_mmio_spte(struct kvm_vcpu *vcpu, u64 addr)
  2617. {
  2618. struct kvm_shadow_walk_iterator iterator;
  2619. u64 spte = 0ull;
  2620. walk_shadow_page_lockless_begin(vcpu);
  2621. for_each_shadow_entry_lockless(vcpu, addr, iterator, spte)
  2622. if (!is_shadow_present_pte(spte))
  2623. break;
  2624. walk_shadow_page_lockless_end(vcpu);
  2625. return spte;
  2626. }
  2627. /*
  2628. * If it is a real mmio page fault, return 1 and emulat the instruction
  2629. * directly, return 0 to let CPU fault again on the address, -1 is
  2630. * returned if bug is detected.
  2631. */
  2632. int handle_mmio_page_fault_common(struct kvm_vcpu *vcpu, u64 addr, bool direct)
  2633. {
  2634. u64 spte;
  2635. if (quickly_check_mmio_pf(vcpu, addr, direct))
  2636. return 1;
  2637. spte = walk_shadow_page_get_mmio_spte(vcpu, addr);
  2638. if (is_mmio_spte(spte)) {
  2639. gfn_t gfn = get_mmio_spte_gfn(spte);
  2640. unsigned access = get_mmio_spte_access(spte);
  2641. if (direct)
  2642. addr = 0;
  2643. trace_handle_mmio_page_fault(addr, gfn, access);
  2644. vcpu_cache_mmio_info(vcpu, addr, gfn, access);
  2645. return 1;
  2646. }
  2647. /*
  2648. * It's ok if the gva is remapped by other cpus on shadow guest,
  2649. * it's a BUG if the gfn is not a mmio page.
  2650. */
  2651. if (direct && !check_direct_spte_mmio_pf(spte))
  2652. return -1;
  2653. /*
  2654. * If the page table is zapped by other cpus, let CPU fault again on
  2655. * the address.
  2656. */
  2657. return 0;
  2658. }
  2659. EXPORT_SYMBOL_GPL(handle_mmio_page_fault_common);
  2660. static int handle_mmio_page_fault(struct kvm_vcpu *vcpu, u64 addr,
  2661. u32 error_code, bool direct)
  2662. {
  2663. int ret;
  2664. ret = handle_mmio_page_fault_common(vcpu, addr, direct);
  2665. WARN_ON(ret < 0);
  2666. return ret;
  2667. }
  2668. static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
  2669. u32 error_code, bool prefault)
  2670. {
  2671. gfn_t gfn;
  2672. int r;
  2673. pgprintk("%s: gva %lx error %x\n", __func__, gva, error_code);
  2674. if (unlikely(error_code & PFERR_RSVD_MASK))
  2675. return handle_mmio_page_fault(vcpu, gva, error_code, true);
  2676. r = mmu_topup_memory_caches(vcpu);
  2677. if (r)
  2678. return r;
  2679. ASSERT(vcpu);
  2680. ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
  2681. gfn = gva >> PAGE_SHIFT;
  2682. return nonpaging_map(vcpu, gva & PAGE_MASK,
  2683. error_code, gfn, prefault);
  2684. }
  2685. static int kvm_arch_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn)
  2686. {
  2687. struct kvm_arch_async_pf arch;
  2688. arch.token = (vcpu->arch.apf.id++ << 12) | vcpu->vcpu_id;
  2689. arch.gfn = gfn;
  2690. arch.direct_map = vcpu->arch.mmu.direct_map;
  2691. arch.cr3 = vcpu->arch.mmu.get_cr3(vcpu);
  2692. return kvm_setup_async_pf(vcpu, gva, gfn, &arch);
  2693. }
  2694. static bool can_do_async_pf(struct kvm_vcpu *vcpu)
  2695. {
  2696. if (unlikely(!irqchip_in_kernel(vcpu->kvm) ||
  2697. kvm_event_needs_reinjection(vcpu)))
  2698. return false;
  2699. return kvm_x86_ops->interrupt_allowed(vcpu);
  2700. }
  2701. static bool try_async_pf(struct kvm_vcpu *vcpu, bool prefault, gfn_t gfn,
  2702. gva_t gva, pfn_t *pfn, bool write, bool *writable)
  2703. {
  2704. bool async;
  2705. *pfn = gfn_to_pfn_async(vcpu->kvm, gfn, &async, write, writable);
  2706. if (!async)
  2707. return false; /* *pfn has correct page already */
  2708. if (!prefault && can_do_async_pf(vcpu)) {
  2709. trace_kvm_try_async_get_page(gva, gfn);
  2710. if (kvm_find_async_pf_gfn(vcpu, gfn)) {
  2711. trace_kvm_async_pf_doublefault(gva, gfn);
  2712. kvm_make_request(KVM_REQ_APF_HALT, vcpu);
  2713. return true;
  2714. } else if (kvm_arch_setup_async_pf(vcpu, gva, gfn))
  2715. return true;
  2716. }
  2717. *pfn = gfn_to_pfn_prot(vcpu->kvm, gfn, write, writable);
  2718. return false;
  2719. }
  2720. static int tdp_page_fault(struct kvm_vcpu *vcpu, gva_t gpa, u32 error_code,
  2721. bool prefault)
  2722. {
  2723. pfn_t pfn;
  2724. int r;
  2725. int level;
  2726. int force_pt_level;
  2727. gfn_t gfn = gpa >> PAGE_SHIFT;
  2728. unsigned long mmu_seq;
  2729. int write = error_code & PFERR_WRITE_MASK;
  2730. bool map_writable;
  2731. ASSERT(vcpu);
  2732. ASSERT(VALID_PAGE(vcpu->arch.mmu.root_hpa));
  2733. if (unlikely(error_code & PFERR_RSVD_MASK))
  2734. return handle_mmio_page_fault(vcpu, gpa, error_code, true);
  2735. r = mmu_topup_memory_caches(vcpu);
  2736. if (r)
  2737. return r;
  2738. force_pt_level = mapping_level_dirty_bitmap(vcpu, gfn);
  2739. if (likely(!force_pt_level)) {
  2740. level = mapping_level(vcpu, gfn);
  2741. gfn &= ~(KVM_PAGES_PER_HPAGE(level) - 1);
  2742. } else
  2743. level = PT_PAGE_TABLE_LEVEL;
  2744. if (fast_page_fault(vcpu, gpa, level, error_code))
  2745. return 0;
  2746. mmu_seq = vcpu->kvm->mmu_notifier_seq;
  2747. smp_rmb();
  2748. if (try_async_pf(vcpu, prefault, gfn, gpa, &pfn, write, &map_writable))
  2749. return 0;
  2750. if (handle_abnormal_pfn(vcpu, 0, gfn, pfn, ACC_ALL, &r))
  2751. return r;
  2752. spin_lock(&vcpu->kvm->mmu_lock);
  2753. if (mmu_notifier_retry(vcpu->kvm, mmu_seq))
  2754. goto out_unlock;
  2755. kvm_mmu_free_some_pages(vcpu);
  2756. if (likely(!force_pt_level))
  2757. transparent_hugepage_adjust(vcpu, &gfn, &pfn, &level);
  2758. r = __direct_map(vcpu, gpa, write, map_writable,
  2759. level, gfn, pfn, prefault);
  2760. spin_unlock(&vcpu->kvm->mmu_lock);
  2761. return r;
  2762. out_unlock:
  2763. spin_unlock(&vcpu->kvm->mmu_lock);
  2764. kvm_release_pfn_clean(pfn);
  2765. return 0;
  2766. }
  2767. static void nonpaging_free(struct kvm_vcpu *vcpu)
  2768. {
  2769. mmu_free_roots(vcpu);
  2770. }
  2771. static int nonpaging_init_context(struct kvm_vcpu *vcpu,
  2772. struct kvm_mmu *context)
  2773. {
  2774. context->new_cr3 = nonpaging_new_cr3;
  2775. context->page_fault = nonpaging_page_fault;
  2776. context->gva_to_gpa = nonpaging_gva_to_gpa;
  2777. context->free = nonpaging_free;
  2778. context->sync_page = nonpaging_sync_page;
  2779. context->invlpg = nonpaging_invlpg;
  2780. context->update_pte = nonpaging_update_pte;
  2781. context->root_level = 0;
  2782. context->shadow_root_level = PT32E_ROOT_LEVEL;
  2783. context->root_hpa = INVALID_PAGE;
  2784. context->direct_map = true;
  2785. context->nx = false;
  2786. return 0;
  2787. }
  2788. void kvm_mmu_flush_tlb(struct kvm_vcpu *vcpu)
  2789. {
  2790. ++vcpu->stat.tlb_flush;
  2791. kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
  2792. }
  2793. static void paging_new_cr3(struct kvm_vcpu *vcpu)
  2794. {
  2795. pgprintk("%s: cr3 %lx\n", __func__, kvm_read_cr3(vcpu));
  2796. mmu_free_roots(vcpu);
  2797. }
  2798. static unsigned long get_cr3(struct kvm_vcpu *vcpu)
  2799. {
  2800. return kvm_read_cr3(vcpu);
  2801. }
  2802. static void inject_page_fault(struct kvm_vcpu *vcpu,
  2803. struct x86_exception *fault)
  2804. {
  2805. vcpu->arch.mmu.inject_page_fault(vcpu, fault);
  2806. }
  2807. static void paging_free(struct kvm_vcpu *vcpu)
  2808. {
  2809. nonpaging_free(vcpu);
  2810. }
  2811. static inline void protect_clean_gpte(unsigned *access, unsigned gpte)
  2812. {
  2813. unsigned mask;
  2814. BUILD_BUG_ON(PT_WRITABLE_MASK != ACC_WRITE_MASK);
  2815. mask = (unsigned)~ACC_WRITE_MASK;
  2816. /* Allow write access to dirty gptes */
  2817. mask |= (gpte >> (PT_DIRTY_SHIFT - PT_WRITABLE_SHIFT)) & PT_WRITABLE_MASK;
  2818. *access &= mask;
  2819. }
  2820. static bool sync_mmio_spte(u64 *sptep, gfn_t gfn, unsigned access,
  2821. int *nr_present)
  2822. {
  2823. if (unlikely(is_mmio_spte(*sptep))) {
  2824. if (gfn != get_mmio_spte_gfn(*sptep)) {
  2825. mmu_spte_clear_no_track(sptep);
  2826. return true;
  2827. }
  2828. (*nr_present)++;
  2829. mark_mmio_spte(sptep, gfn, access);
  2830. return true;
  2831. }
  2832. return false;
  2833. }
  2834. static inline unsigned gpte_access(struct kvm_vcpu *vcpu, u64 gpte)
  2835. {
  2836. unsigned access;
  2837. access = (gpte & (PT_WRITABLE_MASK | PT_USER_MASK)) | ACC_EXEC_MASK;
  2838. access &= ~(gpte >> PT64_NX_SHIFT);
  2839. return access;
  2840. }
  2841. static inline bool is_last_gpte(struct kvm_mmu *mmu, unsigned level, unsigned gpte)
  2842. {
  2843. unsigned index;
  2844. index = level - 1;
  2845. index |= (gpte & PT_PAGE_SIZE_MASK) >> (PT_PAGE_SIZE_SHIFT - 2);
  2846. return mmu->last_pte_bitmap & (1 << index);
  2847. }
  2848. #define PTTYPE 64
  2849. #include "paging_tmpl.h"
  2850. #undef PTTYPE
  2851. #define PTTYPE 32
  2852. #include "paging_tmpl.h"
  2853. #undef PTTYPE
  2854. static void reset_rsvds_bits_mask(struct kvm_vcpu *vcpu,
  2855. struct kvm_mmu *context)
  2856. {
  2857. int maxphyaddr = cpuid_maxphyaddr(vcpu);
  2858. u64 exb_bit_rsvd = 0;
  2859. if (!context->nx)
  2860. exb_bit_rsvd = rsvd_bits(63, 63);
  2861. switch (context->root_level) {
  2862. case PT32_ROOT_LEVEL:
  2863. /* no rsvd bits for 2 level 4K page table entries */
  2864. context->rsvd_bits_mask[0][1] = 0;
  2865. context->rsvd_bits_mask[0][0] = 0;
  2866. context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
  2867. if (!is_pse(vcpu)) {
  2868. context->rsvd_bits_mask[1][1] = 0;
  2869. break;
  2870. }
  2871. if (is_cpuid_PSE36())
  2872. /* 36bits PSE 4MB page */
  2873. context->rsvd_bits_mask[1][1] = rsvd_bits(17, 21);
  2874. else
  2875. /* 32 bits PSE 4MB page */
  2876. context->rsvd_bits_mask[1][1] = rsvd_bits(13, 21);
  2877. break;
  2878. case PT32E_ROOT_LEVEL:
  2879. context->rsvd_bits_mask[0][2] =
  2880. rsvd_bits(maxphyaddr, 63) |
  2881. rsvd_bits(7, 8) | rsvd_bits(1, 2); /* PDPTE */
  2882. context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
  2883. rsvd_bits(maxphyaddr, 62); /* PDE */
  2884. context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
  2885. rsvd_bits(maxphyaddr, 62); /* PTE */
  2886. context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
  2887. rsvd_bits(maxphyaddr, 62) |
  2888. rsvd_bits(13, 20); /* large page */
  2889. context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
  2890. break;
  2891. case PT64_ROOT_LEVEL:
  2892. context->rsvd_bits_mask[0][3] = exb_bit_rsvd |
  2893. rsvd_bits(maxphyaddr, 51) | rsvd_bits(7, 8);
  2894. context->rsvd_bits_mask[0][2] = exb_bit_rsvd |
  2895. rsvd_bits(maxphyaddr, 51) | rsvd_bits(7, 8);
  2896. context->rsvd_bits_mask[0][1] = exb_bit_rsvd |
  2897. rsvd_bits(maxphyaddr, 51);
  2898. context->rsvd_bits_mask[0][0] = exb_bit_rsvd |
  2899. rsvd_bits(maxphyaddr, 51);
  2900. context->rsvd_bits_mask[1][3] = context->rsvd_bits_mask[0][3];
  2901. context->rsvd_bits_mask[1][2] = exb_bit_rsvd |
  2902. rsvd_bits(maxphyaddr, 51) |
  2903. rsvd_bits(13, 29);
  2904. context->rsvd_bits_mask[1][1] = exb_bit_rsvd |
  2905. rsvd_bits(maxphyaddr, 51) |
  2906. rsvd_bits(13, 20); /* large page */
  2907. context->rsvd_bits_mask[1][0] = context->rsvd_bits_mask[0][0];
  2908. break;
  2909. }
  2910. }
  2911. static void update_permission_bitmask(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu)
  2912. {
  2913. unsigned bit, byte, pfec;
  2914. u8 map;
  2915. bool fault, x, w, u, wf, uf, ff, smep;
  2916. smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
  2917. for (byte = 0; byte < ARRAY_SIZE(mmu->permissions); ++byte) {
  2918. pfec = byte << 1;
  2919. map = 0;
  2920. wf = pfec & PFERR_WRITE_MASK;
  2921. uf = pfec & PFERR_USER_MASK;
  2922. ff = pfec & PFERR_FETCH_MASK;
  2923. for (bit = 0; bit < 8; ++bit) {
  2924. x = bit & ACC_EXEC_MASK;
  2925. w = bit & ACC_WRITE_MASK;
  2926. u = bit & ACC_USER_MASK;
  2927. /* Not really needed: !nx will cause pte.nx to fault */
  2928. x |= !mmu->nx;
  2929. /* Allow supervisor writes if !cr0.wp */
  2930. w |= !is_write_protection(vcpu) && !uf;
  2931. /* Disallow supervisor fetches of user code if cr4.smep */
  2932. x &= !(smep && u && !uf);
  2933. fault = (ff && !x) || (uf && !u) || (wf && !w);
  2934. map |= fault << bit;
  2935. }
  2936. mmu->permissions[byte] = map;
  2937. }
  2938. }
  2939. static void update_last_pte_bitmap(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu)
  2940. {
  2941. u8 map;
  2942. unsigned level, root_level = mmu->root_level;
  2943. const unsigned ps_set_index = 1 << 2; /* bit 2 of index: ps */
  2944. if (root_level == PT32E_ROOT_LEVEL)
  2945. --root_level;
  2946. /* PT_PAGE_TABLE_LEVEL always terminates */
  2947. map = 1 | (1 << ps_set_index);
  2948. for (level = PT_DIRECTORY_LEVEL; level <= root_level; ++level) {
  2949. if (level <= PT_PDPE_LEVEL
  2950. && (mmu->root_level >= PT32E_ROOT_LEVEL || is_pse(vcpu)))
  2951. map |= 1 << (ps_set_index | (level - 1));
  2952. }
  2953. mmu->last_pte_bitmap = map;
  2954. }
  2955. static int paging64_init_context_common(struct kvm_vcpu *vcpu,
  2956. struct kvm_mmu *context,
  2957. int level)
  2958. {
  2959. context->nx = is_nx(vcpu);
  2960. context->root_level = level;
  2961. reset_rsvds_bits_mask(vcpu, context);
  2962. update_permission_bitmask(vcpu, context);
  2963. update_last_pte_bitmap(vcpu, context);
  2964. ASSERT(is_pae(vcpu));
  2965. context->new_cr3 = paging_new_cr3;
  2966. context->page_fault = paging64_page_fault;
  2967. context->gva_to_gpa = paging64_gva_to_gpa;
  2968. context->sync_page = paging64_sync_page;
  2969. context->invlpg = paging64_invlpg;
  2970. context->update_pte = paging64_update_pte;
  2971. context->free = paging_free;
  2972. context->shadow_root_level = level;
  2973. context->root_hpa = INVALID_PAGE;
  2974. context->direct_map = false;
  2975. return 0;
  2976. }
  2977. static int paging64_init_context(struct kvm_vcpu *vcpu,
  2978. struct kvm_mmu *context)
  2979. {
  2980. return paging64_init_context_common(vcpu, context, PT64_ROOT_LEVEL);
  2981. }
  2982. static int paging32_init_context(struct kvm_vcpu *vcpu,
  2983. struct kvm_mmu *context)
  2984. {
  2985. context->nx = false;
  2986. context->root_level = PT32_ROOT_LEVEL;
  2987. reset_rsvds_bits_mask(vcpu, context);
  2988. update_permission_bitmask(vcpu, context);
  2989. update_last_pte_bitmap(vcpu, context);
  2990. context->new_cr3 = paging_new_cr3;
  2991. context->page_fault = paging32_page_fault;
  2992. context->gva_to_gpa = paging32_gva_to_gpa;
  2993. context->free = paging_free;
  2994. context->sync_page = paging32_sync_page;
  2995. context->invlpg = paging32_invlpg;
  2996. context->update_pte = paging32_update_pte;
  2997. context->shadow_root_level = PT32E_ROOT_LEVEL;
  2998. context->root_hpa = INVALID_PAGE;
  2999. context->direct_map = false;
  3000. return 0;
  3001. }
  3002. static int paging32E_init_context(struct kvm_vcpu *vcpu,
  3003. struct kvm_mmu *context)
  3004. {
  3005. return paging64_init_context_common(vcpu, context, PT32E_ROOT_LEVEL);
  3006. }
  3007. static int init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
  3008. {
  3009. struct kvm_mmu *context = vcpu->arch.walk_mmu;
  3010. context->base_role.word = 0;
  3011. context->new_cr3 = nonpaging_new_cr3;
  3012. context->page_fault = tdp_page_fault;
  3013. context->free = nonpaging_free;
  3014. context->sync_page = nonpaging_sync_page;
  3015. context->invlpg = nonpaging_invlpg;
  3016. context->update_pte = nonpaging_update_pte;
  3017. context->shadow_root_level = kvm_x86_ops->get_tdp_level();
  3018. context->root_hpa = INVALID_PAGE;
  3019. context->direct_map = true;
  3020. context->set_cr3 = kvm_x86_ops->set_tdp_cr3;
  3021. context->get_cr3 = get_cr3;
  3022. context->get_pdptr = kvm_pdptr_read;
  3023. context->inject_page_fault = kvm_inject_page_fault;
  3024. if (!is_paging(vcpu)) {
  3025. context->nx = false;
  3026. context->gva_to_gpa = nonpaging_gva_to_gpa;
  3027. context->root_level = 0;
  3028. } else if (is_long_mode(vcpu)) {
  3029. context->nx = is_nx(vcpu);
  3030. context->root_level = PT64_ROOT_LEVEL;
  3031. reset_rsvds_bits_mask(vcpu, context);
  3032. context->gva_to_gpa = paging64_gva_to_gpa;
  3033. } else if (is_pae(vcpu)) {
  3034. context->nx = is_nx(vcpu);
  3035. context->root_level = PT32E_ROOT_LEVEL;
  3036. reset_rsvds_bits_mask(vcpu, context);
  3037. context->gva_to_gpa = paging64_gva_to_gpa;
  3038. } else {
  3039. context->nx = false;
  3040. context->root_level = PT32_ROOT_LEVEL;
  3041. reset_rsvds_bits_mask(vcpu, context);
  3042. context->gva_to_gpa = paging32_gva_to_gpa;
  3043. }
  3044. update_permission_bitmask(vcpu, context);
  3045. update_last_pte_bitmap(vcpu, context);
  3046. return 0;
  3047. }
  3048. int kvm_init_shadow_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *context)
  3049. {
  3050. int r;
  3051. bool smep = kvm_read_cr4_bits(vcpu, X86_CR4_SMEP);
  3052. ASSERT(vcpu);
  3053. ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
  3054. if (!is_paging(vcpu))
  3055. r = nonpaging_init_context(vcpu, context);
  3056. else if (is_long_mode(vcpu))
  3057. r = paging64_init_context(vcpu, context);
  3058. else if (is_pae(vcpu))
  3059. r = paging32E_init_context(vcpu, context);
  3060. else
  3061. r = paging32_init_context(vcpu, context);
  3062. vcpu->arch.mmu.base_role.cr4_pae = !!is_pae(vcpu);
  3063. vcpu->arch.mmu.base_role.cr0_wp = is_write_protection(vcpu);
  3064. vcpu->arch.mmu.base_role.smep_andnot_wp
  3065. = smep && !is_write_protection(vcpu);
  3066. return r;
  3067. }
  3068. EXPORT_SYMBOL_GPL(kvm_init_shadow_mmu);
  3069. static int init_kvm_softmmu(struct kvm_vcpu *vcpu)
  3070. {
  3071. int r = kvm_init_shadow_mmu(vcpu, vcpu->arch.walk_mmu);
  3072. vcpu->arch.walk_mmu->set_cr3 = kvm_x86_ops->set_cr3;
  3073. vcpu->arch.walk_mmu->get_cr3 = get_cr3;
  3074. vcpu->arch.walk_mmu->get_pdptr = kvm_pdptr_read;
  3075. vcpu->arch.walk_mmu->inject_page_fault = kvm_inject_page_fault;
  3076. return r;
  3077. }
  3078. static int init_kvm_nested_mmu(struct kvm_vcpu *vcpu)
  3079. {
  3080. struct kvm_mmu *g_context = &vcpu->arch.nested_mmu;
  3081. g_context->get_cr3 = get_cr3;
  3082. g_context->get_pdptr = kvm_pdptr_read;
  3083. g_context->inject_page_fault = kvm_inject_page_fault;
  3084. /*
  3085. * Note that arch.mmu.gva_to_gpa translates l2_gva to l1_gpa. The
  3086. * translation of l2_gpa to l1_gpa addresses is done using the
  3087. * arch.nested_mmu.gva_to_gpa function. Basically the gva_to_gpa
  3088. * functions between mmu and nested_mmu are swapped.
  3089. */
  3090. if (!is_paging(vcpu)) {
  3091. g_context->nx = false;
  3092. g_context->root_level = 0;
  3093. g_context->gva_to_gpa = nonpaging_gva_to_gpa_nested;
  3094. } else if (is_long_mode(vcpu)) {
  3095. g_context->nx = is_nx(vcpu);
  3096. g_context->root_level = PT64_ROOT_LEVEL;
  3097. reset_rsvds_bits_mask(vcpu, g_context);
  3098. g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
  3099. } else if (is_pae(vcpu)) {
  3100. g_context->nx = is_nx(vcpu);
  3101. g_context->root_level = PT32E_ROOT_LEVEL;
  3102. reset_rsvds_bits_mask(vcpu, g_context);
  3103. g_context->gva_to_gpa = paging64_gva_to_gpa_nested;
  3104. } else {
  3105. g_context->nx = false;
  3106. g_context->root_level = PT32_ROOT_LEVEL;
  3107. reset_rsvds_bits_mask(vcpu, g_context);
  3108. g_context->gva_to_gpa = paging32_gva_to_gpa_nested;
  3109. }
  3110. update_permission_bitmask(vcpu, g_context);
  3111. update_last_pte_bitmap(vcpu, g_context);
  3112. return 0;
  3113. }
  3114. static int init_kvm_mmu(struct kvm_vcpu *vcpu)
  3115. {
  3116. if (mmu_is_nested(vcpu))
  3117. return init_kvm_nested_mmu(vcpu);
  3118. else if (tdp_enabled)
  3119. return init_kvm_tdp_mmu(vcpu);
  3120. else
  3121. return init_kvm_softmmu(vcpu);
  3122. }
  3123. static void destroy_kvm_mmu(struct kvm_vcpu *vcpu)
  3124. {
  3125. ASSERT(vcpu);
  3126. if (VALID_PAGE(vcpu->arch.mmu.root_hpa))
  3127. /* mmu.free() should set root_hpa = INVALID_PAGE */
  3128. vcpu->arch.mmu.free(vcpu);
  3129. }
  3130. int kvm_mmu_reset_context(struct kvm_vcpu *vcpu)
  3131. {
  3132. destroy_kvm_mmu(vcpu);
  3133. return init_kvm_mmu(vcpu);
  3134. }
  3135. EXPORT_SYMBOL_GPL(kvm_mmu_reset_context);
  3136. int kvm_mmu_load(struct kvm_vcpu *vcpu)
  3137. {
  3138. int r;
  3139. r = mmu_topup_memory_caches(vcpu);
  3140. if (r)
  3141. goto out;
  3142. r = mmu_alloc_roots(vcpu);
  3143. spin_lock(&vcpu->kvm->mmu_lock);
  3144. mmu_sync_roots(vcpu);
  3145. spin_unlock(&vcpu->kvm->mmu_lock);
  3146. if (r)
  3147. goto out;
  3148. /* set_cr3() should ensure TLB has been flushed */
  3149. vcpu->arch.mmu.set_cr3(vcpu, vcpu->arch.mmu.root_hpa);
  3150. out:
  3151. return r;
  3152. }
  3153. EXPORT_SYMBOL_GPL(kvm_mmu_load);
  3154. void kvm_mmu_unload(struct kvm_vcpu *vcpu)
  3155. {
  3156. mmu_free_roots(vcpu);
  3157. }
  3158. EXPORT_SYMBOL_GPL(kvm_mmu_unload);
  3159. static void mmu_pte_write_new_pte(struct kvm_vcpu *vcpu,
  3160. struct kvm_mmu_page *sp, u64 *spte,
  3161. const void *new)
  3162. {
  3163. if (sp->role.level != PT_PAGE_TABLE_LEVEL) {
  3164. ++vcpu->kvm->stat.mmu_pde_zapped;
  3165. return;
  3166. }
  3167. ++vcpu->kvm->stat.mmu_pte_updated;
  3168. vcpu->arch.mmu.update_pte(vcpu, sp, spte, new);
  3169. }
  3170. static bool need_remote_flush(u64 old, u64 new)
  3171. {
  3172. if (!is_shadow_present_pte(old))
  3173. return false;
  3174. if (!is_shadow_present_pte(new))
  3175. return true;
  3176. if ((old ^ new) & PT64_BASE_ADDR_MASK)
  3177. return true;
  3178. old ^= PT64_NX_MASK;
  3179. new ^= PT64_NX_MASK;
  3180. return (old & ~new & PT64_PERM_MASK) != 0;
  3181. }
  3182. static void mmu_pte_write_flush_tlb(struct kvm_vcpu *vcpu, bool zap_page,
  3183. bool remote_flush, bool local_flush)
  3184. {
  3185. if (zap_page)
  3186. return;
  3187. if (remote_flush)
  3188. kvm_flush_remote_tlbs(vcpu->kvm);
  3189. else if (local_flush)
  3190. kvm_mmu_flush_tlb(vcpu);
  3191. }
  3192. static u64 mmu_pte_write_fetch_gpte(struct kvm_vcpu *vcpu, gpa_t *gpa,
  3193. const u8 *new, int *bytes)
  3194. {
  3195. u64 gentry;
  3196. int r;
  3197. /*
  3198. * Assume that the pte write on a page table of the same type
  3199. * as the current vcpu paging mode since we update the sptes only
  3200. * when they have the same mode.
  3201. */
  3202. if (is_pae(vcpu) && *bytes == 4) {
  3203. /* Handle a 32-bit guest writing two halves of a 64-bit gpte */
  3204. *gpa &= ~(gpa_t)7;
  3205. *bytes = 8;
  3206. r = kvm_read_guest(vcpu->kvm, *gpa, &gentry, min(*bytes, 8));
  3207. if (r)
  3208. gentry = 0;
  3209. new = (const u8 *)&gentry;
  3210. }
  3211. switch (*bytes) {
  3212. case 4:
  3213. gentry = *(const u32 *)new;
  3214. break;
  3215. case 8:
  3216. gentry = *(const u64 *)new;
  3217. break;
  3218. default:
  3219. gentry = 0;
  3220. break;
  3221. }
  3222. return gentry;
  3223. }
  3224. /*
  3225. * If we're seeing too many writes to a page, it may no longer be a page table,
  3226. * or we may be forking, in which case it is better to unmap the page.
  3227. */
  3228. static bool detect_write_flooding(struct kvm_mmu_page *sp)
  3229. {
  3230. /*
  3231. * Skip write-flooding detected for the sp whose level is 1, because
  3232. * it can become unsync, then the guest page is not write-protected.
  3233. */
  3234. if (sp->role.level == PT_PAGE_TABLE_LEVEL)
  3235. return false;
  3236. return ++sp->write_flooding_count >= 3;
  3237. }
  3238. /*
  3239. * Misaligned accesses are too much trouble to fix up; also, they usually
  3240. * indicate a page is not used as a page table.
  3241. */
  3242. static bool detect_write_misaligned(struct kvm_mmu_page *sp, gpa_t gpa,
  3243. int bytes)
  3244. {
  3245. unsigned offset, pte_size, misaligned;
  3246. pgprintk("misaligned: gpa %llx bytes %d role %x\n",
  3247. gpa, bytes, sp->role.word);
  3248. offset = offset_in_page(gpa);
  3249. pte_size = sp->role.cr4_pae ? 8 : 4;
  3250. /*
  3251. * Sometimes, the OS only writes the last one bytes to update status
  3252. * bits, for example, in linux, andb instruction is used in clear_bit().
  3253. */
  3254. if (!(offset & (pte_size - 1)) && bytes == 1)
  3255. return false;
  3256. misaligned = (offset ^ (offset + bytes - 1)) & ~(pte_size - 1);
  3257. misaligned |= bytes < 4;
  3258. return misaligned;
  3259. }
  3260. static u64 *get_written_sptes(struct kvm_mmu_page *sp, gpa_t gpa, int *nspte)
  3261. {
  3262. unsigned page_offset, quadrant;
  3263. u64 *spte;
  3264. int level;
  3265. page_offset = offset_in_page(gpa);
  3266. level = sp->role.level;
  3267. *nspte = 1;
  3268. if (!sp->role.cr4_pae) {
  3269. page_offset <<= 1; /* 32->64 */
  3270. /*
  3271. * A 32-bit pde maps 4MB while the shadow pdes map
  3272. * only 2MB. So we need to double the offset again
  3273. * and zap two pdes instead of one.
  3274. */
  3275. if (level == PT32_ROOT_LEVEL) {
  3276. page_offset &= ~7; /* kill rounding error */
  3277. page_offset <<= 1;
  3278. *nspte = 2;
  3279. }
  3280. quadrant = page_offset >> PAGE_SHIFT;
  3281. page_offset &= ~PAGE_MASK;
  3282. if (quadrant != sp->role.quadrant)
  3283. return NULL;
  3284. }
  3285. spte = &sp->spt[page_offset / sizeof(*spte)];
  3286. return spte;
  3287. }
  3288. void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
  3289. const u8 *new, int bytes)
  3290. {
  3291. gfn_t gfn = gpa >> PAGE_SHIFT;
  3292. union kvm_mmu_page_role mask = { .word = 0 };
  3293. struct kvm_mmu_page *sp;
  3294. struct hlist_node *node;
  3295. LIST_HEAD(invalid_list);
  3296. u64 entry, gentry, *spte;
  3297. int npte;
  3298. bool remote_flush, local_flush, zap_page;
  3299. /*
  3300. * If we don't have indirect shadow pages, it means no page is
  3301. * write-protected, so we can exit simply.
  3302. */
  3303. if (!ACCESS_ONCE(vcpu->kvm->arch.indirect_shadow_pages))
  3304. return;
  3305. zap_page = remote_flush = local_flush = false;
  3306. pgprintk("%s: gpa %llx bytes %d\n", __func__, gpa, bytes);
  3307. gentry = mmu_pte_write_fetch_gpte(vcpu, &gpa, new, &bytes);
  3308. /*
  3309. * No need to care whether allocation memory is successful
  3310. * or not since pte prefetch is skiped if it does not have
  3311. * enough objects in the cache.
  3312. */
  3313. mmu_topup_memory_caches(vcpu);
  3314. spin_lock(&vcpu->kvm->mmu_lock);
  3315. ++vcpu->kvm->stat.mmu_pte_write;
  3316. kvm_mmu_audit(vcpu, AUDIT_PRE_PTE_WRITE);
  3317. mask.cr0_wp = mask.cr4_pae = mask.nxe = 1;
  3318. for_each_gfn_indirect_valid_sp(vcpu->kvm, sp, gfn, node) {
  3319. if (detect_write_misaligned(sp, gpa, bytes) ||
  3320. detect_write_flooding(sp)) {
  3321. zap_page |= !!kvm_mmu_prepare_zap_page(vcpu->kvm, sp,
  3322. &invalid_list);
  3323. ++vcpu->kvm->stat.mmu_flooded;
  3324. continue;
  3325. }
  3326. spte = get_written_sptes(sp, gpa, &npte);
  3327. if (!spte)
  3328. continue;
  3329. local_flush = true;
  3330. while (npte--) {
  3331. entry = *spte;
  3332. mmu_page_zap_pte(vcpu->kvm, sp, spte);
  3333. if (gentry &&
  3334. !((sp->role.word ^ vcpu->arch.mmu.base_role.word)
  3335. & mask.word) && rmap_can_add(vcpu))
  3336. mmu_pte_write_new_pte(vcpu, sp, spte, &gentry);
  3337. if (!remote_flush && need_remote_flush(entry, *spte))
  3338. remote_flush = true;
  3339. ++spte;
  3340. }
  3341. }
  3342. mmu_pte_write_flush_tlb(vcpu, zap_page, remote_flush, local_flush);
  3343. kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
  3344. kvm_mmu_audit(vcpu, AUDIT_POST_PTE_WRITE);
  3345. spin_unlock(&vcpu->kvm->mmu_lock);
  3346. }
  3347. int kvm_mmu_unprotect_page_virt(struct kvm_vcpu *vcpu, gva_t gva)
  3348. {
  3349. gpa_t gpa;
  3350. int r;
  3351. if (vcpu->arch.mmu.direct_map)
  3352. return 0;
  3353. gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, NULL);
  3354. r = kvm_mmu_unprotect_page(vcpu->kvm, gpa >> PAGE_SHIFT);
  3355. return r;
  3356. }
  3357. EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
  3358. void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
  3359. {
  3360. LIST_HEAD(invalid_list);
  3361. while (kvm_mmu_available_pages(vcpu->kvm) < KVM_REFILL_PAGES &&
  3362. !list_empty(&vcpu->kvm->arch.active_mmu_pages)) {
  3363. struct kvm_mmu_page *sp;
  3364. sp = container_of(vcpu->kvm->arch.active_mmu_pages.prev,
  3365. struct kvm_mmu_page, link);
  3366. kvm_mmu_prepare_zap_page(vcpu->kvm, sp, &invalid_list);
  3367. ++vcpu->kvm->stat.mmu_recycled;
  3368. }
  3369. kvm_mmu_commit_zap_page(vcpu->kvm, &invalid_list);
  3370. }
  3371. static bool is_mmio_page_fault(struct kvm_vcpu *vcpu, gva_t addr)
  3372. {
  3373. if (vcpu->arch.mmu.direct_map || mmu_is_nested(vcpu))
  3374. return vcpu_match_mmio_gpa(vcpu, addr);
  3375. return vcpu_match_mmio_gva(vcpu, addr);
  3376. }
  3377. int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u32 error_code,
  3378. void *insn, int insn_len)
  3379. {
  3380. int r, emulation_type = EMULTYPE_RETRY;
  3381. enum emulation_result er;
  3382. r = vcpu->arch.mmu.page_fault(vcpu, cr2, error_code, false);
  3383. if (r < 0)
  3384. goto out;
  3385. if (!r) {
  3386. r = 1;
  3387. goto out;
  3388. }
  3389. if (is_mmio_page_fault(vcpu, cr2))
  3390. emulation_type = 0;
  3391. er = x86_emulate_instruction(vcpu, cr2, emulation_type, insn, insn_len);
  3392. switch (er) {
  3393. case EMULATE_DONE:
  3394. return 1;
  3395. case EMULATE_DO_MMIO:
  3396. ++vcpu->stat.mmio_exits;
  3397. /* fall through */
  3398. case EMULATE_FAIL:
  3399. return 0;
  3400. default:
  3401. BUG();
  3402. }
  3403. out:
  3404. return r;
  3405. }
  3406. EXPORT_SYMBOL_GPL(kvm_mmu_page_fault);
  3407. void kvm_mmu_invlpg(struct kvm_vcpu *vcpu, gva_t gva)
  3408. {
  3409. vcpu->arch.mmu.invlpg(vcpu, gva);
  3410. kvm_mmu_flush_tlb(vcpu);
  3411. ++vcpu->stat.invlpg;
  3412. }
  3413. EXPORT_SYMBOL_GPL(kvm_mmu_invlpg);
  3414. void kvm_enable_tdp(void)
  3415. {
  3416. tdp_enabled = true;
  3417. }
  3418. EXPORT_SYMBOL_GPL(kvm_enable_tdp);
  3419. void kvm_disable_tdp(void)
  3420. {
  3421. tdp_enabled = false;
  3422. }
  3423. EXPORT_SYMBOL_GPL(kvm_disable_tdp);
  3424. static void free_mmu_pages(struct kvm_vcpu *vcpu)
  3425. {
  3426. free_page((unsigned long)vcpu->arch.mmu.pae_root);
  3427. if (vcpu->arch.mmu.lm_root != NULL)
  3428. free_page((unsigned long)vcpu->arch.mmu.lm_root);
  3429. }
  3430. static int alloc_mmu_pages(struct kvm_vcpu *vcpu)
  3431. {
  3432. struct page *page;
  3433. int i;
  3434. ASSERT(vcpu);
  3435. /*
  3436. * When emulating 32-bit mode, cr3 is only 32 bits even on x86_64.
  3437. * Therefore we need to allocate shadow page tables in the first
  3438. * 4GB of memory, which happens to fit the DMA32 zone.
  3439. */
  3440. page = alloc_page(GFP_KERNEL | __GFP_DMA32);
  3441. if (!page)
  3442. return -ENOMEM;
  3443. vcpu->arch.mmu.pae_root = page_address(page);
  3444. for (i = 0; i < 4; ++i)
  3445. vcpu->arch.mmu.pae_root[i] = INVALID_PAGE;
  3446. return 0;
  3447. }
  3448. int kvm_mmu_create(struct kvm_vcpu *vcpu)
  3449. {
  3450. ASSERT(vcpu);
  3451. vcpu->arch.walk_mmu = &vcpu->arch.mmu;
  3452. vcpu->arch.mmu.root_hpa = INVALID_PAGE;
  3453. vcpu->arch.mmu.translate_gpa = translate_gpa;
  3454. vcpu->arch.nested_mmu.translate_gpa = translate_nested_gpa;
  3455. return alloc_mmu_pages(vcpu);
  3456. }
  3457. int kvm_mmu_setup(struct kvm_vcpu *vcpu)
  3458. {
  3459. ASSERT(vcpu);
  3460. ASSERT(!VALID_PAGE(vcpu->arch.mmu.root_hpa));
  3461. return init_kvm_mmu(vcpu);
  3462. }
  3463. void kvm_mmu_slot_remove_write_access(struct kvm *kvm, int slot)
  3464. {
  3465. struct kvm_memory_slot *memslot;
  3466. gfn_t last_gfn;
  3467. int i;
  3468. memslot = id_to_memslot(kvm->memslots, slot);
  3469. last_gfn = memslot->base_gfn + memslot->npages - 1;
  3470. for (i = PT_PAGE_TABLE_LEVEL;
  3471. i < PT_PAGE_TABLE_LEVEL + KVM_NR_PAGE_SIZES; ++i) {
  3472. unsigned long *rmapp;
  3473. unsigned long last_index, index;
  3474. rmapp = memslot->arch.rmap[i - PT_PAGE_TABLE_LEVEL];
  3475. last_index = gfn_to_index(last_gfn, memslot->base_gfn, i);
  3476. for (index = 0; index <= last_index; ++index, ++rmapp) {
  3477. if (*rmapp)
  3478. __rmap_write_protect(kvm, rmapp, false);
  3479. }
  3480. }
  3481. kvm_flush_remote_tlbs(kvm);
  3482. }
  3483. void kvm_mmu_zap_all(struct kvm *kvm)
  3484. {
  3485. struct kvm_mmu_page *sp, *node;
  3486. LIST_HEAD(invalid_list);
  3487. spin_lock(&kvm->mmu_lock);
  3488. restart:
  3489. list_for_each_entry_safe(sp, node, &kvm->arch.active_mmu_pages, link)
  3490. if (kvm_mmu_prepare_zap_page(kvm, sp, &invalid_list))
  3491. goto restart;
  3492. kvm_mmu_commit_zap_page(kvm, &invalid_list);
  3493. spin_unlock(&kvm->mmu_lock);
  3494. }
  3495. static void kvm_mmu_remove_some_alloc_mmu_pages(struct kvm *kvm,
  3496. struct list_head *invalid_list)
  3497. {
  3498. struct kvm_mmu_page *page;
  3499. if (list_empty(&kvm->arch.active_mmu_pages))
  3500. return;
  3501. page = container_of(kvm->arch.active_mmu_pages.prev,
  3502. struct kvm_mmu_page, link);
  3503. kvm_mmu_prepare_zap_page(kvm, page, invalid_list);
  3504. }
  3505. static int mmu_shrink(struct shrinker *shrink, struct shrink_control *sc)
  3506. {
  3507. struct kvm *kvm;
  3508. int nr_to_scan = sc->nr_to_scan;
  3509. if (nr_to_scan == 0)
  3510. goto out;
  3511. raw_spin_lock(&kvm_lock);
  3512. list_for_each_entry(kvm, &vm_list, vm_list) {
  3513. int idx;
  3514. LIST_HEAD(invalid_list);
  3515. /*
  3516. * Never scan more than sc->nr_to_scan VM instances.
  3517. * Will not hit this condition practically since we do not try
  3518. * to shrink more than one VM and it is very unlikely to see
  3519. * !n_used_mmu_pages so many times.
  3520. */
  3521. if (!nr_to_scan--)
  3522. break;
  3523. /*
  3524. * n_used_mmu_pages is accessed without holding kvm->mmu_lock
  3525. * here. We may skip a VM instance errorneosly, but we do not
  3526. * want to shrink a VM that only started to populate its MMU
  3527. * anyway.
  3528. */
  3529. if (!kvm->arch.n_used_mmu_pages)
  3530. continue;
  3531. idx = srcu_read_lock(&kvm->srcu);
  3532. spin_lock(&kvm->mmu_lock);
  3533. kvm_mmu_remove_some_alloc_mmu_pages(kvm, &invalid_list);
  3534. kvm_mmu_commit_zap_page(kvm, &invalid_list);
  3535. spin_unlock(&kvm->mmu_lock);
  3536. srcu_read_unlock(&kvm->srcu, idx);
  3537. list_move_tail(&kvm->vm_list, &vm_list);
  3538. break;
  3539. }
  3540. raw_spin_unlock(&kvm_lock);
  3541. out:
  3542. return percpu_counter_read_positive(&kvm_total_used_mmu_pages);
  3543. }
  3544. static struct shrinker mmu_shrinker = {
  3545. .shrink = mmu_shrink,
  3546. .seeks = DEFAULT_SEEKS * 10,
  3547. };
  3548. static void mmu_destroy_caches(void)
  3549. {
  3550. if (pte_list_desc_cache)
  3551. kmem_cache_destroy(pte_list_desc_cache);
  3552. if (mmu_page_header_cache)
  3553. kmem_cache_destroy(mmu_page_header_cache);
  3554. }
  3555. int kvm_mmu_module_init(void)
  3556. {
  3557. pte_list_desc_cache = kmem_cache_create("pte_list_desc",
  3558. sizeof(struct pte_list_desc),
  3559. 0, 0, NULL);
  3560. if (!pte_list_desc_cache)
  3561. goto nomem;
  3562. mmu_page_header_cache = kmem_cache_create("kvm_mmu_page_header",
  3563. sizeof(struct kvm_mmu_page),
  3564. 0, 0, NULL);
  3565. if (!mmu_page_header_cache)
  3566. goto nomem;
  3567. if (percpu_counter_init(&kvm_total_used_mmu_pages, 0))
  3568. goto nomem;
  3569. register_shrinker(&mmu_shrinker);
  3570. return 0;
  3571. nomem:
  3572. mmu_destroy_caches();
  3573. return -ENOMEM;
  3574. }
  3575. /*
  3576. * Caculate mmu pages needed for kvm.
  3577. */
  3578. unsigned int kvm_mmu_calculate_mmu_pages(struct kvm *kvm)
  3579. {
  3580. unsigned int nr_mmu_pages;
  3581. unsigned int nr_pages = 0;
  3582. struct kvm_memslots *slots;
  3583. struct kvm_memory_slot *memslot;
  3584. slots = kvm_memslots(kvm);
  3585. kvm_for_each_memslot(memslot, slots)
  3586. nr_pages += memslot->npages;
  3587. nr_mmu_pages = nr_pages * KVM_PERMILLE_MMU_PAGES / 1000;
  3588. nr_mmu_pages = max(nr_mmu_pages,
  3589. (unsigned int) KVM_MIN_ALLOC_MMU_PAGES);
  3590. return nr_mmu_pages;
  3591. }
  3592. int kvm_mmu_get_spte_hierarchy(struct kvm_vcpu *vcpu, u64 addr, u64 sptes[4])
  3593. {
  3594. struct kvm_shadow_walk_iterator iterator;
  3595. u64 spte;
  3596. int nr_sptes = 0;
  3597. walk_shadow_page_lockless_begin(vcpu);
  3598. for_each_shadow_entry_lockless(vcpu, addr, iterator, spte) {
  3599. sptes[iterator.level-1] = spte;
  3600. nr_sptes++;
  3601. if (!is_shadow_present_pte(spte))
  3602. break;
  3603. }
  3604. walk_shadow_page_lockless_end(vcpu);
  3605. return nr_sptes;
  3606. }
  3607. EXPORT_SYMBOL_GPL(kvm_mmu_get_spte_hierarchy);
  3608. void kvm_mmu_destroy(struct kvm_vcpu *vcpu)
  3609. {
  3610. ASSERT(vcpu);
  3611. destroy_kvm_mmu(vcpu);
  3612. free_mmu_pages(vcpu);
  3613. mmu_free_memory_caches(vcpu);
  3614. }
  3615. void kvm_mmu_module_exit(void)
  3616. {
  3617. mmu_destroy_caches();
  3618. percpu_counter_destroy(&kvm_total_used_mmu_pages);
  3619. unregister_shrinker(&mmu_shrinker);
  3620. mmu_audit_disable();
  3621. }