httplib.h 57 KB

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