Process.cpp 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809
  1. /*
  2. * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright notice, this
  9. * list of conditions and the following disclaimer.
  10. *
  11. * 2. Redistributions in binary form must reproduce the above copyright notice,
  12. * this list of conditions and the following disclaimer in the documentation
  13. * and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  18. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  19. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  20. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  21. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  22. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  23. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  24. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. #include <AK/Demangle.h>
  27. #include <AK/FileSystemPath.h>
  28. #include <AK/ScopeGuard.h>
  29. #include <AK/StdLibExtras.h>
  30. #include <AK/StringBuilder.h>
  31. #include <AK/Time.h>
  32. #include <AK/Types.h>
  33. #include <Kernel/Arch/i386/CPU.h>
  34. #include <Kernel/Devices/BlockDevice.h>
  35. #include <Kernel/Devices/KeyboardDevice.h>
  36. #include <Kernel/Devices/NullDevice.h>
  37. #include <Kernel/Devices/PCSpeaker.h>
  38. #include <Kernel/Devices/PIT.h>
  39. #include <Kernel/Devices/RandomDevice.h>
  40. #include <Kernel/FileSystem/Custody.h>
  41. #include <Kernel/FileSystem/DevPtsFS.h>
  42. #include <Kernel/FileSystem/Ext2FileSystem.h>
  43. #include <Kernel/FileSystem/FIFO.h>
  44. #include <Kernel/FileSystem/FileDescription.h>
  45. #include <Kernel/FileSystem/InodeWatcher.h>
  46. #include <Kernel/FileSystem/ProcFS.h>
  47. #include <Kernel/FileSystem/TmpFS.h>
  48. #include <Kernel/FileSystem/VirtualFileSystem.h>
  49. #include <Kernel/Heap/kmalloc.h>
  50. #include <Kernel/KBufferBuilder.h>
  51. #include <Kernel/KSyms.h>
  52. #include <Kernel/KernelInfoPage.h>
  53. #include <Kernel/Module.h>
  54. #include <Kernel/Multiboot.h>
  55. #include <Kernel/Net/Socket.h>
  56. #include <Kernel/PerformanceEventBuffer.h>
  57. #include <Kernel/Process.h>
  58. #include <Kernel/ProcessTracer.h>
  59. #include <Kernel/Profiling.h>
  60. #include <Kernel/RTC.h>
  61. #include <Kernel/Random.h>
  62. #include <Kernel/Scheduler.h>
  63. #include <Kernel/SharedBuffer.h>
  64. #include <Kernel/Syscall.h>
  65. #include <Kernel/TTY/MasterPTY.h>
  66. #include <Kernel/TTY/TTY.h>
  67. #include <Kernel/Thread.h>
  68. #include <Kernel/VM/PageDirectory.h>
  69. #include <Kernel/VM/PrivateInodeVMObject.h>
  70. #include <Kernel/VM/PurgeableVMObject.h>
  71. #include <Kernel/VM/SharedInodeVMObject.h>
  72. #include <LibBareMetal/IO.h>
  73. #include <LibBareMetal/Output/Console.h>
  74. #include <LibBareMetal/StdLib.h>
  75. #include <LibC/errno_numbers.h>
  76. #include <LibC/limits.h>
  77. #include <LibC/signal_numbers.h>
  78. #include <LibELF/ELFLoader.h>
  79. //#define PROCESS_DEBUG
  80. //#define DEBUG_POLL_SELECT
  81. //#define DEBUG_IO
  82. //#define TASK_DEBUG
  83. //#define FORK_DEBUG
  84. //#define EXEC_DEBUG
  85. //#define SIGNAL_DEBUG
  86. //#define SHARED_BUFFER_DEBUG
  87. namespace Kernel {
  88. static void create_signal_trampolines();
  89. static void create_kernel_info_page();
  90. Process* Process::current;
  91. static pid_t next_pid;
  92. InlineLinkedList<Process>* g_processes;
  93. static String* s_hostname;
  94. static Lock* s_hostname_lock;
  95. static VirtualAddress s_info_page_address_for_userspace;
  96. static VirtualAddress s_info_page_address_for_kernel;
  97. VirtualAddress g_return_to_ring3_from_signal_trampoline;
  98. HashMap<String, OwnPtr<Module>>* g_modules;
  99. pid_t Process::allocate_pid()
  100. {
  101. InterruptDisabler disabler;
  102. return next_pid++;
  103. }
  104. void Process::initialize()
  105. {
  106. g_modules = new HashMap<String, OwnPtr<Module>>;
  107. next_pid = 0;
  108. g_processes = new InlineLinkedList<Process>;
  109. s_hostname = new String("courage");
  110. s_hostname_lock = new Lock;
  111. create_signal_trampolines();
  112. create_kernel_info_page();
  113. }
  114. void Process::update_info_page_timestamp(const timeval& tv)
  115. {
  116. auto* info_page = (KernelInfoPage*)s_info_page_address_for_kernel.as_ptr();
  117. info_page->serial++;
  118. const_cast<timeval&>(info_page->now) = tv;
  119. }
  120. Vector<pid_t> Process::all_pids()
  121. {
  122. Vector<pid_t> pids;
  123. InterruptDisabler disabler;
  124. pids.ensure_capacity((int)g_processes->size_slow());
  125. for (auto& process : *g_processes)
  126. pids.append(process.pid());
  127. return pids;
  128. }
  129. Vector<Process*> Process::all_processes()
  130. {
  131. Vector<Process*> processes;
  132. InterruptDisabler disabler;
  133. processes.ensure_capacity((int)g_processes->size_slow());
  134. for (auto& process : *g_processes)
  135. processes.append(&process);
  136. return processes;
  137. }
  138. bool Process::in_group(gid_t gid) const
  139. {
  140. return m_gid == gid || m_extra_gids.contains(gid);
  141. }
  142. Range Process::allocate_range(VirtualAddress vaddr, size_t size, size_t alignment)
  143. {
  144. vaddr.mask(PAGE_MASK);
  145. size = PAGE_ROUND_UP(size);
  146. if (vaddr.is_null())
  147. return page_directory().range_allocator().allocate_anywhere(size, alignment);
  148. return page_directory().range_allocator().allocate_specific(vaddr, size);
  149. }
  150. static unsigned prot_to_region_access_flags(int prot)
  151. {
  152. unsigned access = 0;
  153. if (prot & PROT_READ)
  154. access |= Region::Access::Read;
  155. if (prot & PROT_WRITE)
  156. access |= Region::Access::Write;
  157. if (prot & PROT_EXEC)
  158. access |= Region::Access::Execute;
  159. return access;
  160. }
  161. Region& Process::allocate_split_region(const Region& source_region, const Range& range, size_t offset_in_vmobject)
  162. {
  163. auto& region = add_region(Region::create_user_accessible(range, source_region.vmobject(), offset_in_vmobject, source_region.name(), source_region.access()));
  164. region.set_mmap(source_region.is_mmap());
  165. region.set_stack(source_region.is_stack());
  166. size_t page_offset_in_source_region = (offset_in_vmobject - source_region.offset_in_vmobject()) / PAGE_SIZE;
  167. for (size_t i = 0; i < region.page_count(); ++i) {
  168. if (source_region.should_cow(page_offset_in_source_region + i))
  169. region.set_should_cow(i, true);
  170. }
  171. return region;
  172. }
  173. Region* Process::allocate_region(const Range& range, const String& name, int prot, bool commit)
  174. {
  175. ASSERT(range.is_valid());
  176. auto vmobject = AnonymousVMObject::create_with_size(range.size());
  177. auto& region = add_region(Region::create_user_accessible(range, vmobject, 0, name, prot_to_region_access_flags(prot)));
  178. region.map(page_directory());
  179. if (commit)
  180. region.commit();
  181. return &region;
  182. }
  183. Region* Process::allocate_region(VirtualAddress vaddr, size_t size, const String& name, int prot, bool commit)
  184. {
  185. auto range = allocate_range(vaddr, size);
  186. if (!range.is_valid())
  187. return nullptr;
  188. return allocate_region(range, name, prot, commit);
  189. }
  190. Region* Process::allocate_region_with_vmobject(const Range& range, NonnullRefPtr<VMObject> vmobject, size_t offset_in_vmobject, const String& name, int prot, bool user_accessible)
  191. {
  192. ASSERT(range.is_valid());
  193. size_t end_in_vmobject = offset_in_vmobject + range.size();
  194. if (end_in_vmobject <= offset_in_vmobject) {
  195. dbg() << "allocate_region_with_vmobject: Overflow (offset + size)";
  196. return nullptr;
  197. }
  198. if (offset_in_vmobject >= vmobject->size()) {
  199. dbg() << "allocate_region_with_vmobject: Attempt to allocate a region with an offset past the end of its VMObject.";
  200. return nullptr;
  201. }
  202. if (end_in_vmobject > vmobject->size()) {
  203. dbg() << "allocate_region_with_vmobject: Attempt to allocate a region with an end past the end of its VMObject.";
  204. return nullptr;
  205. }
  206. offset_in_vmobject &= PAGE_MASK;
  207. Region* region;
  208. if (user_accessible)
  209. region = &add_region(Region::create_user_accessible(range, move(vmobject), offset_in_vmobject, name, prot_to_region_access_flags(prot)));
  210. else
  211. region = &add_region(Region::create_kernel_only(range, move(vmobject), offset_in_vmobject, name, prot_to_region_access_flags(prot)));
  212. region->map(page_directory());
  213. return region;
  214. }
  215. Region* Process::allocate_region_with_vmobject(VirtualAddress vaddr, size_t size, NonnullRefPtr<VMObject> vmobject, size_t offset_in_vmobject, const String& name, int prot, bool user_accessible)
  216. {
  217. auto range = allocate_range(vaddr, size);
  218. if (!range.is_valid())
  219. return nullptr;
  220. return allocate_region_with_vmobject(range, move(vmobject), offset_in_vmobject, name, prot, user_accessible);
  221. }
  222. bool Process::deallocate_region(Region& region)
  223. {
  224. InterruptDisabler disabler;
  225. if (m_region_lookup_cache.region == &region)
  226. m_region_lookup_cache.region = nullptr;
  227. for (size_t i = 0; i < m_regions.size(); ++i) {
  228. if (&m_regions[i] == &region) {
  229. m_regions.unstable_remove(i);
  230. return true;
  231. }
  232. }
  233. return false;
  234. }
  235. Region* Process::region_from_range(const Range& range)
  236. {
  237. if (m_region_lookup_cache.range == range && m_region_lookup_cache.region)
  238. return m_region_lookup_cache.region;
  239. size_t size = PAGE_ROUND_UP(range.size());
  240. for (auto& region : m_regions) {
  241. if (region.vaddr() == range.base() && region.size() == size) {
  242. m_region_lookup_cache.range = range;
  243. m_region_lookup_cache.region = region.make_weak_ptr();
  244. return &region;
  245. }
  246. }
  247. return nullptr;
  248. }
  249. Region* Process::region_containing(const Range& range)
  250. {
  251. for (auto& region : m_regions) {
  252. if (region.contains(range))
  253. return &region;
  254. }
  255. return nullptr;
  256. }
  257. int Process::sys$set_mmap_name(const Syscall::SC_set_mmap_name_params* user_params)
  258. {
  259. REQUIRE_PROMISE(stdio);
  260. Syscall::SC_set_mmap_name_params params;
  261. if (!validate_read_and_copy_typed(&params, user_params))
  262. return -EFAULT;
  263. if (params.name.length > PATH_MAX)
  264. return -ENAMETOOLONG;
  265. auto name = validate_and_copy_string_from_user(params.name);
  266. if (name.is_null())
  267. return -EFAULT;
  268. auto* region = region_from_range({ VirtualAddress(params.addr), params.size });
  269. if (!region)
  270. return -EINVAL;
  271. if (!region->is_mmap())
  272. return -EPERM;
  273. region->set_name(name);
  274. return 0;
  275. }
  276. static bool validate_mmap_prot(int prot, bool map_stack)
  277. {
  278. bool readable = prot & PROT_READ;
  279. bool writable = prot & PROT_WRITE;
  280. bool executable = prot & PROT_EXEC;
  281. if (writable && executable)
  282. return false;
  283. if (map_stack) {
  284. if (executable)
  285. return false;
  286. if (!readable || !writable)
  287. return false;
  288. }
  289. return true;
  290. }
  291. static bool validate_inode_mmap_prot(const Process& process, int prot, const Inode& inode, bool map_shared)
  292. {
  293. auto metadata = inode.metadata();
  294. if ((prot & PROT_READ) && !metadata.may_read(process))
  295. return false;
  296. if (map_shared) {
  297. if ((prot & PROT_WRITE) && !metadata.may_write(process))
  298. return false;
  299. InterruptDisabler disabler;
  300. if (inode.shared_vmobject()) {
  301. if ((prot & PROT_EXEC) && inode.shared_vmobject()->writable_mappings())
  302. return false;
  303. if ((prot & PROT_WRITE) && inode.shared_vmobject()->executable_mappings())
  304. return false;
  305. }
  306. }
  307. return true;
  308. }
  309. // Carve out a virtual address range from a region and return the two regions on either side
  310. Vector<Region*, 2> Process::split_region_around_range(const Region& source_region, const Range& desired_range)
  311. {
  312. Range old_region_range = source_region.range();
  313. auto remaining_ranges_after_unmap = old_region_range.carve(desired_range);
  314. ASSERT(!remaining_ranges_after_unmap.is_empty());
  315. auto make_replacement_region = [&](const Range& new_range) -> Region& {
  316. ASSERT(new_range.base() >= old_region_range.base());
  317. ASSERT(new_range.end() <= old_region_range.end());
  318. size_t new_range_offset_in_vmobject = source_region.offset_in_vmobject() + (new_range.base().get() - old_region_range.base().get());
  319. return allocate_split_region(source_region, new_range, new_range_offset_in_vmobject);
  320. };
  321. Vector<Region*, 2> new_regions;
  322. for (auto& new_range : remaining_ranges_after_unmap) {
  323. new_regions.unchecked_append(&make_replacement_region(new_range));
  324. }
  325. return new_regions;
  326. }
  327. void* Process::sys$mmap(const Syscall::SC_mmap_params* user_params)
  328. {
  329. REQUIRE_PROMISE(stdio);
  330. Syscall::SC_mmap_params params;
  331. if (!validate_read_and_copy_typed(&params, user_params))
  332. return (void*)-EFAULT;
  333. void* addr = (void*)params.addr;
  334. size_t size = params.size;
  335. size_t alignment = params.alignment;
  336. int prot = params.prot;
  337. int flags = params.flags;
  338. int fd = params.fd;
  339. int offset = params.offset;
  340. if (alignment & ~PAGE_MASK)
  341. return (void*)-EINVAL;
  342. if (!is_user_range(VirtualAddress(addr), size))
  343. return (void*)-EFAULT;
  344. String name;
  345. if (params.name.characters) {
  346. if (params.name.length > PATH_MAX)
  347. return (void*)-ENAMETOOLONG;
  348. name = validate_and_copy_string_from_user(params.name);
  349. if (name.is_null())
  350. return (void*)-EFAULT;
  351. }
  352. if (size == 0)
  353. return (void*)-EINVAL;
  354. if ((uintptr_t)addr & ~PAGE_MASK)
  355. return (void*)-EINVAL;
  356. bool map_shared = flags & MAP_SHARED;
  357. bool map_anonymous = flags & MAP_ANONYMOUS;
  358. bool map_purgeable = flags & MAP_PURGEABLE;
  359. bool map_private = flags & MAP_PRIVATE;
  360. bool map_stack = flags & MAP_STACK;
  361. bool map_fixed = flags & MAP_FIXED;
  362. if (map_shared && map_private)
  363. return (void*)-EINVAL;
  364. if (!map_shared && !map_private)
  365. return (void*)-EINVAL;
  366. if (!validate_mmap_prot(prot, map_stack))
  367. return (void*)-EINVAL;
  368. if (map_stack && (!map_private || !map_anonymous))
  369. return (void*)-EINVAL;
  370. Region* region = nullptr;
  371. auto range = allocate_range(VirtualAddress(addr), size, alignment);
  372. if (!range.is_valid())
  373. return (void*)-ENOMEM;
  374. if (map_purgeable) {
  375. auto vmobject = PurgeableVMObject::create_with_size(size);
  376. region = allocate_region_with_vmobject(range, vmobject, 0, !name.is_null() ? name : "mmap (purgeable)", prot);
  377. if (!region && (!map_fixed && addr != 0))
  378. region = allocate_region_with_vmobject({}, size, vmobject, 0, !name.is_null() ? name : "mmap (purgeable)", prot);
  379. } else if (map_anonymous) {
  380. region = allocate_region(range, !name.is_null() ? name : "mmap", prot, false);
  381. if (!region && (!map_fixed && addr != 0))
  382. region = allocate_region(allocate_range({}, size), !name.is_null() ? name : "mmap", prot, false);
  383. } else {
  384. if (offset < 0)
  385. return (void*)-EINVAL;
  386. if (static_cast<size_t>(offset) & ~PAGE_MASK)
  387. return (void*)-EINVAL;
  388. auto description = file_description(fd);
  389. if (!description)
  390. return (void*)-EBADF;
  391. if (description->is_directory())
  392. return (void*)-ENODEV;
  393. if ((prot & PROT_READ) && !description->is_readable())
  394. return (void*)-EACCES;
  395. if (map_shared) {
  396. if ((prot & PROT_WRITE) && !description->is_writable())
  397. return (void*)-EACCES;
  398. }
  399. if (description->inode()) {
  400. if (!validate_inode_mmap_prot(*this, prot, *description->inode(), map_shared))
  401. return (void*)-EACCES;
  402. }
  403. auto region_or_error = description->mmap(*this, VirtualAddress(addr), static_cast<size_t>(offset), size, prot, map_shared);
  404. if (region_or_error.is_error()) {
  405. // Fail if MAP_FIXED or address is 0, retry otherwise
  406. if (map_fixed || addr == 0)
  407. return (void*)(int)region_or_error.error();
  408. region_or_error = description->mmap(*this, {}, static_cast<size_t>(offset), size, prot, map_shared);
  409. }
  410. if (region_or_error.is_error())
  411. return (void*)(int)region_or_error.error();
  412. region = region_or_error.value();
  413. }
  414. if (!region)
  415. return (void*)-ENOMEM;
  416. region->set_mmap(true);
  417. if (map_shared)
  418. region->set_shared(true);
  419. if (map_stack)
  420. region->set_stack(true);
  421. if (!name.is_null())
  422. region->set_name(name);
  423. return region->vaddr().as_ptr();
  424. }
  425. int Process::sys$munmap(void* addr, size_t size)
  426. {
  427. REQUIRE_PROMISE(stdio);
  428. if (!size)
  429. return -EINVAL;
  430. if (!is_user_range(VirtualAddress(addr), size))
  431. return -EFAULT;
  432. Range range_to_unmap { VirtualAddress(addr), size };
  433. if (auto* whole_region = region_from_range(range_to_unmap)) {
  434. if (!whole_region->is_mmap())
  435. return -EPERM;
  436. bool success = deallocate_region(*whole_region);
  437. ASSERT(success);
  438. return 0;
  439. }
  440. if (auto* old_region = region_containing(range_to_unmap)) {
  441. if (!old_region->is_mmap())
  442. return -EPERM;
  443. auto new_regions = split_region_around_range(*old_region, range_to_unmap);
  444. // We manually unmap the old region here, specifying that we *don't* want the VM deallocated.
  445. old_region->unmap(Region::ShouldDeallocateVirtualMemoryRange::No);
  446. deallocate_region(*old_region);
  447. // Instead we give back the unwanted VM manually.
  448. page_directory().range_allocator().deallocate(range_to_unmap);
  449. // And finally we map the new region(s) using our page directory (they were just allocated and don't have one).
  450. for (auto* new_region : new_regions) {
  451. new_region->map(page_directory());
  452. }
  453. return 0;
  454. }
  455. // FIXME: We should also support munmap() across multiple regions. (#175)
  456. return -EINVAL;
  457. }
  458. int Process::sys$mprotect(void* addr, size_t size, int prot)
  459. {
  460. REQUIRE_PROMISE(stdio);
  461. if (!size)
  462. return -EINVAL;
  463. if (!is_user_range(VirtualAddress(addr), size))
  464. return -EFAULT;
  465. Range range_to_mprotect = { VirtualAddress(addr), size };
  466. if (auto* whole_region = region_from_range(range_to_mprotect)) {
  467. if (!whole_region->is_mmap())
  468. return -EPERM;
  469. if (!validate_mmap_prot(prot, whole_region->is_stack()))
  470. return -EINVAL;
  471. if (whole_region->access() == prot_to_region_access_flags(prot))
  472. return 0;
  473. if (whole_region->vmobject().is_inode()
  474. && !validate_inode_mmap_prot(*this, prot, static_cast<const InodeVMObject&>(whole_region->vmobject()).inode(), whole_region->is_shared())) {
  475. return -EACCES;
  476. }
  477. whole_region->set_readable(prot & PROT_READ);
  478. whole_region->set_writable(prot & PROT_WRITE);
  479. whole_region->set_executable(prot & PROT_EXEC);
  480. whole_region->remap();
  481. return 0;
  482. }
  483. // Check if we can carve out the desired range from an existing region
  484. if (auto* old_region = region_containing(range_to_mprotect)) {
  485. if (!old_region->is_mmap())
  486. return -EPERM;
  487. if (!validate_mmap_prot(prot, old_region->is_stack()))
  488. return -EINVAL;
  489. if (old_region->access() == prot_to_region_access_flags(prot))
  490. return 0;
  491. if (old_region->vmobject().is_inode()
  492. && !validate_inode_mmap_prot(*this, prot, static_cast<const InodeVMObject&>(old_region->vmobject()).inode(), old_region->is_shared())) {
  493. return -EACCES;
  494. }
  495. // This vector is the region(s) adjacent to our range.
  496. // We need to allocate a new region for the range we wanted to change permission bits on.
  497. auto adjacent_regions = split_region_around_range(*old_region, range_to_mprotect);
  498. size_t new_range_offset_in_vmobject = old_region->offset_in_vmobject() + (range_to_mprotect.base().get() - old_region->range().base().get());
  499. auto& new_region = allocate_split_region(*old_region, range_to_mprotect, new_range_offset_in_vmobject);
  500. new_region.set_readable(prot & PROT_READ);
  501. new_region.set_writable(prot & PROT_WRITE);
  502. new_region.set_executable(prot & PROT_EXEC);
  503. // Unmap the old region here, specifying that we *don't* want the VM deallocated.
  504. old_region->unmap(Region::ShouldDeallocateVirtualMemoryRange::No);
  505. deallocate_region(*old_region);
  506. // Map the new regions using our page directory (they were just allocated and don't have one).
  507. for (auto* adjacent_region : adjacent_regions) {
  508. adjacent_region->map(page_directory());
  509. }
  510. new_region.map(page_directory());
  511. return 0;
  512. }
  513. // FIXME: We should also support mprotect() across multiple regions. (#175) (#964)
  514. return -EINVAL;
  515. }
  516. int Process::sys$madvise(void* address, size_t size, int advice)
  517. {
  518. REQUIRE_PROMISE(stdio);
  519. if (!size)
  520. return -EINVAL;
  521. if (!is_user_range(VirtualAddress(address), size))
  522. return -EFAULT;
  523. auto* region = region_from_range({ VirtualAddress(address), size });
  524. if (!region)
  525. return -EINVAL;
  526. if (!region->is_mmap())
  527. return -EPERM;
  528. if ((advice & MADV_SET_VOLATILE) && (advice & MADV_SET_NONVOLATILE))
  529. return -EINVAL;
  530. if (advice & MADV_SET_VOLATILE) {
  531. if (!region->vmobject().is_purgeable())
  532. return -EPERM;
  533. auto& vmobject = static_cast<PurgeableVMObject&>(region->vmobject());
  534. vmobject.set_volatile(true);
  535. return 0;
  536. }
  537. if (advice & MADV_SET_NONVOLATILE) {
  538. if (!region->vmobject().is_purgeable())
  539. return -EPERM;
  540. auto& vmobject = static_cast<PurgeableVMObject&>(region->vmobject());
  541. if (!vmobject.is_volatile())
  542. return 0;
  543. vmobject.set_volatile(false);
  544. bool was_purged = vmobject.was_purged();
  545. vmobject.set_was_purged(false);
  546. return was_purged ? 1 : 0;
  547. }
  548. if (advice & MADV_GET_VOLATILE) {
  549. if (!region->vmobject().is_purgeable())
  550. return -EPERM;
  551. auto& vmobject = static_cast<PurgeableVMObject&>(region->vmobject());
  552. return vmobject.is_volatile() ? 0 : 1;
  553. }
  554. return -EINVAL;
  555. }
  556. int Process::sys$purge(int mode)
  557. {
  558. REQUIRE_NO_PROMISES;
  559. if (!is_superuser())
  560. return -EPERM;
  561. int purged_page_count = 0;
  562. if (mode & PURGE_ALL_VOLATILE) {
  563. NonnullRefPtrVector<PurgeableVMObject> vmobjects;
  564. {
  565. InterruptDisabler disabler;
  566. MM.for_each_vmobject([&](auto& vmobject) {
  567. if (vmobject.is_purgeable())
  568. vmobjects.append(static_cast<PurgeableVMObject&>(vmobject));
  569. return IterationDecision::Continue;
  570. });
  571. }
  572. for (auto& vmobject : vmobjects) {
  573. purged_page_count += vmobject.purge();
  574. }
  575. }
  576. if (mode & PURGE_ALL_CLEAN_INODE) {
  577. NonnullRefPtrVector<InodeVMObject> vmobjects;
  578. {
  579. InterruptDisabler disabler;
  580. MM.for_each_vmobject([&](auto& vmobject) {
  581. if (vmobject.is_inode())
  582. vmobjects.append(static_cast<InodeVMObject&>(vmobject));
  583. return IterationDecision::Continue;
  584. });
  585. }
  586. for (auto& vmobject : vmobjects) {
  587. purged_page_count += vmobject.release_all_clean_pages();
  588. }
  589. }
  590. return purged_page_count;
  591. }
  592. int Process::sys$gethostname(char* buffer, ssize_t size)
  593. {
  594. REQUIRE_PROMISE(stdio);
  595. if (size < 0)
  596. return -EINVAL;
  597. if (!validate_write(buffer, size))
  598. return -EFAULT;
  599. LOCKER(*s_hostname_lock);
  600. if ((size_t)size < (s_hostname->length() + 1))
  601. return -ENAMETOOLONG;
  602. copy_to_user(buffer, s_hostname->characters(), s_hostname->length() + 1);
  603. return 0;
  604. }
  605. pid_t Process::sys$fork(RegisterState& regs)
  606. {
  607. REQUIRE_PROMISE(proc);
  608. Thread* child_first_thread = nullptr;
  609. auto* child = new Process(child_first_thread, m_name, m_uid, m_gid, m_pid, m_ring, m_cwd, m_executable, m_tty, this);
  610. child->m_root_directory = m_root_directory;
  611. child->m_root_directory_relative_to_global_root = m_root_directory_relative_to_global_root;
  612. child->m_promises = m_promises;
  613. child->m_execpromises = m_execpromises;
  614. child->m_veil_state = m_veil_state;
  615. child->m_unveiled_paths = m_unveiled_paths;
  616. child->m_fds = m_fds;
  617. child->m_sid = m_sid;
  618. child->m_pgid = m_pgid;
  619. child->m_umask = m_umask;
  620. #ifdef FORK_DEBUG
  621. dbg() << "fork: child=" << child;
  622. #endif
  623. for (auto& region : m_regions) {
  624. #ifdef FORK_DEBUG
  625. dbg() << "fork: cloning Region{" << &region << "} '" << region.name() << "' @ " << region.vaddr();
  626. #endif
  627. auto& child_region = child->add_region(region.clone());
  628. child_region.map(child->page_directory());
  629. if (&region == m_master_tls_region)
  630. child->m_master_tls_region = child_region.make_weak_ptr();
  631. }
  632. child->m_extra_gids = m_extra_gids;
  633. auto& child_tss = child_first_thread->m_tss;
  634. child_tss.eax = 0; // fork() returns 0 in the child :^)
  635. child_tss.ebx = regs.ebx;
  636. child_tss.ecx = regs.ecx;
  637. child_tss.edx = regs.edx;
  638. child_tss.ebp = regs.ebp;
  639. child_tss.esp = regs.userspace_esp;
  640. child_tss.esi = regs.esi;
  641. child_tss.edi = regs.edi;
  642. child_tss.eflags = regs.eflags;
  643. child_tss.eip = regs.eip;
  644. child_tss.cs = regs.cs;
  645. child_tss.ds = regs.ds;
  646. child_tss.es = regs.es;
  647. child_tss.fs = regs.fs;
  648. child_tss.gs = regs.gs;
  649. child_tss.ss = regs.userspace_ss;
  650. #ifdef FORK_DEBUG
  651. dbg() << "fork: child will begin executing at " << String::format("%w", child_tss.cs) << ":" << String::format("%x", child_tss.eip) << " with stack " << String::format("%w", child_tss.ss) << ":" << String::format("%x", child_tss.esp) << ", kstack " << String::format("%w", child_tss.ss0) << ":" << String::format("%x", child_tss.esp0);
  652. #endif
  653. {
  654. InterruptDisabler disabler;
  655. g_processes->prepend(child);
  656. }
  657. #ifdef TASK_DEBUG
  658. kprintf("Process %u (%s) forked from %u @ %p\n", child->pid(), child->name().characters(), m_pid, child_tss.eip);
  659. #endif
  660. child_first_thread->set_state(Thread::State::Skip1SchedulerPass);
  661. return child->pid();
  662. }
  663. void Process::kill_threads_except_self()
  664. {
  665. InterruptDisabler disabler;
  666. if (m_thread_count <= 1)
  667. return;
  668. for_each_thread([&](Thread& thread) {
  669. if (&thread == Thread::current
  670. || thread.state() == Thread::State::Dead
  671. || thread.state() == Thread::State::Dying)
  672. return IterationDecision::Continue;
  673. // At this point, we have no joiner anymore
  674. thread.m_joiner = nullptr;
  675. thread.set_should_die();
  676. if (thread.state() != Thread::State::Dead)
  677. thread.set_state(Thread::State::Dying);
  678. return IterationDecision::Continue;
  679. });
  680. big_lock().clear_waiters();
  681. }
  682. void Process::kill_all_threads()
  683. {
  684. for_each_thread([&](Thread& thread) {
  685. thread.set_should_die();
  686. return IterationDecision::Continue;
  687. });
  688. }
  689. int Process::do_exec(NonnullRefPtr<FileDescription> main_program_description, Vector<String> arguments, Vector<String> environment, RefPtr<FileDescription> interpreter_description)
  690. {
  691. ASSERT(is_ring3());
  692. auto path = main_program_description->absolute_path();
  693. dbg() << "do_exec(" << path << ")";
  694. size_t total_blob_size = 0;
  695. for (auto& a : arguments)
  696. total_blob_size += a.length() + 1;
  697. for (auto& e : environment)
  698. total_blob_size += e.length() + 1;
  699. size_t total_meta_size = sizeof(char*) * (arguments.size() + 1) + sizeof(char*) * (environment.size() + 1);
  700. // FIXME: How much stack space does process startup need?
  701. if ((total_blob_size + total_meta_size) >= Thread::default_userspace_stack_size)
  702. return -E2BIG;
  703. auto parts = path.split('/');
  704. if (parts.is_empty())
  705. return -ENOENT;
  706. auto& inode = interpreter_description ? *interpreter_description->inode() : *main_program_description->inode();
  707. auto vmobject = PrivateInodeVMObject::create_with_inode(inode);
  708. // Disable profiling temporarily in case it's running on this process.
  709. bool was_profiling = is_profiling();
  710. TemporaryChange profiling_disabler(m_profiling, false);
  711. // Mark this thread as the current thread that does exec
  712. // No other thread from this process will be scheduled to run
  713. m_exec_tid = Thread::current->tid();
  714. auto old_page_directory = move(m_page_directory);
  715. auto old_regions = move(m_regions);
  716. m_page_directory = PageDirectory::create_for_userspace(*this);
  717. #ifdef MM_DEBUG
  718. dbg() << "Process " << pid() << " exec: PD=" << m_page_directory.ptr() << " created";
  719. #endif
  720. MM.enter_process_paging_scope(*this);
  721. Region* region { nullptr };
  722. InodeMetadata loader_metadata;
  723. // FIXME: Hoooo boy this is a hack if I ever saw one.
  724. // This is the 'random' offset we're giving to our ET_DYN exectuables to start as.
  725. // It also happens to be the static Virtual Addresss offset every static exectuable gets :)
  726. // Without this, some assumptions by the ELF loading hooks below are severely broken.
  727. // 0x08000000 is a verified random number chosen by random dice roll https://xkcd.com/221/
  728. u32 totally_random_offset = interpreter_description ? 0x08000000 : 0;
  729. // FIXME: We should be able to load both the PT_INTERP interpreter and the main program... once the RTLD is smart enough
  730. if (interpreter_description) {
  731. loader_metadata = interpreter_description->metadata();
  732. region = allocate_region_with_vmobject(VirtualAddress(), loader_metadata.size, *vmobject, 0, interpreter_description->absolute_path(), PROT_READ, false);
  733. // we don't need the interpreter file desciption after we've loaded (or not) it into memory
  734. interpreter_description = nullptr;
  735. } else {
  736. loader_metadata = main_program_description->metadata();
  737. region = allocate_region_with_vmobject(VirtualAddress(), loader_metadata.size, *vmobject, 0, main_program_description->absolute_path(), PROT_READ, false);
  738. }
  739. ASSERT(region);
  740. Region* master_tls_region { nullptr };
  741. size_t master_tls_size = 0;
  742. size_t master_tls_alignment = 0;
  743. u32 entry_eip = 0;
  744. OwnPtr<ELFLoader> loader;
  745. {
  746. ArmedScopeGuard rollback_regions_guard([&]() {
  747. ASSERT(Process::current == this);
  748. m_page_directory = move(old_page_directory);
  749. m_regions = move(old_regions);
  750. MM.enter_process_paging_scope(*this);
  751. });
  752. loader = make<ELFLoader>(region->vaddr().as_ptr(), loader_metadata.size);
  753. // Load the correct executable -- either interp or main program.
  754. // FIXME: Once we actually load both interp and main, we'll need to be more clever about this.
  755. // In that case, both will be ET_DYN objects, so they'll both be completely relocatable.
  756. // That means, we can put them literally anywhere in User VM space (ASLR anyone?).
  757. // ALSO FIXME: Reminder to really really fix that 'totally random offset' business.
  758. loader->map_section_hook = [&](VirtualAddress vaddr, size_t size, size_t alignment, size_t offset_in_image, bool is_readable, bool is_writable, bool is_executable, const String& name) -> u8* {
  759. ASSERT(size);
  760. ASSERT(alignment == PAGE_SIZE);
  761. int prot = 0;
  762. if (is_readable)
  763. prot |= PROT_READ;
  764. if (is_writable)
  765. prot |= PROT_WRITE;
  766. if (is_executable)
  767. prot |= PROT_EXEC;
  768. if (auto* region = allocate_region_with_vmobject(vaddr.offset(totally_random_offset), size, *vmobject, offset_in_image, String(name), prot))
  769. return region->vaddr().as_ptr();
  770. return nullptr;
  771. };
  772. loader->alloc_section_hook = [&](VirtualAddress vaddr, size_t size, size_t alignment, bool is_readable, bool is_writable, const String& name) -> u8* {
  773. ASSERT(size);
  774. ASSERT(alignment == PAGE_SIZE);
  775. int prot = 0;
  776. if (is_readable)
  777. prot |= PROT_READ;
  778. if (is_writable)
  779. prot |= PROT_WRITE;
  780. if (auto* region = allocate_region(vaddr.offset(totally_random_offset), size, String(name), prot))
  781. return region->vaddr().as_ptr();
  782. return nullptr;
  783. };
  784. // FIXME: Move TLS region allocation to userspace: LibC and the dynamic loader.
  785. // LibC if we end up with a statically linked executable, and the
  786. // dynamic loader so that it can create new TLS blocks for each shared libarary
  787. // that gets loaded as part of DT_NEEDED processing, and via dlopen()
  788. // If that doesn't happen quickly, at least pass the location of the TLS region
  789. // some ELF Auxilliary Vector so the loader can use it/create new ones as necessary.
  790. loader->tls_section_hook = [&](size_t size, size_t alignment) {
  791. ASSERT(size);
  792. master_tls_region = allocate_region({}, size, String(), PROT_READ | PROT_WRITE);
  793. master_tls_size = size;
  794. master_tls_alignment = alignment;
  795. return master_tls_region->vaddr().as_ptr();
  796. };
  797. bool success = loader->load();
  798. if (!success) {
  799. kprintf("do_exec: Failure loading %s\n", path.characters());
  800. return -ENOEXEC;
  801. }
  802. // FIXME: Validate that this virtual address is within executable region,
  803. // instead of just non-null. You could totally have a DSO with entry point of
  804. // the beginning of the text segement.
  805. if (!loader->entry().offset(totally_random_offset).get()) {
  806. kprintf("do_exec: Failure loading %s, entry pointer is invalid! (%p)\n", path.characters(), loader->entry().offset(totally_random_offset).get());
  807. return -ENOEXEC;
  808. }
  809. rollback_regions_guard.disarm();
  810. // NOTE: At this point, we've committed to the new executable.
  811. entry_eip = loader->entry().offset(totally_random_offset).get();
  812. kill_threads_except_self();
  813. #ifdef EXEC_DEBUG
  814. kprintf("Memory layout after ELF load:");
  815. dump_regions();
  816. #endif
  817. }
  818. m_elf_loader = move(loader);
  819. m_executable = main_program_description->custody();
  820. m_promises = m_execpromises;
  821. m_veil_state = VeilState::None;
  822. m_unveiled_paths.clear();
  823. // Copy of the master TLS region that we will clone for new threads
  824. m_master_tls_region = master_tls_region->make_weak_ptr();
  825. auto main_program_metadata = main_program_description->metadata();
  826. if (!(main_program_description->custody()->mount_flags() & MS_NOSUID)) {
  827. if (main_program_metadata.is_setuid())
  828. m_euid = main_program_metadata.uid;
  829. if (main_program_metadata.is_setgid())
  830. m_egid = main_program_metadata.gid;
  831. }
  832. Thread::current->set_default_signal_dispositions();
  833. Thread::current->m_signal_mask = 0;
  834. Thread::current->m_pending_signals = 0;
  835. m_futex_queues.clear();
  836. m_region_lookup_cache = {};
  837. disown_all_shared_buffers();
  838. for (size_t i = 0; i < m_fds.size(); ++i) {
  839. auto& daf = m_fds[i];
  840. if (daf.description && daf.flags & FD_CLOEXEC) {
  841. daf.description->close();
  842. daf = {};
  843. }
  844. }
  845. Thread* new_main_thread = nullptr;
  846. if (Process::current == this) {
  847. new_main_thread = Thread::current;
  848. } else {
  849. for_each_thread([&](auto& thread) {
  850. new_main_thread = &thread;
  851. return IterationDecision::Break;
  852. });
  853. }
  854. ASSERT(new_main_thread);
  855. // NOTE: We create the new stack before disabling interrupts since it will zero-fault
  856. // and we don't want to deal with faults after this point.
  857. u32 new_userspace_esp = new_main_thread->make_userspace_stack_for_main_thread(move(arguments), move(environment));
  858. // We cli() manually here because we don't want to get interrupted between do_exec() and Schedule::yield().
  859. // The reason is that the task redirection we've set up above will be clobbered by the timer IRQ.
  860. // If we used an InterruptDisabler that sti()'d on exit, we might timer tick'd too soon in exec().
  861. if (Process::current == this)
  862. cli();
  863. // NOTE: Be careful to not trigger any page faults below!
  864. Scheduler::prepare_to_modify_tss(*new_main_thread);
  865. m_name = parts.take_last();
  866. new_main_thread->set_name(m_name);
  867. auto& tss = new_main_thread->m_tss;
  868. u32 old_esp0 = tss.esp0;
  869. m_master_tls_size = master_tls_size;
  870. m_master_tls_alignment = master_tls_alignment;
  871. m_pid = new_main_thread->tid();
  872. new_main_thread->make_thread_specific_region({});
  873. new_main_thread->reset_fpu_state();
  874. memset(&tss, 0, sizeof(TSS32));
  875. tss.iomapbase = sizeof(TSS32);
  876. tss.eflags = 0x0202;
  877. tss.eip = entry_eip;
  878. tss.cs = 0x1b;
  879. tss.ds = 0x23;
  880. tss.es = 0x23;
  881. tss.fs = 0x23;
  882. tss.gs = thread_specific_selector() | 3;
  883. tss.ss = 0x23;
  884. tss.cr3 = page_directory().cr3();
  885. tss.esp = new_userspace_esp;
  886. tss.ss0 = 0x10;
  887. tss.esp0 = old_esp0;
  888. tss.ss2 = m_pid;
  889. #ifdef TASK_DEBUG
  890. kprintf("Process %u (%s) exec'd %s @ %p\n", pid(), name().characters(), path.characters(), tss.eip);
  891. #endif
  892. if (was_profiling)
  893. Profiling::did_exec(path);
  894. new_main_thread->set_state(Thread::State::Skip1SchedulerPass);
  895. big_lock().force_unlock_if_locked();
  896. return 0;
  897. }
  898. static KResultOr<Vector<String>> find_shebang_interpreter_for_executable(const char first_page[], int nread)
  899. {
  900. int word_start = 2;
  901. int word_length = 0;
  902. if (nread > 2 && first_page[0] == '#' && first_page[1] == '!') {
  903. Vector<String> interpreter_words;
  904. for (int i = 2; i < nread; ++i) {
  905. if (first_page[i] == '\n') {
  906. break;
  907. }
  908. if (first_page[i] != ' ') {
  909. ++word_length;
  910. }
  911. if (first_page[i] == ' ') {
  912. if (word_length > 0) {
  913. interpreter_words.append(String(&first_page[word_start], word_length));
  914. }
  915. word_length = 0;
  916. word_start = i + 1;
  917. }
  918. }
  919. if (word_length > 0)
  920. interpreter_words.append(String(&first_page[word_start], word_length));
  921. if (!interpreter_words.is_empty())
  922. return interpreter_words;
  923. }
  924. return KResult(-ENOEXEC);
  925. }
  926. KResultOr<NonnullRefPtr<FileDescription>> Process::find_elf_interpreter_for_executable(const String& path, char (&first_page)[PAGE_SIZE], int nread, size_t file_size)
  927. {
  928. if (nread < (int)sizeof(Elf32_Ehdr))
  929. return KResult(-ENOEXEC);
  930. auto elf_header = (Elf32_Ehdr*)first_page;
  931. if (!ELFImage::validate_elf_header(*elf_header, file_size)) {
  932. dbg() << "exec(" << path << "): File has invalid ELF header";
  933. return KResult(-ENOEXEC);
  934. }
  935. // Not using KResultOr here because we'll want to do the same thing in userspace in the RTLD
  936. String interpreter_path;
  937. if (!ELFImage::validate_program_headers(*elf_header, file_size, (u8*)first_page, nread, interpreter_path)) {
  938. dbg() << "exec(" << path << "): File has invalid ELF Program headers";
  939. return KResult(-ENOEXEC);
  940. }
  941. if (!interpreter_path.is_empty()) {
  942. // Programs with an interpreter better be relocatable executables or we don't know what to do...
  943. if (elf_header->e_type != ET_DYN)
  944. return KResult(-ENOEXEC);
  945. dbg() << "exec(" << path << "): Using program interpreter " << interpreter_path;
  946. auto interp_result = VFS::the().open(interpreter_path, O_EXEC, 0, current_directory());
  947. if (interp_result.is_error()) {
  948. dbg() << "exec(" << path << "): Unable to open program interpreter " << interpreter_path;
  949. return interp_result.error();
  950. }
  951. auto interpreter_description = interp_result.value();
  952. auto interp_metadata = interpreter_description->metadata();
  953. ASSERT(interpreter_description->inode());
  954. // Validate the program interpreter as a valid elf binary.
  955. // If your program interpreter is a #! file or something, it's time to stop playing games :)
  956. if (interp_metadata.size < (int)sizeof(Elf32_Ehdr))
  957. return KResult(-ENOEXEC);
  958. memset(first_page, 0, sizeof(first_page));
  959. nread = interpreter_description->read((u8*)&first_page, sizeof(first_page));
  960. if (nread < (int)sizeof(Elf32_Ehdr))
  961. return KResult(-ENOEXEC);
  962. elf_header = (Elf32_Ehdr*)first_page;
  963. if (!ELFImage::validate_elf_header(*elf_header, interp_metadata.size)) {
  964. dbg() << "exec(" << path << "): Interpreter (" << interpreter_description->absolute_path() << ") has invalid ELF header";
  965. return KResult(-ENOEXEC);
  966. }
  967. // Not using KResultOr here because we'll want to do the same thing in userspace in the RTLD
  968. String interpreter_interpreter_path;
  969. if (!ELFImage::validate_program_headers(*elf_header, interp_metadata.size, (u8*)first_page, nread, interpreter_interpreter_path)) {
  970. dbg() << "exec(" << path << "): Interpreter (" << interpreter_description->absolute_path() << ") has invalid ELF Program headers";
  971. return KResult(-ENOEXEC);
  972. }
  973. if (!interpreter_interpreter_path.is_empty()) {
  974. dbg() << "exec(" << path << "): Interpreter (" << interpreter_description->absolute_path() << ") has its own interpreter (" << interpreter_interpreter_path << ")! No thank you!";
  975. return KResult(-ELOOP);
  976. }
  977. return interpreter_description;
  978. }
  979. if (elf_header->e_type != ET_EXEC) {
  980. // We can't exec an ET_REL, that's just an object file from the compiler
  981. // If it's ET_DYN with no PT_INTERP, then we can't load it properly either
  982. return KResult(-ENOEXEC);
  983. }
  984. // No interpreter, but, path refers to a valid elf image
  985. return KResult(KSuccess);
  986. }
  987. int Process::exec(String path, Vector<String> arguments, Vector<String> environment, int recursion_depth)
  988. {
  989. if (recursion_depth > 2) {
  990. dbg() << "exec(" << path << "): SHENANIGANS! recursed too far trying to find #! interpreter";
  991. return -ELOOP;
  992. }
  993. // Open the file to check what kind of binary format it is
  994. // Currently supported formats:
  995. // - #! interpreted file
  996. // - ELF32
  997. // * ET_EXEC binary that just gets loaded
  998. // * ET_DYN binary that requires a program interpreter
  999. //
  1000. auto result = VFS::the().open(path, O_EXEC, 0, current_directory());
  1001. if (result.is_error())
  1002. return result.error();
  1003. auto description = result.value();
  1004. auto metadata = description->metadata();
  1005. // Always gonna need at least 3 bytes. these are for #!X
  1006. if (metadata.size < 3)
  1007. return -ENOEXEC;
  1008. ASSERT(description->inode());
  1009. // Read the first page of the program into memory so we can validate the binfmt of it
  1010. char first_page[PAGE_SIZE];
  1011. int nread = description->read((u8*)&first_page, sizeof(first_page));
  1012. // 1) #! interpreted file
  1013. auto shebang_result = find_shebang_interpreter_for_executable(first_page, nread);
  1014. if (!shebang_result.is_error()) {
  1015. Vector<String> new_arguments(shebang_result.value());
  1016. new_arguments.append(path);
  1017. arguments.remove(0);
  1018. new_arguments.append(move(arguments));
  1019. return exec(shebang_result.value().first(), move(new_arguments), move(environment), ++recursion_depth);
  1020. }
  1021. // #2) ELF32 for i386
  1022. auto elf_result = find_elf_interpreter_for_executable(path, first_page, nread, metadata.size);
  1023. RefPtr<FileDescription> interpreter_description;
  1024. // We're getting either an interpreter, an error, or KSuccess (i.e. no interpreter but file checks out)
  1025. if (!elf_result.is_error())
  1026. interpreter_description = elf_result.value();
  1027. else if (elf_result.error().is_error())
  1028. return elf_result.error();
  1029. // The bulk of exec() is done by do_exec(), which ensures that all locals
  1030. // are cleaned up by the time we yield-teleport below.
  1031. int rc = do_exec(move(description), move(arguments), move(environment), move(interpreter_description));
  1032. m_exec_tid = 0;
  1033. if (rc < 0)
  1034. return rc;
  1035. if (Process::current == this) {
  1036. Scheduler::yield();
  1037. ASSERT_NOT_REACHED();
  1038. }
  1039. return 0;
  1040. }
  1041. int Process::sys$execve(const Syscall::SC_execve_params* user_params)
  1042. {
  1043. REQUIRE_PROMISE(exec);
  1044. // NOTE: Be extremely careful with allocating any kernel memory in exec().
  1045. // On success, the kernel stack will be lost.
  1046. Syscall::SC_execve_params params;
  1047. if (!validate_read_and_copy_typed(&params, user_params))
  1048. return -EFAULT;
  1049. if (params.arguments.length > ARG_MAX || params.environment.length > ARG_MAX)
  1050. return -E2BIG;
  1051. String path;
  1052. {
  1053. auto path_arg = get_syscall_path_argument(params.path);
  1054. if (path_arg.is_error())
  1055. return path_arg.error();
  1056. path = path_arg.value();
  1057. }
  1058. auto copy_user_strings = [&](const auto& list, auto& output) {
  1059. if (!list.length)
  1060. return true;
  1061. if (!validate_read_typed(list.strings, list.length))
  1062. return false;
  1063. Vector<Syscall::StringArgument, 32> strings;
  1064. strings.resize(list.length);
  1065. copy_from_user(strings.data(), list.strings, list.length * sizeof(Syscall::StringArgument));
  1066. for (size_t i = 0; i < list.length; ++i) {
  1067. auto string = validate_and_copy_string_from_user(strings[i]);
  1068. if (string.is_null())
  1069. return false;
  1070. output.append(move(string));
  1071. }
  1072. return true;
  1073. };
  1074. Vector<String> arguments;
  1075. if (!copy_user_strings(params.arguments, arguments))
  1076. return -EFAULT;
  1077. Vector<String> environment;
  1078. if (!copy_user_strings(params.environment, environment))
  1079. return -EFAULT;
  1080. int rc = exec(move(path), move(arguments), move(environment));
  1081. ASSERT(rc < 0); // We should never continue after a successful exec!
  1082. return rc;
  1083. }
  1084. Process* Process::create_user_process(Thread*& first_thread, const String& path, uid_t uid, gid_t gid, pid_t parent_pid, int& error, Vector<String>&& arguments, Vector<String>&& environment, TTY* tty)
  1085. {
  1086. auto parts = path.split('/');
  1087. if (arguments.is_empty()) {
  1088. arguments.append(parts.last());
  1089. }
  1090. RefPtr<Custody> cwd;
  1091. RefPtr<Custody> root;
  1092. {
  1093. InterruptDisabler disabler;
  1094. if (auto* parent = Process::from_pid(parent_pid)) {
  1095. cwd = parent->m_cwd;
  1096. root = parent->m_root_directory;
  1097. }
  1098. }
  1099. if (!cwd)
  1100. cwd = VFS::the().root_custody();
  1101. if (!root)
  1102. root = VFS::the().root_custody();
  1103. auto* process = new Process(first_thread, parts.take_last(), uid, gid, parent_pid, Ring3, move(cwd), nullptr, tty);
  1104. process->m_fds.resize(m_max_open_file_descriptors);
  1105. auto& device_to_use_as_tty = tty ? (CharacterDevice&)*tty : NullDevice::the();
  1106. auto description = device_to_use_as_tty.open(O_RDWR).value();
  1107. process->m_fds[0].set(*description);
  1108. process->m_fds[1].set(*description);
  1109. process->m_fds[2].set(*description);
  1110. error = process->exec(path, move(arguments), move(environment));
  1111. if (error != 0) {
  1112. delete process;
  1113. return nullptr;
  1114. }
  1115. {
  1116. InterruptDisabler disabler;
  1117. g_processes->prepend(process);
  1118. }
  1119. #ifdef TASK_DEBUG
  1120. kprintf("Process %u (%s) spawned @ %p\n", process->pid(), process->name().characters(), first_thread->tss().eip);
  1121. #endif
  1122. error = 0;
  1123. return process;
  1124. }
  1125. Process* Process::create_kernel_process(Thread*& first_thread, String&& name, void (*e)())
  1126. {
  1127. auto* process = new Process(first_thread, move(name), (uid_t)0, (gid_t)0, (pid_t)0, Ring0);
  1128. first_thread->tss().eip = (uintptr_t)e;
  1129. if (process->pid() != 0) {
  1130. InterruptDisabler disabler;
  1131. g_processes->prepend(process);
  1132. #ifdef TASK_DEBUG
  1133. kprintf("Kernel process %u (%s) spawned @ %p\n", process->pid(), process->name().characters(), first_thread->tss().eip);
  1134. #endif
  1135. }
  1136. first_thread->set_state(Thread::State::Runnable);
  1137. return process;
  1138. }
  1139. Process::Process(Thread*& first_thread, const String& name, uid_t uid, gid_t gid, pid_t ppid, RingLevel ring, RefPtr<Custody> cwd, RefPtr<Custody> executable, TTY* tty, Process* fork_parent)
  1140. : m_name(move(name))
  1141. , m_pid(allocate_pid())
  1142. , m_uid(uid)
  1143. , m_gid(gid)
  1144. , m_euid(uid)
  1145. , m_egid(gid)
  1146. , m_ring(ring)
  1147. , m_executable(move(executable))
  1148. , m_cwd(move(cwd))
  1149. , m_tty(tty)
  1150. , m_ppid(ppid)
  1151. {
  1152. #ifdef PROCESS_DEBUG
  1153. dbg() << "Created new process " << m_name << "(" << m_pid << ")";
  1154. #endif
  1155. m_page_directory = PageDirectory::create_for_userspace(*this, fork_parent ? &fork_parent->page_directory().range_allocator() : nullptr);
  1156. #ifdef MM_DEBUG
  1157. dbg() << "Process " << pid() << " ctor: PD=" << m_page_directory.ptr() << " created";
  1158. #endif
  1159. if (fork_parent) {
  1160. // NOTE: fork() doesn't clone all threads; the thread that called fork() becomes the only thread in the new process.
  1161. first_thread = Thread::current->clone(*this);
  1162. } else {
  1163. // NOTE: This non-forked code path is only taken when the kernel creates a process "manually" (at boot.)
  1164. first_thread = new Thread(*this);
  1165. }
  1166. }
  1167. Process::~Process()
  1168. {
  1169. ASSERT(thread_count() == 0);
  1170. }
  1171. void Process::dump_regions()
  1172. {
  1173. kprintf("Process %s(%u) regions:\n", name().characters(), pid());
  1174. kprintf("BEGIN END SIZE ACCESS NAME\n");
  1175. for (auto& region : m_regions) {
  1176. kprintf("%08x -- %08x %08x %c%c%c%c%c%c %s\n",
  1177. region.vaddr().get(),
  1178. region.vaddr().offset(region.size() - 1).get(),
  1179. region.size(),
  1180. region.is_readable() ? 'R' : ' ',
  1181. region.is_writable() ? 'W' : ' ',
  1182. region.is_executable() ? 'X' : ' ',
  1183. region.is_shared() ? 'S' : ' ',
  1184. region.is_stack() ? 'T' : ' ',
  1185. region.vmobject().is_purgeable() ? 'P' : ' ',
  1186. region.name().characters());
  1187. }
  1188. MM.dump_kernel_regions();
  1189. }
  1190. void Process::sys$exit(int status)
  1191. {
  1192. cli();
  1193. #ifdef TASK_DEBUG
  1194. kprintf("sys$exit: %s(%u) exit with status %d\n", name().characters(), pid(), status);
  1195. #endif
  1196. if (status != 0)
  1197. dump_backtrace();
  1198. m_termination_status = status;
  1199. m_termination_signal = 0;
  1200. die();
  1201. Thread::current->die_if_needed();
  1202. ASSERT_NOT_REACHED();
  1203. }
  1204. void signal_trampoline_dummy(void)
  1205. {
  1206. // The trampoline preserves the current eax, pushes the signal code and
  1207. // then calls the signal handler. We do this because, when interrupting a
  1208. // blocking syscall, that syscall may return some special error code in eax;
  1209. // This error code would likely be overwritten by the signal handler, so it's
  1210. // neccessary to preserve it here.
  1211. asm(
  1212. ".intel_syntax noprefix\n"
  1213. "asm_signal_trampoline:\n"
  1214. "push ebp\n"
  1215. "mov ebp, esp\n"
  1216. "push eax\n" // we have to store eax 'cause it might be the return value from a syscall
  1217. "sub esp, 4\n" // align the stack to 16 bytes
  1218. "mov eax, [ebp+12]\n" // push the signal code
  1219. "push eax\n"
  1220. "call [ebp+8]\n" // call the signal handler
  1221. "add esp, 8\n"
  1222. "mov eax, %P0\n"
  1223. "int 0x82\n" // sigreturn syscall
  1224. "asm_signal_trampoline_end:\n"
  1225. ".att_syntax" ::"i"(Syscall::SC_sigreturn));
  1226. }
  1227. extern "C" void asm_signal_trampoline(void);
  1228. extern "C" void asm_signal_trampoline_end(void);
  1229. void create_signal_trampolines()
  1230. {
  1231. InterruptDisabler disabler;
  1232. // NOTE: We leak this region.
  1233. auto* trampoline_region = MM.allocate_user_accessible_kernel_region(PAGE_SIZE, "Signal trampolines", Region::Access::Read | Region::Access::Write | Region::Access::Execute, false).leak_ptr();
  1234. g_return_to_ring3_from_signal_trampoline = trampoline_region->vaddr();
  1235. u8* trampoline = (u8*)asm_signal_trampoline;
  1236. u8* trampoline_end = (u8*)asm_signal_trampoline_end;
  1237. size_t trampoline_size = trampoline_end - trampoline;
  1238. {
  1239. SmapDisabler disabler;
  1240. u8* code_ptr = (u8*)trampoline_region->vaddr().as_ptr();
  1241. memcpy(code_ptr, trampoline, trampoline_size);
  1242. }
  1243. trampoline_region->set_writable(false);
  1244. trampoline_region->remap();
  1245. }
  1246. void create_kernel_info_page()
  1247. {
  1248. auto* info_page_region_for_userspace = MM.allocate_user_accessible_kernel_region(PAGE_SIZE, "Kernel info page", Region::Access::Read).leak_ptr();
  1249. auto* info_page_region_for_kernel = MM.allocate_kernel_region_with_vmobject(info_page_region_for_userspace->vmobject(), PAGE_SIZE, "Kernel info page", Region::Access::Read | Region::Access::Write).leak_ptr();
  1250. s_info_page_address_for_userspace = info_page_region_for_userspace->vaddr();
  1251. s_info_page_address_for_kernel = info_page_region_for_kernel->vaddr();
  1252. memset(s_info_page_address_for_kernel.as_ptr(), 0, PAGE_SIZE);
  1253. }
  1254. int Process::sys$sigreturn(RegisterState& registers)
  1255. {
  1256. REQUIRE_PROMISE(stdio);
  1257. SmapDisabler disabler;
  1258. //Here, we restore the state pushed by dispatch signal and asm_signal_trampoline.
  1259. u32* stack_ptr = (u32*)registers.userspace_esp;
  1260. u32 smuggled_eax = *stack_ptr;
  1261. //pop the stored eax, ebp, return address, handler and signal code
  1262. stack_ptr += 5;
  1263. Thread::current->m_signal_mask = *stack_ptr;
  1264. stack_ptr++;
  1265. //pop edi, esi, ebp, esp, ebx, edx, ecx and eax
  1266. memcpy(&registers.edi, stack_ptr, 8 * sizeof(uintptr_t));
  1267. stack_ptr += 8;
  1268. registers.eip = *stack_ptr;
  1269. stack_ptr++;
  1270. registers.eflags = *stack_ptr;
  1271. stack_ptr++;
  1272. registers.userspace_esp = registers.esp;
  1273. return smuggled_eax;
  1274. }
  1275. void Process::crash(int signal, u32 eip)
  1276. {
  1277. ASSERT_INTERRUPTS_DISABLED();
  1278. ASSERT(!is_dead());
  1279. ASSERT(Process::current == this);
  1280. if (eip >= 0xc0000000 && ksyms_ready) {
  1281. auto* ksym = ksymbolicate(eip);
  1282. dbg() << "\033[31;1m" << String::format("%p", eip) << " " << (ksym ? demangle(ksym->name) : "(k?)") << " +" << (ksym ? eip - ksym->address : 0) << "\033[0m\n";
  1283. } else if (m_elf_loader) {
  1284. dbg() << "\033[31;1m" << String::format("%p", eip) << " " << m_elf_loader->symbolicate(eip) << "\033[0m\n";
  1285. } else {
  1286. dbg() << "\033[31;1m" << String::format("%p", eip) << " (?)\033[0m\n";
  1287. }
  1288. dump_backtrace();
  1289. m_termination_signal = signal;
  1290. dump_regions();
  1291. ASSERT(is_ring3());
  1292. die();
  1293. // We can not return from here, as there is nowhere
  1294. // to unwind to, so die right away.
  1295. Thread::current->die_if_needed();
  1296. ASSERT_NOT_REACHED();
  1297. }
  1298. Process* Process::from_pid(pid_t pid)
  1299. {
  1300. ASSERT_INTERRUPTS_DISABLED();
  1301. for (auto& process : *g_processes) {
  1302. if (process.pid() == pid)
  1303. return &process;
  1304. }
  1305. return nullptr;
  1306. }
  1307. RefPtr<FileDescription> Process::file_description(int fd) const
  1308. {
  1309. if (fd < 0)
  1310. return nullptr;
  1311. if (static_cast<size_t>(fd) < m_fds.size())
  1312. return m_fds[fd].description.ptr();
  1313. return nullptr;
  1314. }
  1315. int Process::fd_flags(int fd) const
  1316. {
  1317. if (fd < 0)
  1318. return -1;
  1319. if (static_cast<size_t>(fd) < m_fds.size())
  1320. return m_fds[fd].flags;
  1321. return -1;
  1322. }
  1323. ssize_t Process::sys$get_dir_entries(int fd, void* buffer, ssize_t size)
  1324. {
  1325. REQUIRE_PROMISE(stdio);
  1326. if (size < 0)
  1327. return -EINVAL;
  1328. if (!validate_write(buffer, size))
  1329. return -EFAULT;
  1330. auto description = file_description(fd);
  1331. if (!description)
  1332. return -EBADF;
  1333. return description->get_dir_entries((u8*)buffer, size);
  1334. }
  1335. int Process::sys$lseek(int fd, off_t offset, int whence)
  1336. {
  1337. REQUIRE_PROMISE(stdio);
  1338. auto description = file_description(fd);
  1339. if (!description)
  1340. return -EBADF;
  1341. return description->seek(offset, whence);
  1342. }
  1343. int Process::sys$ttyname_r(int fd, char* buffer, ssize_t size)
  1344. {
  1345. REQUIRE_PROMISE(tty);
  1346. if (size < 0)
  1347. return -EINVAL;
  1348. if (!validate_write(buffer, size))
  1349. return -EFAULT;
  1350. auto description = file_description(fd);
  1351. if (!description)
  1352. return -EBADF;
  1353. if (!description->is_tty())
  1354. return -ENOTTY;
  1355. String tty_name = description->tty()->tty_name();
  1356. if ((size_t)size < tty_name.length() + 1)
  1357. return -ERANGE;
  1358. copy_to_user(buffer, tty_name.characters(), tty_name.length() + 1);
  1359. return 0;
  1360. }
  1361. int Process::sys$ptsname_r(int fd, char* buffer, ssize_t size)
  1362. {
  1363. REQUIRE_PROMISE(tty);
  1364. if (size < 0)
  1365. return -EINVAL;
  1366. if (!validate_write(buffer, size))
  1367. return -EFAULT;
  1368. auto description = file_description(fd);
  1369. if (!description)
  1370. return -EBADF;
  1371. auto* master_pty = description->master_pty();
  1372. if (!master_pty)
  1373. return -ENOTTY;
  1374. auto pts_name = master_pty->pts_name();
  1375. if ((size_t)size < pts_name.length() + 1)
  1376. return -ERANGE;
  1377. copy_to_user(buffer, pts_name.characters(), pts_name.length() + 1);
  1378. return 0;
  1379. }
  1380. ssize_t Process::sys$writev(int fd, const struct iovec* iov, int iov_count)
  1381. {
  1382. REQUIRE_PROMISE(stdio);
  1383. if (iov_count < 0)
  1384. return -EINVAL;
  1385. if (!validate_read_typed(iov, iov_count))
  1386. return -EFAULT;
  1387. u64 total_length = 0;
  1388. Vector<iovec, 32> vecs;
  1389. vecs.resize(iov_count);
  1390. copy_from_user(vecs.data(), iov, iov_count * sizeof(iovec));
  1391. for (auto& vec : vecs) {
  1392. if (!validate_read(vec.iov_base, vec.iov_len))
  1393. return -EFAULT;
  1394. total_length += vec.iov_len;
  1395. if (total_length > INT32_MAX)
  1396. return -EINVAL;
  1397. }
  1398. auto description = file_description(fd);
  1399. if (!description)
  1400. return -EBADF;
  1401. if (!description->is_writable())
  1402. return -EBADF;
  1403. int nwritten = 0;
  1404. for (auto& vec : vecs) {
  1405. int rc = do_write(*description, (const u8*)vec.iov_base, vec.iov_len);
  1406. if (rc < 0) {
  1407. if (nwritten == 0)
  1408. return rc;
  1409. return nwritten;
  1410. }
  1411. nwritten += rc;
  1412. }
  1413. return nwritten;
  1414. }
  1415. ssize_t Process::do_write(FileDescription& description, const u8* data, int data_size)
  1416. {
  1417. ssize_t nwritten = 0;
  1418. if (!description.is_blocking()) {
  1419. if (!description.can_write())
  1420. return -EAGAIN;
  1421. }
  1422. if (description.should_append()) {
  1423. #ifdef IO_DEBUG
  1424. dbg() << "seeking to end (O_APPEND)";
  1425. #endif
  1426. description.seek(0, SEEK_END);
  1427. }
  1428. while (nwritten < data_size) {
  1429. #ifdef IO_DEBUG
  1430. dbg() << "while " << nwritten << " < " << size;
  1431. #endif
  1432. if (!description.can_write()) {
  1433. #ifdef IO_DEBUG
  1434. dbg() << "block write on " << description.absolute_path();
  1435. #endif
  1436. if (Thread::current->block<Thread::WriteBlocker>(description) != Thread::BlockResult::WokeNormally) {
  1437. if (nwritten == 0)
  1438. return -EINTR;
  1439. }
  1440. }
  1441. ssize_t rc = description.write(data + nwritten, data_size - nwritten);
  1442. #ifdef IO_DEBUG
  1443. dbg() << " -> write returned " << rc;
  1444. #endif
  1445. if (rc < 0) {
  1446. if (nwritten)
  1447. return nwritten;
  1448. return rc;
  1449. }
  1450. if (rc == 0)
  1451. break;
  1452. nwritten += rc;
  1453. }
  1454. return nwritten;
  1455. }
  1456. ssize_t Process::sys$write(int fd, const u8* data, ssize_t size)
  1457. {
  1458. REQUIRE_PROMISE(stdio);
  1459. if (size < 0)
  1460. return -EINVAL;
  1461. if (size == 0)
  1462. return 0;
  1463. if (!validate_read(data, size))
  1464. return -EFAULT;
  1465. #ifdef DEBUG_IO
  1466. dbg() << "sys$write(" << fd << ", " << (const void*)(data) << ", " << size << ")";
  1467. #endif
  1468. auto description = file_description(fd);
  1469. if (!description)
  1470. return -EBADF;
  1471. if (!description->is_writable())
  1472. return -EBADF;
  1473. return do_write(*description, data, size);
  1474. }
  1475. ssize_t Process::sys$read(int fd, u8* buffer, ssize_t size)
  1476. {
  1477. REQUIRE_PROMISE(stdio);
  1478. if (size < 0)
  1479. return -EINVAL;
  1480. if (size == 0)
  1481. return 0;
  1482. if (!validate_write(buffer, size))
  1483. return -EFAULT;
  1484. #ifdef DEBUG_IO
  1485. dbg() << "sys$read(" << fd << ", " << (const void*)buffer << ", " << size << ")";
  1486. #endif
  1487. auto description = file_description(fd);
  1488. if (!description)
  1489. return -EBADF;
  1490. if (!description->is_readable())
  1491. return -EBADF;
  1492. if (description->is_directory())
  1493. return -EISDIR;
  1494. if (description->is_blocking()) {
  1495. if (!description->can_read()) {
  1496. if (Thread::current->block<Thread::ReadBlocker>(*description) != Thread::BlockResult::WokeNormally)
  1497. return -EINTR;
  1498. if (!description->can_read())
  1499. return -EAGAIN;
  1500. }
  1501. }
  1502. return description->read(buffer, size);
  1503. }
  1504. int Process::sys$close(int fd)
  1505. {
  1506. REQUIRE_PROMISE(stdio);
  1507. auto description = file_description(fd);
  1508. #ifdef DEBUG_IO
  1509. dbg() << "sys$close(" << fd << ") " << description.ptr();
  1510. #endif
  1511. if (!description)
  1512. return -EBADF;
  1513. int rc = description->close();
  1514. m_fds[fd] = {};
  1515. return rc;
  1516. }
  1517. int Process::sys$utime(const char* user_path, size_t path_length, const utimbuf* user_buf)
  1518. {
  1519. REQUIRE_PROMISE(fattr);
  1520. if (user_buf && !validate_read_typed(user_buf))
  1521. return -EFAULT;
  1522. auto path = get_syscall_path_argument(user_path, path_length);
  1523. if (path.is_error())
  1524. return path.error();
  1525. utimbuf buf;
  1526. if (user_buf) {
  1527. copy_from_user(&buf, user_buf);
  1528. } else {
  1529. auto now = kgettimeofday();
  1530. buf = { now.tv_sec, now.tv_sec };
  1531. }
  1532. return VFS::the().utime(path.value(), current_directory(), buf.actime, buf.modtime);
  1533. }
  1534. int Process::sys$access(const char* user_path, size_t path_length, int mode)
  1535. {
  1536. REQUIRE_PROMISE(rpath);
  1537. auto path = get_syscall_path_argument(user_path, path_length);
  1538. if (path.is_error())
  1539. return path.error();
  1540. return VFS::the().access(path.value(), mode, current_directory());
  1541. }
  1542. int Process::sys$fcntl(int fd, int cmd, u32 arg)
  1543. {
  1544. REQUIRE_PROMISE(stdio);
  1545. #ifdef DEBUG_IO
  1546. dbg() << "sys$fcntl: fd=" << fd << ", cmd=" << cmd << ", arg=" << arg;
  1547. #endif
  1548. auto description = file_description(fd);
  1549. if (!description)
  1550. return -EBADF;
  1551. // NOTE: The FD flags are not shared between FileDescription objects.
  1552. // This means that dup() doesn't copy the FD_CLOEXEC flag!
  1553. switch (cmd) {
  1554. case F_DUPFD: {
  1555. int arg_fd = (int)arg;
  1556. if (arg_fd < 0)
  1557. return -EINVAL;
  1558. int new_fd = alloc_fd(arg_fd);
  1559. if (new_fd < 0)
  1560. return new_fd;
  1561. m_fds[new_fd].set(*description);
  1562. return new_fd;
  1563. }
  1564. case F_GETFD:
  1565. return m_fds[fd].flags;
  1566. case F_SETFD:
  1567. m_fds[fd].flags = arg;
  1568. break;
  1569. case F_GETFL:
  1570. return description->file_flags();
  1571. case F_SETFL:
  1572. description->set_file_flags(arg);
  1573. break;
  1574. default:
  1575. ASSERT_NOT_REACHED();
  1576. }
  1577. return 0;
  1578. }
  1579. int Process::sys$fstat(int fd, stat* statbuf)
  1580. {
  1581. REQUIRE_PROMISE(stdio);
  1582. if (!validate_write_typed(statbuf))
  1583. return -EFAULT;
  1584. auto description = file_description(fd);
  1585. if (!description)
  1586. return -EBADF;
  1587. return description->fstat(*statbuf);
  1588. }
  1589. int Process::sys$stat(const Syscall::SC_stat_params* user_params)
  1590. {
  1591. REQUIRE_PROMISE(rpath);
  1592. Syscall::SC_stat_params params;
  1593. if (!validate_read_and_copy_typed(&params, user_params))
  1594. return -EFAULT;
  1595. if (!validate_write_typed(params.statbuf))
  1596. return -EFAULT;
  1597. auto path = get_syscall_path_argument(params.path);
  1598. if (path.is_error())
  1599. return path.error();
  1600. auto metadata_or_error = VFS::the().lookup_metadata(path.value(), current_directory(), params.follow_symlinks ? 0 : O_NOFOLLOW_NOERROR);
  1601. if (metadata_or_error.is_error())
  1602. return metadata_or_error.error();
  1603. stat statbuf;
  1604. auto result = metadata_or_error.value().stat(statbuf);
  1605. if (result.is_error())
  1606. return result;
  1607. copy_to_user(params.statbuf, &statbuf);
  1608. return 0;
  1609. }
  1610. template<typename DataType, typename SizeType>
  1611. bool Process::validate(const Syscall::MutableBufferArgument<DataType, SizeType>& buffer)
  1612. {
  1613. return validate_write(buffer.data, buffer.size);
  1614. }
  1615. template<typename DataType, typename SizeType>
  1616. bool Process::validate(const Syscall::ImmutableBufferArgument<DataType, SizeType>& buffer)
  1617. {
  1618. return validate_read(buffer.data, buffer.size);
  1619. }
  1620. String Process::validate_and_copy_string_from_user(const char* user_characters, size_t user_length) const
  1621. {
  1622. if (user_length == 0)
  1623. return String::empty();
  1624. if (!user_characters)
  1625. return {};
  1626. if (!validate_read(user_characters, user_length))
  1627. return {};
  1628. SmapDisabler disabler;
  1629. size_t measured_length = strnlen(user_characters, user_length);
  1630. return String(user_characters, measured_length);
  1631. }
  1632. String Process::validate_and_copy_string_from_user(const Syscall::StringArgument& string) const
  1633. {
  1634. return validate_and_copy_string_from_user(string.characters, string.length);
  1635. }
  1636. int Process::sys$readlink(const Syscall::SC_readlink_params* user_params)
  1637. {
  1638. REQUIRE_PROMISE(rpath);
  1639. Syscall::SC_readlink_params params;
  1640. if (!validate_read_and_copy_typed(&params, user_params))
  1641. return -EFAULT;
  1642. if (!validate(params.buffer))
  1643. return -EFAULT;
  1644. auto path = get_syscall_path_argument(params.path);
  1645. if (path.is_error())
  1646. return path.error();
  1647. auto result = VFS::the().open(path.value(), O_RDONLY | O_NOFOLLOW_NOERROR, 0, current_directory());
  1648. if (result.is_error())
  1649. return result.error();
  1650. auto description = result.value();
  1651. if (!description->metadata().is_symlink())
  1652. return -EINVAL;
  1653. auto contents = description->read_entire_file();
  1654. if (!contents)
  1655. return -EIO; // FIXME: Get a more detailed error from VFS.
  1656. auto link_target = String::copy(contents);
  1657. if (link_target.length() + 1 > params.buffer.size)
  1658. return -ENAMETOOLONG;
  1659. copy_to_user(params.buffer.data, link_target.characters(), link_target.length() + 1);
  1660. return link_target.length() + 1;
  1661. }
  1662. int Process::sys$chdir(const char* user_path, size_t path_length)
  1663. {
  1664. REQUIRE_PROMISE(rpath);
  1665. auto path = get_syscall_path_argument(user_path, path_length);
  1666. if (path.is_error())
  1667. return path.error();
  1668. auto directory_or_error = VFS::the().open_directory(path.value(), current_directory());
  1669. if (directory_or_error.is_error())
  1670. return directory_or_error.error();
  1671. m_cwd = *directory_or_error.value();
  1672. return 0;
  1673. }
  1674. int Process::sys$fchdir(int fd)
  1675. {
  1676. REQUIRE_PROMISE(stdio);
  1677. auto description = file_description(fd);
  1678. if (!description)
  1679. return -EBADF;
  1680. if (!description->is_directory())
  1681. return -ENOTDIR;
  1682. if (!description->metadata().may_execute(*this))
  1683. return -EACCES;
  1684. m_cwd = description->custody();
  1685. return 0;
  1686. }
  1687. int Process::sys$getcwd(char* buffer, ssize_t size)
  1688. {
  1689. REQUIRE_PROMISE(rpath);
  1690. if (size < 0)
  1691. return -EINVAL;
  1692. if (!validate_write(buffer, size))
  1693. return -EFAULT;
  1694. auto path = current_directory().absolute_path();
  1695. if ((size_t)size < path.length() + 1)
  1696. return -ERANGE;
  1697. copy_to_user(buffer, path.characters(), path.length() + 1);
  1698. return 0;
  1699. }
  1700. int Process::number_of_open_file_descriptors() const
  1701. {
  1702. int count = 0;
  1703. for (auto& description : m_fds) {
  1704. if (description)
  1705. ++count;
  1706. }
  1707. return count;
  1708. }
  1709. int Process::sys$open(const Syscall::SC_open_params* user_params)
  1710. {
  1711. Syscall::SC_open_params params;
  1712. if (!validate_read_and_copy_typed(&params, user_params))
  1713. return -EFAULT;
  1714. int dirfd = params.dirfd;
  1715. int options = params.options;
  1716. u16 mode = params.mode;
  1717. if (options & O_NOFOLLOW_NOERROR)
  1718. return -EINVAL;
  1719. if (options & O_UNLINK_INTERNAL)
  1720. return -EINVAL;
  1721. if (options & O_WRONLY)
  1722. REQUIRE_PROMISE(wpath);
  1723. else if (options & O_RDONLY)
  1724. REQUIRE_PROMISE(rpath);
  1725. if (options & O_CREAT)
  1726. REQUIRE_PROMISE(cpath);
  1727. // Ignore everything except permission bits.
  1728. mode &= 04777;
  1729. auto path = get_syscall_path_argument(params.path);
  1730. if (path.is_error())
  1731. return path.error();
  1732. #ifdef DEBUG_IO
  1733. dbg() << "sys$open(dirfd=" << dirfd << ", path=\"" << path.value() << "\", options=" << options << ", mode=" << mode << ")";
  1734. #endif
  1735. int fd = alloc_fd();
  1736. if (fd < 0)
  1737. return fd;
  1738. RefPtr<Custody> base;
  1739. if (dirfd == AT_FDCWD) {
  1740. base = current_directory();
  1741. } else {
  1742. auto base_description = file_description(dirfd);
  1743. if (!base_description)
  1744. return -EBADF;
  1745. if (!base_description->is_directory())
  1746. return -ENOTDIR;
  1747. if (!base_description->custody())
  1748. return -EINVAL;
  1749. base = base_description->custody();
  1750. }
  1751. auto result = VFS::the().open(path.value(), options, mode & ~umask(), *base);
  1752. if (result.is_error())
  1753. return result.error();
  1754. auto description = result.value();
  1755. u32 fd_flags = (options & O_CLOEXEC) ? FD_CLOEXEC : 0;
  1756. m_fds[fd].set(move(description), fd_flags);
  1757. return fd;
  1758. }
  1759. int Process::alloc_fd(int first_candidate_fd)
  1760. {
  1761. for (int i = first_candidate_fd; i < (int)m_max_open_file_descriptors; ++i) {
  1762. if (!m_fds[i])
  1763. return i;
  1764. }
  1765. return -EMFILE;
  1766. }
  1767. int Process::sys$pipe(int pipefd[2], int flags)
  1768. {
  1769. REQUIRE_PROMISE(stdio);
  1770. if (!validate_write_typed(pipefd))
  1771. return -EFAULT;
  1772. if (number_of_open_file_descriptors() + 2 > max_open_file_descriptors())
  1773. return -EMFILE;
  1774. // Reject flags other than O_CLOEXEC.
  1775. if ((flags & O_CLOEXEC) != flags)
  1776. return -EINVAL;
  1777. u32 fd_flags = (flags & O_CLOEXEC) ? FD_CLOEXEC : 0;
  1778. auto fifo = FIFO::create(m_uid);
  1779. int reader_fd = alloc_fd();
  1780. m_fds[reader_fd].set(fifo->open_direction(FIFO::Direction::Reader), fd_flags);
  1781. m_fds[reader_fd].description->set_readable(true);
  1782. copy_to_user(&pipefd[0], &reader_fd);
  1783. int writer_fd = alloc_fd();
  1784. m_fds[writer_fd].set(fifo->open_direction(FIFO::Direction::Writer), fd_flags);
  1785. m_fds[writer_fd].description->set_writable(true);
  1786. copy_to_user(&pipefd[1], &writer_fd);
  1787. return 0;
  1788. }
  1789. int Process::sys$killpg(int pgrp, int signum)
  1790. {
  1791. REQUIRE_PROMISE(proc);
  1792. if (signum < 1 || signum >= 32)
  1793. return -EINVAL;
  1794. if (pgrp < 0)
  1795. return -EINVAL;
  1796. return do_killpg(pgrp, signum);
  1797. }
  1798. int Process::sys$setuid(uid_t uid)
  1799. {
  1800. REQUIRE_PROMISE(id);
  1801. if (uid != m_uid && !is_superuser())
  1802. return -EPERM;
  1803. m_uid = uid;
  1804. m_euid = uid;
  1805. return 0;
  1806. }
  1807. int Process::sys$setgid(gid_t gid)
  1808. {
  1809. REQUIRE_PROMISE(id);
  1810. if (gid != m_gid && !is_superuser())
  1811. return -EPERM;
  1812. m_gid = gid;
  1813. m_egid = gid;
  1814. return 0;
  1815. }
  1816. unsigned Process::sys$alarm(unsigned seconds)
  1817. {
  1818. REQUIRE_PROMISE(stdio);
  1819. unsigned previous_alarm_remaining = 0;
  1820. if (m_alarm_deadline && m_alarm_deadline > g_uptime) {
  1821. previous_alarm_remaining = (m_alarm_deadline - g_uptime) / TICKS_PER_SECOND;
  1822. }
  1823. if (!seconds) {
  1824. m_alarm_deadline = 0;
  1825. return previous_alarm_remaining;
  1826. }
  1827. m_alarm_deadline = g_uptime + seconds * TICKS_PER_SECOND;
  1828. return previous_alarm_remaining;
  1829. }
  1830. int Process::sys$uname(utsname* buf)
  1831. {
  1832. REQUIRE_PROMISE(stdio);
  1833. if (!validate_write_typed(buf))
  1834. return -EFAULT;
  1835. LOCKER(*s_hostname_lock);
  1836. if (s_hostname->length() + 1 > sizeof(utsname::nodename))
  1837. return -ENAMETOOLONG;
  1838. copy_to_user(buf->sysname, "SerenityOS", 11);
  1839. copy_to_user(buf->release, "1.0-dev", 8);
  1840. copy_to_user(buf->version, "FIXME", 6);
  1841. copy_to_user(buf->machine, "i686", 5);
  1842. copy_to_user(buf->nodename, s_hostname->characters(), s_hostname->length() + 1);
  1843. return 0;
  1844. }
  1845. KResult Process::do_kill(Process& process, int signal)
  1846. {
  1847. // FIXME: Allow sending SIGCONT to everyone in the process group.
  1848. // FIXME: Should setuid processes have some special treatment here?
  1849. if (!is_superuser() && m_euid != process.m_uid && m_uid != process.m_uid)
  1850. return KResult(-EPERM);
  1851. if (process.is_ring0() && signal == SIGKILL) {
  1852. kprintf("%s(%u) attempted to send SIGKILL to ring 0 process %s(%u)\n", name().characters(), m_pid, process.name().characters(), process.pid());
  1853. return KResult(-EPERM);
  1854. }
  1855. if (signal != 0)
  1856. process.send_signal(signal, this);
  1857. return KSuccess;
  1858. }
  1859. KResult Process::do_killpg(pid_t pgrp, int signal)
  1860. {
  1861. InterruptDisabler disabler;
  1862. ASSERT(pgrp >= 0);
  1863. // Send the signal to all processes in the given group.
  1864. if (pgrp == 0) {
  1865. // Send the signal to our own pgrp.
  1866. pgrp = pgid();
  1867. }
  1868. bool group_was_empty = true;
  1869. bool any_succeeded = false;
  1870. KResult error = KSuccess;
  1871. Process::for_each_in_pgrp(pgrp, [&](auto& process) {
  1872. group_was_empty = false;
  1873. KResult res = do_kill(process, signal);
  1874. if (res.is_success())
  1875. any_succeeded = true;
  1876. else
  1877. error = res;
  1878. return IterationDecision::Continue;
  1879. });
  1880. if (group_was_empty)
  1881. return KResult(-ESRCH);
  1882. if (any_succeeded)
  1883. return KSuccess;
  1884. return error;
  1885. }
  1886. int Process::sys$kill(pid_t pid, int signal)
  1887. {
  1888. if (pid == m_pid)
  1889. REQUIRE_PROMISE(stdio);
  1890. else
  1891. REQUIRE_PROMISE(proc);
  1892. if (signal < 0 || signal >= 32)
  1893. return -EINVAL;
  1894. if (pid <= 0) {
  1895. if (pid == INT32_MIN)
  1896. return -EINVAL;
  1897. return do_killpg(-pid, signal);
  1898. }
  1899. if (pid == -1) {
  1900. // FIXME: Send to all processes.
  1901. return -ENOTIMPL;
  1902. }
  1903. if (pid == m_pid) {
  1904. if (signal == 0)
  1905. return 0;
  1906. if (!Thread::current->should_ignore_signal(signal)) {
  1907. Thread::current->send_signal(signal, this);
  1908. (void)Thread::current->block<Thread::SemiPermanentBlocker>(Thread::SemiPermanentBlocker::Reason::Signal);
  1909. }
  1910. return 0;
  1911. }
  1912. InterruptDisabler disabler;
  1913. auto* peer = Process::from_pid(pid);
  1914. if (!peer)
  1915. return -ESRCH;
  1916. return do_kill(*peer, signal);
  1917. }
  1918. int Process::sys$usleep(useconds_t usec)
  1919. {
  1920. REQUIRE_PROMISE(stdio);
  1921. if (!usec)
  1922. return 0;
  1923. u64 wakeup_time = Thread::current->sleep(usec / 1000);
  1924. if (wakeup_time > g_uptime)
  1925. return -EINTR;
  1926. return 0;
  1927. }
  1928. int Process::sys$sleep(unsigned seconds)
  1929. {
  1930. REQUIRE_PROMISE(stdio);
  1931. if (!seconds)
  1932. return 0;
  1933. u64 wakeup_time = Thread::current->sleep(seconds * TICKS_PER_SECOND);
  1934. if (wakeup_time > g_uptime) {
  1935. u32 ticks_left_until_original_wakeup_time = wakeup_time - g_uptime;
  1936. return ticks_left_until_original_wakeup_time / TICKS_PER_SECOND;
  1937. }
  1938. return 0;
  1939. }
  1940. timeval kgettimeofday()
  1941. {
  1942. return const_cast<const timeval&>(((KernelInfoPage*)s_info_page_address_for_kernel.as_ptr())->now);
  1943. }
  1944. void kgettimeofday(timeval& tv)
  1945. {
  1946. tv = kgettimeofday();
  1947. }
  1948. int Process::sys$gettimeofday(timeval* tv)
  1949. {
  1950. REQUIRE_PROMISE(stdio);
  1951. if (!validate_write_typed(tv))
  1952. return -EFAULT;
  1953. *tv = kgettimeofday();
  1954. return 0;
  1955. }
  1956. uid_t Process::sys$getuid()
  1957. {
  1958. REQUIRE_PROMISE(stdio);
  1959. return m_uid;
  1960. }
  1961. gid_t Process::sys$getgid()
  1962. {
  1963. REQUIRE_PROMISE(stdio);
  1964. return m_gid;
  1965. }
  1966. uid_t Process::sys$geteuid()
  1967. {
  1968. REQUIRE_PROMISE(stdio);
  1969. return m_euid;
  1970. }
  1971. gid_t Process::sys$getegid()
  1972. {
  1973. REQUIRE_PROMISE(stdio);
  1974. return m_egid;
  1975. }
  1976. pid_t Process::sys$getpid()
  1977. {
  1978. REQUIRE_PROMISE(stdio);
  1979. return m_pid;
  1980. }
  1981. pid_t Process::sys$getppid()
  1982. {
  1983. REQUIRE_PROMISE(stdio);
  1984. return m_ppid;
  1985. }
  1986. mode_t Process::sys$umask(mode_t mask)
  1987. {
  1988. REQUIRE_PROMISE(stdio);
  1989. auto old_mask = m_umask;
  1990. m_umask = mask & 0777;
  1991. return old_mask;
  1992. }
  1993. siginfo_t Process::reap(Process& process)
  1994. {
  1995. siginfo_t siginfo;
  1996. memset(&siginfo, 0, sizeof(siginfo));
  1997. siginfo.si_signo = SIGCHLD;
  1998. siginfo.si_pid = process.pid();
  1999. siginfo.si_uid = process.uid();
  2000. if (process.m_termination_signal) {
  2001. siginfo.si_status = process.m_termination_signal;
  2002. siginfo.si_code = CLD_KILLED;
  2003. } else {
  2004. siginfo.si_status = process.m_termination_status;
  2005. siginfo.si_code = CLD_EXITED;
  2006. }
  2007. {
  2008. InterruptDisabler disabler;
  2009. if (process.ppid()) {
  2010. auto* parent = Process::from_pid(process.ppid());
  2011. if (parent) {
  2012. parent->m_ticks_in_user_for_dead_children += process.m_ticks_in_user + process.m_ticks_in_user_for_dead_children;
  2013. parent->m_ticks_in_kernel_for_dead_children += process.m_ticks_in_kernel + process.m_ticks_in_kernel_for_dead_children;
  2014. }
  2015. }
  2016. #ifdef PROCESS_DEBUG
  2017. dbg() << "Reaping process " << process;
  2018. #endif
  2019. ASSERT(process.is_dead());
  2020. g_processes->remove(&process);
  2021. }
  2022. delete &process;
  2023. return siginfo;
  2024. }
  2025. KResultOr<siginfo_t> Process::do_waitid(idtype_t idtype, int id, int options)
  2026. {
  2027. if (idtype == P_PID) {
  2028. InterruptDisabler disabler;
  2029. if (idtype == P_PID && !Process::from_pid(id))
  2030. return KResult(-ECHILD);
  2031. }
  2032. if (options & WNOHANG) {
  2033. // FIXME: Figure out what WNOHANG should do with stopped children.
  2034. if (idtype == P_ALL) {
  2035. InterruptDisabler disabler;
  2036. siginfo_t siginfo;
  2037. memset(&siginfo, 0, sizeof(siginfo));
  2038. for_each_child([&siginfo](Process& process) {
  2039. if (process.is_dead())
  2040. siginfo = reap(process);
  2041. return IterationDecision::Continue;
  2042. });
  2043. return siginfo;
  2044. } else if (idtype == P_PID) {
  2045. InterruptDisabler disabler;
  2046. auto* waitee_process = Process::from_pid(id);
  2047. if (!waitee_process)
  2048. return KResult(-ECHILD);
  2049. if (waitee_process->is_dead())
  2050. return reap(*waitee_process);
  2051. } else {
  2052. // FIXME: Implement other PID specs.
  2053. return KResult(-EINVAL);
  2054. }
  2055. }
  2056. pid_t waitee_pid;
  2057. // FIXME: WaitBlocker should support idtype/id specs directly.
  2058. if (idtype == P_ALL) {
  2059. waitee_pid = -1;
  2060. } else if (idtype == P_PID) {
  2061. waitee_pid = id;
  2062. } else {
  2063. // FIXME: Implement other PID specs.
  2064. return KResult(-EINVAL);
  2065. }
  2066. if (Thread::current->block<Thread::WaitBlocker>(options, waitee_pid) != Thread::BlockResult::WokeNormally)
  2067. return KResult(-EINTR);
  2068. InterruptDisabler disabler;
  2069. // NOTE: If waitee was -1, m_waitee_pid will have been filled in by the scheduler.
  2070. Process* waitee_process = Process::from_pid(waitee_pid);
  2071. if (!waitee_process)
  2072. return KResult(-ECHILD);
  2073. ASSERT(waitee_process);
  2074. if (waitee_process->is_dead()) {
  2075. return reap(*waitee_process);
  2076. } else {
  2077. auto* waitee_thread = Thread::from_tid(waitee_pid);
  2078. if (!waitee_thread)
  2079. return KResult(-ECHILD);
  2080. ASSERT(waitee_thread->state() == Thread::State::Stopped);
  2081. siginfo_t siginfo;
  2082. memset(&siginfo, 0, sizeof(siginfo));
  2083. siginfo.si_signo = SIGCHLD;
  2084. siginfo.si_pid = waitee_process->pid();
  2085. siginfo.si_uid = waitee_process->uid();
  2086. siginfo.si_status = CLD_STOPPED;
  2087. siginfo.si_code = waitee_thread->m_stop_signal;
  2088. return siginfo;
  2089. }
  2090. }
  2091. pid_t Process::sys$waitid(const Syscall::SC_waitid_params* user_params)
  2092. {
  2093. REQUIRE_PROMISE(stdio);
  2094. Syscall::SC_waitid_params params;
  2095. if (!validate_read_and_copy_typed(&params, user_params))
  2096. return -EFAULT;
  2097. if (!validate_write_typed(params.infop))
  2098. return -EFAULT;
  2099. #ifdef PROCESS_DEBUG
  2100. dbg() << "sys$waitid(" << params.idtype << ", " << params.id << ", " << params.infop << ", " << params.options << ")";
  2101. #endif
  2102. auto siginfo_or_error = do_waitid(static_cast<idtype_t>(params.idtype), params.id, params.options);
  2103. if (siginfo_or_error.is_error())
  2104. return siginfo_or_error.error();
  2105. copy_to_user(params.infop, &siginfo_or_error.value());
  2106. return 0;
  2107. }
  2108. bool Process::validate_read_from_kernel(VirtualAddress vaddr, size_t size) const
  2109. {
  2110. if (vaddr.is_null())
  2111. return false;
  2112. return MM.validate_kernel_read(*this, vaddr, size);
  2113. }
  2114. bool Process::validate_read(const void* address, size_t size) const
  2115. {
  2116. if (!size)
  2117. return false;
  2118. return MM.validate_user_read(*this, VirtualAddress(address), size);
  2119. }
  2120. bool Process::validate_write(void* address, size_t size) const
  2121. {
  2122. if (!size)
  2123. return false;
  2124. return MM.validate_user_write(*this, VirtualAddress(address), size);
  2125. }
  2126. pid_t Process::sys$getsid(pid_t pid)
  2127. {
  2128. REQUIRE_PROMISE(stdio);
  2129. if (pid == 0)
  2130. return m_sid;
  2131. InterruptDisabler disabler;
  2132. auto* process = Process::from_pid(pid);
  2133. if (!process)
  2134. return -ESRCH;
  2135. if (m_sid != process->m_sid)
  2136. return -EPERM;
  2137. return process->m_sid;
  2138. }
  2139. pid_t Process::sys$setsid()
  2140. {
  2141. REQUIRE_PROMISE(proc);
  2142. InterruptDisabler disabler;
  2143. bool found_process_with_same_pgid_as_my_pid = false;
  2144. Process::for_each_in_pgrp(pid(), [&](auto&) {
  2145. found_process_with_same_pgid_as_my_pid = true;
  2146. return IterationDecision::Break;
  2147. });
  2148. if (found_process_with_same_pgid_as_my_pid)
  2149. return -EPERM;
  2150. m_sid = m_pid;
  2151. m_pgid = m_pid;
  2152. m_tty = nullptr;
  2153. return m_sid;
  2154. }
  2155. pid_t Process::sys$getpgid(pid_t pid)
  2156. {
  2157. REQUIRE_PROMISE(stdio);
  2158. if (pid == 0)
  2159. return m_pgid;
  2160. InterruptDisabler disabler; // FIXME: Use a ProcessHandle
  2161. auto* process = Process::from_pid(pid);
  2162. if (!process)
  2163. return -ESRCH;
  2164. return process->m_pgid;
  2165. }
  2166. pid_t Process::sys$getpgrp()
  2167. {
  2168. REQUIRE_PROMISE(stdio);
  2169. return m_pgid;
  2170. }
  2171. static pid_t get_sid_from_pgid(pid_t pgid)
  2172. {
  2173. InterruptDisabler disabler;
  2174. auto* group_leader = Process::from_pid(pgid);
  2175. if (!group_leader)
  2176. return -1;
  2177. return group_leader->sid();
  2178. }
  2179. int Process::sys$setpgid(pid_t specified_pid, pid_t specified_pgid)
  2180. {
  2181. REQUIRE_PROMISE(proc);
  2182. InterruptDisabler disabler; // FIXME: Use a ProcessHandle
  2183. pid_t pid = specified_pid ? specified_pid : m_pid;
  2184. if (specified_pgid < 0) {
  2185. // The value of the pgid argument is less than 0, or is not a value supported by the implementation.
  2186. return -EINVAL;
  2187. }
  2188. auto* process = Process::from_pid(pid);
  2189. if (!process)
  2190. return -ESRCH;
  2191. if (process != this && process->ppid() != m_pid) {
  2192. // The value of the pid argument does not match the process ID
  2193. // of the calling process or of a child process of the calling process.
  2194. return -ESRCH;
  2195. }
  2196. if (process->pid() == process->sid()) {
  2197. // The process indicated by the pid argument is a session leader.
  2198. return -EPERM;
  2199. }
  2200. if (process->ppid() == m_pid && process->sid() != sid()) {
  2201. // The value of the pid argument matches the process ID of a child
  2202. // process of the calling process and the child process is not in
  2203. // the same session as the calling process.
  2204. return -EPERM;
  2205. }
  2206. pid_t new_pgid = specified_pgid ? specified_pgid : process->m_pid;
  2207. pid_t current_sid = get_sid_from_pgid(process->m_pgid);
  2208. pid_t new_sid = get_sid_from_pgid(new_pgid);
  2209. if (current_sid != new_sid) {
  2210. // Can't move a process between sessions.
  2211. return -EPERM;
  2212. }
  2213. // FIXME: There are more EPERM conditions to check for here..
  2214. process->m_pgid = new_pgid;
  2215. return 0;
  2216. }
  2217. int Process::sys$ioctl(int fd, unsigned request, unsigned arg)
  2218. {
  2219. auto description = file_description(fd);
  2220. if (!description)
  2221. return -EBADF;
  2222. SmapDisabler disabler;
  2223. return description->file().ioctl(*description, request, arg);
  2224. }
  2225. int Process::sys$getdtablesize()
  2226. {
  2227. REQUIRE_PROMISE(stdio);
  2228. return m_max_open_file_descriptors;
  2229. }
  2230. int Process::sys$dup(int old_fd)
  2231. {
  2232. REQUIRE_PROMISE(stdio);
  2233. auto description = file_description(old_fd);
  2234. if (!description)
  2235. return -EBADF;
  2236. int new_fd = alloc_fd();
  2237. if (new_fd < 0)
  2238. return new_fd;
  2239. m_fds[new_fd].set(*description);
  2240. return new_fd;
  2241. }
  2242. int Process::sys$dup2(int old_fd, int new_fd)
  2243. {
  2244. REQUIRE_PROMISE(stdio);
  2245. auto description = file_description(old_fd);
  2246. if (!description)
  2247. return -EBADF;
  2248. if (new_fd < 0 || new_fd >= m_max_open_file_descriptors)
  2249. return -EINVAL;
  2250. m_fds[new_fd].set(*description);
  2251. return new_fd;
  2252. }
  2253. int Process::sys$sigprocmask(int how, const sigset_t* set, sigset_t* old_set)
  2254. {
  2255. REQUIRE_PROMISE(stdio);
  2256. if (old_set) {
  2257. if (!validate_write_typed(old_set))
  2258. return -EFAULT;
  2259. copy_to_user(old_set, &Thread::current->m_signal_mask);
  2260. }
  2261. if (set) {
  2262. if (!validate_read_typed(set))
  2263. return -EFAULT;
  2264. sigset_t set_value;
  2265. copy_from_user(&set_value, set);
  2266. switch (how) {
  2267. case SIG_BLOCK:
  2268. Thread::current->m_signal_mask &= ~set_value;
  2269. break;
  2270. case SIG_UNBLOCK:
  2271. Thread::current->m_signal_mask |= set_value;
  2272. break;
  2273. case SIG_SETMASK:
  2274. Thread::current->m_signal_mask = set_value;
  2275. break;
  2276. default:
  2277. return -EINVAL;
  2278. }
  2279. }
  2280. return 0;
  2281. }
  2282. int Process::sys$sigpending(sigset_t* set)
  2283. {
  2284. REQUIRE_PROMISE(stdio);
  2285. if (!validate_write_typed(set))
  2286. return -EFAULT;
  2287. copy_to_user(set, &Thread::current->m_pending_signals);
  2288. return 0;
  2289. }
  2290. int Process::sys$sigaction(int signum, const sigaction* act, sigaction* old_act)
  2291. {
  2292. REQUIRE_PROMISE(stdio);
  2293. if (signum < 1 || signum >= 32 || signum == SIGKILL || signum == SIGSTOP)
  2294. return -EINVAL;
  2295. if (!validate_read_typed(act))
  2296. return -EFAULT;
  2297. InterruptDisabler disabler; // FIXME: This should use a narrower lock. Maybe a way to ignore signals temporarily?
  2298. auto& action = Thread::current->m_signal_action_data[signum];
  2299. if (old_act) {
  2300. if (!validate_write_typed(old_act))
  2301. return -EFAULT;
  2302. copy_to_user(&old_act->sa_flags, &action.flags);
  2303. copy_to_user(&old_act->sa_sigaction, &action.handler_or_sigaction, sizeof(action.handler_or_sigaction));
  2304. }
  2305. copy_from_user(&action.flags, &act->sa_flags);
  2306. copy_from_user(&action.handler_or_sigaction, &act->sa_sigaction, sizeof(action.handler_or_sigaction));
  2307. return 0;
  2308. }
  2309. int Process::sys$getgroups(ssize_t count, gid_t* user_gids)
  2310. {
  2311. REQUIRE_PROMISE(stdio);
  2312. if (count < 0)
  2313. return -EINVAL;
  2314. if (!count)
  2315. return m_extra_gids.size();
  2316. if (count != (int)m_extra_gids.size())
  2317. return -EINVAL;
  2318. if (!validate_write_typed(user_gids, m_extra_gids.size()))
  2319. return -EFAULT;
  2320. Vector<gid_t> gids;
  2321. for (auto gid : m_extra_gids)
  2322. gids.append(gid);
  2323. copy_to_user(user_gids, gids.data(), sizeof(gid_t) * count);
  2324. return 0;
  2325. }
  2326. int Process::sys$setgroups(ssize_t count, const gid_t* user_gids)
  2327. {
  2328. REQUIRE_PROMISE(id);
  2329. if (count < 0)
  2330. return -EINVAL;
  2331. if (!is_superuser())
  2332. return -EPERM;
  2333. if (count && !validate_read(user_gids, count))
  2334. return -EFAULT;
  2335. Vector<gid_t> gids;
  2336. gids.resize(count);
  2337. copy_from_user(gids.data(), user_gids, sizeof(gid_t) * count);
  2338. HashTable<gid_t> unique_extra_gids;
  2339. for (auto& gid : gids) {
  2340. if (gid != m_gid)
  2341. unique_extra_gids.set(gid);
  2342. }
  2343. m_extra_gids.resize(unique_extra_gids.size());
  2344. size_t i = 0;
  2345. for (auto& gid : unique_extra_gids) {
  2346. if (gid == m_gid)
  2347. continue;
  2348. m_extra_gids[i++] = gid;
  2349. }
  2350. return 0;
  2351. }
  2352. int Process::sys$mkdir(const char* user_path, size_t path_length, mode_t mode)
  2353. {
  2354. REQUIRE_PROMISE(cpath);
  2355. auto path = get_syscall_path_argument(user_path, path_length);
  2356. if (path.is_error())
  2357. return path.error();
  2358. return VFS::the().mkdir(path.value(), mode & ~umask(), current_directory());
  2359. }
  2360. int Process::sys$realpath(const Syscall::SC_realpath_params* user_params)
  2361. {
  2362. REQUIRE_PROMISE(rpath);
  2363. Syscall::SC_realpath_params params;
  2364. if (!validate_read_and_copy_typed(&params, user_params))
  2365. return -EFAULT;
  2366. if (!validate_write(params.buffer.data, params.buffer.size))
  2367. return -EFAULT;
  2368. auto path = get_syscall_path_argument(params.path);
  2369. if (path.is_error())
  2370. return path.error();
  2371. auto custody_or_error = VFS::the().resolve_path(path.value(), current_directory());
  2372. if (custody_or_error.is_error())
  2373. return custody_or_error.error();
  2374. auto& custody = custody_or_error.value();
  2375. auto absolute_path = custody->absolute_path();
  2376. if (absolute_path.length() + 1 > params.buffer.size)
  2377. return -ENAMETOOLONG;
  2378. copy_to_user(params.buffer.data, absolute_path.characters(), absolute_path.length() + 1);
  2379. return 0;
  2380. };
  2381. clock_t Process::sys$times(tms* times)
  2382. {
  2383. REQUIRE_PROMISE(stdio);
  2384. if (!validate_write_typed(times))
  2385. return -EFAULT;
  2386. copy_to_user(&times->tms_utime, &m_ticks_in_user);
  2387. copy_to_user(&times->tms_stime, &m_ticks_in_kernel);
  2388. copy_to_user(&times->tms_cutime, &m_ticks_in_user_for_dead_children);
  2389. copy_to_user(&times->tms_cstime, &m_ticks_in_kernel_for_dead_children);
  2390. return g_uptime & 0x7fffffff;
  2391. }
  2392. int Process::sys$select(const Syscall::SC_select_params* params)
  2393. {
  2394. REQUIRE_PROMISE(stdio);
  2395. // FIXME: Return -EINVAL if timeout is invalid.
  2396. if (!validate_read_typed(params))
  2397. return -EFAULT;
  2398. SmapDisabler disabler;
  2399. int nfds = params->nfds;
  2400. fd_set* readfds = params->readfds;
  2401. fd_set* writefds = params->writefds;
  2402. fd_set* exceptfds = params->exceptfds;
  2403. timeval* timeout = params->timeout;
  2404. if (writefds && !validate_write_typed(writefds))
  2405. return -EFAULT;
  2406. if (readfds && !validate_write_typed(readfds))
  2407. return -EFAULT;
  2408. if (exceptfds && !validate_write_typed(exceptfds))
  2409. return -EFAULT;
  2410. if (timeout && !validate_read_typed(timeout))
  2411. return -EFAULT;
  2412. if (nfds < 0)
  2413. return -EINVAL;
  2414. timeval computed_timeout;
  2415. bool select_has_timeout = false;
  2416. if (timeout && (timeout->tv_sec || timeout->tv_usec)) {
  2417. timeval_add(kgettimeofday(), *timeout, computed_timeout);
  2418. select_has_timeout = true;
  2419. }
  2420. Thread::SelectBlocker::FDVector rfds;
  2421. Thread::SelectBlocker::FDVector wfds;
  2422. Thread::SelectBlocker::FDVector efds;
  2423. auto transfer_fds = [&](auto* fds, auto& vector) -> int {
  2424. vector.clear_with_capacity();
  2425. if (!fds)
  2426. return 0;
  2427. for (int fd = 0; fd < nfds; ++fd) {
  2428. if (FD_ISSET(fd, fds)) {
  2429. if (!file_description(fd)) {
  2430. dbg() << "sys$select: Bad fd number " << fd;
  2431. return -EBADF;
  2432. }
  2433. vector.append(fd);
  2434. }
  2435. }
  2436. return 0;
  2437. };
  2438. if (int error = transfer_fds(writefds, wfds))
  2439. return error;
  2440. if (int error = transfer_fds(readfds, rfds))
  2441. return error;
  2442. if (int error = transfer_fds(exceptfds, efds))
  2443. return error;
  2444. #if defined(DEBUG_IO) || defined(DEBUG_POLL_SELECT)
  2445. dbg() << "selecting on (read:" << rfds.size() << ", write:" << wfds.size() << "), timeout=" << timeout;
  2446. #endif
  2447. if (!timeout || select_has_timeout) {
  2448. if (Thread::current->block<Thread::SelectBlocker>(computed_timeout, select_has_timeout, rfds, wfds, efds) != Thread::BlockResult::WokeNormally)
  2449. return -EINTR;
  2450. }
  2451. int marked_fd_count = 0;
  2452. auto mark_fds = [&](auto* fds, auto& vector, auto should_mark) {
  2453. if (!fds)
  2454. return;
  2455. FD_ZERO(fds);
  2456. for (int fd : vector) {
  2457. if (auto description = file_description(fd); description && should_mark(*description)) {
  2458. FD_SET(fd, fds);
  2459. ++marked_fd_count;
  2460. }
  2461. }
  2462. };
  2463. mark_fds(readfds, rfds, [](auto& description) { return description.can_read(); });
  2464. mark_fds(writefds, wfds, [](auto& description) { return description.can_write(); });
  2465. // FIXME: We should also mark exceptfds as appropriate.
  2466. return marked_fd_count;
  2467. }
  2468. int Process::sys$poll(pollfd* fds, int nfds, int timeout)
  2469. {
  2470. REQUIRE_PROMISE(stdio);
  2471. if (!validate_read_typed(fds))
  2472. return -EFAULT;
  2473. SmapDisabler disabler;
  2474. Thread::SelectBlocker::FDVector rfds;
  2475. Thread::SelectBlocker::FDVector wfds;
  2476. for (int i = 0; i < nfds; ++i) {
  2477. if (fds[i].events & POLLIN)
  2478. rfds.append(fds[i].fd);
  2479. if (fds[i].events & POLLOUT)
  2480. wfds.append(fds[i].fd);
  2481. }
  2482. timeval actual_timeout;
  2483. bool has_timeout = false;
  2484. if (timeout >= 0) {
  2485. // poll is in ms, we want s/us.
  2486. struct timeval tvtimeout;
  2487. tvtimeout.tv_sec = 0;
  2488. while (timeout >= 1000) {
  2489. tvtimeout.tv_sec += 1;
  2490. timeout -= 1000;
  2491. }
  2492. tvtimeout.tv_usec = timeout * 1000;
  2493. timeval_add(kgettimeofday(), tvtimeout, actual_timeout);
  2494. has_timeout = true;
  2495. }
  2496. #if defined(DEBUG_IO) || defined(DEBUG_POLL_SELECT)
  2497. dbg() << "polling on (read:" << rfds.size() << ", write:" << wfds.size() << "), timeout=" << timeout;
  2498. #endif
  2499. if (has_timeout || timeout < 0) {
  2500. if (Thread::current->block<Thread::SelectBlocker>(actual_timeout, has_timeout, rfds, wfds, Thread::SelectBlocker::FDVector()) != Thread::BlockResult::WokeNormally)
  2501. return -EINTR;
  2502. }
  2503. int fds_with_revents = 0;
  2504. for (int i = 0; i < nfds; ++i) {
  2505. auto description = file_description(fds[i].fd);
  2506. if (!description) {
  2507. fds[i].revents = POLLNVAL;
  2508. continue;
  2509. }
  2510. fds[i].revents = 0;
  2511. if (fds[i].events & POLLIN && description->can_read())
  2512. fds[i].revents |= POLLIN;
  2513. if (fds[i].events & POLLOUT && description->can_write())
  2514. fds[i].revents |= POLLOUT;
  2515. if (fds[i].revents)
  2516. ++fds_with_revents;
  2517. }
  2518. return fds_with_revents;
  2519. }
  2520. Custody& Process::current_directory()
  2521. {
  2522. if (!m_cwd)
  2523. m_cwd = VFS::the().root_custody();
  2524. return *m_cwd;
  2525. }
  2526. int Process::sys$link(const Syscall::SC_link_params* user_params)
  2527. {
  2528. REQUIRE_PROMISE(cpath);
  2529. Syscall::SC_link_params params;
  2530. if (!validate_read_and_copy_typed(&params, user_params))
  2531. return -EFAULT;
  2532. auto old_path = validate_and_copy_string_from_user(params.old_path);
  2533. auto new_path = validate_and_copy_string_from_user(params.new_path);
  2534. if (old_path.is_null() || new_path.is_null())
  2535. return -EFAULT;
  2536. return VFS::the().link(old_path, new_path, current_directory());
  2537. }
  2538. int Process::sys$unlink(const char* user_path, size_t path_length)
  2539. {
  2540. REQUIRE_PROMISE(cpath);
  2541. if (!validate_read(user_path, path_length))
  2542. return -EFAULT;
  2543. auto path = get_syscall_path_argument(user_path, path_length);
  2544. if (path.is_error())
  2545. return path.error();
  2546. return VFS::the().unlink(path.value(), current_directory());
  2547. }
  2548. int Process::sys$symlink(const Syscall::SC_symlink_params* user_params)
  2549. {
  2550. REQUIRE_PROMISE(cpath);
  2551. Syscall::SC_symlink_params params;
  2552. if (!validate_read_and_copy_typed(&params, user_params))
  2553. return -EFAULT;
  2554. auto target = get_syscall_path_argument(params.target);
  2555. if (target.is_error())
  2556. return target.error();
  2557. auto linkpath = get_syscall_path_argument(params.linkpath);
  2558. if (linkpath.is_error())
  2559. return linkpath.error();
  2560. return VFS::the().symlink(target.value(), linkpath.value(), current_directory());
  2561. }
  2562. KResultOr<String> Process::get_syscall_path_argument(const char* user_path, size_t path_length) const
  2563. {
  2564. if (path_length == 0)
  2565. return KResult(-EINVAL);
  2566. if (path_length > PATH_MAX)
  2567. return KResult(-ENAMETOOLONG);
  2568. if (!validate_read(user_path, path_length))
  2569. return KResult(-EFAULT);
  2570. return copy_string_from_user(user_path, path_length);
  2571. }
  2572. KResultOr<String> Process::get_syscall_path_argument(const Syscall::StringArgument& path) const
  2573. {
  2574. return get_syscall_path_argument(path.characters, path.length);
  2575. }
  2576. int Process::sys$rmdir(const char* user_path, size_t path_length)
  2577. {
  2578. REQUIRE_PROMISE(cpath);
  2579. auto path = get_syscall_path_argument(user_path, path_length);
  2580. if (path.is_error())
  2581. return path.error();
  2582. return VFS::the().rmdir(path.value(), current_directory());
  2583. }
  2584. int Process::sys$chmod(const char* user_path, size_t path_length, mode_t mode)
  2585. {
  2586. REQUIRE_PROMISE(fattr);
  2587. auto path = get_syscall_path_argument(user_path, path_length);
  2588. if (path.is_error())
  2589. return path.error();
  2590. return VFS::the().chmod(path.value(), mode, current_directory());
  2591. }
  2592. int Process::sys$fchmod(int fd, mode_t mode)
  2593. {
  2594. REQUIRE_PROMISE(fattr);
  2595. auto description = file_description(fd);
  2596. if (!description)
  2597. return -EBADF;
  2598. return description->chmod(mode);
  2599. }
  2600. int Process::sys$fchown(int fd, uid_t uid, gid_t gid)
  2601. {
  2602. REQUIRE_PROMISE(chown);
  2603. auto description = file_description(fd);
  2604. if (!description)
  2605. return -EBADF;
  2606. return description->chown(uid, gid);
  2607. }
  2608. int Process::sys$chown(const Syscall::SC_chown_params* user_params)
  2609. {
  2610. REQUIRE_PROMISE(chown);
  2611. Syscall::SC_chown_params params;
  2612. if (!validate_read_and_copy_typed(&params, user_params))
  2613. return -EFAULT;
  2614. auto path = get_syscall_path_argument(params.path);
  2615. if (path.is_error())
  2616. return path.error();
  2617. return VFS::the().chown(path.value(), params.uid, params.gid, current_directory());
  2618. }
  2619. void Process::finalize()
  2620. {
  2621. ASSERT(Thread::current == g_finalizer);
  2622. #ifdef PROCESS_DEBUG
  2623. dbg() << "Finalizing process " << *this;
  2624. #endif
  2625. if (m_perf_event_buffer) {
  2626. auto description_or_error = VFS::the().open(String::format("perfcore.%d", m_pid), O_CREAT | O_EXCL, 0400, current_directory(), UidAndGid { m_uid, m_gid });
  2627. if (!description_or_error.is_error()) {
  2628. auto& description = description_or_error.value();
  2629. auto json = m_perf_event_buffer->to_json(m_pid, m_executable ? m_executable->absolute_path() : "");
  2630. description->write(json.data(), json.size());
  2631. }
  2632. }
  2633. m_fds.clear();
  2634. m_tty = nullptr;
  2635. m_executable = nullptr;
  2636. m_cwd = nullptr;
  2637. m_root_directory = nullptr;
  2638. m_root_directory_relative_to_global_root = nullptr;
  2639. m_elf_loader = nullptr;
  2640. disown_all_shared_buffers();
  2641. {
  2642. InterruptDisabler disabler;
  2643. if (auto* parent_thread = Thread::from_tid(m_ppid)) {
  2644. if (parent_thread->m_signal_action_data[SIGCHLD].flags & SA_NOCLDWAIT) {
  2645. // NOTE: If the parent doesn't care about this process, let it go.
  2646. m_ppid = 0;
  2647. } else {
  2648. parent_thread->send_signal(SIGCHLD, this);
  2649. }
  2650. }
  2651. }
  2652. m_regions.clear();
  2653. m_dead = true;
  2654. }
  2655. void Process::die()
  2656. {
  2657. // Let go of the TTY, otherwise a slave PTY may keep the master PTY from
  2658. // getting an EOF when the last process using the slave PTY dies.
  2659. // If the master PTY owner relies on an EOF to know when to wait() on a
  2660. // slave owner, we have to allow the PTY pair to be torn down.
  2661. m_tty = nullptr;
  2662. if (m_tracer)
  2663. m_tracer->set_dead();
  2664. kill_all_threads();
  2665. }
  2666. size_t Process::amount_dirty_private() const
  2667. {
  2668. // FIXME: This gets a bit more complicated for Regions sharing the same underlying VMObject.
  2669. // The main issue I'm thinking of is when the VMObject has physical pages that none of the Regions are mapping.
  2670. // That's probably a situation that needs to be looked at in general.
  2671. size_t amount = 0;
  2672. for (auto& region : m_regions) {
  2673. if (!region.is_shared())
  2674. amount += region.amount_dirty();
  2675. }
  2676. return amount;
  2677. }
  2678. size_t Process::amount_clean_inode() const
  2679. {
  2680. HashTable<const InodeVMObject*> vmobjects;
  2681. for (auto& region : m_regions) {
  2682. if (region.vmobject().is_inode())
  2683. vmobjects.set(&static_cast<const InodeVMObject&>(region.vmobject()));
  2684. }
  2685. size_t amount = 0;
  2686. for (auto& vmobject : vmobjects)
  2687. amount += vmobject->amount_clean();
  2688. return amount;
  2689. }
  2690. size_t Process::amount_virtual() const
  2691. {
  2692. size_t amount = 0;
  2693. for (auto& region : m_regions) {
  2694. amount += region.size();
  2695. }
  2696. return amount;
  2697. }
  2698. size_t Process::amount_resident() const
  2699. {
  2700. // FIXME: This will double count if multiple regions use the same physical page.
  2701. size_t amount = 0;
  2702. for (auto& region : m_regions) {
  2703. amount += region.amount_resident();
  2704. }
  2705. return amount;
  2706. }
  2707. size_t Process::amount_shared() const
  2708. {
  2709. // FIXME: This will double count if multiple regions use the same physical page.
  2710. // FIXME: It doesn't work at the moment, since it relies on PhysicalPage ref counts,
  2711. // and each PhysicalPage is only reffed by its VMObject. This needs to be refactored
  2712. // so that every Region contributes +1 ref to each of its PhysicalPages.
  2713. size_t amount = 0;
  2714. for (auto& region : m_regions) {
  2715. amount += region.amount_shared();
  2716. }
  2717. return amount;
  2718. }
  2719. size_t Process::amount_purgeable_volatile() const
  2720. {
  2721. size_t amount = 0;
  2722. for (auto& region : m_regions) {
  2723. if (region.vmobject().is_purgeable() && static_cast<const PurgeableVMObject&>(region.vmobject()).is_volatile())
  2724. amount += region.amount_resident();
  2725. }
  2726. return amount;
  2727. }
  2728. size_t Process::amount_purgeable_nonvolatile() const
  2729. {
  2730. size_t amount = 0;
  2731. for (auto& region : m_regions) {
  2732. if (region.vmobject().is_purgeable() && !static_cast<const PurgeableVMObject&>(region.vmobject()).is_volatile())
  2733. amount += region.amount_resident();
  2734. }
  2735. return amount;
  2736. }
  2737. #define REQUIRE_PROMISE_FOR_SOCKET_DOMAIN(domain) \
  2738. do { \
  2739. if (domain == AF_INET) \
  2740. REQUIRE_PROMISE(inet); \
  2741. else if (domain == AF_LOCAL) \
  2742. REQUIRE_PROMISE(unix); \
  2743. } while (0)
  2744. int Process::sys$socket(int domain, int type, int protocol)
  2745. {
  2746. REQUIRE_PROMISE_FOR_SOCKET_DOMAIN(domain);
  2747. if ((type & SOCK_TYPE_MASK) == SOCK_RAW && !is_superuser())
  2748. return -EACCES;
  2749. int fd = alloc_fd();
  2750. if (fd < 0)
  2751. return fd;
  2752. auto result = Socket::create(domain, type, protocol);
  2753. if (result.is_error())
  2754. return result.error();
  2755. auto description = FileDescription::create(*result.value());
  2756. description->set_readable(true);
  2757. description->set_writable(true);
  2758. unsigned flags = 0;
  2759. if (type & SOCK_CLOEXEC)
  2760. flags |= FD_CLOEXEC;
  2761. if (type & SOCK_NONBLOCK)
  2762. description->set_blocking(false);
  2763. m_fds[fd].set(move(description), flags);
  2764. return fd;
  2765. }
  2766. int Process::sys$bind(int sockfd, const sockaddr* address, socklen_t address_length)
  2767. {
  2768. if (!validate_read(address, address_length))
  2769. return -EFAULT;
  2770. auto description = file_description(sockfd);
  2771. if (!description)
  2772. return -EBADF;
  2773. if (!description->is_socket())
  2774. return -ENOTSOCK;
  2775. auto& socket = *description->socket();
  2776. REQUIRE_PROMISE_FOR_SOCKET_DOMAIN(socket.domain());
  2777. return socket.bind(address, address_length);
  2778. }
  2779. int Process::sys$listen(int sockfd, int backlog)
  2780. {
  2781. if (backlog < 0)
  2782. return -EINVAL;
  2783. auto description = file_description(sockfd);
  2784. if (!description)
  2785. return -EBADF;
  2786. if (!description->is_socket())
  2787. return -ENOTSOCK;
  2788. auto& socket = *description->socket();
  2789. REQUIRE_PROMISE_FOR_SOCKET_DOMAIN(socket.domain());
  2790. if (socket.is_connected())
  2791. return -EINVAL;
  2792. return socket.listen(backlog);
  2793. }
  2794. int Process::sys$accept(int accepting_socket_fd, sockaddr* user_address, socklen_t* user_address_size)
  2795. {
  2796. REQUIRE_PROMISE(accept);
  2797. if (!validate_write_typed(user_address_size))
  2798. return -EFAULT;
  2799. socklen_t address_size = 0;
  2800. copy_from_user(&address_size, user_address_size);
  2801. if (!validate_write(user_address, address_size))
  2802. return -EFAULT;
  2803. int accepted_socket_fd = alloc_fd();
  2804. if (accepted_socket_fd < 0)
  2805. return accepted_socket_fd;
  2806. auto accepting_socket_description = file_description(accepting_socket_fd);
  2807. if (!accepting_socket_description)
  2808. return -EBADF;
  2809. if (!accepting_socket_description->is_socket())
  2810. return -ENOTSOCK;
  2811. auto& socket = *accepting_socket_description->socket();
  2812. if (!socket.can_accept()) {
  2813. if (accepting_socket_description->is_blocking()) {
  2814. if (Thread::current->block<Thread::AcceptBlocker>(*accepting_socket_description) != Thread::BlockResult::WokeNormally)
  2815. return -EINTR;
  2816. } else {
  2817. return -EAGAIN;
  2818. }
  2819. }
  2820. auto accepted_socket = socket.accept();
  2821. ASSERT(accepted_socket);
  2822. u8 address_buffer[sizeof(sockaddr_un)];
  2823. address_size = min(sizeof(sockaddr_un), static_cast<size_t>(address_size));
  2824. accepted_socket->get_peer_address((sockaddr*)address_buffer, &address_size);
  2825. copy_to_user(user_address, address_buffer, address_size);
  2826. copy_to_user(user_address_size, &address_size);
  2827. auto accepted_socket_description = FileDescription::create(*accepted_socket);
  2828. accepted_socket_description->set_readable(true);
  2829. accepted_socket_description->set_writable(true);
  2830. // NOTE: The accepted socket inherits fd flags from the accepting socket.
  2831. // I'm not sure if this matches other systems but it makes sense to me.
  2832. accepted_socket_description->set_blocking(accepting_socket_description->is_blocking());
  2833. m_fds[accepted_socket_fd].set(move(accepted_socket_description), m_fds[accepting_socket_fd].flags);
  2834. // NOTE: Moving this state to Completed is what causes connect() to unblock on the client side.
  2835. accepted_socket->set_setup_state(Socket::SetupState::Completed);
  2836. return accepted_socket_fd;
  2837. }
  2838. int Process::sys$connect(int sockfd, const sockaddr* user_address, socklen_t user_address_size)
  2839. {
  2840. if (!validate_read(user_address, user_address_size))
  2841. return -EFAULT;
  2842. int fd = alloc_fd();
  2843. if (fd < 0)
  2844. return fd;
  2845. auto description = file_description(sockfd);
  2846. if (!description)
  2847. return -EBADF;
  2848. if (!description->is_socket())
  2849. return -ENOTSOCK;
  2850. auto& socket = *description->socket();
  2851. REQUIRE_PROMISE_FOR_SOCKET_DOMAIN(socket.domain());
  2852. u8 address[sizeof(sockaddr_un)];
  2853. size_t address_size = min(sizeof(address), static_cast<size_t>(user_address_size));
  2854. copy_from_user(address, user_address, address_size);
  2855. return socket.connect(*description, (const sockaddr*)address, address_size, description->is_blocking() ? ShouldBlock::Yes : ShouldBlock::No);
  2856. }
  2857. int Process::sys$shutdown(int sockfd, int how)
  2858. {
  2859. REQUIRE_PROMISE(stdio);
  2860. if (how & ~SHUT_RDWR)
  2861. return -EINVAL;
  2862. auto description = file_description(sockfd);
  2863. if (!description)
  2864. return -EBADF;
  2865. if (!description->is_socket())
  2866. return -ENOTSOCK;
  2867. auto& socket = *description->socket();
  2868. REQUIRE_PROMISE_FOR_SOCKET_DOMAIN(socket.domain());
  2869. return socket.shutdown(how);
  2870. }
  2871. ssize_t Process::sys$sendto(const Syscall::SC_sendto_params* user_params)
  2872. {
  2873. REQUIRE_PROMISE(stdio);
  2874. Syscall::SC_sendto_params params;
  2875. if (!validate_read_and_copy_typed(&params, user_params))
  2876. return -EFAULT;
  2877. int flags = params.flags;
  2878. const sockaddr* addr = params.addr;
  2879. socklen_t addr_length = params.addr_length;
  2880. if (!validate(params.data))
  2881. return -EFAULT;
  2882. if (addr && !validate_read(addr, addr_length))
  2883. return -EFAULT;
  2884. auto description = file_description(params.sockfd);
  2885. if (!description)
  2886. return -EBADF;
  2887. if (!description->is_socket())
  2888. return -ENOTSOCK;
  2889. auto& socket = *description->socket();
  2890. if (socket.is_shut_down_for_writing())
  2891. return -EPIPE;
  2892. SmapDisabler disabler;
  2893. return socket.sendto(*description, params.data.data, params.data.size, flags, addr, addr_length);
  2894. }
  2895. ssize_t Process::sys$recvfrom(const Syscall::SC_recvfrom_params* user_params)
  2896. {
  2897. REQUIRE_PROMISE(stdio);
  2898. Syscall::SC_recvfrom_params params;
  2899. if (!validate_read_and_copy_typed(&params, user_params))
  2900. return -EFAULT;
  2901. int flags = params.flags;
  2902. sockaddr* addr = params.addr;
  2903. socklen_t* addr_length = params.addr_length;
  2904. SmapDisabler disabler;
  2905. if (!validate(params.buffer))
  2906. return -EFAULT;
  2907. if (addr_length) {
  2908. if (!validate_write_typed(addr_length))
  2909. return -EFAULT;
  2910. if (!validate_write(addr, *addr_length))
  2911. return -EFAULT;
  2912. } else if (addr) {
  2913. return -EINVAL;
  2914. }
  2915. auto description = file_description(params.sockfd);
  2916. if (!description)
  2917. return -EBADF;
  2918. if (!description->is_socket())
  2919. return -ENOTSOCK;
  2920. auto& socket = *description->socket();
  2921. if (socket.is_shut_down_for_reading())
  2922. return 0;
  2923. bool original_blocking = description->is_blocking();
  2924. if (flags & MSG_DONTWAIT)
  2925. description->set_blocking(false);
  2926. auto nrecv = socket.recvfrom(*description, params.buffer.data, params.buffer.size, flags, addr, addr_length);
  2927. if (flags & MSG_DONTWAIT)
  2928. description->set_blocking(original_blocking);
  2929. return nrecv;
  2930. }
  2931. template<bool sockname, typename Params>
  2932. int Process::get_sock_or_peer_name(const Params& params)
  2933. {
  2934. socklen_t addrlen_value;
  2935. if (!validate_read_and_copy_typed(&addrlen_value, params.addrlen))
  2936. return -EFAULT;
  2937. if (addrlen_value <= 0)
  2938. return -EINVAL;
  2939. if (!validate_write(params.addr, addrlen_value))
  2940. return -EFAULT;
  2941. if (!validate_write_typed(params.addrlen))
  2942. return -EFAULT;
  2943. auto description = file_description(params.sockfd);
  2944. if (!description)
  2945. return -EBADF;
  2946. if (!description->is_socket())
  2947. return -ENOTSOCK;
  2948. auto& socket = *description->socket();
  2949. REQUIRE_PROMISE_FOR_SOCKET_DOMAIN(socket.domain());
  2950. u8 address_buffer[sizeof(sockaddr_un)];
  2951. addrlen_value = min(sizeof(sockaddr_un), static_cast<size_t>(addrlen_value));
  2952. if constexpr (sockname)
  2953. socket.get_local_address((sockaddr*)address_buffer, &addrlen_value);
  2954. else
  2955. socket.get_peer_address((sockaddr*)address_buffer, &addrlen_value);
  2956. copy_to_user(params.addr, address_buffer, addrlen_value);
  2957. copy_to_user(params.addrlen, &addrlen_value);
  2958. return 0;
  2959. }
  2960. int Process::sys$getsockname(const Syscall::SC_getsockname_params* user_params)
  2961. {
  2962. Syscall::SC_getsockname_params params;
  2963. if (!validate_read_and_copy_typed(&params, user_params))
  2964. return -EFAULT;
  2965. return get_sock_or_peer_name<true>(params);
  2966. }
  2967. int Process::sys$getpeername(const Syscall::SC_getpeername_params* user_params)
  2968. {
  2969. Syscall::SC_getpeername_params params;
  2970. if (!validate_read_and_copy_typed(&params, user_params))
  2971. return -EFAULT;
  2972. return get_sock_or_peer_name<false>(params);
  2973. }
  2974. int Process::sys$sched_setparam(int tid, const struct sched_param* param)
  2975. {
  2976. REQUIRE_PROMISE(proc);
  2977. if (!validate_read_typed(param))
  2978. return -EFAULT;
  2979. int desired_priority;
  2980. copy_from_user(&desired_priority, &param->sched_priority);
  2981. InterruptDisabler disabler;
  2982. auto* peer = Thread::current;
  2983. if (tid != 0)
  2984. peer = Thread::from_tid(tid);
  2985. if (!peer)
  2986. return -ESRCH;
  2987. if (!is_superuser() && m_euid != peer->process().m_uid && m_uid != peer->process().m_uid)
  2988. return -EPERM;
  2989. if (desired_priority < THREAD_PRIORITY_MIN || desired_priority > THREAD_PRIORITY_MAX)
  2990. return -EINVAL;
  2991. peer->set_priority((u32)desired_priority);
  2992. return 0;
  2993. }
  2994. int Process::sys$sched_getparam(pid_t pid, struct sched_param* param)
  2995. {
  2996. REQUIRE_PROMISE(proc);
  2997. if (!validate_write_typed(param))
  2998. return -EFAULT;
  2999. InterruptDisabler disabler;
  3000. auto* peer = Thread::current;
  3001. if (pid != 0)
  3002. peer = Thread::from_tid(pid);
  3003. if (!peer)
  3004. return -ESRCH;
  3005. if (!is_superuser() && m_euid != peer->process().m_uid && m_uid != peer->process().m_uid)
  3006. return -EPERM;
  3007. int priority = peer->priority();
  3008. copy_to_user(&param->sched_priority, &priority);
  3009. return 0;
  3010. }
  3011. int Process::sys$getsockopt(const Syscall::SC_getsockopt_params* params)
  3012. {
  3013. if (!validate_read_typed(params))
  3014. return -EFAULT;
  3015. SmapDisabler disabler;
  3016. int sockfd = params->sockfd;
  3017. int level = params->level;
  3018. int option = params->option;
  3019. void* value = params->value;
  3020. socklen_t* value_size = params->value_size;
  3021. if (!validate_write_typed(value_size))
  3022. return -EFAULT;
  3023. if (!validate_write(value, *value_size))
  3024. return -EFAULT;
  3025. auto description = file_description(sockfd);
  3026. if (!description)
  3027. return -EBADF;
  3028. if (!description->is_socket())
  3029. return -ENOTSOCK;
  3030. auto& socket = *description->socket();
  3031. if (has_promised(Pledge::accept) && socket.is_local() && level == SOL_SOCKET && option == SO_PEERCRED) {
  3032. // We make an exception for SOL_SOCKET::SO_PEERCRED on local sockets if you've pledged "accept"
  3033. } else {
  3034. REQUIRE_PROMISE_FOR_SOCKET_DOMAIN(socket.domain());
  3035. }
  3036. return socket.getsockopt(*description, level, option, value, value_size);
  3037. }
  3038. int Process::sys$setsockopt(const Syscall::SC_setsockopt_params* params)
  3039. {
  3040. if (!validate_read_typed(params))
  3041. return -EFAULT;
  3042. SmapDisabler disabler;
  3043. int sockfd = params->sockfd;
  3044. int level = params->level;
  3045. int option = params->option;
  3046. const void* value = params->value;
  3047. socklen_t value_size = params->value_size;
  3048. if (!validate_read(value, value_size))
  3049. return -EFAULT;
  3050. auto description = file_description(sockfd);
  3051. if (!description)
  3052. return -EBADF;
  3053. if (!description->is_socket())
  3054. return -ENOTSOCK;
  3055. auto& socket = *description->socket();
  3056. REQUIRE_PROMISE_FOR_SOCKET_DOMAIN(socket.domain());
  3057. return socket.setsockopt(level, option, value, value_size);
  3058. }
  3059. void Process::disown_all_shared_buffers()
  3060. {
  3061. LOCKER(shared_buffers().lock());
  3062. Vector<SharedBuffer*, 32> buffers_to_disown;
  3063. for (auto& it : shared_buffers().resource())
  3064. buffers_to_disown.append(it.value.ptr());
  3065. for (auto* shared_buffer : buffers_to_disown)
  3066. shared_buffer->disown(m_pid);
  3067. }
  3068. int Process::sys$shbuf_create(int size, void** buffer)
  3069. {
  3070. REQUIRE_PROMISE(shared_buffer);
  3071. if (!size || size < 0)
  3072. return -EINVAL;
  3073. size = PAGE_ROUND_UP(size);
  3074. if (!validate_write_typed(buffer))
  3075. return -EFAULT;
  3076. LOCKER(shared_buffers().lock());
  3077. static int s_next_shbuf_id;
  3078. int shbuf_id = ++s_next_shbuf_id;
  3079. auto shared_buffer = make<SharedBuffer>(shbuf_id, size);
  3080. shared_buffer->share_with(m_pid);
  3081. void* address = shared_buffer->ref_for_process_and_get_address(*this);
  3082. copy_to_user(buffer, &address);
  3083. ASSERT((int)shared_buffer->size() >= size);
  3084. #ifdef SHARED_BUFFER_DEBUG
  3085. kprintf("%s(%u): Created shared buffer %d @ %p (%u bytes, vmobject is %u)\n", name().characters(), pid(), shbuf_id, buffer, size, shared_buffer->size());
  3086. #endif
  3087. shared_buffers().resource().set(shbuf_id, move(shared_buffer));
  3088. return shbuf_id;
  3089. }
  3090. int Process::sys$shbuf_allow_pid(int shbuf_id, pid_t peer_pid)
  3091. {
  3092. REQUIRE_PROMISE(shared_buffer);
  3093. if (!peer_pid || peer_pid < 0 || peer_pid == m_pid)
  3094. return -EINVAL;
  3095. LOCKER(shared_buffers().lock());
  3096. auto it = shared_buffers().resource().find(shbuf_id);
  3097. if (it == shared_buffers().resource().end())
  3098. return -EINVAL;
  3099. auto& shared_buffer = *(*it).value;
  3100. if (!shared_buffer.is_shared_with(m_pid))
  3101. return -EPERM;
  3102. {
  3103. InterruptDisabler disabler;
  3104. auto* peer = Process::from_pid(peer_pid);
  3105. if (!peer)
  3106. return -ESRCH;
  3107. }
  3108. shared_buffer.share_with(peer_pid);
  3109. return 0;
  3110. }
  3111. int Process::sys$shbuf_allow_all(int shbuf_id)
  3112. {
  3113. REQUIRE_PROMISE(shared_buffer);
  3114. LOCKER(shared_buffers().lock());
  3115. auto it = shared_buffers().resource().find(shbuf_id);
  3116. if (it == shared_buffers().resource().end())
  3117. return -EINVAL;
  3118. auto& shared_buffer = *(*it).value;
  3119. if (!shared_buffer.is_shared_with(m_pid))
  3120. return -EPERM;
  3121. shared_buffer.share_globally();
  3122. return 0;
  3123. }
  3124. int Process::sys$shbuf_release(int shbuf_id)
  3125. {
  3126. REQUIRE_PROMISE(shared_buffer);
  3127. LOCKER(shared_buffers().lock());
  3128. auto it = shared_buffers().resource().find(shbuf_id);
  3129. if (it == shared_buffers().resource().end())
  3130. return -EINVAL;
  3131. auto& shared_buffer = *(*it).value;
  3132. if (!shared_buffer.is_shared_with(m_pid))
  3133. return -EPERM;
  3134. #ifdef SHARED_BUFFER_DEBUG
  3135. kprintf("%s(%u): Releasing shared buffer %d, buffer count: %u\n", name().characters(), pid(), shbuf_id, shared_buffers().resource().size());
  3136. #endif
  3137. shared_buffer.deref_for_process(*this);
  3138. return 0;
  3139. }
  3140. void* Process::sys$shbuf_get(int shbuf_id, size_t* user_size)
  3141. {
  3142. REQUIRE_PROMISE(shared_buffer);
  3143. if (user_size && !validate_write_typed(user_size))
  3144. return (void*)-EFAULT;
  3145. LOCKER(shared_buffers().lock());
  3146. auto it = shared_buffers().resource().find(shbuf_id);
  3147. if (it == shared_buffers().resource().end())
  3148. return (void*)-EINVAL;
  3149. auto& shared_buffer = *(*it).value;
  3150. if (!shared_buffer.is_shared_with(m_pid))
  3151. return (void*)-EPERM;
  3152. #ifdef SHARED_BUFFER_DEBUG
  3153. kprintf("%s(%u): Retaining shared buffer %d, buffer count: %u\n", name().characters(), pid(), shbuf_id, shared_buffers().resource().size());
  3154. #endif
  3155. if (user_size) {
  3156. size_t size = shared_buffer.size();
  3157. copy_to_user(user_size, &size);
  3158. }
  3159. return shared_buffer.ref_for_process_and_get_address(*this);
  3160. }
  3161. int Process::sys$shbuf_seal(int shbuf_id)
  3162. {
  3163. REQUIRE_PROMISE(shared_buffer);
  3164. LOCKER(shared_buffers().lock());
  3165. auto it = shared_buffers().resource().find(shbuf_id);
  3166. if (it == shared_buffers().resource().end())
  3167. return -EINVAL;
  3168. auto& shared_buffer = *(*it).value;
  3169. if (!shared_buffer.is_shared_with(m_pid))
  3170. return -EPERM;
  3171. #ifdef SHARED_BUFFER_DEBUG
  3172. kprintf("%s(%u): Sealing shared buffer %d\n", name().characters(), pid(), shbuf_id);
  3173. #endif
  3174. shared_buffer.seal();
  3175. return 0;
  3176. }
  3177. int Process::sys$shbuf_set_volatile(int shbuf_id, bool state)
  3178. {
  3179. REQUIRE_PROMISE(shared_buffer);
  3180. LOCKER(shared_buffers().lock());
  3181. auto it = shared_buffers().resource().find(shbuf_id);
  3182. if (it == shared_buffers().resource().end())
  3183. return -EINVAL;
  3184. auto& shared_buffer = *(*it).value;
  3185. if (!shared_buffer.is_shared_with(m_pid))
  3186. return -EPERM;
  3187. #ifdef SHARED_BUFFER_DEBUG
  3188. kprintf("%s(%u): Set shared buffer %d volatile: %u\n", name().characters(), pid(), shbuf_id, state);
  3189. #endif
  3190. if (!state) {
  3191. bool was_purged = shared_buffer.vmobject().was_purged();
  3192. shared_buffer.vmobject().set_volatile(state);
  3193. shared_buffer.vmobject().set_was_purged(false);
  3194. return was_purged ? 1 : 0;
  3195. }
  3196. shared_buffer.vmobject().set_volatile(true);
  3197. return 0;
  3198. }
  3199. void Process::terminate_due_to_signal(u8 signal)
  3200. {
  3201. ASSERT_INTERRUPTS_DISABLED();
  3202. ASSERT(signal < 32);
  3203. dbg() << "Terminating due to signal " << signal;
  3204. m_termination_status = 0;
  3205. m_termination_signal = signal;
  3206. die();
  3207. }
  3208. void Process::send_signal(u8 signal, Process* sender)
  3209. {
  3210. InterruptDisabler disabler;
  3211. if (!m_thread_count)
  3212. return;
  3213. auto* thread = Thread::from_tid(m_pid);
  3214. if (!thread)
  3215. thread = &any_thread();
  3216. thread->send_signal(signal, sender);
  3217. }
  3218. int Process::sys$create_thread(void* (*entry)(void*), void* argument, const Syscall::SC_create_thread_params* user_params)
  3219. {
  3220. REQUIRE_PROMISE(thread);
  3221. if (!validate_read((const void*)entry, sizeof(void*)))
  3222. return -EFAULT;
  3223. Syscall::SC_create_thread_params params;
  3224. if (!validate_read_and_copy_typed(&params, user_params))
  3225. return -EFAULT;
  3226. unsigned detach_state = params.m_detach_state;
  3227. int schedule_priority = params.m_schedule_priority;
  3228. void* stack_location = params.m_stack_location;
  3229. unsigned stack_size = params.m_stack_size;
  3230. if (!validate_write(stack_location, stack_size))
  3231. return -EFAULT;
  3232. u32 user_stack_address = reinterpret_cast<u32>(stack_location) + stack_size;
  3233. if (!MM.validate_user_stack(*this, VirtualAddress(user_stack_address - 4)))
  3234. return -EFAULT;
  3235. // FIXME: return EAGAIN if Thread::all_threads().size() is greater than PTHREAD_THREADS_MAX
  3236. int requested_thread_priority = schedule_priority;
  3237. if (requested_thread_priority < THREAD_PRIORITY_MIN || requested_thread_priority > THREAD_PRIORITY_MAX)
  3238. return -EINVAL;
  3239. bool is_thread_joinable = (0 == detach_state);
  3240. // FIXME: Do something with guard pages?
  3241. auto* thread = new Thread(*this);
  3242. // We know this thread is not the main_thread,
  3243. // So give it a unique name until the user calls $set_thread_name on it
  3244. // length + 4 to give space for our extra junk at the end
  3245. StringBuilder builder(m_name.length() + 4);
  3246. builder.append(m_name);
  3247. builder.appendf("[%d]", thread->tid());
  3248. thread->set_name(builder.to_string());
  3249. thread->set_priority(requested_thread_priority);
  3250. thread->set_joinable(is_thread_joinable);
  3251. auto& tss = thread->tss();
  3252. tss.eip = (uintptr_t)entry;
  3253. tss.eflags = 0x0202;
  3254. tss.cr3 = page_directory().cr3();
  3255. tss.esp = user_stack_address;
  3256. // NOTE: The stack needs to be 16-byte aligned.
  3257. thread->push_value_on_stack((uintptr_t)argument);
  3258. thread->push_value_on_stack(0);
  3259. thread->make_thread_specific_region({});
  3260. thread->set_state(Thread::State::Runnable);
  3261. return thread->tid();
  3262. }
  3263. void Process::sys$exit_thread(void* exit_value)
  3264. {
  3265. REQUIRE_PROMISE(thread);
  3266. cli();
  3267. Thread::current->m_exit_value = exit_value;
  3268. Thread::current->set_should_die();
  3269. big_lock().force_unlock_if_locked();
  3270. Thread::current->die_if_needed();
  3271. ASSERT_NOT_REACHED();
  3272. }
  3273. int Process::sys$detach_thread(int tid)
  3274. {
  3275. REQUIRE_PROMISE(thread);
  3276. InterruptDisabler disabler;
  3277. auto* thread = Thread::from_tid(tid);
  3278. if (!thread || thread->pid() != pid())
  3279. return -ESRCH;
  3280. if (!thread->is_joinable())
  3281. return -EINVAL;
  3282. thread->set_joinable(false);
  3283. return 0;
  3284. }
  3285. int Process::sys$join_thread(int tid, void** exit_value)
  3286. {
  3287. REQUIRE_PROMISE(thread);
  3288. if (exit_value && !validate_write_typed(exit_value))
  3289. return -EFAULT;
  3290. InterruptDisabler disabler;
  3291. auto* thread = Thread::from_tid(tid);
  3292. if (!thread || thread->pid() != pid())
  3293. return -ESRCH;
  3294. if (thread == Thread::current)
  3295. return -EDEADLK;
  3296. if (thread->m_joinee == Thread::current)
  3297. return -EDEADLK;
  3298. ASSERT(thread->m_joiner != Thread::current);
  3299. if (thread->m_joiner)
  3300. return -EINVAL;
  3301. if (!thread->is_joinable())
  3302. return -EINVAL;
  3303. void* joinee_exit_value = nullptr;
  3304. // NOTE: pthread_join() cannot be interrupted by signals. Only by death.
  3305. for (;;) {
  3306. auto result = Thread::current->block<Thread::JoinBlocker>(*thread, joinee_exit_value);
  3307. if (result == Thread::BlockResult::InterruptedByDeath) {
  3308. // NOTE: This cleans things up so that Thread::finalize() won't
  3309. // get confused about a missing joiner when finalizing the joinee.
  3310. InterruptDisabler disabler_t;
  3311. if (Thread::current->m_joinee) {
  3312. Thread::current->m_joinee->m_joiner = nullptr;
  3313. Thread::current->m_joinee = nullptr;
  3314. }
  3315. break;
  3316. }
  3317. }
  3318. // NOTE: 'thread' is very possibly deleted at this point. Clear it just to be safe.
  3319. thread = nullptr;
  3320. if (exit_value)
  3321. copy_to_user(exit_value, &joinee_exit_value);
  3322. return 0;
  3323. }
  3324. int Process::sys$set_thread_name(int tid, const char* user_name, size_t user_name_length)
  3325. {
  3326. REQUIRE_PROMISE(thread);
  3327. auto name = validate_and_copy_string_from_user(user_name, user_name_length);
  3328. if (name.is_null())
  3329. return -EFAULT;
  3330. const size_t max_thread_name_size = 64;
  3331. if (name.length() > max_thread_name_size)
  3332. return -EINVAL;
  3333. InterruptDisabler disabler;
  3334. auto* thread = Thread::from_tid(tid);
  3335. if (!thread || thread->pid() != pid())
  3336. return -ESRCH;
  3337. thread->set_name(name);
  3338. return 0;
  3339. }
  3340. int Process::sys$get_thread_name(int tid, char* buffer, size_t buffer_size)
  3341. {
  3342. REQUIRE_PROMISE(thread);
  3343. if (buffer_size == 0)
  3344. return -EINVAL;
  3345. if (!validate_write(buffer, buffer_size))
  3346. return -EFAULT;
  3347. InterruptDisabler disabler;
  3348. auto* thread = Thread::from_tid(tid);
  3349. if (!thread || thread->pid() != pid())
  3350. return -ESRCH;
  3351. if (thread->name().length() + 1 > (size_t)buffer_size)
  3352. return -ENAMETOOLONG;
  3353. copy_to_user(buffer, thread->name().characters(), thread->name().length() + 1);
  3354. return 0;
  3355. }
  3356. int Process::sys$gettid()
  3357. {
  3358. REQUIRE_PROMISE(stdio);
  3359. return Thread::current->tid();
  3360. }
  3361. int Process::sys$donate(int tid)
  3362. {
  3363. REQUIRE_PROMISE(stdio);
  3364. if (tid < 0)
  3365. return -EINVAL;
  3366. InterruptDisabler disabler;
  3367. auto* thread = Thread::from_tid(tid);
  3368. if (!thread || thread->pid() != pid())
  3369. return -ESRCH;
  3370. Scheduler::donate_to(thread, "sys$donate");
  3371. return 0;
  3372. }
  3373. int Process::sys$rename(const Syscall::SC_rename_params* user_params)
  3374. {
  3375. REQUIRE_PROMISE(cpath);
  3376. Syscall::SC_rename_params params;
  3377. if (!validate_read_and_copy_typed(&params, user_params))
  3378. return -EFAULT;
  3379. auto old_path = get_syscall_path_argument(params.old_path);
  3380. if (old_path.is_error())
  3381. return old_path.error();
  3382. auto new_path = get_syscall_path_argument(params.new_path);
  3383. if (new_path.is_error())
  3384. return new_path.error();
  3385. return VFS::the().rename(old_path.value(), new_path.value(), current_directory());
  3386. }
  3387. int Process::sys$ftruncate(int fd, off_t length)
  3388. {
  3389. REQUIRE_PROMISE(stdio);
  3390. if (length < 0)
  3391. return -EINVAL;
  3392. auto description = file_description(fd);
  3393. if (!description)
  3394. return -EBADF;
  3395. if (!description->is_writable())
  3396. return -EBADF;
  3397. return description->truncate(static_cast<u64>(length));
  3398. }
  3399. int Process::sys$watch_file(const char* user_path, size_t path_length)
  3400. {
  3401. REQUIRE_PROMISE(rpath);
  3402. auto path = get_syscall_path_argument(user_path, path_length);
  3403. if (path.is_error())
  3404. return path.error();
  3405. auto custody_or_error = VFS::the().resolve_path(path.value(), current_directory());
  3406. if (custody_or_error.is_error())
  3407. return custody_or_error.error();
  3408. auto& custody = custody_or_error.value();
  3409. auto& inode = custody->inode();
  3410. if (!inode.fs().supports_watchers())
  3411. return -ENOTSUP;
  3412. int fd = alloc_fd();
  3413. if (fd < 0)
  3414. return fd;
  3415. m_fds[fd].set(FileDescription::create(*InodeWatcher::create(inode)));
  3416. m_fds[fd].description->set_readable(true);
  3417. return fd;
  3418. }
  3419. int Process::sys$systrace(pid_t pid)
  3420. {
  3421. REQUIRE_PROMISE(proc);
  3422. InterruptDisabler disabler;
  3423. auto* peer = Process::from_pid(pid);
  3424. if (!peer)
  3425. return -ESRCH;
  3426. if (peer->uid() != m_euid)
  3427. return -EACCES;
  3428. int fd = alloc_fd();
  3429. if (fd < 0)
  3430. return fd;
  3431. auto description = FileDescription::create(peer->ensure_tracer());
  3432. description->set_readable(true);
  3433. m_fds[fd].set(move(description), 0);
  3434. return fd;
  3435. }
  3436. int Process::sys$halt()
  3437. {
  3438. if (!is_superuser())
  3439. return -EPERM;
  3440. REQUIRE_NO_PROMISES;
  3441. dbg() << "acquiring FS locks...";
  3442. FS::lock_all();
  3443. dbg() << "syncing mounted filesystems...";
  3444. FS::sync();
  3445. dbg() << "attempting system shutdown...";
  3446. IO::out16(0x604, 0x2000);
  3447. return ESUCCESS;
  3448. }
  3449. int Process::sys$reboot()
  3450. {
  3451. if (!is_superuser())
  3452. return -EPERM;
  3453. REQUIRE_NO_PROMISES;
  3454. dbg() << "acquiring FS locks...";
  3455. FS::lock_all();
  3456. dbg() << "syncing mounted filesystems...";
  3457. FS::sync();
  3458. dbg() << "attempting reboot via KB Controller...";
  3459. IO::out8(0x64, 0xFE);
  3460. return ESUCCESS;
  3461. }
  3462. int Process::sys$mount(const Syscall::SC_mount_params* user_params)
  3463. {
  3464. if (!is_superuser())
  3465. return -EPERM;
  3466. REQUIRE_NO_PROMISES;
  3467. Syscall::SC_mount_params params;
  3468. if (!validate_read_and_copy_typed(&params, user_params))
  3469. return -EFAULT;
  3470. auto source = validate_and_copy_string_from_user(params.source);
  3471. auto target = validate_and_copy_string_from_user(params.target);
  3472. auto fs_type = validate_and_copy_string_from_user(params.fs_type);
  3473. if (source.is_null() || target.is_null() || fs_type.is_null())
  3474. return -EFAULT;
  3475. dbg() << "mount " << fs_type << ": source " << source << " @ " << target;
  3476. auto custody_or_error = VFS::the().resolve_path(target, current_directory());
  3477. if (custody_or_error.is_error())
  3478. return custody_or_error.error();
  3479. auto& target_custody = custody_or_error.value();
  3480. RefPtr<FS> fs;
  3481. if (params.flags & MS_BIND) {
  3482. // We're doing a bind mount.
  3483. auto source_or_error = VFS::the().resolve_path(source, current_directory());
  3484. if (source_or_error.is_error())
  3485. return source_or_error.error();
  3486. auto& source_custody = source_or_error.value();
  3487. return VFS::the().bind_mount(source_custody, target_custody, params.flags);
  3488. }
  3489. if (fs_type == "ext2" || fs_type == "Ext2FS") {
  3490. auto source_or_error = VFS::the().open(source, O_RDWR, 0, current_directory());
  3491. if (source_or_error.is_error())
  3492. return source_or_error.error();
  3493. auto* device = source_or_error.value()->device();
  3494. if (!device || !device->is_block_device()) {
  3495. dbg() << "mount: this is not a BlockDevice";
  3496. return -ENODEV;
  3497. }
  3498. auto& block_device = static_cast<BlockDevice&>(*device);
  3499. dbg() << "mount: attempting to mount " << block_device.absolute_path() << " on " << target;
  3500. fs = Ext2FS::create(block_device);
  3501. } else if (fs_type == "proc" || fs_type == "ProcFS") {
  3502. fs = ProcFS::create();
  3503. } else if (fs_type == "devpts" || fs_type == "DevPtsFS") {
  3504. fs = DevPtsFS::create();
  3505. } else if (fs_type == "tmp" || fs_type == "TmpFS") {
  3506. fs = TmpFS::create();
  3507. } else {
  3508. return -ENODEV;
  3509. }
  3510. if (!fs->initialize()) {
  3511. dbg() << "mount: failed to initialize " << fs_type << " filesystem on " << source;
  3512. return -ENODEV;
  3513. }
  3514. auto result = VFS::the().mount(fs.release_nonnull(), target_custody, params.flags);
  3515. dbg() << "mount: successfully mounted " << source << " on " << target;
  3516. return result;
  3517. }
  3518. int Process::sys$umount(const char* user_mountpoint, size_t mountpoint_length)
  3519. {
  3520. if (!is_superuser())
  3521. return -EPERM;
  3522. REQUIRE_NO_PROMISES;
  3523. if (!validate_read(user_mountpoint, mountpoint_length))
  3524. return -EFAULT;
  3525. auto mountpoint = get_syscall_path_argument(user_mountpoint, mountpoint_length);
  3526. if (mountpoint.is_error())
  3527. return mountpoint.error();
  3528. auto metadata_or_error = VFS::the().lookup_metadata(mountpoint.value(), current_directory());
  3529. if (metadata_or_error.is_error())
  3530. return metadata_or_error.error();
  3531. auto guest_inode_id = metadata_or_error.value().inode;
  3532. return VFS::the().unmount(guest_inode_id);
  3533. }
  3534. ProcessTracer& Process::ensure_tracer()
  3535. {
  3536. if (!m_tracer)
  3537. m_tracer = ProcessTracer::create(m_pid);
  3538. return *m_tracer;
  3539. }
  3540. void Process::FileDescriptionAndFlags::clear()
  3541. {
  3542. description = nullptr;
  3543. flags = 0;
  3544. }
  3545. void Process::FileDescriptionAndFlags::set(NonnullRefPtr<FileDescription>&& d, u32 f)
  3546. {
  3547. description = move(d);
  3548. flags = f;
  3549. }
  3550. int Process::sys$mknod(const Syscall::SC_mknod_params* user_params)
  3551. {
  3552. REQUIRE_PROMISE(dpath);
  3553. Syscall::SC_mknod_params params;
  3554. if (!validate_read_and_copy_typed(&params, user_params))
  3555. return -EFAULT;
  3556. if (!is_superuser() && !is_regular_file(params.mode) && !is_fifo(params.mode) && !is_socket(params.mode))
  3557. return -EPERM;
  3558. auto path = get_syscall_path_argument(params.path);
  3559. if (path.is_error())
  3560. return path.error();
  3561. return VFS::the().mknod(path.value(), params.mode & ~umask(), params.dev, current_directory());
  3562. }
  3563. int Process::sys$dump_backtrace()
  3564. {
  3565. dump_backtrace();
  3566. return 0;
  3567. }
  3568. int Process::sys$dbgputch(u8 ch)
  3569. {
  3570. IO::out8(0xe9, ch);
  3571. return 0;
  3572. }
  3573. int Process::sys$dbgputstr(const u8* characters, int length)
  3574. {
  3575. if (!length)
  3576. return 0;
  3577. if (!validate_read(characters, length))
  3578. return -EFAULT;
  3579. SmapDisabler disabler;
  3580. for (int i = 0; i < length; ++i)
  3581. IO::out8(0xe9, characters[i]);
  3582. return 0;
  3583. }
  3584. KBuffer Process::backtrace(ProcessInspectionHandle& handle) const
  3585. {
  3586. KBufferBuilder builder;
  3587. for_each_thread([&](Thread& thread) {
  3588. builder.appendf("Thread %d (%s):\n", thread.tid(), thread.name().characters());
  3589. builder.append(thread.backtrace(handle));
  3590. return IterationDecision::Continue;
  3591. });
  3592. return builder.build();
  3593. }
  3594. int Process::sys$set_process_icon(int icon_id)
  3595. {
  3596. REQUIRE_PROMISE(shared_buffer);
  3597. LOCKER(shared_buffers().lock());
  3598. auto it = shared_buffers().resource().find(icon_id);
  3599. if (it == shared_buffers().resource().end())
  3600. return -EINVAL;
  3601. auto& shared_buffer = *(*it).value;
  3602. if (!shared_buffer.is_shared_with(m_pid))
  3603. return -EPERM;
  3604. m_icon_id = icon_id;
  3605. return 0;
  3606. }
  3607. int Process::sys$get_process_name(char* buffer, int buffer_size)
  3608. {
  3609. REQUIRE_PROMISE(stdio);
  3610. if (buffer_size <= 0)
  3611. return -EINVAL;
  3612. if (!validate_write(buffer, buffer_size))
  3613. return -EFAULT;
  3614. if (m_name.length() + 1 > (size_t)buffer_size)
  3615. return -ENAMETOOLONG;
  3616. copy_to_user(buffer, m_name.characters(), m_name.length() + 1);
  3617. return 0;
  3618. }
  3619. // We don't use the flag yet, but we could use it for distinguishing
  3620. // random source like Linux, unlike the OpenBSD equivalent. However, if we
  3621. // do, we should be able of the caveats that Linux has dealt with.
  3622. int Process::sys$getrandom(void* buffer, size_t buffer_size, unsigned int flags __attribute__((unused)))
  3623. {
  3624. REQUIRE_PROMISE(stdio);
  3625. if (buffer_size <= 0)
  3626. return -EINVAL;
  3627. if (!validate_write(buffer, buffer_size))
  3628. return -EFAULT;
  3629. SmapDisabler disabler;
  3630. get_good_random_bytes((u8*)buffer, buffer_size);
  3631. return 0;
  3632. }
  3633. int Process::sys$setkeymap(const Syscall::SC_setkeymap_params* user_params)
  3634. {
  3635. if (!is_superuser())
  3636. return -EPERM;
  3637. REQUIRE_NO_PROMISES;
  3638. Syscall::SC_setkeymap_params params;
  3639. if (!validate_read_and_copy_typed(&params, user_params))
  3640. return -EFAULT;
  3641. const char* map = params.map;
  3642. const char* shift_map = params.shift_map;
  3643. const char* alt_map = params.alt_map;
  3644. const char* altgr_map = params.altgr_map;
  3645. if (!validate_read(map, 0x80))
  3646. return -EFAULT;
  3647. if (!validate_read(shift_map, 0x80))
  3648. return -EFAULT;
  3649. if (!validate_read(alt_map, 0x80))
  3650. return -EFAULT;
  3651. if (!validate_read(altgr_map, 0x80))
  3652. return -EFAULT;
  3653. SmapDisabler disabler;
  3654. KeyboardDevice::the().set_maps(map, shift_map, alt_map, altgr_map);
  3655. return 0;
  3656. }
  3657. int Process::sys$clock_gettime(clockid_t clock_id, timespec* user_ts)
  3658. {
  3659. REQUIRE_PROMISE(stdio);
  3660. if (!validate_write_typed(user_ts))
  3661. return -EFAULT;
  3662. timespec ts;
  3663. memset(&ts, 0, sizeof(ts));
  3664. switch (clock_id) {
  3665. case CLOCK_MONOTONIC:
  3666. ts.tv_sec = g_uptime / TICKS_PER_SECOND;
  3667. ts.tv_nsec = (g_uptime % TICKS_PER_SECOND) * 1000000;
  3668. break;
  3669. default:
  3670. return -EINVAL;
  3671. }
  3672. copy_to_user(user_ts, &ts);
  3673. return 0;
  3674. }
  3675. int Process::sys$clock_nanosleep(const Syscall::SC_clock_nanosleep_params* user_params)
  3676. {
  3677. REQUIRE_PROMISE(stdio);
  3678. Syscall::SC_clock_nanosleep_params params;
  3679. if (!validate_read_and_copy_typed(&params, user_params))
  3680. return -EFAULT;
  3681. if (params.requested_sleep && !validate_read_typed(params.requested_sleep))
  3682. return -EFAULT;
  3683. timespec requested_sleep;
  3684. copy_from_user(&requested_sleep, params.requested_sleep);
  3685. if (params.remaining_sleep && !validate_write_typed(params.remaining_sleep))
  3686. return -EFAULT;
  3687. bool is_absolute = params.flags & TIMER_ABSTIME;
  3688. switch (params.clock_id) {
  3689. case CLOCK_MONOTONIC: {
  3690. u64 wakeup_time;
  3691. if (is_absolute) {
  3692. u64 time_to_wake = (requested_sleep.tv_sec * 1000 + requested_sleep.tv_nsec / 1000000);
  3693. wakeup_time = Thread::current->sleep_until(time_to_wake);
  3694. } else {
  3695. u32 ticks_to_sleep = (requested_sleep.tv_sec * 1000 + requested_sleep.tv_nsec / 1000000);
  3696. if (!ticks_to_sleep)
  3697. return 0;
  3698. wakeup_time = Thread::current->sleep(ticks_to_sleep);
  3699. }
  3700. if (wakeup_time > g_uptime) {
  3701. u32 ticks_left = wakeup_time - g_uptime;
  3702. if (!is_absolute && params.remaining_sleep) {
  3703. timespec remaining_sleep;
  3704. memset(&remaining_sleep, 0, sizeof(timespec));
  3705. remaining_sleep.tv_sec = ticks_left / TICKS_PER_SECOND;
  3706. ticks_left -= remaining_sleep.tv_sec * TICKS_PER_SECOND;
  3707. remaining_sleep.tv_nsec = ticks_left * 1000000;
  3708. copy_to_user(params.remaining_sleep, &remaining_sleep);
  3709. }
  3710. return -EINTR;
  3711. }
  3712. return 0;
  3713. }
  3714. default:
  3715. return -EINVAL;
  3716. }
  3717. }
  3718. int Process::sys$sync()
  3719. {
  3720. REQUIRE_PROMISE(stdio);
  3721. VFS::the().sync();
  3722. return 0;
  3723. }
  3724. int Process::sys$yield()
  3725. {
  3726. REQUIRE_PROMISE(stdio);
  3727. Thread::current->yield_without_holding_big_lock();
  3728. return 0;
  3729. }
  3730. int Process::sys$beep()
  3731. {
  3732. PCSpeaker::tone_on(440);
  3733. u64 wakeup_time = Thread::current->sleep(100);
  3734. PCSpeaker::tone_off();
  3735. if (wakeup_time > g_uptime)
  3736. return -EINTR;
  3737. return 0;
  3738. }
  3739. int Process::sys$module_load(const char* user_path, size_t path_length)
  3740. {
  3741. if (!is_superuser())
  3742. return -EPERM;
  3743. REQUIRE_NO_PROMISES;
  3744. auto path = get_syscall_path_argument(user_path, path_length);
  3745. if (path.is_error())
  3746. return path.error();
  3747. auto description_or_error = VFS::the().open(path.value(), O_RDONLY, 0, current_directory());
  3748. if (description_or_error.is_error())
  3749. return description_or_error.error();
  3750. auto& description = description_or_error.value();
  3751. auto payload = description->read_entire_file();
  3752. auto storage = KBuffer::create_with_size(payload.size());
  3753. memcpy(storage.data(), payload.data(), payload.size());
  3754. payload.clear();
  3755. auto elf_image = make<ELFImage>(storage.data(), storage.size());
  3756. if (!elf_image->parse())
  3757. return -ENOEXEC;
  3758. HashMap<String, u8*> section_storage_by_name;
  3759. auto module = make<Module>();
  3760. elf_image->for_each_section_of_type(SHT_PROGBITS, [&](const ELFImage::Section& section) {
  3761. auto section_storage = KBuffer::copy(section.raw_data(), section.size(), Region::Access::Read | Region::Access::Write | Region::Access::Execute);
  3762. section_storage_by_name.set(section.name(), section_storage.data());
  3763. module->sections.append(move(section_storage));
  3764. return IterationDecision::Continue;
  3765. });
  3766. bool missing_symbols = false;
  3767. elf_image->for_each_section_of_type(SHT_PROGBITS, [&](const ELFImage::Section& section) {
  3768. auto* section_storage = section_storage_by_name.get(section.name()).value_or(nullptr);
  3769. ASSERT(section_storage);
  3770. section.relocations().for_each_relocation([&](const ELFImage::Relocation& relocation) {
  3771. auto& patch_ptr = *reinterpret_cast<ptrdiff_t*>(section_storage + relocation.offset());
  3772. switch (relocation.type()) {
  3773. case R_386_PC32: {
  3774. // PC-relative relocation
  3775. dbg() << "PC-relative relocation: " << relocation.symbol().name();
  3776. u32 symbol_address = address_for_kernel_symbol(relocation.symbol().name());
  3777. if (symbol_address == 0)
  3778. missing_symbols = true;
  3779. dbg() << " Symbol address: " << (void*)symbol_address;
  3780. ptrdiff_t relative_offset = (char*)symbol_address - ((char*)&patch_ptr + 4);
  3781. patch_ptr = relative_offset;
  3782. break;
  3783. }
  3784. case R_386_32: // Absolute relocation
  3785. dbg() << "Absolute relocation: '" << relocation.symbol().name() << "' value:" << relocation.symbol().value() << ", index:" << relocation.symbol_index();
  3786. if (relocation.symbol().bind() == STB_LOCAL) {
  3787. auto* section_storage_containing_symbol = section_storage_by_name.get(relocation.symbol().section().name()).value_or(nullptr);
  3788. ASSERT(section_storage_containing_symbol);
  3789. u32 symbol_address = (ptrdiff_t)(section_storage_containing_symbol + relocation.symbol().value());
  3790. if (symbol_address == 0)
  3791. missing_symbols = true;
  3792. dbg() << " Symbol address: " << (void*)symbol_address;
  3793. patch_ptr += symbol_address;
  3794. } else if (relocation.symbol().bind() == STB_GLOBAL) {
  3795. u32 symbol_address = address_for_kernel_symbol(relocation.symbol().name());
  3796. if (symbol_address == 0)
  3797. missing_symbols = true;
  3798. dbg() << " Symbol address: " << (void*)symbol_address;
  3799. patch_ptr += symbol_address;
  3800. } else {
  3801. ASSERT_NOT_REACHED();
  3802. }
  3803. break;
  3804. }
  3805. return IterationDecision::Continue;
  3806. });
  3807. return IterationDecision::Continue;
  3808. });
  3809. if (missing_symbols)
  3810. return -EINVAL;
  3811. auto* text_base = section_storage_by_name.get(".text").value_or(nullptr);
  3812. if (!text_base) {
  3813. dbg() << "No .text section found in module!";
  3814. return -EINVAL;
  3815. }
  3816. elf_image->for_each_symbol([&](const ELFImage::Symbol& symbol) {
  3817. dbg() << " - " << symbol.type() << " '" << symbol.name() << "' @ " << (void*)symbol.value() << ", size=" << symbol.size();
  3818. if (symbol.name() == "module_init") {
  3819. module->module_init = (ModuleInitPtr)(text_base + symbol.value());
  3820. } else if (symbol.name() == "module_fini") {
  3821. module->module_fini = (ModuleFiniPtr)(text_base + symbol.value());
  3822. } else if (symbol.name() == "module_name") {
  3823. const u8* storage = section_storage_by_name.get(symbol.section().name()).value_or(nullptr);
  3824. if (storage)
  3825. module->name = String((const char*)(storage + symbol.value()));
  3826. }
  3827. return IterationDecision::Continue;
  3828. });
  3829. if (!module->module_init)
  3830. return -EINVAL;
  3831. if (g_modules->contains(module->name)) {
  3832. dbg() << "a module with the name " << module->name << " is already loaded; please unload it first";
  3833. return -EEXIST;
  3834. }
  3835. module->module_init();
  3836. auto name = module->name;
  3837. g_modules->set(name, move(module));
  3838. return 0;
  3839. }
  3840. int Process::sys$module_unload(const char* user_name, size_t name_length)
  3841. {
  3842. if (!is_superuser())
  3843. return -EPERM;
  3844. REQUIRE_NO_PROMISES;
  3845. auto module_name = validate_and_copy_string_from_user(user_name, name_length);
  3846. if (module_name.is_null())
  3847. return -EFAULT;
  3848. auto it = g_modules->find(module_name);
  3849. if (it == g_modules->end())
  3850. return -ENOENT;
  3851. if (it->value->module_fini)
  3852. it->value->module_fini();
  3853. g_modules->remove(it);
  3854. return 0;
  3855. }
  3856. int Process::sys$profiling_enable(pid_t pid)
  3857. {
  3858. REQUIRE_NO_PROMISES;
  3859. InterruptDisabler disabler;
  3860. auto* process = Process::from_pid(pid);
  3861. if (!process)
  3862. return -ESRCH;
  3863. if (process->is_dead())
  3864. return -ESRCH;
  3865. if (!is_superuser() && process->uid() != m_uid)
  3866. return -EPERM;
  3867. Profiling::start(*process);
  3868. process->set_profiling(true);
  3869. return 0;
  3870. }
  3871. int Process::sys$profiling_disable(pid_t pid)
  3872. {
  3873. InterruptDisabler disabler;
  3874. auto* process = Process::from_pid(pid);
  3875. if (!process)
  3876. return -ESRCH;
  3877. if (!is_superuser() && process->uid() != m_uid)
  3878. return -EPERM;
  3879. process->set_profiling(false);
  3880. Profiling::stop();
  3881. return 0;
  3882. }
  3883. void* Process::sys$get_kernel_info_page()
  3884. {
  3885. REQUIRE_PROMISE(stdio);
  3886. return s_info_page_address_for_userspace.as_ptr();
  3887. }
  3888. Thread& Process::any_thread()
  3889. {
  3890. Thread* found_thread = nullptr;
  3891. for_each_thread([&](auto& thread) {
  3892. found_thread = &thread;
  3893. return IterationDecision::Break;
  3894. });
  3895. ASSERT(found_thread);
  3896. return *found_thread;
  3897. }
  3898. WaitQueue& Process::futex_queue(i32* userspace_address)
  3899. {
  3900. auto& queue = m_futex_queues.ensure((uintptr_t)userspace_address);
  3901. if (!queue)
  3902. queue = make<WaitQueue>();
  3903. return *queue;
  3904. }
  3905. int Process::sys$futex(const Syscall::SC_futex_params* user_params)
  3906. {
  3907. REQUIRE_PROMISE(thread);
  3908. Syscall::SC_futex_params params;
  3909. if (!validate_read_and_copy_typed(&params, user_params))
  3910. return -EFAULT;
  3911. i32* userspace_address = params.userspace_address;
  3912. int futex_op = params.futex_op;
  3913. i32 value = params.val;
  3914. const timespec* user_timeout = params.timeout;
  3915. if (!validate_read_typed(userspace_address))
  3916. return -EFAULT;
  3917. if (user_timeout && !validate_read_typed(user_timeout))
  3918. return -EFAULT;
  3919. timespec timeout { 0, 0 };
  3920. if (user_timeout)
  3921. copy_from_user(&timeout, user_timeout);
  3922. i32 user_value;
  3923. switch (futex_op) {
  3924. case FUTEX_WAIT:
  3925. copy_from_user(&user_value, userspace_address);
  3926. if (user_value != value)
  3927. return -EAGAIN;
  3928. // FIXME: This is supposed to be interruptible by a signal, but right now WaitQueue cannot be interrupted.
  3929. // FIXME: Support timeout!
  3930. Thread::current->wait_on(futex_queue(userspace_address));
  3931. break;
  3932. case FUTEX_WAKE:
  3933. if (value == 0)
  3934. return 0;
  3935. if (value == 1) {
  3936. futex_queue(userspace_address).wake_one();
  3937. } else {
  3938. // FIXME: Wake exactly (value) waiters.
  3939. futex_queue(userspace_address).wake_all();
  3940. }
  3941. break;
  3942. }
  3943. return 0;
  3944. }
  3945. int Process::sys$set_thread_boost(int tid, int amount)
  3946. {
  3947. REQUIRE_PROMISE(proc);
  3948. if (amount < 0 || amount > 20)
  3949. return -EINVAL;
  3950. InterruptDisabler disabler;
  3951. auto* thread = Thread::from_tid(tid);
  3952. if (!thread)
  3953. return -ESRCH;
  3954. if (thread->state() == Thread::State::Dead || thread->state() == Thread::State::Dying)
  3955. return -ESRCH;
  3956. if (!is_superuser() && thread->process().uid() != euid())
  3957. return -EPERM;
  3958. thread->set_priority_boost(amount);
  3959. return 0;
  3960. }
  3961. int Process::sys$set_process_boost(pid_t pid, int amount)
  3962. {
  3963. REQUIRE_PROMISE(proc);
  3964. if (amount < 0 || amount > 20)
  3965. return -EINVAL;
  3966. InterruptDisabler disabler;
  3967. auto* process = Process::from_pid(pid);
  3968. if (!process || process->is_dead())
  3969. return -ESRCH;
  3970. if (!is_superuser() && process->uid() != euid())
  3971. return -EPERM;
  3972. process->m_priority_boost = amount;
  3973. return 0;
  3974. }
  3975. int Process::sys$chroot(const char* user_path, size_t path_length, int mount_flags)
  3976. {
  3977. if (!is_superuser())
  3978. return -EPERM;
  3979. REQUIRE_PROMISE(chroot);
  3980. auto path = get_syscall_path_argument(user_path, path_length);
  3981. if (path.is_error())
  3982. return path.error();
  3983. auto directory_or_error = VFS::the().open_directory(path.value(), current_directory());
  3984. if (directory_or_error.is_error())
  3985. return directory_or_error.error();
  3986. auto directory = directory_or_error.value();
  3987. m_root_directory_relative_to_global_root = directory;
  3988. int chroot_mount_flags = mount_flags == -1 ? directory->mount_flags() : mount_flags;
  3989. set_root_directory(Custody::create(nullptr, "", directory->inode(), chroot_mount_flags));
  3990. return 0;
  3991. }
  3992. Custody& Process::root_directory()
  3993. {
  3994. if (!m_root_directory)
  3995. m_root_directory = VFS::the().root_custody();
  3996. return *m_root_directory;
  3997. }
  3998. Custody& Process::root_directory_relative_to_global_root()
  3999. {
  4000. if (!m_root_directory_relative_to_global_root)
  4001. m_root_directory_relative_to_global_root = root_directory();
  4002. return *m_root_directory_relative_to_global_root;
  4003. }
  4004. void Process::set_root_directory(const Custody& root)
  4005. {
  4006. m_root_directory = root;
  4007. }
  4008. int Process::sys$pledge(const Syscall::SC_pledge_params* user_params)
  4009. {
  4010. Syscall::SC_pledge_params params;
  4011. if (!validate_read_and_copy_typed(&params, user_params))
  4012. return -EFAULT;
  4013. if (params.promises.length > 1024 || params.execpromises.length > 1024)
  4014. return -E2BIG;
  4015. String promises;
  4016. if (params.promises.characters) {
  4017. promises = validate_and_copy_string_from_user(params.promises);
  4018. if (promises.is_null())
  4019. return -EFAULT;
  4020. }
  4021. String execpromises;
  4022. if (params.execpromises.characters) {
  4023. execpromises = validate_and_copy_string_from_user(params.execpromises);
  4024. if (execpromises.is_null())
  4025. return -EFAULT;
  4026. }
  4027. auto parse_pledge = [&](auto& pledge_spec, u32& mask) {
  4028. auto parts = pledge_spec.split_view(' ');
  4029. for (auto& part : parts) {
  4030. #define __ENUMERATE_PLEDGE_PROMISE(x) \
  4031. if (part == #x) { \
  4032. mask |= (1u << (u32)Pledge::x); \
  4033. continue; \
  4034. }
  4035. ENUMERATE_PLEDGE_PROMISES
  4036. #undef __ENUMERATE_PLEDGE_PROMISE
  4037. if (part == "dns") {
  4038. // "dns" is an alias for "unix" since DNS queries go via LookupServer
  4039. mask |= (1u << (u32)Pledge::unix);
  4040. continue;
  4041. }
  4042. return false;
  4043. }
  4044. return true;
  4045. };
  4046. if (!promises.is_null()) {
  4047. u32 new_promises = 0;
  4048. if (!parse_pledge(promises, new_promises))
  4049. return -EINVAL;
  4050. if (m_promises && (!new_promises || new_promises & ~m_promises))
  4051. return -EPERM;
  4052. m_promises = new_promises;
  4053. }
  4054. if (!execpromises.is_null()) {
  4055. u32 new_execpromises = 0;
  4056. if (!parse_pledge(execpromises, new_execpromises))
  4057. return -EINVAL;
  4058. if (m_execpromises && (!new_execpromises || new_execpromises & ~m_execpromises))
  4059. return -EPERM;
  4060. m_execpromises = new_execpromises;
  4061. }
  4062. return 0;
  4063. }
  4064. Region& Process::add_region(NonnullOwnPtr<Region> region)
  4065. {
  4066. auto* ptr = region.ptr();
  4067. m_regions.append(move(region));
  4068. return *ptr;
  4069. }
  4070. int Process::sys$unveil(const Syscall::SC_unveil_params* user_params)
  4071. {
  4072. Syscall::SC_unveil_params params;
  4073. if (!validate_read_and_copy_typed(&params, user_params))
  4074. return -EFAULT;
  4075. if (!params.path.characters && !params.permissions.characters) {
  4076. m_veil_state = VeilState::Locked;
  4077. return 0;
  4078. }
  4079. if (m_veil_state == VeilState::Locked)
  4080. return -EPERM;
  4081. if (!params.path.characters || !params.permissions.characters)
  4082. return -EINVAL;
  4083. if (params.permissions.length > 4)
  4084. return -EINVAL;
  4085. auto path = get_syscall_path_argument(params.path);
  4086. if (path.is_error())
  4087. return path.error();
  4088. if (path.value().is_empty() || path.value().characters()[0] != '/')
  4089. return -EINVAL;
  4090. auto permissions = validate_and_copy_string_from_user(params.permissions);
  4091. if (permissions.is_null())
  4092. return -EFAULT;
  4093. unsigned new_permissions = 0;
  4094. for (size_t i = 0; i < permissions.length(); ++i) {
  4095. switch (permissions[i]) {
  4096. case 'r':
  4097. new_permissions |= UnveiledPath::Access::Read;
  4098. break;
  4099. case 'w':
  4100. new_permissions |= UnveiledPath::Access::Write;
  4101. break;
  4102. case 'x':
  4103. new_permissions |= UnveiledPath::Access::Execute;
  4104. break;
  4105. case 'c':
  4106. new_permissions |= UnveiledPath::Access::CreateOrRemove;
  4107. break;
  4108. default:
  4109. return -EINVAL;
  4110. }
  4111. }
  4112. for (size_t i = 0; i < m_unveiled_paths.size(); ++i) {
  4113. auto& unveiled_path = m_unveiled_paths[i];
  4114. if (unveiled_path.path == path.value()) {
  4115. if (new_permissions & ~unveiled_path.permissions)
  4116. return -EPERM;
  4117. unveiled_path.permissions = new_permissions;
  4118. return 0;
  4119. }
  4120. }
  4121. m_unveiled_paths.append({ path.value(), new_permissions });
  4122. ASSERT(m_veil_state != VeilState::Locked);
  4123. m_veil_state = VeilState::Dropped;
  4124. return 0;
  4125. }
  4126. int Process::sys$perf_event(int type, uintptr_t arg1, uintptr_t arg2)
  4127. {
  4128. if (!m_perf_event_buffer)
  4129. m_perf_event_buffer = make<PerformanceEventBuffer>();
  4130. return m_perf_event_buffer->append(type, arg1, arg2);
  4131. }
  4132. void Process::set_tty(TTY* tty)
  4133. {
  4134. m_tty = tty;
  4135. }
  4136. }