mongoose.c 120 KB

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