mongoose.c 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095
  1. // Copyright (c) 2004-2010 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. #if defined(_WIN32)
  21. #define _CRT_SECURE_NO_WARNINGS // Disable deprecation warning in VS2005
  22. #else
  23. #define _XOPEN_SOURCE 600 // For flockfile() on Linux
  24. #define _LARGEFILE_SOURCE // Enable 64-bit file offsets
  25. #endif
  26. #ifndef _WIN32_WCE // Some ANSI #includes are not available on Windows CE
  27. #include <sys/types.h>
  28. #include <sys/stat.h>
  29. #include <errno.h>
  30. #include <signal.h>
  31. #include <fcntl.h>
  32. #endif // !_WIN32_WCE
  33. #include <time.h>
  34. #include <stdlib.h>
  35. #include <stdarg.h>
  36. #include <assert.h>
  37. #include <string.h>
  38. #include <ctype.h>
  39. #include <limits.h>
  40. #include <stddef.h>
  41. #include <stdio.h>
  42. #if defined(_WIN32) // Windows specific #includes and #defines
  43. #define _WIN32_WINNT 0x0400 // To make it link in VS2005
  44. #include <windows.h>
  45. #ifndef PATH_MAX
  46. #define PATH_MAX MAX_PATH
  47. #endif
  48. #ifndef _WIN32_WCE
  49. #include <process.h>
  50. #include <direct.h>
  51. #include <io.h>
  52. #else // _WIN32_WCE
  53. #include <winsock2.h>
  54. #define NO_CGI // WinCE has no pipes
  55. typedef long off_t;
  56. #define BUFSIZ 4096
  57. #define errno GetLastError()
  58. #define strerror(x) _ultoa(x, (char *) _alloca(sizeof(x) *3 ), 10)
  59. #endif // _WIN32_WCE
  60. #define MAKEUQUAD(lo, hi) ((uint64_t)(((uint32_t)(lo)) | \
  61. ((uint64_t)((uint32_t)(hi))) << 32))
  62. #define RATE_DIFF 10000000 // 100 nsecs
  63. #define EPOCH_DIFF MAKEUQUAD(0xd53e8000, 0x019db1de)
  64. #define SYS2UNIX_TIME(lo, hi) \
  65. (time_t) ((MAKEUQUAD((lo), (hi)) - EPOCH_DIFF) / RATE_DIFF)
  66. // Visual Studio 6 does not know __func__ or __FUNCTION__
  67. // The rest of MS compilers use __FUNCTION__, not C99 __func__
  68. // Also use _strtoui64 on modern M$ compilers
  69. #if defined(_MSC_VER) && _MSC_VER < 1300
  70. #define STRX(x) #x
  71. #define STR(x) STRX(x)
  72. #define __func__ "line " STR(__LINE__)
  73. #define strtoull(x, y, z) strtoul(x, y, z)
  74. #define strtoll(x, y, z) strtol(x, y, z)
  75. #else
  76. #define __func__ __FUNCTION__
  77. #define strtoull(x, y, z) _strtoui64(x, y, z)
  78. #define strtoll(x, y, z) _strtoi64(x, y, z)
  79. #endif // _MSC_VER
  80. #define ERRNO GetLastError()
  81. #define NO_SOCKLEN_T
  82. #define SSL_LIB "ssleay32.dll"
  83. #define CRYPTO_LIB "libeay32.dll"
  84. #define DIRSEP '\\'
  85. #define IS_DIRSEP_CHAR(c) ((c) == '/' || (c) == '\\')
  86. #define O_NONBLOCK 0
  87. #if !defined(EWOULDBLOCK)
  88. #define EWOULDBLOCK WSAEWOULDBLOCK
  89. #endif // !EWOULDBLOCK
  90. #define _POSIX_
  91. #define INT64_FMT "I64d"
  92. #define WINCDECL __cdecl
  93. #define SHUT_WR 1
  94. #define snprintf _snprintf
  95. #define vsnprintf _vsnprintf
  96. #define sleep(x) Sleep((x) * 1000)
  97. #define pipe(x) _pipe(x, BUFSIZ, _O_BINARY)
  98. #define popen(x, y) _popen(x, y)
  99. #define pclose(x) _pclose(x)
  100. #define close(x) _close(x)
  101. #define dlsym(x,y) GetProcAddress((HINSTANCE) (x), (y))
  102. #define RTLD_LAZY 0
  103. #define fseeko(x, y, z) fseek((x), (y), (z))
  104. #define fdopen(x, y) _fdopen((x), (y))
  105. #define write(x, y, z) _write((x), (y), (unsigned) z)
  106. #define read(x, y, z) _read((x), (y), (unsigned) z)
  107. #define flockfile(x) (void) 0
  108. #define funlockfile(x) (void) 0
  109. #if !defined(fileno)
  110. #define fileno(x) _fileno(x)
  111. #endif // !fileno MINGW #defines fileno
  112. typedef HANDLE pthread_mutex_t;
  113. typedef struct {HANDLE signal, broadcast;} pthread_cond_t;
  114. typedef DWORD pthread_t;
  115. #define pid_t HANDLE // MINGW typedefs pid_t to int. Using #define here.
  116. struct timespec {
  117. long tv_nsec;
  118. long tv_sec;
  119. };
  120. static int pthread_mutex_lock(pthread_mutex_t *);
  121. static int pthread_mutex_unlock(pthread_mutex_t *);
  122. static FILE *mg_fopen(const char *path, const char *mode);
  123. #if defined(HAVE_STDINT)
  124. #include <stdint.h>
  125. #else
  126. typedef unsigned int uint32_t;
  127. typedef unsigned short uint16_t;
  128. typedef unsigned __int64 uint64_t;
  129. typedef __int64 int64_t;
  130. #define INT64_MAX 9223372036854775807
  131. #endif // HAVE_STDINT
  132. // POSIX dirent interface
  133. struct dirent {
  134. char d_name[PATH_MAX];
  135. };
  136. typedef struct DIR {
  137. HANDLE handle;
  138. WIN32_FIND_DATAW info;
  139. struct dirent result;
  140. } DIR;
  141. #else // UNIX specific
  142. #include <sys/wait.h>
  143. #include <sys/socket.h>
  144. #include <sys/select.h>
  145. #include <netinet/in.h>
  146. #include <arpa/inet.h>
  147. #include <sys/time.h>
  148. #include <stdint.h>
  149. #include <inttypes.h>
  150. #include <netdb.h>
  151. #include <pwd.h>
  152. #include <unistd.h>
  153. #include <dirent.h>
  154. #if !defined(NO_SSL_DL) && !defined(NO_SSL)
  155. #include <dlfcn.h>
  156. #endif
  157. #include <pthread.h>
  158. #if defined(__MACH__)
  159. #define SSL_LIB "libssl.dylib"
  160. #define CRYPTO_LIB "libcrypto.dylib"
  161. #else
  162. #if !defined(SSL_LIB)
  163. #define SSL_LIB "libssl.so"
  164. #endif
  165. #if !defined(CRYPTO_LIB)
  166. #define CRYPTO_LIB "libcrypto.so"
  167. #endif
  168. #endif
  169. #define DIRSEP '/'
  170. #define IS_DIRSEP_CHAR(c) ((c) == '/')
  171. #define O_BINARY 0
  172. #define closesocket(a) close(a)
  173. #define mg_fopen(x, y) fopen(x, y)
  174. #define mg_mkdir(x, y) mkdir(x, y)
  175. #define mg_remove(x) remove(x)
  176. #define mg_rename(x, y) rename(x, y)
  177. #define ERRNO errno
  178. #define INVALID_SOCKET (-1)
  179. #define INT64_FMT PRId64
  180. typedef int SOCKET;
  181. #define WINCDECL
  182. #endif // End of Windows and UNIX specific includes
  183. #include "mongoose.h"
  184. #define MONGOOSE_VERSION "3.0"
  185. #define PASSWORDS_FILE_NAME ".htpasswd"
  186. #define CGI_ENVIRONMENT_SIZE 4096
  187. #define MAX_CGI_ENVIR_VARS 64
  188. #define ARRAY_SIZE(array) (sizeof(array) / sizeof(array[0]))
  189. #if defined(DEBUG)
  190. #define DEBUG_TRACE(x) do { \
  191. flockfile(stdout); \
  192. printf("*** %lu.%p.%s.%d: ", \
  193. (unsigned long) time(NULL), (void *) pthread_self(), \
  194. __func__, __LINE__); \
  195. printf x; \
  196. putchar('\n'); \
  197. fflush(stdout); \
  198. funlockfile(stdout); \
  199. } while (0)
  200. #else
  201. #define DEBUG_TRACE(x)
  202. #endif // DEBUG
  203. // Darwin prior to 7.0 and Win32 do not have socklen_t
  204. #ifdef NO_SOCKLEN_T
  205. typedef int socklen_t;
  206. #endif // NO_SOCKLEN_T
  207. typedef void * (*mg_thread_func_t)(void *);
  208. static const char *http_500_error = "Internal Server Error";
  209. // Snatched from OpenSSL includes. I put the prototypes here to be independent
  210. // from the OpenSSL source installation. Having this, mongoose + SSL can be
  211. // built on any system with binary SSL libraries installed.
  212. typedef struct ssl_st SSL;
  213. typedef struct ssl_method_st SSL_METHOD;
  214. typedef struct ssl_ctx_st SSL_CTX;
  215. #define SSL_ERROR_WANT_READ 2
  216. #define SSL_ERROR_WANT_WRITE 3
  217. #define SSL_FILETYPE_PEM 1
  218. #define CRYPTO_LOCK 1
  219. #if defined(NO_SSL_DL)
  220. extern void SSL_free(SSL *);
  221. extern int SSL_accept(SSL *);
  222. extern int SSL_connect(SSL *);
  223. extern int SSL_read(SSL *, void *, int);
  224. extern int SSL_write(SSL *, const void *, int);
  225. extern int SSL_get_error(const SSL *, int);
  226. extern int SSL_set_fd(SSL *, int);
  227. extern SSL *SSL_new(SSL_CTX *);
  228. extern SSL_CTX *SSL_CTX_new(SSL_METHOD *);
  229. extern SSL_METHOD *SSLv23_server_method(void);
  230. extern int SSL_library_init(void);
  231. extern void SSL_load_error_strings(void);
  232. extern int SSL_CTX_use_PrivateKey_file(SSL_CTX *, const char *, int);
  233. extern int SSL_CTX_use_certificate_file(SSL_CTX *, const char *, int);
  234. extern int SSL_CTX_use_certificate_chain_file(SSL_CTX *, const char *);
  235. extern void SSL_CTX_set_default_passwd_cb(SSL_CTX *, mg_callback_t);
  236. extern void SSL_CTX_free(SSL_CTX *);
  237. extern unsigned long ERR_get_error(void);
  238. extern char *ERR_error_string(unsigned long, char *);
  239. extern int CRYPTO_num_locks(void);
  240. extern void CRYPTO_set_locking_callback(void (*)(int, int, const char *, int));
  241. extern void CRYPTO_set_id_callback(unsigned long (*)(void));
  242. #else
  243. // Dynamically loaded SSL functionality
  244. struct ssl_func {
  245. const char *name; // SSL function name
  246. void (*ptr)(void); // Function pointer
  247. };
  248. #define SSL_free (* (void (*)(SSL *)) ssl_sw[0].ptr)
  249. #define SSL_accept (* (int (*)(SSL *)) ssl_sw[1].ptr)
  250. #define SSL_connect (* (int (*)(SSL *)) ssl_sw[2].ptr)
  251. #define SSL_read (* (int (*)(SSL *, void *, int)) ssl_sw[3].ptr)
  252. #define SSL_write (* (int (*)(SSL *, const void *,int)) ssl_sw[4].ptr)
  253. #define SSL_get_error (* (int (*)(SSL *, int)) ssl_sw[5])
  254. #define SSL_set_fd (* (int (*)(SSL *, SOCKET)) ssl_sw[6].ptr)
  255. #define SSL_new (* (SSL * (*)(SSL_CTX *)) ssl_sw[7].ptr)
  256. #define SSL_CTX_new (* (SSL_CTX * (*)(SSL_METHOD *)) ssl_sw[8].ptr)
  257. #define SSLv23_server_method (* (SSL_METHOD * (*)(void)) ssl_sw[9].ptr)
  258. #define SSL_library_init (* (int (*)(void)) ssl_sw[10].ptr)
  259. #define SSL_CTX_use_PrivateKey_file (* (int (*)(SSL_CTX *, \
  260. const char *, int)) ssl_sw[11].ptr)
  261. #define SSL_CTX_use_certificate_file (* (int (*)(SSL_CTX *, \
  262. const char *, int)) ssl_sw[12].ptr)
  263. #define SSL_CTX_set_default_passwd_cb \
  264. (* (void (*)(SSL_CTX *, mg_callback_t)) ssl_sw[13].ptr)
  265. #define SSL_CTX_free (* (void (*)(SSL_CTX *)) ssl_sw[14].ptr)
  266. #define SSL_load_error_strings (* (void (*)(void)) ssl_sw[15].ptr)
  267. #define SSL_CTX_use_certificate_chain_file \
  268. (* (int (*)(SSL_CTX *, const char *)) ssl_sw[16].ptr)
  269. #define CRYPTO_num_locks (* (int (*)(void)) crypto_sw[0].ptr)
  270. #define CRYPTO_set_locking_callback \
  271. (* (void (*)(void (*)(int, int, const char *, int))) crypto_sw[1].ptr)
  272. #define CRYPTO_set_id_callback \
  273. (* (void (*)(unsigned long (*)(void))) crypto_sw[2].ptr)
  274. #define ERR_get_error (* (unsigned long (*)(void)) ssl_sw[3].ptr)
  275. #define ERR_error_string (* (char * (*)(unsigned long, char *)) ssl_sw[4].ptr)
  276. // set_ssl_option() function updates this array.
  277. // It loads SSL library dynamically and changes NULLs to the actual addresses
  278. // of respective functions. The macros above (like SSL_connect()) are really
  279. // just calling these functions indirectly via the pointer.
  280. static struct ssl_func ssl_sw[] = {
  281. {"SSL_free", NULL},
  282. {"SSL_accept", NULL},
  283. {"SSL_connect", NULL},
  284. {"SSL_read", NULL},
  285. {"SSL_write", NULL},
  286. {"SSL_get_error", NULL},
  287. {"SSL_set_fd", NULL},
  288. {"SSL_new", NULL},
  289. {"SSL_CTX_new", NULL},
  290. {"SSLv23_server_method", NULL},
  291. {"SSL_library_init", NULL},
  292. {"SSL_CTX_use_PrivateKey_file", NULL},
  293. {"SSL_CTX_use_certificate_file",NULL},
  294. {"SSL_CTX_set_default_passwd_cb",NULL},
  295. {"SSL_CTX_free", NULL},
  296. {"SSL_load_error_strings", NULL},
  297. {"SSL_CTX_use_certificate_chain_file", NULL},
  298. {NULL, NULL}
  299. };
  300. // Similar array as ssl_sw. These functions could be located in different lib.
  301. static struct ssl_func crypto_sw[] = {
  302. {"CRYPTO_num_locks", NULL},
  303. {"CRYPTO_set_locking_callback", NULL},
  304. {"CRYPTO_set_id_callback", NULL},
  305. {"ERR_get_error", NULL},
  306. {"ERR_error_string", NULL},
  307. {NULL, NULL}
  308. };
  309. #endif // NO_SSL_DL
  310. static const char *month_names[] = {
  311. "Jan", "Feb", "Mar", "Apr", "May", "Jun",
  312. "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
  313. };
  314. // Unified socket address. For IPv6 support, add IPv6 address structure
  315. // in the union u.
  316. struct usa {
  317. socklen_t len;
  318. union {
  319. struct sockaddr sa;
  320. struct sockaddr_in sin;
  321. } u;
  322. };
  323. // Describes a string (chunk of memory).
  324. struct vec {
  325. const char *ptr;
  326. size_t len;
  327. };
  328. // Structure used by mg_stat() function. Uses 64 bit file length.
  329. struct mgstat {
  330. int is_directory; // Directory marker
  331. int64_t size; // File size
  332. time_t mtime; // Modification time
  333. };
  334. // Describes listening socket, or socket which was accept()-ed by the master
  335. // thread and queued for future handling by the worker thread.
  336. struct socket {
  337. struct socket *next; // Linkage
  338. SOCKET sock; // Listening socket
  339. struct usa lsa; // Local socket address
  340. struct usa rsa; // Remote socket address
  341. int is_ssl; // Is socket SSL-ed
  342. int is_proxy;
  343. };
  344. enum {
  345. CGI_EXTENSIONS, CGI_ENVIRONMENT, PUT_DELETE_PASSWORDS_FILE, CGI_INTERPRETER,
  346. PROTECT_URI, AUTHENTICATION_DOMAIN, SSI_EXTENSIONS, ACCESS_LOG_FILE,
  347. SSL_CHAIN_FILE, ENABLE_DIRECTORY_LISTING, ERROR_LOG_FILE,
  348. GLOBAL_PASSWORDS_FILE, INDEX_FILES,
  349. ENABLE_KEEP_ALIVE, ACCESS_CONTROL_LIST, MAX_REQUEST_SIZE,
  350. EXTRA_MIME_TYPES, LISTENING_PORTS,
  351. DOCUMENT_ROOT, SSL_CERTIFICATE, NUM_THREADS, RUN_AS_USER,
  352. NUM_OPTIONS
  353. };
  354. static const char *config_options[] = {
  355. "C", "cgi_extensions", ".cgi,.pl,.php",
  356. "E", "cgi_environment", NULL,
  357. "G", "put_delete_passwords_file", NULL,
  358. "I", "cgi_interpreter", NULL,
  359. "P", "protect_uri", NULL,
  360. "R", "authentication_domain", "mydomain.com",
  361. "S", "ssi_extensions", ".shtml,.shtm",
  362. "a", "access_log_file", NULL,
  363. "c", "ssl_chain_file", NULL,
  364. "d", "enable_directory_listing", "yes",
  365. "e", "error_log_file", NULL,
  366. "g", "global_passwords_file", NULL,
  367. "i", "index_files", "index.html,index.htm,index.cgi",
  368. "k", "enable_keep_alive", "no",
  369. "l", "access_control_list", NULL,
  370. "M", "max_request_size", "16384",
  371. "m", "extra_mime_types", NULL,
  372. "p", "listening_ports", "8080",
  373. "r", "document_root", ".",
  374. "s", "ssl_certificate", NULL,
  375. "t", "num_threads", "10",
  376. "u", "run_as_user", NULL,
  377. NULL
  378. };
  379. #define ENTRIES_PER_CONFIG_OPTION 3
  380. struct mg_context {
  381. int stop_flag; // Should we stop event loop
  382. SSL_CTX *ssl_ctx; // SSL context
  383. char *config[NUM_OPTIONS]; // Mongoose configuration parameters
  384. mg_callback_t user_callback; // User-defined callback function
  385. void *user_data; // User-defined data
  386. struct socket *listening_sockets;
  387. int num_threads; // Number of threads
  388. pthread_mutex_t mutex; // Protects (max|num)_threads
  389. pthread_cond_t cond; // Condvar for tracking workers terminations
  390. struct socket queue[20]; // Accepted sockets
  391. int sq_head; // Head of the socket queue
  392. int sq_tail; // Tail of the socket queue
  393. pthread_cond_t sq_full; // Singaled when socket is produced
  394. pthread_cond_t sq_empty; // Signaled when socket is consumed
  395. };
  396. struct mg_connection {
  397. struct mg_connection *peer; // Remote target in proxy mode
  398. struct mg_request_info request_info;
  399. struct mg_context *ctx;
  400. SSL *ssl; // SSL descriptor
  401. struct socket client; // Connected client
  402. time_t birth_time; // Time connection was accepted
  403. int64_t num_bytes_sent; // Total bytes sent to client
  404. int64_t content_len; // Content-Length header value
  405. int64_t consumed_content; // How many bytes of content is already read
  406. char *buf; // Buffer for received data
  407. int buf_size; // Buffer size
  408. int request_len; // Size of the request + headers in a buffer
  409. int data_len; // Total size of data in a buffer
  410. };
  411. const char **mg_get_valid_option_names(void) {
  412. return config_options;
  413. }
  414. static void *call_user(struct mg_connection *conn, enum mg_event event) {
  415. conn->request_info.user_data = conn->ctx->user_data;
  416. return conn->ctx->user_callback == NULL ? NULL :
  417. conn->ctx->user_callback(event, conn, &conn->request_info);
  418. }
  419. static int get_option_index(const char *name) {
  420. int i;
  421. for (i = 0; config_options[i] != NULL; i += ENTRIES_PER_CONFIG_OPTION) {
  422. if (strcmp(config_options[i], name) == 0 ||
  423. strcmp(config_options[i + 1], name) == 0) {
  424. return i / ENTRIES_PER_CONFIG_OPTION;
  425. }
  426. }
  427. return -1;
  428. }
  429. const char *mg_get_option(const struct mg_context *ctx, const char *name) {
  430. int i;
  431. if ((i = get_option_index(name)) == -1) {
  432. return NULL;
  433. } else if (ctx->config[i] == NULL) {
  434. return "";
  435. } else {
  436. return ctx->config[i];
  437. }
  438. }
  439. // Print error message to the opened error log stream.
  440. static void cry(struct mg_connection *conn, const char *fmt, ...) {
  441. char buf[BUFSIZ];
  442. va_list ap;
  443. FILE *fp;
  444. time_t timestamp;
  445. va_start(ap, fmt);
  446. (void) vsnprintf(buf, sizeof(buf), fmt, ap);
  447. va_end(ap);
  448. // Do not lock when getting the callback value, here and below.
  449. // I suppose this is fine, since function cannot disappear in the
  450. // same way string option can.
  451. conn->request_info.log_message = buf;
  452. if (call_user(conn, MG_EVENT_LOG) == NULL) {
  453. fp = conn->ctx->config[ERROR_LOG_FILE] == NULL ? NULL :
  454. mg_fopen(conn->ctx->config[ERROR_LOG_FILE], "a+");
  455. if (fp != NULL) {
  456. flockfile(fp);
  457. timestamp = time(NULL);
  458. (void) fprintf(fp,
  459. "[%010lu] [error] [client %s] ",
  460. (unsigned long) timestamp,
  461. inet_ntoa(conn->client.rsa.u.sin.sin_addr));
  462. if (conn->request_info.request_method != NULL) {
  463. (void) fprintf(fp, "%s %s: ",
  464. conn->request_info.request_method,
  465. conn->request_info.uri);
  466. }
  467. (void) fprintf(fp, "%s", buf);
  468. fputc('\n', fp);
  469. funlockfile(fp);
  470. if (fp != stderr) {
  471. fclose(fp);
  472. }
  473. }
  474. }
  475. conn->request_info.log_message = NULL;
  476. }
  477. // Return OpenSSL error message
  478. static const char *ssl_error(void) {
  479. unsigned long err;
  480. err = ERR_get_error();
  481. return err == 0 ? "" : ERR_error_string(err, NULL);
  482. }
  483. // Return fake connection structure. Used for logging, if connection
  484. // is not applicable at the moment of logging.
  485. static struct mg_connection *fc(struct mg_context *ctx) {
  486. static struct mg_connection fake_connection;
  487. fake_connection.ctx = ctx;
  488. return &fake_connection;
  489. }
  490. const char *mg_version(void) {
  491. return MONGOOSE_VERSION;
  492. }
  493. static void mg_strlcpy(register char *dst, register const char *src, size_t n) {
  494. for (; *src != '\0' && n > 1; n--) {
  495. *dst++ = *src++;
  496. }
  497. *dst = '\0';
  498. }
  499. static int lowercase(const char *s) {
  500. return tolower(* (const unsigned char *) s);
  501. }
  502. static int mg_strncasecmp(const char *s1, const char *s2, size_t len) {
  503. int diff = 0;
  504. if (len > 0)
  505. do {
  506. diff = lowercase(s1++) - lowercase(s2++);
  507. } while (diff == 0 && s1[-1] != '\0' && --len > 0);
  508. return diff;
  509. }
  510. static int mg_strcasecmp(const char *s1, const char *s2) {
  511. int diff;
  512. do {
  513. diff = lowercase(s1++) - lowercase(s2++);
  514. } while (diff == 0 && s1[-1] != '\0');
  515. return diff;
  516. }
  517. static char * mg_strndup(const char *ptr, size_t len) {
  518. char *p;
  519. if ((p = (char *) malloc(len + 1)) != NULL) {
  520. mg_strlcpy(p, ptr, len + 1);
  521. }
  522. return p;
  523. }
  524. static char * mg_strdup(const char *str) {
  525. return mg_strndup(str, strlen(str));
  526. }
  527. // Like snprintf(), but never returns negative value, or the value
  528. // that is larger than a supplied buffer.
  529. // Thanks to Adam Zeldis to pointing snprintf()-caused vulnerability
  530. // in his audit report.
  531. static int mg_vsnprintf(struct mg_connection *conn, char *buf, size_t buflen,
  532. const char *fmt, va_list ap) {
  533. int n;
  534. if (buflen == 0)
  535. return 0;
  536. n = vsnprintf(buf, buflen, fmt, ap);
  537. if (n < 0) {
  538. cry(conn, "vsnprintf error");
  539. n = 0;
  540. } else if (n >= (int) buflen) {
  541. cry(conn, "truncating vsnprintf buffer: [%.*s]",
  542. n > 200 ? 200 : n, buf);
  543. n = (int) buflen - 1;
  544. }
  545. buf[n] = '\0';
  546. return n;
  547. }
  548. static int mg_snprintf(struct mg_connection *conn, char *buf, size_t buflen,
  549. const char *fmt, ...) {
  550. va_list ap;
  551. int n;
  552. va_start(ap, fmt);
  553. n = mg_vsnprintf(conn, buf, buflen, fmt, ap);
  554. va_end(ap);
  555. return n;
  556. }
  557. // Skip the characters until one of the delimiters characters found.
  558. // 0-terminate resulting word. Skip the rest of the delimiters if any.
  559. // Advance pointer to buffer to the next word. Return found 0-terminated word.
  560. static char *skip(char **buf, const char *delimiters) {
  561. char *p, *begin_word, *end_word, *end_delimiters;
  562. begin_word = *buf;
  563. end_word = begin_word + strcspn(begin_word, delimiters);
  564. end_delimiters = end_word + strspn(end_word, delimiters);
  565. for (p = end_word; p < end_delimiters; p++) {
  566. *p = '\0';
  567. }
  568. *buf = end_delimiters;
  569. return begin_word;
  570. }
  571. // Return HTTP header value, or NULL if not found.
  572. static const char *get_header(const struct mg_request_info *ri,
  573. const char *name) {
  574. int i;
  575. for (i = 0; i < ri->num_headers; i++)
  576. if (!mg_strcasecmp(name, ri->http_headers[i].name))
  577. return ri->http_headers[i].value;
  578. return NULL;
  579. }
  580. const char *mg_get_header(const struct mg_connection *conn, const char *name) {
  581. return get_header(&conn->request_info, name);
  582. }
  583. // A helper function for traversing comma separated list of values.
  584. // It returns a list pointer shifted to the next value, of NULL if the end
  585. // of the list found.
  586. // Value is stored in val vector. If value has form "x=y", then eq_val
  587. // vector is initialized to point to the "y" part, and val vector length
  588. // is adjusted to point only to "x".
  589. static const char *next_option(const char *list, struct vec *val,
  590. struct vec *eq_val) {
  591. if (list == NULL || *list == '\0') {
  592. /* End of the list */
  593. list = NULL;
  594. } else {
  595. val->ptr = list;
  596. if ((list = strchr(val->ptr, ',')) != NULL) {
  597. /* Comma found. Store length and shift the list ptr */
  598. val->len = list - val->ptr;
  599. list++;
  600. } else {
  601. /* This value is the last one */
  602. list = val->ptr + strlen(val->ptr);
  603. val->len = list - val->ptr;
  604. }
  605. if (eq_val != NULL) {
  606. /*
  607. * Value has form "x=y", adjust pointers and lengths
  608. * so that val points to "x", and eq_val points to "y".
  609. */
  610. eq_val->len = 0;
  611. eq_val->ptr = memchr(val->ptr, '=', val->len);
  612. if (eq_val->ptr != NULL) {
  613. eq_val->ptr++; /* Skip over '=' character */
  614. eq_val->len = val->ptr + val->len - eq_val->ptr;
  615. val->len = (eq_val->ptr - val->ptr) - 1;
  616. }
  617. }
  618. }
  619. return list;
  620. }
  621. #if !defined(NO_CGI)
  622. static int match_extension(const char *path, const char *ext_list) {
  623. struct vec ext_vec;
  624. size_t path_len;
  625. path_len = strlen(path);
  626. while ((ext_list = next_option(ext_list, &ext_vec, NULL)) != NULL)
  627. if (ext_vec.len < path_len &&
  628. mg_strncasecmp(path + path_len - ext_vec.len,
  629. ext_vec.ptr, ext_vec.len) == 0)
  630. return 1;
  631. return 0;
  632. }
  633. #endif // !NO_CGI
  634. // HTTP 1.1 assumes keep alive if "Connection:" header is not set
  635. // This function must tolerate situations when connection info is not
  636. // set up, for example if request parsing failed.
  637. static int should_keep_alive(const struct mg_connection *conn) {
  638. const char *http_version = conn->request_info.http_version;
  639. const char *header = mg_get_header(conn, "Connection");
  640. return (header == NULL && http_version && !strcmp(http_version, "1.1")) ||
  641. (header != NULL && !mg_strcasecmp(header, "keep-alive"));
  642. }
  643. static const char *suggest_connection_header(const struct mg_connection *conn) {
  644. return should_keep_alive(conn) ? "keep-alive" : "close";
  645. }
  646. static void send_http_error(struct mg_connection *conn, int status,
  647. const char *reason, const char *fmt, ...) {
  648. char buf[BUFSIZ];
  649. va_list ap;
  650. int len;
  651. conn->request_info.status_code = status;
  652. if (call_user(conn, MG_HTTP_ERROR) == NULL) {
  653. buf[0] = '\0';
  654. len = 0;
  655. /* Errors 1xx, 204 and 304 MUST NOT send a body */
  656. if (status > 199 && status != 204 && status != 304) {
  657. len = mg_snprintf(conn, buf, sizeof(buf), "Error %d: %s", status, reason);
  658. cry(conn, "%s", buf);
  659. buf[len++] = '\n';
  660. va_start(ap, fmt);
  661. len += mg_vsnprintf(conn, buf + len, sizeof(buf) - len, fmt, ap);
  662. va_end(ap);
  663. }
  664. DEBUG_TRACE(("[%s]", buf));
  665. mg_printf(conn, "HTTP/1.1 %d %s\r\n"
  666. "Content-Type: text/plain\r\n"
  667. "Content-Length: %d\r\n"
  668. "Connection: %s\r\n\r\n", status, reason, len,
  669. suggest_connection_header(conn));
  670. conn->num_bytes_sent += mg_printf(conn, "%s", buf);
  671. }
  672. }
  673. #ifdef _WIN32
  674. static int pthread_mutex_init(pthread_mutex_t *mutex, void *unused) {
  675. unused = NULL;
  676. *mutex = CreateMutex(NULL, FALSE, NULL);
  677. return *mutex == NULL ? -1 : 0;
  678. }
  679. static int pthread_mutex_destroy(pthread_mutex_t *mutex) {
  680. return CloseHandle(*mutex) == 0 ? -1 : 0;
  681. }
  682. static int pthread_mutex_lock(pthread_mutex_t *mutex) {
  683. return WaitForSingleObject(*mutex, INFINITE) == WAIT_OBJECT_0? 0 : -1;
  684. }
  685. static int pthread_mutex_unlock(pthread_mutex_t *mutex) {
  686. return ReleaseMutex(*mutex) == 0 ? -1 : 0;
  687. }
  688. static int pthread_cond_init(pthread_cond_t *cv, const void *unused) {
  689. unused = NULL;
  690. cv->signal = CreateEvent(NULL, FALSE, FALSE, NULL);
  691. cv->broadcast = CreateEvent(NULL, TRUE, FALSE, NULL);
  692. return cv->signal != NULL && cv->broadcast != NULL ? 0 : -1;
  693. }
  694. static int pthread_cond_wait(pthread_cond_t *cv, pthread_mutex_t *mutex) {
  695. HANDLE handles[] = {cv->signal, cv->broadcast};
  696. ReleaseMutex(*mutex);
  697. WaitForMultipleObjects(2, handles, FALSE, INFINITE);
  698. return ReleaseMutex(*mutex) == 0 ? -1 : 0;
  699. }
  700. static int pthread_cond_signal(pthread_cond_t *cv) {
  701. return SetEvent(cv->signal) == 0 ? -1 : 0;
  702. }
  703. static int pthread_cond_broadcast(pthread_cond_t *cv) {
  704. // Implementation with PulseEvent() has race condition, see
  705. // http://www.cs.wustl.edu/~schmidt/win32-cv-1.html
  706. return PulseEvent(cv->broadcast) == 0 ? -1 : 0;
  707. }
  708. static int pthread_cond_destroy(pthread_cond_t *cv) {
  709. return CloseHandle(cv->signal) && CloseHandle(cv->broadcast) ? 0 : -1;
  710. }
  711. static pthread_t pthread_self(void) {
  712. return GetCurrentThreadId();
  713. }
  714. // For Windows, change all slashes to backslashes in path names.
  715. static void change_slashes_to_backslashes(char *path) {
  716. int i;
  717. for (i = 0; path[i] != '\0'; i++) {
  718. if (path[i] == '/')
  719. path[i] = '\\';
  720. // i > 0 check is to preserve UNC paths, like \\server\file.txt
  721. if (path[i] == '\\' && i > 0)
  722. while (path[i + 1] == '\\' || path[i + 1] == '/')
  723. (void) memmove(path + i + 1,
  724. path + i + 2, strlen(path + i + 1));
  725. }
  726. }
  727. // Encode 'path' which is assumed UTF-8 string, into UNICODE string.
  728. // wbuf and wbuf_len is a target buffer and its length.
  729. static void to_unicode(const char *path, wchar_t *wbuf, size_t wbuf_len) {
  730. char buf[PATH_MAX], *p;
  731. mg_strlcpy(buf, path, sizeof(buf));
  732. change_slashes_to_backslashes(buf);
  733. // Point p to the end of the file name
  734. p = buf + strlen(buf) - 1;
  735. // Trim trailing backslash character
  736. while (p > buf && *p == '\\' && p[-1] != ':') {
  737. *p-- = '\0';
  738. }
  739. // Protect from CGI code disclosure.
  740. // This is very nasty hole. Windows happily opens files with
  741. // some garbage in the end of file name. So fopen("a.cgi ", "r")
  742. // actually opens "a.cgi", and does not return an error!
  743. if (*p == 0x20 || // No space at the end
  744. (*p == 0x2e && p > buf) || // No '.' but allow '.' as full path
  745. *p == 0x2b || // No '+'
  746. (*p & ~0x7f)) { // And generally no non-ascii chars
  747. (void) fprintf(stderr, "Rejecting suspicious path: [%s]", buf);
  748. buf[0] = '\0';
  749. }
  750. (void) MultiByteToWideChar(CP_UTF8, 0, buf, -1, wbuf, (int) wbuf_len);
  751. }
  752. #if defined(_WIN32_WCE)
  753. static time_t time(time_t *ptime) {
  754. time_t t;
  755. SYSTEMTIME st;
  756. FILETIME ft;
  757. GetSystemTime(&st);
  758. SystemTimeToFileTime(&st, &ft);
  759. t = SYS2UNIX_TIME(ft.dwLowDateTime, ft.dwHighDateTime);
  760. if (ptime != NULL) {
  761. *ptime = t;
  762. }
  763. return t;
  764. }
  765. static time_t mktime(struct tm *ptm) {
  766. SYSTEMTIME st;
  767. FILETIME ft, lft;
  768. st.wYear = ptm->tm_year + 1900;
  769. st.wMonth = ptm->tm_mon + 1;
  770. st.wDay = ptm->tm_mday;
  771. st.wHour = ptm->tm_hour;
  772. st.wMinute = ptm->tm_min;
  773. st.wSecond = ptm->tm_sec;
  774. st.wMilliseconds = 0;
  775. SystemTimeToFileTime(&st, &ft);
  776. LocalFileTimeToFileTime(&ft, &lft);
  777. return (time_t) ((MAKEUQUAD(lft.dwLowDateTime, lft.dwHighDateTime) -
  778. EPOCH_DIFF) / RATE_DIFF);
  779. }
  780. static struct tm *localtime(const time_t *ptime, struct tm *ptm) {
  781. int64_t t = ((int64_t) *ptime) * RATE_DIFF + EPOCH_DIFF;
  782. FILETIME ft, lft;
  783. SYSTEMTIME st;
  784. TIME_ZONE_INFORMATION tzinfo;
  785. if (ptm == NULL) {
  786. return NULL;
  787. }
  788. * (int64_t *) &ft = t;
  789. FileTimeToLocalFileTime(&ft, &lft);
  790. FileTimeToSystemTime(&lft, &st);
  791. ptm->tm_year = st.wYear - 1900;
  792. ptm->tm_mon = st.wMonth - 1;
  793. ptm->tm_wday = st.wDayOfWeek;
  794. ptm->tm_mday = st.wDay;
  795. ptm->tm_hour = st.wHour;
  796. ptm->tm_min = st.wMinute;
  797. ptm->tm_sec = st.wSecond;
  798. ptm->tm_yday = 0; // hope nobody uses this
  799. ptm->tm_isdst =
  800. GetTimeZoneInformation(&tzinfo) == TIME_ZONE_ID_DAYLIGHT ? 1 : 0;
  801. return ptm;
  802. }
  803. static size_t strftime(char *dst, size_t dst_size, const char *fmt,
  804. const struct tm *tm) {
  805. (void) snprintf(dst, dst_size, "implement strftime() for WinCE");
  806. return 0;
  807. }
  808. #endif
  809. static int mg_rename(const char* oldname, const char* newname) {
  810. wchar_t woldbuf[PATH_MAX];
  811. wchar_t wnewbuf[PATH_MAX];
  812. to_unicode(oldname, woldbuf, ARRAY_SIZE(woldbuf));
  813. to_unicode(newname, wnewbuf, ARRAY_SIZE(wnewbuf));
  814. return MoveFileW(woldbuf, wnewbuf) ? 0 : -1;
  815. }
  816. static FILE *mg_fopen(const char *path, const char *mode) {
  817. wchar_t wbuf[PATH_MAX], wmode[20];
  818. to_unicode(path, wbuf, ARRAY_SIZE(wbuf));
  819. MultiByteToWideChar(CP_UTF8, 0, mode, -1, wmode, ARRAY_SIZE(wmode));
  820. return _wfopen(wbuf, wmode);
  821. }
  822. static int mg_stat(const char *path, struct mgstat *stp) {
  823. int ok = -1; // Error
  824. wchar_t wbuf[PATH_MAX];
  825. WIN32_FILE_ATTRIBUTE_DATA info;
  826. to_unicode(path, wbuf, ARRAY_SIZE(wbuf));
  827. if (GetFileAttributesExW(wbuf, GetFileExInfoStandard, &info) != 0) {
  828. stp->size = MAKEUQUAD(info.nFileSizeLow, info.nFileSizeHigh);
  829. stp->mtime = SYS2UNIX_TIME(info.ftLastWriteTime.dwLowDateTime,
  830. info.ftLastWriteTime.dwHighDateTime);
  831. stp->is_directory =
  832. info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
  833. ok = 0; // Success
  834. }
  835. return ok;
  836. }
  837. static int mg_remove(const char *path) {
  838. wchar_t wbuf[PATH_MAX];
  839. to_unicode(path, wbuf, ARRAY_SIZE(wbuf));
  840. return DeleteFileW(wbuf) ? 0 : -1;
  841. }
  842. static int mg_mkdir(const char *path, int mode) {
  843. char buf[PATH_MAX];
  844. wchar_t wbuf[PATH_MAX];
  845. mode = 0; // Unused
  846. mg_strlcpy(buf, path, sizeof(buf));
  847. change_slashes_to_backslashes(buf);
  848. (void) MultiByteToWideChar(CP_UTF8, 0, buf, -1, wbuf, sizeof(wbuf));
  849. return CreateDirectoryW(wbuf, NULL) ? 0 : -1;
  850. }
  851. // Implementation of POSIX opendir/closedir/readdir for Windows.
  852. static DIR * opendir(const char *name) {
  853. DIR *dir = NULL;
  854. wchar_t wpath[PATH_MAX];
  855. DWORD attrs;
  856. if (name == NULL) {
  857. SetLastError(ERROR_BAD_ARGUMENTS);
  858. } else if ((dir = (DIR *) malloc(sizeof(*dir))) == NULL) {
  859. SetLastError(ERROR_NOT_ENOUGH_MEMORY);
  860. } else {
  861. to_unicode(name, wpath, ARRAY_SIZE(wpath));
  862. attrs = GetFileAttributesW(wpath);
  863. if (attrs != 0xFFFFFFFF &&
  864. ((attrs & FILE_ATTRIBUTE_DIRECTORY) == FILE_ATTRIBUTE_DIRECTORY)) {
  865. (void) wcscat(wpath, L"\\*");
  866. dir->handle = FindFirstFileW(wpath, &dir->info);
  867. dir->result.d_name[0] = '\0';
  868. } else {
  869. free(dir);
  870. dir = NULL;
  871. }
  872. }
  873. return dir;
  874. }
  875. static int closedir(DIR *dir) {
  876. int result = 0;
  877. if (dir != NULL) {
  878. if (dir->handle != INVALID_HANDLE_VALUE)
  879. result = FindClose(dir->handle) ? 0 : -1;
  880. free(dir);
  881. } else {
  882. result = -1;
  883. SetLastError(ERROR_BAD_ARGUMENTS);
  884. }
  885. return result;
  886. }
  887. struct dirent * readdir(DIR *dir) {
  888. struct dirent *result = 0;
  889. if (dir) {
  890. if (dir->handle != INVALID_HANDLE_VALUE) {
  891. result = &dir->result;
  892. (void) WideCharToMultiByte(CP_UTF8, 0,
  893. dir->info.cFileName, -1, result->d_name,
  894. sizeof(result->d_name), NULL, NULL);
  895. if (!FindNextFileW(dir->handle, &dir->info)) {
  896. (void) FindClose(dir->handle);
  897. dir->handle = INVALID_HANDLE_VALUE;
  898. }
  899. } else {
  900. SetLastError(ERROR_FILE_NOT_FOUND);
  901. }
  902. } else {
  903. SetLastError(ERROR_BAD_ARGUMENTS);
  904. }
  905. return result;
  906. }
  907. #define set_close_on_exec(fd) // No FD_CLOEXEC on Windows
  908. static int start_thread(struct mg_context *ctx, mg_thread_func_t func,
  909. void *param) {
  910. HANDLE hThread;
  911. ctx = NULL; // Unused
  912. hThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) func, param, 0,
  913. NULL);
  914. if (hThread != NULL) {
  915. (void) CloseHandle(hThread);
  916. }
  917. return hThread == NULL ? -1 : 0;
  918. }
  919. static HANDLE dlopen(const char *dll_name, int flags) {
  920. wchar_t wbuf[PATH_MAX];
  921. flags = 0; // Unused
  922. to_unicode(dll_name, wbuf, ARRAY_SIZE(wbuf));
  923. return LoadLibraryW(wbuf);
  924. }
  925. #if !defined(NO_CGI)
  926. #define SIGKILL 0
  927. static int kill(pid_t pid, int sig_num) {
  928. (void) TerminateProcess(pid, sig_num);
  929. (void) CloseHandle(pid);
  930. return 0;
  931. }
  932. static pid_t spawn_process(struct mg_connection *conn, const char *prog,
  933. char *envblk, char *envp[], int fd_stdin,
  934. int fd_stdout, const char *dir) {
  935. HANDLE me;
  936. char *p, *interp, cmdline[PATH_MAX], buf[PATH_MAX];
  937. FILE *fp;
  938. STARTUPINFOA si;
  939. PROCESS_INFORMATION pi;
  940. envp = NULL; // Unused
  941. (void) memset(&si, 0, sizeof(si));
  942. (void) memset(&pi, 0, sizeof(pi));
  943. // TODO(lsm): redirect CGI errors to the error log file
  944. si.cb = sizeof(si);
  945. si.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
  946. si.wShowWindow = SW_HIDE;
  947. me = GetCurrentProcess();
  948. (void) DuplicateHandle(me, (HANDLE) _get_osfhandle(fd_stdin), me,
  949. &si.hStdInput, 0, TRUE, DUPLICATE_SAME_ACCESS);
  950. (void) DuplicateHandle(me, (HANDLE) _get_osfhandle(fd_stdout), me,
  951. &si.hStdOutput, 0, TRUE, DUPLICATE_SAME_ACCESS);
  952. // If CGI file is a script, try to read the interpreter line
  953. interp = conn->ctx->config[CGI_INTERPRETER];
  954. if (interp == NULL) {
  955. buf[2] = '\0';
  956. if ((fp = fopen(cmdline, "r")) != NULL) {
  957. (void) fgets(buf, sizeof(buf), fp);
  958. if (buf[0] != '#' || buf[1] != '!') {
  959. // First line does not start with "#!". Do not set interpreter.
  960. buf[2] = '\0';
  961. } else {
  962. // Trim whitespaces in interpreter name
  963. for (p = &buf[strlen(buf) - 1]; p > buf && isspace(*p); p--) {
  964. *p = '\0';
  965. }
  966. }
  967. (void) fclose(fp);
  968. }
  969. interp = buf + 2;
  970. }
  971. (void) mg_snprintf(conn, cmdline, sizeof(cmdline), "%s%s%s%c%s",
  972. interp, interp[0] == '\0' ? "" : " ", dir, DIRSEP, prog);
  973. DEBUG_TRACE(("Running [%s]", cmdline));
  974. if (CreateProcessA(NULL, cmdline, NULL, NULL, TRUE,
  975. CREATE_NEW_PROCESS_GROUP, envblk, dir, &si, &pi) == 0) {
  976. cry(conn, "%s: CreateProcess(%s): %d",
  977. __func__, cmdline, ERRNO);
  978. pi.hProcess = (pid_t) -1;
  979. } else {
  980. (void) close(fd_stdin);
  981. (void) close(fd_stdout);
  982. }
  983. (void) CloseHandle(si.hStdOutput);
  984. (void) CloseHandle(si.hStdInput);
  985. (void) CloseHandle(pi.hThread);
  986. return (pid_t) pi.hProcess;
  987. }
  988. #endif /* !NO_CGI */
  989. static int set_non_blocking_mode(SOCKET sock) {
  990. unsigned long on = 1;
  991. return ioctlsocket(sock, FIONBIO, &on);
  992. }
  993. #else
  994. static int mg_stat(const char *path, struct mgstat *stp) {
  995. struct stat st;
  996. int ok;
  997. if (stat(path, &st) == 0) {
  998. ok = 0;
  999. stp->size = st.st_size;
  1000. stp->mtime = st.st_mtime;
  1001. stp->is_directory = S_ISDIR(st.st_mode);
  1002. } else {
  1003. ok = -1;
  1004. }
  1005. return ok;
  1006. }
  1007. static void set_close_on_exec(int fd) {
  1008. (void) fcntl(fd, F_SETFD, FD_CLOEXEC);
  1009. }
  1010. static int start_thread(struct mg_context *ctx, mg_thread_func_t func,
  1011. void *param) {
  1012. pthread_t thread_id;
  1013. pthread_attr_t attr;
  1014. int retval;
  1015. (void) pthread_attr_init(&attr);
  1016. (void) pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
  1017. // TODO(lsm): figure out why mongoose dies on Linux if next line is enabled
  1018. // (void) pthread_attr_setstacksize(&attr, sizeof(struct mg_connection) * 5);
  1019. if ((retval = pthread_create(&thread_id, &attr, func, param)) != 0) {
  1020. cry(fc(ctx), "%s: %s", __func__, strerror(retval));
  1021. }
  1022. return retval;
  1023. }
  1024. #ifndef NO_CGI
  1025. static pid_t spawn_process(struct mg_connection *conn, const char *prog,
  1026. char *envblk, char *envp[], int fd_stdin,
  1027. int fd_stdout, const char *dir) {
  1028. pid_t pid;
  1029. const char *interp;
  1030. envblk = NULL; // Unused
  1031. if ((pid = fork()) == -1) {
  1032. // Parent
  1033. send_http_error(conn, 500, http_500_error, "fork(): %s", strerror(ERRNO));
  1034. } else if (pid == 0) {
  1035. // Child
  1036. if (chdir(dir) != 0) {
  1037. cry(conn, "%s: chdir(%s): %s", __func__, dir, strerror(ERRNO));
  1038. } else if (dup2(fd_stdin, 0) == -1) {
  1039. cry(conn, "%s: dup2(%d, 0): %s", __func__, fd_stdin, strerror(ERRNO));
  1040. } else if (dup2(fd_stdout, 1) == -1) {
  1041. cry(conn, "%s: dup2(%d, 1): %s", __func__, fd_stdout, strerror(ERRNO));
  1042. } else {
  1043. (void) dup2(fd_stdout, 2);
  1044. (void) close(fd_stdin);
  1045. (void) close(fd_stdout);
  1046. // Execute CGI program. No need to lock: new process
  1047. interp = conn->ctx->config[CGI_INTERPRETER];
  1048. if (interp == NULL) {
  1049. (void) execle(prog, prog, NULL, envp);
  1050. cry(conn, "%s: execle(%s): %s", __func__, prog, strerror(ERRNO));
  1051. } else {
  1052. (void) execle(interp, interp, prog, NULL, envp);
  1053. cry(conn, "%s: execle(%s %s): %s", __func__, interp, prog,
  1054. strerror(ERRNO));
  1055. }
  1056. }
  1057. exit(EXIT_FAILURE);
  1058. } else {
  1059. // Parent. Close stdio descriptors
  1060. (void) close(fd_stdin);
  1061. (void) close(fd_stdout);
  1062. }
  1063. return pid;
  1064. }
  1065. #endif // !NO_CGI
  1066. static int set_non_blocking_mode(SOCKET sock) {
  1067. int flags;
  1068. flags = fcntl(sock, F_GETFL, 0);
  1069. (void) fcntl(sock, F_SETFL, flags | O_NONBLOCK);
  1070. return 0;
  1071. }
  1072. #endif // _WIN32
  1073. // Write data to the IO channel - opened file descriptor, socket or SSL
  1074. // descriptor. Return number of bytes written.
  1075. static int64_t push(FILE *fp, SOCKET sock, SSL *ssl, const char *buf,
  1076. int64_t len) {
  1077. int64_t sent;
  1078. int n, k;
  1079. sent = 0;
  1080. while (sent < len) {
  1081. /* How many bytes we send in this iteration */
  1082. k = len - sent > INT_MAX ? INT_MAX : (int) (len - sent);
  1083. if (ssl != NULL) {
  1084. n = SSL_write(ssl, buf + sent, k);
  1085. } else if (fp != NULL) {
  1086. n = fwrite(buf + sent, 1, (size_t)k, fp);
  1087. if (ferror(fp))
  1088. n = -1;
  1089. } else {
  1090. n = send(sock, buf + sent, (size_t)k, 0);
  1091. }
  1092. if (n < 0)
  1093. break;
  1094. sent += n;
  1095. }
  1096. return sent;
  1097. }
  1098. // Read from IO channel - opened file descriptor, socket, or SSL descriptor.
  1099. // Return number of bytes read.
  1100. static int pull(FILE *fp, SOCKET sock, SSL *ssl, char *buf, int len) {
  1101. int nread;
  1102. if (ssl != NULL) {
  1103. nread = SSL_read(ssl, buf, len);
  1104. } else if (fp != NULL) {
  1105. // Use read() instead of fread(), because if we're reading from the CGI
  1106. // pipe, fread() may block until IO buffer is filled up. We cannot afford
  1107. // to block and must pass all read bytes immediately to the client.
  1108. nread = read(fileno(fp), buf, (size_t) len);
  1109. if (ferror(fp))
  1110. nread = -1;
  1111. } else {
  1112. nread = recv(sock, buf, (size_t) len, 0);
  1113. }
  1114. return nread;
  1115. }
  1116. int mg_read(struct mg_connection *conn, void *buf, size_t len) {
  1117. int n, buffered_len, nread;
  1118. const char *buffered;
  1119. assert(conn->content_len >= conn->consumed_content);
  1120. DEBUG_TRACE(("%p %zu %lld %lld", buf, len,
  1121. conn->content_len, conn->consumed_content));
  1122. nread = 0;
  1123. if (conn->consumed_content < conn->content_len) {
  1124. // Adjust number of bytes to read.
  1125. int64_t to_read = conn->content_len - conn->consumed_content;
  1126. if (to_read < (int64_t) len) {
  1127. len = (int) to_read;
  1128. }
  1129. // How many bytes of data we have buffered in the request buffer?
  1130. buffered = conn->buf + conn->request_len + conn->consumed_content;
  1131. buffered_len = conn->data_len - conn->request_len;
  1132. assert(buffered_len >= 0);
  1133. // Return buffered data back if we haven't done that yet.
  1134. if (conn->consumed_content < (int64_t) buffered_len) {
  1135. buffered_len -= (int) conn->consumed_content;
  1136. if (len < (size_t) buffered_len) {
  1137. buffered_len = len;
  1138. }
  1139. memcpy(buf, buffered, (size_t)buffered_len);
  1140. len -= buffered_len;
  1141. buf = (char *) buf + buffered_len;
  1142. conn->consumed_content += buffered_len;
  1143. nread = buffered_len;
  1144. }
  1145. // We have returned all buffered data. Read new data from the remote socket.
  1146. while (len > 0) {
  1147. n = pull(NULL, conn->client.sock, conn->ssl, (char *) buf, (int) len);
  1148. if (n <= 0) {
  1149. break;
  1150. }
  1151. buf = (char *) buf + n;
  1152. conn->consumed_content += n;
  1153. nread += n;
  1154. len -= n;
  1155. }
  1156. }
  1157. return nread;
  1158. }
  1159. int mg_write(struct mg_connection *conn, const void *buf, size_t len) {
  1160. return (int) push(NULL, conn->client.sock, conn->ssl,
  1161. (const char *) buf, (int64_t) len);
  1162. }
  1163. int mg_printf(struct mg_connection *conn, const char *fmt, ...) {
  1164. char buf[BUFSIZ];
  1165. int len;
  1166. va_list ap;
  1167. va_start(ap, fmt);
  1168. len = mg_vsnprintf(conn, buf, sizeof(buf), fmt, ap);
  1169. va_end(ap);
  1170. return mg_write(conn, buf, (size_t)len);
  1171. }
  1172. // URL-decode input buffer into destination buffer.
  1173. // 0-terminate the destination buffer. Return the length of decoded data.
  1174. // form-url-encoded data differs from URI encoding in a way that it
  1175. // uses '+' as character for space, see RFC 1866 section 8.2.1
  1176. // http://ftp.ics.uci.edu/pub/ietf/html/rfc1866.txt
  1177. static size_t url_decode(const char *src, size_t src_len, char *dst,
  1178. size_t dst_len, int is_form_url_encoded) {
  1179. size_t i, j;
  1180. int a, b;
  1181. #define HEXTOI(x) (isdigit(x) ? x - '0' : x - 'W')
  1182. for (i = j = 0; i < src_len && j < dst_len - 1; i++, j++) {
  1183. if (src[i] == '%' &&
  1184. isxdigit(* (const unsigned char *) (src + i + 1)) &&
  1185. isxdigit(* (const unsigned char *) (src + i + 2))) {
  1186. a = tolower(* (const unsigned char *) (src + i + 1));
  1187. b = tolower(* (const unsigned char *) (src + i + 2));
  1188. dst[j] = (char) ((HEXTOI(a) << 4) | HEXTOI(b));
  1189. i += 2;
  1190. } else if (is_form_url_encoded && src[i] == '+') {
  1191. dst[j] = ' ';
  1192. } else {
  1193. dst[j] = src[i];
  1194. }
  1195. }
  1196. dst[j] = '\0'; /* Null-terminate the destination */
  1197. return j;
  1198. }
  1199. // Scan given buffer and fetch the value of the given variable.
  1200. // It can be specified in query string, or in the POST data.
  1201. // Return NULL if the variable not found, or allocated 0-terminated value.
  1202. // It is caller's responsibility to free the returned value.
  1203. int mg_get_var(const char *buf, size_t buf_len, const char *name,
  1204. char *dst, size_t dst_len) {
  1205. const char *p, *e, *s;
  1206. size_t name_len, len;
  1207. name_len = strlen(name);
  1208. e = buf + buf_len;
  1209. len = -1;
  1210. dst[0] = '\0';
  1211. // buf is "var1=val1&var2=val2...". Find variable first
  1212. for (p = buf; p != NULL && p + name_len < e; p++) {
  1213. if ((p == buf || p[-1] == '&') && p[name_len] == '=' &&
  1214. !mg_strncasecmp(name, p, name_len)) {
  1215. // Point p to variable value
  1216. p += name_len + 1;
  1217. // Point s to the end of the value
  1218. s = (const char *) memchr(p, '&', (size_t)(e - p));
  1219. if (s == NULL) {
  1220. s = e;
  1221. }
  1222. assert(s >= p);
  1223. // Decode variable into destination buffer
  1224. if ((size_t) (s - p) < dst_len) {
  1225. len = url_decode(p, (size_t)(s - p), dst, dst_len, 1);
  1226. }
  1227. break;
  1228. }
  1229. }
  1230. return len;
  1231. }
  1232. int mg_get_cookie(const struct mg_connection *conn, const char *cookie_name,
  1233. char *dst, size_t dst_size) {
  1234. const char *s, *p, *end;
  1235. int name_len, len = -1;
  1236. dst[0] = '\0';
  1237. if ((s = mg_get_header(conn, "Cookie")) == NULL) {
  1238. return 0;
  1239. }
  1240. name_len = strlen(cookie_name);
  1241. end = s + strlen(s);
  1242. for (; (s = strstr(s, cookie_name)) != NULL; s += name_len)
  1243. if (s[name_len] == '=') {
  1244. s += name_len + 1;
  1245. if ((p = strchr(s, ' ')) == NULL)
  1246. p = end;
  1247. if (p[-1] == ';')
  1248. p--;
  1249. if (*s == '"' && p[-1] == '"' && p > s + 1) {
  1250. s++;
  1251. p--;
  1252. }
  1253. if ((size_t) (p - s) < dst_size) {
  1254. len = (p - s) + 1;
  1255. mg_strlcpy(dst, s, (size_t)len);
  1256. }
  1257. break;
  1258. }
  1259. return len;
  1260. }
  1261. // Mongoose allows to specify multiple directories to serve,
  1262. // like /var/www,/~bob=/home/bob. That means that root directory depends on URI.
  1263. // This function returns root dir for given URI.
  1264. static int get_document_root(const struct mg_connection *conn,
  1265. struct vec *document_root) {
  1266. const char *root, *uri;
  1267. int len_of_matched_uri;
  1268. struct vec uri_vec, path_vec;
  1269. uri = conn->request_info.uri;
  1270. len_of_matched_uri = 0;
  1271. root = next_option(conn->ctx->config[DOCUMENT_ROOT], document_root, NULL);
  1272. while ((root = next_option(root, &uri_vec, &path_vec)) != NULL) {
  1273. if (memcmp(uri, uri_vec.ptr, uri_vec.len) == 0) {
  1274. *document_root = path_vec;
  1275. len_of_matched_uri = uri_vec.len;
  1276. break;
  1277. }
  1278. }
  1279. return len_of_matched_uri;
  1280. }
  1281. static void convert_uri_to_file_name(struct mg_connection *conn,
  1282. const char *uri, char *buf,
  1283. size_t buf_len) {
  1284. struct vec vec;
  1285. int match_len;
  1286. match_len = get_document_root(conn, &vec);
  1287. mg_snprintf(conn, buf, buf_len, "%.*s%s", vec.len, vec.ptr, uri + match_len);
  1288. #ifdef _WIN32
  1289. change_slashes_to_backslashes(buf);
  1290. #endif /* _WIN32 */
  1291. DEBUG_TRACE(("[%s] -> [%s], [%.*s]", uri, buf, (int) vec.len, vec.ptr));
  1292. }
  1293. static int sslize(struct mg_connection *conn, int (*func)(SSL *)) {
  1294. return (conn->ssl = SSL_new(conn->ctx->ssl_ctx)) != NULL &&
  1295. SSL_set_fd(conn->ssl, conn->client.sock) == 1 &&
  1296. func(conn->ssl) == 1;
  1297. }
  1298. static struct mg_connection *mg_connect(struct mg_connection *conn,
  1299. const char *host, int port, int use_ssl) {
  1300. struct mg_connection *newconn = NULL;
  1301. struct sockaddr_in sin;
  1302. struct hostent *he;
  1303. int sock;
  1304. if (conn->ctx->ssl_ctx == NULL && use_ssl) {
  1305. cry(conn, "%s: SSL is not initialized", __func__);
  1306. } else if ((he = gethostbyname(host)) == NULL) {
  1307. cry(conn, "%s: gethostbyname(%s): %s", __func__, host, strerror(ERRNO));
  1308. } else if ((sock = socket(PF_INET, SOCK_STREAM, 0)) == INVALID_SOCKET) {
  1309. cry(conn, "%s: socket: %s", __func__, strerror(ERRNO));
  1310. } else {
  1311. sin.sin_family = AF_INET;
  1312. sin.sin_port = htons((uint16_t) port);
  1313. sin.sin_addr = * (struct in_addr *) he->h_addr_list[0];
  1314. if (connect(sock, (struct sockaddr *) &sin, sizeof(sin)) != 0) {
  1315. cry(conn, "%s: connect(%s:%d): %s", __func__, host, port,
  1316. strerror(ERRNO));
  1317. closesocket(sock);
  1318. } else if ((newconn = calloc(1, sizeof(*newconn))) == NULL) {
  1319. cry(conn, "%s: calloc: %s", __func__, strerror(ERRNO));
  1320. closesocket(sock);
  1321. } else {
  1322. newconn->client.sock = sock;
  1323. newconn->client.rsa.u.sin = sin;
  1324. if (use_ssl) {
  1325. sslize(newconn, SSL_connect);
  1326. }
  1327. }
  1328. }
  1329. return newconn;
  1330. }
  1331. // Check whether full request is buffered. Return:
  1332. // -1 if request is malformed
  1333. // 0 if request is not yet fully buffered
  1334. // >0 actual request length, including last \r\n\r\n
  1335. static int get_request_len(const char *buf, int buflen) {
  1336. const char *s, *e;
  1337. int len = 0;
  1338. DEBUG_TRACE(("buf: %p, len: %d", buf, buflen));
  1339. for (s = buf, e = s + buflen - 1; len <= 0 && s < e; s++)
  1340. // Control characters are not allowed but >=128 is.
  1341. if (!isprint(* (const unsigned char *) s) && *s != '\r' &&
  1342. *s != '\n' && * (const unsigned char *) s < 128) {
  1343. len = -1;
  1344. } else if (s[0] == '\n' && s[1] == '\n') {
  1345. len = (int) (s - buf) + 2;
  1346. } else if (s[0] == '\n' && &s[1] < e &&
  1347. s[1] == '\r' && s[2] == '\n') {
  1348. len = (int) (s - buf) + 3;
  1349. }
  1350. return len;
  1351. }
  1352. // Convert month to the month number. Return -1 on error, or month number
  1353. static int month_number_to_month_name(const char *s) {
  1354. size_t i;
  1355. for (i = 0; i < ARRAY_SIZE(month_names); i++)
  1356. if (!strcmp(s, month_names[i]))
  1357. return (int) i;
  1358. return -1;
  1359. }
  1360. // Parse date-time string, and return the corresponding time_t value
  1361. static time_t parse_date_string(const char *s) {
  1362. time_t current_time;
  1363. struct tm tm, *tmp;
  1364. char mon[32];
  1365. int sec, min, hour, mday, month, year;
  1366. (void) memset(&tm, 0, sizeof(tm));
  1367. sec = min = hour = mday = month = year = 0;
  1368. if (((sscanf(s, "%d/%3s/%d %d:%d:%d",
  1369. &mday, mon, &year, &hour, &min, &sec) == 6) ||
  1370. (sscanf(s, "%d %3s %d %d:%d:%d",
  1371. &mday, mon, &year, &hour, &min, &sec) == 6) ||
  1372. (sscanf(s, "%*3s, %d %3s %d %d:%d:%d",
  1373. &mday, mon, &year, &hour, &min, &sec) == 6) ||
  1374. (sscanf(s, "%d-%3s-%d %d:%d:%d",
  1375. &mday, mon, &year, &hour, &min, &sec) == 6)) &&
  1376. (month = month_number_to_month_name(mon)) != -1) {
  1377. tm.tm_mday = mday;
  1378. tm.tm_mon = month;
  1379. tm.tm_year = year;
  1380. tm.tm_hour = hour;
  1381. tm.tm_min = min;
  1382. tm.tm_sec = sec;
  1383. }
  1384. if (tm.tm_year > 1900) {
  1385. tm.tm_year -= 1900;
  1386. } else if (tm.tm_year < 70) {
  1387. tm.tm_year += 100;
  1388. }
  1389. // Set Daylight Saving Time field
  1390. current_time = time(NULL);
  1391. tmp = localtime(&current_time);
  1392. tm.tm_isdst = tmp->tm_isdst;
  1393. return mktime(&tm);
  1394. }
  1395. // Protect against directory disclosure attack by removing '..',
  1396. // excessive '/' and '\' characters
  1397. static void remove_double_dots_and_double_slashes(char *s) {
  1398. char *p = s;
  1399. while (*s != '\0') {
  1400. *p++ = *s++;
  1401. if (s[-1] == '/' || s[-1] == '\\') {
  1402. // Skip all following slashes and backslashes
  1403. while (*s == '/' || *s == '\\') {
  1404. s++;
  1405. }
  1406. // Skip all double-dots
  1407. while (*s == '.' && s[1] == '.') {
  1408. s += 2;
  1409. }
  1410. }
  1411. }
  1412. *p = '\0';
  1413. }
  1414. static const struct {
  1415. const char *extension;
  1416. size_t ext_len;
  1417. const char *mime_type;
  1418. size_t mime_type_len;
  1419. } builtin_mime_types[] = {
  1420. {".html", 5, "text/html", 9},
  1421. {".htm", 4, "text/html", 9},
  1422. {".shtm", 5, "text/html", 9},
  1423. {".shtml", 6, "text/html", 9},
  1424. {".css", 4, "text/css", 8},
  1425. {".js", 3, "application/x-javascript", 24},
  1426. {".ico", 4, "image/x-icon", 12},
  1427. {".gif", 4, "image/gif", 9},
  1428. {".jpg", 4, "image/jpeg", 10},
  1429. {".jpeg", 5, "image/jpeg", 10},
  1430. {".png", 4, "image/png", 9},
  1431. {".svg", 4, "image/svg+xml", 13},
  1432. {".torrent", 8, "application/x-bittorrent", 24},
  1433. {".wav", 4, "audio/x-wav", 11},
  1434. {".mp3", 4, "audio/x-mp3", 11},
  1435. {".mid", 4, "audio/mid", 9},
  1436. {".m3u", 4, "audio/x-mpegurl", 15},
  1437. {".ram", 4, "audio/x-pn-realaudio", 20},
  1438. {".xml", 4, "text/xml", 8},
  1439. {".xslt", 5, "application/xml", 15},
  1440. {".ra", 3, "audio/x-pn-realaudio", 20},
  1441. {".doc", 4, "application/msword", 19},
  1442. {".exe", 4, "application/octet-stream", 24},
  1443. {".zip", 4, "application/x-zip-compressed", 28},
  1444. {".xls", 4, "application/excel", 17},
  1445. {".tgz", 4, "application/x-tar-gz", 20},
  1446. {".tar", 4, "application/x-tar", 17},
  1447. {".gz", 3, "application/x-gunzip", 20},
  1448. {".arj", 4, "application/x-arj-compressed", 28},
  1449. {".rar", 4, "application/x-arj-compressed", 28},
  1450. {".rtf", 4, "application/rtf", 15},
  1451. {".pdf", 4, "application/pdf", 15},
  1452. {".swf", 4, "application/x-shockwave-flash",29},
  1453. {".mpg", 4, "video/mpeg", 10},
  1454. {".mpeg", 5, "video/mpeg", 10},
  1455. {".asf", 4, "video/x-ms-asf", 14},
  1456. {".avi", 4, "video/x-msvideo", 15},
  1457. {".bmp", 4, "image/bmp", 9},
  1458. {NULL, 0, NULL, 0}
  1459. };
  1460. // Look at the "path" extension and figure what mime type it has.
  1461. // Store mime type in the vector.
  1462. static void get_mime_type(struct mg_context *ctx, const char *path,
  1463. struct vec *vec) {
  1464. struct vec ext_vec, mime_vec;
  1465. const char *list, *ext;
  1466. size_t i, path_len;
  1467. path_len = strlen(path);
  1468. // Scan user-defined mime types first, in case user wants to
  1469. // override default mime types.
  1470. list = ctx->config[EXTRA_MIME_TYPES];
  1471. while ((list = next_option(list, &ext_vec, &mime_vec)) != NULL) {
  1472. // ext now points to the path suffix
  1473. ext = path + path_len - ext_vec.len;
  1474. if (mg_strncasecmp(ext, ext_vec.ptr, ext_vec.len) == 0) {
  1475. *vec = mime_vec;
  1476. return;
  1477. }
  1478. }
  1479. // Now scan built-in mime types
  1480. for (i = 0; builtin_mime_types[i].extension != NULL; i++) {
  1481. ext = path + (path_len - builtin_mime_types[i].ext_len);
  1482. if (path_len > builtin_mime_types[i].ext_len &&
  1483. mg_strcasecmp(ext, builtin_mime_types[i].extension) == 0) {
  1484. vec->ptr = builtin_mime_types[i].mime_type;
  1485. vec->len = builtin_mime_types[i].mime_type_len;
  1486. return;
  1487. }
  1488. }
  1489. // Nothing found. Fall back to "text/plain"
  1490. vec->ptr = "text/plain";
  1491. vec->len = 10;
  1492. }
  1493. #ifndef HAVE_MD5
  1494. typedef struct MD5Context {
  1495. uint32_t buf[4];
  1496. uint32_t bits[2];
  1497. unsigned char in[64];
  1498. } MD5_CTX;
  1499. #if defined(__BYTE_ORDER) && (__BYTE_ORDER == 1234)
  1500. #define byteReverse(buf, len) // Do nothing
  1501. #else
  1502. static void byteReverse(unsigned char *buf, unsigned longs) {
  1503. uint32_t t;
  1504. do {
  1505. t = (uint32_t) ((unsigned) buf[3] << 8 | buf[2]) << 16 |
  1506. ((unsigned) buf[1] << 8 | buf[0]);
  1507. *(uint32_t *) buf = t;
  1508. buf += 4;
  1509. } while (--longs);
  1510. }
  1511. #endif
  1512. #define F1(x, y, z) (z ^ (x & (y ^ z)))
  1513. #define F2(x, y, z) F1(z, x, y)
  1514. #define F3(x, y, z) (x ^ y ^ z)
  1515. #define F4(x, y, z) (y ^ (x | ~z))
  1516. #define MD5STEP(f, w, x, y, z, data, s) \
  1517. ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )
  1518. // Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
  1519. // initialization constants.
  1520. static void MD5Init(MD5_CTX *ctx) {
  1521. ctx->buf[0] = 0x67452301;
  1522. ctx->buf[1] = 0xefcdab89;
  1523. ctx->buf[2] = 0x98badcfe;
  1524. ctx->buf[3] = 0x10325476;
  1525. ctx->bits[0] = 0;
  1526. ctx->bits[1] = 0;
  1527. }
  1528. static void MD5Transform(uint32_t buf[4], uint32_t const in[16]) {
  1529. register uint32_t a, b, c, d;
  1530. a = buf[0];
  1531. b = buf[1];
  1532. c = buf[2];
  1533. d = buf[3];
  1534. MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
  1535. MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
  1536. MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
  1537. MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
  1538. MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
  1539. MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
  1540. MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
  1541. MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
  1542. MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
  1543. MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
  1544. MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
  1545. MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
  1546. MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
  1547. MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
  1548. MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
  1549. MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
  1550. MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
  1551. MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
  1552. MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
  1553. MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
  1554. MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
  1555. MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
  1556. MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
  1557. MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
  1558. MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
  1559. MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
  1560. MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
  1561. MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20);
  1562. MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
  1563. MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
  1564. MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14);
  1565. MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
  1566. MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4);
  1567. MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11);
  1568. MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
  1569. MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
  1570. MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4);
  1571. MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
  1572. MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
  1573. MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
  1574. MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
  1575. MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
  1576. MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
  1577. MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23);
  1578. MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
  1579. MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
  1580. MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
  1581. MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23);
  1582. MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6);
  1583. MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10);
  1584. MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
  1585. MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21);
  1586. MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
  1587. MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
  1588. MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
  1589. MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21);
  1590. MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
  1591. MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
  1592. MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15);
  1593. MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
  1594. MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6);
  1595. MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
  1596. MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
  1597. MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21);
  1598. buf[0] += a;
  1599. buf[1] += b;
  1600. buf[2] += c;
  1601. buf[3] += d;
  1602. }
  1603. static void MD5Update(MD5_CTX *ctx, unsigned char const *buf, unsigned len) {
  1604. uint32_t t;
  1605. t = ctx->bits[0];
  1606. if ((ctx->bits[0] = t + ((uint32_t) len << 3)) < t)
  1607. ctx->bits[1]++;
  1608. ctx->bits[1] += len >> 29;
  1609. t = (t >> 3) & 0x3f;
  1610. if (t) {
  1611. unsigned char *p = (unsigned char *) ctx->in + t;
  1612. t = 64 - t;
  1613. if (len < t) {
  1614. memcpy(p, buf, len);
  1615. return;
  1616. }
  1617. memcpy(p, buf, t);
  1618. byteReverse(ctx->in, 16);
  1619. MD5Transform(ctx->buf, (uint32_t *) ctx->in);
  1620. buf += t;
  1621. len -= t;
  1622. }
  1623. while (len >= 64) {
  1624. memcpy(ctx->in, buf, 64);
  1625. byteReverse(ctx->in, 16);
  1626. MD5Transform(ctx->buf, (uint32_t *) ctx->in);
  1627. buf += 64;
  1628. len -= 64;
  1629. }
  1630. memcpy(ctx->in, buf, len);
  1631. }
  1632. static void MD5Final(unsigned char digest[16], MD5_CTX *ctx) {
  1633. unsigned count;
  1634. unsigned char *p;
  1635. count = (ctx->bits[0] >> 3) & 0x3F;
  1636. p = ctx->in + count;
  1637. *p++ = 0x80;
  1638. count = 64 - 1 - count;
  1639. if (count < 8) {
  1640. memset(p, 0, count);
  1641. byteReverse(ctx->in, 16);
  1642. MD5Transform(ctx->buf, (uint32_t *) ctx->in);
  1643. memset(ctx->in, 0, 56);
  1644. } else {
  1645. memset(p, 0, count - 8);
  1646. }
  1647. byteReverse(ctx->in, 14);
  1648. ((uint32_t *) ctx->in)[14] = ctx->bits[0];
  1649. ((uint32_t *) ctx->in)[15] = ctx->bits[1];
  1650. MD5Transform(ctx->buf, (uint32_t *) ctx->in);
  1651. byteReverse((unsigned char *) ctx->buf, 4);
  1652. memcpy(digest, ctx->buf, 16);
  1653. memset((char *) ctx, 0, sizeof(ctx));
  1654. }
  1655. #endif // !HAVE_MD5
  1656. // Stringify binary data. Output buffer must be twice as big as input,
  1657. // because each byte takes 2 bytes in string representation
  1658. static void bin2str(char *to, const unsigned char *p, size_t len) {
  1659. static const char *hex = "0123456789abcdef";
  1660. for (; len--; p++) {
  1661. *to++ = hex[p[0] >> 4];
  1662. *to++ = hex[p[0] & 0x0f];
  1663. }
  1664. *to = '\0';
  1665. }
  1666. // Return stringified MD5 hash for list of vectors. Buffer must be 33 bytes.
  1667. void mg_md5(char *buf, ...) {
  1668. unsigned char hash[16];
  1669. const char *p;
  1670. va_list ap;
  1671. MD5_CTX ctx;
  1672. MD5Init(&ctx);
  1673. va_start(ap, buf);
  1674. while ((p = va_arg(ap, const char *)) != NULL) {
  1675. MD5Update(&ctx, (const unsigned char *) p, (unsigned) strlen(p));
  1676. }
  1677. va_end(ap);
  1678. MD5Final(hash, &ctx);
  1679. bin2str(buf, hash, sizeof(hash));
  1680. }
  1681. // Check the user's password, return 1 if OK
  1682. static int check_password(const char *method, const char *ha1, const char *uri,
  1683. const char *nonce, const char *nc, const char *cnonce,
  1684. const char *qop, const char *response) {
  1685. char ha2[32 + 1], expected_response[32 + 1];
  1686. // Some of the parameters may be NULL
  1687. if (method == NULL || nonce == NULL || nc == NULL || cnonce == NULL ||
  1688. qop == NULL || response == NULL) {
  1689. return 0;
  1690. }
  1691. // NOTE(lsm): due to a bug in MSIE, we do not compare the URI
  1692. // TODO(lsm): check for authentication timeout
  1693. if (// strcmp(dig->uri, c->ouri) != 0 ||
  1694. strlen(response) != 32
  1695. // || now - strtoul(dig->nonce, NULL, 10) > 3600
  1696. ) {
  1697. return 0;
  1698. }
  1699. mg_md5(ha2, method, ":", uri, NULL);
  1700. mg_md5(expected_response, ha1, ":", nonce, ":", nc,
  1701. ":", cnonce, ":", qop, ":", ha2, NULL);
  1702. return mg_strcasecmp(response, expected_response) == 0;
  1703. }
  1704. // Use the global passwords file, if specified by auth_gpass option,
  1705. // or search for .htpasswd in the requested directory.
  1706. static FILE *open_auth_file(struct mg_connection *conn, const char *path) {
  1707. struct mg_context *ctx = conn->ctx;
  1708. char name[PATH_MAX];
  1709. const char *p, *e;
  1710. struct mgstat st;
  1711. FILE *fp;
  1712. if (ctx->config[GLOBAL_PASSWORDS_FILE] != NULL) {
  1713. // Use global passwords file
  1714. fp = mg_fopen(ctx->config[GLOBAL_PASSWORDS_FILE], "r");
  1715. if (fp == NULL)
  1716. cry(fc(ctx), "fopen(%s): %s",
  1717. ctx->config[GLOBAL_PASSWORDS_FILE], strerror(ERRNO));
  1718. } else if (!mg_stat(path, &st) && st.is_directory) {
  1719. (void) mg_snprintf(conn, name, sizeof(name), "%s%c%s",
  1720. path, DIRSEP, PASSWORDS_FILE_NAME);
  1721. fp = mg_fopen(name, "r");
  1722. } else {
  1723. // Try to find .htpasswd in requested directory.
  1724. for (p = path, e = p + strlen(p) - 1; e > p; e--)
  1725. if (IS_DIRSEP_CHAR(*e))
  1726. break;
  1727. (void) mg_snprintf(conn, name, sizeof(name), "%.*s%c%s",
  1728. (int) (e - p), p, DIRSEP, PASSWORDS_FILE_NAME);
  1729. fp = mg_fopen(name, "r");
  1730. }
  1731. return fp;
  1732. }
  1733. // Parsed Authorization header
  1734. struct ah {
  1735. char *user, *uri, *cnonce, *response, *qop, *nc, *nonce;
  1736. };
  1737. static int parse_auth_header(struct mg_connection *conn, char *buf,
  1738. size_t buf_size, struct ah *ah) {
  1739. char *name, *value, *s;
  1740. const char *auth_header;
  1741. if ((auth_header = mg_get_header(conn, "Authorization")) == NULL ||
  1742. mg_strncasecmp(auth_header, "Digest ", 7) != 0) {
  1743. return 0;
  1744. }
  1745. // Make modifiable copy of the auth header
  1746. (void) mg_strlcpy(buf, auth_header + 7, buf_size);
  1747. s = buf;
  1748. (void) memset(ah, 0, sizeof(*ah));
  1749. // Gobble initial spaces
  1750. while (isspace(* (unsigned char *) s)) {
  1751. s++;
  1752. }
  1753. // Parse authorization header
  1754. for (;;) {
  1755. name = skip(&s, "=");
  1756. value = skip(&s, ", "); // IE uses commas, FF uses spaces
  1757. // Handle commas: Digest username="a", realm="b", ...
  1758. if (value[strlen(value) - 1] == ',') {
  1759. value[strlen(value) - 1] = '\0';
  1760. }
  1761. // Trim double quotes around values
  1762. if (*value == '"') {
  1763. value++;
  1764. value[strlen(value) - 1] = '\0';
  1765. } else if (*value == '\0') {
  1766. break;
  1767. }
  1768. if (!strcmp(name, "username")) {
  1769. ah->user = value;
  1770. } else if (!strcmp(name, "cnonce")) {
  1771. ah->cnonce = value;
  1772. } else if (!strcmp(name, "response")) {
  1773. ah->response = value;
  1774. } else if (!strcmp(name, "uri")) {
  1775. ah->uri = value;
  1776. } else if (!strcmp(name, "qop")) {
  1777. ah->qop = value;
  1778. } else if (!strcmp(name, "nc")) {
  1779. ah->nc = value;
  1780. } else if (!strcmp(name, "nonce")) {
  1781. ah->nonce = value;
  1782. }
  1783. }
  1784. // CGI needs it as REMOTE_USER
  1785. if (ah->user != NULL) {
  1786. conn->request_info.remote_user = mg_strdup(ah->user);
  1787. } else {
  1788. return 0;
  1789. }
  1790. return 1;
  1791. }
  1792. // Authorize against the opened passwords file. Return 1 if authorized.
  1793. static int authorize(struct mg_connection *conn, FILE *fp) {
  1794. struct ah ah;
  1795. char line[256], f_user[256], ha1[256], f_domain[256], buf[BUFSIZ];
  1796. if (!parse_auth_header(conn, buf, sizeof(buf), &ah)) {
  1797. return 0;
  1798. }
  1799. // Loop over passwords file
  1800. while (fgets(line, sizeof(line), fp) != NULL) {
  1801. if (sscanf(line, "%[^:]:%[^:]:%s", f_user, f_domain, ha1) != 3) {
  1802. continue;
  1803. }
  1804. if (!strcmp(ah.user, f_user) &&
  1805. !strcmp(conn->ctx->config[AUTHENTICATION_DOMAIN], f_domain))
  1806. return check_password(
  1807. conn->request_info.request_method,
  1808. ha1, ah.uri, ah.nonce, ah.nc, ah.cnonce, ah.qop,
  1809. ah.response);
  1810. }
  1811. return 0;
  1812. }
  1813. // Return 1 if request is authorised, 0 otherwise.
  1814. static int check_authorization(struct mg_connection *conn, const char *path) {
  1815. FILE *fp;
  1816. char fname[PATH_MAX];
  1817. struct vec uri_vec, filename_vec;
  1818. const char *list;
  1819. int authorized;
  1820. fp = NULL;
  1821. authorized = 1;
  1822. list = conn->ctx->config[PROTECT_URI];
  1823. while ((list = next_option(list, &uri_vec, &filename_vec)) != NULL) {
  1824. if (!memcmp(conn->request_info.uri, uri_vec.ptr, uri_vec.len)) {
  1825. (void) mg_snprintf(conn, fname, sizeof(fname), "%.*s",
  1826. filename_vec.len, filename_vec.ptr);
  1827. if ((fp = mg_fopen(fname, "r")) == NULL) {
  1828. cry(conn, "%s: cannot open %s: %s", __func__, fname, strerror(errno));
  1829. }
  1830. break;
  1831. }
  1832. }
  1833. if (fp == NULL) {
  1834. fp = open_auth_file(conn, path);
  1835. }
  1836. if (fp != NULL) {
  1837. authorized = authorize(conn, fp);
  1838. (void) fclose(fp);
  1839. }
  1840. return authorized;
  1841. }
  1842. static void send_authorization_request(struct mg_connection *conn) {
  1843. conn->request_info.status_code = 401;
  1844. (void) mg_printf(conn,
  1845. "HTTP/1.1 401 Unauthorized\r\n"
  1846. "WWW-Authenticate: Digest qop=\"auth\", "
  1847. "realm=\"%s\", nonce=\"%lu\"\r\n\r\n",
  1848. conn->ctx->config[AUTHENTICATION_DOMAIN],
  1849. (unsigned long) time(NULL));
  1850. }
  1851. static int is_authorized_for_put(struct mg_connection *conn) {
  1852. FILE *fp;
  1853. int ret = 0;
  1854. fp = conn->ctx->config[PUT_DELETE_PASSWORDS_FILE] == NULL ? NULL :
  1855. mg_fopen(conn->ctx->config[PUT_DELETE_PASSWORDS_FILE], "r");
  1856. if (fp != NULL) {
  1857. ret = authorize(conn, fp);
  1858. (void) fclose(fp);
  1859. }
  1860. return ret;
  1861. }
  1862. int mg_modify_passwords_file(struct mg_context *ctx, const char *fname,
  1863. const char *user, const char *pass) {
  1864. int found;
  1865. char line[512], u[512], d[512], ha1[33], tmp[PATH_MAX];
  1866. const char *domain;
  1867. FILE *fp, *fp2;
  1868. found = 0;
  1869. fp = fp2 = NULL;
  1870. domain = ctx->config[AUTHENTICATION_DOMAIN];
  1871. // Regard empty password as no password - remove user record.
  1872. if (pass[0] == '\0') {
  1873. pass = NULL;
  1874. }
  1875. (void) snprintf(tmp, sizeof(tmp), "%s.tmp", fname);
  1876. // Create the file if does not exist
  1877. if ((fp = mg_fopen(fname, "a+")) != NULL) {
  1878. (void) fclose(fp);
  1879. }
  1880. // Open the given file and temporary file
  1881. if ((fp = mg_fopen(fname, "r")) == NULL) {
  1882. cry(fc(ctx), "Cannot open %s: %s", fname, strerror(errno));
  1883. return 0;
  1884. } else if ((fp2 = mg_fopen(tmp, "w+")) == NULL) {
  1885. cry(fc(ctx), "Cannot open %s: %s", tmp, strerror(errno));
  1886. return 0;
  1887. }
  1888. // Copy the stuff to temporary file
  1889. while (fgets(line, sizeof(line), fp) != NULL) {
  1890. if (sscanf(line, "%[^:]:%[^:]:%*s", u, d) != 2) {
  1891. continue;
  1892. }
  1893. if (!strcmp(u, user) && !strcmp(d, domain)) {
  1894. found++;
  1895. if (pass != NULL) {
  1896. mg_md5(ha1, user, ":", domain, ":", pass, NULL);
  1897. fprintf(fp2, "%s:%s:%s\n", user, domain, ha1);
  1898. }
  1899. } else {
  1900. (void) fprintf(fp2, "%s", line);
  1901. }
  1902. }
  1903. // If new user, just add it
  1904. if (!found && pass != NULL) {
  1905. mg_md5(ha1, user, ":", domain, ":", pass, NULL);
  1906. (void) fprintf(fp2, "%s:%s:%s\n", user, domain, ha1);
  1907. }
  1908. // Close files
  1909. (void) fclose(fp);
  1910. (void) fclose(fp2);
  1911. // Put the temp file in place of real file
  1912. (void) mg_remove(fname);
  1913. (void) mg_rename(tmp, fname);
  1914. return 1;
  1915. }
  1916. struct de {
  1917. struct mg_connection *conn;
  1918. char *file_name;
  1919. struct mgstat st;
  1920. };
  1921. static void url_encode(const char *src, char *dst, size_t dst_len) {
  1922. static const char *dont_escape = "._-$,;~()";
  1923. static const char *hex = "0123456789abcdef";
  1924. const char *end = dst + dst_len - 1;
  1925. for (; *src != '\0' && dst < end; src++, dst++) {
  1926. if (isalnum(*(const unsigned char *) src) ||
  1927. strchr(dont_escape, * (const unsigned char *) src) != NULL) {
  1928. *dst = *src;
  1929. } else if (dst + 2 < end) {
  1930. dst[0] = '%';
  1931. dst[1] = hex[(* (const unsigned char *) src) >> 4];
  1932. dst[2] = hex[(* (const unsigned char *) src) & 0xf];
  1933. dst += 2;
  1934. }
  1935. }
  1936. *dst = '\0';
  1937. }
  1938. static void print_dir_entry(struct de *de) {
  1939. char size[64], mod[64], href[PATH_MAX];
  1940. if (de->st.is_directory) {
  1941. (void) mg_snprintf(de->conn, size, sizeof(size), "%s", "[DIRECTORY]");
  1942. } else {
  1943. // We use (signed) cast below because MSVC 6 compiler cannot
  1944. // convert unsigned __int64 to double. Sigh.
  1945. if (de->st.size < 1024) {
  1946. (void) mg_snprintf(de->conn, size, sizeof(size),
  1947. "%lu", (unsigned long) de->st.size);
  1948. } else if (de->st.size < 1024 * 1024) {
  1949. (void) mg_snprintf(de->conn, size, sizeof(size),
  1950. "%.1fk", (double) de->st.size / 1024.0);
  1951. } else if (de->st.size < 1024 * 1024 * 1024) {
  1952. (void) mg_snprintf(de->conn, size, sizeof(size),
  1953. "%.1fM", (double) de->st.size / 1048576);
  1954. } else {
  1955. (void) mg_snprintf(de->conn, size, sizeof(size),
  1956. "%.1fG", (double) de->st.size / 1073741824);
  1957. }
  1958. }
  1959. (void) strftime(mod, sizeof(mod), "%d-%b-%Y %H:%M", localtime(&de->st.mtime));
  1960. url_encode(de->file_name, href, sizeof(href));
  1961. de->conn->num_bytes_sent += mg_printf(de->conn,
  1962. "<tr><td><a href=\"%s%s%s\">%s%s</a></td>"
  1963. "<td>&nbsp;%s</td><td>&nbsp;&nbsp;%s</td></tr>\n",
  1964. de->conn->request_info.uri, href, de->st.is_directory ? "/" : "",
  1965. de->file_name, de->st.is_directory ? "/" : "", mod, size);
  1966. }
  1967. // This function is called from send_directory() and used for
  1968. // sorting directory entries by size, or name, or modification time.
  1969. // On windows, __cdecl specification is needed in case if project is built
  1970. // with __stdcall convention. qsort always requires __cdels callback.
  1971. static int WINCDECL compare_dir_entries(const void *p1, const void *p2) {
  1972. const struct de *a = (const struct de *) p1, *b = (const struct de *) p2;
  1973. const char *query_string = a->conn->request_info.query_string;
  1974. int cmp_result = 0;
  1975. if (query_string == NULL) {
  1976. query_string = "na";
  1977. }
  1978. if (a->st.is_directory && !b->st.is_directory) {
  1979. return -1; // Always put directories on top
  1980. } else if (!a->st.is_directory && b->st.is_directory) {
  1981. return 1; // Always put directories on top
  1982. } else if (*query_string == 'n') {
  1983. cmp_result = strcmp(a->file_name, b->file_name);
  1984. } else if (*query_string == 's') {
  1985. cmp_result = a->st.size == b->st.size ? 0 :
  1986. a->st.size > b->st.size ? 1 : -1;
  1987. } else if (*query_string == 'd') {
  1988. cmp_result = a->st.mtime == b->st.mtime ? 0 :
  1989. a->st.mtime > b->st.mtime ? 1 : -1;
  1990. }
  1991. return query_string[1] == 'd' ? -cmp_result : cmp_result;
  1992. }
  1993. static void handle_directory_request(struct mg_connection *conn,
  1994. const char *dir) {
  1995. struct dirent *dp;
  1996. DIR *dirp;
  1997. struct de *entries = NULL;
  1998. char path[PATH_MAX];
  1999. int i, sort_direction, num_entries = 0, arr_size = 128;
  2000. if ((dirp = opendir(dir)) == NULL) {
  2001. send_http_error(conn, 500, "Cannot open directory",
  2002. "Error: opendir(%s): %s", path, strerror(ERRNO));
  2003. return;
  2004. }
  2005. (void) mg_printf(conn, "%s",
  2006. "HTTP/1.1 200 OK\r\n"
  2007. "Connection: close\r\n"
  2008. "Content-Type: text/html; charset=utf-8\r\n\r\n");
  2009. sort_direction = conn->request_info.query_string != NULL &&
  2010. conn->request_info.query_string[1] == 'd' ? 'a' : 'd';
  2011. while ((dp = readdir(dirp)) != NULL) {
  2012. // Do not show current dir and passwords file
  2013. if (!strcmp(dp->d_name, ".") ||
  2014. !strcmp(dp->d_name, "..") ||
  2015. !strcmp(dp->d_name, PASSWORDS_FILE_NAME))
  2016. continue;
  2017. if (entries == NULL || num_entries >= arr_size) {
  2018. arr_size *= 2;
  2019. entries = (struct de *) realloc(entries,
  2020. arr_size * sizeof(entries[0]));
  2021. }
  2022. if (entries == NULL) {
  2023. send_http_error(conn, 500, "Cannot open directory",
  2024. "%s", "Error: cannot allocate memory");
  2025. return;
  2026. }
  2027. mg_snprintf(conn, path, sizeof(path), "%s%c%s", dir, DIRSEP, dp->d_name);
  2028. // If we don't memset stat structure to zero, mtime will have
  2029. // garbage and strftime() will segfault later on in
  2030. // print_dir_entry(). memset is required only if mg_stat()
  2031. // fails. For more details, see
  2032. // http://code.google.com/p/mongoose/issues/detail?id=79
  2033. if (mg_stat(path, &entries[num_entries].st) != 0) {
  2034. memset(&entries[num_entries].st, 0, sizeof(entries[num_entries].st));
  2035. }
  2036. entries[num_entries].conn = conn;
  2037. entries[num_entries].file_name = mg_strdup(dp->d_name);
  2038. num_entries++;
  2039. }
  2040. (void) closedir(dirp);
  2041. conn->num_bytes_sent += mg_printf(conn,
  2042. "<html><head><title>Index of %s</title>"
  2043. "<style>th {text-align: left;}</style></head>"
  2044. "<body><h1>Index of %s</h1><pre><table cellpadding=\"0\">"
  2045. "<tr><th><a href=\"?n%c\">Name</a></th>"
  2046. "<th><a href=\"?d%c\">Modified</a></th>"
  2047. "<th><a href=\"?s%c\">Size</a></th></tr>"
  2048. "<tr><td colspan=\"3\"><hr></td></tr>",
  2049. conn->request_info.uri, conn->request_info.uri,
  2050. sort_direction, sort_direction, sort_direction);
  2051. // Print first entry - link to a parent directory
  2052. conn->num_bytes_sent += mg_printf(conn,
  2053. "<tr><td><a href=\"%s%s\">%s</a></td>"
  2054. "<td>&nbsp;%s</td><td>&nbsp;&nbsp;%s</td></tr>\n",
  2055. conn->request_info.uri, "..", "Parent directory", "-", "-");
  2056. // Sort and print directory entries
  2057. qsort(entries, (size_t)num_entries, sizeof(entries[0]), compare_dir_entries);
  2058. for (i = 0; i < num_entries; i++) {
  2059. print_dir_entry(&entries[i]);
  2060. free(entries[i].file_name);
  2061. }
  2062. free(entries);
  2063. conn->num_bytes_sent += mg_printf(conn, "%s", "</table></body></html>");
  2064. conn->request_info.status_code = 200;
  2065. }
  2066. // Send len bytes from the opened file to the client.
  2067. static void send_file_data(struct mg_connection *conn, FILE *fp, int64_t len) {
  2068. char buf[BUFSIZ];
  2069. int to_read, num_read, num_written;
  2070. while (len > 0) {
  2071. // Calculate how much to read from the file in the buffer
  2072. to_read = sizeof(buf);
  2073. if ((int64_t) to_read > len)
  2074. to_read = (int) len;
  2075. // Read from file, exit the loop on error
  2076. if ((num_read = fread(buf, 1, (size_t)to_read, fp)) == 0)
  2077. break;
  2078. // Send read bytes to the client, exit the loop on error
  2079. if ((num_written = mg_write(conn, buf, (size_t)num_read)) != num_read)
  2080. break;
  2081. // Both read and were successful, adjust counters
  2082. conn->num_bytes_sent += num_written;
  2083. len -= num_written;
  2084. }
  2085. }
  2086. static int parse_range_header(const char *header, int64_t *a, int64_t *b) {
  2087. return sscanf(header, "bytes=%" INT64_FMT "-%" INT64_FMT, a, b);
  2088. }
  2089. static void handle_file_request(struct mg_connection *conn, const char *path,
  2090. struct mgstat *stp) {
  2091. char date[64], lm[64], etag[64], range[64];
  2092. const char *fmt = "%a, %d %b %Y %H:%M:%S %Z", *msg = "OK", *hdr;
  2093. time_t curtime = time(NULL);
  2094. int64_t cl, r1, r2;
  2095. struct vec mime_vec;
  2096. FILE *fp;
  2097. int n;
  2098. get_mime_type(conn->ctx, path, &mime_vec);
  2099. cl = stp->size;
  2100. conn->request_info.status_code = 200;
  2101. range[0] = '\0';
  2102. if ((fp = mg_fopen(path, "rb")) == NULL) {
  2103. send_http_error(conn, 500, http_500_error,
  2104. "fopen(%s): %s", path, strerror(ERRNO));
  2105. return;
  2106. }
  2107. set_close_on_exec(fileno(fp));
  2108. // If Range: header specified, act accordingly
  2109. r1 = r2 = 0;
  2110. hdr = mg_get_header(conn, "Range");
  2111. if (hdr != NULL && (n = parse_range_header(hdr, &r1, &r2)) > 0) {
  2112. conn->request_info.status_code = 206;
  2113. (void) fseeko(fp, (off_t) r1, SEEK_SET);
  2114. cl = n == 2 ? r2 - r1 + 1: cl - r1;
  2115. (void) mg_snprintf(conn, range, sizeof(range),
  2116. "Content-Range: bytes "
  2117. "%" INT64_FMT "-%"
  2118. INT64_FMT "/%" INT64_FMT "\r\n",
  2119. r1, r1 + cl - 1, stp->size);
  2120. msg = "Partial Content";
  2121. }
  2122. // Prepare Etag, Date, Last-Modified headers
  2123. (void) strftime(date, sizeof(date), fmt, localtime(&curtime));
  2124. (void) strftime(lm, sizeof(lm), fmt, localtime(&stp->mtime));
  2125. (void) mg_snprintf(conn, etag, sizeof(etag), "%lx.%lx",
  2126. (unsigned long) stp->mtime, (unsigned long) stp->size);
  2127. (void) mg_printf(conn,
  2128. "HTTP/1.1 %d %s\r\n"
  2129. "Date: %s\r\n"
  2130. "Last-Modified: %s\r\n"
  2131. "Etag: \"%s\"\r\n"
  2132. "Content-Type: %.*s\r\n"
  2133. "Content-Length: %" INT64_FMT "\r\n"
  2134. "Connection: %s\r\n"
  2135. "Accept-Ranges: bytes\r\n"
  2136. "%s\r\n",
  2137. conn->request_info.status_code, msg, date, lm, etag,
  2138. mime_vec.len, mime_vec.ptr, cl, suggest_connection_header(conn), range);
  2139. if (strcmp(conn->request_info.request_method, "HEAD") != 0) {
  2140. send_file_data(conn, fp, cl);
  2141. }
  2142. (void) fclose(fp);
  2143. }
  2144. // Parse HTTP headers from the given buffer, advance buffer to the point
  2145. // where parsing stopped.
  2146. static void parse_http_headers(char **buf, struct mg_request_info *ri) {
  2147. int i;
  2148. for (i = 0; i < (int) ARRAY_SIZE(ri->http_headers); i++) {
  2149. ri->http_headers[i].name = skip(buf, ": ");
  2150. ri->http_headers[i].value = skip(buf, "\r\n");
  2151. if (ri->http_headers[i].name[0] == '\0')
  2152. break;
  2153. ri->num_headers = i + 1;
  2154. }
  2155. }
  2156. static int is_valid_http_method(const char *method) {
  2157. return !strcmp(method, "GET") || !strcmp(method, "POST") ||
  2158. !strcmp(method, "HEAD") || !strcmp(method, "CONNECT") ||
  2159. !strcmp(method, "PUT") || !strcmp(method, "DELETE");
  2160. }
  2161. // Parse HTTP request, fill in mg_request_info structure.
  2162. static int parse_http_request(char *buf, struct mg_request_info *ri) {
  2163. int status = 0;
  2164. // RFC says that all initial whitespaces should be ingored
  2165. while (*buf != '\0' && isspace(* (unsigned char *) buf)) {
  2166. buf++;
  2167. }
  2168. ri->request_method = skip(&buf, " ");
  2169. ri->uri = skip(&buf, " ");
  2170. ri->http_version = skip(&buf, "\r\n");
  2171. if (is_valid_http_method(ri->request_method) &&
  2172. strncmp(ri->http_version, "HTTP/", 5) == 0) {
  2173. ri->http_version += 5; /* Skip "HTTP/" */
  2174. parse_http_headers(&buf, ri);
  2175. status = 1;
  2176. }
  2177. return status;
  2178. }
  2179. // Keep reading the input (either opened file descriptor fd, or socket sock,
  2180. // or SSL descriptor ssl) into buffer buf, until \r\n\r\n appears in the
  2181. // buffer (which marks the end of HTTP request). Buffer buf may already
  2182. // have some data. The length of the data is stored in nread.
  2183. // Upon every read operation, increase nread by the number of bytes read.
  2184. static int read_request(FILE *fp, SOCKET sock, SSL *ssl, char *buf, int bufsiz,
  2185. int *nread) {
  2186. int n, request_len;
  2187. request_len = 0;
  2188. while (*nread < bufsiz && request_len == 0) {
  2189. n = pull(fp, sock, ssl, buf + *nread, bufsiz - *nread);
  2190. if (n <= 0) {
  2191. break;
  2192. } else {
  2193. *nread += n;
  2194. request_len = get_request_len(buf, *nread);
  2195. }
  2196. }
  2197. return request_len;
  2198. }
  2199. // For given directory path, substitute it to valid index file.
  2200. // Return 0 if index file has been found, -1 if not found.
  2201. // If the file is found, it's stats is returned in stp.
  2202. static int substitute_index_file(struct mg_connection *conn, char *path,
  2203. size_t path_len, struct mgstat *stp) {
  2204. const char *list = conn->ctx->config[INDEX_FILES];
  2205. struct mgstat st;
  2206. struct vec filename_vec;
  2207. size_t n = strlen(path);
  2208. int found = 0;
  2209. // The 'path' given to us points to the directory. Remove all trailing
  2210. // directory separator characters from the end of the path, and
  2211. // then append single directory separator character.
  2212. while (n > 0 && IS_DIRSEP_CHAR(path[n - 1])) {
  2213. n--;
  2214. }
  2215. path[n] = DIRSEP;
  2216. // Traverse index files list. For each entry, append it to the given
  2217. // path and see if the file exists. If it exists, break the loop
  2218. while ((list = next_option(list, &filename_vec, NULL)) != NULL) {
  2219. // Ignore too long entries that may overflow path buffer
  2220. if (filename_vec.len > path_len - n)
  2221. continue;
  2222. // Prepare full path to the index file
  2223. (void) mg_strlcpy(path + n + 1, filename_vec.ptr, filename_vec.len + 1);
  2224. // Does it exist?
  2225. if (mg_stat(path, &st) == 0) {
  2226. // Yes it does, break the loop
  2227. *stp = st;
  2228. found = 1;
  2229. break;
  2230. }
  2231. }
  2232. // If no index file exists, restore directory path
  2233. if (!found) {
  2234. path[n] = '\0';
  2235. }
  2236. return found;
  2237. }
  2238. // Return True if we should reply 304 Not Modified.
  2239. static int is_not_modified(const struct mg_connection *conn,
  2240. const struct mgstat *stp) {
  2241. const char *ims = mg_get_header(conn, "If-Modified-Since");
  2242. return ims != NULL && stp->mtime <= parse_date_string(ims);
  2243. }
  2244. static int forward_body_data(struct mg_connection *conn, FILE *fp,
  2245. SOCKET sock, SSL *ssl) {
  2246. const char *expect, *buffered;
  2247. char buf[BUFSIZ];
  2248. int to_read, nread, buffered_len, success = 0;
  2249. expect = mg_get_header(conn, "Expect");
  2250. assert(fp != NULL);
  2251. if (conn->content_len == -1) {
  2252. send_http_error(conn, 411, "Length Required", "");
  2253. } else if (expect != NULL && mg_strcasecmp(expect, "100-continue")) {
  2254. send_http_error(conn, 417, "Expectation Failed", "");
  2255. } else {
  2256. if (expect != NULL) {
  2257. (void) mg_printf(conn, "%s", "HTTP/1.1 100 Continue\r\n\r\n");
  2258. }
  2259. buffered = conn->buf + conn->request_len;
  2260. buffered_len = conn->data_len - conn->request_len;
  2261. assert(buffered_len >= 0);
  2262. assert(conn->consumed_content == 0);
  2263. if (buffered_len > 0) {
  2264. if ((int64_t) buffered_len > conn->content_len) {
  2265. buffered_len = (int) conn->content_len;
  2266. }
  2267. push(fp, sock, ssl, buffered, (int64_t) buffered_len);
  2268. conn->consumed_content += buffered_len;
  2269. }
  2270. while (conn->consumed_content < conn->content_len) {
  2271. to_read = sizeof(buf);
  2272. if ((int64_t) to_read > conn->content_len - conn->consumed_content) {
  2273. to_read = (int) (conn->content_len - conn->consumed_content);
  2274. }
  2275. nread = pull(NULL, conn->client.sock, conn->ssl, buf, to_read);
  2276. if (nread <= 0 || push(fp, sock, ssl, buf, nread) != nread) {
  2277. break;
  2278. }
  2279. conn->consumed_content += nread;
  2280. }
  2281. if (conn->consumed_content == conn->content_len) {
  2282. success = 1;
  2283. }
  2284. // Each error code path in this function must send an error
  2285. if (!success) {
  2286. send_http_error(conn, 577, http_500_error, "");
  2287. }
  2288. }
  2289. return success;
  2290. }
  2291. #if !defined(NO_CGI)
  2292. // This structure helps to create an environment for the spawned CGI program.
  2293. // Environment is an array of "VARIABLE=VALUE\0" ASCIIZ strings,
  2294. // last element must be NULL.
  2295. // However, on Windows there is a requirement that all these VARIABLE=VALUE\0
  2296. // strings must reside in a contiguous buffer. The end of the buffer is
  2297. // marked by two '\0' characters.
  2298. // We satisfy both worlds: we create an envp array (which is vars), all
  2299. // entries are actually pointers inside buf.
  2300. struct cgi_env_block {
  2301. struct mg_connection *conn;
  2302. char buf[CGI_ENVIRONMENT_SIZE]; // Environment buffer
  2303. int len; // Space taken
  2304. char *vars[MAX_CGI_ENVIR_VARS]; // char **envp
  2305. int nvars; // Number of variables
  2306. };
  2307. // Append VARIABLE=VALUE\0 string to the buffer, and add a respective
  2308. // pointer into the vars array.
  2309. static char *addenv(struct cgi_env_block *block, const char *fmt, ...) {
  2310. int n, space;
  2311. char *added;
  2312. va_list ap;
  2313. // Calculate how much space is left in the buffer
  2314. space = sizeof(block->buf) - block->len - 2;
  2315. assert(space >= 0);
  2316. // Make a pointer to the free space int the buffer
  2317. added = block->buf + block->len;
  2318. // Copy VARIABLE=VALUE\0 string into the free space
  2319. va_start(ap, fmt);
  2320. n = mg_vsnprintf(block->conn, added, (size_t) space, fmt, ap);
  2321. va_end(ap);
  2322. // Make sure we do not overflow buffer and the envp array
  2323. if (n > 0 && n < space &&
  2324. block->nvars < (int) ARRAY_SIZE(block->vars) - 2) {
  2325. // Append a pointer to the added string into the envp array
  2326. block->vars[block->nvars++] = block->buf + block->len;
  2327. // Bump up used length counter. Include \0 terminator
  2328. block->len += n + 1;
  2329. }
  2330. return added;
  2331. }
  2332. static void prepare_cgi_environment(struct mg_connection *conn,
  2333. const char *prog,
  2334. struct cgi_env_block *blk) {
  2335. const char *s, *slash;
  2336. struct vec var_vec, root;
  2337. char *p;
  2338. int i;
  2339. blk->len = blk->nvars = 0;
  2340. blk->conn = conn;
  2341. get_document_root(conn, &root);
  2342. addenv(blk, "SERVER_NAME=%s", conn->ctx->config[AUTHENTICATION_DOMAIN]);
  2343. addenv(blk, "SERVER_ROOT=%.*s", root.len, root.ptr);
  2344. addenv(blk, "DOCUMENT_ROOT=%.*s", root.len, root.ptr);
  2345. // Prepare the environment block
  2346. addenv(blk, "%s", "GATEWAY_INTERFACE=CGI/1.1");
  2347. addenv(blk, "%s", "SERVER_PROTOCOL=HTTP/1.1");
  2348. addenv(blk, "%s", "REDIRECT_STATUS=200"); // For PHP
  2349. addenv(blk, "SERVER_PORT=%d", ntohs(conn->client.lsa.u.sin.sin_port));
  2350. addenv(blk, "REQUEST_METHOD=%s", conn->request_info.request_method);
  2351. addenv(blk, "REMOTE_ADDR=%s",
  2352. inet_ntoa(conn->client.rsa.u.sin.sin_addr));
  2353. addenv(blk, "REMOTE_PORT=%d", conn->request_info.remote_port);
  2354. addenv(blk, "REQUEST_URI=%s", conn->request_info.uri);
  2355. // SCRIPT_NAME
  2356. assert(conn->request_info.uri[0] == '/');
  2357. slash = strrchr(conn->request_info.uri, '/');
  2358. if ((s = strrchr(prog, '/')) == NULL)
  2359. s = prog;
  2360. addenv(blk, "SCRIPT_NAME=%.*s%s", slash - conn->request_info.uri,
  2361. conn->request_info.uri, s);
  2362. addenv(blk, "SCRIPT_FILENAME=%s", prog);
  2363. addenv(blk, "PATH_TRANSLATED=%s", prog);
  2364. addenv(blk, "HTTPS=%s", conn->ssl == NULL ? "off" : "on");
  2365. if ((s = mg_get_header(conn, "Content-Type")) != NULL)
  2366. addenv(blk, "CONTENT_TYPE=%s", s);
  2367. if (conn->request_info.query_string != NULL)
  2368. addenv(blk, "QUERY_STRING=%s", conn->request_info.query_string);
  2369. if ((s = mg_get_header(conn, "Content-Length")) != NULL)
  2370. addenv(blk, "CONTENT_LENGTH=%s", s);
  2371. if ((s = getenv("PATH")) != NULL)
  2372. addenv(blk, "PATH=%s", s);
  2373. #if defined(_WIN32)
  2374. if ((s = getenv("COMSPEC")) != NULL)
  2375. addenv(blk, "COMSPEC=%s", s);
  2376. if ((s = getenv("SYSTEMROOT")) != NULL)
  2377. addenv(blk, "SYSTEMROOT=%s", s);
  2378. #else
  2379. if ((s = getenv("LD_LIBRARY_PATH")) != NULL)
  2380. addenv(blk, "LD_LIBRARY_PATH=%s", s);
  2381. #endif /* _WIN32 */
  2382. if ((s = getenv("PERLLIB")) != NULL)
  2383. addenv(blk, "PERLLIB=%s", s);
  2384. if (conn->request_info.remote_user != NULL) {
  2385. addenv(blk, "REMOTE_USER=%s", conn->request_info.remote_user);
  2386. addenv(blk, "%s", "AUTH_TYPE=Digest");
  2387. }
  2388. // Add all headers as HTTP_* variables
  2389. for (i = 0; i < conn->request_info.num_headers; i++) {
  2390. p = addenv(blk, "HTTP_%s=%s",
  2391. conn->request_info.http_headers[i].name,
  2392. conn->request_info.http_headers[i].value);
  2393. // Convert variable name into uppercase, and change - to _
  2394. for (; *p != '=' && *p != '\0'; p++) {
  2395. if (*p == '-')
  2396. *p = '_';
  2397. *p = (char) toupper(* (unsigned char *) p);
  2398. }
  2399. }
  2400. // Add user-specified variables
  2401. s = conn->ctx->config[CGI_ENVIRONMENT];
  2402. while ((s = next_option(s, &var_vec, NULL)) != NULL) {
  2403. addenv(blk, "%.*s", var_vec.len, var_vec.ptr);
  2404. }
  2405. blk->vars[blk->nvars++] = NULL;
  2406. blk->buf[blk->len++] = '\0';
  2407. assert(blk->nvars < (int) ARRAY_SIZE(blk->vars));
  2408. assert(blk->len > 0);
  2409. assert(blk->len < (int) sizeof(blk->buf));
  2410. }
  2411. static void handle_cgi_request(struct mg_connection *conn, const char *prog) {
  2412. int headers_len, data_len, i, fd_stdin[2], fd_stdout[2];
  2413. const char *status;
  2414. char buf[BUFSIZ], *pbuf, dir[PATH_MAX], *p;
  2415. struct mg_request_info ri;
  2416. struct cgi_env_block blk;
  2417. FILE *in, *out;
  2418. pid_t pid;
  2419. prepare_cgi_environment(conn, prog, &blk);
  2420. // CGI must be executed in its own directory. 'dir' must point to the
  2421. // directory containing executable program, 'p' must point to the
  2422. // executable program name relative to 'dir'.
  2423. (void) mg_snprintf(conn, dir, sizeof(dir), "%s", prog);
  2424. if ((p = strrchr(dir, DIRSEP)) != NULL) {
  2425. *p++ = '\0';
  2426. } else {
  2427. dir[0] = '.', dir[1] = '\0';
  2428. p = (char *) prog;
  2429. }
  2430. pid = (pid_t) -1;
  2431. fd_stdin[0] = fd_stdin[1] = fd_stdout[0] = fd_stdout[1] = -1;
  2432. in = out = NULL;
  2433. if (pipe(fd_stdin) != 0 || pipe(fd_stdout) != 0) {
  2434. send_http_error(conn, 500, http_500_error,
  2435. "Cannot create CGI pipe: %s", strerror(ERRNO));
  2436. goto done;
  2437. } else if ((pid = spawn_process(conn, p, blk.buf, blk.vars,
  2438. fd_stdin[0], fd_stdout[1], dir)) == (pid_t) -1) {
  2439. goto done;
  2440. } else if ((in = fdopen(fd_stdin[1], "wb")) == NULL ||
  2441. (out = fdopen(fd_stdout[0], "rb")) == NULL) {
  2442. send_http_error(conn, 500, http_500_error,
  2443. "fopen: %s", strerror(ERRNO));
  2444. goto done;
  2445. }
  2446. setbuf(in, NULL);
  2447. setbuf(out, NULL);
  2448. // spawn_process() must close those!
  2449. // If we don't mark them as closed, close() attempt before
  2450. // return from this function throws an exception on Windows.
  2451. // Windows does not like when closed descriptor is closed again.
  2452. fd_stdin[0] = fd_stdout[1] = -1;
  2453. // Send POST data to the CGI process if needed
  2454. if (!strcmp(conn->request_info.request_method, "POST") &&
  2455. !forward_body_data(conn, in, INVALID_SOCKET, NULL)) {
  2456. goto done;
  2457. }
  2458. // Now read CGI reply into a buffer. We need to set correct
  2459. // status code, thus we need to see all HTTP headers first.
  2460. // Do not send anything back to client, until we buffer in all
  2461. // HTTP headers.
  2462. data_len = 0;
  2463. headers_len = read_request(out, INVALID_SOCKET, NULL,
  2464. buf, sizeof(buf), &data_len);
  2465. if (headers_len <= 0) {
  2466. send_http_error(conn, 500, http_500_error,
  2467. "CGI program sent malformed HTTP headers: [%.*s]",
  2468. data_len, buf);
  2469. goto done;
  2470. }
  2471. pbuf = buf;
  2472. buf[headers_len - 1] = '\0';
  2473. parse_http_headers(&pbuf, &ri);
  2474. // Make up and send the status line
  2475. status = get_header(&ri, "Status");
  2476. conn->request_info.status_code = status == NULL ? 200 : atoi(status);
  2477. (void) mg_printf(conn, "HTTP/1.1 %d OK\r\n", conn->request_info.status_code);
  2478. // Send headers
  2479. for (i = 0; i < ri.num_headers; i++) {
  2480. mg_printf(conn, "%s: %s\r\n",
  2481. ri.http_headers[i].name, ri.http_headers[i].value);
  2482. }
  2483. (void) mg_write(conn, "\r\n", 2);
  2484. // Send chunk of data that may be read after the headers
  2485. conn->num_bytes_sent += mg_write(conn, buf + headers_len,
  2486. (size_t)(data_len - headers_len));
  2487. // Read the rest of CGI output and send to the client
  2488. send_file_data(conn, out, INT64_MAX);
  2489. done:
  2490. if (pid != (pid_t) -1) {
  2491. kill(pid, SIGKILL);
  2492. #if !defined(_WIN32)
  2493. do {} while (waitpid(-1, &i, WNOHANG) > 0);
  2494. #endif
  2495. }
  2496. if (fd_stdin[0] != -1) {
  2497. (void) close(fd_stdin[0]);
  2498. }
  2499. if (fd_stdout[1] != -1) {
  2500. (void) close(fd_stdout[1]);
  2501. }
  2502. if (in != NULL) {
  2503. (void) fclose(in);
  2504. } else if (fd_stdin[1] != -1) {
  2505. (void) close(fd_stdin[1]);
  2506. }
  2507. if (out != NULL) {
  2508. (void) fclose(out);
  2509. } else if (fd_stdout[0] != -1) {
  2510. (void) close(fd_stdout[0]);
  2511. }
  2512. }
  2513. #endif // !NO_CGI
  2514. // For a given PUT path, create all intermediate subdirectories
  2515. // for given path. Return 0 if the path itself is a directory,
  2516. // or -1 on error, 1 if OK.
  2517. static int put_dir(const char *path) {
  2518. char buf[PATH_MAX];
  2519. const char *s, *p;
  2520. struct mgstat st;
  2521. size_t len;
  2522. for (s = p = path + 2; (p = strchr(s, '/')) != NULL; s = ++p) {
  2523. len = p - path;
  2524. assert(len < sizeof(buf));
  2525. (void) memcpy(buf, path, len);
  2526. buf[len] = '\0';
  2527. // Try to create intermediate directory
  2528. if (mg_stat(buf, &st) == -1 && mg_mkdir(buf, 0755) != 0) {
  2529. return -1;
  2530. }
  2531. // Is path itself a directory?
  2532. if (p[1] == '\0') {
  2533. return 0;
  2534. }
  2535. }
  2536. return 1;
  2537. }
  2538. static void put_file(struct mg_connection *conn, const char *path) {
  2539. struct mgstat st;
  2540. const char *range;
  2541. int64_t r1, r2;
  2542. FILE *fp;
  2543. int rc;
  2544. conn->request_info.status_code = mg_stat(path, &st) == 0 ? 200 : 201;
  2545. if ((rc = put_dir(path)) == 0) {
  2546. mg_printf(conn, "HTTP/1.1 %d OK\r\n\r\n", conn->request_info.status_code);
  2547. } else if (rc == -1) {
  2548. send_http_error(conn, 500, http_500_error,
  2549. "put_dir(%s): %s", path, strerror(ERRNO));
  2550. } else if ((fp = mg_fopen(path, "wb+")) == NULL) {
  2551. send_http_error(conn, 500, http_500_error,
  2552. "fopen(%s): %s", path, strerror(ERRNO));
  2553. } else {
  2554. set_close_on_exec(fileno(fp));
  2555. range = mg_get_header(conn, "Content-Range");
  2556. r1 = r2 = 0;
  2557. if (range != NULL && parse_range_header(range, &r1, &r2) > 0) {
  2558. conn->request_info.status_code = 206;
  2559. // TODO(lsm): handle seek error
  2560. (void) fseeko(fp, (off_t) r1, SEEK_SET);
  2561. }
  2562. if (forward_body_data(conn, fp, INVALID_SOCKET, NULL))
  2563. (void) mg_printf(conn, "HTTP/1.1 %d OK\r\n\r\n",
  2564. conn->request_info.status_code);
  2565. (void) fclose(fp);
  2566. }
  2567. }
  2568. static void send_ssi_file(struct mg_connection *, const char *, FILE *, int);
  2569. static void do_ssi_include(struct mg_connection *conn, const char *ssi,
  2570. char *tag, int include_level) {
  2571. char file_name[BUFSIZ], path[PATH_MAX], *p;
  2572. struct vec root;
  2573. int is_ssi;
  2574. FILE *fp;
  2575. get_document_root(conn, &root);
  2576. // sscanf() is safe here, since send_ssi_file() also uses buffer
  2577. // of size BUFSIZ to get the tag. So strlen(tag) is always < BUFSIZ.
  2578. if (sscanf(tag, " virtual=\"%[^\"]\"", file_name) == 1) {
  2579. // File name is relative to the webserver root
  2580. (void) mg_snprintf(conn, path, sizeof(path), "%.*s%c%s",
  2581. root.len, root.ptr, DIRSEP, file_name);
  2582. } else if (sscanf(tag, " file=\"%[^\"]\"", file_name) == 1) {
  2583. // File name is relative to the webserver working directory
  2584. // or it is absolute system path
  2585. (void) mg_snprintf(conn, path, sizeof(path), "%s", file_name);
  2586. } else if (sscanf(tag, " \"%[^\"]\"", file_name) == 1) {
  2587. // File name is relative to the currect document
  2588. (void) mg_snprintf(conn, path, sizeof(path), "%s", ssi);
  2589. if ((p = strrchr(path, DIRSEP)) != NULL) {
  2590. p[1] = '\0';
  2591. }
  2592. (void) mg_snprintf(conn, path + strlen(path),
  2593. sizeof(path) - strlen(path), "%s", file_name);
  2594. } else {
  2595. cry(conn, "Bad SSI #include: [%s]", tag);
  2596. return;
  2597. }
  2598. if ((fp = mg_fopen(path, "rb")) == NULL) {
  2599. cry(conn, "Cannot open SSI #include: [%s]: fopen(%s): %s",
  2600. tag, path, strerror(ERRNO));
  2601. } else {
  2602. set_close_on_exec(fileno(fp));
  2603. is_ssi = match_extension(path, conn->ctx->config[SSI_EXTENSIONS]);
  2604. if (is_ssi) {
  2605. send_ssi_file(conn, path, fp, include_level + 1);
  2606. } else {
  2607. send_file_data(conn, fp, INT64_MAX);
  2608. }
  2609. (void) fclose(fp);
  2610. }
  2611. }
  2612. #if !defined(NO_POPEN)
  2613. static void do_ssi_exec(struct mg_connection *conn, char *tag) {
  2614. char cmd[BUFSIZ];
  2615. FILE *fp;
  2616. if (sscanf(tag, " \"%[^\"]\"", cmd) != 1) {
  2617. cry(conn, "Bad SSI #exec: [%s]", tag);
  2618. } else if ((fp = popen(cmd, "r")) == NULL) {
  2619. cry(conn, "Cannot SSI #exec: [%s]: %s", cmd, strerror(ERRNO));
  2620. } else {
  2621. send_file_data(conn, fp, INT64_MAX);
  2622. (void) pclose(fp);
  2623. }
  2624. }
  2625. #endif // !NO_POPEN
  2626. static void send_ssi_file(struct mg_connection *conn, const char *path,
  2627. FILE *fp, int include_level) {
  2628. char buf[BUFSIZ];
  2629. int ch, len, in_ssi_tag;
  2630. if (include_level > 10) {
  2631. cry(conn, "SSI #include level is too deep (%s)", path);
  2632. return;
  2633. }
  2634. in_ssi_tag = 0;
  2635. len = 0;
  2636. while ((ch = fgetc(fp)) != EOF) {
  2637. if (in_ssi_tag && ch == '>') {
  2638. in_ssi_tag = 0;
  2639. buf[len++] = (char) ch;
  2640. buf[len] = '\0';
  2641. assert(len <= (int) sizeof(buf));
  2642. if (len < 6 || memcmp(buf, "<!--#", 5) != 0) {
  2643. // Not an SSI tag, pass it
  2644. (void) mg_write(conn, buf, (size_t)len);
  2645. } else {
  2646. if (!memcmp(buf + 5, "include", 7)) {
  2647. do_ssi_include(conn, path, buf + 12, include_level);
  2648. #if !defined(NO_POPEN)
  2649. } else if (!memcmp(buf + 5, "exec", 4)) {
  2650. do_ssi_exec(conn, buf + 9);
  2651. #endif // !NO_POPEN
  2652. } else {
  2653. cry(conn, "%s: unknown SSI " "command: \"%s\"", path, buf);
  2654. }
  2655. }
  2656. len = 0;
  2657. } else if (in_ssi_tag) {
  2658. if (len == 5 && memcmp(buf, "<!--#", 5) != 0) {
  2659. // Not an SSI tag
  2660. in_ssi_tag = 0;
  2661. } else if (len == (int) sizeof(buf) - 2) {
  2662. cry(conn, "%s: SSI tag is too large", path);
  2663. len = 0;
  2664. }
  2665. buf[len++] = ch & 0xff;
  2666. } else if (ch == '<') {
  2667. in_ssi_tag = 1;
  2668. if (len > 0) {
  2669. (void) mg_write(conn, buf, (size_t)len);
  2670. }
  2671. len = 0;
  2672. buf[len++] = ch & 0xff;
  2673. } else {
  2674. buf[len++] = ch & 0xff;
  2675. if (len == (int) sizeof(buf)) {
  2676. (void) mg_write(conn, buf, (size_t)len);
  2677. len = 0;
  2678. }
  2679. }
  2680. }
  2681. // Send the rest of buffered data
  2682. if (len > 0) {
  2683. (void) mg_write(conn, buf, (size_t)len);
  2684. }
  2685. }
  2686. static void handle_ssi_file_request(struct mg_connection *conn,
  2687. const char *path) {
  2688. FILE *fp;
  2689. if ((fp = mg_fopen(path, "rb")) == NULL) {
  2690. send_http_error(conn, 500, http_500_error, "fopen(%s): %s", path,
  2691. strerror(ERRNO));
  2692. } else {
  2693. set_close_on_exec(fileno(fp));
  2694. mg_printf(conn, "HTTP/1.1 200 OK\r\n"
  2695. "Content-Type: text/html\r\nConnection: %s\r\n\r\n",
  2696. suggest_connection_header(conn));
  2697. send_ssi_file(conn, path, fp, 0);
  2698. (void) fclose(fp);
  2699. }
  2700. }
  2701. // This is the heart of the Mongoose's logic.
  2702. // This function is called when the request is read, parsed and validated,
  2703. // and Mongoose must decide what action to take: serve a file, or
  2704. // a directory, or call embedded function, etcetera.
  2705. static void handle_request(struct mg_connection *conn) {
  2706. struct mg_request_info *ri = &conn->request_info;
  2707. char path[PATH_MAX];
  2708. int uri_len;
  2709. struct mgstat st;
  2710. if ((conn->request_info.query_string = strchr(ri->uri, '?')) != NULL) {
  2711. * conn->request_info.query_string++ = '\0';
  2712. }
  2713. uri_len = strlen(ri->uri);
  2714. (void) url_decode(ri->uri, (size_t)uri_len, ri->uri, (size_t)(uri_len + 1), 0);
  2715. remove_double_dots_and_double_slashes(ri->uri);
  2716. convert_uri_to_file_name(conn, ri->uri, path, sizeof(path));
  2717. DEBUG_TRACE(("%s", ri->uri));
  2718. if (call_user(conn, MG_NEW_REQUEST) != NULL) {
  2719. // Do nothing, callback has served the request
  2720. } else if (!check_authorization(conn, path)) {
  2721. send_authorization_request(conn);
  2722. } else if (strstr(path, PASSWORDS_FILE_NAME)) {
  2723. // Do not allow to view passwords files
  2724. send_http_error(conn, 403, "Forbidden", "Access Forbidden");
  2725. } else if (conn->ctx->config[DOCUMENT_ROOT] == NULL) {
  2726. send_http_error(conn, 404, "Not Found", "Not Found");
  2727. } else if ((!strcmp(ri->request_method, "PUT") ||
  2728. !strcmp(ri->request_method, "DELETE")) &&
  2729. (conn->ctx->config[PUT_DELETE_PASSWORDS_FILE] == NULL ||
  2730. !is_authorized_for_put(conn))) {
  2731. send_authorization_request(conn);
  2732. } else if (!strcmp(ri->request_method, "PUT")) {
  2733. put_file(conn, path);
  2734. } else if (!strcmp(ri->request_method, "DELETE")) {
  2735. if (mg_remove(path) == 0) {
  2736. send_http_error(conn, 200, "OK", "");
  2737. } else {
  2738. send_http_error(conn, 500, http_500_error, "remove(%s): %s", path,
  2739. strerror(ERRNO));
  2740. }
  2741. } else if (mg_stat(path, &st) != 0) {
  2742. send_http_error(conn, 404, "Not Found", "%s", "File not found");
  2743. } else if (st.is_directory && ri->uri[uri_len - 1] != '/') {
  2744. (void) mg_printf(conn,
  2745. "HTTP/1.1 301 Moved Permanently\r\n"
  2746. "Location: %s/\r\n\r\n", ri->uri);
  2747. } else if (st.is_directory &&
  2748. !substitute_index_file(conn, path, sizeof(path), &st)) {
  2749. if (!mg_strcasecmp(conn->ctx->config[ENABLE_DIRECTORY_LISTING], "yes")) {
  2750. handle_directory_request(conn, path);
  2751. } else {
  2752. send_http_error(conn, 403, "Directory Listing Denied",
  2753. "Directory listing denied");
  2754. }
  2755. } else if (match_extension(path, conn->ctx->config[CGI_EXTENSIONS])) {
  2756. if (strcmp(ri->request_method, "POST") &&
  2757. strcmp(ri->request_method, "GET")) {
  2758. send_http_error(conn, 501, "Not Implemented",
  2759. "Method %s is not implemented", ri->request_method);
  2760. } else {
  2761. handle_cgi_request(conn, path);
  2762. }
  2763. } else if (match_extension(path, conn->ctx->config[SSI_EXTENSIONS])) {
  2764. handle_ssi_file_request(conn, path);
  2765. } else if (is_not_modified(conn, &st)) {
  2766. send_http_error(conn, 304, "Not Modified", "");
  2767. } else {
  2768. handle_file_request(conn, path, &st);
  2769. }
  2770. }
  2771. static void close_all_listening_sockets(struct mg_context *ctx) {
  2772. struct socket *sp, *tmp;
  2773. for (sp = ctx->listening_sockets; sp != NULL; sp = tmp) {
  2774. tmp = sp->next;
  2775. (void) closesocket(sp->sock);
  2776. free(sp);
  2777. }
  2778. }
  2779. // Valid listening port specification is: [ip_address:]port[s|p]
  2780. // Examples: 80, 443s, 127.0.0.1:3128p, 1.2.3.4:8080sp
  2781. static int parse_port_string(const struct vec *vec, struct socket *so) {
  2782. struct usa *usa = &so->lsa;
  2783. int a, b, c, d, port, len;
  2784. // MacOS needs that. If we do not zero it, subsequent bind() will fail.
  2785. memset(so, 0, sizeof(*so));
  2786. if (sscanf(vec->ptr, "%d.%d.%d.%d:%d%n", &a, &b, &c, &d, &port, &len) == 5) {
  2787. // IP address to bind to is specified
  2788. usa->u.sin.sin_addr.s_addr = htonl((a << 24) | (b << 16) | (c << 8) | d);
  2789. } else if (sscanf(vec->ptr, "%d%n", &port, &len) == 1) {
  2790. // Only port number is specified. Bind to all addresses
  2791. usa->u.sin.sin_addr.s_addr = htonl(INADDR_ANY);
  2792. } else {
  2793. return 0;
  2794. }
  2795. assert(len > 0 && len <= (int) vec->len);
  2796. if (strchr("sp,", vec->ptr[len]) == NULL) {
  2797. return 0;
  2798. }
  2799. so->is_ssl = vec->ptr[len] == 's';
  2800. so->is_proxy = vec->ptr[len] == 'p';
  2801. usa->len = sizeof(usa->u.sin);
  2802. usa->u.sin.sin_family = AF_INET;
  2803. usa->u.sin.sin_port = htons((uint16_t) port);
  2804. return 1;
  2805. }
  2806. static int set_ports_option(struct mg_context *ctx) {
  2807. const char *list = ctx->config[LISTENING_PORTS];
  2808. int reuseaddr = 1, success = 1;
  2809. SOCKET sock;
  2810. struct vec vec;
  2811. struct socket so, *listener;
  2812. while (success && (list = next_option(list, &vec, NULL)) != NULL) {
  2813. if (!parse_port_string(&vec, &so)) {
  2814. cry(fc(ctx), "%s: %.*s: invalid port spec. Expecting list of: %s",
  2815. __func__, vec.len, vec.ptr, "[IP_ADDRESS:]PORT[s|p]");
  2816. success = 0;
  2817. } else if (so.is_ssl && ctx->ssl_ctx == NULL) {
  2818. cry(fc(ctx), "Cannot add SSL socket, is -ssl_cert option set?");
  2819. success = 0;
  2820. } else if ((sock = socket(PF_INET, SOCK_STREAM, 6)) == INVALID_SOCKET ||
  2821. #if !defined(_WIN32)
  2822. // On Windows, SO_REUSEADDR is recommended only for
  2823. // broadcast UDP sockets
  2824. setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &reuseaddr,
  2825. sizeof(reuseaddr)) != 0 ||
  2826. #endif // !_WIN32
  2827. bind(sock, &so.lsa.u.sa, so.lsa.len) != 0 ||
  2828. listen(sock, 20) != 0) {
  2829. closesocket(sock);
  2830. cry(fc(ctx), "%s: cannot bind to %.*s: %s", __func__,
  2831. vec.len, vec.ptr, strerror(ERRNO));
  2832. success = 0;
  2833. } else if ((listener = calloc(1, sizeof(*listener))) == NULL) {
  2834. closesocket(sock);
  2835. cry(fc(ctx), "%s: %s", __func__, strerror(ERRNO));
  2836. success = 0;
  2837. } else {
  2838. *listener = so;
  2839. listener->sock = sock;
  2840. set_close_on_exec(listener->sock);
  2841. listener->next = ctx->listening_sockets;
  2842. ctx->listening_sockets = listener;
  2843. }
  2844. }
  2845. if (!success) {
  2846. close_all_listening_sockets(ctx);
  2847. }
  2848. return success;
  2849. }
  2850. static void log_header(const struct mg_connection *conn, const char *header,
  2851. FILE *fp) {
  2852. const char *header_value;
  2853. if ((header_value = mg_get_header(conn, header)) == NULL) {
  2854. (void) fprintf(fp, "%s", " -");
  2855. } else {
  2856. (void) fprintf(fp, " \"%s\"", header_value);
  2857. }
  2858. }
  2859. static void log_access(const struct mg_connection *conn) {
  2860. const struct mg_request_info *ri;
  2861. FILE *fp;
  2862. char date[64];
  2863. fp = conn->ctx->config[ACCESS_LOG_FILE] == NULL ? NULL :
  2864. mg_fopen(conn->ctx->config[ACCESS_LOG_FILE], "a+");
  2865. if (fp == NULL)
  2866. return;
  2867. (void) strftime(date, sizeof(date), "%d/%b/%Y:%H:%M:%S %z",
  2868. localtime(&conn->birth_time));
  2869. ri = &conn->request_info;
  2870. flockfile(fp);
  2871. (void) fprintf(fp,
  2872. "%s - %s [%s] \"%s %s HTTP/%s\" %d %" INT64_FMT,
  2873. inet_ntoa(conn->client.rsa.u.sin.sin_addr),
  2874. ri->remote_user == NULL ? "-" : ri->remote_user,
  2875. date,
  2876. ri->request_method ? ri->request_method : "-",
  2877. ri->uri ? ri->uri : "-",
  2878. ri->http_version,
  2879. conn->request_info.status_code, conn->num_bytes_sent);
  2880. log_header(conn, "Referer", fp);
  2881. log_header(conn, "User-Agent", fp);
  2882. (void) fputc('\n', fp);
  2883. (void) fflush(fp);
  2884. funlockfile(fp);
  2885. (void) fclose(fp);
  2886. }
  2887. static int isbyte(int n) {
  2888. return n >= 0 && n <= 255;
  2889. }
  2890. // Verify given socket address against the ACL.
  2891. // Return -1 if ACL is malformed, 0 if address is disallowed, 1 if allowed.
  2892. static int check_acl(struct mg_context *ctx, const struct usa *usa) {
  2893. int a, b, c, d, n, mask, allowed;
  2894. char flag;
  2895. uint32_t acl_subnet, acl_mask, remote_ip;
  2896. struct vec vec;
  2897. const char *list = ctx->config[ACCESS_CONTROL_LIST];
  2898. if (list == NULL) {
  2899. return 1;
  2900. }
  2901. (void) memcpy(&remote_ip, &usa->u.sin.sin_addr, sizeof(remote_ip));
  2902. // If any ACL is set, deny by default
  2903. allowed = '-';
  2904. while ((list = next_option(list, &vec, NULL)) != NULL) {
  2905. mask = 32;
  2906. if (sscanf(vec.ptr, "%c%d.%d.%d.%d%n", &flag, &a, &b, &c, &d, &n) != 5) {
  2907. cry(fc(ctx), "%s: subnet must be [+|-]x.x.x.x[/x]", __func__);
  2908. return -1;
  2909. } else if (flag != '+' && flag != '-') {
  2910. cry(fc(ctx), "%s: flag must be + or -: [%s]", __func__, vec.ptr);
  2911. return -1;
  2912. } else if (!isbyte(a)||!isbyte(b)||!isbyte(c)||!isbyte(d)) {
  2913. cry(fc(ctx), "%s: bad ip address: [%s]", __func__, vec.ptr);
  2914. return -1;
  2915. } else if (sscanf(vec.ptr + n, "/%d", &mask) == 0) {
  2916. // Do nothing, no mask specified
  2917. } else if (mask < 0 || mask > 32) {
  2918. cry(fc(ctx), "%s: bad subnet mask: %d [%s]", __func__, n, vec.ptr);
  2919. return -1;
  2920. }
  2921. acl_subnet = (a << 24) | (b << 16) | (c << 8) | d;
  2922. acl_mask = mask ? 0xffffffffU << (32 - mask) : 0;
  2923. if (acl_subnet == (ntohl(remote_ip) & acl_mask)) {
  2924. allowed = flag;
  2925. }
  2926. }
  2927. return allowed == '+';
  2928. }
  2929. static void add_to_set(SOCKET fd, fd_set *set, int *max_fd) {
  2930. FD_SET(fd, set);
  2931. if (fd > (SOCKET) *max_fd) {
  2932. *max_fd = (int) fd;
  2933. }
  2934. }
  2935. #if !defined(_WIN32)
  2936. static int set_uid_option(struct mg_context *ctx) {
  2937. struct passwd *pw;
  2938. const char *uid = ctx->config[RUN_AS_USER];
  2939. int success = 0;
  2940. if (uid == NULL) {
  2941. success = 1;
  2942. } else {
  2943. if ((pw = getpwnam(uid)) == NULL) {
  2944. cry(fc(ctx), "%s: unknown user [%s]", __func__, uid);
  2945. } else if (setgid(pw->pw_gid) == -1) {
  2946. cry(fc(ctx), "%s: setgid(%s): %s", __func__, uid, strerror(errno));
  2947. } else if (setuid(pw->pw_uid) == -1) {
  2948. cry(fc(ctx), "%s: setuid(%s): %s", __func__, uid, strerror(errno));
  2949. } else {
  2950. success = 1;
  2951. }
  2952. }
  2953. return success;
  2954. }
  2955. #endif // !_WIN32
  2956. #if !defined(NO_SSL)
  2957. static pthread_mutex_t *ssl_mutexes;
  2958. static void ssl_locking_callback(int mode, int mutex_num, const char *file,
  2959. int line) {
  2960. line = 0; // Unused
  2961. file = NULL; // Unused
  2962. if (mode & CRYPTO_LOCK) {
  2963. (void) pthread_mutex_lock(&ssl_mutexes[mutex_num]);
  2964. } else {
  2965. (void) pthread_mutex_unlock(&ssl_mutexes[mutex_num]);
  2966. }
  2967. }
  2968. static unsigned long ssl_id_callback(void) {
  2969. return (unsigned long) pthread_self();
  2970. }
  2971. #if !defined(NO_SSL_DL)
  2972. static int load_dll(struct mg_context *ctx, const char *dll_name,
  2973. struct ssl_func *sw) {
  2974. union {void *p; void (*fp)(void);} u;
  2975. void *dll_handle;
  2976. struct ssl_func *fp;
  2977. if ((dll_handle = dlopen(dll_name, RTLD_LAZY)) == NULL) {
  2978. cry(fc(ctx), "%s: cannot load %s", __func__, dll_name);
  2979. return 0;
  2980. }
  2981. for (fp = sw; fp->name != NULL; fp++) {
  2982. #ifdef _WIN32
  2983. // GetProcAddress() returns pointer to function
  2984. u.fp = (void (*)(void)) dlsym(dll_handle, fp->name);
  2985. #else
  2986. // dlsym() on UNIX returns void *. ISO C forbids casts of data pointers to
  2987. // function pointers. We need to use a union to make a cast.
  2988. u.p = dlsym(dll_handle, fp->name);
  2989. #endif /* _WIN32 */
  2990. if (u.fp == NULL) {
  2991. cry(fc(ctx), "%s: %s: cannot find %s", __func__, dll_name, fp->name);
  2992. return 0;
  2993. } else {
  2994. fp->ptr = u.fp;
  2995. }
  2996. }
  2997. return 1;
  2998. }
  2999. #endif // NO_SSL_DL
  3000. // Dynamically load SSL library. Set up ctx->ssl_ctx pointer.
  3001. static int set_ssl_option(struct mg_context *ctx) {
  3002. SSL_CTX *CTX;
  3003. int i, size;
  3004. const char *pem = ctx->config[SSL_CERTIFICATE];
  3005. const char *chain = ctx->config[SSL_CHAIN_FILE];
  3006. if (pem == NULL) {
  3007. return 1;
  3008. }
  3009. #if !defined(NO_SSL_DL)
  3010. if (!load_dll(ctx, SSL_LIB, ssl_sw) ||
  3011. !load_dll(ctx, CRYPTO_LIB, crypto_sw)) {
  3012. return 0;
  3013. }
  3014. #endif // NO_SSL_DL
  3015. // Initialize SSL crap
  3016. SSL_library_init();
  3017. SSL_load_error_strings();
  3018. if ((CTX = SSL_CTX_new(SSLv23_server_method())) == NULL) {
  3019. cry(fc(ctx), "SSL_CTX_new error: %s", ssl_error());
  3020. } else if (ctx->user_callback != NULL) {
  3021. ctx->user_callback(MG_INIT_SSL, (struct mg_connection *) CTX, NULL);
  3022. }
  3023. if (CTX != NULL && SSL_CTX_use_certificate_file(CTX, pem,
  3024. SSL_FILETYPE_PEM) == 0) {
  3025. cry(fc(ctx), "%s: cannot open %s: %s", __func__, pem, ssl_error());
  3026. return 0;
  3027. } else if (CTX != NULL && SSL_CTX_use_PrivateKey_file(CTX, pem,
  3028. SSL_FILETYPE_PEM) == 0) {
  3029. cry(fc(ctx), "%s: cannot open %s: %s", NULL, pem, ssl_error());
  3030. return 0;
  3031. }
  3032. if (CTX != NULL && chain != NULL &&
  3033. SSL_CTX_use_certificate_chain_file(CTX, chain) == 0) {
  3034. cry(fc(ctx), "%s: cannot open %s: %s", NULL, chain, ssl_error());
  3035. return 0;
  3036. }
  3037. // Initialize locking callbacks, needed for thread safety.
  3038. // http://www.openssl.org/support/faq.html#PROG1
  3039. size = sizeof(pthread_mutex_t) * CRYPTO_num_locks();
  3040. if ((ssl_mutexes = (pthread_mutex_t *) malloc((size_t)size)) == NULL) {
  3041. cry(fc(ctx), "%s: cannot allocate mutexes: %s", __func__, ssl_error());
  3042. return 0;
  3043. }
  3044. for (i = 0; i < CRYPTO_num_locks(); i++) {
  3045. pthread_mutex_init(&ssl_mutexes[i], NULL);
  3046. }
  3047. CRYPTO_set_locking_callback(&ssl_locking_callback);
  3048. CRYPTO_set_id_callback(&ssl_id_callback);
  3049. // Done with everything. Save the context.
  3050. ctx->ssl_ctx = CTX;
  3051. return 1;
  3052. }
  3053. #endif // !NO_SSL
  3054. static int set_gpass_option(struct mg_context *ctx) {
  3055. struct mgstat mgstat;
  3056. const char *path = ctx->config[GLOBAL_PASSWORDS_FILE];
  3057. return path == NULL || mg_stat(path, &mgstat) == 0;
  3058. }
  3059. static int set_acl_option(struct mg_context *ctx) {
  3060. struct usa fake;
  3061. return check_acl(ctx, &fake) != -1;
  3062. }
  3063. static void reset_per_request_attributes(struct mg_connection *conn) {
  3064. struct mg_request_info *ri = &conn->request_info;
  3065. // Reset request info attributes. DO NOT TOUCH is_ssl, remote_ip, remote_port
  3066. if (ri->remote_user != NULL) {
  3067. free((void *) ri->remote_user);
  3068. }
  3069. ri->remote_user = ri->request_method = ri->uri = ri->http_version = NULL;
  3070. ri->num_headers = 0;
  3071. ri->status_code = -1;
  3072. conn->num_bytes_sent = conn->consumed_content = 0;
  3073. conn->content_len = -1;
  3074. conn->request_len = conn->data_len = 0;
  3075. }
  3076. static void close_socket_gracefully(SOCKET sock) {
  3077. char buf[BUFSIZ];
  3078. int n;
  3079. // Send FIN to the client
  3080. (void) shutdown(sock, SHUT_WR);
  3081. set_non_blocking_mode(sock);
  3082. // Read and discard pending data. If we do not do that and close the
  3083. // socket, the data in the send buffer may be discarded. This
  3084. // behaviour is seen on Windows, when client keeps sending data
  3085. // when server decide to close the connection; then when client
  3086. // does recv() it gets no data back.
  3087. do {
  3088. n = pull(NULL, sock, NULL, buf, sizeof(buf));
  3089. } while (n > 0);
  3090. // Now we know that our FIN is ACK-ed, safe to close
  3091. (void) closesocket(sock);
  3092. }
  3093. static void close_connection(struct mg_connection *conn) {
  3094. if (conn->ssl) {
  3095. SSL_free(conn->ssl);
  3096. conn->ssl = NULL;
  3097. }
  3098. if (conn->client.sock != INVALID_SOCKET) {
  3099. close_socket_gracefully(conn->client.sock);
  3100. }
  3101. }
  3102. static void discard_current_request_from_buffer(struct mg_connection *conn) {
  3103. char *buffered;
  3104. int buffered_len, body_len;
  3105. buffered = conn->buf + conn->request_len;
  3106. buffered_len = conn->data_len - conn->request_len;
  3107. assert(buffered_len >= 0);
  3108. if (conn->content_len == -1) {
  3109. body_len = 0;
  3110. } else if (conn->content_len < (int64_t) buffered_len) {
  3111. body_len = (int) conn->content_len;
  3112. } else {
  3113. body_len = buffered_len;
  3114. }
  3115. conn->data_len -= conn->request_len + body_len;
  3116. memmove(conn->buf, conn->buf + conn->request_len + body_len, (size_t)conn->data_len);
  3117. }
  3118. static int parse_url(const char *url, char *host, int *port) {
  3119. int len;
  3120. if (url == NULL) {
  3121. return 0;
  3122. };
  3123. if (!strncmp(url, "http://", 7)) {
  3124. url += 7;
  3125. }
  3126. if (sscanf(url, "%1024[^:]:%d/%n", host, port, &len) == 2) {
  3127. } else {
  3128. sscanf(url, "%1024[^/]/%n", host, &len);
  3129. *port = 80;
  3130. }
  3131. DEBUG_TRACE(("Host:%s, port:%d", host, *port));
  3132. return len > 0 && url[len - 1] == '/' ? len - 1 : len;
  3133. }
  3134. static void handle_proxy_request(struct mg_connection *conn) {
  3135. struct mg_request_info *ri = &conn->request_info;
  3136. char host[1025], buf[BUFSIZ];
  3137. int port, is_ssl, len, i, n;
  3138. DEBUG_TRACE(("URL: %s", ri->uri));
  3139. if (conn->request_info.uri[0] == '/' ||
  3140. (len = parse_url(ri->uri, host, &port)) == 0) {
  3141. return;
  3142. }
  3143. if (conn->peer == NULL) {
  3144. is_ssl = !strcmp(ri->request_method, "CONNECT");
  3145. if ((conn->peer = mg_connect(conn, host, port, is_ssl)) == NULL) {
  3146. return;
  3147. }
  3148. conn->peer->client.is_ssl = is_ssl;
  3149. }
  3150. // Forward client's request to the target
  3151. mg_printf(conn->peer, "%s %s HTTP/%s\r\n", ri->request_method, ri->uri + len,
  3152. ri->http_version);
  3153. // And also all headers. TODO(lsm): anonymize!
  3154. for (i = 0; i < ri->num_headers; i++) {
  3155. mg_printf(conn->peer, "%s: %s\r\n", ri->http_headers[i].name,
  3156. ri->http_headers[i].value);
  3157. }
  3158. // End of headers, final newline
  3159. mg_write(conn->peer, "\r\n", 2);
  3160. // Read and forward body data if any
  3161. if (!strcmp(ri->request_method, "POST")) {
  3162. forward_body_data(conn, NULL, conn->peer->client.sock, conn->peer->ssl);
  3163. }
  3164. // Read data from the target and forward it to the client
  3165. while ((n = pull(NULL, conn->peer->client.sock, conn->peer->ssl,
  3166. buf, sizeof(buf))) > 0) {
  3167. if (mg_write(conn, buf, (size_t)n) != n) {
  3168. break;
  3169. }
  3170. }
  3171. if (!conn->peer->client.is_ssl) {
  3172. close_connection(conn->peer);
  3173. free(conn->peer);
  3174. conn->peer = NULL;
  3175. }
  3176. }
  3177. static int is_valid_uri(const char *uri) {
  3178. // Conform to http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5.1.2
  3179. // URI can be an asterisk (*) or should start with slash.
  3180. return (uri[0] == '/' || (uri[0] == '*' && uri[1] == '\0'));
  3181. }
  3182. static void process_new_connection(struct mg_connection *conn) {
  3183. struct mg_request_info *ri = &conn->request_info;
  3184. int keep_alive_enabled;
  3185. const char *cl;
  3186. keep_alive_enabled = !strcmp(conn->ctx->config[ENABLE_KEEP_ALIVE], "yes");
  3187. do {
  3188. reset_per_request_attributes(conn);
  3189. // If next request is not pipelined, read it in
  3190. if ((conn->request_len = get_request_len(conn->buf, conn->data_len)) == 0) {
  3191. conn->request_len = read_request(NULL, conn->client.sock, conn->ssl,
  3192. conn->buf, conn->buf_size, &conn->data_len);
  3193. }
  3194. assert(conn->data_len >= conn->request_len);
  3195. if (conn->request_len == 0 && conn->data_len == conn->buf_size) {
  3196. send_http_error(conn, 413, "Request Too Large", "");
  3197. return;
  3198. } if (conn->request_len <= 0) {
  3199. return; // Remote end closed the connection
  3200. }
  3201. // Nul-terminate the request cause parse_http_request() uses sscanf
  3202. conn->buf[conn->request_len - 1] = '\0';
  3203. if (!parse_http_request(conn->buf, ri) ||
  3204. (!conn->client.is_proxy && !is_valid_uri(ri->uri))) {
  3205. // Do not put garbage in the access log, just send it back to the client
  3206. send_http_error(conn, 400, "Bad Request",
  3207. "Cannot parse HTTP request: [%.*s]", conn->data_len, conn->buf);
  3208. } else if (strcmp(ri->http_version, "1.0") &&
  3209. strcmp(ri->http_version, "1.1")) {
  3210. // Request seems valid, but HTTP version is strange
  3211. send_http_error(conn, 505, "HTTP version not supported", "");
  3212. log_access(conn);
  3213. } else {
  3214. // Request is valid, handle it
  3215. cl = get_header(ri, "Content-Length");
  3216. conn->content_len = cl == NULL ? -1 : strtoll(cl, NULL, 10);
  3217. conn->birth_time = time(NULL);
  3218. if (conn->client.is_proxy) {
  3219. handle_proxy_request(conn);
  3220. } else {
  3221. handle_request(conn);
  3222. }
  3223. log_access(conn);
  3224. discard_current_request_from_buffer(conn);
  3225. }
  3226. // conn->peer is not NULL only for SSL-ed proxy connections
  3227. } while (conn->peer || (keep_alive_enabled && should_keep_alive(conn)));
  3228. }
  3229. // Worker threads take accepted socket from the queue
  3230. static int consume_socket(struct mg_context *ctx, struct socket *sp) {
  3231. (void) pthread_mutex_lock(&ctx->mutex);
  3232. DEBUG_TRACE(("going idle"));
  3233. // If the queue is empty, wait. We're idle at this point.
  3234. while (ctx->sq_head == ctx->sq_tail && ctx->stop_flag == 0) {
  3235. pthread_cond_wait(&ctx->sq_full, &ctx->mutex);
  3236. }
  3237. // Master thread could wake us up without putting a socket.
  3238. // If this happens, it is time to exit.
  3239. if (ctx->stop_flag) {
  3240. (void) pthread_mutex_unlock(&ctx->mutex);
  3241. return 0;
  3242. }
  3243. assert(ctx->sq_head > ctx->sq_tail);
  3244. // Copy socket from the queue and increment tail
  3245. *sp = ctx->queue[ctx->sq_tail % ARRAY_SIZE(ctx->queue)];
  3246. ctx->sq_tail++;
  3247. DEBUG_TRACE(("grabbed socket %d, going busy", sp->sock));
  3248. // Wrap pointers if needed
  3249. while (ctx->sq_tail > (int) ARRAY_SIZE(ctx->queue)) {
  3250. ctx->sq_tail -= ARRAY_SIZE(ctx->queue);
  3251. ctx->sq_head -= ARRAY_SIZE(ctx->queue);
  3252. }
  3253. (void) pthread_cond_signal(&ctx->sq_empty);
  3254. (void) pthread_mutex_unlock(&ctx->mutex);
  3255. return 1;
  3256. }
  3257. static void worker_thread(struct mg_context *ctx) {
  3258. struct mg_connection *conn;
  3259. int buf_size = atoi(ctx->config[MAX_REQUEST_SIZE]);
  3260. conn = calloc(1, sizeof(*conn) + buf_size);
  3261. conn->buf_size = buf_size;
  3262. conn->buf = (char *) (conn + 1);
  3263. assert(conn != NULL);
  3264. while (ctx->stop_flag == 0 && consume_socket(ctx, &conn->client)) {
  3265. conn->birth_time = time(NULL);
  3266. conn->ctx = ctx;
  3267. // Fill in IP, port info early so even if SSL setup below fails,
  3268. // error handler would have the corresponding info.
  3269. // Thanks to Johannes Winkelmann for the patch.
  3270. conn->request_info.remote_port = ntohs(conn->client.rsa.u.sin.sin_port);
  3271. memcpy(&conn->request_info.remote_ip,
  3272. &conn->client.rsa.u.sin.sin_addr.s_addr, 4);
  3273. conn->request_info.remote_ip = ntohl(conn->request_info.remote_ip);
  3274. conn->request_info.is_ssl = conn->client.is_ssl;
  3275. if (!conn->client.is_ssl ||
  3276. (conn->client.is_ssl && sslize(conn, SSL_accept))) {
  3277. process_new_connection(conn);
  3278. }
  3279. close_connection(conn);
  3280. }
  3281. free(conn);
  3282. // Signal master that we're done with connection and exiting
  3283. (void) pthread_mutex_lock(&ctx->mutex);
  3284. ctx->num_threads--;
  3285. (void) pthread_cond_signal(&ctx->cond);
  3286. assert(ctx->num_threads >= 0);
  3287. (void) pthread_mutex_unlock(&ctx->mutex);
  3288. DEBUG_TRACE(("exiting"));
  3289. }
  3290. // Master thread adds accepted socket to a queue
  3291. static void produce_socket(struct mg_context *ctx, const struct socket *sp) {
  3292. (void) pthread_mutex_lock(&ctx->mutex);
  3293. // If the queue is full, wait
  3294. while (ctx->sq_head - ctx->sq_tail >= (int) ARRAY_SIZE(ctx->queue)) {
  3295. (void) pthread_cond_wait(&ctx->sq_empty, &ctx->mutex);
  3296. }
  3297. assert(ctx->sq_head - ctx->sq_tail < (int) ARRAY_SIZE(ctx->queue));
  3298. // Copy socket to the queue and increment head
  3299. ctx->queue[ctx->sq_head % ARRAY_SIZE(ctx->queue)] = *sp;
  3300. ctx->sq_head++;
  3301. DEBUG_TRACE(("queued socket %d", sp->sock));
  3302. (void) pthread_cond_signal(&ctx->sq_full);
  3303. (void) pthread_mutex_unlock(&ctx->mutex);
  3304. }
  3305. static void accept_new_connection(const struct socket *listener,
  3306. struct mg_context *ctx) {
  3307. struct socket accepted;
  3308. int allowed;
  3309. accepted.rsa.len = sizeof(accepted.rsa.u.sin);
  3310. accepted.lsa = listener->lsa;
  3311. accepted.sock = accept(listener->sock, &accepted.rsa.u.sa, &accepted.rsa.len);
  3312. if (accepted.sock != INVALID_SOCKET) {
  3313. allowed = check_acl(ctx, &accepted.rsa);
  3314. if (allowed) {
  3315. // Put accepted socket structure into the queue
  3316. DEBUG_TRACE(("accepted socket %d", accepted.sock));
  3317. accepted.is_ssl = listener->is_ssl;
  3318. accepted.is_proxy = listener->is_proxy;
  3319. produce_socket(ctx, &accepted);
  3320. } else {
  3321. cry(fc(ctx), "%s: %s is not allowed to connect",
  3322. __func__, inet_ntoa(accepted.rsa.u.sin.sin_addr));
  3323. (void) closesocket(accepted.sock);
  3324. }
  3325. }
  3326. }
  3327. static void master_thread(struct mg_context *ctx) {
  3328. fd_set read_set;
  3329. struct timeval tv;
  3330. struct socket *sp;
  3331. int max_fd;
  3332. while (ctx->stop_flag == 0) {
  3333. FD_ZERO(&read_set);
  3334. max_fd = -1;
  3335. // Add listening sockets to the read set
  3336. for (sp = ctx->listening_sockets; sp != NULL; sp = sp->next) {
  3337. add_to_set(sp->sock, &read_set, &max_fd);
  3338. }
  3339. tv.tv_sec = 0;
  3340. tv.tv_usec = 200 * 1000;
  3341. if (select(max_fd + 1, &read_set, NULL, NULL, &tv) < 0) {
  3342. #ifdef _WIN32
  3343. // On windows, if read_set and write_set are empty,
  3344. // select() returns "Invalid parameter" error
  3345. // (at least on my Windows XP Pro). So in this case, we sleep here.
  3346. sleep(1);
  3347. #endif // _WIN32
  3348. } else {
  3349. for (sp = ctx->listening_sockets; sp != NULL; sp = sp->next) {
  3350. if (FD_ISSET(sp->sock, &read_set)) {
  3351. accept_new_connection(sp, ctx);
  3352. }
  3353. }
  3354. }
  3355. }
  3356. DEBUG_TRACE(("stopping workers"));
  3357. // Stop signal received: somebody called mg_stop. Quit.
  3358. close_all_listening_sockets(ctx);
  3359. // Wakeup workers that are waiting for connections to handle.
  3360. pthread_cond_broadcast(&ctx->sq_full);
  3361. // Wait until all threads finish
  3362. (void) pthread_mutex_lock(&ctx->mutex);
  3363. while (ctx->num_threads > 0) {
  3364. (void) pthread_cond_wait(&ctx->cond, &ctx->mutex);
  3365. }
  3366. (void) pthread_mutex_unlock(&ctx->mutex);
  3367. // All threads exited, no sync is needed. Destroy mutex and condvars
  3368. (void) pthread_mutex_destroy(&ctx->mutex);
  3369. (void) pthread_cond_destroy(&ctx->cond);
  3370. (void) pthread_cond_destroy(&ctx->sq_empty);
  3371. (void) pthread_cond_destroy(&ctx->sq_full);
  3372. // Signal mg_stop() that we're done
  3373. ctx->stop_flag = 2;
  3374. DEBUG_TRACE(("exiting"));
  3375. }
  3376. static void free_context(struct mg_context *ctx) {
  3377. int i;
  3378. // Deallocate config parameters
  3379. for (i = 0; i < NUM_OPTIONS; i++) {
  3380. if (ctx->config[i] != NULL)
  3381. free(ctx->config[i]);
  3382. }
  3383. // Deallocate SSL context
  3384. if (ctx->ssl_ctx != NULL) {
  3385. SSL_CTX_free(ctx->ssl_ctx);
  3386. }
  3387. #ifndef NO_SSL
  3388. if (ssl_mutexes != NULL) {
  3389. free(ssl_mutexes);
  3390. }
  3391. #endif // !NO_SSL
  3392. // Deallocate context itself
  3393. free(ctx);
  3394. }
  3395. void mg_stop(struct mg_context *ctx) {
  3396. ctx->stop_flag = 1;
  3397. // Wait until mg_fini() stops
  3398. while (ctx->stop_flag != 2) {
  3399. (void) sleep(0);
  3400. }
  3401. free_context(ctx);
  3402. #if defined(_WIN32)
  3403. (void) WSACleanup();
  3404. #endif // _WIN32
  3405. }
  3406. struct mg_context *mg_start(mg_callback_t user_callback, void *user_data,
  3407. const char **options) {
  3408. struct mg_context *ctx;
  3409. const char *name, *value, *default_value;
  3410. int i;
  3411. #if defined(_WIN32)
  3412. WSADATA data;
  3413. WSAStartup(MAKEWORD(2,2), &data);
  3414. #endif // _WIN32
  3415. // Allocate context and initialize reasonable general case defaults.
  3416. // TODO(lsm): do proper error handling here.
  3417. ctx = calloc(1, sizeof(*ctx));
  3418. ctx->user_callback = user_callback;
  3419. ctx->user_data = user_data;
  3420. while (options && (name = *options++) != NULL) {
  3421. if ((i = get_option_index(name)) == -1) {
  3422. cry(fc(ctx), "Invalid option: %s", name);
  3423. free_context(ctx);
  3424. return NULL;
  3425. } else if ((value = *options++) == NULL) {
  3426. cry(fc(ctx), "%s: option value cannot be NULL", name);
  3427. free_context(ctx);
  3428. return NULL;
  3429. }
  3430. ctx->config[i] = mg_strdup(value);
  3431. DEBUG_TRACE(("[%s] -> [%s]", name, value));
  3432. }
  3433. // Set default value if needed
  3434. for (i = 0; config_options[i * ENTRIES_PER_CONFIG_OPTION] != NULL; i++) {
  3435. default_value = config_options[i * ENTRIES_PER_CONFIG_OPTION + 2];
  3436. if (ctx->config[i] == NULL && default_value != NULL) {
  3437. ctx->config[i] = mg_strdup(default_value);
  3438. DEBUG_TRACE(("Setting default: [%s] -> [%s]",
  3439. config_options[i * ENTRIES_PER_CONFIG_OPTION + 1],
  3440. default_value));
  3441. }
  3442. }
  3443. // NOTE(lsm): order is important here. SSL certificates must
  3444. // be initialized before listening ports. UID must be set last.
  3445. if (!set_gpass_option(ctx) ||
  3446. #if !defined(NO_SSL)
  3447. !set_ssl_option(ctx) ||
  3448. #endif
  3449. !set_ports_option(ctx) ||
  3450. #if !defined(_WIN32)
  3451. !set_uid_option(ctx) ||
  3452. #endif
  3453. !set_acl_option(ctx)) {
  3454. free_context(ctx);
  3455. return NULL;
  3456. }
  3457. #if !defined(_WIN32)
  3458. // Ignore SIGPIPE signal, so if browser cancels the request, it
  3459. // won't kill the whole process.
  3460. (void) signal(SIGPIPE, SIG_IGN);
  3461. #endif // !_WIN32
  3462. (void) pthread_mutex_init(&ctx->mutex, NULL);
  3463. (void) pthread_cond_init(&ctx->cond, NULL);
  3464. (void) pthread_cond_init(&ctx->sq_empty, NULL);
  3465. (void) pthread_cond_init(&ctx->sq_full, NULL);
  3466. // Start master (listening) thread
  3467. start_thread(ctx, (mg_thread_func_t) master_thread, ctx);
  3468. // Start worker threads
  3469. for (i = 0; i < atoi(ctx->config[NUM_THREADS]); i++) {
  3470. if (start_thread(ctx, (mg_thread_func_t) worker_thread, ctx) != 0) {
  3471. cry(fc(ctx), "Cannot start worker thread: %d", ERRNO);
  3472. } else {
  3473. ctx->num_threads++;
  3474. }
  3475. }
  3476. return ctx;
  3477. }