httplib.h 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382
  1. //
  2. // httplib.h
  3. //
  4. // Copyright (c) 2017 Yuji Hirose. All rights reserved.
  5. // MIT License
  6. //
  7. #ifndef _CPPHTTPLIB_HTTPLIB_H_
  8. #define _CPPHTTPLIB_HTTPLIB_H_
  9. #ifdef _WIN32
  10. #ifndef _CRT_SECURE_NO_WARNINGS
  11. #define _CRT_SECURE_NO_WARNINGS
  12. #endif
  13. #ifndef _CRT_NONSTDC_NO_DEPRECATE
  14. #define _CRT_NONSTDC_NO_DEPRECATE
  15. #endif
  16. #if defined(_MSC_VER) && _MSC_VER < 1900
  17. #define snprintf _snprintf_s
  18. #endif
  19. #ifndef S_ISREG
  20. #define S_ISREG(m) (((m)&S_IFREG)==S_IFREG)
  21. #endif
  22. #ifndef S_ISDIR
  23. #define S_ISDIR(m) (((m)&S_IFDIR)==S_IFDIR)
  24. #endif
  25. #include <io.h>
  26. #include <winsock2.h>
  27. #include <ws2tcpip.h>
  28. #undef min
  29. #undef max
  30. #ifndef strcasecmp
  31. #define strcasecmp _stricmp
  32. #endif
  33. typedef SOCKET socket_t;
  34. #else
  35. #include <pthread.h>
  36. #include <unistd.h>
  37. #include <netdb.h>
  38. #include <cstring>
  39. #include <netinet/in.h>
  40. #include <arpa/inet.h>
  41. #include <signal.h>
  42. #include <sys/socket.h>
  43. #include <sys/select.h>
  44. typedef int socket_t;
  45. #define INVALID_SOCKET (-1)
  46. #endif
  47. #include <fstream>
  48. #include <functional>
  49. #include <map>
  50. #include <memory>
  51. #include <mutex>
  52. #include <regex>
  53. #include <string>
  54. #include <thread>
  55. #include <sys/stat.h>
  56. #include <fcntl.h>
  57. #include <assert.h>
  58. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  59. #include <openssl/ssl.h>
  60. #endif
  61. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  62. #include <zlib.h>
  63. #endif
  64. /*
  65. * Configuration
  66. */
  67. #define CPPHTTPLIB_KEEPALIVE_TIMEOUT_SECOND 5
  68. #define CPPHTTPLIB_KEEPALIVE_TIMEOUT_USECOND 0
  69. namespace httplib
  70. {
  71. namespace detail {
  72. struct ci {
  73. bool operator() (const std::string & s1, const std::string & s2) const {
  74. return std::lexicographical_compare(
  75. s1.begin(), s1.end(),
  76. s2.begin(), s2.end(),
  77. [](char c1, char c2) {
  78. return ::tolower(c1) < ::tolower(c2);
  79. });
  80. }
  81. };
  82. } // namespace detail
  83. enum class HttpVersion { v1_0 = 0, v1_1 };
  84. typedef std::multimap<std::string, std::string, detail::ci> Headers;
  85. template<typename uint64_t, typename... Args>
  86. std::pair<std::string, std::string> make_range_header(uint64_t value, Args... args);
  87. typedef std::multimap<std::string, std::string> Params;
  88. typedef std::smatch Match;
  89. typedef std::function<void (uint64_t current, uint64_t total)> Progress;
  90. struct MultipartFile {
  91. std::string filename;
  92. std::string content_type;
  93. size_t offset = 0;
  94. size_t length = 0;
  95. };
  96. typedef std::multimap<std::string, MultipartFile> MultipartFiles;
  97. struct Request {
  98. std::string version;
  99. std::string method;
  100. std::string target;
  101. std::string path;
  102. Headers headers;
  103. std::string body;
  104. Params params;
  105. MultipartFiles files;
  106. Match matches;
  107. Progress progress;
  108. bool has_header(const char* key) const;
  109. std::string get_header_value(const char* key) const;
  110. void set_header(const char* key, const char* val);
  111. bool has_param(const char* key) const;
  112. std::string get_param_value(const char* key) const;
  113. bool has_file(const char* key) const;
  114. MultipartFile get_file_value(const char* key) const;
  115. };
  116. struct Response {
  117. std::string version;
  118. int status;
  119. Headers headers;
  120. std::string body;
  121. std::function<std::string (uint64_t offset)> streamcb;
  122. bool has_header(const char* key) const;
  123. std::string get_header_value(const char* key) const;
  124. void set_header(const char* key, const char* val);
  125. void set_redirect(const char* uri);
  126. void set_content(const char* s, size_t n, const char* content_type);
  127. void set_content(const std::string& s, const char* content_type);
  128. Response() : status(-1) {}
  129. };
  130. class Stream {
  131. public:
  132. virtual ~Stream() {}
  133. virtual int read(char* ptr, size_t size) = 0;
  134. virtual int write(const char* ptr, size_t size1) = 0;
  135. virtual int write(const char* ptr) = 0;
  136. virtual std::string get_remote_addr() = 0;
  137. template <typename ...Args>
  138. void write_format(const char* fmt, const Args& ...args);
  139. };
  140. class SocketStream : public Stream {
  141. public:
  142. SocketStream(socket_t sock);
  143. virtual ~SocketStream();
  144. virtual int read(char* ptr, size_t size);
  145. virtual int write(const char* ptr, size_t size);
  146. virtual int write(const char* ptr);
  147. virtual std::string get_remote_addr();
  148. private:
  149. socket_t sock_;
  150. };
  151. class Server {
  152. public:
  153. typedef std::function<void (const Request&, Response&)> Handler;
  154. typedef std::function<void (const Request&, const Response&)> Logger;
  155. Server();
  156. virtual ~Server();
  157. virtual bool is_valid() const;
  158. Server& Get(const char* pattern, Handler handler);
  159. Server& Post(const char* pattern, Handler handler);
  160. Server& Put(const char* pattern, Handler handler);
  161. Server& Delete(const char* pattern, Handler handler);
  162. Server& Options(const char* pattern, Handler handler);
  163. bool set_base_dir(const char* path);
  164. void set_error_handler(Handler handler);
  165. void set_logger(Logger logger);
  166. void set_keep_alive_max_count(size_t count);
  167. int bind_to_any_port(const char* host, int socket_flags = 0);
  168. bool listen_after_bind();
  169. bool listen(const char* host, int port, int socket_flags = 0);
  170. bool is_running() const;
  171. void stop();
  172. protected:
  173. bool process_request(Stream& strm, bool last_connection, bool& connection_close);
  174. size_t keep_alive_max_count_;
  175. private:
  176. typedef std::vector<std::pair<std::regex, Handler>> Handlers;
  177. socket_t create_server_socket(const char* host, int port, int socket_flags) const;
  178. int bind_internal(const char* host, int port, int socket_flags);
  179. bool listen_internal();
  180. bool routing(Request& req, Response& res);
  181. bool handle_file_request(Request& req, Response& res);
  182. bool dispatch_request(Request& req, Response& res, Handlers& handlers);
  183. bool parse_request_line(const char* s, Request& req);
  184. void write_response(Stream& strm, bool last_connection, const Request& req, Response& res);
  185. virtual bool read_and_close_socket(socket_t sock);
  186. bool is_running_;
  187. socket_t svr_sock_;
  188. std::string base_dir_;
  189. Handlers get_handlers_;
  190. Handlers post_handlers_;
  191. Handlers put_handlers_;
  192. Handlers delete_handlers_;
  193. Handlers options_handlers_;
  194. Handler error_handler_;
  195. Logger logger_;
  196. // TODO: Use thread pool...
  197. std::mutex running_threads_mutex_;
  198. int running_threads_;
  199. };
  200. class Client {
  201. public:
  202. Client(
  203. const char* host,
  204. int port = 80,
  205. size_t timeout_sec = 300);
  206. virtual ~Client();
  207. virtual bool is_valid() const;
  208. std::shared_ptr<Response> Get(const char* path, Progress progress = nullptr);
  209. std::shared_ptr<Response> Get(const char* path, const Headers& headers, Progress progress = nullptr);
  210. std::shared_ptr<Response> Head(const char* path);
  211. std::shared_ptr<Response> Head(const char* path, const Headers& headers);
  212. std::shared_ptr<Response> Post(const char* path, const std::string& body, const char* content_type);
  213. std::shared_ptr<Response> Post(const char* path, const Headers& headers, const std::string& body, const char* content_type);
  214. std::shared_ptr<Response> Post(const char* path, const Params& params);
  215. std::shared_ptr<Response> Post(const char* path, const Headers& headers, const Params& params);
  216. std::shared_ptr<Response> Put(const char* path, const std::string& body, const char* content_type);
  217. std::shared_ptr<Response> Put(const char* path, const Headers& headers, const std::string& body, const char* content_type);
  218. std::shared_ptr<Response> Delete(const char* path);
  219. std::shared_ptr<Response> Delete(const char* path, const Headers& headers);
  220. std::shared_ptr<Response> Options(const char* path);
  221. std::shared_ptr<Response> Options(const char* path, const Headers& headers);
  222. bool send(Request& req, Response& res);
  223. protected:
  224. bool process_request(Stream& strm, Request& req, Response& res, bool& connection_close);
  225. const std::string host_;
  226. const int port_;
  227. size_t timeout_sec_;
  228. const std::string host_and_port_;
  229. private:
  230. socket_t create_client_socket() const;
  231. bool read_response_line(Stream& strm, Response& res);
  232. void write_request(Stream& strm, Request& req);
  233. virtual bool read_and_close_socket(socket_t sock, Request& req, Response& res);
  234. };
  235. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  236. class SSLSocketStream : public Stream {
  237. public:
  238. SSLSocketStream(socket_t sock, SSL* ssl);
  239. virtual ~SSLSocketStream();
  240. virtual int read(char* ptr, size_t size);
  241. virtual int write(const char* ptr, size_t size);
  242. virtual int write(const char* ptr);
  243. virtual std::string get_remote_addr();
  244. private:
  245. socket_t sock_;
  246. SSL* ssl_;
  247. };
  248. class SSLServer : public Server {
  249. public:
  250. SSLServer(
  251. const char* cert_path, const char* private_key_path);
  252. virtual ~SSLServer();
  253. virtual bool is_valid() const;
  254. private:
  255. virtual bool read_and_close_socket(socket_t sock);
  256. SSL_CTX* ctx_;
  257. std::mutex ctx_mutex_;
  258. };
  259. class SSLClient : public Client {
  260. public:
  261. SSLClient(
  262. const char* host,
  263. int port = 80,
  264. size_t timeout_sec = 300);
  265. virtual ~SSLClient();
  266. virtual bool is_valid() const;
  267. private:
  268. virtual bool read_and_close_socket(socket_t sock, Request& req, Response& res);
  269. SSL_CTX* ctx_;
  270. std::mutex ctx_mutex_;
  271. };
  272. #endif
  273. /*
  274. * Implementation
  275. */
  276. namespace detail {
  277. template <class Fn>
  278. void split(const char* b, const char* e, char d, Fn fn)
  279. {
  280. int i = 0;
  281. int beg = 0;
  282. while (e ? (b + i != e) : (b[i] != '\0')) {
  283. if (b[i] == d) {
  284. fn(&b[beg], &b[i]);
  285. beg = i + 1;
  286. }
  287. i++;
  288. }
  289. if (i) {
  290. fn(&b[beg], &b[i]);
  291. }
  292. }
  293. // NOTE: until the read size reaches `fixed_buffer_size`, use `fixed_buffer`
  294. // to store data. The call can set memory on stack for performance.
  295. class stream_line_reader {
  296. public:
  297. stream_line_reader(Stream& strm, char* fixed_buffer, size_t fixed_buffer_size)
  298. : strm_(strm)
  299. , fixed_buffer_(fixed_buffer)
  300. , fixed_buffer_size_(fixed_buffer_size) {
  301. }
  302. const char* ptr() const {
  303. if (glowable_buffer_.empty()) {
  304. return fixed_buffer_;
  305. } else {
  306. return glowable_buffer_.data();
  307. }
  308. }
  309. bool getline() {
  310. fixed_buffer_used_size_ = 0;
  311. glowable_buffer_.clear();
  312. for (size_t i = 0; ; i++) {
  313. char byte;
  314. auto n = strm_.read(&byte, 1);
  315. if (n < 0) {
  316. return false;
  317. } else if (n == 0) {
  318. if (i == 0) {
  319. return false;
  320. } else {
  321. break;
  322. }
  323. }
  324. append(byte);
  325. if (byte == '\n') {
  326. break;
  327. }
  328. }
  329. return true;
  330. }
  331. private:
  332. void append(char c) {
  333. if (fixed_buffer_used_size_ < fixed_buffer_size_ - 1) {
  334. fixed_buffer_[fixed_buffer_used_size_++] = c;
  335. fixed_buffer_[fixed_buffer_used_size_] = '\0';
  336. } else {
  337. if (glowable_buffer_.empty()) {
  338. assert(fixed_buffer_[fixed_buffer_used_size_] == '\0');
  339. glowable_buffer_.assign(fixed_buffer_, fixed_buffer_used_size_);
  340. }
  341. glowable_buffer_ += c;
  342. }
  343. }
  344. Stream& strm_;
  345. char* fixed_buffer_;
  346. const size_t fixed_buffer_size_;
  347. size_t fixed_buffer_used_size_;
  348. std::string glowable_buffer_;
  349. };
  350. inline int close_socket(socket_t sock)
  351. {
  352. #ifdef _WIN32
  353. return closesocket(sock);
  354. #else
  355. return close(sock);
  356. #endif
  357. }
  358. inline int select_read(socket_t sock, size_t sec, size_t usec)
  359. {
  360. fd_set fds;
  361. FD_ZERO(&fds);
  362. FD_SET(sock, &fds);
  363. timeval tv;
  364. tv.tv_sec = sec;
  365. tv.tv_usec = usec;
  366. return select(sock + 1, &fds, NULL, NULL, &tv);
  367. }
  368. inline bool wait_until_socket_is_ready(socket_t sock, size_t sec, size_t usec)
  369. {
  370. fd_set fdsr;
  371. FD_ZERO(&fdsr);
  372. FD_SET(sock, &fdsr);
  373. auto fdsw = fdsr;
  374. auto fdse = fdsr;
  375. timeval tv;
  376. tv.tv_sec = sec;
  377. tv.tv_usec = usec;
  378. if (select(sock + 1, &fdsr, &fdsw, &fdse, &tv) < 0) {
  379. return false;
  380. } else if (FD_ISSET(sock, &fdsr) || FD_ISSET(sock, &fdsw)) {
  381. int error = 0;
  382. socklen_t len = sizeof(error);
  383. if (getsockopt(sock, SOL_SOCKET, SO_ERROR, (char*)&error, &len) < 0 || error) {
  384. return false;
  385. }
  386. } else {
  387. return false;
  388. }
  389. return true;
  390. }
  391. template <typename T>
  392. inline bool read_and_close_socket(socket_t sock, size_t keep_alive_max_count, T callback)
  393. {
  394. bool ret = false;
  395. if (keep_alive_max_count > 0) {
  396. auto count = keep_alive_max_count;
  397. while (count > 0 &&
  398. detail::select_read(sock,
  399. CPPHTTPLIB_KEEPALIVE_TIMEOUT_SECOND,
  400. CPPHTTPLIB_KEEPALIVE_TIMEOUT_USECOND) > 0) {
  401. SocketStream strm(sock);
  402. auto last_connection = count == 1;
  403. auto connection_close = false;
  404. ret = callback(strm, last_connection, connection_close);
  405. if (!ret || connection_close) {
  406. break;
  407. }
  408. count--;
  409. }
  410. } else {
  411. SocketStream strm(sock);
  412. auto dummy_connection_close = false;
  413. ret = callback(strm, true, dummy_connection_close);
  414. }
  415. close_socket(sock);
  416. return ret;
  417. }
  418. inline int shutdown_socket(socket_t sock)
  419. {
  420. #ifdef _WIN32
  421. return shutdown(sock, SD_BOTH);
  422. #else
  423. return shutdown(sock, SHUT_RDWR);
  424. #endif
  425. }
  426. template <typename Fn>
  427. socket_t create_socket(const char* host, int port, Fn fn, int socket_flags = 0)
  428. {
  429. #ifdef _WIN32
  430. #define SO_SYNCHRONOUS_NONALERT 0x20
  431. #define SO_OPENTYPE 0x7008
  432. int opt = SO_SYNCHRONOUS_NONALERT;
  433. setsockopt(INVALID_SOCKET, SOL_SOCKET, SO_OPENTYPE, (char*)&opt, sizeof(opt));
  434. #endif
  435. // Get address info
  436. struct addrinfo hints;
  437. struct addrinfo *result;
  438. memset(&hints, 0, sizeof(struct addrinfo));
  439. hints.ai_family = AF_UNSPEC;
  440. hints.ai_socktype = SOCK_STREAM;
  441. hints.ai_flags = socket_flags;
  442. hints.ai_protocol = 0;
  443. auto service = std::to_string(port);
  444. if (getaddrinfo(host, service.c_str(), &hints, &result)) {
  445. return INVALID_SOCKET;
  446. }
  447. for (auto rp = result; rp; rp = rp->ai_next) {
  448. // Create a socket
  449. auto sock = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
  450. if (sock == INVALID_SOCKET) {
  451. continue;
  452. }
  453. // Make 'reuse address' option available
  454. int yes = 1;
  455. setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (char*)&yes, sizeof(yes));
  456. // bind or connect
  457. if (fn(sock, *rp)) {
  458. freeaddrinfo(result);
  459. return sock;
  460. }
  461. close_socket(sock);
  462. }
  463. freeaddrinfo(result);
  464. return INVALID_SOCKET;
  465. }
  466. inline void set_nonblocking(socket_t sock, bool nonblocking)
  467. {
  468. #ifdef _WIN32
  469. auto flags = nonblocking ? 1UL : 0UL;
  470. ioctlsocket(sock, FIONBIO, &flags);
  471. #else
  472. auto flags = fcntl(sock, F_GETFL, 0);
  473. fcntl(sock, F_SETFL, nonblocking ? (flags | O_NONBLOCK) : (flags & (~O_NONBLOCK)));
  474. #endif
  475. }
  476. inline bool is_connection_error()
  477. {
  478. #ifdef _WIN32
  479. return WSAGetLastError() != WSAEWOULDBLOCK;
  480. #else
  481. return errno != EINPROGRESS;
  482. #endif
  483. }
  484. inline std::string get_remote_addr(socket_t sock) {
  485. struct sockaddr_storage addr;
  486. socklen_t len = sizeof(addr);
  487. if (!getpeername(sock, (struct sockaddr*)&addr, &len)) {
  488. char ipstr[NI_MAXHOST];
  489. if (!getnameinfo((struct sockaddr*)&addr, len,
  490. ipstr, sizeof(ipstr), nullptr, 0, NI_NUMERICHOST)) {
  491. return ipstr;
  492. }
  493. }
  494. return std::string();
  495. }
  496. inline bool is_file(const std::string& path)
  497. {
  498. struct stat st;
  499. return stat(path.c_str(), &st) >= 0 && S_ISREG(st.st_mode);
  500. }
  501. inline bool is_dir(const std::string& path)
  502. {
  503. struct stat st;
  504. return stat(path.c_str(), &st) >= 0 && S_ISDIR(st.st_mode);
  505. }
  506. inline bool is_valid_path(const std::string& path) {
  507. size_t level = 0;
  508. size_t i = 0;
  509. // Skip slash
  510. while (i < path.size() && path[i] == '/') {
  511. i++;
  512. }
  513. while (i < path.size()) {
  514. // Read component
  515. auto beg = i;
  516. while (i < path.size() && path[i] != '/') {
  517. i++;
  518. }
  519. auto len = i - beg;
  520. assert(len > 0);
  521. if (!path.compare(beg, len, ".")) {
  522. ;
  523. } else if (!path.compare(beg, len, "..")) {
  524. if (level == 0) {
  525. return false;
  526. }
  527. level--;
  528. } else {
  529. level++;
  530. }
  531. // Skip slash
  532. while (i < path.size() && path[i] == '/') {
  533. i++;
  534. }
  535. }
  536. return true;
  537. }
  538. inline void read_file(const std::string& path, std::string& out)
  539. {
  540. std::ifstream fs(path, std::ios_base::binary);
  541. fs.seekg(0, std::ios_base::end);
  542. auto size = fs.tellg();
  543. fs.seekg(0);
  544. out.resize(static_cast<size_t>(size));
  545. fs.read(&out[0], size);
  546. }
  547. inline std::string file_extension(const std::string& path)
  548. {
  549. std::smatch m;
  550. auto pat = std::regex("\\.([a-zA-Z0-9]+)$");
  551. if (std::regex_search(path, m, pat)) {
  552. return m[1].str();
  553. }
  554. return std::string();
  555. }
  556. inline const char* find_content_type(const std::string& path)
  557. {
  558. auto ext = file_extension(path);
  559. if (ext == "txt") {
  560. return "text/plain";
  561. } else if (ext == "html") {
  562. return "text/html";
  563. } else if (ext == "css") {
  564. return "text/css";
  565. } else if (ext == "jpeg" || ext == "jpg") {
  566. return "image/jpg";
  567. } else if (ext == "png") {
  568. return "image/png";
  569. } else if (ext == "gif") {
  570. return "image/gif";
  571. } else if (ext == "svg") {
  572. return "image/svg+xml";
  573. } else if (ext == "ico") {
  574. return "image/x-icon";
  575. } else if (ext == "json") {
  576. return "application/json";
  577. } else if (ext == "pdf") {
  578. return "application/pdf";
  579. } else if (ext == "js") {
  580. return "application/javascript";
  581. } else if (ext == "xml") {
  582. return "application/xml";
  583. } else if (ext == "xhtml") {
  584. return "application/xhtml+xml";
  585. }
  586. return nullptr;
  587. }
  588. inline const char* status_message(int status)
  589. {
  590. switch (status) {
  591. case 200: return "OK";
  592. case 301: return "Moved Permanently";
  593. case 302: return "Found";
  594. case 303: return "See Other";
  595. case 304: return "Not Modified";
  596. case 400: return "Bad Request";
  597. case 403: return "Forbidden";
  598. case 404: return "Not Found";
  599. case 415: return "Unsupported Media Type";
  600. default:
  601. case 500: return "Internal Server Error";
  602. }
  603. }
  604. inline const char* get_header_value(const Headers& headers, const char* key, const char* def)
  605. {
  606. auto it = headers.find(key);
  607. if (it != headers.end()) {
  608. return it->second.c_str();
  609. }
  610. return def;
  611. }
  612. inline int get_header_value_int(const Headers& headers, const char* key, int def)
  613. {
  614. auto it = headers.find(key);
  615. if (it != headers.end()) {
  616. return std::stoi(it->second);
  617. }
  618. return def;
  619. }
  620. inline bool read_headers(Stream& strm, Headers& headers)
  621. {
  622. static std::regex re(R"((.+?):\s*(.+?)\s*\r\n)");
  623. const auto bufsiz = 2048;
  624. char buf[bufsiz];
  625. stream_line_reader reader(strm, buf, bufsiz);
  626. for (;;) {
  627. if (!reader.getline()) {
  628. return false;
  629. }
  630. if (!strcmp(reader.ptr(), "\r\n")) {
  631. break;
  632. }
  633. std::cmatch m;
  634. if (std::regex_match(reader.ptr(), m, re)) {
  635. auto key = std::string(m[1]);
  636. auto val = std::string(m[2]);
  637. headers.emplace(key, val);
  638. }
  639. }
  640. return true;
  641. }
  642. inline bool read_content_with_length(Stream& strm, std::string& out, size_t len, Progress progress)
  643. {
  644. out.assign(len, 0);
  645. size_t r = 0;
  646. while (r < len){
  647. auto n = strm.read(&out[r], len - r);
  648. if (n <= 0) {
  649. return false;
  650. }
  651. r += n;
  652. if (progress) {
  653. progress(r, len);
  654. }
  655. }
  656. return true;
  657. }
  658. inline bool read_content_without_length(Stream& strm, std::string& out)
  659. {
  660. for (;;) {
  661. char byte;
  662. auto n = strm.read(&byte, 1);
  663. if (n < 0) {
  664. return false;
  665. } else if (n == 0) {
  666. return true;
  667. }
  668. out += byte;
  669. }
  670. return true;
  671. }
  672. inline bool read_content_chunked(Stream& strm, std::string& out)
  673. {
  674. const auto bufsiz = 16;
  675. char buf[bufsiz];
  676. stream_line_reader reader(strm, buf, bufsiz);
  677. if (!reader.getline()) {
  678. return false;
  679. }
  680. auto chunk_len = std::stoi(reader.ptr(), 0, 16);
  681. while (chunk_len > 0){
  682. std::string chunk;
  683. if (!read_content_with_length(strm, chunk, chunk_len, nullptr)) {
  684. return false;
  685. }
  686. if (!reader.getline()) {
  687. return false;
  688. }
  689. if (strcmp(reader.ptr(), "\r\n")) {
  690. break;
  691. }
  692. out += chunk;
  693. if (!reader.getline()) {
  694. return false;
  695. }
  696. chunk_len = std::stoi(reader.ptr(), 0, 16);
  697. }
  698. if (chunk_len == 0) {
  699. // Reader terminator after chunks
  700. if (!reader.getline() || strcmp(reader.ptr(), "\r\n"))
  701. return false;
  702. }
  703. return true;
  704. }
  705. template <typename T>
  706. bool read_content(Stream& strm, T& x, Progress progress = Progress())
  707. {
  708. auto len = get_header_value_int(x.headers, "Content-Length", 0);
  709. if (len) {
  710. return read_content_with_length(strm, x.body, len, progress);
  711. } else {
  712. const auto& encoding = get_header_value(x.headers, "Transfer-Encoding", "");
  713. if (!strcasecmp(encoding, "chunked")) {
  714. return read_content_chunked(strm, x.body);
  715. } else {
  716. return read_content_without_length(strm, x.body);
  717. }
  718. }
  719. return true;
  720. }
  721. template <typename T>
  722. inline void write_headers(Stream& strm, const T& info)
  723. {
  724. for (const auto& x: info.headers) {
  725. strm.write_format("%s: %s\r\n", x.first.c_str(), x.second.c_str());
  726. }
  727. strm.write("\r\n");
  728. }
  729. inline std::string encode_url(const std::string& s)
  730. {
  731. std::string result;
  732. for (auto i = 0; s[i]; i++) {
  733. switch (s[i]) {
  734. case ' ': result += "+"; break;
  735. case '\'': result += "%27"; break;
  736. case ',': result += "%2C"; break;
  737. case ':': result += "%3A"; break;
  738. case ';': result += "%3B"; break;
  739. default:
  740. if (s[i] < 0) {
  741. result += '%';
  742. char hex[4];
  743. size_t len = snprintf(hex, sizeof(hex) - 1, "%02X", (unsigned char)s[i]);
  744. assert(len == 2);
  745. result.append(hex, len);
  746. } else {
  747. result += s[i];
  748. }
  749. break;
  750. }
  751. }
  752. return result;
  753. }
  754. inline bool is_hex(char c, int& v)
  755. {
  756. if (0x20 <= c && isdigit(c)) {
  757. v = c - '0';
  758. return true;
  759. } else if ('A' <= c && c <= 'F') {
  760. v = c - 'A' + 10;
  761. return true;
  762. } else if ('a' <= c && c <= 'f') {
  763. v = c - 'a' + 10;
  764. return true;
  765. }
  766. return false;
  767. }
  768. inline bool from_hex_to_i(const std::string& s, size_t i, size_t cnt, int& val)
  769. {
  770. if (i >= s.size()) {
  771. return false;
  772. }
  773. val = 0;
  774. for (; cnt; i++, cnt--) {
  775. if (!s[i]) {
  776. return false;
  777. }
  778. int v = 0;
  779. if (is_hex(s[i], v)) {
  780. val = val * 16 + v;
  781. } else {
  782. return false;
  783. }
  784. }
  785. return true;
  786. }
  787. inline std::string from_i_to_hex(uint64_t n)
  788. {
  789. const char *charset = "0123456789abcdef";
  790. std::string ret;
  791. do {
  792. ret = charset[n & 15] + ret;
  793. n >>= 4;
  794. } while (n > 0);
  795. return ret;
  796. }
  797. inline size_t to_utf8(int code, char* buff)
  798. {
  799. if (code < 0x0080) {
  800. buff[0] = (code & 0x7F);
  801. return 1;
  802. } else if (code < 0x0800) {
  803. buff[0] = (0xC0 | ((code >> 6) & 0x1F));
  804. buff[1] = (0x80 | (code & 0x3F));
  805. return 2;
  806. } else if (code < 0xD800) {
  807. buff[0] = (0xE0 | ((code >> 12) & 0xF));
  808. buff[1] = (0x80 | ((code >> 6) & 0x3F));
  809. buff[2] = (0x80 | (code & 0x3F));
  810. return 3;
  811. } else if (code < 0xE000) { // D800 - DFFF is invalid...
  812. return 0;
  813. } else if (code < 0x10000) {
  814. buff[0] = (0xE0 | ((code >> 12) & 0xF));
  815. buff[1] = (0x80 | ((code >> 6) & 0x3F));
  816. buff[2] = (0x80 | (code & 0x3F));
  817. return 3;
  818. } else if (code < 0x110000) {
  819. buff[0] = (0xF0 | ((code >> 18) & 0x7));
  820. buff[1] = (0x80 | ((code >> 12) & 0x3F));
  821. buff[2] = (0x80 | ((code >> 6) & 0x3F));
  822. buff[3] = (0x80 | (code & 0x3F));
  823. return 4;
  824. }
  825. // NOTREACHED
  826. return 0;
  827. }
  828. inline std::string decode_url(const std::string& s)
  829. {
  830. std::string result;
  831. for (size_t i = 0; i < s.size(); i++) {
  832. if (s[i] == '%' && i + 1 < s.size()) {
  833. if (s[i + 1] == 'u') {
  834. int val = 0;
  835. if (from_hex_to_i(s, i + 2, 4, val)) {
  836. // 4 digits Unicode codes
  837. char buff[4];
  838. size_t len = to_utf8(val, buff);
  839. if (len > 0) {
  840. result.append(buff, len);
  841. }
  842. i += 5; // 'u0000'
  843. } else {
  844. result += s[i];
  845. }
  846. } else {
  847. int val = 0;
  848. if (from_hex_to_i(s, i + 1, 2, val)) {
  849. // 2 digits hex codes
  850. result += val;
  851. i += 2; // '00'
  852. } else {
  853. result += s[i];
  854. }
  855. }
  856. } else if (s[i] == '+') {
  857. result += ' ';
  858. } else {
  859. result += s[i];
  860. }
  861. }
  862. return result;
  863. }
  864. inline void parse_query_text(const std::string& s, Params& params)
  865. {
  866. split(&s[0], &s[s.size()], '&', [&](const char* b, const char* e) {
  867. std::string key;
  868. std::string val;
  869. split(b, e, '=', [&](const char* b, const char* e) {
  870. if (key.empty()) {
  871. key.assign(b, e);
  872. } else {
  873. val.assign(b, e);
  874. }
  875. });
  876. params.emplace(key, decode_url(val));
  877. });
  878. }
  879. inline bool parse_multipart_boundary(const std::string& content_type, std::string& boundary)
  880. {
  881. auto pos = content_type.find("boundary=");
  882. if (pos == std::string::npos) {
  883. return false;
  884. }
  885. boundary = content_type.substr(pos + 9);
  886. return true;
  887. }
  888. inline bool parse_multipart_formdata(
  889. const std::string& boundary, const std::string& body, MultipartFiles& files)
  890. {
  891. static std::string dash = "--";
  892. static std::string crlf = "\r\n";
  893. static std::regex re_content_type(
  894. "Content-Type: (.*?)", std::regex_constants::icase);
  895. static std::regex re_content_disposition(
  896. "Content-Disposition: form-data; name=\"(.*?)\"(?:; filename=\"(.*?)\")?",
  897. std::regex_constants::icase);
  898. auto dash_boundary = dash + boundary;
  899. auto pos = body.find(dash_boundary);
  900. if (pos != 0) {
  901. return false;
  902. }
  903. pos += dash_boundary.size();
  904. auto next_pos = body.find(crlf, pos);
  905. if (next_pos == std::string::npos) {
  906. return false;
  907. }
  908. pos = next_pos + crlf.size();
  909. while (pos < body.size()) {
  910. next_pos = body.find(crlf, pos);
  911. if (next_pos == std::string::npos) {
  912. return false;
  913. }
  914. std::string name;
  915. MultipartFile file;
  916. auto header = body.substr(pos, (next_pos - pos));
  917. while (pos != next_pos) {
  918. std::smatch m;
  919. if (std::regex_match(header, m, re_content_type)) {
  920. file.content_type = m[1];
  921. } else if (std::regex_match(header, m, re_content_disposition)) {
  922. name = m[1];
  923. file.filename = m[2];
  924. }
  925. pos = next_pos + crlf.size();
  926. next_pos = body.find(crlf, pos);
  927. if (next_pos == std::string::npos) {
  928. return false;
  929. }
  930. header = body.substr(pos, (next_pos - pos));
  931. }
  932. pos = next_pos + crlf.size();
  933. next_pos = body.find(crlf + dash_boundary, pos);
  934. if (next_pos == std::string::npos) {
  935. return false;
  936. }
  937. file.offset = pos;
  938. file.length = next_pos - pos;
  939. pos = next_pos + crlf.size() + dash_boundary.size();
  940. next_pos = body.find(crlf, pos);
  941. if (next_pos == std::string::npos) {
  942. return false;
  943. }
  944. files.emplace(name, file);
  945. pos = next_pos + crlf.size();
  946. }
  947. return true;
  948. }
  949. inline std::string to_lower(const char* beg, const char* end)
  950. {
  951. std::string out;
  952. auto it = beg;
  953. while (it != end) {
  954. out += ::tolower(*it);
  955. it++;
  956. }
  957. return out;
  958. }
  959. inline void make_range_header_core(std::string&) {}
  960. template<typename uint64_t>
  961. inline void make_range_header_core(std::string& field, uint64_t value)
  962. {
  963. if (!field.empty()) {
  964. field += ", ";
  965. }
  966. field += std::to_string(value) + "-";
  967. }
  968. template<typename uint64_t, typename... Args>
  969. inline void make_range_header_core(std::string& field, uint64_t value1, uint64_t value2, Args... args)
  970. {
  971. if (!field.empty()) {
  972. field += ", ";
  973. }
  974. field += std::to_string(value1) + "-" + std::to_string(value2);
  975. make_range_header_core(field, args...);
  976. }
  977. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  978. inline bool can_compress(const std::string& content_type) {
  979. return !content_type.find("text/") ||
  980. content_type == "image/svg+xml" ||
  981. content_type == "application/javascript" ||
  982. content_type == "application/json" ||
  983. content_type == "application/xml" ||
  984. content_type == "application/xhtml+xml";
  985. }
  986. inline void compress(std::string& content)
  987. {
  988. z_stream strm;
  989. strm.zalloc = Z_NULL;
  990. strm.zfree = Z_NULL;
  991. strm.opaque = Z_NULL;
  992. auto ret = deflateInit2(&strm, Z_DEFAULT_COMPRESSION, Z_DEFLATED, 31, 8, Z_DEFAULT_STRATEGY);
  993. if (ret != Z_OK) {
  994. return;
  995. }
  996. strm.avail_in = content.size();
  997. strm.next_in = (Bytef *)content.data();
  998. std::string compressed;
  999. const auto bufsiz = 16384;
  1000. char buff[bufsiz];
  1001. do {
  1002. strm.avail_out = bufsiz;
  1003. strm.next_out = (Bytef *)buff;
  1004. deflate(&strm, Z_FINISH);
  1005. compressed.append(buff, bufsiz - strm.avail_out);
  1006. } while (strm.avail_out == 0);
  1007. content.swap(compressed);
  1008. deflateEnd(&strm);
  1009. }
  1010. inline void decompress(std::string& content)
  1011. {
  1012. z_stream strm;
  1013. strm.zalloc = Z_NULL;
  1014. strm.zfree = Z_NULL;
  1015. strm.opaque = Z_NULL;
  1016. // 15 is the value of wbits, which should be at the maximum possible value to ensure
  1017. // that any gzip stream can be decoded. The offset of 16 specifies that the stream
  1018. // to decompress will be formatted with a gzip wrapper.
  1019. auto ret = inflateInit2(&strm, 16 + 15);
  1020. if (ret != Z_OK) {
  1021. return;
  1022. }
  1023. strm.avail_in = content.size();
  1024. strm.next_in = (Bytef *)content.data();
  1025. std::string decompressed;
  1026. const auto bufsiz = 16384;
  1027. char buff[bufsiz];
  1028. do {
  1029. strm.avail_out = bufsiz;
  1030. strm.next_out = (Bytef *)buff;
  1031. inflate(&strm, Z_NO_FLUSH);
  1032. decompressed.append(buff, bufsiz - strm.avail_out);
  1033. } while (strm.avail_out == 0);
  1034. content.swap(decompressed);
  1035. inflateEnd(&strm);
  1036. }
  1037. #endif
  1038. #ifdef _WIN32
  1039. class WSInit {
  1040. public:
  1041. WSInit() {
  1042. WSADATA wsaData;
  1043. WSAStartup(0x0002, &wsaData);
  1044. }
  1045. ~WSInit() {
  1046. WSACleanup();
  1047. }
  1048. };
  1049. static WSInit wsinit_;
  1050. #endif
  1051. } // namespace detail
  1052. // Header utilities
  1053. template<typename uint64_t, typename... Args>
  1054. inline std::pair<std::string, std::string> make_range_header(uint64_t value, Args... args)
  1055. {
  1056. std::string field;
  1057. detail::make_range_header_core(field, value, args...);
  1058. field.insert(0, "bytes=");
  1059. return std::make_pair("Range", field);
  1060. }
  1061. // Request implementation
  1062. inline bool Request::has_header(const char* key) const
  1063. {
  1064. return headers.find(key) != headers.end();
  1065. }
  1066. inline std::string Request::get_header_value(const char* key) const
  1067. {
  1068. return detail::get_header_value(headers, key, "");
  1069. }
  1070. inline void Request::set_header(const char* key, const char* val)
  1071. {
  1072. headers.emplace(key, val);
  1073. }
  1074. inline bool Request::has_param(const char* key) const
  1075. {
  1076. return params.find(key) != params.end();
  1077. }
  1078. inline std::string Request::get_param_value(const char* key) const
  1079. {
  1080. auto it = params.find(key);
  1081. if (it != params.end()) {
  1082. return it->second;
  1083. }
  1084. return std::string();
  1085. }
  1086. inline bool Request::has_file(const char* key) const
  1087. {
  1088. return files.find(key) != files.end();
  1089. }
  1090. inline MultipartFile Request::get_file_value(const char* key) const
  1091. {
  1092. auto it = files.find(key);
  1093. if (it != files.end()) {
  1094. return it->second;
  1095. }
  1096. return MultipartFile();
  1097. }
  1098. // Response implementation
  1099. inline bool Response::has_header(const char* key) const
  1100. {
  1101. return headers.find(key) != headers.end();
  1102. }
  1103. inline std::string Response::get_header_value(const char* key) const
  1104. {
  1105. return detail::get_header_value(headers, key, "");
  1106. }
  1107. inline void Response::set_header(const char* key, const char* val)
  1108. {
  1109. headers.emplace(key, val);
  1110. }
  1111. inline void Response::set_redirect(const char* url)
  1112. {
  1113. set_header("Location", url);
  1114. status = 302;
  1115. }
  1116. inline void Response::set_content(const char* s, size_t n, const char* content_type)
  1117. {
  1118. body.assign(s, n);
  1119. set_header("Content-Type", content_type);
  1120. }
  1121. inline void Response::set_content(const std::string& s, const char* content_type)
  1122. {
  1123. body = s;
  1124. set_header("Content-Type", content_type);
  1125. }
  1126. // Rstream implementation
  1127. template <typename ...Args>
  1128. inline void Stream::write_format(const char* fmt, const Args& ...args)
  1129. {
  1130. const auto bufsiz = 2048;
  1131. char buf[bufsiz];
  1132. #if defined(_MSC_VER) && _MSC_VER < 1900
  1133. auto n = _snprintf_s(buf, bufsiz, bufsiz - 1, fmt, args...);
  1134. #else
  1135. auto n = snprintf(buf, bufsiz - 1, fmt, args...);
  1136. #endif
  1137. if (n > 0) {
  1138. if (n >= bufsiz - 1) {
  1139. std::vector<char> glowable_buf(bufsiz);
  1140. while (n >= static_cast<int>(glowable_buf.size() - 1)) {
  1141. glowable_buf.resize(glowable_buf.size() * 2);
  1142. #if defined(_MSC_VER) && _MSC_VER < 1900
  1143. n = _snprintf_s(&glowable_buf[0], glowable_buf.size(), glowable_buf.size() - 1, fmt, args...);
  1144. #else
  1145. n = snprintf(&glowable_buf[0], glowable_buf.size() - 1, fmt, args...);
  1146. #endif
  1147. }
  1148. write(&glowable_buf[0], n);
  1149. } else {
  1150. write(buf, n);
  1151. }
  1152. }
  1153. }
  1154. // Socket stream implementation
  1155. inline SocketStream::SocketStream(socket_t sock): sock_(sock)
  1156. {
  1157. }
  1158. inline SocketStream::~SocketStream()
  1159. {
  1160. }
  1161. inline int SocketStream::read(char* ptr, size_t size)
  1162. {
  1163. return recv(sock_, ptr, size, 0);
  1164. }
  1165. inline int SocketStream::write(const char* ptr, size_t size)
  1166. {
  1167. return send(sock_, ptr, size, 0);
  1168. }
  1169. inline int SocketStream::write(const char* ptr)
  1170. {
  1171. return write(ptr, strlen(ptr));
  1172. }
  1173. inline std::string SocketStream::get_remote_addr() {
  1174. return detail::get_remote_addr(sock_);
  1175. }
  1176. // HTTP server implementation
  1177. inline Server::Server()
  1178. : keep_alive_max_count_(5)
  1179. , is_running_(false)
  1180. , svr_sock_(INVALID_SOCKET)
  1181. , running_threads_(0)
  1182. {
  1183. #ifndef _WIN32
  1184. signal(SIGPIPE, SIG_IGN);
  1185. #endif
  1186. }
  1187. inline Server::~Server()
  1188. {
  1189. }
  1190. inline Server& Server::Get(const char* pattern, Handler handler)
  1191. {
  1192. get_handlers_.push_back(std::make_pair(std::regex(pattern), handler));
  1193. return *this;
  1194. }
  1195. inline Server& Server::Post(const char* pattern, Handler handler)
  1196. {
  1197. post_handlers_.push_back(std::make_pair(std::regex(pattern), handler));
  1198. return *this;
  1199. }
  1200. inline Server& Server::Put(const char* pattern, Handler handler)
  1201. {
  1202. put_handlers_.push_back(std::make_pair(std::regex(pattern), handler));
  1203. return *this;
  1204. }
  1205. inline Server& Server::Delete(const char* pattern, Handler handler)
  1206. {
  1207. delete_handlers_.push_back(std::make_pair(std::regex(pattern), handler));
  1208. return *this;
  1209. }
  1210. inline Server& Server::Options(const char* pattern, Handler handler)
  1211. {
  1212. options_handlers_.push_back(std::make_pair(std::regex(pattern), handler));
  1213. return *this;
  1214. }
  1215. inline bool Server::set_base_dir(const char* path)
  1216. {
  1217. if (detail::is_dir(path)) {
  1218. base_dir_ = path;
  1219. return true;
  1220. }
  1221. return false;
  1222. }
  1223. inline void Server::set_error_handler(Handler handler)
  1224. {
  1225. error_handler_ = handler;
  1226. }
  1227. inline void Server::set_logger(Logger logger)
  1228. {
  1229. logger_ = logger;
  1230. }
  1231. inline void Server::set_keep_alive_max_count(size_t count)
  1232. {
  1233. keep_alive_max_count_ = count;
  1234. }
  1235. inline int Server::bind_to_any_port(const char* host, int socket_flags)
  1236. {
  1237. return bind_internal(host, 0, socket_flags);
  1238. }
  1239. inline bool Server::listen_after_bind() {
  1240. return listen_internal();
  1241. }
  1242. inline bool Server::listen(const char* host, int port, int socket_flags)
  1243. {
  1244. if (bind_internal(host, port, socket_flags) < 0)
  1245. return false;
  1246. return listen_internal();
  1247. }
  1248. inline bool Server::is_running() const
  1249. {
  1250. return is_running_;
  1251. }
  1252. inline void Server::stop()
  1253. {
  1254. if (is_running_) {
  1255. assert(svr_sock_ != INVALID_SOCKET);
  1256. auto sock = svr_sock_;
  1257. svr_sock_ = INVALID_SOCKET;
  1258. detail::shutdown_socket(sock);
  1259. detail::close_socket(sock);
  1260. }
  1261. }
  1262. inline bool Server::parse_request_line(const char* s, Request& req)
  1263. {
  1264. static std::regex re("(GET|HEAD|POST|PUT|DELETE|OPTIONS) (([^?]+)(?:\\?(.+?))?) (HTTP/1\\.[01])\r\n");
  1265. std::cmatch m;
  1266. if (std::regex_match(s, m, re)) {
  1267. req.version = std::string(m[5]);
  1268. req.method = std::string(m[1]);
  1269. req.target = std::string(m[2]);
  1270. req.path = detail::decode_url(m[3]);
  1271. // Parse query text
  1272. auto len = std::distance(m[4].first, m[4].second);
  1273. if (len > 0) {
  1274. detail::parse_query_text(m[4], req.params);
  1275. }
  1276. return true;
  1277. }
  1278. return false;
  1279. }
  1280. inline void Server::write_response(Stream& strm, bool last_connection, const Request& req, Response& res)
  1281. {
  1282. assert(res.status != -1);
  1283. if (400 <= res.status && error_handler_) {
  1284. error_handler_(req, res);
  1285. }
  1286. // Response line
  1287. strm.write_format("HTTP/1.1 %d %s\r\n",
  1288. res.status,
  1289. detail::status_message(res.status));
  1290. // Headers
  1291. if (last_connection ||
  1292. req.get_header_value("Connection") == "close") {
  1293. res.set_header("Connection", "close");
  1294. }
  1295. if (!last_connection &&
  1296. req.get_header_value("Connection") == "Keep-Alive") {
  1297. res.set_header("Connection", "Keep-Alive");
  1298. }
  1299. if (!res.body.empty()) {
  1300. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  1301. // TODO: 'Accpet-Encoding' has gzip, not gzip;q=0
  1302. const auto& encodings = req.get_header_value("Accept-Encoding");
  1303. if (encodings.find("gzip") != std::string::npos &&
  1304. detail::can_compress(res.get_header_value("Content-Type"))) {
  1305. detail::compress(res.body);
  1306. res.set_header("Content-Encoding", "gzip");
  1307. }
  1308. #endif
  1309. if (!res.has_header("Content-Type")) {
  1310. res.set_header("Content-Type", "text/plain");
  1311. }
  1312. auto length = std::to_string(res.body.size());
  1313. res.set_header("Content-Length", length.c_str());
  1314. } else if (res.streamcb) {
  1315. // Streamed response
  1316. bool chunked_response = !res.has_header("Content-Length");
  1317. if (chunked_response)
  1318. res.set_header("Transfer-Encoding", "chunked");
  1319. }
  1320. detail::write_headers(strm, res);
  1321. // Body
  1322. if (req.method != "HEAD") {
  1323. if (!res.body.empty()) {
  1324. strm.write(res.body.c_str(), res.body.size());
  1325. } else if (res.streamcb) {
  1326. bool chunked_response = !res.has_header("Content-Length");
  1327. uint64_t offset = 0;
  1328. bool data_available = true;
  1329. while (data_available) {
  1330. std::string chunk = res.streamcb(offset);
  1331. offset += chunk.size();
  1332. data_available = !chunk.empty();
  1333. // Emit chunked response header and footer for each chunk
  1334. if (chunked_response)
  1335. chunk = detail::from_i_to_hex(chunk.size()) + "\r\n" + chunk + "\r\n";
  1336. if (strm.write(chunk.c_str(), chunk.size()) < 0)
  1337. break; // Stop on error
  1338. }
  1339. }
  1340. }
  1341. // Log
  1342. if (logger_) {
  1343. logger_(req, res);
  1344. }
  1345. }
  1346. inline bool Server::handle_file_request(Request& req, Response& res)
  1347. {
  1348. if (!base_dir_.empty() && detail::is_valid_path(req.path)) {
  1349. std::string path = base_dir_ + req.path;
  1350. if (!path.empty() && path.back() == '/') {
  1351. path += "index.html";
  1352. }
  1353. if (detail::is_file(path)) {
  1354. detail::read_file(path, res.body);
  1355. auto type = detail::find_content_type(path);
  1356. if (type) {
  1357. res.set_header("Content-Type", type);
  1358. }
  1359. res.status = 200;
  1360. return true;
  1361. }
  1362. }
  1363. return false;
  1364. }
  1365. inline socket_t Server::create_server_socket(const char* host, int port, int socket_flags) const
  1366. {
  1367. return detail::create_socket(host, port,
  1368. [](socket_t sock, struct addrinfo& ai) -> bool {
  1369. if (::bind(sock, ai.ai_addr, ai.ai_addrlen)) {
  1370. return false;
  1371. }
  1372. if (::listen(sock, 5)) { // Listen through 5 channels
  1373. return false;
  1374. }
  1375. return true;
  1376. }, socket_flags);
  1377. }
  1378. inline int Server::bind_internal(const char* host, int port, int socket_flags)
  1379. {
  1380. if (!is_valid()) {
  1381. return -1;
  1382. }
  1383. svr_sock_ = create_server_socket(host, port, socket_flags);
  1384. if (svr_sock_ == INVALID_SOCKET) {
  1385. return -1;
  1386. }
  1387. if (port == 0) {
  1388. struct sockaddr_storage address;
  1389. socklen_t len = sizeof(address);
  1390. if (getsockname(svr_sock_, reinterpret_cast<struct sockaddr *>(&address), &len) == -1) {
  1391. return -1;
  1392. }
  1393. if (address.ss_family == AF_INET) {
  1394. return ntohs(reinterpret_cast<struct sockaddr_in*>(&address)->sin_port);
  1395. } else if (address.ss_family == AF_INET6) {
  1396. return ntohs(reinterpret_cast<struct sockaddr_in6*>(&address)->sin6_port);
  1397. } else {
  1398. return -1;
  1399. }
  1400. } else {
  1401. return port;
  1402. }
  1403. }
  1404. inline bool Server::listen_internal()
  1405. {
  1406. auto ret = true;
  1407. is_running_ = true;
  1408. for (;;) {
  1409. auto val = detail::select_read(svr_sock_, 0, 100000);
  1410. if (val == 0) { // Timeout
  1411. if (svr_sock_ == INVALID_SOCKET) {
  1412. // The server socket was closed by 'stop' method.
  1413. break;
  1414. }
  1415. continue;
  1416. }
  1417. socket_t sock = accept(svr_sock_, NULL, NULL);
  1418. if (sock == INVALID_SOCKET) {
  1419. if (svr_sock_ != INVALID_SOCKET) {
  1420. detail::close_socket(svr_sock_);
  1421. ret = false;
  1422. } else {
  1423. ; // The server socket was closed by user.
  1424. }
  1425. break;
  1426. }
  1427. // TODO: Use thread pool...
  1428. std::thread([=]() {
  1429. {
  1430. std::lock_guard<std::mutex> guard(running_threads_mutex_);
  1431. running_threads_++;
  1432. }
  1433. read_and_close_socket(sock);
  1434. {
  1435. std::lock_guard<std::mutex> guard(running_threads_mutex_);
  1436. running_threads_--;
  1437. }
  1438. }).detach();
  1439. }
  1440. // TODO: Use thread pool...
  1441. for (;;) {
  1442. std::this_thread::sleep_for(std::chrono::milliseconds(10));
  1443. std::lock_guard<std::mutex> guard(running_threads_mutex_);
  1444. if (!running_threads_) {
  1445. break;
  1446. }
  1447. }
  1448. is_running_ = false;
  1449. return ret;
  1450. }
  1451. inline bool Server::routing(Request& req, Response& res)
  1452. {
  1453. if (req.method == "GET" && handle_file_request(req, res)) {
  1454. return true;
  1455. }
  1456. if (req.method == "GET" || req.method == "HEAD") {
  1457. return dispatch_request(req, res, get_handlers_);
  1458. } else if (req.method == "POST") {
  1459. return dispatch_request(req, res, post_handlers_);
  1460. } else if (req.method == "PUT") {
  1461. return dispatch_request(req, res, put_handlers_);
  1462. } else if (req.method == "DELETE") {
  1463. return dispatch_request(req, res, delete_handlers_);
  1464. } else if (req.method == "OPTIONS") {
  1465. return dispatch_request(req, res, options_handlers_);
  1466. }
  1467. return false;
  1468. }
  1469. inline bool Server::dispatch_request(Request& req, Response& res, Handlers& handlers)
  1470. {
  1471. for (const auto& x: handlers) {
  1472. const auto& pattern = x.first;
  1473. const auto& handler = x.second;
  1474. if (std::regex_match(req.path, req.matches, pattern)) {
  1475. handler(req, res);
  1476. return true;
  1477. }
  1478. }
  1479. return false;
  1480. }
  1481. inline bool Server::process_request(Stream& strm, bool last_connection, bool& connection_close)
  1482. {
  1483. const auto bufsiz = 2048;
  1484. char buf[bufsiz];
  1485. detail::stream_line_reader reader(strm, buf, bufsiz);
  1486. // Connection has been closed on client
  1487. if (!reader.getline()) {
  1488. return false;
  1489. }
  1490. Request req;
  1491. Response res;
  1492. res.version = "HTTP/1.1";
  1493. // Request line and headers
  1494. if (!parse_request_line(reader.ptr(), req) || !detail::read_headers(strm, req.headers)) {
  1495. res.status = 400;
  1496. write_response(strm, last_connection, req, res);
  1497. return true;
  1498. }
  1499. auto ret = true;
  1500. if (req.get_header_value("Connection") == "close") {
  1501. // ret = false;
  1502. connection_close = true;
  1503. }
  1504. req.set_header("REMOTE_ADDR", strm.get_remote_addr().c_str());
  1505. // Body
  1506. if (req.method == "POST" || req.method == "PUT") {
  1507. if (!detail::read_content(strm, req)) {
  1508. res.status = 400;
  1509. write_response(strm, last_connection, req, res);
  1510. return ret;
  1511. }
  1512. const auto& content_type = req.get_header_value("Content-Type");
  1513. if (req.get_header_value("Content-Encoding") == "gzip") {
  1514. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  1515. detail::decompress(req.body);
  1516. #else
  1517. res.status = 415;
  1518. write_response(strm, last_connection, req, res);
  1519. return ret;
  1520. #endif
  1521. }
  1522. if (!content_type.find("application/x-www-form-urlencoded")) {
  1523. detail::parse_query_text(req.body, req.params);
  1524. } else if(!content_type.find("multipart/form-data")) {
  1525. std::string boundary;
  1526. if (!detail::parse_multipart_boundary(content_type, boundary) ||
  1527. !detail::parse_multipart_formdata(boundary, req.body, req.files)) {
  1528. res.status = 400;
  1529. write_response(strm, last_connection, req, res);
  1530. return ret;
  1531. }
  1532. }
  1533. }
  1534. if (routing(req, res)) {
  1535. if (res.status == -1) {
  1536. res.status = 200;
  1537. }
  1538. } else {
  1539. res.status = 404;
  1540. }
  1541. write_response(strm, last_connection, req, res);
  1542. return ret;
  1543. }
  1544. inline bool Server::is_valid() const
  1545. {
  1546. return true;
  1547. }
  1548. inline bool Server::read_and_close_socket(socket_t sock)
  1549. {
  1550. return detail::read_and_close_socket(
  1551. sock,
  1552. keep_alive_max_count_,
  1553. [this](Stream& strm, bool last_connection, bool& connection_close) {
  1554. return process_request(strm, last_connection, connection_close);
  1555. });
  1556. }
  1557. // HTTP client implementation
  1558. inline Client::Client(
  1559. const char* host, int port, size_t timeout_sec)
  1560. : host_(host)
  1561. , port_(port)
  1562. , timeout_sec_(timeout_sec)
  1563. , host_and_port_(host_ + ":" + std::to_string(port_))
  1564. {
  1565. }
  1566. inline Client::~Client()
  1567. {
  1568. }
  1569. inline bool Client::is_valid() const
  1570. {
  1571. return true;
  1572. }
  1573. inline socket_t Client::create_client_socket() const
  1574. {
  1575. return detail::create_socket(host_.c_str(), port_,
  1576. [=](socket_t sock, struct addrinfo& ai) -> bool {
  1577. detail::set_nonblocking(sock, true);
  1578. auto ret = connect(sock, ai.ai_addr, ai.ai_addrlen);
  1579. if (ret < 0) {
  1580. if (detail::is_connection_error() ||
  1581. !detail::wait_until_socket_is_ready(sock, timeout_sec_, 0)) {
  1582. detail::close_socket(sock);
  1583. return false;
  1584. }
  1585. }
  1586. detail::set_nonblocking(sock, false);
  1587. return true;
  1588. });
  1589. }
  1590. inline bool Client::read_response_line(Stream& strm, Response& res)
  1591. {
  1592. const auto bufsiz = 2048;
  1593. char buf[bufsiz];
  1594. detail::stream_line_reader reader(strm, buf, bufsiz);
  1595. if (!reader.getline()) {
  1596. return false;
  1597. }
  1598. const static std::regex re("(HTTP/1\\.[01]) (\\d+?) .+\r\n");
  1599. std::cmatch m;
  1600. if (std::regex_match(reader.ptr(), m, re)) {
  1601. res.version = std::string(m[1]);
  1602. res.status = std::stoi(std::string(m[2]));
  1603. }
  1604. return true;
  1605. }
  1606. inline bool Client::send(Request& req, Response& res)
  1607. {
  1608. if (req.path.empty()) {
  1609. return false;
  1610. }
  1611. auto sock = create_client_socket();
  1612. if (sock == INVALID_SOCKET) {
  1613. return false;
  1614. }
  1615. return read_and_close_socket(sock, req, res);
  1616. }
  1617. inline void Client::write_request(Stream& strm, Request& req)
  1618. {
  1619. auto path = detail::encode_url(req.path);
  1620. // Request line
  1621. strm.write_format("%s %s HTTP/1.1\r\n",
  1622. req.method.c_str(),
  1623. path.c_str());
  1624. // Headers
  1625. req.set_header("Host", host_and_port_.c_str());
  1626. if (!req.has_header("Accept")) {
  1627. req.set_header("Accept", "*/*");
  1628. }
  1629. if (!req.has_header("User-Agent")) {
  1630. req.set_header("User-Agent", "cpp-httplib/0.2");
  1631. }
  1632. // TODO: Support KeepAlive connection
  1633. // if (!req.has_header("Connection")) {
  1634. req.set_header("Connection", "close");
  1635. // }
  1636. if (!req.body.empty()) {
  1637. if (!req.has_header("Content-Type")) {
  1638. req.set_header("Content-Type", "text/plain");
  1639. }
  1640. auto length = std::to_string(req.body.size());
  1641. req.set_header("Content-Length", length.c_str());
  1642. }
  1643. detail::write_headers(strm, req);
  1644. // Body
  1645. if (!req.body.empty()) {
  1646. if (req.get_header_value("Content-Type") == "application/x-www-form-urlencoded") {
  1647. auto str = detail::encode_url(req.body);
  1648. strm.write(str.c_str(), str.size());
  1649. } else {
  1650. strm.write(req.body.c_str(), req.body.size());
  1651. }
  1652. }
  1653. }
  1654. inline bool Client::process_request(Stream& strm, Request& req, Response& res, bool& connection_close)
  1655. {
  1656. // Send request
  1657. write_request(strm, req);
  1658. // Receive response and headers
  1659. if (!read_response_line(strm, res) || !detail::read_headers(strm, res.headers)) {
  1660. return false;
  1661. }
  1662. if (res.get_header_value("Connection") == "close" || res.version == "HTTP/1.0") {
  1663. connection_close = true;
  1664. }
  1665. // Body
  1666. if (req.method != "HEAD") {
  1667. if (!detail::read_content(strm, res, req.progress)) {
  1668. return false;
  1669. }
  1670. if (res.get_header_value("Content-Encoding") == "gzip") {
  1671. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  1672. detail::decompress(res.body);
  1673. #else
  1674. return false;
  1675. #endif
  1676. }
  1677. }
  1678. return true;
  1679. }
  1680. inline bool Client::read_and_close_socket(socket_t sock, Request& req, Response& res)
  1681. {
  1682. return detail::read_and_close_socket(
  1683. sock,
  1684. 0,
  1685. [&](Stream& strm, bool /*last_connection*/, bool& connection_close) {
  1686. return process_request(strm, req, res, connection_close);
  1687. });
  1688. }
  1689. inline std::shared_ptr<Response> Client::Get(const char* path, Progress progress)
  1690. {
  1691. return Get(path, Headers(), progress);
  1692. }
  1693. inline std::shared_ptr<Response> Client::Get(const char* path, const Headers& headers, Progress progress)
  1694. {
  1695. Request req;
  1696. req.method = "GET";
  1697. req.path = path;
  1698. req.headers = headers;
  1699. req.progress = progress;
  1700. auto res = std::make_shared<Response>();
  1701. return send(req, *res) ? res : nullptr;
  1702. }
  1703. inline std::shared_ptr<Response> Client::Head(const char* path)
  1704. {
  1705. return Head(path, Headers());
  1706. }
  1707. inline std::shared_ptr<Response> Client::Head(const char* path, const Headers& headers)
  1708. {
  1709. Request req;
  1710. req.method = "HEAD";
  1711. req.headers = headers;
  1712. req.path = path;
  1713. auto res = std::make_shared<Response>();
  1714. return send(req, *res) ? res : nullptr;
  1715. }
  1716. inline std::shared_ptr<Response> Client::Post(
  1717. const char* path, const std::string& body, const char* content_type)
  1718. {
  1719. return Post(path, Headers(), body, content_type);
  1720. }
  1721. inline std::shared_ptr<Response> Client::Post(
  1722. const char* path, const Headers& headers, const std::string& body, const char* content_type)
  1723. {
  1724. Request req;
  1725. req.method = "POST";
  1726. req.headers = headers;
  1727. req.path = path;
  1728. req.headers.emplace("Content-Type", content_type);
  1729. req.body = body;
  1730. auto res = std::make_shared<Response>();
  1731. return send(req, *res) ? res : nullptr;
  1732. }
  1733. inline std::shared_ptr<Response> Client::Post(const char* path, const Params& params)
  1734. {
  1735. return Post(path, Headers(), params);
  1736. }
  1737. inline std::shared_ptr<Response> Client::Post(const char* path, const Headers& headers, const Params& params)
  1738. {
  1739. std::string query;
  1740. for (auto it = params.begin(); it != params.end(); ++it) {
  1741. if (it != params.begin()) {
  1742. query += "&";
  1743. }
  1744. query += it->first;
  1745. query += "=";
  1746. query += it->second;
  1747. }
  1748. return Post(path, headers, query, "application/x-www-form-urlencoded");
  1749. }
  1750. inline std::shared_ptr<Response> Client::Put(
  1751. const char* path, const std::string& body, const char* content_type)
  1752. {
  1753. return Put(path, Headers(), body, content_type);
  1754. }
  1755. inline std::shared_ptr<Response> Client::Put(
  1756. const char* path, const Headers& headers, const std::string& body, const char* content_type)
  1757. {
  1758. Request req;
  1759. req.method = "PUT";
  1760. req.headers = headers;
  1761. req.path = path;
  1762. req.headers.emplace("Content-Type", content_type);
  1763. req.body = body;
  1764. auto res = std::make_shared<Response>();
  1765. return send(req, *res) ? res : nullptr;
  1766. }
  1767. inline std::shared_ptr<Response> Client::Delete(const char* path)
  1768. {
  1769. return Delete(path, Headers());
  1770. }
  1771. inline std::shared_ptr<Response> Client::Delete(const char* path, const Headers& headers)
  1772. {
  1773. Request req;
  1774. req.method = "DELETE";
  1775. req.path = path;
  1776. req.headers = headers;
  1777. auto res = std::make_shared<Response>();
  1778. return send(req, *res) ? res : nullptr;
  1779. }
  1780. inline std::shared_ptr<Response> Client::Options(const char* path)
  1781. {
  1782. return Options(path, Headers());
  1783. }
  1784. inline std::shared_ptr<Response> Client::Options(const char* path, const Headers& headers)
  1785. {
  1786. Request req;
  1787. req.method = "OPTIONS";
  1788. req.path = path;
  1789. req.headers = headers;
  1790. auto res = std::make_shared<Response>();
  1791. return send(req, *res) ? res : nullptr;
  1792. }
  1793. /*
  1794. * SSL Implementation
  1795. */
  1796. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  1797. namespace detail {
  1798. template <typename U, typename V, typename T>
  1799. inline bool read_and_close_socket_ssl(
  1800. socket_t sock, size_t keep_alive_max_count,
  1801. // TODO: OpenSSL 1.0.2 occasionally crashes...
  1802. // The upcoming 1.1.0 is going to be thread safe.
  1803. SSL_CTX* ctx, std::mutex& ctx_mutex,
  1804. U SSL_connect_or_accept, V setup,
  1805. T callback)
  1806. {
  1807. SSL* ssl = nullptr;
  1808. {
  1809. std::lock_guard<std::mutex> guard(ctx_mutex);
  1810. ssl = SSL_new(ctx);
  1811. if (!ssl) {
  1812. return false;
  1813. }
  1814. }
  1815. auto bio = BIO_new_socket(sock, BIO_NOCLOSE);
  1816. SSL_set_bio(ssl, bio, bio);
  1817. setup(ssl);
  1818. SSL_connect_or_accept(ssl);
  1819. bool ret = false;
  1820. if (keep_alive_max_count > 0) {
  1821. auto count = keep_alive_max_count;
  1822. while (count > 0 &&
  1823. detail::select_read(sock,
  1824. CPPHTTPLIB_KEEPALIVE_TIMEOUT_SECOND,
  1825. CPPHTTPLIB_KEEPALIVE_TIMEOUT_USECOND) > 0) {
  1826. SSLSocketStream strm(sock, ssl);
  1827. auto last_connection = count == 1;
  1828. auto connection_close = false;
  1829. ret = callback(strm, last_connection, connection_close);
  1830. if (!ret || connection_close) {
  1831. break;
  1832. }
  1833. count--;
  1834. }
  1835. } else {
  1836. SSLSocketStream strm(sock, ssl);
  1837. auto dummy_connection_close = false;
  1838. ret = callback(strm, true, dummy_connection_close);
  1839. }
  1840. SSL_shutdown(ssl);
  1841. {
  1842. std::lock_guard<std::mutex> guard(ctx_mutex);
  1843. SSL_free(ssl);
  1844. }
  1845. close_socket(sock);
  1846. return ret;
  1847. }
  1848. class SSLInit {
  1849. public:
  1850. SSLInit() {
  1851. SSL_load_error_strings();
  1852. SSL_library_init();
  1853. }
  1854. };
  1855. static SSLInit sslinit_;
  1856. } // namespace detail
  1857. // SSL socket stream implementation
  1858. inline SSLSocketStream::SSLSocketStream(socket_t sock, SSL* ssl)
  1859. : sock_(sock), ssl_(ssl)
  1860. {
  1861. }
  1862. inline SSLSocketStream::~SSLSocketStream()
  1863. {
  1864. }
  1865. inline int SSLSocketStream::read(char* ptr, size_t size)
  1866. {
  1867. return SSL_read(ssl_, ptr, size);
  1868. }
  1869. inline int SSLSocketStream::write(const char* ptr, size_t size)
  1870. {
  1871. return SSL_write(ssl_, ptr, size);
  1872. }
  1873. inline int SSLSocketStream::write(const char* ptr)
  1874. {
  1875. return write(ptr, strlen(ptr));
  1876. }
  1877. inline std::string SSLSocketStream::get_remote_addr() {
  1878. return detail::get_remote_addr(sock_);
  1879. }
  1880. // SSL HTTP server implementation
  1881. inline SSLServer::SSLServer(const char* cert_path, const char* private_key_path)
  1882. {
  1883. ctx_ = SSL_CTX_new(SSLv23_server_method());
  1884. if (ctx_) {
  1885. SSL_CTX_set_options(ctx_,
  1886. SSL_OP_ALL | SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 |
  1887. SSL_OP_NO_COMPRESSION |
  1888. SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION);
  1889. // auto ecdh = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
  1890. // SSL_CTX_set_tmp_ecdh(ctx_, ecdh);
  1891. // EC_KEY_free(ecdh);
  1892. if (SSL_CTX_use_certificate_file(ctx_, cert_path, SSL_FILETYPE_PEM) != 1 ||
  1893. SSL_CTX_use_PrivateKey_file(ctx_, private_key_path, SSL_FILETYPE_PEM) != 1) {
  1894. SSL_CTX_free(ctx_);
  1895. ctx_ = nullptr;
  1896. }
  1897. }
  1898. }
  1899. inline SSLServer::~SSLServer()
  1900. {
  1901. if (ctx_) {
  1902. SSL_CTX_free(ctx_);
  1903. }
  1904. }
  1905. inline bool SSLServer::is_valid() const
  1906. {
  1907. return ctx_;
  1908. }
  1909. inline bool SSLServer::read_and_close_socket(socket_t sock)
  1910. {
  1911. return detail::read_and_close_socket_ssl(
  1912. sock,
  1913. keep_alive_max_count_,
  1914. ctx_, ctx_mutex_,
  1915. SSL_accept,
  1916. [](SSL* /*ssl*/) {},
  1917. [this](Stream& strm, bool last_connection, bool& connection_close) {
  1918. return process_request(strm, last_connection, connection_close);
  1919. });
  1920. }
  1921. // SSL HTTP client implementation
  1922. inline SSLClient::SSLClient(const char* host, int port, size_t timeout_sec)
  1923. : Client(host, port, timeout_sec)
  1924. {
  1925. ctx_ = SSL_CTX_new(SSLv23_client_method());
  1926. }
  1927. inline SSLClient::~SSLClient()
  1928. {
  1929. if (ctx_) {
  1930. SSL_CTX_free(ctx_);
  1931. }
  1932. }
  1933. inline bool SSLClient::is_valid() const
  1934. {
  1935. return ctx_;
  1936. }
  1937. inline bool SSLClient::read_and_close_socket(socket_t sock, Request& req, Response& res)
  1938. {
  1939. return is_valid() && detail::read_and_close_socket_ssl(
  1940. sock, 0,
  1941. ctx_, ctx_mutex_,
  1942. SSL_connect,
  1943. [&](SSL* ssl) {
  1944. SSL_set_tlsext_host_name(ssl, host_.c_str());
  1945. },
  1946. [&](Stream& strm, bool /*last_connection*/, bool& connection_close) {
  1947. return process_request(strm, req, res, connection_close);
  1948. });
  1949. }
  1950. #endif
  1951. } // namespace httplib
  1952. #endif
  1953. // vim: et ts=4 sw=4 cin cino={1s ff=unix