httplib.h 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394
  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<bool (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. time_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. time_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. time_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, time_t sec, time_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, time_t sec, time_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 bool has_header(const Headers& headers, const char* key)
  605. {
  606. return headers.find(key) != headers.end();
  607. }
  608. inline const char* get_header_value(
  609. const Headers& headers, const char* key, const char* def = nullptr)
  610. {
  611. auto it = headers.find(key);
  612. if (it != headers.end()) {
  613. return it->second.c_str();
  614. }
  615. return def;
  616. }
  617. inline int get_header_value_int(const Headers& headers, const char* key, int def = 0)
  618. {
  619. auto it = headers.find(key);
  620. if (it != headers.end()) {
  621. return std::stoi(it->second);
  622. }
  623. return def;
  624. }
  625. inline bool read_headers(Stream& strm, Headers& headers)
  626. {
  627. static std::regex re(R"((.+?):\s*(.+?)\s*\r\n)");
  628. const auto bufsiz = 2048;
  629. char buf[bufsiz];
  630. stream_line_reader reader(strm, buf, bufsiz);
  631. for (;;) {
  632. if (!reader.getline()) {
  633. return false;
  634. }
  635. if (!strcmp(reader.ptr(), "\r\n")) {
  636. break;
  637. }
  638. std::cmatch m;
  639. if (std::regex_match(reader.ptr(), m, re)) {
  640. auto key = std::string(m[1]);
  641. auto val = std::string(m[2]);
  642. headers.emplace(key, val);
  643. }
  644. }
  645. return true;
  646. }
  647. inline bool read_content_with_length(Stream& strm, std::string& out, size_t len, Progress progress)
  648. {
  649. out.assign(len, 0);
  650. size_t r = 0;
  651. while (r < len){
  652. auto n = strm.read(&out[r], len - r);
  653. if (n <= 0) {
  654. return false;
  655. }
  656. r += n;
  657. if (progress) {
  658. if (!progress(r, len)) {
  659. return false;
  660. }
  661. }
  662. }
  663. return true;
  664. }
  665. inline bool read_content_without_length(Stream& strm, std::string& out)
  666. {
  667. for (;;) {
  668. char byte;
  669. auto n = strm.read(&byte, 1);
  670. if (n < 0) {
  671. return false;
  672. } else if (n == 0) {
  673. return true;
  674. }
  675. out += byte;
  676. }
  677. return true;
  678. }
  679. inline bool read_content_chunked(Stream& strm, std::string& out)
  680. {
  681. const auto bufsiz = 16;
  682. char buf[bufsiz];
  683. stream_line_reader reader(strm, buf, bufsiz);
  684. if (!reader.getline()) {
  685. return false;
  686. }
  687. auto chunk_len = std::stoi(reader.ptr(), 0, 16);
  688. while (chunk_len > 0){
  689. std::string chunk;
  690. if (!read_content_with_length(strm, chunk, chunk_len, nullptr)) {
  691. return false;
  692. }
  693. if (!reader.getline()) {
  694. return false;
  695. }
  696. if (strcmp(reader.ptr(), "\r\n")) {
  697. break;
  698. }
  699. out += chunk;
  700. if (!reader.getline()) {
  701. return false;
  702. }
  703. chunk_len = std::stoi(reader.ptr(), 0, 16);
  704. }
  705. if (chunk_len == 0) {
  706. // Reader terminator after chunks
  707. if (!reader.getline() || strcmp(reader.ptr(), "\r\n"))
  708. return false;
  709. }
  710. return true;
  711. }
  712. template <typename T>
  713. bool read_content(Stream& strm, T& x, Progress progress = Progress())
  714. {
  715. if (has_header(x.headers, "Content-Length")) {
  716. auto len = get_header_value_int(x.headers, "Content-Length", 0);
  717. if (len == 0) {
  718. const auto& encoding = get_header_value(x.headers, "Transfer-Encoding", "");
  719. if (!strcasecmp(encoding, "chunked")) {
  720. return read_content_chunked(strm, x.body);
  721. }
  722. }
  723. return read_content_with_length(strm, x.body, len, progress);
  724. } else {
  725. const auto& encoding = get_header_value(x.headers, "Transfer-Encoding", "");
  726. if (!strcasecmp(encoding, "chunked")) {
  727. return read_content_chunked(strm, x.body);
  728. }
  729. return read_content_without_length(strm, x.body);
  730. }
  731. return true;
  732. }
  733. template <typename T>
  734. inline void write_headers(Stream& strm, const T& info)
  735. {
  736. for (const auto& x: info.headers) {
  737. strm.write_format("%s: %s\r\n", x.first.c_str(), x.second.c_str());
  738. }
  739. strm.write("\r\n");
  740. }
  741. inline std::string encode_url(const std::string& s)
  742. {
  743. std::string result;
  744. for (auto i = 0; s[i]; i++) {
  745. switch (s[i]) {
  746. case ' ': result += "+"; break;
  747. case '\'': result += "%27"; break;
  748. case ',': result += "%2C"; break;
  749. case ':': result += "%3A"; break;
  750. case ';': result += "%3B"; break;
  751. default:
  752. if (s[i] < 0) {
  753. result += '%';
  754. char hex[4];
  755. size_t len = snprintf(hex, sizeof(hex) - 1, "%02X", (unsigned char)s[i]);
  756. assert(len == 2);
  757. result.append(hex, len);
  758. } else {
  759. result += s[i];
  760. }
  761. break;
  762. }
  763. }
  764. return result;
  765. }
  766. inline bool is_hex(char c, int& v)
  767. {
  768. if (0x20 <= c && isdigit(c)) {
  769. v = c - '0';
  770. return true;
  771. } else if ('A' <= c && c <= 'F') {
  772. v = c - 'A' + 10;
  773. return true;
  774. } else if ('a' <= c && c <= 'f') {
  775. v = c - 'a' + 10;
  776. return true;
  777. }
  778. return false;
  779. }
  780. inline bool from_hex_to_i(const std::string& s, size_t i, size_t cnt, int& val)
  781. {
  782. if (i >= s.size()) {
  783. return false;
  784. }
  785. val = 0;
  786. for (; cnt; i++, cnt--) {
  787. if (!s[i]) {
  788. return false;
  789. }
  790. int v = 0;
  791. if (is_hex(s[i], v)) {
  792. val = val * 16 + v;
  793. } else {
  794. return false;
  795. }
  796. }
  797. return true;
  798. }
  799. inline std::string from_i_to_hex(uint64_t n)
  800. {
  801. const char *charset = "0123456789abcdef";
  802. std::string ret;
  803. do {
  804. ret = charset[n & 15] + ret;
  805. n >>= 4;
  806. } while (n > 0);
  807. return ret;
  808. }
  809. inline size_t to_utf8(int code, char* buff)
  810. {
  811. if (code < 0x0080) {
  812. buff[0] = (code & 0x7F);
  813. return 1;
  814. } else if (code < 0x0800) {
  815. buff[0] = (0xC0 | ((code >> 6) & 0x1F));
  816. buff[1] = (0x80 | (code & 0x3F));
  817. return 2;
  818. } else if (code < 0xD800) {
  819. buff[0] = (0xE0 | ((code >> 12) & 0xF));
  820. buff[1] = (0x80 | ((code >> 6) & 0x3F));
  821. buff[2] = (0x80 | (code & 0x3F));
  822. return 3;
  823. } else if (code < 0xE000) { // D800 - DFFF is invalid...
  824. return 0;
  825. } else if (code < 0x10000) {
  826. buff[0] = (0xE0 | ((code >> 12) & 0xF));
  827. buff[1] = (0x80 | ((code >> 6) & 0x3F));
  828. buff[2] = (0x80 | (code & 0x3F));
  829. return 3;
  830. } else if (code < 0x110000) {
  831. buff[0] = (0xF0 | ((code >> 18) & 0x7));
  832. buff[1] = (0x80 | ((code >> 12) & 0x3F));
  833. buff[2] = (0x80 | ((code >> 6) & 0x3F));
  834. buff[3] = (0x80 | (code & 0x3F));
  835. return 4;
  836. }
  837. // NOTREACHED
  838. return 0;
  839. }
  840. inline std::string decode_url(const std::string& s)
  841. {
  842. std::string result;
  843. for (size_t i = 0; i < s.size(); i++) {
  844. if (s[i] == '%' && i + 1 < s.size()) {
  845. if (s[i + 1] == 'u') {
  846. int val = 0;
  847. if (from_hex_to_i(s, i + 2, 4, val)) {
  848. // 4 digits Unicode codes
  849. char buff[4];
  850. size_t len = to_utf8(val, buff);
  851. if (len > 0) {
  852. result.append(buff, len);
  853. }
  854. i += 5; // 'u0000'
  855. } else {
  856. result += s[i];
  857. }
  858. } else {
  859. int val = 0;
  860. if (from_hex_to_i(s, i + 1, 2, val)) {
  861. // 2 digits hex codes
  862. result += val;
  863. i += 2; // '00'
  864. } else {
  865. result += s[i];
  866. }
  867. }
  868. } else if (s[i] == '+') {
  869. result += ' ';
  870. } else {
  871. result += s[i];
  872. }
  873. }
  874. return result;
  875. }
  876. inline void parse_query_text(const std::string& s, Params& params)
  877. {
  878. split(&s[0], &s[s.size()], '&', [&](const char* b, const char* e) {
  879. std::string key;
  880. std::string val;
  881. split(b, e, '=', [&](const char* b, const char* e) {
  882. if (key.empty()) {
  883. key.assign(b, e);
  884. } else {
  885. val.assign(b, e);
  886. }
  887. });
  888. params.emplace(key, decode_url(val));
  889. });
  890. }
  891. inline bool parse_multipart_boundary(const std::string& content_type, std::string& boundary)
  892. {
  893. auto pos = content_type.find("boundary=");
  894. if (pos == std::string::npos) {
  895. return false;
  896. }
  897. boundary = content_type.substr(pos + 9);
  898. return true;
  899. }
  900. inline bool parse_multipart_formdata(
  901. const std::string& boundary, const std::string& body, MultipartFiles& files)
  902. {
  903. static std::string dash = "--";
  904. static std::string crlf = "\r\n";
  905. static std::regex re_content_type(
  906. "Content-Type: (.*?)", std::regex_constants::icase);
  907. static std::regex re_content_disposition(
  908. "Content-Disposition: form-data; name=\"(.*?)\"(?:; filename=\"(.*?)\")?",
  909. std::regex_constants::icase);
  910. auto dash_boundary = dash + boundary;
  911. auto pos = body.find(dash_boundary);
  912. if (pos != 0) {
  913. return false;
  914. }
  915. pos += dash_boundary.size();
  916. auto next_pos = body.find(crlf, pos);
  917. if (next_pos == std::string::npos) {
  918. return false;
  919. }
  920. pos = next_pos + crlf.size();
  921. while (pos < body.size()) {
  922. next_pos = body.find(crlf, pos);
  923. if (next_pos == std::string::npos) {
  924. return false;
  925. }
  926. std::string name;
  927. MultipartFile file;
  928. auto header = body.substr(pos, (next_pos - pos));
  929. while (pos != next_pos) {
  930. std::smatch m;
  931. if (std::regex_match(header, m, re_content_type)) {
  932. file.content_type = m[1];
  933. } else if (std::regex_match(header, m, re_content_disposition)) {
  934. name = m[1];
  935. file.filename = m[2];
  936. }
  937. pos = next_pos + crlf.size();
  938. next_pos = body.find(crlf, pos);
  939. if (next_pos == std::string::npos) {
  940. return false;
  941. }
  942. header = body.substr(pos, (next_pos - pos));
  943. }
  944. pos = next_pos + crlf.size();
  945. next_pos = body.find(crlf + dash_boundary, pos);
  946. if (next_pos == std::string::npos) {
  947. return false;
  948. }
  949. file.offset = pos;
  950. file.length = next_pos - pos;
  951. pos = next_pos + crlf.size() + dash_boundary.size();
  952. next_pos = body.find(crlf, pos);
  953. if (next_pos == std::string::npos) {
  954. return false;
  955. }
  956. files.emplace(name, file);
  957. pos = next_pos + crlf.size();
  958. }
  959. return true;
  960. }
  961. inline std::string to_lower(const char* beg, const char* end)
  962. {
  963. std::string out;
  964. auto it = beg;
  965. while (it != end) {
  966. out += ::tolower(*it);
  967. it++;
  968. }
  969. return out;
  970. }
  971. inline void make_range_header_core(std::string&) {}
  972. template<typename uint64_t>
  973. inline void make_range_header_core(std::string& field, uint64_t value)
  974. {
  975. if (!field.empty()) {
  976. field += ", ";
  977. }
  978. field += std::to_string(value) + "-";
  979. }
  980. template<typename uint64_t, typename... Args>
  981. inline void make_range_header_core(std::string& field, uint64_t value1, uint64_t value2, Args... args)
  982. {
  983. if (!field.empty()) {
  984. field += ", ";
  985. }
  986. field += std::to_string(value1) + "-" + std::to_string(value2);
  987. make_range_header_core(field, args...);
  988. }
  989. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  990. inline bool can_compress(const std::string& content_type) {
  991. return !content_type.find("text/") ||
  992. content_type == "image/svg+xml" ||
  993. content_type == "application/javascript" ||
  994. content_type == "application/json" ||
  995. content_type == "application/xml" ||
  996. content_type == "application/xhtml+xml";
  997. }
  998. inline void compress(std::string& content)
  999. {
  1000. z_stream strm;
  1001. strm.zalloc = Z_NULL;
  1002. strm.zfree = Z_NULL;
  1003. strm.opaque = Z_NULL;
  1004. auto ret = deflateInit2(&strm, Z_DEFAULT_COMPRESSION, Z_DEFLATED, 31, 8, Z_DEFAULT_STRATEGY);
  1005. if (ret != Z_OK) {
  1006. return;
  1007. }
  1008. strm.avail_in = content.size();
  1009. strm.next_in = (Bytef *)content.data();
  1010. std::string compressed;
  1011. const auto bufsiz = 16384;
  1012. char buff[bufsiz];
  1013. do {
  1014. strm.avail_out = bufsiz;
  1015. strm.next_out = (Bytef *)buff;
  1016. deflate(&strm, Z_FINISH);
  1017. compressed.append(buff, bufsiz - strm.avail_out);
  1018. } while (strm.avail_out == 0);
  1019. content.swap(compressed);
  1020. deflateEnd(&strm);
  1021. }
  1022. inline void decompress(std::string& content)
  1023. {
  1024. z_stream strm;
  1025. strm.zalloc = Z_NULL;
  1026. strm.zfree = Z_NULL;
  1027. strm.opaque = Z_NULL;
  1028. // 15 is the value of wbits, which should be at the maximum possible value to ensure
  1029. // that any gzip stream can be decoded. The offset of 16 specifies that the stream
  1030. // to decompress will be formatted with a gzip wrapper.
  1031. auto ret = inflateInit2(&strm, 16 + 15);
  1032. if (ret != Z_OK) {
  1033. return;
  1034. }
  1035. strm.avail_in = content.size();
  1036. strm.next_in = (Bytef *)content.data();
  1037. std::string decompressed;
  1038. const auto bufsiz = 16384;
  1039. char buff[bufsiz];
  1040. do {
  1041. strm.avail_out = bufsiz;
  1042. strm.next_out = (Bytef *)buff;
  1043. inflate(&strm, Z_NO_FLUSH);
  1044. decompressed.append(buff, bufsiz - strm.avail_out);
  1045. } while (strm.avail_out == 0);
  1046. content.swap(decompressed);
  1047. inflateEnd(&strm);
  1048. }
  1049. #endif
  1050. #ifdef _WIN32
  1051. class WSInit {
  1052. public:
  1053. WSInit() {
  1054. WSADATA wsaData;
  1055. WSAStartup(0x0002, &wsaData);
  1056. }
  1057. ~WSInit() {
  1058. WSACleanup();
  1059. }
  1060. };
  1061. static WSInit wsinit_;
  1062. #endif
  1063. } // namespace detail
  1064. // Header utilities
  1065. template<typename uint64_t, typename... Args>
  1066. inline std::pair<std::string, std::string> make_range_header(uint64_t value, Args... args)
  1067. {
  1068. std::string field;
  1069. detail::make_range_header_core(field, value, args...);
  1070. field.insert(0, "bytes=");
  1071. return std::make_pair("Range", field);
  1072. }
  1073. // Request implementation
  1074. inline bool Request::has_header(const char* key) const
  1075. {
  1076. return detail::has_header(headers, key);
  1077. }
  1078. inline std::string Request::get_header_value(const char* key) const
  1079. {
  1080. return detail::get_header_value(headers, key, "");
  1081. }
  1082. inline void Request::set_header(const char* key, const char* val)
  1083. {
  1084. headers.emplace(key, val);
  1085. }
  1086. inline bool Request::has_param(const char* key) const
  1087. {
  1088. return params.find(key) != params.end();
  1089. }
  1090. inline std::string Request::get_param_value(const char* key) const
  1091. {
  1092. auto it = params.find(key);
  1093. if (it != params.end()) {
  1094. return it->second;
  1095. }
  1096. return std::string();
  1097. }
  1098. inline bool Request::has_file(const char* key) const
  1099. {
  1100. return files.find(key) != files.end();
  1101. }
  1102. inline MultipartFile Request::get_file_value(const char* key) const
  1103. {
  1104. auto it = files.find(key);
  1105. if (it != files.end()) {
  1106. return it->second;
  1107. }
  1108. return MultipartFile();
  1109. }
  1110. // Response implementation
  1111. inline bool Response::has_header(const char* key) const
  1112. {
  1113. return headers.find(key) != headers.end();
  1114. }
  1115. inline std::string Response::get_header_value(const char* key) const
  1116. {
  1117. return detail::get_header_value(headers, key, "");
  1118. }
  1119. inline void Response::set_header(const char* key, const char* val)
  1120. {
  1121. headers.emplace(key, val);
  1122. }
  1123. inline void Response::set_redirect(const char* url)
  1124. {
  1125. set_header("Location", url);
  1126. status = 302;
  1127. }
  1128. inline void Response::set_content(const char* s, size_t n, const char* content_type)
  1129. {
  1130. body.assign(s, n);
  1131. set_header("Content-Type", content_type);
  1132. }
  1133. inline void Response::set_content(const std::string& s, const char* content_type)
  1134. {
  1135. body = s;
  1136. set_header("Content-Type", content_type);
  1137. }
  1138. // Rstream implementation
  1139. template <typename ...Args>
  1140. inline void Stream::write_format(const char* fmt, const Args& ...args)
  1141. {
  1142. const auto bufsiz = 2048;
  1143. char buf[bufsiz];
  1144. #if defined(_MSC_VER) && _MSC_VER < 1900
  1145. auto n = _snprintf_s(buf, bufsiz, bufsiz - 1, fmt, args...);
  1146. #else
  1147. auto n = snprintf(buf, bufsiz - 1, fmt, args...);
  1148. #endif
  1149. if (n > 0) {
  1150. if (n >= bufsiz - 1) {
  1151. std::vector<char> glowable_buf(bufsiz);
  1152. while (n >= static_cast<int>(glowable_buf.size() - 1)) {
  1153. glowable_buf.resize(glowable_buf.size() * 2);
  1154. #if defined(_MSC_VER) && _MSC_VER < 1900
  1155. n = _snprintf_s(&glowable_buf[0], glowable_buf.size(), glowable_buf.size() - 1, fmt, args...);
  1156. #else
  1157. n = snprintf(&glowable_buf[0], glowable_buf.size() - 1, fmt, args...);
  1158. #endif
  1159. }
  1160. write(&glowable_buf[0], n);
  1161. } else {
  1162. write(buf, n);
  1163. }
  1164. }
  1165. }
  1166. // Socket stream implementation
  1167. inline SocketStream::SocketStream(socket_t sock): sock_(sock)
  1168. {
  1169. }
  1170. inline SocketStream::~SocketStream()
  1171. {
  1172. }
  1173. inline int SocketStream::read(char* ptr, size_t size)
  1174. {
  1175. return recv(sock_, ptr, size, 0);
  1176. }
  1177. inline int SocketStream::write(const char* ptr, size_t size)
  1178. {
  1179. return send(sock_, ptr, size, 0);
  1180. }
  1181. inline int SocketStream::write(const char* ptr)
  1182. {
  1183. return write(ptr, strlen(ptr));
  1184. }
  1185. inline std::string SocketStream::get_remote_addr() {
  1186. return detail::get_remote_addr(sock_);
  1187. }
  1188. // HTTP server implementation
  1189. inline Server::Server()
  1190. : keep_alive_max_count_(5)
  1191. , is_running_(false)
  1192. , svr_sock_(INVALID_SOCKET)
  1193. , running_threads_(0)
  1194. {
  1195. #ifndef _WIN32
  1196. signal(SIGPIPE, SIG_IGN);
  1197. #endif
  1198. }
  1199. inline Server::~Server()
  1200. {
  1201. }
  1202. inline Server& Server::Get(const char* pattern, Handler handler)
  1203. {
  1204. get_handlers_.push_back(std::make_pair(std::regex(pattern), handler));
  1205. return *this;
  1206. }
  1207. inline Server& Server::Post(const char* pattern, Handler handler)
  1208. {
  1209. post_handlers_.push_back(std::make_pair(std::regex(pattern), handler));
  1210. return *this;
  1211. }
  1212. inline Server& Server::Put(const char* pattern, Handler handler)
  1213. {
  1214. put_handlers_.push_back(std::make_pair(std::regex(pattern), handler));
  1215. return *this;
  1216. }
  1217. inline Server& Server::Delete(const char* pattern, Handler handler)
  1218. {
  1219. delete_handlers_.push_back(std::make_pair(std::regex(pattern), handler));
  1220. return *this;
  1221. }
  1222. inline Server& Server::Options(const char* pattern, Handler handler)
  1223. {
  1224. options_handlers_.push_back(std::make_pair(std::regex(pattern), handler));
  1225. return *this;
  1226. }
  1227. inline bool Server::set_base_dir(const char* path)
  1228. {
  1229. if (detail::is_dir(path)) {
  1230. base_dir_ = path;
  1231. return true;
  1232. }
  1233. return false;
  1234. }
  1235. inline void Server::set_error_handler(Handler handler)
  1236. {
  1237. error_handler_ = handler;
  1238. }
  1239. inline void Server::set_logger(Logger logger)
  1240. {
  1241. logger_ = logger;
  1242. }
  1243. inline void Server::set_keep_alive_max_count(size_t count)
  1244. {
  1245. keep_alive_max_count_ = count;
  1246. }
  1247. inline int Server::bind_to_any_port(const char* host, int socket_flags)
  1248. {
  1249. return bind_internal(host, 0, socket_flags);
  1250. }
  1251. inline bool Server::listen_after_bind() {
  1252. return listen_internal();
  1253. }
  1254. inline bool Server::listen(const char* host, int port, int socket_flags)
  1255. {
  1256. if (bind_internal(host, port, socket_flags) < 0)
  1257. return false;
  1258. return listen_internal();
  1259. }
  1260. inline bool Server::is_running() const
  1261. {
  1262. return is_running_;
  1263. }
  1264. inline void Server::stop()
  1265. {
  1266. if (is_running_) {
  1267. assert(svr_sock_ != INVALID_SOCKET);
  1268. auto sock = svr_sock_;
  1269. svr_sock_ = INVALID_SOCKET;
  1270. detail::shutdown_socket(sock);
  1271. detail::close_socket(sock);
  1272. }
  1273. }
  1274. inline bool Server::parse_request_line(const char* s, Request& req)
  1275. {
  1276. static std::regex re("(GET|HEAD|POST|PUT|DELETE|OPTIONS) (([^?]+)(?:\\?(.+?))?) (HTTP/1\\.[01])\r\n");
  1277. std::cmatch m;
  1278. if (std::regex_match(s, m, re)) {
  1279. req.version = std::string(m[5]);
  1280. req.method = std::string(m[1]);
  1281. req.target = std::string(m[2]);
  1282. req.path = detail::decode_url(m[3]);
  1283. // Parse query text
  1284. auto len = std::distance(m[4].first, m[4].second);
  1285. if (len > 0) {
  1286. detail::parse_query_text(m[4], req.params);
  1287. }
  1288. return true;
  1289. }
  1290. return false;
  1291. }
  1292. inline void Server::write_response(Stream& strm, bool last_connection, const Request& req, Response& res)
  1293. {
  1294. assert(res.status != -1);
  1295. if (400 <= res.status && error_handler_) {
  1296. error_handler_(req, res);
  1297. }
  1298. // Response line
  1299. strm.write_format("HTTP/1.1 %d %s\r\n",
  1300. res.status,
  1301. detail::status_message(res.status));
  1302. // Headers
  1303. if (last_connection ||
  1304. req.get_header_value("Connection") == "close") {
  1305. res.set_header("Connection", "close");
  1306. }
  1307. if (!last_connection &&
  1308. req.get_header_value("Connection") == "Keep-Alive") {
  1309. res.set_header("Connection", "Keep-Alive");
  1310. }
  1311. if (!res.body.empty()) {
  1312. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  1313. // TODO: 'Accpet-Encoding' has gzip, not gzip;q=0
  1314. const auto& encodings = req.get_header_value("Accept-Encoding");
  1315. if (encodings.find("gzip") != std::string::npos &&
  1316. detail::can_compress(res.get_header_value("Content-Type"))) {
  1317. detail::compress(res.body);
  1318. res.set_header("Content-Encoding", "gzip");
  1319. }
  1320. #endif
  1321. if (!res.has_header("Content-Type")) {
  1322. res.set_header("Content-Type", "text/plain");
  1323. }
  1324. auto length = std::to_string(res.body.size());
  1325. res.set_header("Content-Length", length.c_str());
  1326. } else if (res.streamcb) {
  1327. // Streamed response
  1328. bool chunked_response = !res.has_header("Content-Length");
  1329. if (chunked_response)
  1330. res.set_header("Transfer-Encoding", "chunked");
  1331. }
  1332. detail::write_headers(strm, res);
  1333. // Body
  1334. if (req.method != "HEAD") {
  1335. if (!res.body.empty()) {
  1336. strm.write(res.body.c_str(), res.body.size());
  1337. } else if (res.streamcb) {
  1338. bool chunked_response = !res.has_header("Content-Length");
  1339. uint64_t offset = 0;
  1340. bool data_available = true;
  1341. while (data_available) {
  1342. std::string chunk = res.streamcb(offset);
  1343. offset += chunk.size();
  1344. data_available = !chunk.empty();
  1345. // Emit chunked response header and footer for each chunk
  1346. if (chunked_response)
  1347. chunk = detail::from_i_to_hex(chunk.size()) + "\r\n" + chunk + "\r\n";
  1348. if (strm.write(chunk.c_str(), chunk.size()) < 0)
  1349. break; // Stop on error
  1350. }
  1351. }
  1352. }
  1353. // Log
  1354. if (logger_) {
  1355. logger_(req, res);
  1356. }
  1357. }
  1358. inline bool Server::handle_file_request(Request& req, Response& res)
  1359. {
  1360. if (!base_dir_.empty() && detail::is_valid_path(req.path)) {
  1361. std::string path = base_dir_ + req.path;
  1362. if (!path.empty() && path.back() == '/') {
  1363. path += "index.html";
  1364. }
  1365. if (detail::is_file(path)) {
  1366. detail::read_file(path, res.body);
  1367. auto type = detail::find_content_type(path);
  1368. if (type) {
  1369. res.set_header("Content-Type", type);
  1370. }
  1371. res.status = 200;
  1372. return true;
  1373. }
  1374. }
  1375. return false;
  1376. }
  1377. inline socket_t Server::create_server_socket(const char* host, int port, int socket_flags) const
  1378. {
  1379. return detail::create_socket(host, port,
  1380. [](socket_t sock, struct addrinfo& ai) -> bool {
  1381. if (::bind(sock, ai.ai_addr, ai.ai_addrlen)) {
  1382. return false;
  1383. }
  1384. if (::listen(sock, 5)) { // Listen through 5 channels
  1385. return false;
  1386. }
  1387. return true;
  1388. }, socket_flags);
  1389. }
  1390. inline int Server::bind_internal(const char* host, int port, int socket_flags)
  1391. {
  1392. if (!is_valid()) {
  1393. return -1;
  1394. }
  1395. svr_sock_ = create_server_socket(host, port, socket_flags);
  1396. if (svr_sock_ == INVALID_SOCKET) {
  1397. return -1;
  1398. }
  1399. if (port == 0) {
  1400. struct sockaddr_storage address;
  1401. socklen_t len = sizeof(address);
  1402. if (getsockname(svr_sock_, reinterpret_cast<struct sockaddr *>(&address), &len) == -1) {
  1403. return -1;
  1404. }
  1405. if (address.ss_family == AF_INET) {
  1406. return ntohs(reinterpret_cast<struct sockaddr_in*>(&address)->sin_port);
  1407. } else if (address.ss_family == AF_INET6) {
  1408. return ntohs(reinterpret_cast<struct sockaddr_in6*>(&address)->sin6_port);
  1409. } else {
  1410. return -1;
  1411. }
  1412. } else {
  1413. return port;
  1414. }
  1415. }
  1416. inline bool Server::listen_internal()
  1417. {
  1418. auto ret = true;
  1419. is_running_ = true;
  1420. for (;;) {
  1421. auto val = detail::select_read(svr_sock_, 0, 100000);
  1422. if (val == 0) { // Timeout
  1423. if (svr_sock_ == INVALID_SOCKET) {
  1424. // The server socket was closed by 'stop' method.
  1425. break;
  1426. }
  1427. continue;
  1428. }
  1429. socket_t sock = accept(svr_sock_, NULL, NULL);
  1430. if (sock == INVALID_SOCKET) {
  1431. if (svr_sock_ != INVALID_SOCKET) {
  1432. detail::close_socket(svr_sock_);
  1433. ret = false;
  1434. } else {
  1435. ; // The server socket was closed by user.
  1436. }
  1437. break;
  1438. }
  1439. // TODO: Use thread pool...
  1440. std::thread([=]() {
  1441. {
  1442. std::lock_guard<std::mutex> guard(running_threads_mutex_);
  1443. running_threads_++;
  1444. }
  1445. read_and_close_socket(sock);
  1446. {
  1447. std::lock_guard<std::mutex> guard(running_threads_mutex_);
  1448. running_threads_--;
  1449. }
  1450. }).detach();
  1451. }
  1452. // TODO: Use thread pool...
  1453. for (;;) {
  1454. std::this_thread::sleep_for(std::chrono::milliseconds(10));
  1455. std::lock_guard<std::mutex> guard(running_threads_mutex_);
  1456. if (!running_threads_) {
  1457. break;
  1458. }
  1459. }
  1460. is_running_ = false;
  1461. return ret;
  1462. }
  1463. inline bool Server::routing(Request& req, Response& res)
  1464. {
  1465. if (req.method == "GET" && handle_file_request(req, res)) {
  1466. return true;
  1467. }
  1468. if (req.method == "GET" || req.method == "HEAD") {
  1469. return dispatch_request(req, res, get_handlers_);
  1470. } else if (req.method == "POST") {
  1471. return dispatch_request(req, res, post_handlers_);
  1472. } else if (req.method == "PUT") {
  1473. return dispatch_request(req, res, put_handlers_);
  1474. } else if (req.method == "DELETE") {
  1475. return dispatch_request(req, res, delete_handlers_);
  1476. } else if (req.method == "OPTIONS") {
  1477. return dispatch_request(req, res, options_handlers_);
  1478. }
  1479. return false;
  1480. }
  1481. inline bool Server::dispatch_request(Request& req, Response& res, Handlers& handlers)
  1482. {
  1483. for (const auto& x: handlers) {
  1484. const auto& pattern = x.first;
  1485. const auto& handler = x.second;
  1486. if (std::regex_match(req.path, req.matches, pattern)) {
  1487. handler(req, res);
  1488. return true;
  1489. }
  1490. }
  1491. return false;
  1492. }
  1493. inline bool Server::process_request(Stream& strm, bool last_connection, bool& connection_close)
  1494. {
  1495. const auto bufsiz = 2048;
  1496. char buf[bufsiz];
  1497. detail::stream_line_reader reader(strm, buf, bufsiz);
  1498. // Connection has been closed on client
  1499. if (!reader.getline()) {
  1500. return false;
  1501. }
  1502. Request req;
  1503. Response res;
  1504. res.version = "HTTP/1.1";
  1505. // Request line and headers
  1506. if (!parse_request_line(reader.ptr(), req) || !detail::read_headers(strm, req.headers)) {
  1507. res.status = 400;
  1508. write_response(strm, last_connection, req, res);
  1509. return true;
  1510. }
  1511. if (req.get_header_value("Connection") == "close") {
  1512. connection_close = true;
  1513. }
  1514. req.set_header("REMOTE_ADDR", strm.get_remote_addr().c_str());
  1515. // Body
  1516. if (req.method == "POST" || req.method == "PUT") {
  1517. if (!detail::read_content(strm, req)) {
  1518. res.status = 400;
  1519. write_response(strm, last_connection, req, res);
  1520. return true;
  1521. }
  1522. const auto& content_type = req.get_header_value("Content-Type");
  1523. if (req.get_header_value("Content-Encoding") == "gzip") {
  1524. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  1525. detail::decompress(req.body);
  1526. #else
  1527. res.status = 415;
  1528. write_response(strm, last_connection, req, res);
  1529. return true;
  1530. #endif
  1531. }
  1532. if (!content_type.find("application/x-www-form-urlencoded")) {
  1533. detail::parse_query_text(req.body, req.params);
  1534. } else if(!content_type.find("multipart/form-data")) {
  1535. std::string boundary;
  1536. if (!detail::parse_multipart_boundary(content_type, boundary) ||
  1537. !detail::parse_multipart_formdata(boundary, req.body, req.files)) {
  1538. res.status = 400;
  1539. write_response(strm, last_connection, req, res);
  1540. return true;
  1541. }
  1542. }
  1543. }
  1544. if (routing(req, res)) {
  1545. if (res.status == -1) {
  1546. res.status = 200;
  1547. }
  1548. } else {
  1549. res.status = 404;
  1550. }
  1551. write_response(strm, last_connection, req, res);
  1552. return true;
  1553. }
  1554. inline bool Server::is_valid() const
  1555. {
  1556. return true;
  1557. }
  1558. inline bool Server::read_and_close_socket(socket_t sock)
  1559. {
  1560. return detail::read_and_close_socket(
  1561. sock,
  1562. keep_alive_max_count_,
  1563. [this](Stream& strm, bool last_connection, bool& connection_close) {
  1564. return process_request(strm, last_connection, connection_close);
  1565. });
  1566. }
  1567. // HTTP client implementation
  1568. inline Client::Client(
  1569. const char* host, int port, time_t timeout_sec)
  1570. : host_(host)
  1571. , port_(port)
  1572. , timeout_sec_(timeout_sec)
  1573. , host_and_port_(host_ + ":" + std::to_string(port_))
  1574. {
  1575. }
  1576. inline Client::~Client()
  1577. {
  1578. }
  1579. inline bool Client::is_valid() const
  1580. {
  1581. return true;
  1582. }
  1583. inline socket_t Client::create_client_socket() const
  1584. {
  1585. return detail::create_socket(host_.c_str(), port_,
  1586. [=](socket_t sock, struct addrinfo& ai) -> bool {
  1587. detail::set_nonblocking(sock, true);
  1588. auto ret = connect(sock, ai.ai_addr, ai.ai_addrlen);
  1589. if (ret < 0) {
  1590. if (detail::is_connection_error() ||
  1591. !detail::wait_until_socket_is_ready(sock, timeout_sec_, 0)) {
  1592. detail::close_socket(sock);
  1593. return false;
  1594. }
  1595. }
  1596. detail::set_nonblocking(sock, false);
  1597. return true;
  1598. });
  1599. }
  1600. inline bool Client::read_response_line(Stream& strm, Response& res)
  1601. {
  1602. const auto bufsiz = 2048;
  1603. char buf[bufsiz];
  1604. detail::stream_line_reader reader(strm, buf, bufsiz);
  1605. if (!reader.getline()) {
  1606. return false;
  1607. }
  1608. const static std::regex re("(HTTP/1\\.[01]) (\\d+?) .+\r\n");
  1609. std::cmatch m;
  1610. if (std::regex_match(reader.ptr(), m, re)) {
  1611. res.version = std::string(m[1]);
  1612. res.status = std::stoi(std::string(m[2]));
  1613. }
  1614. return true;
  1615. }
  1616. inline bool Client::send(Request& req, Response& res)
  1617. {
  1618. if (req.path.empty()) {
  1619. return false;
  1620. }
  1621. auto sock = create_client_socket();
  1622. if (sock == INVALID_SOCKET) {
  1623. return false;
  1624. }
  1625. return read_and_close_socket(sock, req, res);
  1626. }
  1627. inline void Client::write_request(Stream& strm, Request& req)
  1628. {
  1629. auto path = detail::encode_url(req.path);
  1630. // Request line
  1631. strm.write_format("%s %s HTTP/1.1\r\n",
  1632. req.method.c_str(),
  1633. path.c_str());
  1634. // Headers
  1635. req.set_header("Host", host_and_port_.c_str());
  1636. if (!req.has_header("Accept")) {
  1637. req.set_header("Accept", "*/*");
  1638. }
  1639. if (!req.has_header("User-Agent")) {
  1640. req.set_header("User-Agent", "cpp-httplib/0.2");
  1641. }
  1642. // TODO: Support KeepAlive connection
  1643. // if (!req.has_header("Connection")) {
  1644. req.set_header("Connection", "close");
  1645. // }
  1646. if (req.body.empty()) {
  1647. if (req.method == "POST" || req.method == "PUT") {
  1648. req.set_header("Content-Length", "0");
  1649. }
  1650. } else {
  1651. if (!req.has_header("Content-Type")) {
  1652. req.set_header("Content-Type", "text/plain");
  1653. }
  1654. auto length = std::to_string(req.body.size());
  1655. req.set_header("Content-Length", length.c_str());
  1656. }
  1657. detail::write_headers(strm, req);
  1658. // Body
  1659. if (!req.body.empty()) {
  1660. if (req.get_header_value("Content-Type") == "application/x-www-form-urlencoded") {
  1661. auto str = detail::encode_url(req.body);
  1662. strm.write(str.c_str(), str.size());
  1663. } else {
  1664. strm.write(req.body.c_str(), req.body.size());
  1665. }
  1666. }
  1667. }
  1668. inline bool Client::process_request(Stream& strm, Request& req, Response& res, bool& connection_close)
  1669. {
  1670. // Send request
  1671. write_request(strm, req);
  1672. // Receive response and headers
  1673. if (!read_response_line(strm, res) || !detail::read_headers(strm, res.headers)) {
  1674. return false;
  1675. }
  1676. if (res.get_header_value("Connection") == "close" || res.version == "HTTP/1.0") {
  1677. connection_close = true;
  1678. }
  1679. // Body
  1680. if (req.method != "HEAD") {
  1681. if (!detail::read_content(strm, res, req.progress)) {
  1682. return false;
  1683. }
  1684. if (res.get_header_value("Content-Encoding") == "gzip") {
  1685. #ifdef CPPHTTPLIB_ZLIB_SUPPORT
  1686. detail::decompress(res.body);
  1687. #else
  1688. return false;
  1689. #endif
  1690. }
  1691. }
  1692. return true;
  1693. }
  1694. inline bool Client::read_and_close_socket(socket_t sock, Request& req, Response& res)
  1695. {
  1696. return detail::read_and_close_socket(
  1697. sock,
  1698. 0,
  1699. [&](Stream& strm, bool /*last_connection*/, bool& connection_close) {
  1700. return process_request(strm, req, res, connection_close);
  1701. });
  1702. }
  1703. inline std::shared_ptr<Response> Client::Get(const char* path, Progress progress)
  1704. {
  1705. return Get(path, Headers(), progress);
  1706. }
  1707. inline std::shared_ptr<Response> Client::Get(const char* path, const Headers& headers, Progress progress)
  1708. {
  1709. Request req;
  1710. req.method = "GET";
  1711. req.path = path;
  1712. req.headers = headers;
  1713. req.progress = progress;
  1714. auto res = std::make_shared<Response>();
  1715. return send(req, *res) ? res : nullptr;
  1716. }
  1717. inline std::shared_ptr<Response> Client::Head(const char* path)
  1718. {
  1719. return Head(path, Headers());
  1720. }
  1721. inline std::shared_ptr<Response> Client::Head(const char* path, const Headers& headers)
  1722. {
  1723. Request req;
  1724. req.method = "HEAD";
  1725. req.headers = headers;
  1726. req.path = path;
  1727. auto res = std::make_shared<Response>();
  1728. return send(req, *res) ? res : nullptr;
  1729. }
  1730. inline std::shared_ptr<Response> Client::Post(
  1731. const char* path, const std::string& body, const char* content_type)
  1732. {
  1733. return Post(path, Headers(), body, content_type);
  1734. }
  1735. inline std::shared_ptr<Response> Client::Post(
  1736. const char* path, const Headers& headers, const std::string& body, const char* content_type)
  1737. {
  1738. Request req;
  1739. req.method = "POST";
  1740. req.headers = headers;
  1741. req.path = path;
  1742. req.headers.emplace("Content-Type", content_type);
  1743. req.body = body;
  1744. auto res = std::make_shared<Response>();
  1745. return send(req, *res) ? res : nullptr;
  1746. }
  1747. inline std::shared_ptr<Response> Client::Post(const char* path, const Params& params)
  1748. {
  1749. return Post(path, Headers(), params);
  1750. }
  1751. inline std::shared_ptr<Response> Client::Post(const char* path, const Headers& headers, const Params& params)
  1752. {
  1753. std::string query;
  1754. for (auto it = params.begin(); it != params.end(); ++it) {
  1755. if (it != params.begin()) {
  1756. query += "&";
  1757. }
  1758. query += it->first;
  1759. query += "=";
  1760. query += it->second;
  1761. }
  1762. return Post(path, headers, query, "application/x-www-form-urlencoded");
  1763. }
  1764. inline std::shared_ptr<Response> Client::Put(
  1765. const char* path, const std::string& body, const char* content_type)
  1766. {
  1767. return Put(path, Headers(), body, content_type);
  1768. }
  1769. inline std::shared_ptr<Response> Client::Put(
  1770. const char* path, const Headers& headers, const std::string& body, const char* content_type)
  1771. {
  1772. Request req;
  1773. req.method = "PUT";
  1774. req.headers = headers;
  1775. req.path = path;
  1776. req.headers.emplace("Content-Type", content_type);
  1777. req.body = body;
  1778. auto res = std::make_shared<Response>();
  1779. return send(req, *res) ? res : nullptr;
  1780. }
  1781. inline std::shared_ptr<Response> Client::Delete(const char* path)
  1782. {
  1783. return Delete(path, Headers());
  1784. }
  1785. inline std::shared_ptr<Response> Client::Delete(const char* path, const Headers& headers)
  1786. {
  1787. Request req;
  1788. req.method = "DELETE";
  1789. req.path = path;
  1790. req.headers = headers;
  1791. auto res = std::make_shared<Response>();
  1792. return send(req, *res) ? res : nullptr;
  1793. }
  1794. inline std::shared_ptr<Response> Client::Options(const char* path)
  1795. {
  1796. return Options(path, Headers());
  1797. }
  1798. inline std::shared_ptr<Response> Client::Options(const char* path, const Headers& headers)
  1799. {
  1800. Request req;
  1801. req.method = "OPTIONS";
  1802. req.path = path;
  1803. req.headers = headers;
  1804. auto res = std::make_shared<Response>();
  1805. return send(req, *res) ? res : nullptr;
  1806. }
  1807. /*
  1808. * SSL Implementation
  1809. */
  1810. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  1811. namespace detail {
  1812. template <typename U, typename V, typename T>
  1813. inline bool read_and_close_socket_ssl(
  1814. socket_t sock, size_t keep_alive_max_count,
  1815. // TODO: OpenSSL 1.0.2 occasionally crashes...
  1816. // The upcoming 1.1.0 is going to be thread safe.
  1817. SSL_CTX* ctx, std::mutex& ctx_mutex,
  1818. U SSL_connect_or_accept, V setup,
  1819. T callback)
  1820. {
  1821. SSL* ssl = nullptr;
  1822. {
  1823. std::lock_guard<std::mutex> guard(ctx_mutex);
  1824. ssl = SSL_new(ctx);
  1825. if (!ssl) {
  1826. return false;
  1827. }
  1828. }
  1829. auto bio = BIO_new_socket(sock, BIO_NOCLOSE);
  1830. SSL_set_bio(ssl, bio, bio);
  1831. setup(ssl);
  1832. SSL_connect_or_accept(ssl);
  1833. bool ret = false;
  1834. if (keep_alive_max_count > 0) {
  1835. auto count = keep_alive_max_count;
  1836. while (count > 0 &&
  1837. detail::select_read(sock,
  1838. CPPHTTPLIB_KEEPALIVE_TIMEOUT_SECOND,
  1839. CPPHTTPLIB_KEEPALIVE_TIMEOUT_USECOND) > 0) {
  1840. SSLSocketStream strm(sock, ssl);
  1841. auto last_connection = count == 1;
  1842. auto connection_close = false;
  1843. ret = callback(strm, last_connection, connection_close);
  1844. if (!ret || connection_close) {
  1845. break;
  1846. }
  1847. count--;
  1848. }
  1849. } else {
  1850. SSLSocketStream strm(sock, ssl);
  1851. auto dummy_connection_close = false;
  1852. ret = callback(strm, true, dummy_connection_close);
  1853. }
  1854. SSL_shutdown(ssl);
  1855. {
  1856. std::lock_guard<std::mutex> guard(ctx_mutex);
  1857. SSL_free(ssl);
  1858. }
  1859. close_socket(sock);
  1860. return ret;
  1861. }
  1862. class SSLInit {
  1863. public:
  1864. SSLInit() {
  1865. SSL_load_error_strings();
  1866. SSL_library_init();
  1867. }
  1868. };
  1869. static SSLInit sslinit_;
  1870. } // namespace detail
  1871. // SSL socket stream implementation
  1872. inline SSLSocketStream::SSLSocketStream(socket_t sock, SSL* ssl)
  1873. : sock_(sock), ssl_(ssl)
  1874. {
  1875. }
  1876. inline SSLSocketStream::~SSLSocketStream()
  1877. {
  1878. }
  1879. inline int SSLSocketStream::read(char* ptr, size_t size)
  1880. {
  1881. return SSL_read(ssl_, ptr, size);
  1882. }
  1883. inline int SSLSocketStream::write(const char* ptr, size_t size)
  1884. {
  1885. return SSL_write(ssl_, ptr, size);
  1886. }
  1887. inline int SSLSocketStream::write(const char* ptr)
  1888. {
  1889. return write(ptr, strlen(ptr));
  1890. }
  1891. inline std::string SSLSocketStream::get_remote_addr() {
  1892. return detail::get_remote_addr(sock_);
  1893. }
  1894. // SSL HTTP server implementation
  1895. inline SSLServer::SSLServer(const char* cert_path, const char* private_key_path)
  1896. {
  1897. ctx_ = SSL_CTX_new(SSLv23_server_method());
  1898. if (ctx_) {
  1899. SSL_CTX_set_options(ctx_,
  1900. SSL_OP_ALL | SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 |
  1901. SSL_OP_NO_COMPRESSION |
  1902. SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION);
  1903. // auto ecdh = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
  1904. // SSL_CTX_set_tmp_ecdh(ctx_, ecdh);
  1905. // EC_KEY_free(ecdh);
  1906. if (SSL_CTX_use_certificate_file(ctx_, cert_path, SSL_FILETYPE_PEM) != 1 ||
  1907. SSL_CTX_use_PrivateKey_file(ctx_, private_key_path, SSL_FILETYPE_PEM) != 1) {
  1908. SSL_CTX_free(ctx_);
  1909. ctx_ = nullptr;
  1910. }
  1911. }
  1912. }
  1913. inline SSLServer::~SSLServer()
  1914. {
  1915. if (ctx_) {
  1916. SSL_CTX_free(ctx_);
  1917. }
  1918. }
  1919. inline bool SSLServer::is_valid() const
  1920. {
  1921. return ctx_;
  1922. }
  1923. inline bool SSLServer::read_and_close_socket(socket_t sock)
  1924. {
  1925. return detail::read_and_close_socket_ssl(
  1926. sock,
  1927. keep_alive_max_count_,
  1928. ctx_, ctx_mutex_,
  1929. SSL_accept,
  1930. [](SSL* /*ssl*/) {},
  1931. [this](Stream& strm, bool last_connection, bool& connection_close) {
  1932. return process_request(strm, last_connection, connection_close);
  1933. });
  1934. }
  1935. // SSL HTTP client implementation
  1936. inline SSLClient::SSLClient(const char* host, int port, time_t timeout_sec)
  1937. : Client(host, port, timeout_sec)
  1938. {
  1939. ctx_ = SSL_CTX_new(SSLv23_client_method());
  1940. }
  1941. inline SSLClient::~SSLClient()
  1942. {
  1943. if (ctx_) {
  1944. SSL_CTX_free(ctx_);
  1945. }
  1946. }
  1947. inline bool SSLClient::is_valid() const
  1948. {
  1949. return ctx_;
  1950. }
  1951. inline bool SSLClient::read_and_close_socket(socket_t sock, Request& req, Response& res)
  1952. {
  1953. return is_valid() && detail::read_and_close_socket_ssl(
  1954. sock, 0,
  1955. ctx_, ctx_mutex_,
  1956. SSL_connect,
  1957. [&](SSL* ssl) {
  1958. SSL_set_tlsext_host_name(ssl, host_.c_str());
  1959. },
  1960. [&](Stream& strm, bool /*last_connection*/, bool& connection_close) {
  1961. return process_request(strm, req, res, connection_close);
  1962. });
  1963. }
  1964. #endif
  1965. } // namespace httplib
  1966. #endif
  1967. // vim: et ts=4 sw=4 cin cino={1s ff=unix