test-server-libev.c 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. /*
  2. * libwebsockets-test-server - libwebsockets test implementation
  3. *
  4. * Copyright (C) 2011-2016 Andy Green <andy@warmcat.com>
  5. *
  6. * This file is made available under the Creative Commons CC0 1.0
  7. * Universal Public Domain Dedication.
  8. *
  9. * The person who associated a work with this deed has dedicated
  10. * the work to the public domain by waiving all of his or her rights
  11. * to the work worldwide under copyright law, including all related
  12. * and neighboring rights, to the extent allowed by law. You can copy,
  13. * modify, distribute and perform the work, even for commercial purposes,
  14. * all without asking permission.
  15. *
  16. * The test apps are intended to be adapted for use in your code, which
  17. * may be proprietary. So unlike the library itself, they are licensed
  18. * Public Domain.
  19. */
  20. #include "test-server.h"
  21. int close_testing;
  22. int max_poll_elements;
  23. int debug_level = 7;
  24. volatile int force_exit = 0;
  25. struct lws_context *context;
  26. struct lws_plat_file_ops fops_plat;
  27. /* http server gets files from this path */
  28. #define LOCAL_RESOURCE_PATH INSTALL_DATADIR"/libwebsockets-test-server"
  29. char *resource_path = LOCAL_RESOURCE_PATH;
  30. #if defined(LWS_USE_POLARSSL)
  31. #else
  32. #if defined(LWS_USE_MBEDTLS)
  33. #else
  34. #if defined(LWS_OPENSSL_SUPPORT) && defined(LWS_HAVE_SSL_CTX_set1_param)
  35. char crl_path[1024] = "";
  36. #endif
  37. #endif
  38. #endif
  39. /*
  40. * libev dumps their hygiene problems on their users blaming compiler
  41. * http://lists.schmorp.de/pipermail/libev/2008q4/000442.html
  42. */
  43. #if EV_MINPRI == EV_MAXPRI
  44. # define _ev_set_priority(ev, pri) ((ev), (pri))
  45. #else
  46. # define _ev_set_priority(ev, pri) { \
  47. ev_watcher *evw = (ev_watcher *)(void *)ev; \
  48. evw->priority = pri; \
  49. }
  50. #endif
  51. #define _ev_init(ev,cb_) { \
  52. ev_watcher *evw = (ev_watcher *)(void *)ev; \
  53. \
  54. evw->active = evw->pending = 0; \
  55. _ev_set_priority((ev), 0); \
  56. ev_set_cb((ev), cb_); \
  57. }
  58. #define _ev_timer_init(ev, cb, after, _repeat) { \
  59. ev_watcher_time *evwt = (ev_watcher_time *)(void *)ev; \
  60. \
  61. _ev_init(ev, cb); \
  62. evwt->at = after; \
  63. (ev)->repeat = _repeat; \
  64. }
  65. /* singlethreaded version --> no locks */
  66. void test_server_lock(int care)
  67. {
  68. }
  69. void test_server_unlock(int care)
  70. {
  71. }
  72. /*
  73. * This demo server shows how to use libwebsockets for one or more
  74. * websocket protocols in the same server
  75. *
  76. * It defines the following websocket protocols:
  77. *
  78. * dumb-increment-protocol: once the socket is opened, an incrementing
  79. * ascii string is sent down it every 50ms.
  80. * If you send "reset\n" on the websocket, then
  81. * the incrementing number is reset to 0.
  82. *
  83. * lws-mirror-protocol: copies any received packet to every connection also
  84. * using this protocol, including the sender
  85. */
  86. enum demo_protocols {
  87. /* always first */
  88. PROTOCOL_HTTP = 0,
  89. PROTOCOL_DUMB_INCREMENT,
  90. PROTOCOL_LWS_MIRROR,
  91. /* always last */
  92. DEMO_PROTOCOL_COUNT
  93. };
  94. /* list of supported protocols and callbacks */
  95. static struct lws_protocols protocols[] = {
  96. /* first protocol must always be HTTP handler */
  97. {
  98. "http-only", /* name */
  99. callback_http, /* callback */
  100. sizeof (struct per_session_data__http), /* per_session_data_size */
  101. 0, /* max frame size / rx buffer */
  102. },
  103. {
  104. "dumb-increment-protocol",
  105. callback_dumb_increment,
  106. sizeof(struct per_session_data__dumb_increment),
  107. 10,
  108. },
  109. {
  110. "lws-mirror-protocol",
  111. callback_lws_mirror,
  112. sizeof(struct per_session_data__lws_mirror),
  113. 128,
  114. },
  115. {
  116. "lws-status",
  117. callback_lws_status,
  118. sizeof(struct per_session_data__lws_status),
  119. 128,
  120. },
  121. { NULL, NULL, 0, 0 } /* terminator */
  122. };
  123. static const struct lws_extension exts[] = {
  124. {
  125. "permessage-deflate",
  126. lws_extension_callback_pm_deflate,
  127. "permessage-deflate; client_no_context_takeover; client_max_window_bits"
  128. },
  129. {
  130. "deflate-frame",
  131. lws_extension_callback_pm_deflate,
  132. "deflate_frame"
  133. },
  134. { NULL, NULL, NULL /* terminator */ }
  135. };
  136. /* this shows how to override the lws file operations. You don't need
  137. * to do any of this unless you have a reason (eg, want to serve
  138. * compressed files without decompressing the whole archive)
  139. */
  140. static lws_filefd_type
  141. test_server_fops_open(struct lws *wsi, const char *filename,
  142. unsigned long *filelen, int flags)
  143. {
  144. lws_filefd_type n;
  145. /* call through to original platform implementation */
  146. n = fops_plat.open(wsi, filename, filelen, flags);
  147. lwsl_notice("%s: opening %s, ret %ld, len %lu\n", __func__, filename,
  148. (long)n, *filelen);
  149. return n;
  150. }
  151. void signal_cb(struct ev_loop *loop, struct ev_signal* watcher, int revents)
  152. {
  153. lwsl_notice("Signal caught, exiting...\n");
  154. force_exit = 1;
  155. switch (watcher->signum) {
  156. case SIGTERM:
  157. case SIGINT:
  158. ev_break(loop, EVBREAK_ALL);
  159. break;
  160. default:
  161. signal(SIGABRT, SIG_DFL);
  162. abort();
  163. break;
  164. }
  165. }
  166. static void
  167. ev_timeout_cb (EV_P_ ev_timer *w, int revents)
  168. {
  169. lws_callback_on_writable_all_protocol(context,
  170. &protocols[PROTOCOL_DUMB_INCREMENT]);
  171. }
  172. static struct option options[] = {
  173. { "help", no_argument, NULL, 'h' },
  174. { "debug", required_argument, NULL, 'd' },
  175. { "port", required_argument, NULL, 'p' },
  176. { "ssl", no_argument, NULL, 's' },
  177. { "allow-non-ssl", no_argument, NULL, 'a' },
  178. { "interface", required_argument, NULL, 'i' },
  179. { "closetest", no_argument, NULL, 'c' },
  180. { "libev", no_argument, NULL, 'e' },
  181. #ifndef LWS_NO_DAEMONIZE
  182. { "daemonize", no_argument, NULL, 'D' },
  183. #endif
  184. { "resource_path", required_argument, NULL, 'r' },
  185. { NULL, 0, 0, 0 }
  186. };
  187. int main(int argc, char **argv)
  188. {
  189. int sigs[] = { SIGINT, SIGKILL, SIGTERM, SIGSEGV, SIGFPE };
  190. struct ev_signal signals[ARRAY_SIZE(sigs)];
  191. struct ev_loop *loop = ev_default_loop(0);
  192. struct lws_context_creation_info info;
  193. char interface_name[128] = "";
  194. const char *iface = NULL;
  195. ev_timer timeout_watcher;
  196. char cert_path[1024];
  197. char key_path[1024];
  198. int use_ssl = 0;
  199. int opts = 0;
  200. int n = 0;
  201. #ifndef _WIN32
  202. int syslog_options = LOG_PID | LOG_PERROR;
  203. #endif
  204. #ifndef LWS_NO_DAEMONIZE
  205. int daemonize = 0;
  206. #endif
  207. /*
  208. * take care to zero down the info struct, he contains random garbaage
  209. * from the stack otherwise
  210. */
  211. memset(&info, 0, sizeof info);
  212. info.port = 7681;
  213. while (n >= 0) {
  214. n = getopt_long(argc, argv, "eci:hsap:d:Dr:", options, NULL);
  215. if (n < 0)
  216. continue;
  217. switch (n) {
  218. case 'e':
  219. opts |= LWS_SERVER_OPTION_LIBEV;
  220. break;
  221. #ifndef LWS_NO_DAEMONIZE
  222. case 'D':
  223. daemonize = 1;
  224. #ifndef _WIN32
  225. syslog_options &= ~LOG_PERROR;
  226. #endif
  227. break;
  228. #endif
  229. case 'd':
  230. debug_level = atoi(optarg);
  231. break;
  232. case 's':
  233. use_ssl = 1;
  234. break;
  235. case 'a':
  236. opts |= LWS_SERVER_OPTION_ALLOW_NON_SSL_ON_SSL_PORT;
  237. break;
  238. case 'p':
  239. info.port = atoi(optarg);
  240. break;
  241. case 'i':
  242. strncpy(interface_name, optarg, sizeof interface_name);
  243. interface_name[(sizeof interface_name) - 1] = '\0';
  244. iface = interface_name;
  245. break;
  246. case 'c':
  247. close_testing = 1;
  248. fprintf(stderr, " Close testing mode -- closes on "
  249. "client after 50 dumb increments"
  250. "and suppresses lws_mirror spam\n");
  251. break;
  252. case 'r':
  253. resource_path = optarg;
  254. printf("Setting resource path to \"%s\"\n", resource_path);
  255. break;
  256. case 'h':
  257. fprintf(stderr, "Usage: test-server "
  258. "[--port=<p>] [--ssl] "
  259. "[-d <log bitfield>] "
  260. "[--resource_path <path>]\n");
  261. exit(1);
  262. }
  263. }
  264. #if !defined(LWS_NO_DAEMONIZE) && !defined(WIN32)
  265. /*
  266. * normally lock path would be /var/lock/lwsts or similar, to
  267. * simplify getting started without having to take care about
  268. * permissions or running as root, set to /tmp/.lwsts-lock
  269. */
  270. if (daemonize && lws_daemonize("/tmp/.lwsts-lock")) {
  271. fprintf(stderr, "Failed to daemonize\n");
  272. return 1;
  273. }
  274. #endif
  275. for (n = 0; n < ARRAY_SIZE(sigs); n++) {
  276. _ev_init(&signals[n], signal_cb);
  277. ev_signal_set(&signals[n], sigs[n]);
  278. ev_signal_start(loop, &signals[n]);
  279. }
  280. #ifndef _WIN32
  281. /* we will only try to log things according to our debug_level */
  282. setlogmask(LOG_UPTO (LOG_DEBUG));
  283. openlog("lwsts", syslog_options, LOG_DAEMON);
  284. #endif
  285. /* tell the library what debug level to emit and to send it to syslog */
  286. lws_set_log_level(debug_level, lwsl_emit_syslog);
  287. lwsl_notice("libwebsockets test server libev - license LGPL2.1+SLE\n");
  288. lwsl_notice("(C) Copyright 2010-2016 Andy Green <andy@warmcat.com>\n");
  289. printf("Using resource path \"%s\"\n", resource_path);
  290. info.iface = iface;
  291. info.protocols = protocols;
  292. info.extensions = exts;
  293. info.ssl_cert_filepath = NULL;
  294. info.ssl_private_key_filepath = NULL;
  295. if (use_ssl) {
  296. if (strlen(resource_path) > sizeof(cert_path) - 32) {
  297. lwsl_err("resource path too long\n");
  298. return -1;
  299. }
  300. sprintf(cert_path, "%s/libwebsockets-test-server.pem",
  301. resource_path);
  302. if (strlen(resource_path) > sizeof(key_path) - 32) {
  303. lwsl_err("resource path too long\n");
  304. return -1;
  305. }
  306. sprintf(key_path, "%s/libwebsockets-test-server.key.pem",
  307. resource_path);
  308. info.ssl_cert_filepath = cert_path;
  309. info.ssl_private_key_filepath = key_path;
  310. opts |= LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT;
  311. }
  312. info.gid = -1;
  313. info.uid = -1;
  314. info.max_http_header_pool = 1;
  315. info.options = opts | LWS_SERVER_OPTION_LIBEV;
  316. context = lws_create_context(&info);
  317. if (context == NULL) {
  318. lwsl_err("libwebsocket init failed\n");
  319. return -1;
  320. }
  321. /*
  322. * this shows how to override the lws file operations. You don't need
  323. * to do any of this unless you have a reason (eg, want to serve
  324. * compressed files without decompressing the whole archive)
  325. */
  326. /* stash original platform fops */
  327. fops_plat = *(lws_get_fops(context));
  328. /* override the active fops */
  329. lws_get_fops(context)->open = test_server_fops_open;
  330. lws_ev_initloop(context, loop, 0);
  331. _ev_timer_init(&timeout_watcher, ev_timeout_cb, 0.05, 0.05);
  332. ev_timer_start(loop, &timeout_watcher);
  333. ev_run(loop, 0);
  334. lws_context_destroy(context);
  335. lwsl_notice("libwebsockets-test-server exited cleanly\n");
  336. #ifndef _WIN32
  337. closelog();
  338. #endif
  339. return 0;
  340. }