server-handshake.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. /*
  2. * libwebsockets - small server side websockets and web server implementation
  3. *
  4. * Copyright (C) 2010-2013 Andy Green <andy@warmcat.com>
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation:
  9. * version 2.1 of the License.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  19. * MA 02110-1301 USA
  20. */
  21. #include "private-libwebsockets.h"
  22. #define LWS_CPYAPP(ptr, str) { strcpy(ptr, str); ptr += strlen(str); }
  23. #ifndef LWS_NO_EXTENSIONS
  24. LWS_VISIBLE int
  25. lws_extension_server_handshake(struct lws *wsi, char **p)
  26. {
  27. struct lws_context *context = wsi->context;
  28. struct lws_context_per_thread *pt = &context->pt[(int)wsi->tsi];
  29. const struct lws_extension *ext;
  30. char ext_name[128];
  31. int ext_count = 0;
  32. int more = 1;
  33. char ignore;
  34. int n, m;
  35. char *c;
  36. /*
  37. * Figure out which extensions the client has that we want to
  38. * enable on this connection, and give him back the list
  39. */
  40. if (!lws_hdr_total_length(wsi, WSI_TOKEN_EXTENSIONS))
  41. return 0;
  42. /*
  43. * break down the list of client extensions
  44. * and go through them
  45. */
  46. if (lws_hdr_copy(wsi, (char *)pt->serv_buf, context->pt_serv_buf_size,
  47. WSI_TOKEN_EXTENSIONS) < 0)
  48. return 1;
  49. c = (char *)pt->serv_buf;
  50. lwsl_parser("WSI_TOKEN_EXTENSIONS = '%s'\n", c);
  51. wsi->count_act_ext = 0;
  52. n = 0;
  53. ignore = 0;
  54. while (more) {
  55. if (*c && (*c != ',' && *c != '\t')) {
  56. if (*c == ';')
  57. ignore = 1;
  58. if (ignore || *c == ' ') {
  59. c++;
  60. continue;
  61. }
  62. ext_name[n] = *c++;
  63. if (n < sizeof(ext_name) - 1)
  64. n++;
  65. continue;
  66. }
  67. ext_name[n] = '\0';
  68. ignore = 0;
  69. if (!*c)
  70. more = 0;
  71. else {
  72. c++;
  73. if (!n)
  74. continue;
  75. }
  76. /* check a client's extension against our support */
  77. ext = wsi->vhost->extensions;
  78. while (ext && ext->callback) {
  79. if (strcmp(ext_name, ext->name)) {
  80. ext++;
  81. continue;
  82. }
  83. #if 0
  84. m = ext->callback(lws_get_context(wsi), ext, wsi,
  85. LWS_EXT_CB_ARGS_VALIDATE,
  86. NULL, start + n, 0);
  87. if (m) {
  88. ext++;
  89. continue;
  90. }
  91. #endif
  92. /*
  93. * oh, we do support this one he asked for... but let's
  94. * ask user code if it's OK to apply it on this
  95. * particular connection + protocol
  96. */
  97. m = wsi->vhost->protocols[0].callback(wsi,
  98. LWS_CALLBACK_CONFIRM_EXTENSION_OKAY,
  99. wsi->user_space, ext_name, 0);
  100. /*
  101. * zero return from callback means go ahead and allow
  102. * the extension, it's what we get if the callback is
  103. * unhandled
  104. */
  105. if (m) {
  106. ext++;
  107. continue;
  108. }
  109. /* apply it */
  110. ext_count++;
  111. /* instantiate the extension on this conn */
  112. wsi->active_extensions[wsi->count_act_ext] = ext;
  113. /* allow him to construct his context */
  114. if (ext->callback(lws_get_context(wsi), ext, wsi,
  115. LWS_EXT_CB_CONSTRUCT,
  116. (void *)&wsi->act_ext_user[wsi->count_act_ext],
  117. NULL, 0)) {
  118. lwsl_notice("ext %s failed construction\n", ext_name);
  119. ext_count--;
  120. ext++;
  121. continue;
  122. }
  123. if (ext_count > 1)
  124. *(*p)++ = ',';
  125. else
  126. LWS_CPYAPP(*p, "\x0d\x0aSec-WebSocket-Extensions: ");
  127. *p += sprintf(*p, "%s", ext_name);
  128. wsi->count_act_ext++;
  129. lwsl_parser("count_act_ext <- %d\n", wsi->count_act_ext);
  130. ext++;
  131. }
  132. n = 0;
  133. }
  134. return 0;
  135. }
  136. #endif
  137. int
  138. handshake_0405(struct lws_context *context, struct lws *wsi)
  139. {
  140. struct lws_context_per_thread *pt = &context->pt[(int)wsi->tsi];
  141. unsigned char hash[20];
  142. int n, accept_len;
  143. char *response;
  144. char *p;
  145. if (!lws_hdr_total_length(wsi, WSI_TOKEN_HOST) ||
  146. !lws_hdr_total_length(wsi, WSI_TOKEN_KEY)) {
  147. lwsl_parser("handshake_04 missing pieces\n");
  148. /* completed header processing, but missing some bits */
  149. goto bail;
  150. }
  151. if (lws_hdr_total_length(wsi, WSI_TOKEN_KEY) >= MAX_WEBSOCKET_04_KEY_LEN) {
  152. lwsl_warn("Client key too long %d\n", MAX_WEBSOCKET_04_KEY_LEN);
  153. goto bail;
  154. }
  155. /*
  156. * since key length is restricted above (currently 128), cannot
  157. * overflow
  158. */
  159. n = sprintf((char *)pt->serv_buf,
  160. "%s258EAFA5-E914-47DA-95CA-C5AB0DC85B11",
  161. lws_hdr_simple_ptr(wsi, WSI_TOKEN_KEY));
  162. lws_SHA1(pt->serv_buf, n, hash);
  163. accept_len = lws_b64_encode_string((char *)hash, 20, (char *)pt->serv_buf,
  164. context->pt_serv_buf_size);
  165. if (accept_len < 0) {
  166. lwsl_warn("Base64 encoded hash too long\n");
  167. goto bail;
  168. }
  169. /* allocate the per-connection user memory (if any) */
  170. if (lws_ensure_user_space(wsi))
  171. goto bail;
  172. /* create the response packet */
  173. /* make a buffer big enough for everything */
  174. response = (char *)pt->serv_buf + MAX_WEBSOCKET_04_KEY_LEN + LWS_PRE;
  175. p = response;
  176. LWS_CPYAPP(p, "HTTP/1.1 101 Switching Protocols\x0d\x0a"
  177. "Upgrade: WebSocket\x0d\x0a"
  178. "Connection: Upgrade\x0d\x0a"
  179. "Sec-WebSocket-Accept: ");
  180. strcpy(p, (char *)pt->serv_buf);
  181. p += accept_len;
  182. if (lws_hdr_total_length(wsi, WSI_TOKEN_PROTOCOL)) {
  183. LWS_CPYAPP(p, "\x0d\x0aSec-WebSocket-Protocol: ");
  184. n = lws_hdr_copy(wsi, p, 128, WSI_TOKEN_PROTOCOL);
  185. if (n < 0)
  186. goto bail;
  187. p += n;
  188. }
  189. #ifndef LWS_NO_EXTENSIONS
  190. /*
  191. * Figure out which extensions the client has that we want to
  192. * enable on this connection, and give him back the list
  193. */
  194. if (lws_extension_server_handshake(wsi, &p))
  195. goto bail;
  196. #endif
  197. //LWS_CPYAPP(p, "\x0d\x0a""An-unknown-header: blah");
  198. /* end of response packet */
  199. LWS_CPYAPP(p, "\x0d\x0a\x0d\x0a");
  200. if (!lws_any_extension_handled(wsi, LWS_EXT_CB_HANDSHAKE_REPLY_TX,
  201. response, p - response)) {
  202. /* okay send the handshake response accepting the connection */
  203. lwsl_parser("issuing resp pkt %d len\n", (int)(p - response));
  204. #if defined(DEBUG) && ! defined(LWS_WITH_ESP8266)
  205. fwrite(response, 1, p - response, stderr);
  206. #endif
  207. n = lws_write(wsi, (unsigned char *)response,
  208. p - response, LWS_WRITE_HTTP_HEADERS);
  209. if (n != (p - response)) {
  210. lwsl_debug("handshake_0405: ERROR writing to socket\n");
  211. goto bail;
  212. }
  213. }
  214. /* alright clean up and set ourselves into established state */
  215. wsi->state = LWSS_ESTABLISHED;
  216. wsi->lws_rx_parse_state = LWS_RXPS_NEW;
  217. {
  218. const char * uri_ptr =
  219. lws_hdr_simple_ptr(wsi, WSI_TOKEN_GET_URI);
  220. int uri_len = lws_hdr_total_length(wsi, WSI_TOKEN_GET_URI);
  221. const struct lws_http_mount *hit =
  222. lws_find_mount(wsi, uri_ptr, uri_len);
  223. if (hit && hit->cgienv &&
  224. wsi->protocol->callback(wsi, LWS_CALLBACK_HTTP_PMO,
  225. wsi->user_space, (void *)hit->cgienv, 0))
  226. return 1;
  227. }
  228. return 0;
  229. bail:
  230. /* caller will free up his parsing allocations */
  231. return -1;
  232. }