test-server-v2.0.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. /*
  2. * libwebsockets-test-server-v2.0 - libwebsockets test implementation
  3. *
  4. * Copyright (C) 2010-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 <libwebsockets.h>
  21. #include <getopt.h>
  22. #ifndef WIN32
  23. #include <syslog.h>
  24. #endif
  25. int debug_level = 7;
  26. struct lws_context *context;
  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. * This test server is ONLY this .c file, it's radically simpler than the
  41. * pre-v2.0 test servers. For example it has no user callback content or
  42. * defines any protocols.
  43. *
  44. * To achieve that, it uses the LWS protocol plugins. Those in turn
  45. * use libuv. So you must configure with LWS_WITH_PLUGINS (which implies
  46. * libuv) to get this to build.
  47. *
  48. * You can find the individual protocol plugin sources in ../plugins
  49. */
  50. void sighandler(int sig)
  51. {
  52. lws_cancel_service(context);
  53. }
  54. static const struct lws_extension exts[] = {
  55. {
  56. "permessage-deflate",
  57. lws_extension_callback_pm_deflate,
  58. "permessage-deflate"
  59. },
  60. {
  61. "deflate-frame",
  62. lws_extension_callback_pm_deflate,
  63. "deflate_frame"
  64. },
  65. { NULL, NULL, NULL /* terminator */ }
  66. };
  67. /*
  68. * mount a handler for a section of the URL space
  69. */
  70. static const struct lws_http_mount mount_post = {
  71. NULL, /* linked-list pointer to next*/
  72. "/formtest", /* mountpoint in URL namespace on this vhost */
  73. "protocol-post-demo", /* handler */
  74. NULL, /* default filename if none given */
  75. NULL,
  76. NULL,
  77. NULL,
  78. NULL,
  79. 0,
  80. 0,
  81. 0,
  82. 0,
  83. 0,
  84. 0,
  85. LWSMPRO_CALLBACK, /* origin points to a callback */
  86. 9, /* strlen("/formtest"), ie length of the mountpoint */
  87. };
  88. /*
  89. * mount a filesystem directory into the URL space at /
  90. * point it to our /usr/share directory with our assets in
  91. * stuff from here is autoserved by the library
  92. */
  93. static const struct lws_http_mount mount = {
  94. (struct lws_http_mount *)&mount_post, /* linked-list pointer to next*/
  95. "/", /* mountpoint in URL namespace on this vhost */
  96. LOCAL_RESOURCE_PATH, /* where to go on the filesystem for that */
  97. "test.html", /* default filename if none given */
  98. NULL,
  99. NULL,
  100. NULL,
  101. NULL,
  102. 0,
  103. 0,
  104. 0,
  105. 0,
  106. 0,
  107. 0,
  108. LWSMPRO_FILE, /* mount type is a directory in a filesystem */
  109. 1, /* strlen("/"), ie length of the mountpoint */
  110. };
  111. /*
  112. * this sets a per-vhost, per-protocol option name:value pair
  113. * the effect is to set this protocol to be the default one for the vhost,
  114. * ie, selected if no Protocol: header is sent with the ws upgrade.
  115. */
  116. static const struct lws_protocol_vhost_options pvo_opt = {
  117. NULL,
  118. NULL,
  119. "default",
  120. "1"
  121. };
  122. /*
  123. * We must enable the plugin protocols we want into our vhost with a
  124. * linked-list. We can also give the plugin per-vhost options here.
  125. */
  126. static const struct lws_protocol_vhost_options pvo_3 = {
  127. NULL,
  128. NULL,
  129. "protocol-post-demo",
  130. "" /* ignored, just matches the protocol name above */
  131. };
  132. static const struct lws_protocol_vhost_options pvo_2 = {
  133. &pvo_3,
  134. NULL,
  135. "lws-status",
  136. "" /* ignored, just matches the protocol name above */
  137. };
  138. static const struct lws_protocol_vhost_options pvo_1 = {
  139. &pvo_2,
  140. NULL,
  141. "lws-mirror-protocol",
  142. ""
  143. };
  144. static const struct lws_protocol_vhost_options pvo = {
  145. &pvo_1,
  146. &pvo_opt,
  147. "dumb-increment-protocol",
  148. ""
  149. };
  150. static void signal_cb(uv_signal_t *watcher, int signum)
  151. {
  152. lwsl_err("Signal %d caught, exiting...\n", watcher->signum);
  153. switch (watcher->signum) {
  154. case SIGTERM:
  155. case SIGINT:
  156. break;
  157. default:
  158. signal(SIGABRT, SIG_DFL);
  159. abort();
  160. break;
  161. }
  162. lws_libuv_stop(context);
  163. }
  164. static const struct option options[] = {
  165. { "help", no_argument, NULL, 'h' },
  166. { "debug", required_argument, NULL, 'd' },
  167. { "port", required_argument, NULL, 'p' },
  168. { "ssl", no_argument, NULL, 's' },
  169. { "allow-non-ssl", no_argument, NULL, 'a' },
  170. { "interface", required_argument, NULL, 'i' },
  171. { "ssl-cert", required_argument, NULL, 'C' },
  172. { "ssl-key", required_argument, NULL, 'K' },
  173. { "ssl-ca", required_argument, NULL, 'A' },
  174. #if defined(LWS_OPENSSL_SUPPORT)
  175. { "ssl-verify-client", no_argument, NULL, 'v' },
  176. #if defined(LWS_HAVE_SSL_CTX_set1_param)
  177. { "ssl-crl", required_argument, NULL, 'R' },
  178. #endif
  179. #endif
  180. #ifndef LWS_NO_DAEMONIZE
  181. { "daemonize", no_argument, NULL, 'D' },
  182. #endif
  183. { "resource_path", required_argument, NULL, 'r' },
  184. { NULL, 0, 0, 0 }
  185. };
  186. static const char * const plugin_dirs[] = {
  187. INSTALL_DATADIR"/libwebsockets-test-server/plugins/",
  188. NULL
  189. };
  190. int main(int argc, char **argv)
  191. {
  192. struct lws_context_creation_info info;
  193. char interface_name[128] = "";
  194. const char *iface = NULL;
  195. char cert_path[1024] = "";
  196. char key_path[1024] = "";
  197. char ca_path[1024] = "";
  198. int uid = -1, gid = -1;
  199. int use_ssl = 0;
  200. int opts = 0;
  201. int n = 0;
  202. #ifndef _WIN32
  203. int syslog_options = LOG_PID | LOG_PERROR;
  204. #endif
  205. #ifndef LWS_NO_DAEMONIZE
  206. int daemonize = 0;
  207. #endif
  208. /*
  209. * take care to zero down the info struct, he contains random garbaage
  210. * from the stack otherwise
  211. */
  212. memset(&info, 0, sizeof info);
  213. info.port = 7681;
  214. while (n >= 0) {
  215. n = getopt_long(argc, argv, "i:hsap:d:Dr:C:K:A:R:vu:g:",
  216. (struct option *)options, NULL);
  217. if (n < 0)
  218. continue;
  219. switch (n) {
  220. #ifndef LWS_NO_DAEMONIZE
  221. case 'D':
  222. daemonize = 1;
  223. #ifndef _WIN32
  224. syslog_options &= ~LOG_PERROR;
  225. #endif
  226. break;
  227. #endif
  228. case 'u':
  229. uid = atoi(optarg);
  230. break;
  231. case 'g':
  232. gid = atoi(optarg);
  233. break;
  234. case 'd':
  235. debug_level = atoi(optarg);
  236. break;
  237. case 's':
  238. use_ssl = 1;
  239. break;
  240. case 'a':
  241. opts |= LWS_SERVER_OPTION_ALLOW_NON_SSL_ON_SSL_PORT;
  242. break;
  243. case 'p':
  244. info.port = atoi(optarg);
  245. break;
  246. case 'i':
  247. strncpy(interface_name, optarg, sizeof interface_name);
  248. interface_name[(sizeof interface_name) - 1] = '\0';
  249. iface = interface_name;
  250. break;
  251. case 'r':
  252. resource_path = optarg;
  253. printf("Setting resource path to \"%s\"\n", resource_path);
  254. break;
  255. case 'C':
  256. strncpy(cert_path, optarg, sizeof(cert_path) - 1);
  257. cert_path[sizeof(cert_path) - 1] = '\0';
  258. break;
  259. case 'K':
  260. strncpy(key_path, optarg, sizeof(key_path) - 1);
  261. key_path[sizeof(key_path) - 1] = '\0';
  262. break;
  263. case 'A':
  264. strncpy(ca_path, optarg, sizeof(ca_path) - 1);
  265. ca_path[sizeof(ca_path) - 1] = '\0';
  266. break;
  267. #if defined(LWS_OPENSSL_SUPPORT)
  268. case 'v':
  269. use_ssl = 1;
  270. opts |= LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT;
  271. break;
  272. #if defined(LWS_USE_POLARSSL)
  273. #else
  274. #if defined(LWS_USE_MBEDTLS)
  275. #else
  276. #if defined(LWS_HAVE_SSL_CTX_set1_param)
  277. case 'R':
  278. strncpy(crl_path, optarg, sizeof(crl_path) - 1);
  279. crl_path[sizeof(crl_path) - 1] = '\0';
  280. break;
  281. #endif
  282. #endif
  283. #endif
  284. #endif
  285. case 'h':
  286. fprintf(stderr, "Usage: test-server "
  287. "[--port=<p>] [--ssl] "
  288. "[-d <log bitfield>] "
  289. "[--resource_path <path>]\n");
  290. exit(1);
  291. }
  292. }
  293. #if !defined(LWS_NO_DAEMONIZE) && !defined(WIN32)
  294. /*
  295. * normally lock path would be /var/lock/lwsts or similar, to
  296. * simplify getting started without having to take care about
  297. * permissions or running as root, set to /tmp/.lwsts-lock
  298. */
  299. if (daemonize && lws_daemonize("/tmp/.lwsts-lock")) {
  300. fprintf(stderr, "Failed to daemonize\n");
  301. return 10;
  302. }
  303. #endif
  304. signal(SIGINT, sighandler);
  305. #ifndef _WIN32
  306. /* we will only try to log things according to our debug_level */
  307. setlogmask(LOG_UPTO (LOG_DEBUG));
  308. openlog("lwsts", syslog_options, LOG_DAEMON);
  309. #endif
  310. /* tell the library what debug level to emit and to send it to syslog */
  311. lws_set_log_level(debug_level, lwsl_emit_syslog);
  312. lwsl_notice("libwebsockets test server - license LGPL2.1+SLE\n");
  313. lwsl_notice("(C) Copyright 2010-2016 Andy Green <andy@warmcat.com>\n");
  314. lwsl_notice(" Using resource path \"%s\"\n", resource_path);
  315. info.iface = iface;
  316. info.protocols = NULL; /* all protocols from lib / plugins */
  317. info.ssl_cert_filepath = NULL;
  318. info.ssl_private_key_filepath = NULL;
  319. info.gid = gid;
  320. info.uid = uid;
  321. info.max_http_header_pool = 16;
  322. info.options = opts |
  323. LWS_SERVER_OPTION_VALIDATE_UTF8 |
  324. LWS_SERVER_OPTION_LIBUV; /* plugins require this */
  325. if (use_ssl) {
  326. if (strlen(resource_path) > sizeof(cert_path) - 32) {
  327. lwsl_err("resource path too long\n");
  328. return -1;
  329. }
  330. if (!cert_path[0])
  331. sprintf(cert_path, "%s/libwebsockets-test-server.pem",
  332. resource_path);
  333. if (strlen(resource_path) > sizeof(key_path) - 32) {
  334. lwsl_err("resource path too long\n");
  335. return -1;
  336. }
  337. if (!key_path[0])
  338. sprintf(key_path, "%s/libwebsockets-test-server.key.pem",
  339. resource_path);
  340. info.ssl_cert_filepath = cert_path;
  341. info.ssl_private_key_filepath = key_path;
  342. if (ca_path[0])
  343. info.ssl_ca_filepath = ca_path;
  344. /* redirect guys coming on http */
  345. info.options |= LWS_SERVER_OPTION_REDIRECT_HTTP_TO_HTTPS;
  346. }
  347. info.extensions = exts;
  348. info.timeout_secs = 5;
  349. info.ssl_cipher_list = "ECDHE-ECDSA-AES256-GCM-SHA384:"
  350. "ECDHE-RSA-AES256-GCM-SHA384:"
  351. "DHE-RSA-AES256-GCM-SHA384:"
  352. "ECDHE-RSA-AES256-SHA384:"
  353. "HIGH:!aNULL:!eNULL:!EXPORT:"
  354. "!DES:!MD5:!PSK:!RC4:!HMAC_SHA1:"
  355. "!SHA1:!DHE-RSA-AES128-GCM-SHA256:"
  356. "!DHE-RSA-AES128-SHA256:"
  357. "!AES128-GCM-SHA256:"
  358. "!AES128-SHA256:"
  359. "!DHE-RSA-AES256-SHA256:"
  360. "!AES256-GCM-SHA384:"
  361. "!AES256-SHA256";
  362. /* tell lws to look for protocol plugins here */
  363. info.plugin_dirs = plugin_dirs;
  364. /* tell lws about our mount we want */
  365. info.mounts = &mount;
  366. /*
  367. * give it our linked-list of Per-Vhost Options, these control
  368. * which protocols (from plugins) are allowed to be enabled on
  369. * our vhost
  370. */
  371. info.pvo = &pvo;
  372. /*
  373. * As it is, this creates the context and a single Vhost at the same
  374. * time. You can use LWS_SERVER_OPTION_EXPLICIT_VHOSTS option above
  375. * to just create the context, and call lws_create_vhost() afterwards
  376. * multiple times with different info to get multiple listening vhosts.
  377. */
  378. context = lws_create_context(&info);
  379. if (context == NULL) {
  380. lwsl_err("libwebsocket init failed\n");
  381. return -1;
  382. }
  383. /* libuv event loop */
  384. lws_uv_sigint_cfg(context, 1, signal_cb);
  385. if (lws_uv_initloop(context, NULL, 0))
  386. lwsl_err("lws_uv_initloop failed\n");
  387. else
  388. lws_libuv_run(context, 0);
  389. /* when we decided to exit the event loop */
  390. lws_context_destroy(context);
  391. lwsl_notice("libwebsockets-test-server exited cleanly\n");
  392. #ifndef _WIN32
  393. closelog();
  394. #endif
  395. return 0;
  396. }