civetweb.c 169 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286
  1. // Copyright (c) 2004-2013 Sergey Lyubka
  2. //
  3. // Permission is hereby granted, free of charge, to any person obtaining a copy
  4. // of this software and associated documentation files (the "Software"), to deal
  5. // in the Software without restriction, including without limitation the rights
  6. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. // copies of the Software, and to permit persons to whom the Software is
  8. // furnished to do so, subject to the following conditions:
  9. //
  10. // The above copyright notice and this permission notice shall be included in
  11. // all copies or substantial portions of the Software.
  12. //
  13. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. // THE SOFTWARE.
  20. #include "md5.h"
  21. #if defined(_WIN32)
  22. #if !defined(_CRT_SECURE_NO_WARNINGS)
  23. #define _CRT_SECURE_NO_WARNINGS // Disable deprecation warning in VS2005
  24. #endif
  25. #else
  26. #ifdef __linux__
  27. #define _XOPEN_SOURCE 600 // For flockfile() on Linux
  28. #endif
  29. #define _LARGEFILE_SOURCE // Enable 64-bit file offsets
  30. #define __STDC_FORMAT_MACROS // <inttypes.h> wants this for C++
  31. #define __STDC_LIMIT_MACROS // C++ wants that for INT64_MAX
  32. #endif
  33. #if defined (_MSC_VER)
  34. // conditional expression is constant: introduced by FD_SET(..)
  35. #pragma warning (disable : 4127)
  36. // non-constant aggregate initializer: issued due to missing C99 support
  37. #pragma warning (disable : 4204)
  38. #endif
  39. // Disable WIN32_LEAN_AND_MEAN.
  40. // This makes windows.h always include winsock2.h
  41. #ifdef WIN32_LEAN_AND_MEAN
  42. #undef WIN32_LEAN_AND_MEAN
  43. #endif
  44. #if defined(__SYMBIAN32__)
  45. #define NO_SSL // SSL is not supported
  46. #define NO_CGI // CGI is not supported
  47. #define PATH_MAX FILENAME_MAX
  48. #endif // __SYMBIAN32__
  49. #ifndef _WIN32_WCE // Some ANSI #includes are not available on Windows CE
  50. #include <sys/types.h>
  51. #include <sys/stat.h>
  52. #include <errno.h>
  53. #include <signal.h>
  54. #include <fcntl.h>
  55. #endif // !_WIN32_WCE
  56. #include <time.h>
  57. #include <stdlib.h>
  58. #include <stdarg.h>
  59. #include <assert.h>
  60. #include <string.h>
  61. #include <ctype.h>
  62. #include <limits.h>
  63. #include <stddef.h>
  64. #include <stdio.h>
  65. #if defined(_WIN32) && !defined(__SYMBIAN32__) // Windows specific
  66. #undef _WIN32_WINNT
  67. #define _WIN32_WINNT 0x0400 // To make it link in VS2005
  68. #include <windows.h>
  69. #ifndef PATH_MAX
  70. #define PATH_MAX MAX_PATH
  71. #endif
  72. #ifndef _WIN32_WCE
  73. #include <process.h>
  74. #include <direct.h>
  75. #include <io.h>
  76. #else // _WIN32_WCE
  77. #define NO_CGI // WinCE has no pipes
  78. typedef long off_t;
  79. #define errno GetLastError()
  80. #define strerror(x) _ultoa(x, (char *) _alloca(sizeof(x) *3 ), 10)
  81. #endif // _WIN32_WCE
  82. #define MAKEUQUAD(lo, hi) ((uint64_t)(((uint32_t)(lo)) | \
  83. ((uint64_t)((uint32_t)(hi))) << 32))
  84. #define RATE_DIFF 10000000 // 100 nsecs
  85. #define EPOCH_DIFF MAKEUQUAD(0xd53e8000, 0x019db1de)
  86. #define SYS2UNIX_TIME(lo, hi) \
  87. (time_t) ((MAKEUQUAD((lo), (hi)) - EPOCH_DIFF) / RATE_DIFF)
  88. // Visual Studio 6 does not know __func__ or __FUNCTION__
  89. // The rest of MS compilers use __FUNCTION__, not C99 __func__
  90. // Also use _strtoui64 on modern M$ compilers
  91. #if defined(_MSC_VER) && _MSC_VER < 1300
  92. #define STRX(x) #x
  93. #define STR(x) STRX(x)
  94. #define __func__ __FILE__ ":" STR(__LINE__)
  95. #define strtoull(x, y, z) (unsigned __int64) _atoi64(x)
  96. #define strtoll(x, y, z) _atoi64(x)
  97. #else
  98. #define __func__ __FUNCTION__
  99. #define strtoull(x, y, z) _strtoui64(x, y, z)
  100. #define strtoll(x, y, z) _strtoi64(x, y, z)
  101. #endif // _MSC_VER
  102. #define ERRNO GetLastError()
  103. #define NO_SOCKLEN_T
  104. #define SSL_LIB "ssleay32.dll"
  105. #define CRYPTO_LIB "libeay32.dll"
  106. #define O_NONBLOCK 0
  107. #if !defined(EWOULDBLOCK)
  108. #define EWOULDBLOCK WSAEWOULDBLOCK
  109. #endif // !EWOULDBLOCK
  110. #define _POSIX_
  111. #define INT64_FMT "I64d"
  112. #define WINCDECL __cdecl
  113. #define SHUT_WR 1
  114. #define snprintf _snprintf
  115. #define vsnprintf _vsnprintf
  116. #define mg_sleep(x) Sleep(x)
  117. #define pipe(x) _pipe(x, MG_BUF_LEN, _O_BINARY)
  118. #ifndef popen
  119. #define popen(x, y) _popen(x, y)
  120. #endif
  121. #ifndef pclose
  122. #define pclose(x) _pclose(x)
  123. #endif
  124. #define close(x) _close(x)
  125. #define dlsym(x,y) GetProcAddress((HINSTANCE) (x), (y))
  126. #define RTLD_LAZY 0
  127. #define fseeko(x, y, z) _lseeki64(_fileno(x), (y), (z))
  128. #define fdopen(x, y) _fdopen((x), (y))
  129. #define write(x, y, z) _write((x), (y), (unsigned) z)
  130. #define read(x, y, z) _read((x), (y), (unsigned) z)
  131. #define flockfile(x) EnterCriticalSection(&global_log_file_lock)
  132. #define funlockfile(x) LeaveCriticalSection(&global_log_file_lock)
  133. #define sleep(x) Sleep((x) * 1000)
  134. #define rmdir(x) _rmdir(x)
  135. #if !defined(va_copy)
  136. #define va_copy(x, y) x = y
  137. #endif // !va_copy MINGW #defines va_copy
  138. #if !defined(fileno)
  139. #define fileno(x) _fileno(x)
  140. #endif // !fileno MINGW #defines fileno
  141. typedef HANDLE pthread_mutex_t;
  142. typedef struct {HANDLE signal, broadcast;} pthread_cond_t;
  143. typedef DWORD pthread_t;
  144. #define pid_t HANDLE // MINGW typedefs pid_t to int. Using #define here.
  145. static int pthread_mutex_lock(pthread_mutex_t *);
  146. static int pthread_mutex_unlock(pthread_mutex_t *);
  147. static void to_unicode(const char *path, wchar_t *wbuf, size_t wbuf_len);
  148. struct file;
  149. static char *mg_fgets(char *buf, size_t size, struct file *filep, char **p);
  150. #if defined(HAVE_STDINT)
  151. #include <stdint.h>
  152. #else
  153. typedef unsigned int uint32_t;
  154. typedef unsigned short uint16_t;
  155. typedef unsigned __int64 uint64_t;
  156. typedef __int64 int64_t;
  157. #define INT64_MAX 9223372036854775807
  158. #endif // HAVE_STDINT
  159. // POSIX dirent interface
  160. struct dirent {
  161. char d_name[PATH_MAX];
  162. };
  163. typedef struct DIR {
  164. HANDLE handle;
  165. WIN32_FIND_DATAW info;
  166. struct dirent result;
  167. } DIR;
  168. #ifndef HAVE_POLL
  169. struct pollfd {
  170. SOCKET fd;
  171. short events;
  172. short revents;
  173. };
  174. #define POLLIN 1
  175. #endif
  176. // Mark required libraries
  177. #ifdef _MSC_VER
  178. #pragma comment(lib, "Ws2_32.lib")
  179. #endif
  180. #else // UNIX specific
  181. #include <sys/wait.h>
  182. #include <sys/socket.h>
  183. #include <sys/poll.h>
  184. #include <netinet/in.h>
  185. #include <arpa/inet.h>
  186. #include <sys/time.h>
  187. #include <stdint.h>
  188. #include <inttypes.h>
  189. #include <netdb.h>
  190. #include <pwd.h>
  191. #include <unistd.h>
  192. #include <dirent.h>
  193. #if !defined(NO_SSL_DL) && !defined(NO_SSL)
  194. #include <dlfcn.h>
  195. #endif
  196. #include <pthread.h>
  197. #if defined(__MACH__)
  198. #define SSL_LIB "libssl.dylib"
  199. #define CRYPTO_LIB "libcrypto.dylib"
  200. #else
  201. #if !defined(SSL_LIB)
  202. #define SSL_LIB "libssl.so"
  203. #endif
  204. #if !defined(CRYPTO_LIB)
  205. #define CRYPTO_LIB "libcrypto.so"
  206. #endif
  207. #endif
  208. #ifndef O_BINARY
  209. #define O_BINARY 0
  210. #endif // O_BINARY
  211. #define closesocket(a) close(a)
  212. #define mg_mkdir(x, y) mkdir(x, y)
  213. #define mg_remove(x) remove(x)
  214. #define mg_sleep(x) usleep((x) * 1000)
  215. #define ERRNO errno
  216. #define INVALID_SOCKET (-1)
  217. #define INT64_FMT PRId64
  218. typedef int SOCKET;
  219. #define WINCDECL
  220. #endif // End of Windows and UNIX specific includes
  221. #include "civetweb.h"
  222. #define CIVETWEB_VERSION "1.0"
  223. #define PASSWORDS_FILE_NAME ".htpasswd"
  224. #define CGI_ENVIRONMENT_SIZE 4096
  225. #define MAX_CGI_ENVIR_VARS 64
  226. #define MG_BUF_LEN 8192
  227. #define MAX_REQUEST_SIZE 16384
  228. #define ARRAY_SIZE(array) (sizeof(array) / sizeof(array[0]))
  229. #ifdef _WIN32
  230. static CRITICAL_SECTION global_log_file_lock;
  231. static pthread_t pthread_self(void) {
  232. return GetCurrentThreadId();
  233. }
  234. #endif // _WIN32
  235. #ifdef DEBUG_TRACE
  236. #undef DEBUG_TRACE
  237. #define DEBUG_TRACE(x)
  238. #else
  239. #if defined(DEBUG)
  240. #define DEBUG_TRACE(x) do { \
  241. flockfile(stdout); \
  242. printf("*** %lu.%p.%s.%d: ", \
  243. (unsigned long) time(NULL), (void *) pthread_self(), \
  244. __func__, __LINE__); \
  245. printf x; \
  246. putchar('\n'); \
  247. fflush(stdout); \
  248. funlockfile(stdout); \
  249. } while (0)
  250. #else
  251. #define DEBUG_TRACE(x)
  252. #endif // DEBUG
  253. #endif // DEBUG_TRACE
  254. // Darwin prior to 7.0 and Win32 do not have socklen_t
  255. #ifdef NO_SOCKLEN_T
  256. typedef int socklen_t;
  257. #endif // NO_SOCKLEN_T
  258. #define _DARWIN_UNLIMITED_SELECT
  259. #define IP_ADDR_STR_LEN 50 // IPv6 hex string is 46 chars
  260. #if !defined(MSG_NOSIGNAL)
  261. #define MSG_NOSIGNAL 0
  262. #endif
  263. #if !defined(SOMAXCONN)
  264. #define SOMAXCONN 100
  265. #endif
  266. #if !defined(PATH_MAX)
  267. #define PATH_MAX 4096
  268. #endif
  269. // Size of the accepted socket queue
  270. #if !defined(MGSQLEN)
  271. #define MGSQLEN 20
  272. #endif
  273. static const char *http_500_error = "Internal Server Error";
  274. #if defined(NO_SSL_DL)
  275. #include <openssl/ssl.h>
  276. #include <openssl/err.h>
  277. #else
  278. // SSL loaded dynamically from DLL.
  279. // I put the prototypes here to be independent from OpenSSL source installation.
  280. typedef struct ssl_st SSL;
  281. typedef struct ssl_method_st SSL_METHOD;
  282. typedef struct ssl_ctx_st SSL_CTX;
  283. struct ssl_func {
  284. const char *name; // SSL function name
  285. void (*ptr)(void); // Function pointer
  286. };
  287. #define SSL_free (* (void (*)(SSL *)) ssl_sw[0].ptr)
  288. #define SSL_accept (* (int (*)(SSL *)) ssl_sw[1].ptr)
  289. #define SSL_connect (* (int (*)(SSL *)) ssl_sw[2].ptr)
  290. #define SSL_read (* (int (*)(SSL *, void *, int)) ssl_sw[3].ptr)
  291. #define SSL_write (* (int (*)(SSL *, const void *,int)) ssl_sw[4].ptr)
  292. #define SSL_get_error (* (int (*)(SSL *, int)) ssl_sw[5].ptr)
  293. #define SSL_set_fd (* (int (*)(SSL *, SOCKET)) ssl_sw[6].ptr)
  294. #define SSL_new (* (SSL * (*)(SSL_CTX *)) ssl_sw[7].ptr)
  295. #define SSL_CTX_new (* (SSL_CTX * (*)(SSL_METHOD *)) ssl_sw[8].ptr)
  296. #define SSLv23_server_method (* (SSL_METHOD * (*)(void)) ssl_sw[9].ptr)
  297. #define SSL_library_init (* (int (*)(void)) ssl_sw[10].ptr)
  298. #define SSL_CTX_use_PrivateKey_file (* (int (*)(SSL_CTX *, \
  299. const char *, int)) ssl_sw[11].ptr)
  300. #define SSL_CTX_use_certificate_file (* (int (*)(SSL_CTX *, \
  301. const char *, int)) ssl_sw[12].ptr)
  302. #define SSL_CTX_set_default_passwd_cb \
  303. (* (void (*)(SSL_CTX *, mg_callback_t)) ssl_sw[13].ptr)
  304. #define SSL_CTX_free (* (void (*)(SSL_CTX *)) ssl_sw[14].ptr)
  305. #define SSL_load_error_strings (* (void (*)(void)) ssl_sw[15].ptr)
  306. #define SSL_CTX_use_certificate_chain_file \
  307. (* (int (*)(SSL_CTX *, const char *)) ssl_sw[16].ptr)
  308. #define SSLv23_client_method (* (SSL_METHOD * (*)(void)) ssl_sw[17].ptr)
  309. #define SSL_pending (* (int (*)(SSL *)) ssl_sw[18].ptr)
  310. #define SSL_CTX_set_verify (* (void (*)(SSL_CTX *, int, int)) ssl_sw[19].ptr)
  311. #define SSL_shutdown (* (int (*)(SSL *)) ssl_sw[20].ptr)
  312. #define CRYPTO_num_locks (* (int (*)(void)) crypto_sw[0].ptr)
  313. #define CRYPTO_set_locking_callback \
  314. (* (void (*)(void (*)(int, int, const char *, int))) crypto_sw[1].ptr)
  315. #define CRYPTO_set_id_callback \
  316. (* (void (*)(unsigned long (*)(void))) crypto_sw[2].ptr)
  317. #define ERR_get_error (* (unsigned long (*)(void)) crypto_sw[3].ptr)
  318. #define ERR_error_string (* (char * (*)(unsigned long,char *)) crypto_sw[4].ptr)
  319. // set_ssl_option() function updates this array.
  320. // It loads SSL library dynamically and changes NULLs to the actual addresses
  321. // of respective functions. The macros above (like SSL_connect()) are really
  322. // just calling these functions indirectly via the pointer.
  323. static struct ssl_func ssl_sw[] = {
  324. {"SSL_free", NULL},
  325. {"SSL_accept", NULL},
  326. {"SSL_connect", NULL},
  327. {"SSL_read", NULL},
  328. {"SSL_write", NULL},
  329. {"SSL_get_error", NULL},
  330. {"SSL_set_fd", NULL},
  331. {"SSL_new", NULL},
  332. {"SSL_CTX_new", NULL},
  333. {"SSLv23_server_method", NULL},
  334. {"SSL_library_init", NULL},
  335. {"SSL_CTX_use_PrivateKey_file", NULL},
  336. {"SSL_CTX_use_certificate_file",NULL},
  337. {"SSL_CTX_set_default_passwd_cb",NULL},
  338. {"SSL_CTX_free", NULL},
  339. {"SSL_load_error_strings", NULL},
  340. {"SSL_CTX_use_certificate_chain_file", NULL},
  341. {"SSLv23_client_method", NULL},
  342. {"SSL_pending", NULL},
  343. {"SSL_CTX_set_verify", NULL},
  344. {"SSL_shutdown", NULL},
  345. {NULL, NULL}
  346. };
  347. // Similar array as ssl_sw. These functions could be located in different lib.
  348. #if !defined(NO_SSL)
  349. static struct ssl_func crypto_sw[] = {
  350. {"CRYPTO_num_locks", NULL},
  351. {"CRYPTO_set_locking_callback", NULL},
  352. {"CRYPTO_set_id_callback", NULL},
  353. {"ERR_get_error", NULL},
  354. {"ERR_error_string", NULL},
  355. {NULL, NULL}
  356. };
  357. #endif // NO_SSL
  358. #endif // NO_SSL_DL
  359. static const char *month_names[] = {
  360. "Jan", "Feb", "Mar", "Apr", "May", "Jun",
  361. "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
  362. };
  363. // Unified socket address. For IPv6 support, add IPv6 address structure
  364. // in the union u.
  365. union usa {
  366. struct sockaddr sa;
  367. struct sockaddr_in sin;
  368. #if defined(USE_IPV6)
  369. struct sockaddr_in6 sin6;
  370. #endif
  371. };
  372. // Describes a string (chunk of memory).
  373. struct vec {
  374. const char *ptr;
  375. size_t len;
  376. };
  377. struct file {
  378. int is_directory;
  379. time_t modification_time;
  380. int64_t size;
  381. FILE *fp;
  382. const char *membuf; // Non-NULL if file data is in memory
  383. // set to 1 if the content is gzipped
  384. // in which case we need a content-encoding: gzip header
  385. int gzipped;
  386. };
  387. #define STRUCT_FILE_INITIALIZER {0, 0, 0, NULL, NULL, 0}
  388. // Describes listening socket, or socket which was accept()-ed by the master
  389. // thread and queued for future handling by the worker thread.
  390. struct socket {
  391. SOCKET sock; // Listening socket
  392. union usa lsa; // Local socket address
  393. union usa rsa; // Remote socket address
  394. unsigned is_ssl:1; // Is port SSL-ed
  395. unsigned ssl_redir:1; // Is port supposed to redirect everything to SSL port
  396. };
  397. // NOTE(lsm): this enum shoulds be in sync with the config_options below.
  398. enum {
  399. CGI_EXTENSIONS, CGI_ENVIRONMENT, PUT_DELETE_PASSWORDS_FILE, CGI_INTERPRETER,
  400. PROTECT_URI, AUTHENTICATION_DOMAIN, SSI_EXTENSIONS, THROTTLE,
  401. ACCESS_LOG_FILE, ENABLE_DIRECTORY_LISTING, ERROR_LOG_FILE,
  402. GLOBAL_PASSWORDS_FILE, INDEX_FILES, ENABLE_KEEP_ALIVE, ACCESS_CONTROL_LIST,
  403. EXTRA_MIME_TYPES, LISTENING_PORTS, DOCUMENT_ROOT, SSL_CERTIFICATE,
  404. NUM_THREADS, RUN_AS_USER, REWRITE, HIDE_FILES, REQUEST_TIMEOUT,
  405. NUM_OPTIONS
  406. };
  407. static const char *config_options[] = {
  408. "cgi_pattern", "**.cgi$|**.pl$|**.php$",
  409. "cgi_environment", NULL,
  410. "put_delete_auth_file", NULL,
  411. "cgi_interpreter", NULL,
  412. "protect_uri", NULL,
  413. "authentication_domain", "mydomain.com",
  414. "ssi_pattern", "**.shtml$|**.shtm$",
  415. "throttle", NULL,
  416. "access_log_file", NULL,
  417. "enable_directory_listing", "yes",
  418. "error_log_file", NULL,
  419. "global_auth_file", NULL,
  420. "index_files",
  421. "index.html,index.htm,index.cgi,index.shtml,index.php,index.lp",
  422. "enable_keep_alive", "no",
  423. "access_control_list", NULL,
  424. "extra_mime_types", NULL,
  425. "listening_ports", "8080",
  426. "document_root", NULL,
  427. "ssl_certificate", NULL,
  428. "num_threads", "50",
  429. "run_as_user", NULL,
  430. "url_rewrite_patterns", NULL,
  431. "hide_files_patterns", NULL,
  432. "request_timeout_ms", "30000",
  433. NULL
  434. };
  435. struct mg_context {
  436. volatile int stop_flag; // Should we stop event loop
  437. SSL_CTX *ssl_ctx; // SSL context
  438. char *config[NUM_OPTIONS]; // Civetweb configuration parameters
  439. struct mg_callbacks callbacks; // User-defined callback function
  440. void *user_data; // User-defined data
  441. struct socket *listening_sockets;
  442. int num_listening_sockets;
  443. volatile int num_threads; // Number of threads
  444. pthread_mutex_t mutex; // Protects (max|num)_threads
  445. pthread_cond_t cond; // Condvar for tracking workers terminations
  446. struct socket queue[MGSQLEN]; // Accepted sockets
  447. volatile int sq_head; // Head of the socket queue
  448. volatile int sq_tail; // Tail of the socket queue
  449. pthread_cond_t sq_full; // Signaled when socket is produced
  450. pthread_cond_t sq_empty; // Signaled when socket is consumed
  451. };
  452. struct mg_connection {
  453. struct mg_request_info request_info;
  454. struct mg_context *ctx;
  455. SSL *ssl; // SSL descriptor
  456. SSL_CTX *client_ssl_ctx; // SSL context for client connections
  457. struct socket client; // Connected client
  458. time_t birth_time; // Time when request was received
  459. int64_t num_bytes_sent; // Total bytes sent to client
  460. int64_t content_len; // Content-Length header value
  461. int64_t consumed_content; // How many bytes of content have been read
  462. char *buf; // Buffer for received data
  463. char *path_info; // PATH_INFO part of the URL
  464. int must_close; // 1 if connection must be closed
  465. int buf_size; // Buffer size
  466. int request_len; // Size of the request + headers in a buffer
  467. int data_len; // Total size of data in a buffer
  468. int status_code; // HTTP reply status code, e.g. 200
  469. int throttle; // Throttling, bytes/sec. <= 0 means no throttle
  470. time_t last_throttle_time; // Last time throttled data was sent
  471. int64_t last_throttle_bytes;// Bytes sent this second
  472. pthread_mutex_t mutex; // Used by mg_lock/mg_unlock to ensure atomic transmissions for websockets
  473. };
  474. // Directory entry
  475. struct de {
  476. struct mg_connection *conn;
  477. char *file_name;
  478. struct file file;
  479. };
  480. const char **mg_get_valid_option_names(void) {
  481. return config_options;
  482. }
  483. static int is_file_in_memory(struct mg_connection *conn, const char *path,
  484. struct file *filep) {
  485. size_t size = 0;
  486. if ((filep->membuf = conn->ctx->callbacks.open_file == NULL ? NULL :
  487. conn->ctx->callbacks.open_file(conn, path, &size)) != NULL) {
  488. // NOTE: override filep->size only on success. Otherwise, it might break
  489. // constructs like if (!mg_stat() || !mg_fopen()) ...
  490. filep->size = size;
  491. }
  492. return filep->membuf != NULL;
  493. }
  494. static int is_file_opened(const struct file *filep) {
  495. return filep->membuf != NULL || filep->fp != NULL;
  496. }
  497. static int mg_fopen(struct mg_connection *conn, const char *path,
  498. const char *mode, struct file *filep) {
  499. if (!is_file_in_memory(conn, path, filep)) {
  500. #ifdef _WIN32
  501. wchar_t wbuf[PATH_MAX], wmode[20];
  502. to_unicode(path, wbuf, ARRAY_SIZE(wbuf));
  503. MultiByteToWideChar(CP_UTF8, 0, mode, -1, wmode, ARRAY_SIZE(wmode));
  504. filep->fp = _wfopen(wbuf, wmode);
  505. #else
  506. filep->fp = fopen(path, mode);
  507. #endif
  508. }
  509. return is_file_opened(filep);
  510. }
  511. static void mg_fclose(struct file *filep) {
  512. if (filep != NULL && filep->fp != NULL) {
  513. fclose(filep->fp);
  514. }
  515. }
  516. static int get_option_index(const char *name) {
  517. int i;
  518. for (i = 0; config_options[i * 2] != NULL; i++) {
  519. if (strcmp(config_options[i * 2], name) == 0) {
  520. return i;
  521. }
  522. }
  523. return -1;
  524. }
  525. const char *mg_get_option(const struct mg_context *ctx, const char *name) {
  526. int i;
  527. if ((i = get_option_index(name)) == -1) {
  528. return NULL;
  529. } else if (ctx->config[i] == NULL) {
  530. return "";
  531. } else {
  532. return ctx->config[i];
  533. }
  534. }
  535. static void sockaddr_to_string(char *buf, size_t len,
  536. const union usa *usa) {
  537. buf[0] = '\0';
  538. #if defined(USE_IPV6)
  539. inet_ntop(usa->sa.sa_family, usa->sa.sa_family == AF_INET ?
  540. (void *) &usa->sin.sin_addr :
  541. (void *) &usa->sin6.sin6_addr, buf, len);
  542. #elif defined(_WIN32)
  543. // Only Windoze Vista (and newer) have inet_ntop()
  544. strncpy(buf, inet_ntoa(usa->sin.sin_addr), len);
  545. #else
  546. inet_ntop(usa->sa.sa_family, (void *) &usa->sin.sin_addr, buf, len);
  547. #endif
  548. }
  549. static void cry(struct mg_connection *conn,
  550. PRINTF_FORMAT_STRING(const char *fmt), ...) PRINTF_ARGS(2, 3);
  551. // Print error message to the opened error log stream.
  552. static void cry(struct mg_connection *conn, const char *fmt, ...) {
  553. char buf[MG_BUF_LEN], src_addr[IP_ADDR_STR_LEN];
  554. va_list ap;
  555. FILE *fp;
  556. time_t timestamp;
  557. va_start(ap, fmt);
  558. (void) vsnprintf(buf, sizeof(buf), fmt, ap);
  559. va_end(ap);
  560. // Do not lock when getting the callback value, here and below.
  561. // I suppose this is fine, since function cannot disappear in the
  562. // same way string option can.
  563. if (conn->ctx->callbacks.log_message == NULL ||
  564. conn->ctx->callbacks.log_message(conn, buf) == 0) {
  565. fp = conn->ctx == NULL || conn->ctx->config[ERROR_LOG_FILE] == NULL ? NULL :
  566. fopen(conn->ctx->config[ERROR_LOG_FILE], "a+");
  567. if (fp != NULL) {
  568. flockfile(fp);
  569. timestamp = time(NULL);
  570. sockaddr_to_string(src_addr, sizeof(src_addr), &conn->client.rsa);
  571. fprintf(fp, "[%010lu] [error] [client %s] ", (unsigned long) timestamp,
  572. src_addr);
  573. if (conn->request_info.request_method != NULL) {
  574. fprintf(fp, "%s %s: ", conn->request_info.request_method,
  575. conn->request_info.uri);
  576. }
  577. fprintf(fp, "%s", buf);
  578. fputc('\n', fp);
  579. funlockfile(fp);
  580. fclose(fp);
  581. }
  582. }
  583. }
  584. // Return fake connection structure. Used for logging, if connection
  585. // is not applicable at the moment of logging.
  586. static struct mg_connection *fc(struct mg_context *ctx) {
  587. static struct mg_connection fake_connection;
  588. fake_connection.ctx = ctx;
  589. return &fake_connection;
  590. }
  591. const char *mg_version(void) {
  592. return CIVETWEB_VERSION;
  593. }
  594. struct mg_request_info *mg_get_request_info(struct mg_connection *conn) {
  595. return &conn->request_info;
  596. }
  597. static void mg_strlcpy(register char *dst, register const char *src, size_t n) {
  598. for (; *src != '\0' && n > 1; n--) {
  599. *dst++ = *src++;
  600. }
  601. *dst = '\0';
  602. }
  603. static int lowercase(const char *s) {
  604. return tolower(* (const unsigned char *) s);
  605. }
  606. static int mg_strncasecmp(const char *s1, const char *s2, size_t len) {
  607. int diff = 0;
  608. if (len > 0)
  609. do {
  610. diff = lowercase(s1++) - lowercase(s2++);
  611. } while (diff == 0 && s1[-1] != '\0' && --len > 0);
  612. return diff;
  613. }
  614. static int mg_strcasecmp(const char *s1, const char *s2) {
  615. int diff;
  616. do {
  617. diff = lowercase(s1++) - lowercase(s2++);
  618. } while (diff == 0 && s1[-1] != '\0');
  619. return diff;
  620. }
  621. static char * mg_strndup(const char *ptr, size_t len) {
  622. char *p;
  623. if ((p = (char *) malloc(len + 1)) != NULL) {
  624. mg_strlcpy(p, ptr, len + 1);
  625. }
  626. return p;
  627. }
  628. static char * mg_strdup(const char *str) {
  629. return mg_strndup(str, strlen(str));
  630. }
  631. static const char *mg_strcasestr(const char *big_str, const char *small_str) {
  632. int i, big_len = strlen(big_str), small_len = strlen(small_str);
  633. for (i = 0; i <= big_len - small_len; i++) {
  634. if (mg_strncasecmp(big_str + i, small_str, small_len) == 0) {
  635. return big_str + i;
  636. }
  637. }
  638. return NULL;
  639. }
  640. // Like snprintf(), but never returns negative value, or a value
  641. // that is larger than a supplied buffer.
  642. // Thanks to Adam Zeldis to pointing snprintf()-caused vulnerability
  643. // in his audit report.
  644. static int mg_vsnprintf(struct mg_connection *conn, char *buf, size_t buflen,
  645. const char *fmt, va_list ap) {
  646. int n;
  647. if (buflen == 0)
  648. return 0;
  649. n = vsnprintf(buf, buflen, fmt, ap);
  650. if (n < 0) {
  651. cry(conn, "vsnprintf error");
  652. n = 0;
  653. } else if (n >= (int) buflen) {
  654. cry(conn, "truncating vsnprintf buffer: [%.*s]",
  655. n > 200 ? 200 : n, buf);
  656. n = (int) buflen - 1;
  657. }
  658. buf[n] = '\0';
  659. return n;
  660. }
  661. static int mg_snprintf(struct mg_connection *conn, char *buf, size_t buflen,
  662. PRINTF_FORMAT_STRING(const char *fmt), ...)
  663. PRINTF_ARGS(4, 5);
  664. static int mg_snprintf(struct mg_connection *conn, char *buf, size_t buflen,
  665. const char *fmt, ...) {
  666. va_list ap;
  667. int n;
  668. va_start(ap, fmt);
  669. n = mg_vsnprintf(conn, buf, buflen, fmt, ap);
  670. va_end(ap);
  671. return n;
  672. }
  673. // Skip the characters until one of the delimiters characters found.
  674. // 0-terminate resulting word. Skip the delimiter and following whitespaces.
  675. // Advance pointer to buffer to the next word. Return found 0-terminated word.
  676. // Delimiters can be quoted with quotechar.
  677. static char *skip_quoted(char **buf, const char *delimiters,
  678. const char *whitespace, char quotechar) {
  679. char *p, *begin_word, *end_word, *end_whitespace;
  680. begin_word = *buf;
  681. end_word = begin_word + strcspn(begin_word, delimiters);
  682. // Check for quotechar
  683. if (end_word > begin_word) {
  684. p = end_word - 1;
  685. while (*p == quotechar) {
  686. // If there is anything beyond end_word, copy it
  687. if (*end_word == '\0') {
  688. *p = '\0';
  689. break;
  690. } else {
  691. size_t end_off = strcspn(end_word + 1, delimiters);
  692. memmove (p, end_word, end_off + 1);
  693. p += end_off; // p must correspond to end_word - 1
  694. end_word += end_off + 1;
  695. }
  696. }
  697. for (p++; p < end_word; p++) {
  698. *p = '\0';
  699. }
  700. }
  701. if (*end_word == '\0') {
  702. *buf = end_word;
  703. } else {
  704. end_whitespace = end_word + 1 + strspn(end_word + 1, whitespace);
  705. for (p = end_word; p < end_whitespace; p++) {
  706. *p = '\0';
  707. }
  708. *buf = end_whitespace;
  709. }
  710. return begin_word;
  711. }
  712. // Simplified version of skip_quoted without quote char
  713. // and whitespace == delimiters
  714. static char *skip(char **buf, const char *delimiters) {
  715. return skip_quoted(buf, delimiters, delimiters, 0);
  716. }
  717. // Return HTTP header value, or NULL if not found.
  718. static const char *get_header(const struct mg_request_info *ri,
  719. const char *name) {
  720. int i;
  721. for (i = 0; i < ri->num_headers; i++)
  722. if (!mg_strcasecmp(name, ri->http_headers[i].name))
  723. return ri->http_headers[i].value;
  724. return NULL;
  725. }
  726. const char *mg_get_header(const struct mg_connection *conn, const char *name) {
  727. return get_header(&conn->request_info, name);
  728. }
  729. // A helper function for traversing a comma separated list of values.
  730. // It returns a list pointer shifted to the next value, or NULL if the end
  731. // of the list found.
  732. // Value is stored in val vector. If value has form "x=y", then eq_val
  733. // vector is initialized to point to the "y" part, and val vector length
  734. // is adjusted to point only to "x".
  735. static const char *next_option(const char *list, struct vec *val,
  736. struct vec *eq_val) {
  737. if (list == NULL || *list == '\0') {
  738. // End of the list
  739. list = NULL;
  740. } else {
  741. val->ptr = list;
  742. if ((list = strchr(val->ptr, ',')) != NULL) {
  743. // Comma found. Store length and shift the list ptr
  744. val->len = list - val->ptr;
  745. list++;
  746. } else {
  747. // This value is the last one
  748. list = val->ptr + strlen(val->ptr);
  749. val->len = list - val->ptr;
  750. }
  751. if (eq_val != NULL) {
  752. // Value has form "x=y", adjust pointers and lengths
  753. // so that val points to "x", and eq_val points to "y".
  754. eq_val->len = 0;
  755. eq_val->ptr = (const char *) memchr(val->ptr, '=', val->len);
  756. if (eq_val->ptr != NULL) {
  757. eq_val->ptr++; // Skip over '=' character
  758. eq_val->len = val->ptr + val->len - eq_val->ptr;
  759. val->len = (eq_val->ptr - val->ptr) - 1;
  760. }
  761. }
  762. }
  763. return list;
  764. }
  765. // Perform case-insensitive match of string against pattern
  766. static int match_prefix(const char *pattern, int pattern_len, const char *str) {
  767. const char *or_str;
  768. int i, j, len, res;
  769. if ((or_str = (const char *) memchr(pattern, '|', pattern_len)) != NULL) {
  770. res = match_prefix(pattern, or_str - pattern, str);
  771. return res > 0 ? res :
  772. match_prefix(or_str + 1, (pattern + pattern_len) - (or_str + 1), str);
  773. }
  774. i = j = 0;
  775. res = -1;
  776. for (; i < pattern_len; i++, j++) {
  777. if (pattern[i] == '?' && str[j] != '\0') {
  778. continue;
  779. } else if (pattern[i] == '$') {
  780. return str[j] == '\0' ? j : -1;
  781. } else if (pattern[i] == '*') {
  782. i++;
  783. if (pattern[i] == '*') {
  784. i++;
  785. len = (int) strlen(str + j);
  786. } else {
  787. len = (int) strcspn(str + j, "/");
  788. }
  789. if (i == pattern_len) {
  790. return j + len;
  791. }
  792. do {
  793. res = match_prefix(pattern + i, pattern_len - i, str + j + len);
  794. } while (res == -1 && len-- > 0);
  795. return res == -1 ? -1 : j + res + len;
  796. } else if (lowercase(&pattern[i]) != lowercase(&str[j])) {
  797. return -1;
  798. }
  799. }
  800. return j;
  801. }
  802. // HTTP 1.1 assumes keep alive if "Connection:" header is not set
  803. // This function must tolerate situations when connection info is not
  804. // set up, for example if request parsing failed.
  805. static int should_keep_alive(const struct mg_connection *conn) {
  806. const char *http_version = conn->request_info.http_version;
  807. const char *header = mg_get_header(conn, "Connection");
  808. if (conn->must_close ||
  809. conn->status_code == 401 ||
  810. mg_strcasecmp(conn->ctx->config[ENABLE_KEEP_ALIVE], "yes") != 0 ||
  811. (header != NULL && mg_strcasecmp(header, "keep-alive") != 0) ||
  812. (header == NULL && http_version && strcmp(http_version, "1.1"))) {
  813. return 0;
  814. }
  815. return 1;
  816. }
  817. static const char *suggest_connection_header(const struct mg_connection *conn) {
  818. return should_keep_alive(conn) ? "keep-alive" : "close";
  819. }
  820. static void send_http_error(struct mg_connection *, int, const char *,
  821. PRINTF_FORMAT_STRING(const char *fmt), ...)
  822. PRINTF_ARGS(4, 5);
  823. static void send_http_error(struct mg_connection *conn, int status,
  824. const char *reason, const char *fmt, ...) {
  825. char buf[MG_BUF_LEN];
  826. va_list ap;
  827. int len = 0;
  828. conn->status_code = status;
  829. if (conn->ctx->callbacks.http_error == NULL ||
  830. conn->ctx->callbacks.http_error(conn, status)) {
  831. buf[0] = '\0';
  832. // Errors 1xx, 204 and 304 MUST NOT send a body
  833. if (status > 199 && status != 204 && status != 304) {
  834. len = mg_snprintf(conn, buf, sizeof(buf), "Error %d: %s", status, reason);
  835. buf[len++] = '\n';
  836. va_start(ap, fmt);
  837. len += mg_vsnprintf(conn, buf + len, sizeof(buf) - len, fmt, ap);
  838. va_end(ap);
  839. }
  840. DEBUG_TRACE(("[%s]", buf));
  841. mg_printf(conn, "HTTP/1.1 %d %s\r\n"
  842. "Content-Length: %d\r\n"
  843. "Connection: %s\r\n\r\n", status, reason, len,
  844. suggest_connection_header(conn));
  845. conn->num_bytes_sent += mg_printf(conn, "%s", buf);
  846. }
  847. }
  848. #if defined(_WIN32) && !defined(__SYMBIAN32__)
  849. static int pthread_mutex_init(pthread_mutex_t *mutex, void *unused) {
  850. (void) unused;
  851. *mutex = CreateMutex(NULL, FALSE, NULL);
  852. return *mutex == NULL ? -1 : 0;
  853. }
  854. static int pthread_mutex_destroy(pthread_mutex_t *mutex) {
  855. return CloseHandle(*mutex) == 0 ? -1 : 0;
  856. }
  857. static int pthread_mutex_lock(pthread_mutex_t *mutex) {
  858. return WaitForSingleObject(*mutex, INFINITE) == WAIT_OBJECT_0? 0 : -1;
  859. }
  860. static int pthread_mutex_unlock(pthread_mutex_t *mutex) {
  861. return ReleaseMutex(*mutex) == 0 ? -1 : 0;
  862. }
  863. static int pthread_cond_init(pthread_cond_t *cv, const void *unused) {
  864. (void) unused;
  865. cv->signal = CreateEvent(NULL, FALSE, FALSE, NULL);
  866. cv->broadcast = CreateEvent(NULL, TRUE, FALSE, NULL);
  867. return cv->signal != NULL && cv->broadcast != NULL ? 0 : -1;
  868. }
  869. static int pthread_cond_wait(pthread_cond_t *cv, pthread_mutex_t *mutex) {
  870. HANDLE handles[] = {cv->signal, cv->broadcast};
  871. ReleaseMutex(*mutex);
  872. WaitForMultipleObjects(2, handles, FALSE, INFINITE);
  873. return WaitForSingleObject(*mutex, INFINITE) == WAIT_OBJECT_0? 0 : -1;
  874. }
  875. static int pthread_cond_signal(pthread_cond_t *cv) {
  876. return SetEvent(cv->signal) == 0 ? -1 : 0;
  877. }
  878. static int pthread_cond_broadcast(pthread_cond_t *cv) {
  879. // Implementation with PulseEvent() has race condition, see
  880. // http://www.cs.wustl.edu/~schmidt/win32-cv-1.html
  881. return PulseEvent(cv->broadcast) == 0 ? -1 : 0;
  882. }
  883. static int pthread_cond_destroy(pthread_cond_t *cv) {
  884. return CloseHandle(cv->signal) && CloseHandle(cv->broadcast) ? 0 : -1;
  885. }
  886. // For Windows, change all slashes to backslashes in path names.
  887. static void change_slashes_to_backslashes(char *path) {
  888. int i;
  889. for (i = 0; path[i] != '\0'; i++) {
  890. if (path[i] == '/')
  891. path[i] = '\\';
  892. // i > 0 check is to preserve UNC paths, like \\server\file.txt
  893. if (path[i] == '\\' && i > 0)
  894. while (path[i + 1] == '\\' || path[i + 1] == '/')
  895. (void) memmove(path + i + 1,
  896. path + i + 2, strlen(path + i + 1));
  897. }
  898. }
  899. // Encode 'path' which is assumed UTF-8 string, into UNICODE string.
  900. // wbuf and wbuf_len is a target buffer and its length.
  901. static void to_unicode(const char *path, wchar_t *wbuf, size_t wbuf_len) {
  902. char buf[PATH_MAX], buf2[PATH_MAX];
  903. mg_strlcpy(buf, path, sizeof(buf));
  904. change_slashes_to_backslashes(buf);
  905. // Convert to Unicode and back. If doubly-converted string does not
  906. // match the original, something is fishy, reject.
  907. memset(wbuf, 0, wbuf_len * sizeof(wchar_t));
  908. MultiByteToWideChar(CP_UTF8, 0, buf, -1, wbuf, (int) wbuf_len);
  909. WideCharToMultiByte(CP_UTF8, 0, wbuf, (int) wbuf_len, buf2, sizeof(buf2),
  910. NULL, NULL);
  911. if (strcmp(buf, buf2) != 0) {
  912. wbuf[0] = L'\0';
  913. }
  914. }
  915. #if defined(_WIN32_WCE)
  916. static time_t time(time_t *ptime) {
  917. time_t t;
  918. SYSTEMTIME st;
  919. FILETIME ft;
  920. GetSystemTime(&st);
  921. SystemTimeToFileTime(&st, &ft);
  922. t = SYS2UNIX_TIME(ft.dwLowDateTime, ft.dwHighDateTime);
  923. if (ptime != NULL) {
  924. *ptime = t;
  925. }
  926. return t;
  927. }
  928. static struct tm *localtime(const time_t *ptime, struct tm *ptm) {
  929. int64_t t = ((int64_t) *ptime) * RATE_DIFF + EPOCH_DIFF;
  930. FILETIME ft, lft;
  931. SYSTEMTIME st;
  932. TIME_ZONE_INFORMATION tzinfo;
  933. if (ptm == NULL) {
  934. return NULL;
  935. }
  936. * (int64_t *) &ft = t;
  937. FileTimeToLocalFileTime(&ft, &lft);
  938. FileTimeToSystemTime(&lft, &st);
  939. ptm->tm_year = st.wYear - 1900;
  940. ptm->tm_mon = st.wMonth - 1;
  941. ptm->tm_wday = st.wDayOfWeek;
  942. ptm->tm_mday = st.wDay;
  943. ptm->tm_hour = st.wHour;
  944. ptm->tm_min = st.wMinute;
  945. ptm->tm_sec = st.wSecond;
  946. ptm->tm_yday = 0; // hope nobody uses this
  947. ptm->tm_isdst =
  948. GetTimeZoneInformation(&tzinfo) == TIME_ZONE_ID_DAYLIGHT ? 1 : 0;
  949. return ptm;
  950. }
  951. static struct tm *gmtime(const time_t *ptime, struct tm *ptm) {
  952. // FIXME(lsm): fix this.
  953. return localtime(ptime, ptm);
  954. }
  955. static size_t strftime(char *dst, size_t dst_size, const char *fmt,
  956. const struct tm *tm) {
  957. (void) snprintf(dst, dst_size, "implement strftime() for WinCE");
  958. return 0;
  959. }
  960. #endif
  961. // Windows happily opens files with some garbage at the end of file name.
  962. // For example, fopen("a.cgi ", "r") on Windows successfully opens
  963. // "a.cgi", despite one would expect an error back.
  964. // This function returns non-0 if path ends with some garbage.
  965. static int path_cannot_disclose_cgi(const char *path) {
  966. static const char *allowed_last_characters = "_-";
  967. int last = path[strlen(path) - 1];
  968. return isalnum(last) || strchr(allowed_last_characters, last) != NULL;
  969. }
  970. static int mg_stat(struct mg_connection *conn, const char *path,
  971. struct file *filep) {
  972. wchar_t wbuf[PATH_MAX];
  973. WIN32_FILE_ATTRIBUTE_DATA info;
  974. if (!is_file_in_memory(conn, path, filep)) {
  975. to_unicode(path, wbuf, ARRAY_SIZE(wbuf));
  976. if (GetFileAttributesExW(wbuf, GetFileExInfoStandard, &info) != 0) {
  977. filep->size = MAKEUQUAD(info.nFileSizeLow, info.nFileSizeHigh);
  978. filep->modification_time = SYS2UNIX_TIME(
  979. info.ftLastWriteTime.dwLowDateTime,
  980. info.ftLastWriteTime.dwHighDateTime);
  981. filep->is_directory = info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
  982. // If file name is fishy, reset the file structure and return error.
  983. // Note it is important to reset, not just return the error, cause
  984. // functions like is_file_opened() check the struct.
  985. if (!filep->is_directory && !path_cannot_disclose_cgi(path)) {
  986. memset(filep, 0, sizeof(*filep));
  987. }
  988. }
  989. }
  990. return filep->membuf != NULL || filep->modification_time != 0;
  991. }
  992. static int mg_remove(const char *path) {
  993. wchar_t wbuf[PATH_MAX];
  994. to_unicode(path, wbuf, ARRAY_SIZE(wbuf));
  995. return DeleteFileW(wbuf) ? 0 : -1;
  996. }
  997. static int mg_mkdir(const char *path, int mode) {
  998. char buf[PATH_MAX];
  999. wchar_t wbuf[PATH_MAX];
  1000. (void) mode;
  1001. mg_strlcpy(buf, path, sizeof(buf));
  1002. change_slashes_to_backslashes(buf);
  1003. (void) MultiByteToWideChar(CP_UTF8, 0, buf, -1, wbuf, ARRAY_SIZE(wbuf));
  1004. return CreateDirectoryW(wbuf, NULL) ? 0 : -1;
  1005. }
  1006. // Implementation of POSIX opendir/closedir/readdir for Windows.
  1007. static DIR * opendir(const char *name) {
  1008. DIR *dir = NULL;
  1009. wchar_t wpath[PATH_MAX];
  1010. DWORD attrs;
  1011. if (name == NULL) {
  1012. SetLastError(ERROR_BAD_ARGUMENTS);
  1013. } else if ((dir = (DIR *) malloc(sizeof(*dir))) == NULL) {
  1014. SetLastError(ERROR_NOT_ENOUGH_MEMORY);
  1015. } else {
  1016. to_unicode(name, wpath, ARRAY_SIZE(wpath));
  1017. attrs = GetFileAttributesW(wpath);
  1018. if (attrs != 0xFFFFFFFF &&
  1019. ((attrs & FILE_ATTRIBUTE_DIRECTORY) == FILE_ATTRIBUTE_DIRECTORY)) {
  1020. (void) wcscat(wpath, L"\\*");
  1021. dir->handle = FindFirstFileW(wpath, &dir->info);
  1022. dir->result.d_name[0] = '\0';
  1023. } else {
  1024. free(dir);
  1025. dir = NULL;
  1026. }
  1027. }
  1028. return dir;
  1029. }
  1030. static int closedir(DIR *dir) {
  1031. int result = 0;
  1032. if (dir != NULL) {
  1033. if (dir->handle != INVALID_HANDLE_VALUE)
  1034. result = FindClose(dir->handle) ? 0 : -1;
  1035. free(dir);
  1036. } else {
  1037. result = -1;
  1038. SetLastError(ERROR_BAD_ARGUMENTS);
  1039. }
  1040. return result;
  1041. }
  1042. static struct dirent *readdir(DIR *dir) {
  1043. struct dirent *result = 0;
  1044. if (dir) {
  1045. if (dir->handle != INVALID_HANDLE_VALUE) {
  1046. result = &dir->result;
  1047. (void) WideCharToMultiByte(CP_UTF8, 0,
  1048. dir->info.cFileName, -1, result->d_name,
  1049. sizeof(result->d_name), NULL, NULL);
  1050. if (!FindNextFileW(dir->handle, &dir->info)) {
  1051. (void) FindClose(dir->handle);
  1052. dir->handle = INVALID_HANDLE_VALUE;
  1053. }
  1054. } else {
  1055. SetLastError(ERROR_FILE_NOT_FOUND);
  1056. }
  1057. } else {
  1058. SetLastError(ERROR_BAD_ARGUMENTS);
  1059. }
  1060. return result;
  1061. }
  1062. #ifndef HAVE_POLL
  1063. static int poll(struct pollfd *pfd, int n, int milliseconds) {
  1064. struct timeval tv;
  1065. fd_set set;
  1066. int i, result;
  1067. SOCKET maxfd = 0;
  1068. tv.tv_sec = milliseconds / 1000;
  1069. tv.tv_usec = (milliseconds % 1000) * 1000;
  1070. FD_ZERO(&set);
  1071. for (i = 0; i < n; i++) {
  1072. FD_SET((SOCKET) pfd[i].fd, &set);
  1073. pfd[i].revents = 0;
  1074. if (pfd[i].fd > maxfd) {
  1075. maxfd = pfd[i].fd;
  1076. }
  1077. }
  1078. if ((result = select(maxfd + 1, &set, NULL, NULL, &tv)) > 0) {
  1079. for (i = 0; i < n; i++) {
  1080. if (FD_ISSET(pfd[i].fd, &set)) {
  1081. pfd[i].revents = POLLIN;
  1082. }
  1083. }
  1084. }
  1085. return result;
  1086. }
  1087. #endif // HAVE_POLL
  1088. static void set_close_on_exec(SOCKET sock) {
  1089. (void) SetHandleInformation((HANDLE) sock, HANDLE_FLAG_INHERIT, 0);
  1090. }
  1091. int mg_start_thread(mg_thread_func_t f, void *p) {
  1092. return (long)_beginthread((void (__cdecl *)(void *)) f, 0, p) == -1L ? -1 : 0;
  1093. }
  1094. static HANDLE dlopen(const char *dll_name, int flags) {
  1095. wchar_t wbuf[PATH_MAX];
  1096. (void) flags;
  1097. to_unicode(dll_name, wbuf, ARRAY_SIZE(wbuf));
  1098. return LoadLibraryW(wbuf);
  1099. }
  1100. #if !defined(NO_CGI)
  1101. #define SIGKILL 0
  1102. static int kill(pid_t pid, int sig_num) {
  1103. (void) TerminateProcess(pid, sig_num);
  1104. (void) CloseHandle(pid);
  1105. return 0;
  1106. }
  1107. static void trim_trailing_whitespaces(char *s) {
  1108. char *e = s + strlen(s) - 1;
  1109. while (e > s && isspace(* (unsigned char *) e)) {
  1110. *e-- = '\0';
  1111. }
  1112. }
  1113. static pid_t spawn_process(struct mg_connection *conn, const char *prog,
  1114. char *envblk, char *envp[], int fdin,
  1115. int fdout, const char *dir) {
  1116. HANDLE me;
  1117. char *p, *interp, full_interp[PATH_MAX], full_dir[PATH_MAX],
  1118. cmdline[PATH_MAX], buf[PATH_MAX];
  1119. struct file file = STRUCT_FILE_INITIALIZER;
  1120. STARTUPINFOA si;
  1121. PROCESS_INFORMATION pi = { 0 };
  1122. (void) envp;
  1123. memset(&si, 0, sizeof(si));
  1124. si.cb = sizeof(si);
  1125. // TODO(lsm): redirect CGI errors to the error log file
  1126. si.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
  1127. si.wShowWindow = SW_HIDE;
  1128. me = GetCurrentProcess();
  1129. DuplicateHandle(me, (HANDLE) _get_osfhandle(fdin), me,
  1130. &si.hStdInput, 0, TRUE, DUPLICATE_SAME_ACCESS);
  1131. DuplicateHandle(me, (HANDLE) _get_osfhandle(fdout), me,
  1132. &si.hStdOutput, 0, TRUE, DUPLICATE_SAME_ACCESS);
  1133. // If CGI file is a script, try to read the interpreter line
  1134. interp = conn->ctx->config[CGI_INTERPRETER];
  1135. if (interp == NULL) {
  1136. buf[0] = buf[1] = '\0';
  1137. // Read the first line of the script into the buffer
  1138. snprintf(cmdline, sizeof(cmdline), "%s%c%s", dir, '/', prog);
  1139. if (mg_fopen(conn, cmdline, "r", &file)) {
  1140. p = (char *) file.membuf;
  1141. mg_fgets(buf, sizeof(buf), &file, &p);
  1142. mg_fclose(&file);
  1143. buf[sizeof(buf) - 1] = '\0';
  1144. }
  1145. if (buf[0] == '#' && buf[1] == '!') {
  1146. trim_trailing_whitespaces(buf + 2);
  1147. } else {
  1148. buf[2] = '\0';
  1149. }
  1150. interp = buf + 2;
  1151. }
  1152. if (interp[0] != '\0') {
  1153. GetFullPathNameA(interp, sizeof(full_interp), full_interp, NULL);
  1154. interp = full_interp;
  1155. }
  1156. GetFullPathNameA(dir, sizeof(full_dir), full_dir, NULL);
  1157. mg_snprintf(conn, cmdline, sizeof(cmdline), "%s%s\"%s\\%s\"",
  1158. interp, interp[0] == '\0' ? "" : " ", full_dir, prog);
  1159. DEBUG_TRACE(("Running [%s]", cmdline));
  1160. if (CreateProcessA(NULL, cmdline, NULL, NULL, TRUE,
  1161. CREATE_NEW_PROCESS_GROUP, envblk, NULL, &si, &pi) == 0) {
  1162. cry(conn, "%s: CreateProcess(%s): %ld",
  1163. __func__, cmdline, ERRNO);
  1164. pi.hProcess = (pid_t) -1;
  1165. }
  1166. (void) CloseHandle(si.hStdOutput);
  1167. (void) CloseHandle(si.hStdInput);
  1168. (void) CloseHandle(pi.hThread);
  1169. return (pid_t) pi.hProcess;
  1170. }
  1171. #endif // !NO_CGI
  1172. static int set_non_blocking_mode(SOCKET sock) {
  1173. unsigned long on = 1;
  1174. return ioctlsocket(sock, FIONBIO, &on);
  1175. }
  1176. #else
  1177. static int mg_stat(struct mg_connection *conn, const char *path,
  1178. struct file *filep) {
  1179. struct stat st;
  1180. if (!is_file_in_memory(conn, path, filep) && !stat(path, &st)) {
  1181. filep->size = st.st_size;
  1182. filep->modification_time = st.st_mtime;
  1183. filep->is_directory = S_ISDIR(st.st_mode);
  1184. } else {
  1185. filep->modification_time = (time_t) 0;
  1186. }
  1187. return filep->membuf != NULL || filep->modification_time != (time_t) 0;
  1188. }
  1189. static void set_close_on_exec(int fd) {
  1190. fcntl(fd, F_SETFD, FD_CLOEXEC);
  1191. }
  1192. int mg_start_thread(mg_thread_func_t func, void *param) {
  1193. pthread_t thread_id;
  1194. pthread_attr_t attr;
  1195. int result;
  1196. (void) pthread_attr_init(&attr);
  1197. (void) pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
  1198. #if USE_STACK_SIZE > 1
  1199. // Compile-time option to control stack size, e.g. -DUSE_STACK_SIZE=16384
  1200. (void) pthread_attr_setstacksize(&attr, USE_STACK_SIZE);
  1201. #endif
  1202. result = pthread_create(&thread_id, &attr, func, param);
  1203. pthread_attr_destroy(&attr);
  1204. return result;
  1205. }
  1206. #ifndef NO_CGI
  1207. static pid_t spawn_process(struct mg_connection *conn, const char *prog,
  1208. char *envblk, char *envp[], int fdin,
  1209. int fdout, const char *dir) {
  1210. pid_t pid;
  1211. const char *interp;
  1212. (void) envblk;
  1213. if ((pid = fork()) == -1) {
  1214. // Parent
  1215. send_http_error(conn, 500, http_500_error, "fork(): %s", strerror(ERRNO));
  1216. } else if (pid == 0) {
  1217. // Child
  1218. if (chdir(dir) != 0) {
  1219. cry(conn, "%s: chdir(%s): %s", __func__, dir, strerror(ERRNO));
  1220. } else if (dup2(fdin, 0) == -1) {
  1221. cry(conn, "%s: dup2(%d, 0): %s", __func__, fdin, strerror(ERRNO));
  1222. } else if (dup2(fdout, 1) == -1) {
  1223. cry(conn, "%s: dup2(%d, 1): %s", __func__, fdout, strerror(ERRNO));
  1224. } else {
  1225. // Not redirecting stderr to stdout, to avoid output being littered
  1226. // with the error messages.
  1227. (void) close(fdin);
  1228. (void) close(fdout);
  1229. // After exec, all signal handlers are restored to their default values,
  1230. // with one exception of SIGCHLD. According to POSIX.1-2001 and Linux's
  1231. // implementation, SIGCHLD's handler will leave unchanged after exec
  1232. // if it was set to be ignored. Restore it to default action.
  1233. signal(SIGCHLD, SIG_DFL);
  1234. interp = conn->ctx->config[CGI_INTERPRETER];
  1235. if (interp == NULL) {
  1236. (void) execle(prog, prog, NULL, envp);
  1237. cry(conn, "%s: execle(%s): %s", __func__, prog, strerror(ERRNO));
  1238. } else {
  1239. (void) execle(interp, interp, prog, NULL, envp);
  1240. cry(conn, "%s: execle(%s %s): %s", __func__, interp, prog,
  1241. strerror(ERRNO));
  1242. }
  1243. }
  1244. exit(EXIT_FAILURE);
  1245. }
  1246. return pid;
  1247. }
  1248. #endif // !NO_CGI
  1249. static int set_non_blocking_mode(SOCKET sock) {
  1250. int flags;
  1251. flags = fcntl(sock, F_GETFL, 0);
  1252. (void) fcntl(sock, F_SETFL, flags | O_NONBLOCK);
  1253. return 0;
  1254. }
  1255. #endif // _WIN32
  1256. // Write data to the IO channel - opened file descriptor, socket or SSL
  1257. // descriptor. Return number of bytes written.
  1258. static int64_t push(FILE *fp, SOCKET sock, SSL *ssl, const char *buf,
  1259. int64_t len) {
  1260. int64_t sent;
  1261. int n, k;
  1262. (void) ssl; // Get rid of warning
  1263. sent = 0;
  1264. while (sent < len) {
  1265. // How many bytes we send in this iteration
  1266. k = len - sent > INT_MAX ? INT_MAX : (int) (len - sent);
  1267. #ifndef NO_SSL
  1268. if (ssl != NULL) {
  1269. n = SSL_write(ssl, buf + sent, k);
  1270. } else
  1271. #endif
  1272. if (fp != NULL) {
  1273. n = (int) fwrite(buf + sent, 1, (size_t) k, fp);
  1274. if (ferror(fp))
  1275. n = -1;
  1276. } else {
  1277. n = send(sock, buf + sent, (size_t) k, MSG_NOSIGNAL);
  1278. }
  1279. if (n <= 0)
  1280. break;
  1281. sent += n;
  1282. }
  1283. return sent;
  1284. }
  1285. // Read from IO channel - opened file descriptor, socket, or SSL descriptor.
  1286. // Return negative value on error, or number of bytes read on success.
  1287. static int pull(FILE *fp, struct mg_connection *conn, char *buf, int len) {
  1288. int nread;
  1289. if (fp != NULL) {
  1290. // Use read() instead of fread(), because if we're reading from the CGI
  1291. // pipe, fread() may block until IO buffer is filled up. We cannot afford
  1292. // to block and must pass all read bytes immediately to the client.
  1293. nread = read(fileno(fp), buf, (size_t) len);
  1294. #ifndef NO_SSL
  1295. } else if (conn->ssl != NULL) {
  1296. nread = SSL_read(conn->ssl, buf, len);
  1297. #endif
  1298. } else {
  1299. nread = recv(conn->client.sock, buf, (size_t) len, 0);
  1300. }
  1301. return conn->ctx->stop_flag ? -1 : nread;
  1302. }
  1303. static int pull_all(FILE *fp, struct mg_connection *conn, char *buf, int len) {
  1304. int n, nread = 0;
  1305. while (len > 0 && conn->ctx->stop_flag == 0) {
  1306. n = pull(fp, conn, buf + nread, len);
  1307. if (n < 0) {
  1308. nread = n; // Propagate the error
  1309. break;
  1310. } else if (n == 0) {
  1311. break; // No more data to read
  1312. } else {
  1313. conn->consumed_content += n;
  1314. nread += n;
  1315. len -= n;
  1316. }
  1317. }
  1318. return nread;
  1319. }
  1320. int mg_read(struct mg_connection *conn, void *buf, size_t len) {
  1321. int n, buffered_len, nread;
  1322. const char *body;
  1323. // If Content-Length is not set, read until socket is closed
  1324. if (conn->consumed_content == 0 && conn->content_len == 0) {
  1325. conn->content_len = INT64_MAX;
  1326. conn->must_close = 1;
  1327. }
  1328. nread = 0;
  1329. if (conn->consumed_content < conn->content_len) {
  1330. // Adjust number of bytes to read.
  1331. int64_t to_read = conn->content_len - conn->consumed_content;
  1332. if (to_read < (int64_t) len) {
  1333. len = (size_t) to_read;
  1334. }
  1335. // Return buffered data
  1336. body = conn->buf + conn->request_len + conn->consumed_content;
  1337. buffered_len = &conn->buf[conn->data_len] - body;
  1338. if (buffered_len > 0) {
  1339. if (len < (size_t) buffered_len) {
  1340. buffered_len = (int) len;
  1341. }
  1342. memcpy(buf, body, (size_t) buffered_len);
  1343. len -= buffered_len;
  1344. conn->consumed_content += buffered_len;
  1345. nread += buffered_len;
  1346. buf = (char *) buf + buffered_len;
  1347. }
  1348. // We have returned all buffered data. Read new data from the remote socket.
  1349. n = pull_all(NULL, conn, (char *) buf, (int) len);
  1350. nread = n >= 0 ? nread + n : n;
  1351. }
  1352. return nread;
  1353. }
  1354. int mg_write(struct mg_connection *conn, const void *buf, size_t len) {
  1355. time_t now;
  1356. int64_t n, total, allowed;
  1357. if (conn->throttle > 0) {
  1358. if ((now = time(NULL)) != conn->last_throttle_time) {
  1359. conn->last_throttle_time = now;
  1360. conn->last_throttle_bytes = 0;
  1361. }
  1362. allowed = conn->throttle - conn->last_throttle_bytes;
  1363. if (allowed > (int64_t) len) {
  1364. allowed = len;
  1365. }
  1366. if ((total = push(NULL, conn->client.sock, conn->ssl, (const char *) buf,
  1367. (int64_t) allowed)) == allowed) {
  1368. buf = (char *) buf + total;
  1369. conn->last_throttle_bytes += total;
  1370. while (total < (int64_t) len && conn->ctx->stop_flag == 0) {
  1371. allowed = conn->throttle > (int64_t) len - total ?
  1372. (int64_t) len - total : conn->throttle;
  1373. if ((n = push(NULL, conn->client.sock, conn->ssl, (const char *) buf,
  1374. (int64_t) allowed)) != allowed) {
  1375. break;
  1376. }
  1377. sleep(1);
  1378. conn->last_throttle_bytes = allowed;
  1379. conn->last_throttle_time = time(NULL);
  1380. buf = (char *) buf + n;
  1381. total += n;
  1382. }
  1383. }
  1384. } else {
  1385. total = push(NULL, conn->client.sock, conn->ssl, (const char *) buf,
  1386. (int64_t) len);
  1387. }
  1388. return (int) total;
  1389. }
  1390. // Alternative alloc_vprintf() for non-compliant C runtimes
  1391. static int alloc_vprintf2(char **buf, const char *fmt, va_list ap) {
  1392. va_list ap_copy;
  1393. int size = MG_BUF_LEN;
  1394. int len = -1;
  1395. *buf = NULL;
  1396. while (len == -1) {
  1397. if (*buf) free(*buf);
  1398. *buf = (char *)malloc(size *= 4);
  1399. if (!*buf) break;
  1400. va_copy(ap_copy, ap);
  1401. len = vsnprintf(*buf, size, fmt, ap_copy);
  1402. }
  1403. return len;
  1404. }
  1405. // Print message to buffer. If buffer is large enough to hold the message,
  1406. // return buffer. If buffer is to small, allocate large enough buffer on heap,
  1407. // and return allocated buffer.
  1408. static int alloc_vprintf(char **buf, size_t size, const char *fmt, va_list ap) {
  1409. va_list ap_copy;
  1410. int len;
  1411. // Windows is not standard-compliant, and vsnprintf() returns -1 if
  1412. // buffer is too small. Also, older versions of msvcrt.dll do not have
  1413. // _vscprintf(). However, if size is 0, vsnprintf() behaves correctly.
  1414. // Therefore, we make two passes: on first pass, get required message length.
  1415. // On second pass, actually print the message.
  1416. va_copy(ap_copy, ap);
  1417. len = vsnprintf(NULL, 0, fmt, ap_copy);
  1418. if (len < 0) {
  1419. // C runtime is not standard compliant, vsnprintf() returned -1.
  1420. // Switch to alternative code path that uses incremental allocations.
  1421. va_copy(ap_copy, ap);
  1422. len = alloc_vprintf2(buf, fmt, ap);
  1423. } else if (len > (int) size &&
  1424. (size = len + 1) > 0 &&
  1425. (*buf = (char *) malloc(size)) == NULL) {
  1426. len = -1; // Allocation failed, mark failure
  1427. } else {
  1428. va_copy(ap_copy, ap);
  1429. vsnprintf(*buf, size, fmt, ap_copy);
  1430. }
  1431. return len;
  1432. }
  1433. int mg_vprintf(struct mg_connection *conn, const char *fmt, va_list ap) {
  1434. char mem[MG_BUF_LEN], *buf = mem;
  1435. int len;
  1436. if ((len = alloc_vprintf(&buf, sizeof(mem), fmt, ap)) > 0) {
  1437. len = mg_write(conn, buf, (size_t) len);
  1438. }
  1439. if (buf != mem && buf != NULL) {
  1440. free(buf);
  1441. }
  1442. return len;
  1443. }
  1444. int mg_printf(struct mg_connection *conn, const char *fmt, ...) {
  1445. va_list ap;
  1446. va_start(ap, fmt);
  1447. return mg_vprintf(conn, fmt, ap);
  1448. }
  1449. int mg_url_decode(const char *src, int src_len, char *dst,
  1450. int dst_len, int is_form_url_encoded) {
  1451. int i, j, a, b;
  1452. #define HEXTOI(x) (isdigit(x) ? x - '0' : x - 'W')
  1453. for (i = j = 0; i < src_len && j < dst_len - 1; i++, j++) {
  1454. if (src[i] == '%' && i < src_len - 2 &&
  1455. isxdigit(* (const unsigned char *) (src + i + 1)) &&
  1456. isxdigit(* (const unsigned char *) (src + i + 2))) {
  1457. a = tolower(* (const unsigned char *) (src + i + 1));
  1458. b = tolower(* (const unsigned char *) (src + i + 2));
  1459. dst[j] = (char) ((HEXTOI(a) << 4) | HEXTOI(b));
  1460. i += 2;
  1461. } else if (is_form_url_encoded && src[i] == '+') {
  1462. dst[j] = ' ';
  1463. } else {
  1464. dst[j] = src[i];
  1465. }
  1466. }
  1467. dst[j] = '\0'; // Null-terminate the destination
  1468. return i >= src_len ? j : -1;
  1469. }
  1470. int mg_get_var(const char *data, size_t data_len, const char *name,
  1471. char *dst, size_t dst_len) {
  1472. const char *p, *e, *s;
  1473. size_t name_len;
  1474. int len;
  1475. if (dst == NULL || dst_len == 0) {
  1476. len = -2;
  1477. } else if (data == NULL || name == NULL || data_len == 0) {
  1478. len = -1;
  1479. dst[0] = '\0';
  1480. } else {
  1481. name_len = strlen(name);
  1482. e = data + data_len;
  1483. len = -1;
  1484. dst[0] = '\0';
  1485. // data is "var1=val1&var2=val2...". Find variable first
  1486. for (p = data; p + name_len < e; p++) {
  1487. if ((p == data || p[-1] == '&') && p[name_len] == '=' &&
  1488. !mg_strncasecmp(name, p, name_len)) {
  1489. // Point p to variable value
  1490. p += name_len + 1;
  1491. // Point s to the end of the value
  1492. s = (const char *) memchr(p, '&', (size_t)(e - p));
  1493. if (s == NULL) {
  1494. s = e;
  1495. }
  1496. assert(s >= p);
  1497. // Decode variable into destination buffer
  1498. len = mg_url_decode(p, (size_t)(s - p), dst, dst_len, 1);
  1499. // Redirect error code from -1 to -2 (destination buffer too small).
  1500. if (len == -1) {
  1501. len = -2;
  1502. }
  1503. break;
  1504. }
  1505. }
  1506. }
  1507. return len;
  1508. }
  1509. int mg_get_cookie(const char *cookie_header, const char *var_name,
  1510. char *dst, size_t dst_size) {
  1511. const char *s, *p, *end;
  1512. int name_len, len = -1;
  1513. if (dst == NULL || dst_size == 0) {
  1514. len = -2;
  1515. } else if (var_name == NULL || (s = cookie_header) == NULL) {
  1516. len = -1;
  1517. dst[0] = '\0';
  1518. } else {
  1519. name_len = (int) strlen(var_name);
  1520. end = s + strlen(s);
  1521. dst[0] = '\0';
  1522. for (; (s = mg_strcasestr(s, var_name)) != NULL; s += name_len) {
  1523. if (s[name_len] == '=') {
  1524. s += name_len + 1;
  1525. if ((p = strchr(s, ' ')) == NULL)
  1526. p = end;
  1527. if (p[-1] == ';')
  1528. p--;
  1529. if (*s == '"' && p[-1] == '"' && p > s + 1) {
  1530. s++;
  1531. p--;
  1532. }
  1533. if ((size_t) (p - s) < dst_size) {
  1534. len = p - s;
  1535. mg_strlcpy(dst, s, (size_t) len + 1);
  1536. } else {
  1537. len = -3;
  1538. }
  1539. break;
  1540. }
  1541. }
  1542. }
  1543. return len;
  1544. }
  1545. static void convert_uri_to_file_name(struct mg_connection *conn, char *buf,
  1546. size_t buf_len, struct file *filep) {
  1547. struct vec a, b;
  1548. const char *rewrite, *uri = conn->request_info.uri,
  1549. *root = conn->ctx->config[DOCUMENT_ROOT];
  1550. char *p;
  1551. int match_len;
  1552. char gz_path[PATH_MAX];
  1553. char const* accept_encoding;
  1554. // Using buf_len - 1 because memmove() for PATH_INFO may shift part
  1555. // of the path one byte on the right.
  1556. // If document_root is NULL, leave the file empty.
  1557. mg_snprintf(conn, buf, buf_len - 1, "%s%s",
  1558. root == NULL ? "" : root,
  1559. root == NULL ? "" : uri);
  1560. rewrite = conn->ctx->config[REWRITE];
  1561. while ((rewrite = next_option(rewrite, &a, &b)) != NULL) {
  1562. if ((match_len = match_prefix(a.ptr, a.len, uri)) > 0) {
  1563. mg_snprintf(conn, buf, buf_len - 1, "%.*s%s", (int) b.len, b.ptr,
  1564. uri + match_len);
  1565. break;
  1566. }
  1567. }
  1568. if (mg_stat(conn, buf, filep)) return;
  1569. // if we can't find the actual file, look for the file
  1570. // with the same name but a .gz extension. If we find it,
  1571. // use that and set the gzipped flag in the file struct
  1572. // to indicate that the response need to have the content-
  1573. // encoding: gzip header
  1574. // we can only do this if the browser declares support
  1575. if ((accept_encoding = mg_get_header(conn, "Accept-Encoding")) != NULL) {
  1576. if (strstr(accept_encoding,"gzip") != NULL) {
  1577. snprintf(gz_path, sizeof(gz_path), "%s.gz", buf);
  1578. if (mg_stat(conn, gz_path, filep)) {
  1579. filep->gzipped = 1;
  1580. return;
  1581. }
  1582. }
  1583. }
  1584. // Support PATH_INFO for CGI scripts.
  1585. for (p = buf + strlen(buf); p > buf + 1; p--) {
  1586. if (*p == '/') {
  1587. *p = '\0';
  1588. if (match_prefix(conn->ctx->config[CGI_EXTENSIONS],
  1589. strlen(conn->ctx->config[CGI_EXTENSIONS]), buf) > 0 &&
  1590. mg_stat(conn, buf, filep)) {
  1591. // Shift PATH_INFO block one character right, e.g.
  1592. // "/x.cgi/foo/bar\x00" => "/x.cgi\x00/foo/bar\x00"
  1593. // conn->path_info is pointing to the local variable "path" declared
  1594. // in handle_request(), so PATH_INFO is not valid after
  1595. // handle_request returns.
  1596. conn->path_info = p + 1;
  1597. memmove(p + 2, p + 1, strlen(p + 1) + 1); // +1 is for trailing \0
  1598. p[1] = '/';
  1599. break;
  1600. } else {
  1601. *p = '/';
  1602. }
  1603. }
  1604. }
  1605. }
  1606. // Check whether full request is buffered. Return:
  1607. // -1 if request is malformed
  1608. // 0 if request is not yet fully buffered
  1609. // >0 actual request length, including last \r\n\r\n
  1610. static int get_request_len(const char *buf, int buflen) {
  1611. const char *s, *e;
  1612. int len = 0;
  1613. for (s = buf, e = s + buflen - 1; len <= 0 && s < e; s++)
  1614. // Control characters are not allowed but >=128 is.
  1615. if (!isprint(* (const unsigned char *) s) && *s != '\r' &&
  1616. *s != '\n' && * (const unsigned char *) s < 128) {
  1617. len = -1;
  1618. break; // [i_a] abort scan as soon as one malformed character is found;
  1619. // don't let subsequent \r\n\r\n win us over anyhow
  1620. } else if (s[0] == '\n' && s[1] == '\n') {
  1621. len = (int) (s - buf) + 2;
  1622. } else if (s[0] == '\n' && &s[1] < e &&
  1623. s[1] == '\r' && s[2] == '\n') {
  1624. len = (int) (s - buf) + 3;
  1625. }
  1626. return len;
  1627. }
  1628. // Convert month to the month number. Return -1 on error, or month number
  1629. static int get_month_index(const char *s) {
  1630. size_t i;
  1631. for (i = 0; i < ARRAY_SIZE(month_names); i++)
  1632. if (!strcmp(s, month_names[i]))
  1633. return (int) i;
  1634. return -1;
  1635. }
  1636. static int num_leap_years(int year) {
  1637. return year / 4 - year / 100 + year / 400;
  1638. }
  1639. // Parse UTC date-time string, and return the corresponding time_t value.
  1640. static time_t parse_date_string(const char *datetime) {
  1641. static const unsigned short days_before_month[] = {
  1642. 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
  1643. };
  1644. char month_str[32];
  1645. int second, minute, hour, day, month, year, leap_days, days;
  1646. time_t result = (time_t) 0;
  1647. if (((sscanf(datetime, "%d/%3s/%d %d:%d:%d",
  1648. &day, month_str, &year, &hour, &minute, &second) == 6) ||
  1649. (sscanf(datetime, "%d %3s %d %d:%d:%d",
  1650. &day, month_str, &year, &hour, &minute, &second) == 6) ||
  1651. (sscanf(datetime, "%*3s, %d %3s %d %d:%d:%d",
  1652. &day, month_str, &year, &hour, &minute, &second) == 6) ||
  1653. (sscanf(datetime, "%d-%3s-%d %d:%d:%d",
  1654. &day, month_str, &year, &hour, &minute, &second) == 6)) &&
  1655. year > 1970 &&
  1656. (month = get_month_index(month_str)) != -1) {
  1657. leap_days = num_leap_years(year) - num_leap_years(1970);
  1658. year -= 1970;
  1659. days = year * 365 + days_before_month[month] + (day - 1) + leap_days;
  1660. result = days * 24 * 3600 + hour * 3600 + minute * 60 + second;
  1661. }
  1662. return result;
  1663. }
  1664. // Protect against directory disclosure attack by removing '..',
  1665. // excessive '/' and '\' characters
  1666. static void remove_double_dots_and_double_slashes(char *s) {
  1667. char *p = s;
  1668. while (*s != '\0') {
  1669. *p++ = *s++;
  1670. if (s[-1] == '/' || s[-1] == '\\') {
  1671. // Skip all following slashes, backslashes and double-dots
  1672. while (s[0] != '\0') {
  1673. if (s[0] == '/' || s[0] == '\\') {
  1674. s++;
  1675. } else if (s[0] == '.' && s[1] == '.') {
  1676. s += 2;
  1677. } else {
  1678. break;
  1679. }
  1680. }
  1681. }
  1682. }
  1683. *p = '\0';
  1684. }
  1685. static const struct {
  1686. const char *extension;
  1687. size_t ext_len;
  1688. const char *mime_type;
  1689. } builtin_mime_types[] = {
  1690. {".html", 5, "text/html"},
  1691. {".htm", 4, "text/html"},
  1692. {".shtm", 5, "text/html"},
  1693. {".shtml", 6, "text/html"},
  1694. {".css", 4, "text/css"},
  1695. {".js", 3, "application/x-javascript"},
  1696. {".ico", 4, "image/x-icon"},
  1697. {".gif", 4, "image/gif"},
  1698. {".jpg", 4, "image/jpeg"},
  1699. {".jpeg", 5, "image/jpeg"},
  1700. {".png", 4, "image/png"},
  1701. {".svg", 4, "image/svg+xml"},
  1702. {".txt", 4, "text/plain"},
  1703. {".torrent", 8, "application/x-bittorrent"},
  1704. {".wav", 4, "audio/x-wav"},
  1705. {".mp3", 4, "audio/x-mp3"},
  1706. {".mid", 4, "audio/mid"},
  1707. {".m3u", 4, "audio/x-mpegurl"},
  1708. {".ogg", 4, "audio/ogg"},
  1709. {".ram", 4, "audio/x-pn-realaudio"},
  1710. {".xml", 4, "text/xml"},
  1711. {".json", 5, "text/json"},
  1712. {".xslt", 5, "application/xml"},
  1713. {".xsl", 4, "application/xml"},
  1714. {".ra", 3, "audio/x-pn-realaudio"},
  1715. {".doc", 4, "application/msword"},
  1716. {".exe", 4, "application/octet-stream"},
  1717. {".zip", 4, "application/x-zip-compressed"},
  1718. {".xls", 4, "application/excel"},
  1719. {".tgz", 4, "application/x-tar-gz"},
  1720. {".tar", 4, "application/x-tar"},
  1721. {".gz", 3, "application/x-gunzip"},
  1722. {".arj", 4, "application/x-arj-compressed"},
  1723. {".rar", 4, "application/x-arj-compressed"},
  1724. {".rtf", 4, "application/rtf"},
  1725. {".pdf", 4, "application/pdf"},
  1726. {".swf", 4, "application/x-shockwave-flash"},
  1727. {".mpg", 4, "video/mpeg"},
  1728. {".webm", 5, "video/webm"},
  1729. {".mpeg", 5, "video/mpeg"},
  1730. {".mov", 4, "video/quicktime"},
  1731. {".mp4", 4, "video/mp4"},
  1732. {".m4v", 4, "video/x-m4v"},
  1733. {".asf", 4, "video/x-ms-asf"},
  1734. {".avi", 4, "video/x-msvideo"},
  1735. {".bmp", 4, "image/bmp"},
  1736. {".ttf", 4, "application/x-font-ttf"},
  1737. {NULL, 0, NULL}
  1738. };
  1739. const char *mg_get_builtin_mime_type(const char *path) {
  1740. const char *ext;
  1741. size_t i, path_len;
  1742. path_len = strlen(path);
  1743. for (i = 0; builtin_mime_types[i].extension != NULL; i++) {
  1744. ext = path + (path_len - builtin_mime_types[i].ext_len);
  1745. if (path_len > builtin_mime_types[i].ext_len &&
  1746. mg_strcasecmp(ext, builtin_mime_types[i].extension) == 0) {
  1747. return builtin_mime_types[i].mime_type;
  1748. }
  1749. }
  1750. return "text/plain";
  1751. }
  1752. // Look at the "path" extension and figure what mime type it has.
  1753. // Store mime type in the vector.
  1754. static void get_mime_type(struct mg_context *ctx, const char *path,
  1755. struct vec *vec) {
  1756. struct vec ext_vec, mime_vec;
  1757. const char *list, *ext;
  1758. size_t path_len;
  1759. path_len = strlen(path);
  1760. // Scan user-defined mime types first, in case user wants to
  1761. // override default mime types.
  1762. list = ctx->config[EXTRA_MIME_TYPES];
  1763. while ((list = next_option(list, &ext_vec, &mime_vec)) != NULL) {
  1764. // ext now points to the path suffix
  1765. ext = path + path_len - ext_vec.len;
  1766. if (mg_strncasecmp(ext, ext_vec.ptr, ext_vec.len) == 0) {
  1767. *vec = mime_vec;
  1768. return;
  1769. }
  1770. }
  1771. vec->ptr = mg_get_builtin_mime_type(path);
  1772. vec->len = strlen(vec->ptr);
  1773. }
  1774. // Stringify binary data. Output buffer must be twice as big as input,
  1775. // because each byte takes 2 bytes in string representation
  1776. static void bin2str(char *to, const unsigned char *p, size_t len) {
  1777. static const char *hex = "0123456789abcdef";
  1778. for (; len--; p++) {
  1779. *to++ = hex[p[0] >> 4];
  1780. *to++ = hex[p[0] & 0x0f];
  1781. }
  1782. *to = '\0';
  1783. }
  1784. // Return stringified MD5 hash for list of strings. Buffer must be 33 bytes.
  1785. char *mg_md5(char buf[33], ...) {
  1786. md5_byte_t hash[16];
  1787. const char *p;
  1788. va_list ap;
  1789. md5_state_t ctx;
  1790. md5_init(&ctx);
  1791. va_start(ap, buf);
  1792. while ((p = va_arg(ap, const char *)) != NULL) {
  1793. md5_append(&ctx, (const md5_byte_t *) p, (int) strlen(p));
  1794. }
  1795. va_end(ap);
  1796. md5_finish(&ctx, hash);
  1797. bin2str(buf, hash, sizeof(hash));
  1798. return buf;
  1799. }
  1800. // Check the user's password, return 1 if OK
  1801. static int check_password(const char *method, const char *ha1, const char *uri,
  1802. const char *nonce, const char *nc, const char *cnonce,
  1803. const char *qop, const char *response) {
  1804. char ha2[32 + 1], expected_response[32 + 1];
  1805. // Some of the parameters may be NULL
  1806. if (method == NULL || nonce == NULL || nc == NULL || cnonce == NULL ||
  1807. qop == NULL || response == NULL) {
  1808. return 0;
  1809. }
  1810. // NOTE(lsm): due to a bug in MSIE, we do not compare the URI
  1811. // TODO(lsm): check for authentication timeout
  1812. if (// strcmp(dig->uri, c->ouri) != 0 ||
  1813. strlen(response) != 32
  1814. // || now - strtoul(dig->nonce, NULL, 10) > 3600
  1815. ) {
  1816. return 0;
  1817. }
  1818. mg_md5(ha2, method, ":", uri, NULL);
  1819. mg_md5(expected_response, ha1, ":", nonce, ":", nc,
  1820. ":", cnonce, ":", qop, ":", ha2, NULL);
  1821. return mg_strcasecmp(response, expected_response) == 0;
  1822. }
  1823. // Use the global passwords file, if specified by auth_gpass option,
  1824. // or search for .htpasswd in the requested directory.
  1825. static void open_auth_file(struct mg_connection *conn, const char *path,
  1826. struct file *filep) {
  1827. char name[PATH_MAX];
  1828. const char *p, *e, *gpass = conn->ctx->config[GLOBAL_PASSWORDS_FILE];
  1829. struct file file = STRUCT_FILE_INITIALIZER;
  1830. if (gpass != NULL) {
  1831. // Use global passwords file
  1832. if (!mg_fopen(conn, gpass, "r", filep)) {
  1833. cry(conn, "fopen(%s): %s", gpass, strerror(ERRNO));
  1834. }
  1835. // Important: using local struct file to test path for is_directory flag.
  1836. // If filep is used, mg_stat() makes it appear as if auth file was opened.
  1837. } else if (mg_stat(conn, path, &file) && file.is_directory) {
  1838. mg_snprintf(conn, name, sizeof(name), "%s%c%s",
  1839. path, '/', PASSWORDS_FILE_NAME);
  1840. mg_fopen(conn, name, "r", filep);
  1841. } else {
  1842. // Try to find .htpasswd in requested directory.
  1843. for (p = path, e = p + strlen(p) - 1; e > p; e--)
  1844. if (e[0] == '/')
  1845. break;
  1846. mg_snprintf(conn, name, sizeof(name), "%.*s%c%s",
  1847. (int) (e - p), p, '/', PASSWORDS_FILE_NAME);
  1848. mg_fopen(conn, name, "r", filep);
  1849. }
  1850. }
  1851. // Parsed Authorization header
  1852. struct ah {
  1853. char *user, *uri, *cnonce, *response, *qop, *nc, *nonce;
  1854. };
  1855. // Return 1 on success. Always initializes the ah structure.
  1856. static int parse_auth_header(struct mg_connection *conn, char *buf,
  1857. size_t buf_size, struct ah *ah) {
  1858. char *name, *value, *s;
  1859. const char *auth_header;
  1860. (void) memset(ah, 0, sizeof(*ah));
  1861. if ((auth_header = mg_get_header(conn, "Authorization")) == NULL ||
  1862. mg_strncasecmp(auth_header, "Digest ", 7) != 0) {
  1863. return 0;
  1864. }
  1865. // Make modifiable copy of the auth header
  1866. (void) mg_strlcpy(buf, auth_header + 7, buf_size);
  1867. s = buf;
  1868. // Parse authorization header
  1869. for (;;) {
  1870. // Gobble initial spaces
  1871. while (isspace(* (unsigned char *) s)) {
  1872. s++;
  1873. }
  1874. name = skip_quoted(&s, "=", " ", 0);
  1875. // Value is either quote-delimited, or ends at first comma or space.
  1876. if (s[0] == '\"') {
  1877. s++;
  1878. value = skip_quoted(&s, "\"", " ", '\\');
  1879. if (s[0] == ',') {
  1880. s++;
  1881. }
  1882. } else {
  1883. value = skip_quoted(&s, ", ", " ", 0); // IE uses commas, FF uses spaces
  1884. }
  1885. if (*name == '\0') {
  1886. break;
  1887. }
  1888. if (!strcmp(name, "username")) {
  1889. ah->user = value;
  1890. } else if (!strcmp(name, "cnonce")) {
  1891. ah->cnonce = value;
  1892. } else if (!strcmp(name, "response")) {
  1893. ah->response = value;
  1894. } else if (!strcmp(name, "uri")) {
  1895. ah->uri = value;
  1896. } else if (!strcmp(name, "qop")) {
  1897. ah->qop = value;
  1898. } else if (!strcmp(name, "nc")) {
  1899. ah->nc = value;
  1900. } else if (!strcmp(name, "nonce")) {
  1901. ah->nonce = value;
  1902. }
  1903. }
  1904. // CGI needs it as REMOTE_USER
  1905. if (ah->user != NULL) {
  1906. conn->request_info.remote_user = mg_strdup(ah->user);
  1907. } else {
  1908. return 0;
  1909. }
  1910. return 1;
  1911. }
  1912. static char *mg_fgets(char *buf, size_t size, struct file *filep, char **p) {
  1913. char *eof;
  1914. size_t len;
  1915. char *memend;
  1916. if (filep->membuf != NULL && *p != NULL) {
  1917. memend = (char *) &filep->membuf[filep->size];
  1918. eof = (char *) memchr(*p, '\n', memend - *p); // Search for \n from p till the end of stream
  1919. if (eof != NULL) {
  1920. eof += 1; // Include \n
  1921. } else {
  1922. eof = memend; // Copy remaining data
  1923. }
  1924. len = (size_t) (eof - *p) > size - 1 ? size - 1 : (size_t) (eof - *p);
  1925. memcpy(buf, *p, len);
  1926. buf[len] = '\0';
  1927. *p += len;
  1928. return len ? eof : NULL;
  1929. } else if (filep->fp != NULL) {
  1930. return fgets(buf, size, filep->fp);
  1931. } else {
  1932. return NULL;
  1933. }
  1934. }
  1935. // Authorize against the opened passwords file. Return 1 if authorized.
  1936. static int authorize(struct mg_connection *conn, struct file *filep) {
  1937. struct ah ah;
  1938. char line[256], f_user[256], ha1[256], f_domain[256], buf[MG_BUF_LEN], *p;
  1939. if (!parse_auth_header(conn, buf, sizeof(buf), &ah)) {
  1940. return 0;
  1941. }
  1942. // Loop over passwords file
  1943. p = (char *) filep->membuf;
  1944. while (mg_fgets(line, sizeof(line), filep, &p) != NULL) {
  1945. if (sscanf(line, "%[^:]:%[^:]:%s", f_user, f_domain, ha1) != 3) {
  1946. continue;
  1947. }
  1948. if (!strcmp(ah.user, f_user) &&
  1949. !strcmp(conn->ctx->config[AUTHENTICATION_DOMAIN], f_domain))
  1950. return check_password(conn->request_info.request_method, ha1, ah.uri,
  1951. ah.nonce, ah.nc, ah.cnonce, ah.qop, ah.response);
  1952. }
  1953. return 0;
  1954. }
  1955. // Return 1 if request is authorised, 0 otherwise.
  1956. static int check_authorization(struct mg_connection *conn, const char *path) {
  1957. char fname[PATH_MAX];
  1958. struct vec uri_vec, filename_vec;
  1959. const char *list;
  1960. struct file file = STRUCT_FILE_INITIALIZER;
  1961. int authorized = 1;
  1962. list = conn->ctx->config[PROTECT_URI];
  1963. while ((list = next_option(list, &uri_vec, &filename_vec)) != NULL) {
  1964. if (!memcmp(conn->request_info.uri, uri_vec.ptr, uri_vec.len)) {
  1965. mg_snprintf(conn, fname, sizeof(fname), "%.*s",
  1966. (int) filename_vec.len, filename_vec.ptr);
  1967. if (!mg_fopen(conn, fname, "r", &file)) {
  1968. cry(conn, "%s: cannot open %s: %s", __func__, fname, strerror(errno));
  1969. }
  1970. break;
  1971. }
  1972. }
  1973. if (!is_file_opened(&file)) {
  1974. open_auth_file(conn, path, &file);
  1975. }
  1976. if (is_file_opened(&file)) {
  1977. authorized = authorize(conn, &file);
  1978. mg_fclose(&file);
  1979. }
  1980. return authorized;
  1981. }
  1982. static void send_authorization_request(struct mg_connection *conn) {
  1983. conn->status_code = 401;
  1984. mg_printf(conn,
  1985. "HTTP/1.1 401 Unauthorized\r\n"
  1986. "Content-Length: 0\r\n"
  1987. "WWW-Authenticate: Digest qop=\"auth\", "
  1988. "realm=\"%s\", nonce=\"%lu\"\r\n\r\n",
  1989. conn->ctx->config[AUTHENTICATION_DOMAIN],
  1990. (unsigned long) time(NULL));
  1991. }
  1992. static int is_authorized_for_put(struct mg_connection *conn) {
  1993. struct file file = STRUCT_FILE_INITIALIZER;
  1994. const char *passfile = conn->ctx->config[PUT_DELETE_PASSWORDS_FILE];
  1995. int ret = 0;
  1996. if (passfile != NULL && mg_fopen(conn, passfile, "r", &file)) {
  1997. ret = authorize(conn, &file);
  1998. mg_fclose(&file);
  1999. }
  2000. return ret;
  2001. }
  2002. int mg_modify_passwords_file(const char *fname, const char *domain,
  2003. const char *user, const char *pass) {
  2004. int found;
  2005. char line[512], u[512], d[512], ha1[33], tmp[PATH_MAX];
  2006. FILE *fp, *fp2;
  2007. found = 0;
  2008. fp = fp2 = NULL;
  2009. // Regard empty password as no password - remove user record.
  2010. if (pass != NULL && pass[0] == '\0') {
  2011. pass = NULL;
  2012. }
  2013. (void) snprintf(tmp, sizeof(tmp), "%s.tmp", fname);
  2014. // Create the file if does not exist
  2015. if ((fp = fopen(fname, "a+")) != NULL) {
  2016. (void) fclose(fp);
  2017. }
  2018. // Open the given file and temporary file
  2019. if ((fp = fopen(fname, "r")) == NULL) {
  2020. return 0;
  2021. } else if ((fp2 = fopen(tmp, "w+")) == NULL) {
  2022. fclose(fp);
  2023. return 0;
  2024. }
  2025. // Copy the stuff to temporary file
  2026. while (fgets(line, sizeof(line), fp) != NULL) {
  2027. if (sscanf(line, "%[^:]:%[^:]:%*s", u, d) != 2) {
  2028. continue;
  2029. }
  2030. if (!strcmp(u, user) && !strcmp(d, domain)) {
  2031. found++;
  2032. if (pass != NULL) {
  2033. mg_md5(ha1, user, ":", domain, ":", pass, NULL);
  2034. fprintf(fp2, "%s:%s:%s\n", user, domain, ha1);
  2035. }
  2036. } else {
  2037. fprintf(fp2, "%s", line);
  2038. }
  2039. }
  2040. // If new user, just add it
  2041. if (!found && pass != NULL) {
  2042. mg_md5(ha1, user, ":", domain, ":", pass, NULL);
  2043. fprintf(fp2, "%s:%s:%s\n", user, domain, ha1);
  2044. }
  2045. // Close files
  2046. fclose(fp);
  2047. fclose(fp2);
  2048. // Put the temp file in place of real file
  2049. remove(fname);
  2050. rename(tmp, fname);
  2051. return 1;
  2052. }
  2053. static SOCKET conn2(const char *host, int port, int use_ssl,
  2054. char *ebuf, size_t ebuf_len) {
  2055. struct sockaddr_in sin;
  2056. struct hostent *he;
  2057. SOCKET sock = INVALID_SOCKET;
  2058. if (host == NULL) {
  2059. snprintf(ebuf, ebuf_len, "%s", "NULL host");
  2060. } else if (use_ssl && SSLv23_client_method == NULL) {
  2061. snprintf(ebuf, ebuf_len, "%s", "SSL is not initialized");
  2062. // TODO(lsm): use something threadsafe instead of gethostbyname()
  2063. } else if ((he = gethostbyname(host)) == NULL) {
  2064. snprintf(ebuf, ebuf_len, "gethostbyname(%s): %s", host, strerror(ERRNO));
  2065. } else if ((sock = socket(PF_INET, SOCK_STREAM, 0)) == INVALID_SOCKET) {
  2066. snprintf(ebuf, ebuf_len, "socket(): %s", strerror(ERRNO));
  2067. } else {
  2068. set_close_on_exec(sock);
  2069. sin.sin_family = AF_INET;
  2070. sin.sin_port = htons((uint16_t) port);
  2071. sin.sin_addr = * (struct in_addr *) he->h_addr_list[0];
  2072. if (connect(sock, (struct sockaddr *) &sin, sizeof(sin)) != 0) {
  2073. snprintf(ebuf, ebuf_len, "connect(%s:%d): %s",
  2074. host, port, strerror(ERRNO));
  2075. closesocket(sock);
  2076. sock = INVALID_SOCKET;
  2077. }
  2078. }
  2079. return sock;
  2080. }
  2081. void mg_url_encode(const char *src, char *dst, size_t dst_len) {
  2082. static const char *dont_escape = "._-$,;~()";
  2083. static const char *hex = "0123456789abcdef";
  2084. const char *end = dst + dst_len - 1;
  2085. for (; *src != '\0' && dst < end; src++, dst++) {
  2086. if (isalnum(*(const unsigned char *) src) ||
  2087. strchr(dont_escape, * (const unsigned char *) src) != NULL) {
  2088. *dst = *src;
  2089. } else if (dst + 2 < end) {
  2090. dst[0] = '%';
  2091. dst[1] = hex[(* (const unsigned char *) src) >> 4];
  2092. dst[2] = hex[(* (const unsigned char *) src) & 0xf];
  2093. dst += 2;
  2094. }
  2095. }
  2096. *dst = '\0';
  2097. }
  2098. static void print_dir_entry(struct de *de) {
  2099. char size[64], mod[64], href[PATH_MAX];
  2100. if (de->file.is_directory) {
  2101. mg_snprintf(de->conn, size, sizeof(size), "%s", "[DIRECTORY]");
  2102. } else {
  2103. // We use (signed) cast below because MSVC 6 compiler cannot
  2104. // convert unsigned __int64 to double. Sigh.
  2105. if (de->file.size < 1024) {
  2106. mg_snprintf(de->conn, size, sizeof(size), "%d", (int) de->file.size);
  2107. } else if (de->file.size < 0x100000) {
  2108. mg_snprintf(de->conn, size, sizeof(size),
  2109. "%.1fk", (double) de->file.size / 1024.0);
  2110. } else if (de->file.size < 0x40000000) {
  2111. mg_snprintf(de->conn, size, sizeof(size),
  2112. "%.1fM", (double) de->file.size / 1048576);
  2113. } else {
  2114. mg_snprintf(de->conn, size, sizeof(size),
  2115. "%.1fG", (double) de->file.size / 1073741824);
  2116. }
  2117. }
  2118. strftime(mod, sizeof(mod), "%d-%b-%Y %H:%M",
  2119. localtime(&de->file.modification_time));
  2120. mg_url_encode(de->file_name, href, sizeof(href));
  2121. de->conn->num_bytes_sent += mg_printf(de->conn,
  2122. "<tr><td><a href=\"%s%s%s\">%s%s</a></td>"
  2123. "<td>&nbsp;%s</td><td>&nbsp;&nbsp;%s</td></tr>\n",
  2124. de->conn->request_info.uri, href, de->file.is_directory ? "/" : "",
  2125. de->file_name, de->file.is_directory ? "/" : "", mod, size);
  2126. }
  2127. // This function is called from send_directory() and used for
  2128. // sorting directory entries by size, or name, or modification time.
  2129. // On windows, __cdecl specification is needed in case if project is built
  2130. // with __stdcall convention. qsort always requires __cdels callback.
  2131. static int WINCDECL compare_dir_entries(const void *p1, const void *p2) {
  2132. const struct de *a = (const struct de *) p1, *b = (const struct de *) p2;
  2133. const char *query_string = a->conn->request_info.query_string;
  2134. int cmp_result = 0;
  2135. if (query_string == NULL) {
  2136. query_string = "na";
  2137. }
  2138. if (a->file.is_directory && !b->file.is_directory) {
  2139. return -1; // Always put directories on top
  2140. } else if (!a->file.is_directory && b->file.is_directory) {
  2141. return 1; // Always put directories on top
  2142. } else if (*query_string == 'n') {
  2143. cmp_result = strcmp(a->file_name, b->file_name);
  2144. } else if (*query_string == 's') {
  2145. cmp_result = a->file.size == b->file.size ? 0 :
  2146. a->file.size > b->file.size ? 1 : -1;
  2147. } else if (*query_string == 'd') {
  2148. cmp_result = a->file.modification_time == b->file.modification_time ? 0 :
  2149. a->file.modification_time > b->file.modification_time ? 1 : -1;
  2150. }
  2151. return query_string[1] == 'd' ? -cmp_result : cmp_result;
  2152. }
  2153. static int must_hide_file(struct mg_connection *conn, const char *path) {
  2154. const char *pw_pattern = "**" PASSWORDS_FILE_NAME "$";
  2155. const char *pattern = conn->ctx->config[HIDE_FILES];
  2156. return match_prefix(pw_pattern, strlen(pw_pattern), path) > 0 ||
  2157. (pattern != NULL && match_prefix(pattern, strlen(pattern), path) > 0);
  2158. }
  2159. static int scan_directory(struct mg_connection *conn, const char *dir,
  2160. void *data, void (*cb)(struct de *, void *)) {
  2161. char path[PATH_MAX];
  2162. struct dirent *dp;
  2163. DIR *dirp;
  2164. struct de de;
  2165. if ((dirp = opendir(dir)) == NULL) {
  2166. return 0;
  2167. } else {
  2168. de.conn = conn;
  2169. while ((dp = readdir(dirp)) != NULL) {
  2170. // Do not show current dir and hidden files
  2171. if (!strcmp(dp->d_name, ".") ||
  2172. !strcmp(dp->d_name, "..") ||
  2173. must_hide_file(conn, dp->d_name)) {
  2174. continue;
  2175. }
  2176. mg_snprintf(conn, path, sizeof(path), "%s%c%s", dir, '/', dp->d_name);
  2177. // If we don't memset stat structure to zero, mtime will have
  2178. // garbage and strftime() will segfault later on in
  2179. // print_dir_entry(). memset is required only if mg_stat()
  2180. // fails. For more details, see
  2181. // http://code.google.com/p/civetweb/issues/detail?id=79
  2182. memset(&de.file, 0, sizeof(de.file));
  2183. mg_stat(conn, path, &de.file);
  2184. de.file_name = dp->d_name;
  2185. cb(&de, data);
  2186. }
  2187. (void) closedir(dirp);
  2188. }
  2189. return 1;
  2190. }
  2191. static int remove_directory(struct mg_connection *conn, const char *dir) {
  2192. char path[PATH_MAX];
  2193. struct dirent *dp;
  2194. DIR *dirp;
  2195. struct de de;
  2196. if ((dirp = opendir(dir)) == NULL) {
  2197. return 0;
  2198. } else {
  2199. de.conn = conn;
  2200. while ((dp = readdir(dirp)) != NULL) {
  2201. // Do not show current dir (but show hidden files as they will also be removed)
  2202. if (!strcmp(dp->d_name, ".") ||
  2203. !strcmp(dp->d_name, "..")) {
  2204. continue;
  2205. }
  2206. mg_snprintf(conn, path, sizeof(path), "%s%c%s", dir, '/', dp->d_name);
  2207. // If we don't memset stat structure to zero, mtime will have
  2208. // garbage and strftime() will segfault later on in
  2209. // print_dir_entry(). memset is required only if mg_stat()
  2210. // fails. For more details, see
  2211. // http://code.google.com/p/civetweb/issues/detail?id=79
  2212. memset(&de.file, 0, sizeof(de.file));
  2213. mg_stat(conn, path, &de.file);
  2214. if(de.file.modification_time) {
  2215. if(de.file.is_directory) {
  2216. remove_directory(conn, path);
  2217. } else {
  2218. mg_remove(path);
  2219. }
  2220. }
  2221. }
  2222. (void) closedir(dirp);
  2223. rmdir(dir);
  2224. }
  2225. return 1;
  2226. }
  2227. struct dir_scan_data {
  2228. struct de *entries;
  2229. int num_entries;
  2230. int arr_size;
  2231. };
  2232. // Behaves like realloc(), but frees original pointer on failure
  2233. static void *realloc2(void *ptr, size_t size) {
  2234. void *new_ptr = realloc(ptr, size);
  2235. if (new_ptr == NULL) {
  2236. free(ptr);
  2237. }
  2238. return new_ptr;
  2239. }
  2240. static void dir_scan_callback(struct de *de, void *data) {
  2241. struct dir_scan_data *dsd = (struct dir_scan_data *) data;
  2242. if (dsd->entries == NULL || dsd->num_entries >= dsd->arr_size) {
  2243. dsd->arr_size *= 2;
  2244. dsd->entries = (struct de *) realloc2(dsd->entries, dsd->arr_size *
  2245. sizeof(dsd->entries[0]));
  2246. }
  2247. if (dsd->entries == NULL) {
  2248. // TODO(lsm): propagate an error to the caller
  2249. dsd->num_entries = 0;
  2250. } else {
  2251. dsd->entries[dsd->num_entries].file_name = mg_strdup(de->file_name);
  2252. dsd->entries[dsd->num_entries].file = de->file;
  2253. dsd->entries[dsd->num_entries].conn = de->conn;
  2254. dsd->num_entries++;
  2255. }
  2256. }
  2257. static void handle_directory_request(struct mg_connection *conn,
  2258. const char *dir) {
  2259. int i, sort_direction;
  2260. struct dir_scan_data data = { NULL, 0, 128 };
  2261. if (!scan_directory(conn, dir, &data, dir_scan_callback)) {
  2262. send_http_error(conn, 500, "Cannot open directory",
  2263. "Error: opendir(%s): %s", dir, strerror(ERRNO));
  2264. return;
  2265. }
  2266. sort_direction = conn->request_info.query_string != NULL &&
  2267. conn->request_info.query_string[1] == 'd' ? 'a' : 'd';
  2268. conn->must_close = 1;
  2269. mg_printf(conn, "%s",
  2270. "HTTP/1.1 200 OK\r\n"
  2271. "Connection: close\r\n"
  2272. "Content-Type: text/html; charset=utf-8\r\n\r\n");
  2273. conn->num_bytes_sent += mg_printf(conn,
  2274. "<html><head><title>Index of %s</title>"
  2275. "<style>th {text-align: left;}</style></head>"
  2276. "<body><h1>Index of %s</h1><pre><table cellpadding=\"0\">"
  2277. "<tr><th><a href=\"?n%c\">Name</a></th>"
  2278. "<th><a href=\"?d%c\">Modified</a></th>"
  2279. "<th><a href=\"?s%c\">Size</a></th></tr>"
  2280. "<tr><td colspan=\"3\"><hr></td></tr>",
  2281. conn->request_info.uri, conn->request_info.uri,
  2282. sort_direction, sort_direction, sort_direction);
  2283. // Print first entry - link to a parent directory
  2284. conn->num_bytes_sent += mg_printf(conn,
  2285. "<tr><td><a href=\"%s%s\">%s</a></td>"
  2286. "<td>&nbsp;%s</td><td>&nbsp;&nbsp;%s</td></tr>\n",
  2287. conn->request_info.uri, "..", "Parent directory", "-", "-");
  2288. // Sort and print directory entries
  2289. qsort(data.entries, (size_t) data.num_entries, sizeof(data.entries[0]),
  2290. compare_dir_entries);
  2291. for (i = 0; i < data.num_entries; i++) {
  2292. print_dir_entry(&data.entries[i]);
  2293. free(data.entries[i].file_name);
  2294. }
  2295. free(data.entries);
  2296. conn->num_bytes_sent += mg_printf(conn, "%s", "</table></body></html>");
  2297. conn->status_code = 200;
  2298. }
  2299. // Send len bytes from the opened file to the client.
  2300. static void send_file_data(struct mg_connection *conn, struct file *filep,
  2301. int64_t offset, int64_t len) {
  2302. char buf[MG_BUF_LEN];
  2303. int to_read, num_read, num_written;
  2304. // Sanity check the offset
  2305. offset = offset < 0 ? 0 : offset > filep->size ? filep->size : offset;
  2306. if (len > 0 && filep->membuf != NULL && filep->size > 0) {
  2307. if (len > filep->size - offset) {
  2308. len = filep->size - offset;
  2309. }
  2310. mg_write(conn, filep->membuf + offset, (size_t) len);
  2311. } else if (len > 0 && filep->fp != NULL) {
  2312. fseeko(filep->fp, offset, SEEK_SET);
  2313. while (len > 0) {
  2314. // Calculate how much to read from the file in the buffer
  2315. to_read = sizeof(buf);
  2316. if ((int64_t) to_read > len) {
  2317. to_read = (int) len;
  2318. }
  2319. // Read from file, exit the loop on error
  2320. if ((num_read = fread(buf, 1, (size_t) to_read, filep->fp)) <= 0) {
  2321. break;
  2322. }
  2323. // Send read bytes to the client, exit the loop on error
  2324. if ((num_written = mg_write(conn, buf, (size_t) num_read)) != num_read) {
  2325. break;
  2326. }
  2327. // Both read and were successful, adjust counters
  2328. conn->num_bytes_sent += num_written;
  2329. len -= num_written;
  2330. }
  2331. }
  2332. }
  2333. static int parse_range_header(const char *header, int64_t *a, int64_t *b) {
  2334. return sscanf(header, "bytes=%" INT64_FMT "-%" INT64_FMT, a, b);
  2335. }
  2336. static void gmt_time_string(char *buf, size_t buf_len, time_t *t) {
  2337. strftime(buf, buf_len, "%a, %d %b %Y %H:%M:%S GMT", gmtime(t));
  2338. }
  2339. static void construct_etag(char *buf, size_t buf_len,
  2340. const struct file *filep) {
  2341. snprintf(buf, buf_len, "\"%lx.%" INT64_FMT "\"",
  2342. (unsigned long) filep->modification_time, filep->size);
  2343. }
  2344. static void fclose_on_exec(struct file *filep) {
  2345. if (filep != NULL && filep->fp != NULL) {
  2346. #ifndef _WIN32
  2347. fcntl(fileno(filep->fp), F_SETFD, FD_CLOEXEC);
  2348. #endif
  2349. }
  2350. }
  2351. static void handle_file_request(struct mg_connection *conn, const char *path,
  2352. struct file *filep) {
  2353. char date[64], lm[64], etag[64], range[64];
  2354. const char *msg = "OK", *hdr;
  2355. time_t curtime = time(NULL);
  2356. int64_t cl, r1, r2;
  2357. struct vec mime_vec;
  2358. int n;
  2359. char gz_path[PATH_MAX];
  2360. char const* encoding = "";
  2361. get_mime_type(conn->ctx, path, &mime_vec);
  2362. cl = filep->size;
  2363. conn->status_code = 200;
  2364. range[0] = '\0';
  2365. // if this file is in fact a pre-gzipped file, rewrite its filename
  2366. // it's important to rewrite the filename after resolving
  2367. // the mime type from it, to preserve the actual file's type
  2368. if (filep->gzipped) {
  2369. snprintf(gz_path, sizeof(gz_path), "%s.gz", path);
  2370. path = gz_path;
  2371. encoding = "Content-Encoding: gzip\r\n";
  2372. }
  2373. if (!mg_fopen(conn, path, "rb", filep)) {
  2374. send_http_error(conn, 500, http_500_error,
  2375. "fopen(%s): %s", path, strerror(ERRNO));
  2376. return;
  2377. }
  2378. fclose_on_exec(filep);
  2379. // If Range: header specified, act accordingly
  2380. r1 = r2 = 0;
  2381. hdr = mg_get_header(conn, "Range");
  2382. if (hdr != NULL && (n = parse_range_header(hdr, &r1, &r2)) > 0 &&
  2383. r1 >= 0 && r2 >= 0) {
  2384. // actually, range requests don't play well with a pre-gzipped
  2385. // file (since the range is specified in the uncmpressed space)
  2386. if (filep->gzipped) {
  2387. send_http_error(conn, 501, "Not Implemented", "range requests in gzipped files are not supported");
  2388. return;
  2389. }
  2390. conn->status_code = 206;
  2391. cl = n == 2 ? (r2 > cl ? cl : r2) - r1 + 1: cl - r1;
  2392. mg_snprintf(conn, range, sizeof(range),
  2393. "Content-Range: bytes "
  2394. "%" INT64_FMT "-%"
  2395. INT64_FMT "/%" INT64_FMT "\r\n",
  2396. r1, r1 + cl - 1, filep->size);
  2397. msg = "Partial Content";
  2398. }
  2399. // Prepare Etag, Date, Last-Modified headers. Must be in UTC, according to
  2400. // http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3
  2401. gmt_time_string(date, sizeof(date), &curtime);
  2402. gmt_time_string(lm, sizeof(lm), &filep->modification_time);
  2403. construct_etag(etag, sizeof(etag), filep);
  2404. (void) mg_printf(conn,
  2405. "HTTP/1.1 %d %s\r\n"
  2406. "Date: %s\r\n"
  2407. "Last-Modified: %s\r\n"
  2408. "Etag: %s\r\n"
  2409. "Content-Type: %.*s\r\n"
  2410. "Content-Length: %" INT64_FMT "\r\n"
  2411. "Connection: %s\r\n"
  2412. "Accept-Ranges: bytes\r\n"
  2413. "%s%s\r\n",
  2414. conn->status_code, msg, date, lm, etag, (int) mime_vec.len,
  2415. mime_vec.ptr, cl, suggest_connection_header(conn), range, encoding);
  2416. if (strcmp(conn->request_info.request_method, "HEAD") != 0) {
  2417. send_file_data(conn, filep, r1, cl);
  2418. }
  2419. mg_fclose(filep);
  2420. }
  2421. void mg_send_file(struct mg_connection *conn, const char *path) {
  2422. struct file file = STRUCT_FILE_INITIALIZER;
  2423. if (mg_stat(conn, path, &file)) {
  2424. handle_file_request(conn, path, &file);
  2425. } else {
  2426. send_http_error(conn, 404, "Not Found", "%s", "File not found");
  2427. }
  2428. }
  2429. // Parse HTTP headers from the given buffer, advance buffer to the point
  2430. // where parsing stopped.
  2431. static void parse_http_headers(char **buf, struct mg_request_info *ri) {
  2432. int i;
  2433. for (i = 0; i < (int) ARRAY_SIZE(ri->http_headers); i++) {
  2434. ri->http_headers[i].name = skip_quoted(buf, ":", " ", 0);
  2435. ri->http_headers[i].value = skip(buf, "\r\n");
  2436. if (ri->http_headers[i].name[0] == '\0')
  2437. break;
  2438. ri->num_headers = i + 1;
  2439. }
  2440. }
  2441. static int is_valid_http_method(const char *method) {
  2442. return !strcmp(method, "GET") || !strcmp(method, "POST") ||
  2443. !strcmp(method, "HEAD") || !strcmp(method, "CONNECT") ||
  2444. !strcmp(method, "PUT") || !strcmp(method, "DELETE") ||
  2445. !strcmp(method, "OPTIONS") || !strcmp(method, "PROPFIND")
  2446. || !strcmp(method, "MKCOL")
  2447. ;
  2448. }
  2449. // Parse HTTP request, fill in mg_request_info structure.
  2450. // This function modifies the buffer by NUL-terminating
  2451. // HTTP request components, header names and header values.
  2452. static int parse_http_message(char *buf, int len, struct mg_request_info *ri) {
  2453. int is_request, request_length = get_request_len(buf, len);
  2454. if (request_length > 0) {
  2455. // Reset attributes. DO NOT TOUCH is_ssl, remote_ip, remote_port
  2456. ri->remote_user = ri->request_method = ri->uri = ri->http_version = NULL;
  2457. ri->num_headers = 0;
  2458. buf[request_length - 1] = '\0';
  2459. // RFC says that all initial whitespaces should be ingored
  2460. while (*buf != '\0' && isspace(* (unsigned char *) buf)) {
  2461. buf++;
  2462. }
  2463. ri->request_method = skip(&buf, " ");
  2464. ri->uri = skip(&buf, " ");
  2465. ri->http_version = skip(&buf, "\r\n");
  2466. // HTTP message could be either HTTP request or HTTP response, e.g.
  2467. // "GET / HTTP/1.0 ...." or "HTTP/1.0 200 OK ..."
  2468. is_request = is_valid_http_method(ri->request_method);
  2469. if ((is_request && memcmp(ri->http_version, "HTTP/", 5) != 0) ||
  2470. (!is_request && memcmp(ri->request_method, "HTTP/", 5) != 0)) {
  2471. request_length = -1;
  2472. } else {
  2473. if (is_request) {
  2474. ri->http_version += 5;
  2475. }
  2476. parse_http_headers(&buf, ri);
  2477. }
  2478. }
  2479. return request_length;
  2480. }
  2481. // Keep reading the input (either opened file descriptor fd, or socket sock,
  2482. // or SSL descriptor ssl) into buffer buf, until \r\n\r\n appears in the
  2483. // buffer (which marks the end of HTTP request). Buffer buf may already
  2484. // have some data. The length of the data is stored in nread.
  2485. // Upon every read operation, increase nread by the number of bytes read.
  2486. static int read_request(FILE *fp, struct mg_connection *conn,
  2487. char *buf, int bufsiz, int *nread) {
  2488. int request_len, n = 0;
  2489. request_len = get_request_len(buf, *nread);
  2490. while (conn->ctx->stop_flag == 0 &&
  2491. *nread < bufsiz && request_len == 0 &&
  2492. (n = pull(fp, conn, buf + *nread, bufsiz - *nread)) > 0) {
  2493. *nread += n;
  2494. assert(*nread <= bufsiz);
  2495. request_len = get_request_len(buf, *nread);
  2496. }
  2497. return request_len <= 0 && n <= 0 ? -1 : request_len;
  2498. }
  2499. // For given directory path, substitute it to valid index file.
  2500. // Return 0 if index file has been found, -1 if not found.
  2501. // If the file is found, it's stats is returned in stp.
  2502. static int substitute_index_file(struct mg_connection *conn, char *path,
  2503. size_t path_len, struct file *filep) {
  2504. const char *list = conn->ctx->config[INDEX_FILES];
  2505. struct file file = STRUCT_FILE_INITIALIZER;
  2506. struct vec filename_vec;
  2507. size_t n = strlen(path);
  2508. int found = 0;
  2509. // The 'path' given to us points to the directory. Remove all trailing
  2510. // directory separator characters from the end of the path, and
  2511. // then append single directory separator character.
  2512. while (n > 0 && path[n - 1] == '/') {
  2513. n--;
  2514. }
  2515. path[n] = '/';
  2516. // Traverse index files list. For each entry, append it to the given
  2517. // path and see if the file exists. If it exists, break the loop
  2518. while ((list = next_option(list, &filename_vec, NULL)) != NULL) {
  2519. // Ignore too long entries that may overflow path buffer
  2520. if (filename_vec.len > path_len - (n + 2))
  2521. continue;
  2522. // Prepare full path to the index file
  2523. mg_strlcpy(path + n + 1, filename_vec.ptr, filename_vec.len + 1);
  2524. // Does it exist?
  2525. if (mg_stat(conn, path, &file)) {
  2526. // Yes it does, break the loop
  2527. *filep = file;
  2528. found = 1;
  2529. break;
  2530. }
  2531. }
  2532. // If no index file exists, restore directory path
  2533. if (!found) {
  2534. path[n] = '\0';
  2535. }
  2536. return found;
  2537. }
  2538. // Return True if we should reply 304 Not Modified.
  2539. static int is_not_modified(const struct mg_connection *conn,
  2540. const struct file *filep) {
  2541. char etag[64];
  2542. const char *ims = mg_get_header(conn, "If-Modified-Since");
  2543. const char *inm = mg_get_header(conn, "If-None-Match");
  2544. construct_etag(etag, sizeof(etag), filep);
  2545. return (inm != NULL && !mg_strcasecmp(etag, inm)) ||
  2546. (ims != NULL && filep->modification_time <= parse_date_string(ims));
  2547. }
  2548. static int forward_body_data(struct mg_connection *conn, FILE *fp,
  2549. SOCKET sock, SSL *ssl) {
  2550. const char *expect, *body;
  2551. char buf[MG_BUF_LEN];
  2552. int to_read, nread, buffered_len, success = 0;
  2553. expect = mg_get_header(conn, "Expect");
  2554. assert(fp != NULL);
  2555. if (conn->content_len == -1) {
  2556. send_http_error(conn, 411, "Length Required", "%s", "");
  2557. } else if (expect != NULL && mg_strcasecmp(expect, "100-continue")) {
  2558. send_http_error(conn, 417, "Expectation Failed", "%s", "");
  2559. } else {
  2560. if (expect != NULL) {
  2561. (void) mg_printf(conn, "%s", "HTTP/1.1 100 Continue\r\n\r\n");
  2562. }
  2563. body = conn->buf + conn->request_len + conn->consumed_content;
  2564. buffered_len = &conn->buf[conn->data_len] - body;
  2565. assert(buffered_len >= 0);
  2566. assert(conn->consumed_content == 0);
  2567. if (buffered_len > 0) {
  2568. if ((int64_t) buffered_len > conn->content_len) {
  2569. buffered_len = (int) conn->content_len;
  2570. }
  2571. push(fp, sock, ssl, body, (int64_t) buffered_len);
  2572. conn->consumed_content += buffered_len;
  2573. }
  2574. nread = 0;
  2575. while (conn->consumed_content < conn->content_len) {
  2576. to_read = sizeof(buf);
  2577. if ((int64_t) to_read > conn->content_len - conn->consumed_content) {
  2578. to_read = (int) (conn->content_len - conn->consumed_content);
  2579. }
  2580. nread = pull(NULL, conn, buf, to_read);
  2581. if (nread <= 0 || push(fp, sock, ssl, buf, nread) != nread) {
  2582. break;
  2583. }
  2584. conn->consumed_content += nread;
  2585. }
  2586. if (conn->consumed_content == conn->content_len) {
  2587. success = nread >= 0;
  2588. }
  2589. // Each error code path in this function must send an error
  2590. if (!success) {
  2591. send_http_error(conn, 577, http_500_error, "%s", "");
  2592. }
  2593. }
  2594. return success;
  2595. }
  2596. #if !defined(NO_CGI)
  2597. // This structure helps to create an environment for the spawned CGI program.
  2598. // Environment is an array of "VARIABLE=VALUE\0" ASCIIZ strings,
  2599. // last element must be NULL.
  2600. // However, on Windows there is a requirement that all these VARIABLE=VALUE\0
  2601. // strings must reside in a contiguous buffer. The end of the buffer is
  2602. // marked by two '\0' characters.
  2603. // We satisfy both worlds: we create an envp array (which is vars), all
  2604. // entries are actually pointers inside buf.
  2605. struct cgi_env_block {
  2606. struct mg_connection *conn;
  2607. char buf[CGI_ENVIRONMENT_SIZE]; // Environment buffer
  2608. int len; // Space taken
  2609. char *vars[MAX_CGI_ENVIR_VARS]; // char **envp
  2610. int nvars; // Number of variables
  2611. };
  2612. static char *addenv(struct cgi_env_block *block,
  2613. PRINTF_FORMAT_STRING(const char *fmt), ...)
  2614. PRINTF_ARGS(2, 3);
  2615. // Append VARIABLE=VALUE\0 string to the buffer, and add a respective
  2616. // pointer into the vars array.
  2617. static char *addenv(struct cgi_env_block *block, const char *fmt, ...) {
  2618. int n, space;
  2619. char *added;
  2620. va_list ap;
  2621. // Calculate how much space is left in the buffer
  2622. space = sizeof(block->buf) - block->len - 2;
  2623. assert(space >= 0);
  2624. // Make a pointer to the free space int the buffer
  2625. added = block->buf + block->len;
  2626. // Copy VARIABLE=VALUE\0 string into the free space
  2627. va_start(ap, fmt);
  2628. n = mg_vsnprintf(block->conn, added, (size_t) space, fmt, ap);
  2629. va_end(ap);
  2630. // Make sure we do not overflow buffer and the envp array
  2631. if (n > 0 && n + 1 < space &&
  2632. block->nvars < (int) ARRAY_SIZE(block->vars) - 2) {
  2633. // Append a pointer to the added string into the envp array
  2634. block->vars[block->nvars++] = added;
  2635. // Bump up used length counter. Include \0 terminator
  2636. block->len += n + 1;
  2637. } else {
  2638. cry(block->conn, "%s: CGI env buffer truncated for [%s]", __func__, fmt);
  2639. }
  2640. return added;
  2641. }
  2642. static void prepare_cgi_environment(struct mg_connection *conn,
  2643. const char *prog,
  2644. struct cgi_env_block *blk) {
  2645. const char *s, *slash;
  2646. struct vec var_vec;
  2647. char *p, src_addr[IP_ADDR_STR_LEN];
  2648. int i;
  2649. blk->len = blk->nvars = 0;
  2650. blk->conn = conn;
  2651. sockaddr_to_string(src_addr, sizeof(src_addr), &conn->client.rsa);
  2652. addenv(blk, "SERVER_NAME=%s", conn->ctx->config[AUTHENTICATION_DOMAIN]);
  2653. addenv(blk, "SERVER_ROOT=%s", conn->ctx->config[DOCUMENT_ROOT]);
  2654. addenv(blk, "DOCUMENT_ROOT=%s", conn->ctx->config[DOCUMENT_ROOT]);
  2655. addenv(blk, "SERVER_SOFTWARE=%s/%s", "Civetweb", mg_version());
  2656. // Prepare the environment block
  2657. addenv(blk, "%s", "GATEWAY_INTERFACE=CGI/1.1");
  2658. addenv(blk, "%s", "SERVER_PROTOCOL=HTTP/1.1");
  2659. addenv(blk, "%s", "REDIRECT_STATUS=200"); // For PHP
  2660. // TODO(lsm): fix this for IPv6 case
  2661. addenv(blk, "SERVER_PORT=%d", ntohs(conn->client.lsa.sin.sin_port));
  2662. addenv(blk, "REQUEST_METHOD=%s", conn->request_info.request_method);
  2663. addenv(blk, "REMOTE_ADDR=%s", src_addr);
  2664. addenv(blk, "REMOTE_PORT=%d", conn->request_info.remote_port);
  2665. addenv(blk, "REQUEST_URI=%s", conn->request_info.uri);
  2666. // SCRIPT_NAME
  2667. assert(conn->request_info.uri[0] == '/');
  2668. slash = strrchr(conn->request_info.uri, '/');
  2669. if ((s = strrchr(prog, '/')) == NULL)
  2670. s = prog;
  2671. addenv(blk, "SCRIPT_NAME=%.*s%s", (int) (slash - conn->request_info.uri),
  2672. conn->request_info.uri, s);
  2673. addenv(blk, "SCRIPT_FILENAME=%s", prog);
  2674. addenv(blk, "PATH_TRANSLATED=%s", prog);
  2675. addenv(blk, "HTTPS=%s", conn->ssl == NULL ? "off" : "on");
  2676. if ((s = mg_get_header(conn, "Content-Type")) != NULL)
  2677. addenv(blk, "CONTENT_TYPE=%s", s);
  2678. if (conn->request_info.query_string != NULL)
  2679. addenv(blk, "QUERY_STRING=%s", conn->request_info.query_string);
  2680. if ((s = mg_get_header(conn, "Content-Length")) != NULL)
  2681. addenv(blk, "CONTENT_LENGTH=%s", s);
  2682. if ((s = getenv("PATH")) != NULL)
  2683. addenv(blk, "PATH=%s", s);
  2684. if (conn->path_info != NULL) {
  2685. addenv(blk, "PATH_INFO=%s", conn->path_info);
  2686. }
  2687. #if defined(_WIN32)
  2688. if ((s = getenv("COMSPEC")) != NULL) {
  2689. addenv(blk, "COMSPEC=%s", s);
  2690. }
  2691. if ((s = getenv("SYSTEMROOT")) != NULL) {
  2692. addenv(blk, "SYSTEMROOT=%s", s);
  2693. }
  2694. if ((s = getenv("SystemDrive")) != NULL) {
  2695. addenv(blk, "SystemDrive=%s", s);
  2696. }
  2697. if ((s = getenv("ProgramFiles")) != NULL) {
  2698. addenv(blk, "ProgramFiles=%s", s);
  2699. }
  2700. if ((s = getenv("ProgramFiles(x86)")) != NULL) {
  2701. addenv(blk, "ProgramFiles(x86)=%s", s);
  2702. }
  2703. #else
  2704. if ((s = getenv("LD_LIBRARY_PATH")) != NULL)
  2705. addenv(blk, "LD_LIBRARY_PATH=%s", s);
  2706. #endif // _WIN32
  2707. if ((s = getenv("PERLLIB")) != NULL)
  2708. addenv(blk, "PERLLIB=%s", s);
  2709. if (conn->request_info.remote_user != NULL) {
  2710. addenv(blk, "REMOTE_USER=%s", conn->request_info.remote_user);
  2711. addenv(blk, "%s", "AUTH_TYPE=Digest");
  2712. }
  2713. // Add all headers as HTTP_* variables
  2714. for (i = 0; i < conn->request_info.num_headers; i++) {
  2715. p = addenv(blk, "HTTP_%s=%s",
  2716. conn->request_info.http_headers[i].name,
  2717. conn->request_info.http_headers[i].value);
  2718. // Convert variable name into uppercase, and change - to _
  2719. for (; *p != '=' && *p != '\0'; p++) {
  2720. if (*p == '-')
  2721. *p = '_';
  2722. *p = (char) toupper(* (unsigned char *) p);
  2723. }
  2724. }
  2725. // Add user-specified variables
  2726. s = conn->ctx->config[CGI_ENVIRONMENT];
  2727. while ((s = next_option(s, &var_vec, NULL)) != NULL) {
  2728. addenv(blk, "%.*s", (int) var_vec.len, var_vec.ptr);
  2729. }
  2730. blk->vars[blk->nvars++] = NULL;
  2731. blk->buf[blk->len++] = '\0';
  2732. assert(blk->nvars < (int) ARRAY_SIZE(blk->vars));
  2733. assert(blk->len > 0);
  2734. assert(blk->len < (int) sizeof(blk->buf));
  2735. }
  2736. static void handle_cgi_request(struct mg_connection *conn, const char *prog) {
  2737. int headers_len, data_len, i, fdin[2], fdout[2];
  2738. const char *status, *status_text;
  2739. char buf[16384], *pbuf, dir[PATH_MAX], *p;
  2740. struct mg_request_info ri;
  2741. struct cgi_env_block blk;
  2742. FILE *in = NULL, *out = NULL;
  2743. struct file fout = STRUCT_FILE_INITIALIZER;
  2744. pid_t pid = (pid_t) -1;
  2745. prepare_cgi_environment(conn, prog, &blk);
  2746. // CGI must be executed in its own directory. 'dir' must point to the
  2747. // directory containing executable program, 'p' must point to the
  2748. // executable program name relative to 'dir'.
  2749. (void) mg_snprintf(conn, dir, sizeof(dir), "%s", prog);
  2750. if ((p = strrchr(dir, '/')) != NULL) {
  2751. *p++ = '\0';
  2752. } else {
  2753. dir[0] = '.', dir[1] = '\0';
  2754. p = (char *) prog;
  2755. }
  2756. if (pipe(fdin) != 0 || pipe(fdout) != 0) {
  2757. send_http_error(conn, 500, http_500_error,
  2758. "Cannot create CGI pipe: %s", strerror(ERRNO));
  2759. goto done;
  2760. }
  2761. pid = spawn_process(conn, p, blk.buf, blk.vars, fdin[0], fdout[1], dir);
  2762. if (pid == (pid_t) -1) {
  2763. send_http_error(conn, 500, http_500_error,
  2764. "Cannot spawn CGI process [%s]: %s", prog, strerror(ERRNO));
  2765. goto done;
  2766. }
  2767. // Make sure child closes all pipe descriptors. It must dup them to 0,1
  2768. set_close_on_exec(fdin[0]);
  2769. set_close_on_exec(fdin[1]);
  2770. set_close_on_exec(fdout[0]);
  2771. set_close_on_exec(fdout[1]);
  2772. // Parent closes only one side of the pipes.
  2773. // If we don't mark them as closed, close() attempt before
  2774. // return from this function throws an exception on Windows.
  2775. // Windows does not like when closed descriptor is closed again.
  2776. (void) close(fdin[0]);
  2777. (void) close(fdout[1]);
  2778. fdin[0] = fdout[1] = -1;
  2779. if ((in = fdopen(fdin[1], "wb")) == NULL ||
  2780. (out = fdopen(fdout[0], "rb")) == NULL) {
  2781. send_http_error(conn, 500, http_500_error,
  2782. "fopen: %s", strerror(ERRNO));
  2783. goto done;
  2784. }
  2785. setbuf(in, NULL);
  2786. setbuf(out, NULL);
  2787. fout.fp = out;
  2788. // Send POST data to the CGI process if needed
  2789. if (!strcmp(conn->request_info.request_method, "POST") &&
  2790. !forward_body_data(conn, in, INVALID_SOCKET, NULL)) {
  2791. goto done;
  2792. }
  2793. // Close so child gets an EOF.
  2794. fclose(in);
  2795. in = NULL;
  2796. fdin[1] = -1;
  2797. // Now read CGI reply into a buffer. We need to set correct
  2798. // status code, thus we need to see all HTTP headers first.
  2799. // Do not send anything back to client, until we buffer in all
  2800. // HTTP headers.
  2801. data_len = 0;
  2802. headers_len = read_request(out, conn, buf, sizeof(buf), &data_len);
  2803. if (headers_len <= 0) {
  2804. send_http_error(conn, 500, http_500_error,
  2805. "CGI program sent malformed or too big (>%u bytes) "
  2806. "HTTP headers: [%.*s]",
  2807. (unsigned) sizeof(buf), data_len, buf);
  2808. goto done;
  2809. }
  2810. pbuf = buf;
  2811. buf[headers_len - 1] = '\0';
  2812. parse_http_headers(&pbuf, &ri);
  2813. // Make up and send the status line
  2814. status_text = "OK";
  2815. if ((status = get_header(&ri, "Status")) != NULL) {
  2816. conn->status_code = atoi(status);
  2817. status_text = status;
  2818. while (isdigit(* (unsigned char *) status_text) || *status_text == ' ') {
  2819. status_text++;
  2820. }
  2821. } else if (get_header(&ri, "Location") != NULL) {
  2822. conn->status_code = 302;
  2823. } else {
  2824. conn->status_code = 200;
  2825. }
  2826. if (get_header(&ri, "Connection") != NULL &&
  2827. !mg_strcasecmp(get_header(&ri, "Connection"), "keep-alive")) {
  2828. conn->must_close = 1;
  2829. }
  2830. (void) mg_printf(conn, "HTTP/1.1 %d %s\r\n", conn->status_code,
  2831. status_text);
  2832. // Send headers
  2833. for (i = 0; i < ri.num_headers; i++) {
  2834. mg_printf(conn, "%s: %s\r\n",
  2835. ri.http_headers[i].name, ri.http_headers[i].value);
  2836. }
  2837. mg_write(conn, "\r\n", 2);
  2838. // Send chunk of data that may have been read after the headers
  2839. conn->num_bytes_sent += mg_write(conn, buf + headers_len,
  2840. (size_t)(data_len - headers_len));
  2841. // Read the rest of CGI output and send to the client
  2842. send_file_data(conn, &fout, 0, INT64_MAX);
  2843. done:
  2844. if (pid != (pid_t) -1) {
  2845. kill(pid, SIGKILL);
  2846. }
  2847. if (fdin[0] != -1) {
  2848. close(fdin[0]);
  2849. }
  2850. if (fdout[1] != -1) {
  2851. close(fdout[1]);
  2852. }
  2853. if (in != NULL) {
  2854. fclose(in);
  2855. } else if (fdin[1] != -1) {
  2856. close(fdin[1]);
  2857. }
  2858. if (out != NULL) {
  2859. fclose(out);
  2860. } else if (fdout[0] != -1) {
  2861. close(fdout[0]);
  2862. }
  2863. }
  2864. #endif // !NO_CGI
  2865. // For a given PUT path, create all intermediate subdirectories
  2866. // for given path. Return 0 if the path itself is a directory,
  2867. // or -1 on error, 1 if OK.
  2868. static int put_dir(struct mg_connection *conn, const char *path) {
  2869. char buf[PATH_MAX];
  2870. const char *s, *p;
  2871. struct file file = STRUCT_FILE_INITIALIZER;
  2872. int len, res = 1;
  2873. for (s = p = path + 2; (p = strchr(s, '/')) != NULL; s = ++p) {
  2874. len = p - path;
  2875. if (len >= (int) sizeof(buf)) {
  2876. res = -1;
  2877. break;
  2878. }
  2879. memcpy(buf, path, len);
  2880. buf[len] = '\0';
  2881. // Try to create intermediate directory
  2882. DEBUG_TRACE(("mkdir(%s)", buf));
  2883. if (!mg_stat(conn, buf, &file) && mg_mkdir(buf, 0755) != 0) {
  2884. res = -1;
  2885. break;
  2886. }
  2887. // Is path itself a directory?
  2888. if (p[1] == '\0') {
  2889. res = 0;
  2890. }
  2891. }
  2892. return res;
  2893. }
  2894. static void mkcol(struct mg_connection *conn, const char *path) {
  2895. int rc, body_len;
  2896. struct de de;
  2897. memset(&de.file, 0, sizeof(de.file));
  2898. mg_stat(conn, path, &de.file);
  2899. if(de.file.modification_time) {
  2900. send_http_error(conn, 405, "Method Not Allowed",
  2901. "mkcol(%s): %s", path, strerror(ERRNO));
  2902. return;
  2903. }
  2904. body_len = conn->data_len - conn->request_len;
  2905. if(body_len > 0) {
  2906. send_http_error(conn, 415, "Unsupported media type",
  2907. "mkcol(%s): %s", path, strerror(ERRNO));
  2908. return;
  2909. }
  2910. rc = mg_mkdir(path, 0755);
  2911. if (rc == 0) {
  2912. conn->status_code = 201;
  2913. mg_printf(conn, "HTTP/1.1 %d Created\r\n\r\n", conn->status_code);
  2914. } else if (rc == -1) {
  2915. if(errno == EEXIST)
  2916. send_http_error(conn, 405, "Method Not Allowed",
  2917. "mkcol(%s): %s", path, strerror(ERRNO));
  2918. else if(errno == EACCES)
  2919. send_http_error(conn, 403, "Forbidden",
  2920. "mkcol(%s): %s", path, strerror(ERRNO));
  2921. else if(errno == ENOENT)
  2922. send_http_error(conn, 409, "Conflict",
  2923. "mkcol(%s): %s", path, strerror(ERRNO));
  2924. else
  2925. send_http_error(conn, 500, http_500_error,
  2926. "fopen(%s): %s", path, strerror(ERRNO));
  2927. }
  2928. }
  2929. static void put_file(struct mg_connection *conn, const char *path) {
  2930. struct file file = STRUCT_FILE_INITIALIZER;
  2931. const char *range;
  2932. int64_t r1, r2;
  2933. int rc;
  2934. conn->status_code = mg_stat(conn, path, &file) ? 200 : 201;
  2935. if ((rc = put_dir(conn, path)) == 0) {
  2936. mg_printf(conn, "HTTP/1.1 %d OK\r\n\r\n", conn->status_code);
  2937. } else if (rc == -1) {
  2938. send_http_error(conn, 500, http_500_error,
  2939. "put_dir(%s): %s", path, strerror(ERRNO));
  2940. } else if (!mg_fopen(conn, path, "wb+", &file) || file.fp == NULL) {
  2941. mg_fclose(&file);
  2942. send_http_error(conn, 500, http_500_error,
  2943. "fopen(%s): %s", path, strerror(ERRNO));
  2944. } else {
  2945. fclose_on_exec(&file);
  2946. range = mg_get_header(conn, "Content-Range");
  2947. r1 = r2 = 0;
  2948. if (range != NULL && parse_range_header(range, &r1, &r2) > 0) {
  2949. conn->status_code = 206;
  2950. fseeko(file.fp, r1, SEEK_SET);
  2951. }
  2952. if (!forward_body_data(conn, file.fp, INVALID_SOCKET, NULL)) {
  2953. conn->status_code = 500;
  2954. }
  2955. mg_printf(conn, "HTTP/1.1 %d OK\r\nContent-Length: 0\r\n\r\n",
  2956. conn->status_code);
  2957. mg_fclose(&file);
  2958. }
  2959. }
  2960. static void send_ssi_file(struct mg_connection *, const char *,
  2961. struct file *, int);
  2962. static void do_ssi_include(struct mg_connection *conn, const char *ssi,
  2963. char *tag, int include_level) {
  2964. char file_name[MG_BUF_LEN], path[PATH_MAX], *p;
  2965. struct file file = STRUCT_FILE_INITIALIZER;
  2966. // sscanf() is safe here, since send_ssi_file() also uses buffer
  2967. // of size MG_BUF_LEN to get the tag. So strlen(tag) is always < MG_BUF_LEN.
  2968. if (sscanf(tag, " virtual=\"%[^\"]\"", file_name) == 1) {
  2969. // File name is relative to the webserver root
  2970. (void) mg_snprintf(conn, path, sizeof(path), "%s%c%s",
  2971. conn->ctx->config[DOCUMENT_ROOT], '/', file_name);
  2972. } else if (sscanf(tag, " abspath=\"%[^\"]\"", file_name) == 1) {
  2973. // File name is relative to the webserver working directory
  2974. // or it is absolute system path
  2975. (void) mg_snprintf(conn, path, sizeof(path), "%s", file_name);
  2976. } else if (sscanf(tag, " file=\"%[^\"]\"", file_name) == 1 ||
  2977. sscanf(tag, " \"%[^\"]\"", file_name) == 1) {
  2978. // File name is relative to the currect document
  2979. (void) mg_snprintf(conn, path, sizeof(path), "%s", ssi);
  2980. if ((p = strrchr(path, '/')) != NULL) {
  2981. p[1] = '\0';
  2982. }
  2983. (void) mg_snprintf(conn, path + strlen(path),
  2984. sizeof(path) - strlen(path), "%s", file_name);
  2985. } else {
  2986. cry(conn, "Bad SSI #include: [%s]", tag);
  2987. return;
  2988. }
  2989. if (!mg_fopen(conn, path, "rb", &file)) {
  2990. cry(conn, "Cannot open SSI #include: [%s]: fopen(%s): %s",
  2991. tag, path, strerror(ERRNO));
  2992. } else {
  2993. fclose_on_exec(&file);
  2994. if (match_prefix(conn->ctx->config[SSI_EXTENSIONS],
  2995. strlen(conn->ctx->config[SSI_EXTENSIONS]), path) > 0) {
  2996. send_ssi_file(conn, path, &file, include_level + 1);
  2997. } else {
  2998. send_file_data(conn, &file, 0, INT64_MAX);
  2999. }
  3000. mg_fclose(&file);
  3001. }
  3002. }
  3003. #if !defined(NO_POPEN)
  3004. static void do_ssi_exec(struct mg_connection *conn, char *tag) {
  3005. char cmd[MG_BUF_LEN];
  3006. struct file file = STRUCT_FILE_INITIALIZER;
  3007. if (sscanf(tag, " \"%[^\"]\"", cmd) != 1) {
  3008. cry(conn, "Bad SSI #exec: [%s]", tag);
  3009. } else if ((file.fp = popen(cmd, "r")) == NULL) {
  3010. cry(conn, "Cannot SSI #exec: [%s]: %s", cmd, strerror(ERRNO));
  3011. } else {
  3012. send_file_data(conn, &file, 0, INT64_MAX);
  3013. pclose(file.fp);
  3014. }
  3015. }
  3016. #endif // !NO_POPEN
  3017. static int mg_fgetc(struct file *filep, int offset) {
  3018. if (filep->membuf != NULL && offset >=0 && offset < filep->size) {
  3019. return ((unsigned char *) filep->membuf)[offset];
  3020. } else if (filep->fp != NULL) {
  3021. return fgetc(filep->fp);
  3022. } else {
  3023. return EOF;
  3024. }
  3025. }
  3026. static void send_ssi_file(struct mg_connection *conn, const char *path,
  3027. struct file *filep, int include_level) {
  3028. char buf[MG_BUF_LEN];
  3029. int ch, offset, len, in_ssi_tag;
  3030. if (include_level > 10) {
  3031. cry(conn, "SSI #include level is too deep (%s)", path);
  3032. return;
  3033. }
  3034. in_ssi_tag = len = offset = 0;
  3035. while ((ch = mg_fgetc(filep, offset)) != EOF) {
  3036. if (in_ssi_tag && ch == '>') {
  3037. in_ssi_tag = 0;
  3038. buf[len++] = (char) ch;
  3039. buf[len] = '\0';
  3040. assert(len <= (int) sizeof(buf));
  3041. if (len < 6 || memcmp(buf, "<!--#", 5) != 0) {
  3042. // Not an SSI tag, pass it
  3043. (void) mg_write(conn, buf, (size_t) len);
  3044. } else {
  3045. if (!memcmp(buf + 5, "include", 7)) {
  3046. do_ssi_include(conn, path, buf + 12, include_level);
  3047. #if !defined(NO_POPEN)
  3048. } else if (!memcmp(buf + 5, "exec", 4)) {
  3049. do_ssi_exec(conn, buf + 9);
  3050. #endif // !NO_POPEN
  3051. } else {
  3052. cry(conn, "%s: unknown SSI " "command: \"%s\"", path, buf);
  3053. }
  3054. }
  3055. len = 0;
  3056. } else if (in_ssi_tag) {
  3057. if (len == 5 && memcmp(buf, "<!--#", 5) != 0) {
  3058. // Not an SSI tag
  3059. in_ssi_tag = 0;
  3060. } else if (len == (int) sizeof(buf) - 2) {
  3061. cry(conn, "%s: SSI tag is too large", path);
  3062. len = 0;
  3063. }
  3064. buf[len++] = ch & 0xff;
  3065. } else if (ch == '<') {
  3066. in_ssi_tag = 1;
  3067. if (len > 0) {
  3068. mg_write(conn, buf, (size_t) len);
  3069. }
  3070. len = 0;
  3071. buf[len++] = ch & 0xff;
  3072. } else {
  3073. buf[len++] = ch & 0xff;
  3074. if (len == (int) sizeof(buf)) {
  3075. mg_write(conn, buf, (size_t) len);
  3076. len = 0;
  3077. }
  3078. }
  3079. }
  3080. // Send the rest of buffered data
  3081. if (len > 0) {
  3082. mg_write(conn, buf, (size_t) len);
  3083. }
  3084. }
  3085. static void handle_ssi_file_request(struct mg_connection *conn,
  3086. const char *path) {
  3087. struct file file = STRUCT_FILE_INITIALIZER;
  3088. if (!mg_fopen(conn, path, "rb", &file)) {
  3089. send_http_error(conn, 500, http_500_error, "fopen(%s): %s", path,
  3090. strerror(ERRNO));
  3091. } else {
  3092. conn->must_close = 1;
  3093. fclose_on_exec(&file);
  3094. mg_printf(conn, "HTTP/1.1 200 OK\r\n"
  3095. "Content-Type: text/html\r\nConnection: %s\r\n\r\n",
  3096. suggest_connection_header(conn));
  3097. send_ssi_file(conn, path, &file, 0);
  3098. mg_fclose(&file);
  3099. }
  3100. }
  3101. static void send_options(struct mg_connection *conn) {
  3102. conn->status_code = 200;
  3103. mg_printf(conn, "%s", "HTTP/1.1 200 OK\r\n"
  3104. "Allow: GET, POST, HEAD, CONNECT, PUT, DELETE, OPTIONS, PROPFIND, MKCOL\r\n"
  3105. "DAV: 1\r\n\r\n");
  3106. }
  3107. // Writes PROPFIND properties for a collection element
  3108. static void print_props(struct mg_connection *conn, const char* uri,
  3109. struct file *filep) {
  3110. char mtime[64];
  3111. gmt_time_string(mtime, sizeof(mtime), &filep->modification_time);
  3112. conn->num_bytes_sent += mg_printf(conn,
  3113. "<d:response>"
  3114. "<d:href>%s</d:href>"
  3115. "<d:propstat>"
  3116. "<d:prop>"
  3117. "<d:resourcetype>%s</d:resourcetype>"
  3118. "<d:getcontentlength>%" INT64_FMT "</d:getcontentlength>"
  3119. "<d:getlastmodified>%s</d:getlastmodified>"
  3120. "</d:prop>"
  3121. "<d:status>HTTP/1.1 200 OK</d:status>"
  3122. "</d:propstat>"
  3123. "</d:response>\n",
  3124. uri,
  3125. filep->is_directory ? "<d:collection/>" : "",
  3126. filep->size,
  3127. mtime);
  3128. }
  3129. static void print_dav_dir_entry(struct de *de, void *data) {
  3130. char href[PATH_MAX];
  3131. char href_encoded[PATH_MAX];
  3132. struct mg_connection *conn = (struct mg_connection *) data;
  3133. mg_snprintf(conn, href, sizeof(href), "%s%s",
  3134. conn->request_info.uri, de->file_name);
  3135. mg_url_encode(href, href_encoded, PATH_MAX-1);
  3136. print_props(conn, href_encoded, &de->file);
  3137. }
  3138. static void handle_propfind(struct mg_connection *conn, const char *path,
  3139. struct file *filep) {
  3140. const char *depth = mg_get_header(conn, "Depth");
  3141. conn->must_close = 1;
  3142. conn->status_code = 207;
  3143. mg_printf(conn, "HTTP/1.1 207 Multi-Status\r\n"
  3144. "Connection: close\r\n"
  3145. "Content-Type: text/xml; charset=utf-8\r\n\r\n");
  3146. conn->num_bytes_sent += mg_printf(conn,
  3147. "<?xml version=\"1.0\" encoding=\"utf-8\"?>"
  3148. "<d:multistatus xmlns:d='DAV:'>\n");
  3149. // Print properties for the requested resource itself
  3150. print_props(conn, conn->request_info.uri, filep);
  3151. // If it is a directory, print directory entries too if Depth is not 0
  3152. if (filep->is_directory &&
  3153. !mg_strcasecmp(conn->ctx->config[ENABLE_DIRECTORY_LISTING], "yes") &&
  3154. (depth == NULL || strcmp(depth, "0") != 0)) {
  3155. scan_directory(conn, path, conn, &print_dav_dir_entry);
  3156. }
  3157. conn->num_bytes_sent += mg_printf(conn, "%s\n", "</d:multistatus>");
  3158. }
  3159. void mg_lock(struct mg_connection* conn) {
  3160. (void) pthread_mutex_lock(&conn->mutex);
  3161. }
  3162. void mg_unlock(struct mg_connection* conn) {
  3163. (void) pthread_mutex_unlock(&conn->mutex);
  3164. }
  3165. #if defined(USE_WEBSOCKET)
  3166. // START OF SHA-1 code
  3167. // Copyright(c) By Steve Reid <steve@edmweb.com>
  3168. #define SHA1HANDSOFF
  3169. #if defined(__sun)
  3170. #include "solarisfixes.h"
  3171. #endif
  3172. static int is_big_endian(void) {
  3173. static const int n = 1;
  3174. return ((char *) &n)[0] == 0;
  3175. }
  3176. union char64long16 { unsigned char c[64]; uint32_t l[16]; };
  3177. #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
  3178. static uint32_t blk0(union char64long16 *block, int i) {
  3179. // Forrest: SHA expect BIG_ENDIAN, swap if LITTLE_ENDIAN
  3180. if (!is_big_endian()) {
  3181. block->l[i] = (rol(block->l[i], 24) & 0xFF00FF00) |
  3182. (rol(block->l[i], 8) & 0x00FF00FF);
  3183. }
  3184. return block->l[i];
  3185. }
  3186. #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \
  3187. ^block->l[(i+2)&15]^block->l[i&15],1))
  3188. #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(block, i)+0x5A827999+rol(v,5);w=rol(w,30);
  3189. #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30);
  3190. #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30);
  3191. #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30);
  3192. #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
  3193. typedef struct {
  3194. uint32_t state[5];
  3195. uint32_t count[2];
  3196. unsigned char buffer[64];
  3197. } SHA1_CTX;
  3198. static void SHA1Transform(uint32_t state[5], const unsigned char buffer[64]) {
  3199. uint32_t a, b, c, d, e;
  3200. union char64long16 block[1];
  3201. memcpy(block, buffer, 64);
  3202. a = state[0];
  3203. b = state[1];
  3204. c = state[2];
  3205. d = state[3];
  3206. e = state[4];
  3207. R0(a,b,c,d,e, 0); R0(e,a,b,c,d, 1); R0(d,e,a,b,c, 2); R0(c,d,e,a,b, 3);
  3208. R0(b,c,d,e,a, 4); R0(a,b,c,d,e, 5); R0(e,a,b,c,d, 6); R0(d,e,a,b,c, 7);
  3209. R0(c,d,e,a,b, 8); R0(b,c,d,e,a, 9); R0(a,b,c,d,e,10); R0(e,a,b,c,d,11);
  3210. R0(d,e,a,b,c,12); R0(c,d,e,a,b,13); R0(b,c,d,e,a,14); R0(a,b,c,d,e,15);
  3211. R1(e,a,b,c,d,16); R1(d,e,a,b,c,17); R1(c,d,e,a,b,18); R1(b,c,d,e,a,19);
  3212. R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23);
  3213. R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(e,a,b,c,d,26); R2(d,e,a,b,c,27);
  3214. R2(c,d,e,a,b,28); R2(b,c,d,e,a,29); R2(a,b,c,d,e,30); R2(e,a,b,c,d,31);
  3215. R2(d,e,a,b,c,32); R2(c,d,e,a,b,33); R2(b,c,d,e,a,34); R2(a,b,c,d,e,35);
  3216. R2(e,a,b,c,d,36); R2(d,e,a,b,c,37); R2(c,d,e,a,b,38); R2(b,c,d,e,a,39);
  3217. R3(a,b,c,d,e,40); R3(e,a,b,c,d,41); R3(d,e,a,b,c,42); R3(c,d,e,a,b,43);
  3218. R3(b,c,d,e,a,44); R3(a,b,c,d,e,45); R3(e,a,b,c,d,46); R3(d,e,a,b,c,47);
  3219. R3(c,d,e,a,b,48); R3(b,c,d,e,a,49); R3(a,b,c,d,e,50); R3(e,a,b,c,d,51);
  3220. R3(d,e,a,b,c,52); R3(c,d,e,a,b,53); R3(b,c,d,e,a,54); R3(a,b,c,d,e,55);
  3221. R3(e,a,b,c,d,56); R3(d,e,a,b,c,57); R3(c,d,e,a,b,58); R3(b,c,d,e,a,59);
  3222. R4(a,b,c,d,e,60); R4(e,a,b,c,d,61); R4(d,e,a,b,c,62); R4(c,d,e,a,b,63);
  3223. R4(b,c,d,e,a,64); R4(a,b,c,d,e,65); R4(e,a,b,c,d,66); R4(d,e,a,b,c,67);
  3224. R4(c,d,e,a,b,68); R4(b,c,d,e,a,69); R4(a,b,c,d,e,70); R4(e,a,b,c,d,71);
  3225. R4(d,e,a,b,c,72); R4(c,d,e,a,b,73); R4(b,c,d,e,a,74); R4(a,b,c,d,e,75);
  3226. R4(e,a,b,c,d,76); R4(d,e,a,b,c,77); R4(c,d,e,a,b,78); R4(b,c,d,e,a,79);
  3227. state[0] += a;
  3228. state[1] += b;
  3229. state[2] += c;
  3230. state[3] += d;
  3231. state[4] += e;
  3232. a = b = c = d = e = 0;
  3233. memset(block, '\0', sizeof(block));
  3234. }
  3235. static void SHA1Init(SHA1_CTX* context) {
  3236. context->state[0] = 0x67452301;
  3237. context->state[1] = 0xEFCDAB89;
  3238. context->state[2] = 0x98BADCFE;
  3239. context->state[3] = 0x10325476;
  3240. context->state[4] = 0xC3D2E1F0;
  3241. context->count[0] = context->count[1] = 0;
  3242. }
  3243. static void SHA1Update(SHA1_CTX* context, const unsigned char* data,
  3244. uint32_t len) {
  3245. uint32_t i, j;
  3246. j = context->count[0];
  3247. if ((context->count[0] += len << 3) < j)
  3248. context->count[1]++;
  3249. context->count[1] += (len>>29);
  3250. j = (j >> 3) & 63;
  3251. if ((j + len) > 63) {
  3252. memcpy(&context->buffer[j], data, (i = 64-j));
  3253. SHA1Transform(context->state, context->buffer);
  3254. for ( ; i + 63 < len; i += 64) {
  3255. SHA1Transform(context->state, &data[i]);
  3256. }
  3257. j = 0;
  3258. }
  3259. else i = 0;
  3260. memcpy(&context->buffer[j], &data[i], len - i);
  3261. }
  3262. static void SHA1Final(unsigned char digest[20], SHA1_CTX* context) {
  3263. unsigned i;
  3264. unsigned char finalcount[8], c;
  3265. for (i = 0; i < 8; i++) {
  3266. finalcount[i] = (unsigned char)((context->count[(i >= 4 ? 0 : 1)]
  3267. >> ((3-(i & 3)) * 8) ) & 255);
  3268. }
  3269. c = 0200;
  3270. SHA1Update(context, &c, 1);
  3271. while ((context->count[0] & 504) != 448) {
  3272. c = 0000;
  3273. SHA1Update(context, &c, 1);
  3274. }
  3275. SHA1Update(context, finalcount, 8);
  3276. for (i = 0; i < 20; i++) {
  3277. digest[i] = (unsigned char)
  3278. ((context->state[i>>2] >> ((3-(i & 3)) * 8) ) & 255);
  3279. }
  3280. memset(context, '\0', sizeof(*context));
  3281. memset(&finalcount, '\0', sizeof(finalcount));
  3282. }
  3283. // END OF SHA1 CODE
  3284. static void base64_encode(const unsigned char *src, int src_len, char *dst) {
  3285. static const char *b64 =
  3286. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  3287. int i, j, a, b, c;
  3288. for (i = j = 0; i < src_len; i += 3) {
  3289. a = src[i];
  3290. b = i + 1 >= src_len ? 0 : src[i + 1];
  3291. c = i + 2 >= src_len ? 0 : src[i + 2];
  3292. dst[j++] = b64[a >> 2];
  3293. dst[j++] = b64[((a & 3) << 4) | (b >> 4)];
  3294. if (i + 1 < src_len) {
  3295. dst[j++] = b64[(b & 15) << 2 | (c >> 6)];
  3296. }
  3297. if (i + 2 < src_len) {
  3298. dst[j++] = b64[c & 63];
  3299. }
  3300. }
  3301. while (j % 4 != 0) {
  3302. dst[j++] = '=';
  3303. }
  3304. dst[j++] = '\0';
  3305. }
  3306. static void send_websocket_handshake(struct mg_connection *conn) {
  3307. static const char *magic = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
  3308. char buf[100], sha[20], b64_sha[sizeof(sha) * 2];
  3309. SHA1_CTX sha_ctx;
  3310. mg_snprintf(conn, buf, sizeof(buf), "%s%s",
  3311. mg_get_header(conn, "Sec-WebSocket-Key"), magic);
  3312. SHA1Init(&sha_ctx);
  3313. SHA1Update(&sha_ctx, (unsigned char *) buf, strlen(buf));
  3314. SHA1Final((unsigned char *) sha, &sha_ctx);
  3315. base64_encode((unsigned char *) sha, sizeof(sha), b64_sha);
  3316. mg_printf(conn, "%s%s%s",
  3317. "HTTP/1.1 101 Switching Protocols\r\n"
  3318. "Upgrade: websocket\r\n"
  3319. "Connection: Upgrade\r\n"
  3320. "Sec-WebSocket-Accept: ", b64_sha, "\r\n\r\n");
  3321. }
  3322. static void read_websocket(struct mg_connection *conn) {
  3323. // Pointer to the beginning of the portion of the incoming websocket message queue.
  3324. // The original websocket upgrade request is never removed, so the queue begins after it.
  3325. unsigned char *buf = (unsigned char *) conn->buf + conn->request_len;
  3326. int n;
  3327. // body_len is the length of the entire queue in bytes
  3328. // len is the length of the current message
  3329. // data_len is the length of the current message's data payload
  3330. // header_len is the length of the current message's header
  3331. size_t i, len, mask_len, data_len, header_len, body_len;
  3332. // "The masking key is a 32-bit value chosen at random by the client."
  3333. // http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-17#section-5
  3334. unsigned char mask[4];
  3335. // data points to the place where the message is stored when passed to the websocket_data
  3336. // callback. This is either mem on the stack, or a dynamically allocated buffer if it is
  3337. // too large.
  3338. char mem[4 * 1024], *data;
  3339. // Loop continuously, reading messages from the socket, invoking the callback,
  3340. // and waiting repeatedly until an error occurs.
  3341. assert(conn->content_len == 0);
  3342. for (;;) {
  3343. header_len = 0;
  3344. if ((body_len = conn->data_len - conn->request_len) >= 2) {
  3345. len = buf[1] & 127;
  3346. mask_len = buf[1] & 128 ? 4 : 0;
  3347. if (len < 126 && body_len >= mask_len) {
  3348. data_len = len;
  3349. header_len = 2 + mask_len;
  3350. } else if (len == 126 && body_len >= 4 + mask_len) {
  3351. header_len = 4 + mask_len;
  3352. data_len = ((((int) buf[2]) << 8) + buf[3]);
  3353. } else if (body_len >= 10 + mask_len) {
  3354. header_len = 10 + mask_len;
  3355. data_len = (((uint64_t) ntohl(* (uint32_t *) &buf[2])) << 32) +
  3356. ntohl(* (uint32_t *) &buf[6]);
  3357. }
  3358. }
  3359. if (header_len > 0) {
  3360. // Allocate space to hold websocket payload
  3361. data = mem;
  3362. if (data_len > sizeof(mem) && (data = malloc(data_len)) == NULL) {
  3363. // Allocation failed, exit the loop and then close the connection
  3364. // TODO: notify user about the failure
  3365. break;
  3366. }
  3367. // Copy the mask before we shift the queue and destroy it
  3368. if (mask_len > 0) {
  3369. *(uint32_t*)mask = *(uint32_t*)(buf + header_len - mask_len);
  3370. } else {
  3371. *(uint32_t*)mask = 0;
  3372. }
  3373. // Read frame payload from the first message in the queue into data and
  3374. // advance the queue by moving the memory in place.
  3375. assert(body_len >= header_len);
  3376. if (data_len + header_len > body_len) {
  3377. // Overflow case
  3378. len = body_len - header_len;
  3379. memcpy(data, buf + header_len, len);
  3380. // TODO: handle pull error
  3381. pull(NULL, conn, data + len, data_len - len);
  3382. conn->data_len = 0;
  3383. } else {
  3384. // Length of the message being read at the front of the queue
  3385. len = data_len + header_len;
  3386. // Copy the data payload into the data pointer for the callback
  3387. memcpy(data, buf + header_len, data_len);
  3388. // Move the queue forward len bytes
  3389. memmove(buf, buf + len, body_len - len);
  3390. // Mark the queue as advanced
  3391. conn->data_len -= len;
  3392. }
  3393. // Apply mask if necessary
  3394. if (mask_len > 0) {
  3395. for (i = 0; i < data_len; ++i) {
  3396. data[i] ^= mask[i & 3];
  3397. }
  3398. }
  3399. // Exit the loop if callback signalled to exit,
  3400. // or "connection close" opcode received.
  3401. if ((conn->ctx->callbacks.websocket_data != NULL &&
  3402. !conn->ctx->callbacks.websocket_data(conn, buf[0], data, data_len)) ||
  3403. (buf[0] & 0xf) == 8) { // Opcode == 8, connection close
  3404. break;
  3405. }
  3406. if (data != mem) {
  3407. free(data);
  3408. }
  3409. // Not breaking the loop, process next websocket frame.
  3410. } else {
  3411. // Read from the socket into the next available location in the message queue.
  3412. if ((n = pull(NULL, conn, conn->buf + conn->data_len,
  3413. conn->buf_size - conn->data_len)) <= 0) {
  3414. // Error, no bytes read
  3415. break;
  3416. }
  3417. conn->data_len += n;
  3418. }
  3419. }
  3420. }
  3421. int mg_websocket_write(struct mg_connection* conn, int opcode, const char* data, size_t dataLen) {
  3422. unsigned char header[10];
  3423. size_t headerLen = 1;
  3424. int retval = -1;
  3425. header[0] = 0x80 + (opcode & 0xF);
  3426. // Frame format: http://tools.ietf.org/html/rfc6455#section-5.2
  3427. if (dataLen < 126) {
  3428. // inline 7-bit length field
  3429. header[1] = dataLen;
  3430. headerLen = 2;
  3431. } else if (dataLen <= 0xFFFF) {
  3432. // 16-bit length field
  3433. header[1] = 126;
  3434. *(uint16_t*)(header + 2) = htons(dataLen);
  3435. headerLen = 4;
  3436. } else {
  3437. // 64-bit length field
  3438. header[1] = 127;
  3439. *(uint32_t*)(header + 2) = htonl((uint64_t)dataLen >> 32);
  3440. *(uint32_t*)(header + 6) = htonl(dataLen & 0xFFFFFFFF);
  3441. headerLen = 10;
  3442. }
  3443. // Note that POSIX/Winsock's send() is threadsafe
  3444. // http://stackoverflow.com/questions/1981372/are-parallel-calls-to-send-recv-on-the-same-socket-valid
  3445. // but mongoose's mg_printf/mg_write is not (because of the loop in push(), although that is only
  3446. // a problem if the packet is large or outgoing buffer is full).
  3447. (void) mg_lock(conn);
  3448. retval = mg_write(conn, header, headerLen);
  3449. retval = mg_write(conn, data, dataLen);
  3450. mg_unlock(conn);
  3451. return retval;
  3452. }
  3453. static void handle_websocket_request(struct mg_connection *conn) {
  3454. const char *version = mg_get_header(conn, "Sec-WebSocket-Version");
  3455. if (version == NULL || strcmp(version, "13") != 0) {
  3456. send_http_error(conn, 426, "Upgrade Required", "%s", "Upgrade Required");
  3457. } else if (conn->ctx->callbacks.websocket_connect != NULL &&
  3458. conn->ctx->callbacks.websocket_connect(conn) != 0) {
  3459. // Callback has returned non-zero, do not proceed with handshake
  3460. } else {
  3461. send_websocket_handshake(conn);
  3462. if (conn->ctx->callbacks.websocket_ready != NULL) {
  3463. conn->ctx->callbacks.websocket_ready(conn);
  3464. }
  3465. read_websocket(conn);
  3466. }
  3467. }
  3468. static int is_websocket_request(const struct mg_connection *conn) {
  3469. const char *host, *upgrade, *connection, *version, *key;
  3470. host = mg_get_header(conn, "Host");
  3471. upgrade = mg_get_header(conn, "Upgrade");
  3472. connection = mg_get_header(conn, "Connection");
  3473. key = mg_get_header(conn, "Sec-WebSocket-Key");
  3474. version = mg_get_header(conn, "Sec-WebSocket-Version");
  3475. return host != NULL && upgrade != NULL && connection != NULL &&
  3476. key != NULL && version != NULL &&
  3477. mg_strcasestr(upgrade, "websocket") != NULL &&
  3478. mg_strcasestr(connection, "Upgrade") != NULL;
  3479. }
  3480. #endif // !USE_WEBSOCKET
  3481. static int isbyte(int n) {
  3482. return n >= 0 && n <= 255;
  3483. }
  3484. static int parse_net(const char *spec, uint32_t *net, uint32_t *mask) {
  3485. int n, a, b, c, d, slash = 32, len = 0;
  3486. if ((sscanf(spec, "%d.%d.%d.%d/%d%n", &a, &b, &c, &d, &slash, &n) == 5 ||
  3487. sscanf(spec, "%d.%d.%d.%d%n", &a, &b, &c, &d, &n) == 4) &&
  3488. isbyte(a) && isbyte(b) && isbyte(c) && isbyte(d) &&
  3489. slash >= 0 && slash < 33) {
  3490. len = n;
  3491. *net = ((uint32_t)a << 24) | ((uint32_t)b << 16) | ((uint32_t)c << 8) | d;
  3492. *mask = slash ? 0xffffffffU << (32 - slash) : 0;
  3493. }
  3494. return len;
  3495. }
  3496. static int set_throttle(const char *spec, uint32_t remote_ip, const char *uri) {
  3497. int throttle = 0;
  3498. struct vec vec, val;
  3499. uint32_t net, mask;
  3500. char mult;
  3501. double v;
  3502. while ((spec = next_option(spec, &vec, &val)) != NULL) {
  3503. mult = ',';
  3504. if (sscanf(val.ptr, "%lf%c", &v, &mult) < 1 || v < 0 ||
  3505. (lowercase(&mult) != 'k' && lowercase(&mult) != 'm' && mult != ',')) {
  3506. continue;
  3507. }
  3508. v *= lowercase(&mult) == 'k' ? 1024 : lowercase(&mult) == 'm' ? 1048576 : 1;
  3509. if (vec.len == 1 && vec.ptr[0] == '*') {
  3510. throttle = (int) v;
  3511. } else if (parse_net(vec.ptr, &net, &mask) > 0) {
  3512. if ((remote_ip & mask) == net) {
  3513. throttle = (int) v;
  3514. }
  3515. } else if (match_prefix(vec.ptr, vec.len, uri) > 0) {
  3516. throttle = (int) v;
  3517. }
  3518. }
  3519. return throttle;
  3520. }
  3521. static uint32_t get_remote_ip(const struct mg_connection *conn) {
  3522. return ntohl(* (uint32_t *) &conn->client.rsa.sin.sin_addr);
  3523. }
  3524. #ifdef USE_LUA
  3525. #include "mod_lua.c"
  3526. #endif // USE_LUA
  3527. int mg_upload(struct mg_connection *conn, const char *destination_dir) {
  3528. const char *content_type_header, *boundary_start;
  3529. char buf[MG_BUF_LEN], path[PATH_MAX], fname[1024], boundary[100], *s;
  3530. FILE *fp;
  3531. int bl, n, i, j, headers_len, boundary_len, eof,
  3532. len = 0, num_uploaded_files = 0;
  3533. // Request looks like this:
  3534. //
  3535. // POST /upload HTTP/1.1
  3536. // Host: 127.0.0.1:8080
  3537. // Content-Length: 244894
  3538. // Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryRVr
  3539. //
  3540. // ------WebKitFormBoundaryRVr
  3541. // Content-Disposition: form-data; name="file"; filename="accum.png"
  3542. // Content-Type: image/png
  3543. //
  3544. // <89>PNG
  3545. // <PNG DATA>
  3546. // ------WebKitFormBoundaryRVr
  3547. // Extract boundary string from the Content-Type header
  3548. if ((content_type_header = mg_get_header(conn, "Content-Type")) == NULL ||
  3549. (boundary_start = mg_strcasestr(content_type_header,
  3550. "boundary=")) == NULL ||
  3551. (sscanf(boundary_start, "boundary=\"%99[^\"]\"", boundary) == 0 &&
  3552. sscanf(boundary_start, "boundary=%99s", boundary) == 0) ||
  3553. boundary[0] == '\0') {
  3554. return num_uploaded_files;
  3555. }
  3556. boundary_len = strlen(boundary);
  3557. bl = boundary_len + 4; // \r\n--<boundary>
  3558. for (;;) {
  3559. // Pull in headers
  3560. assert(len >= 0 && len <= (int) sizeof(buf));
  3561. while ((n = mg_read(conn, buf + len, sizeof(buf) - len)) > 0) {
  3562. len += n;
  3563. }
  3564. if ((headers_len = get_request_len(buf, len)) <= 0) {
  3565. break;
  3566. }
  3567. // Fetch file name.
  3568. fname[0] = '\0';
  3569. for (i = j = 0; i < headers_len; i++) {
  3570. if (buf[i] == '\r' && buf[i + 1] == '\n') {
  3571. buf[i] = buf[i + 1] = '\0';
  3572. // TODO(lsm): don't expect filename to be the 3rd field,
  3573. // parse the header properly instead.
  3574. sscanf(&buf[j], "Content-Disposition: %*s %*s filename=\"%1023[^\"]",
  3575. fname);
  3576. j = i + 2;
  3577. }
  3578. }
  3579. // Give up if the headers are not what we expect
  3580. if (fname[0] == '\0') {
  3581. break;
  3582. }
  3583. // Move data to the beginning of the buffer
  3584. assert(len >= headers_len);
  3585. memmove(buf, &buf[headers_len], len - headers_len);
  3586. len -= headers_len;
  3587. // We open the file with exclusive lock held. This guarantee us
  3588. // there is no other thread can save into the same file simultaneously.
  3589. fp = NULL;
  3590. // Construct destination file name. Do not allow paths to have slashes.
  3591. if ((s = strrchr(fname, '/')) == NULL &&
  3592. (s = strrchr(fname, '\\')) == NULL) {
  3593. s = fname;
  3594. }
  3595. // Open file in binary mode. TODO: set an exclusive lock.
  3596. snprintf(path, sizeof(path), "%s/%s", destination_dir, s);
  3597. if ((fp = fopen(path, "wb")) == NULL) {
  3598. break;
  3599. }
  3600. // Read POST data, write into file until boundary is found.
  3601. eof = n = 0;
  3602. do {
  3603. len += n;
  3604. for (i = 0; i < len - bl; i++) {
  3605. if (!memcmp(&buf[i], "\r\n--", 4) &&
  3606. !memcmp(&buf[i + 4], boundary, boundary_len)) {
  3607. // Found boundary, that's the end of file data.
  3608. fwrite(buf, 1, i, fp);
  3609. eof = 1;
  3610. memmove(buf, &buf[i + bl], len - (i + bl));
  3611. len -= i + bl;
  3612. break;
  3613. }
  3614. }
  3615. if (!eof && len > bl) {
  3616. fwrite(buf, 1, len - bl, fp);
  3617. memmove(buf, &buf[len - bl], bl);
  3618. len = bl;
  3619. }
  3620. } while (!eof && (n = mg_read(conn, buf + len, sizeof(buf) - len)) > 0);
  3621. fclose(fp);
  3622. if (eof) {
  3623. num_uploaded_files++;
  3624. if (conn->ctx->callbacks.upload != NULL) {
  3625. conn->ctx->callbacks.upload(conn, path);
  3626. }
  3627. }
  3628. }
  3629. return num_uploaded_files;
  3630. }
  3631. static int is_put_or_delete_request(const struct mg_connection *conn) {
  3632. const char *s = conn->request_info.request_method;
  3633. return s != NULL && (!strcmp(s, "PUT") ||
  3634. !strcmp(s, "DELETE") ||
  3635. !strcmp(s, "MKCOL"));
  3636. }
  3637. static int get_first_ssl_listener_index(const struct mg_context *ctx) {
  3638. int i, index = -1;
  3639. for (i = 0; index == -1 && i < ctx->num_listening_sockets; i++) {
  3640. index = ctx->listening_sockets[i].is_ssl ? i : -1;
  3641. }
  3642. return index;
  3643. }
  3644. static void redirect_to_https_port(struct mg_connection *conn, int ssl_index) {
  3645. char host[1025];
  3646. const char *host_header;
  3647. if ((host_header = mg_get_header(conn, "Host")) == NULL ||
  3648. sscanf(host_header, "%1024[^:]", host) == 0) {
  3649. // Cannot get host from the Host: header. Fallback to our IP address.
  3650. sockaddr_to_string(host, sizeof(host), &conn->client.lsa);
  3651. }
  3652. mg_printf(conn, "HTTP/1.1 302 Found\r\nLocation: https://%s:%d%s\r\n\r\n",
  3653. host, (int) ntohs(conn->ctx->listening_sockets[ssl_index].
  3654. lsa.sin.sin_port), conn->request_info.uri);
  3655. }
  3656. // This is the heart of the Civetweb's logic.
  3657. // This function is called when the request is read, parsed and validated,
  3658. // and Civetweb must decide what action to take: serve a file, or
  3659. // a directory, or call embedded function, etcetera.
  3660. static void handle_request(struct mg_connection *conn) {
  3661. struct mg_request_info *ri = &conn->request_info;
  3662. char path[PATH_MAX];
  3663. int uri_len, ssl_index;
  3664. struct file file = STRUCT_FILE_INITIALIZER;
  3665. if ((conn->request_info.query_string = strchr(ri->uri, '?')) != NULL) {
  3666. * ((char *) conn->request_info.query_string++) = '\0';
  3667. }
  3668. uri_len = (int) strlen(ri->uri);
  3669. mg_url_decode(ri->uri, uri_len, (char *) ri->uri, uri_len + 1, 0);
  3670. remove_double_dots_and_double_slashes((char *) ri->uri);
  3671. convert_uri_to_file_name(conn, path, sizeof(path), &file);
  3672. conn->throttle = set_throttle(conn->ctx->config[THROTTLE],
  3673. get_remote_ip(conn), ri->uri);
  3674. DEBUG_TRACE(("%s", ri->uri));
  3675. // Perform redirect and auth checks before calling begin_request() handler.
  3676. // Otherwise, begin_request() would need to perform auth checks and redirects.
  3677. if (!conn->client.is_ssl && conn->client.ssl_redir &&
  3678. (ssl_index = get_first_ssl_listener_index(conn->ctx)) > -1) {
  3679. redirect_to_https_port(conn, ssl_index);
  3680. } else if (!is_put_or_delete_request(conn) &&
  3681. !check_authorization(conn, path)) {
  3682. send_authorization_request(conn);
  3683. } else if (conn->ctx->callbacks.begin_request != NULL &&
  3684. conn->ctx->callbacks.begin_request(conn)) {
  3685. // Do nothing, callback has served the request
  3686. #if defined(USE_WEBSOCKET)
  3687. } else if (is_websocket_request(conn)) {
  3688. handle_websocket_request(conn);
  3689. #endif
  3690. } else if (!strcmp(ri->request_method, "OPTIONS")) {
  3691. send_options(conn);
  3692. } else if (conn->ctx->config[DOCUMENT_ROOT] == NULL) {
  3693. send_http_error(conn, 404, "Not Found", "Not Found");
  3694. } else if (is_put_or_delete_request(conn) &&
  3695. (is_authorized_for_put(conn) != 1)) {
  3696. send_authorization_request(conn);
  3697. } else if (!strcmp(ri->request_method, "PUT")) {
  3698. put_file(conn, path);
  3699. } else if (!strcmp(ri->request_method, "MKCOL")) {
  3700. mkcol(conn, path);
  3701. } else if (!strcmp(ri->request_method, "DELETE")) {
  3702. struct de de;
  3703. memset(&de.file, 0, sizeof(de.file));
  3704. if(!mg_stat(conn, path, &de.file)) {
  3705. send_http_error(conn, 404, "Not Found", "%s", "File not found");
  3706. } else {
  3707. if(de.file.modification_time) {
  3708. if(de.file.is_directory) {
  3709. remove_directory(conn, path);
  3710. send_http_error(conn, 204, "No Content", "%s", "");
  3711. } else if (mg_remove(path) == 0) {
  3712. send_http_error(conn, 204, "No Content", "%s", "");
  3713. } else {
  3714. send_http_error(conn, 423, "Locked", "remove(%s): %s", path,
  3715. strerror(ERRNO));
  3716. }
  3717. }
  3718. else {
  3719. send_http_error(conn, 500, http_500_error, "remove(%s): %s", path,
  3720. strerror(ERRNO));
  3721. }
  3722. }
  3723. } else if ((file.membuf == NULL && file.modification_time == (time_t) 0) ||
  3724. must_hide_file(conn, path)) {
  3725. send_http_error(conn, 404, "Not Found", "%s", "File not found");
  3726. } else if (file.is_directory && ri->uri[uri_len - 1] != '/') {
  3727. mg_printf(conn, "HTTP/1.1 301 Moved Permanently\r\n"
  3728. "Location: %s/\r\n\r\n", ri->uri);
  3729. } else if (!strcmp(ri->request_method, "PROPFIND")) {
  3730. handle_propfind(conn, path, &file);
  3731. } else if (file.is_directory &&
  3732. !substitute_index_file(conn, path, sizeof(path), &file)) {
  3733. if (!mg_strcasecmp(conn->ctx->config[ENABLE_DIRECTORY_LISTING], "yes")) {
  3734. handle_directory_request(conn, path);
  3735. } else {
  3736. send_http_error(conn, 403, "Directory Listing Denied",
  3737. "Directory listing denied");
  3738. }
  3739. #ifdef USE_LUA
  3740. } else if (match_prefix("**.lp$", 6, path) > 0) {
  3741. handle_lsp_request(conn, path, &file, NULL);
  3742. #endif
  3743. #if !defined(NO_CGI)
  3744. } else if (match_prefix(conn->ctx->config[CGI_EXTENSIONS],
  3745. strlen(conn->ctx->config[CGI_EXTENSIONS]),
  3746. path) > 0) {
  3747. if (strcmp(ri->request_method, "POST") &&
  3748. strcmp(ri->request_method, "HEAD") &&
  3749. strcmp(ri->request_method, "GET")) {
  3750. send_http_error(conn, 501, "Not Implemented",
  3751. "Method %s is not implemented", ri->request_method);
  3752. } else {
  3753. handle_cgi_request(conn, path);
  3754. }
  3755. #endif // !NO_CGI
  3756. } else if (match_prefix(conn->ctx->config[SSI_EXTENSIONS],
  3757. strlen(conn->ctx->config[SSI_EXTENSIONS]),
  3758. path) > 0) {
  3759. handle_ssi_file_request(conn, path);
  3760. } else if (is_not_modified(conn, &file)) {
  3761. send_http_error(conn, 304, "Not Modified", "%s", "");
  3762. } else {
  3763. handle_file_request(conn, path, &file);
  3764. }
  3765. }
  3766. static void close_all_listening_sockets(struct mg_context *ctx) {
  3767. int i;
  3768. for (i = 0; i < ctx->num_listening_sockets; i++) {
  3769. closesocket(ctx->listening_sockets[i].sock);
  3770. }
  3771. free(ctx->listening_sockets);
  3772. }
  3773. static int is_valid_port(unsigned int port) {
  3774. return port > 0 && port < 0xffff;
  3775. }
  3776. // Valid listening port specification is: [ip_address:]port[s]
  3777. // Examples: 80, 443s, 127.0.0.1:3128, 1.2.3.4:8080s
  3778. // TODO(lsm): add parsing of the IPv6 address
  3779. static int parse_port_string(const struct vec *vec, struct socket *so) {
  3780. unsigned int a, b, c, d, ch, len, port;
  3781. #if defined(USE_IPV6)
  3782. char buf[100];
  3783. #endif
  3784. // MacOS needs that. If we do not zero it, subsequent bind() will fail.
  3785. // Also, all-zeroes in the socket address means binding to all addresses
  3786. // for both IPv4 and IPv6 (INADDR_ANY and IN6ADDR_ANY_INIT).
  3787. memset(so, 0, sizeof(*so));
  3788. so->lsa.sin.sin_family = AF_INET;
  3789. if (sscanf(vec->ptr, "%u.%u.%u.%u:%u%n", &a, &b, &c, &d, &port, &len) == 5) {
  3790. // Bind to a specific IPv4 address, e.g. 192.168.1.5:8080
  3791. so->lsa.sin.sin_addr.s_addr = htonl((a << 24) | (b << 16) | (c << 8) | d);
  3792. so->lsa.sin.sin_port = htons((uint16_t) port);
  3793. #if defined(USE_IPV6)
  3794. } else if (sscanf(vec->ptr, "[%49[^]]]:%d%n", buf, &port, &len) == 2 &&
  3795. inet_pton(AF_INET6, buf, &so->lsa.sin6.sin6_addr)) {
  3796. // IPv6 address, e.g. [3ffe:2a00:100:7031::1]:8080
  3797. so->lsa.sin6.sin6_family = AF_INET6;
  3798. so->lsa.sin6.sin6_port = htons((uint16_t) port);
  3799. #endif
  3800. } else if (sscanf(vec->ptr, "%u%n", &port, &len) == 1) {
  3801. // If only port is specified, bind to IPv4, INADDR_ANY
  3802. so->lsa.sin.sin_port = htons((uint16_t) port);
  3803. } else {
  3804. port = len = 0; // Parsing failure. Make port invalid.
  3805. }
  3806. ch = vec->ptr[len]; // Next character after the port number
  3807. so->is_ssl = ch == 's';
  3808. so->ssl_redir = ch == 'r';
  3809. // Make sure the port is valid and vector ends with 's', 'r' or ','
  3810. return is_valid_port(port) &&
  3811. (ch == '\0' || ch == 's' || ch == 'r' || ch == ',');
  3812. }
  3813. static int set_ports_option(struct mg_context *ctx) {
  3814. const char *list = ctx->config[LISTENING_PORTS];
  3815. int on = 1, success = 1;
  3816. #if defined(USE_IPV6)
  3817. int off = 0;
  3818. #endif
  3819. struct vec vec;
  3820. struct socket so, *ptr;
  3821. while (success && (list = next_option(list, &vec, NULL)) != NULL) {
  3822. if (!parse_port_string(&vec, &so)) {
  3823. cry(fc(ctx), "%s: %.*s: invalid port spec. Expecting list of: %s",
  3824. __func__, (int) vec.len, vec.ptr, "[IP_ADDRESS:]PORT[s|r]");
  3825. success = 0;
  3826. } else if (so.is_ssl && ctx->ssl_ctx == NULL) {
  3827. cry(fc(ctx), "Cannot add SSL socket, is -ssl_certificate option set?");
  3828. success = 0;
  3829. } else if ((so.sock = socket(so.lsa.sa.sa_family, SOCK_STREAM, 6)) ==
  3830. INVALID_SOCKET ||
  3831. // On Windows, SO_REUSEADDR is recommended only for
  3832. // broadcast UDP sockets
  3833. setsockopt(so.sock, SOL_SOCKET, SO_REUSEADDR,
  3834. (void *) &on, sizeof(on)) != 0 ||
  3835. #if defined(USE_IPV6)
  3836. (so.lsa.sa.sa_family == AF_INET6 &&
  3837. setsockopt(so.sock, IPPROTO_IPV6, IPV6_V6ONLY, (void *) &off,
  3838. sizeof(off)) != 0) ||
  3839. #endif
  3840. bind(so.sock, &so.lsa.sa, so.lsa.sa.sa_family == AF_INET ?
  3841. sizeof(so.lsa.sin) : sizeof(so.lsa)) != 0 ||
  3842. listen(so.sock, SOMAXCONN) != 0) {
  3843. cry(fc(ctx), "%s: cannot bind to %.*s: %d (%s)", __func__,
  3844. (int) vec.len, vec.ptr, ERRNO, strerror(errno));
  3845. closesocket(so.sock);
  3846. success = 0;
  3847. } else if ((ptr = (struct socket *) realloc(ctx->listening_sockets,
  3848. (ctx->num_listening_sockets + 1) *
  3849. sizeof(ctx->listening_sockets[0]))) == NULL) {
  3850. closesocket(so.sock);
  3851. success = 0;
  3852. } else {
  3853. set_close_on_exec(so.sock);
  3854. ctx->listening_sockets = ptr;
  3855. ctx->listening_sockets[ctx->num_listening_sockets] = so;
  3856. ctx->num_listening_sockets++;
  3857. }
  3858. }
  3859. if (!success) {
  3860. close_all_listening_sockets(ctx);
  3861. }
  3862. return success;
  3863. }
  3864. static void log_header(const struct mg_connection *conn, const char *header,
  3865. FILE *fp) {
  3866. const char *header_value;
  3867. if ((header_value = mg_get_header(conn, header)) == NULL) {
  3868. (void) fprintf(fp, "%s", " -");
  3869. } else {
  3870. (void) fprintf(fp, " \"%s\"", header_value);
  3871. }
  3872. }
  3873. static void log_access(const struct mg_connection *conn) {
  3874. const struct mg_request_info *ri;
  3875. FILE *fp;
  3876. char date[64], src_addr[IP_ADDR_STR_LEN];
  3877. fp = conn->ctx->config[ACCESS_LOG_FILE] == NULL ? NULL :
  3878. fopen(conn->ctx->config[ACCESS_LOG_FILE], "a+");
  3879. if (fp == NULL)
  3880. return;
  3881. strftime(date, sizeof(date), "%d/%b/%Y:%H:%M:%S %z",
  3882. localtime(&conn->birth_time));
  3883. ri = &conn->request_info;
  3884. flockfile(fp);
  3885. sockaddr_to_string(src_addr, sizeof(src_addr), &conn->client.rsa);
  3886. fprintf(fp, "%s - %s [%s] \"%s %s HTTP/%s\" %d %" INT64_FMT,
  3887. src_addr, ri->remote_user == NULL ? "-" : ri->remote_user, date,
  3888. ri->request_method ? ri->request_method : "-",
  3889. ri->uri ? ri->uri : "-", ri->http_version,
  3890. conn->status_code, conn->num_bytes_sent);
  3891. log_header(conn, "Referer", fp);
  3892. log_header(conn, "User-Agent", fp);
  3893. fputc('\n', fp);
  3894. fflush(fp);
  3895. funlockfile(fp);
  3896. fclose(fp);
  3897. }
  3898. // Verify given socket address against the ACL.
  3899. // Return -1 if ACL is malformed, 0 if address is disallowed, 1 if allowed.
  3900. static int check_acl(struct mg_context *ctx, uint32_t remote_ip) {
  3901. int allowed, flag;
  3902. uint32_t net, mask;
  3903. struct vec vec;
  3904. const char *list = ctx->config[ACCESS_CONTROL_LIST];
  3905. // If any ACL is set, deny by default
  3906. allowed = list == NULL ? '+' : '-';
  3907. while ((list = next_option(list, &vec, NULL)) != NULL) {
  3908. flag = vec.ptr[0];
  3909. if ((flag != '+' && flag != '-') ||
  3910. parse_net(&vec.ptr[1], &net, &mask) == 0) {
  3911. cry(fc(ctx), "%s: subnet must be [+|-]x.x.x.x[/x]", __func__);
  3912. return -1;
  3913. }
  3914. if (net == (remote_ip & mask)) {
  3915. allowed = flag;
  3916. }
  3917. }
  3918. return allowed == '+';
  3919. }
  3920. #if !defined(_WIN32)
  3921. static int set_uid_option(struct mg_context *ctx) {
  3922. struct passwd *pw;
  3923. const char *uid = ctx->config[RUN_AS_USER];
  3924. int success = 0;
  3925. if (uid == NULL) {
  3926. success = 1;
  3927. } else {
  3928. if ((pw = getpwnam(uid)) == NULL) {
  3929. cry(fc(ctx), "%s: unknown user [%s]", __func__, uid);
  3930. } else if (setgid(pw->pw_gid) == -1) {
  3931. cry(fc(ctx), "%s: setgid(%s): %s", __func__, uid, strerror(errno));
  3932. } else if (setuid(pw->pw_uid) == -1) {
  3933. cry(fc(ctx), "%s: setuid(%s): %s", __func__, uid, strerror(errno));
  3934. } else {
  3935. success = 1;
  3936. }
  3937. }
  3938. return success;
  3939. }
  3940. #endif // !_WIN32
  3941. #if !defined(NO_SSL)
  3942. static pthread_mutex_t *ssl_mutexes;
  3943. static int sslize(struct mg_connection *conn, SSL_CTX *s, int (*func)(SSL *)) {
  3944. return (conn->ssl = SSL_new(s)) != NULL &&
  3945. SSL_set_fd(conn->ssl, conn->client.sock) == 1 &&
  3946. func(conn->ssl) == 1;
  3947. }
  3948. // Return OpenSSL error message
  3949. static const char *ssl_error(void) {
  3950. unsigned long err;
  3951. err = ERR_get_error();
  3952. return err == 0 ? "" : ERR_error_string(err, NULL);
  3953. }
  3954. static void ssl_locking_callback(int mode, int mutex_num, const char *file,
  3955. int line) {
  3956. (void) line;
  3957. (void) file;
  3958. if (mode & 1) { // 1 is CRYPTO_LOCK
  3959. (void) pthread_mutex_lock(&ssl_mutexes[mutex_num]);
  3960. } else {
  3961. (void) pthread_mutex_unlock(&ssl_mutexes[mutex_num]);
  3962. }
  3963. }
  3964. static unsigned long ssl_id_callback(void) {
  3965. return (unsigned long) pthread_self();
  3966. }
  3967. #if !defined(NO_SSL_DL)
  3968. static int load_dll(struct mg_context *ctx, const char *dll_name,
  3969. struct ssl_func *sw) {
  3970. union {void *p; void (*fp)(void);} u;
  3971. void *dll_handle;
  3972. struct ssl_func *fp;
  3973. if ((dll_handle = dlopen(dll_name, RTLD_LAZY)) == NULL) {
  3974. cry(fc(ctx), "%s: cannot load %s", __func__, dll_name);
  3975. return 0;
  3976. }
  3977. for (fp = sw; fp->name != NULL; fp++) {
  3978. #ifdef _WIN32
  3979. // GetProcAddress() returns pointer to function
  3980. u.fp = (void (*)(void)) dlsym(dll_handle, fp->name);
  3981. #else
  3982. // dlsym() on UNIX returns void *. ISO C forbids casts of data pointers to
  3983. // function pointers. We need to use a union to make a cast.
  3984. u.p = dlsym(dll_handle, fp->name);
  3985. #endif // _WIN32
  3986. if (u.fp == NULL) {
  3987. cry(fc(ctx), "%s: %s: cannot find %s", __func__, dll_name, fp->name);
  3988. return 0;
  3989. } else {
  3990. fp->ptr = u.fp;
  3991. }
  3992. }
  3993. return 1;
  3994. }
  3995. #endif // NO_SSL_DL
  3996. // Dynamically load SSL library. Set up ctx->ssl_ctx pointer.
  3997. static int set_ssl_option(struct mg_context *ctx) {
  3998. int i, size;
  3999. const char *pem;
  4000. // If PEM file is not specified and the init_ssl callback
  4001. // is not specified, skip SSL initialization.
  4002. if ((pem = ctx->config[SSL_CERTIFICATE]) == NULL &&
  4003. ctx->callbacks.init_ssl == NULL) {
  4004. return 1;
  4005. }
  4006. #if !defined(NO_SSL_DL)
  4007. if (!load_dll(ctx, SSL_LIB, ssl_sw) ||
  4008. !load_dll(ctx, CRYPTO_LIB, crypto_sw)) {
  4009. return 0;
  4010. }
  4011. #endif // NO_SSL_DL
  4012. // Initialize SSL library
  4013. SSL_library_init();
  4014. SSL_load_error_strings();
  4015. if ((ctx->ssl_ctx = SSL_CTX_new(SSLv23_server_method())) == NULL) {
  4016. cry(fc(ctx), "SSL_CTX_new (server) error: %s", ssl_error());
  4017. return 0;
  4018. }
  4019. // If user callback returned non-NULL, that means that user callback has
  4020. // set up certificate itself. In this case, skip sertificate setting.
  4021. if ((ctx->callbacks.init_ssl == NULL ||
  4022. !ctx->callbacks.init_ssl(ctx->ssl_ctx, ctx->user_data)) &&
  4023. (SSL_CTX_use_certificate_file(ctx->ssl_ctx, pem, 1) == 0 ||
  4024. SSL_CTX_use_PrivateKey_file(ctx->ssl_ctx, pem, 1) == 0)) {
  4025. cry(fc(ctx), "%s: cannot open %s: %s", __func__, pem, ssl_error());
  4026. return 0;
  4027. }
  4028. if (pem != NULL) {
  4029. (void) SSL_CTX_use_certificate_chain_file(ctx->ssl_ctx, pem);
  4030. }
  4031. // Initialize locking callbacks, needed for thread safety.
  4032. // http://www.openssl.org/support/faq.html#PROG1
  4033. size = sizeof(pthread_mutex_t) * CRYPTO_num_locks();
  4034. if ((ssl_mutexes = (pthread_mutex_t *) malloc((size_t)size)) == NULL) {
  4035. cry(fc(ctx), "%s: cannot allocate mutexes: %s", __func__, ssl_error());
  4036. return 0;
  4037. }
  4038. for (i = 0; i < CRYPTO_num_locks(); i++) {
  4039. pthread_mutex_init(&ssl_mutexes[i], NULL);
  4040. }
  4041. CRYPTO_set_locking_callback(&ssl_locking_callback);
  4042. CRYPTO_set_id_callback(&ssl_id_callback);
  4043. return 1;
  4044. }
  4045. static void uninitialize_ssl(struct mg_context *ctx) {
  4046. int i;
  4047. if (ctx->ssl_ctx != NULL) {
  4048. CRYPTO_set_locking_callback(NULL);
  4049. for (i = 0; i < CRYPTO_num_locks(); i++) {
  4050. pthread_mutex_destroy(&ssl_mutexes[i]);
  4051. }
  4052. CRYPTO_set_locking_callback(NULL);
  4053. CRYPTO_set_id_callback(NULL);
  4054. }
  4055. }
  4056. #endif // !NO_SSL
  4057. static int set_gpass_option(struct mg_context *ctx) {
  4058. struct file file = STRUCT_FILE_INITIALIZER;
  4059. const char *path = ctx->config[GLOBAL_PASSWORDS_FILE];
  4060. if (path != NULL && !mg_stat(fc(ctx), path, &file)) {
  4061. cry(fc(ctx), "Cannot open %s: %s", path, strerror(ERRNO));
  4062. return 0;
  4063. }
  4064. return 1;
  4065. }
  4066. static int set_acl_option(struct mg_context *ctx) {
  4067. return check_acl(ctx, (uint32_t) 0x7f000001UL) != -1;
  4068. }
  4069. static void reset_per_request_attributes(struct mg_connection *conn) {
  4070. conn->path_info = NULL;
  4071. conn->num_bytes_sent = conn->consumed_content = 0;
  4072. conn->status_code = -1;
  4073. conn->must_close = conn->request_len = conn->throttle = 0;
  4074. }
  4075. static void close_socket_gracefully(struct mg_connection *conn) {
  4076. #if defined(_WIN32)
  4077. char buf[MG_BUF_LEN];
  4078. int n;
  4079. #endif
  4080. struct linger linger;
  4081. // Set linger option to avoid socket hanging out after close. This prevent
  4082. // ephemeral port exhaust problem under high QPS.
  4083. linger.l_onoff = 1;
  4084. linger.l_linger = 1;
  4085. setsockopt(conn->client.sock, SOL_SOCKET, SO_LINGER,
  4086. (char *) &linger, sizeof(linger));
  4087. // Send FIN to the client
  4088. shutdown(conn->client.sock, SHUT_WR);
  4089. set_non_blocking_mode(conn->client.sock);
  4090. #if defined(_WIN32)
  4091. // Read and discard pending incoming data. If we do not do that and close the
  4092. // socket, the data in the send buffer may be discarded. This
  4093. // behaviour is seen on Windows, when client keeps sending data
  4094. // when server decides to close the connection; then when client
  4095. // does recv() it gets no data back.
  4096. do {
  4097. n = pull(NULL, conn, buf, sizeof(buf));
  4098. } while (n > 0);
  4099. #endif
  4100. // Now we know that our FIN is ACK-ed, safe to close
  4101. closesocket(conn->client.sock);
  4102. }
  4103. static void close_connection(struct mg_connection *conn) {
  4104. mg_lock(conn);
  4105. conn->must_close = 1;
  4106. #ifndef NO_SSL
  4107. if (conn->ssl != NULL) {
  4108. // Run SSL_shutdown twice to ensure completly close SSL connection
  4109. SSL_shutdown(conn->ssl);
  4110. SSL_free(conn->ssl);
  4111. conn->ssl = NULL;
  4112. }
  4113. #endif
  4114. if (conn->client.sock != INVALID_SOCKET) {
  4115. close_socket_gracefully(conn);
  4116. conn->client.sock = INVALID_SOCKET;
  4117. }
  4118. mg_unlock(conn);
  4119. }
  4120. void mg_close_connection(struct mg_connection *conn) {
  4121. #ifndef NO_SSL
  4122. if (conn->client_ssl_ctx != NULL) {
  4123. SSL_CTX_free((SSL_CTX *) conn->client_ssl_ctx);
  4124. }
  4125. #endif
  4126. close_connection(conn);
  4127. (void) pthread_mutex_destroy(&conn->mutex);
  4128. free(conn);
  4129. }
  4130. struct mg_connection *mg_connect(const char *host, int port, int use_ssl,
  4131. char *ebuf, size_t ebuf_len) {
  4132. static struct mg_context fake_ctx;
  4133. struct mg_connection *conn = NULL;
  4134. SOCKET sock;
  4135. if ((sock = conn2(host, port, use_ssl, ebuf, ebuf_len)) == INVALID_SOCKET) {
  4136. } else if ((conn = (struct mg_connection *)
  4137. calloc(1, sizeof(*conn) + MAX_REQUEST_SIZE)) == NULL) {
  4138. snprintf(ebuf, ebuf_len, "calloc(): %s", strerror(ERRNO));
  4139. closesocket(sock);
  4140. #ifndef NO_SSL
  4141. } else if (use_ssl && (conn->client_ssl_ctx =
  4142. SSL_CTX_new(SSLv23_client_method())) == NULL) {
  4143. snprintf(ebuf, ebuf_len, "SSL_CTX_new error");
  4144. closesocket(sock);
  4145. free(conn);
  4146. conn = NULL;
  4147. #endif // NO_SSL
  4148. } else {
  4149. socklen_t len = sizeof(struct sockaddr);
  4150. conn->buf_size = MAX_REQUEST_SIZE;
  4151. conn->buf = (char *) (conn + 1);
  4152. conn->ctx = &fake_ctx;
  4153. conn->client.sock = sock;
  4154. getsockname(sock, &conn->client.rsa.sa, &len);
  4155. conn->client.is_ssl = use_ssl;
  4156. (void) pthread_mutex_init(&conn->mutex, NULL);
  4157. #ifndef NO_SSL
  4158. if (use_ssl) {
  4159. // SSL_CTX_set_verify call is needed to switch off server certificate
  4160. // checking, which is off by default in OpenSSL and on in yaSSL.
  4161. SSL_CTX_set_verify(conn->client_ssl_ctx, 0, 0);
  4162. sslize(conn, conn->client_ssl_ctx, SSL_connect);
  4163. }
  4164. #endif
  4165. }
  4166. return conn;
  4167. }
  4168. static int is_valid_uri(const char *uri) {
  4169. // Conform to http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5.1.2
  4170. // URI can be an asterisk (*) or should start with slash.
  4171. return uri[0] == '/' || (uri[0] == '*' && uri[1] == '\0');
  4172. }
  4173. static int getreq(struct mg_connection *conn, char *ebuf, size_t ebuf_len) {
  4174. const char *cl;
  4175. ebuf[0] = '\0';
  4176. reset_per_request_attributes(conn);
  4177. conn->request_len = read_request(NULL, conn, conn->buf, conn->buf_size,
  4178. &conn->data_len);
  4179. assert(conn->request_len < 0 || conn->data_len >= conn->request_len);
  4180. if (conn->request_len == 0 && conn->data_len == conn->buf_size) {
  4181. snprintf(ebuf, ebuf_len, "%s", "Request Too Large");
  4182. } else if (conn->request_len <= 0) {
  4183. snprintf(ebuf, ebuf_len, "%s", "Client closed connection");
  4184. } else if (parse_http_message(conn->buf, conn->buf_size,
  4185. &conn->request_info) <= 0) {
  4186. snprintf(ebuf, ebuf_len, "Bad request: [%.*s]", conn->data_len, conn->buf);
  4187. } else {
  4188. // Request is valid
  4189. if ((cl = get_header(&conn->request_info, "Content-Length")) != NULL) {
  4190. conn->content_len = strtoll(cl, NULL, 10);
  4191. } else if (!mg_strcasecmp(conn->request_info.request_method, "POST") ||
  4192. !mg_strcasecmp(conn->request_info.request_method, "PUT")) {
  4193. conn->content_len = -1;
  4194. } else {
  4195. conn->content_len = 0;
  4196. }
  4197. conn->birth_time = time(NULL);
  4198. }
  4199. return ebuf[0] == '\0';
  4200. }
  4201. struct mg_connection *mg_download(const char *host, int port, int use_ssl,
  4202. char *ebuf, size_t ebuf_len,
  4203. const char *fmt, ...) {
  4204. struct mg_connection *conn;
  4205. va_list ap;
  4206. va_start(ap, fmt);
  4207. ebuf[0] = '\0';
  4208. if ((conn = mg_connect(host, port, use_ssl, ebuf, ebuf_len)) == NULL) {
  4209. } else if (mg_vprintf(conn, fmt, ap) <= 0) {
  4210. snprintf(ebuf, ebuf_len, "%s", "Error sending request");
  4211. } else {
  4212. getreq(conn, ebuf, ebuf_len);
  4213. }
  4214. if (ebuf[0] != '\0' && conn != NULL) {
  4215. mg_close_connection(conn);
  4216. conn = NULL;
  4217. }
  4218. return conn;
  4219. }
  4220. static void process_new_connection(struct mg_connection *conn) {
  4221. struct mg_request_info *ri = &conn->request_info;
  4222. int keep_alive_enabled, keep_alive, discard_len;
  4223. char ebuf[100];
  4224. keep_alive_enabled = !strcmp(conn->ctx->config[ENABLE_KEEP_ALIVE], "yes");
  4225. keep_alive = 0;
  4226. // Important: on new connection, reset the receiving buffer. Credit goes
  4227. // to crule42.
  4228. conn->data_len = 0;
  4229. do {
  4230. if (!getreq(conn, ebuf, sizeof(ebuf))) {
  4231. send_http_error(conn, 500, "Server Error", "%s", ebuf);
  4232. conn->must_close = 1;
  4233. } else if (!is_valid_uri(conn->request_info.uri)) {
  4234. snprintf(ebuf, sizeof(ebuf), "Invalid URI: [%s]", ri->uri);
  4235. send_http_error(conn, 400, "Bad Request", "%s", ebuf);
  4236. } else if (strcmp(ri->http_version, "1.0") &&
  4237. strcmp(ri->http_version, "1.1")) {
  4238. snprintf(ebuf, sizeof(ebuf), "Bad HTTP version: [%s]", ri->http_version);
  4239. send_http_error(conn, 505, "Bad HTTP version", "%s", ebuf);
  4240. }
  4241. if (ebuf[0] == '\0') {
  4242. handle_request(conn);
  4243. if (conn->ctx->callbacks.end_request != NULL) {
  4244. conn->ctx->callbacks.end_request(conn, conn->status_code);
  4245. }
  4246. log_access(conn);
  4247. }
  4248. if (ri->remote_user != NULL) {
  4249. free((void *) ri->remote_user);
  4250. // Important! When having connections with and without auth
  4251. // would cause double free and then crash
  4252. ri->remote_user = NULL;
  4253. }
  4254. // NOTE(lsm): order is important here. should_keep_alive() call
  4255. // is using parsed request, which will be invalid after memmove's below.
  4256. // Therefore, memorize should_keep_alive() result now for later use
  4257. // in loop exit condition.
  4258. keep_alive = conn->ctx->stop_flag == 0 && keep_alive_enabled &&
  4259. conn->content_len >= 0 && should_keep_alive(conn);
  4260. // Discard all buffered data for this request
  4261. discard_len = conn->content_len >= 0 && conn->request_len > 0 &&
  4262. conn->request_len + conn->content_len < (int64_t) conn->data_len ?
  4263. (int) (conn->request_len + conn->content_len) : conn->data_len;
  4264. assert(discard_len >= 0);
  4265. memmove(conn->buf, conn->buf + discard_len, conn->data_len - discard_len);
  4266. conn->data_len -= discard_len;
  4267. assert(conn->data_len >= 0);
  4268. assert(conn->data_len <= conn->buf_size);
  4269. } while (keep_alive);
  4270. }
  4271. // Worker threads take accepted socket from the queue
  4272. static int consume_socket(struct mg_context *ctx, struct socket *sp) {
  4273. (void) pthread_mutex_lock(&ctx->mutex);
  4274. DEBUG_TRACE(("going idle"));
  4275. // If the queue is empty, wait. We're idle at this point.
  4276. while (ctx->sq_head == ctx->sq_tail && ctx->stop_flag == 0) {
  4277. pthread_cond_wait(&ctx->sq_full, &ctx->mutex);
  4278. }
  4279. // If we're stopping, sq_head may be equal to sq_tail.
  4280. if (ctx->sq_head > ctx->sq_tail) {
  4281. // Copy socket from the queue and increment tail
  4282. *sp = ctx->queue[ctx->sq_tail % ARRAY_SIZE(ctx->queue)];
  4283. ctx->sq_tail++;
  4284. DEBUG_TRACE(("grabbed socket %d, going busy", sp->sock));
  4285. // Wrap pointers if needed
  4286. while (ctx->sq_tail > (int) ARRAY_SIZE(ctx->queue)) {
  4287. ctx->sq_tail -= ARRAY_SIZE(ctx->queue);
  4288. ctx->sq_head -= ARRAY_SIZE(ctx->queue);
  4289. }
  4290. }
  4291. (void) pthread_cond_signal(&ctx->sq_empty);
  4292. (void) pthread_mutex_unlock(&ctx->mutex);
  4293. return !ctx->stop_flag;
  4294. }
  4295. static void *worker_thread(void *thread_func_param) {
  4296. struct mg_context *ctx = (struct mg_context *) thread_func_param;
  4297. struct mg_connection *conn;
  4298. conn = (struct mg_connection *) calloc(1, sizeof(*conn) + MAX_REQUEST_SIZE);
  4299. if (conn == NULL) {
  4300. cry(fc(ctx), "%s", "Cannot create new connection struct, OOM");
  4301. } else {
  4302. conn->buf_size = MAX_REQUEST_SIZE;
  4303. conn->buf = (char *) (conn + 1);
  4304. conn->ctx = ctx;
  4305. conn->request_info.user_data = ctx->user_data;
  4306. // Allocate a mutex for this connection to allow communication both
  4307. // within the request handler and from elsewhere in the application
  4308. (void) pthread_mutex_init(&conn->mutex, NULL);
  4309. // Call consume_socket() even when ctx->stop_flag > 0, to let it signal
  4310. // sq_empty condvar to wake up the master waiting in produce_socket()
  4311. while (consume_socket(ctx, &conn->client)) {
  4312. conn->birth_time = time(NULL);
  4313. // Fill in IP, port info early so even if SSL setup below fails,
  4314. // error handler would have the corresponding info.
  4315. // Thanks to Johannes Winkelmann for the patch.
  4316. // TODO(lsm): Fix IPv6 case
  4317. conn->request_info.remote_port = ntohs(conn->client.rsa.sin.sin_port);
  4318. memcpy(&conn->request_info.remote_ip,
  4319. &conn->client.rsa.sin.sin_addr.s_addr, 4);
  4320. conn->request_info.remote_ip = ntohl(conn->request_info.remote_ip);
  4321. conn->request_info.is_ssl = conn->client.is_ssl;
  4322. if (!conn->client.is_ssl
  4323. #ifndef NO_SSL
  4324. || sslize(conn, conn->ctx->ssl_ctx, SSL_accept)
  4325. #endif
  4326. ) {
  4327. process_new_connection(conn);
  4328. }
  4329. close_connection(conn);
  4330. }
  4331. free(conn);
  4332. }
  4333. // Signal master that we're done with connection and exiting
  4334. (void) pthread_mutex_lock(&ctx->mutex);
  4335. ctx->num_threads--;
  4336. (void) pthread_cond_signal(&ctx->cond);
  4337. assert(ctx->num_threads >= 0);
  4338. (void) pthread_mutex_unlock(&ctx->mutex);
  4339. DEBUG_TRACE(("exiting"));
  4340. return NULL;
  4341. }
  4342. // Master thread adds accepted socket to a queue
  4343. static void produce_socket(struct mg_context *ctx, const struct socket *sp) {
  4344. (void) pthread_mutex_lock(&ctx->mutex);
  4345. // If the queue is full, wait
  4346. while (ctx->stop_flag == 0 &&
  4347. ctx->sq_head - ctx->sq_tail >= (int) ARRAY_SIZE(ctx->queue)) {
  4348. (void) pthread_cond_wait(&ctx->sq_empty, &ctx->mutex);
  4349. }
  4350. if (ctx->sq_head - ctx->sq_tail < (int) ARRAY_SIZE(ctx->queue)) {
  4351. // Copy socket to the queue and increment head
  4352. ctx->queue[ctx->sq_head % ARRAY_SIZE(ctx->queue)] = *sp;
  4353. ctx->sq_head++;
  4354. DEBUG_TRACE(("queued socket %d", sp->sock));
  4355. }
  4356. (void) pthread_cond_signal(&ctx->sq_full);
  4357. (void) pthread_mutex_unlock(&ctx->mutex);
  4358. }
  4359. static int set_sock_timeout(SOCKET sock, int milliseconds) {
  4360. #ifdef _WIN32
  4361. DWORD t = milliseconds;
  4362. #else
  4363. struct timeval t;
  4364. t.tv_sec = milliseconds / 1000;
  4365. t.tv_usec = (milliseconds * 1000) % 1000000;
  4366. #endif
  4367. return setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *) &t, sizeof(t)) ||
  4368. setsockopt(sock, SOL_SOCKET, SO_SNDTIMEO, (void *) &t, sizeof(t));
  4369. }
  4370. static void accept_new_connection(const struct socket *listener,
  4371. struct mg_context *ctx) {
  4372. struct socket so;
  4373. char src_addr[IP_ADDR_STR_LEN];
  4374. socklen_t len = sizeof(so.rsa);
  4375. int on = 1;
  4376. if ((so.sock = accept(listener->sock, &so.rsa.sa, &len)) == INVALID_SOCKET) {
  4377. } else if (!check_acl(ctx, ntohl(* (uint32_t *) &so.rsa.sin.sin_addr))) {
  4378. sockaddr_to_string(src_addr, sizeof(src_addr), &so.rsa);
  4379. cry(fc(ctx), "%s: %s is not allowed to connect", __func__, src_addr);
  4380. closesocket(so.sock);
  4381. } else {
  4382. // Put so socket structure into the queue
  4383. DEBUG_TRACE(("Accepted socket %d", (int) so.sock));
  4384. set_close_on_exec(so.sock);
  4385. so.is_ssl = listener->is_ssl;
  4386. so.ssl_redir = listener->ssl_redir;
  4387. getsockname(so.sock, &so.lsa.sa, &len);
  4388. // Set TCP keep-alive. This is needed because if HTTP-level keep-alive
  4389. // is enabled, and client resets the connection, server won't get
  4390. // TCP FIN or RST and will keep the connection open forever. With TCP
  4391. // keep-alive, next keep-alive handshake will figure out that the client
  4392. // is down and will close the server end.
  4393. // Thanks to Igor Klopov who suggested the patch.
  4394. setsockopt(so.sock, SOL_SOCKET, SO_KEEPALIVE, (void *) &on, sizeof(on));
  4395. set_sock_timeout(so.sock, atoi(ctx->config[REQUEST_TIMEOUT]));
  4396. produce_socket(ctx, &so);
  4397. }
  4398. }
  4399. static void *master_thread(void *thread_func_param) {
  4400. struct mg_context *ctx = (struct mg_context *) thread_func_param;
  4401. struct pollfd *pfd;
  4402. int i;
  4403. // Increase priority of the master thread
  4404. #if defined(_WIN32)
  4405. SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_ABOVE_NORMAL);
  4406. #endif
  4407. #if defined(ISSUE_317)
  4408. struct sched_param sched_param;
  4409. sched_param.sched_priority = sched_get_priority_max(SCHED_RR);
  4410. pthread_setschedparam(pthread_self(), SCHED_RR, &sched_param);
  4411. #endif
  4412. pfd = (struct pollfd *) calloc(ctx->num_listening_sockets, sizeof(pfd[0]));
  4413. while (pfd != NULL && ctx->stop_flag == 0) {
  4414. for (i = 0; i < ctx->num_listening_sockets; i++) {
  4415. pfd[i].fd = ctx->listening_sockets[i].sock;
  4416. pfd[i].events = POLLIN;
  4417. }
  4418. if (poll(pfd, ctx->num_listening_sockets, 200) > 0) {
  4419. for (i = 0; i < ctx->num_listening_sockets; i++) {
  4420. // NOTE(lsm): on QNX, poll() returns POLLRDNORM after the
  4421. // successfull poll, and POLLIN is defined as (POLLRDNORM | POLLRDBAND)
  4422. // Therefore, we're checking pfd[i].revents & POLLIN, not
  4423. // pfd[i].revents == POLLIN.
  4424. if (ctx->stop_flag == 0 && (pfd[i].revents & POLLIN)) {
  4425. accept_new_connection(&ctx->listening_sockets[i], ctx);
  4426. }
  4427. }
  4428. }
  4429. }
  4430. free(pfd);
  4431. DEBUG_TRACE(("stopping workers"));
  4432. // Stop signal received: somebody called mg_stop. Quit.
  4433. close_all_listening_sockets(ctx);
  4434. // Wakeup workers that are waiting for connections to handle.
  4435. pthread_cond_broadcast(&ctx->sq_full);
  4436. // Wait until all threads finish
  4437. (void) pthread_mutex_lock(&ctx->mutex);
  4438. while (ctx->num_threads > 0) {
  4439. (void) pthread_cond_wait(&ctx->cond, &ctx->mutex);
  4440. }
  4441. (void) pthread_mutex_unlock(&ctx->mutex);
  4442. // All threads exited, no sync is needed. Destroy mutex and condvars
  4443. (void) pthread_mutex_destroy(&ctx->mutex);
  4444. (void) pthread_cond_destroy(&ctx->cond);
  4445. (void) pthread_cond_destroy(&ctx->sq_empty);
  4446. (void) pthread_cond_destroy(&ctx->sq_full);
  4447. #if !defined(NO_SSL)
  4448. uninitialize_ssl(ctx);
  4449. #endif
  4450. DEBUG_TRACE(("exiting"));
  4451. // Signal mg_stop() that we're done.
  4452. // WARNING: This must be the very last thing this
  4453. // thread does, as ctx becomes invalid after this line.
  4454. ctx->stop_flag = 2;
  4455. return NULL;
  4456. }
  4457. static void free_context(struct mg_context *ctx) {
  4458. int i;
  4459. // Deallocate config parameters
  4460. for (i = 0; i < NUM_OPTIONS; i++) {
  4461. if (ctx->config[i] != NULL)
  4462. free(ctx->config[i]);
  4463. }
  4464. #ifndef NO_SSL
  4465. // Deallocate SSL context
  4466. if (ctx->ssl_ctx != NULL) {
  4467. SSL_CTX_free(ctx->ssl_ctx);
  4468. }
  4469. if (ssl_mutexes != NULL) {
  4470. free(ssl_mutexes);
  4471. ssl_mutexes = NULL;
  4472. }
  4473. #endif // !NO_SSL
  4474. // Deallocate context itself
  4475. free(ctx);
  4476. }
  4477. void mg_stop(struct mg_context *ctx) {
  4478. ctx->stop_flag = 1;
  4479. // Wait until mg_fini() stops
  4480. while (ctx->stop_flag != 2) {
  4481. (void) mg_sleep(10);
  4482. }
  4483. free_context(ctx);
  4484. #if defined(_WIN32) && !defined(__SYMBIAN32__)
  4485. (void) WSACleanup();
  4486. #endif // _WIN32
  4487. }
  4488. struct mg_context *mg_start(const struct mg_callbacks *callbacks,
  4489. void *user_data,
  4490. const char **options) {
  4491. struct mg_context *ctx;
  4492. const char *name, *value, *default_value;
  4493. int i;
  4494. #if defined(_WIN32) && !defined(__SYMBIAN32__)
  4495. WSADATA data;
  4496. WSAStartup(MAKEWORD(2,2), &data);
  4497. InitializeCriticalSection(&global_log_file_lock);
  4498. #endif // _WIN32
  4499. // Allocate context and initialize reasonable general case defaults.
  4500. // TODO(lsm): do proper error handling here.
  4501. if ((ctx = (struct mg_context *) calloc(1, sizeof(*ctx))) == NULL) {
  4502. return NULL;
  4503. }
  4504. ctx->callbacks = *callbacks;
  4505. ctx->user_data = user_data;
  4506. while (options && (name = *options++) != NULL) {
  4507. if ((i = get_option_index(name)) == -1) {
  4508. cry(fc(ctx), "Invalid option: %s", name);
  4509. free_context(ctx);
  4510. return NULL;
  4511. } else if ((value = *options++) == NULL) {
  4512. cry(fc(ctx), "%s: option value cannot be NULL", name);
  4513. free_context(ctx);
  4514. return NULL;
  4515. }
  4516. if (ctx->config[i] != NULL) {
  4517. cry(fc(ctx), "warning: %s: duplicate option", name);
  4518. free(ctx->config[i]);
  4519. }
  4520. ctx->config[i] = mg_strdup(value);
  4521. DEBUG_TRACE(("[%s] -> [%s]", name, value));
  4522. }
  4523. // Set default value if needed
  4524. for (i = 0; config_options[i * 2] != NULL; i++) {
  4525. default_value = config_options[i * 2 + 1];
  4526. if (ctx->config[i] == NULL && default_value != NULL) {
  4527. ctx->config[i] = mg_strdup(default_value);
  4528. }
  4529. }
  4530. // NOTE(lsm): order is important here. SSL certificates must
  4531. // be initialized before listening ports. UID must be set last.
  4532. if (!set_gpass_option(ctx) ||
  4533. #if !defined(NO_SSL)
  4534. !set_ssl_option(ctx) ||
  4535. #endif
  4536. !set_ports_option(ctx) ||
  4537. #if !defined(_WIN32)
  4538. !set_uid_option(ctx) ||
  4539. #endif
  4540. !set_acl_option(ctx)) {
  4541. free_context(ctx);
  4542. return NULL;
  4543. }
  4544. #if !defined(_WIN32) && !defined(__SYMBIAN32__)
  4545. // Ignore SIGPIPE signal, so if browser cancels the request, it
  4546. // won't kill the whole process.
  4547. (void) signal(SIGPIPE, SIG_IGN);
  4548. // Also ignoring SIGCHLD to let the OS to reap zombies properly.
  4549. (void) signal(SIGCHLD, SIG_IGN);
  4550. #endif // !_WIN32
  4551. (void) pthread_mutex_init(&ctx->mutex, NULL);
  4552. (void) pthread_cond_init(&ctx->cond, NULL);
  4553. (void) pthread_cond_init(&ctx->sq_empty, NULL);
  4554. (void) pthread_cond_init(&ctx->sq_full, NULL);
  4555. // Start master (listening) thread
  4556. mg_start_thread(master_thread, ctx);
  4557. // Start worker threads
  4558. for (i = 0; i < atoi(ctx->config[NUM_THREADS]); i++) {
  4559. if (mg_start_thread(worker_thread, ctx) != 0) {
  4560. cry(fc(ctx), "Cannot start worker thread: %ld", (long) ERRNO);
  4561. } else {
  4562. ctx->num_threads++;
  4563. }
  4564. }
  4565. return ctx;
  4566. }