blob: 40bb1435051e17a7f435be1c215000d05f0a4870 [file] [log] [blame]
Andy Greenb429d482013-01-16 12:21:29 +08001/*
2 * libwebsockets - small server side websockets and web server implementation
3 *
Andy Green27e770b2014-03-23 11:21:51 +08004 * Copyright (C) 2010-2014 Andy Green <andy@warmcat.com>
Andy Greenb429d482013-01-16 12:21:29 +08005 *
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
22#include "private-libwebsockets.h"
23
Andy Greenb429d482013-01-16 12:21:29 +080024static int
25libwebsocket_0405_frame_mask_generate(struct libwebsocket *wsi)
26{
Andy Greenb429d482013-01-16 12:21:29 +080027 int n;
28
29 /* fetch the per-frame nonce */
30
31 n = libwebsockets_get_random(wsi->protocol->owning_server,
Andy Greenb5b23192013-02-11 17:13:32 +080032 wsi->u.ws.frame_masking_nonce_04, 4);
Andy Greenb429d482013-01-16 12:21:29 +080033 if (n != 4) {
34 lwsl_parser("Unable to read from random device %s %d\n",
35 SYSTEM_RANDOM_FILEPATH, n);
36 return 1;
37 }
38
39 /* start masking from first byte of masking key buffer */
Andy Green623a98d2013-01-21 11:04:23 +080040 wsi->u.ws.frame_mask_index = 0;
Andy Greenb429d482013-01-16 12:21:29 +080041
Andy Greenb429d482013-01-16 12:21:29 +080042 return 0;
43}
44
Andy Greencf3590e2013-01-16 14:35:27 +080045#ifdef _DEBUG
Andy Greenb429d482013-01-16 12:21:29 +080046
Peter Pentchev9a4fef72013-03-30 09:52:21 +080047LWS_VISIBLE void lwsl_hexdump(void *vbuf, size_t len)
Andy Greenb429d482013-01-16 12:21:29 +080048{
49 int n;
50 int m;
51 int start;
Andy Greencf3590e2013-01-16 14:35:27 +080052 unsigned char *buf = (unsigned char *)vbuf;
53 char line[80];
54 char *p;
Andy Greenb429d482013-01-16 12:21:29 +080055
56 lwsl_parser("\n");
57
58 for (n = 0; n < len;) {
59 start = n;
Andy Greencf3590e2013-01-16 14:35:27 +080060 p = line;
Andy Greenb429d482013-01-16 12:21:29 +080061
Andy Greencf3590e2013-01-16 14:35:27 +080062 p += sprintf(p, "%04X: ", start);
Andy Greenb429d482013-01-16 12:21:29 +080063
64 for (m = 0; m < 16 && n < len; m++)
Andy Greencf3590e2013-01-16 14:35:27 +080065 p += sprintf(p, "%02X ", buf[n++]);
Andy Greenb429d482013-01-16 12:21:29 +080066 while (m++ < 16)
Andy Greencf3590e2013-01-16 14:35:27 +080067 p += sprintf(p, " ");
Andy Greenb429d482013-01-16 12:21:29 +080068
Andy Greencf3590e2013-01-16 14:35:27 +080069 p += sprintf(p, " ");
Andy Greenb429d482013-01-16 12:21:29 +080070
71 for (m = 0; m < 16 && (start + m) < len; m++) {
Andy Green3182ece2013-01-20 17:08:31 +080072 if (buf[start + m] >= ' ' && buf[start + m] < 127)
Andy Greencf3590e2013-01-16 14:35:27 +080073 *p++ = buf[start + m];
Andy Greenb429d482013-01-16 12:21:29 +080074 else
Andy Greencf3590e2013-01-16 14:35:27 +080075 *p++ = '.';
Andy Greenb429d482013-01-16 12:21:29 +080076 }
77 while (m++ < 16)
Andy Greencf3590e2013-01-16 14:35:27 +080078 *p++ = ' ';
Andy Greenb429d482013-01-16 12:21:29 +080079
Andy Greencf3590e2013-01-16 14:35:27 +080080 *p++ = '\n';
81 *p = '\0';
Andy Green3182ece2013-01-20 17:08:31 +080082 lwsl_debug("%s", line);
Andy Greenb429d482013-01-16 12:21:29 +080083 }
84 lwsl_debug("\n");
85}
86
Andy Greencf3590e2013-01-16 14:35:27 +080087#endif
88
Andy Greenfc7c5e42013-02-23 10:50:10 +080089/*
Andy Green1f4267b2013-10-17 08:09:19 +080090 * notice this returns number of bytes consumed, or -1
Andy Greenfc7c5e42013-02-23 10:50:10 +080091 */
92
Andy Greenb429d482013-01-16 12:21:29 +080093int lws_issue_raw(struct libwebsocket *wsi, unsigned char *buf, size_t len)
94{
Andy Greene000a702013-01-29 12:37:35 +080095 struct libwebsocket_context *context = wsi->protocol->owning_server;
Andy Greenb429d482013-01-16 12:21:29 +080096 int n;
mroszko793e7c02013-12-10 21:15:00 +080097 size_t real_len = len;
Andy Greenb429d482013-01-16 12:21:29 +080098 int m;
Andy Green03cf1dd2014-04-01 14:20:44 +080099
100 if (!len)
101 return 0;
Andy Greena1a24d22014-04-10 14:25:24 +0800102 /* just ignore sends after we cleared the truncation buffer */
103 if (wsi->state == WSI_STATE_FLUSHING_STORED_SEND_BEFORE_CLOSE &&
104 !wsi->truncated_send_len)
105 return len;
Andy Green2764eba2013-12-09 14:16:17 +0800106
Andy Greene254d952014-03-23 11:41:15 +0800107 if (wsi->truncated_send_len && (buf < wsi->truncated_send_malloc ||
Andy Green27e770b2014-03-23 11:21:51 +0800108 buf > (wsi->truncated_send_malloc +
109 wsi->truncated_send_len +
110 wsi->truncated_send_offset))) {
111 lwsl_err("****** %x Sending new, pending truncated ...\n", wsi);
Andy Green2764eba2013-12-09 14:16:17 +0800112 assert(0);
113 }
Andy Greenb429d482013-01-16 12:21:29 +0800114
Andy Green2c24ec02014-04-02 19:45:42 +0800115 m = lws_ext_callback_for_each_active(wsi,
116 LWS_EXT_CALLBACK_PACKET_TX_DO_SEND, &buf, len);
117 if (m < 0)
118 return -1;
119 if (m) /* handled */ {
120 n = m;
121 goto handle_truncated_send;
Andy Greenb429d482013-01-16 12:21:29 +0800122 }
Andy Green1f4267b2013-10-17 08:09:19 +0800123 if (wsi->sock < 0)
124 lwsl_warn("** error invalid sock but expected to send\n");
Andy Greenb429d482013-01-16 12:21:29 +0800125
126 /*
127 * nope, send it on the socket directly
128 */
Andy Greene000a702013-01-29 12:37:35 +0800129 lws_latency_pre(context, wsi);
Andy Green02138122014-04-06 06:26:35 +0100130 n = lws_ssl_capable_write(wsi, buf, len);
131 lws_latency(context, wsi, "send lws_issue_raw", n, n == len);
Andy Greend7340c12014-04-10 14:08:10 +0800132
Andy Green02138122014-04-06 06:26:35 +0100133 switch (n) {
134 case LWS_SSL_CAPABLE_ERROR:
135 return -1;
136 case LWS_SSL_CAPABLE_MORE_SERVICE:
Andy Greend7340c12014-04-10 14:08:10 +0800137 /* nothing got sent, not fatal, retry the whole thing later */
Andy Green02138122014-04-06 06:26:35 +0100138 n = 0;
Andy Greend7340c12014-04-10 14:08:10 +0800139 break;
Andy Greenb429d482013-01-16 12:21:29 +0800140 }
Andy Green1f4267b2013-10-17 08:09:19 +0800141
142handle_truncated_send:
Andy Green1f4267b2013-10-17 08:09:19 +0800143 /*
Andy Greend7340c12014-04-10 14:08:10 +0800144 * we were already handling a truncated send?
Andy Green1f4267b2013-10-17 08:09:19 +0800145 */
Andy Greene254d952014-03-23 11:41:15 +0800146 if (wsi->truncated_send_len) {
Andy Green27e770b2014-03-23 11:21:51 +0800147 lwsl_info("***** %x partial send moved on by %d (vs %d)\n",
148 wsi, n, real_len);
Andy Green2764eba2013-12-09 14:16:17 +0800149 wsi->truncated_send_offset += n;
150 wsi->truncated_send_len -= n;
Andy Green1f4267b2013-10-17 08:09:19 +0800151
Andy Green2764eba2013-12-09 14:16:17 +0800152 if (!wsi->truncated_send_len) {
153 lwsl_info("***** %x partial send completed\n", wsi);
Andy Greene254d952014-03-23 11:41:15 +0800154 /* done with it, but don't free it */
Andy Green2764eba2013-12-09 14:16:17 +0800155 n = real_len;
Andy Greenf4ffc1e2014-04-10 17:06:59 +0800156 if (wsi->state == WSI_STATE_FLUSHING_STORED_SEND_BEFORE_CLOSE) {
Andy Greena1a24d22014-04-10 14:25:24 +0800157 lwsl_info("***** %x signalling to close now\n", wsi);
158 return -1; /* retry closing now */
Andy Greenf4ffc1e2014-04-10 17:06:59 +0800159 }
Andy Green15d56dd2014-04-10 11:23:18 +0800160 }
161 /* always callback on writeable */
162 libwebsocket_callback_on_writable(
Andy Green1f4267b2013-10-17 08:09:19 +0800163 wsi->protocol->owning_server, wsi);
164
165 return n;
166 }
167
Andy Greend7340c12014-04-10 14:08:10 +0800168 if (n == real_len)
169 /* what we just sent went out cleanly */
170 return n;
Andy Green1f4267b2013-10-17 08:09:19 +0800171
Andy Greend7340c12014-04-10 14:08:10 +0800172 if (n && wsi->u.ws.clean_buffer)
Andy Green1f4267b2013-10-17 08:09:19 +0800173 /*
Andy Greend7340c12014-04-10 14:08:10 +0800174 * This buffer unaffected by extension rewriting.
175 * It means the user code is expected to deal with
176 * partial sends. (lws knows the header was already
177 * sent, so on next send will just resume sending
178 * payload)
Andy Green1f4267b2013-10-17 08:09:19 +0800179 */
Andy Greend7340c12014-04-10 14:08:10 +0800180 return n;
Andy Green1f4267b2013-10-17 08:09:19 +0800181
Andy Greend7340c12014-04-10 14:08:10 +0800182 /*
183 * Newly truncated send. Buffer the remainder (it will get
184 * first priority next time the socket is writable)
185 */
186 lwsl_info("***** %x new partial sent %d from %d total\n",
187 wsi, n, real_len);
Andy Green1f4267b2013-10-17 08:09:19 +0800188
Andy Greend7340c12014-04-10 14:08:10 +0800189 /*
190 * - if we still have a suitable malloc lying around, use it
191 * - or, if too small, reallocate it
192 * - or, if no buffer, create it
193 */
194 if (!wsi->truncated_send_malloc ||
195 real_len - n > wsi->truncated_send_allocation) {
196 if (wsi->truncated_send_malloc)
197 free(wsi->truncated_send_malloc);
198
199 wsi->truncated_send_allocation = real_len - n;
200 wsi->truncated_send_malloc = malloc(real_len - n);
201 if (!wsi->truncated_send_malloc) {
202 lwsl_err("truncated send: unable to malloc %d\n",
203 real_len - n);
204 return -1;
Andy Greene254d952014-03-23 11:41:15 +0800205 }
Andy Green1f4267b2013-10-17 08:09:19 +0800206 }
Andy Greend7340c12014-04-10 14:08:10 +0800207 wsi->truncated_send_offset = 0;
208 wsi->truncated_send_len = real_len - n;
209 memcpy(wsi->truncated_send_malloc, buf + n, real_len - n);
Andy Green1f4267b2013-10-17 08:09:19 +0800210
Andy Greend7340c12014-04-10 14:08:10 +0800211 /* since something buffered, force it to get another chance to send */
212 libwebsocket_callback_on_writable(wsi->protocol->owning_server, wsi);
213
214 return real_len;
Andy Greenb429d482013-01-16 12:21:29 +0800215}
216
Andy Greenb429d482013-01-16 12:21:29 +0800217/**
218 * libwebsocket_write() - Apply protocol then write data to client
219 * @wsi: Websocket instance (available from user callback)
220 * @buf: The data to send. For data being sent on a websocket
221 * connection (ie, not default http), this buffer MUST have
222 * LWS_SEND_BUFFER_PRE_PADDING bytes valid BEFORE the pointer
223 * and an additional LWS_SEND_BUFFER_POST_PADDING bytes valid
224 * in the buffer after (buf + len). This is so the protocol
225 * header and trailer data can be added in-situ.
226 * @len: Count of the data bytes in the payload starting from buf
227 * @protocol: Use LWS_WRITE_HTTP to reply to an http connection, and one
228 * of LWS_WRITE_BINARY or LWS_WRITE_TEXT to send appropriate
229 * data on a websockets connection. Remember to allow the extra
230 * bytes before and after buf if LWS_WRITE_BINARY or LWS_WRITE_TEXT
231 * are used.
232 *
233 * This function provides the way to issue data back to the client
234 * for both http and websocket protocols.
235 *
236 * In the case of sending using websocket protocol, be sure to allocate
237 * valid storage before and after buf as explained above. This scheme
238 * allows maximum efficiency of sending data and protocol in a single
239 * packet while not burdening the user code with any protocol knowledge.
Andy Greenfc7c5e42013-02-23 10:50:10 +0800240 *
241 * Return may be -1 for a fatal error needing connection close, or a
242 * positive number reflecting the amount of bytes actually sent. This
243 * can be less than the requested number of bytes due to OS memory
244 * pressure at any given time.
Andy Greenb429d482013-01-16 12:21:29 +0800245 */
246
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800247LWS_VISIBLE int libwebsocket_write(struct libwebsocket *wsi, unsigned char *buf,
Andy Greenb429d482013-01-16 12:21:29 +0800248 size_t len, enum libwebsocket_write_protocol protocol)
249{
250 int n;
251 int pre = 0;
252 int post = 0;
Andy Green5738c0e2013-01-21 09:53:35 +0800253 int masked7 = wsi->mode == LWS_CONNMODE_WS_CLIENT;
Andy Greenb429d482013-01-16 12:21:29 +0800254 unsigned char *dropmask = NULL;
255 unsigned char is_masked_bit = 0;
Andy Greenfc7c5e42013-02-23 10:50:10 +0800256 size_t orig_len = len;
Andy Greenb429d482013-01-16 12:21:29 +0800257 struct lws_tokens eff_buf;
Andy Greenb429d482013-01-16 12:21:29 +0800258
Andy Green1f4267b2013-10-17 08:09:19 +0800259 if (len == 0 && protocol != LWS_WRITE_CLOSE &&
260 protocol != LWS_WRITE_PING && protocol != LWS_WRITE_PONG) {
Andy Greenb429d482013-01-16 12:21:29 +0800261 lwsl_warn("zero length libwebsocket_write attempt\n");
262 return 0;
263 }
264
Andy Green024eb6c2014-10-08 12:00:53 +0800265 if (protocol == LWS_WRITE_HTTP || protocol == LWS_WRITE_HTTP_HEADERS)
Andy Greenb429d482013-01-16 12:21:29 +0800266 goto send_raw;
267
268 /* websocket protocol, either binary or text */
269
270 if (wsi->state != WSI_STATE_ESTABLISHED)
271 return -1;
272
Andy Green1f4267b2013-10-17 08:09:19 +0800273 /* if we are continuing a frame that already had its header done */
274
275 if (wsi->u.ws.inside_frame)
276 goto do_more_inside_frame;
277
Andy Green822241c2014-08-18 22:21:51 +0800278 wsi->u.ws.clean_buffer = 1;
Andy Green1f4267b2013-10-17 08:09:19 +0800279
Andy Green1f4267b2013-10-17 08:09:19 +0800280 /*
281 * give a chance to the extensions to modify payload
282 * pre-TX mangling is not allowed to truncate
283 */
Andy Greenb429d482013-01-16 12:21:29 +0800284 eff_buf.token = (char *)buf;
285 eff_buf.token_len = len;
286
Andy Green0303db42013-01-17 14:46:43 +0800287 switch (protocol) {
288 case LWS_WRITE_PING:
289 case LWS_WRITE_PONG:
290 case LWS_WRITE_CLOSE:
291 break;
292 default:
Andy Green2c24ec02014-04-02 19:45:42 +0800293 if (lws_ext_callback_for_each_active(wsi,
294 LWS_EXT_CALLBACK_PAYLOAD_TX, &eff_buf, 0) < 0)
295 return -1;
Andy Greenb429d482013-01-16 12:21:29 +0800296 }
297
Andy Green1f4267b2013-10-17 08:09:19 +0800298 /*
299 * an extension did something we need to keep... for example, if
300 * compression extension, it has already updated its state according
301 * to this being issued
302 */
303 if ((char *)buf != eff_buf.token)
Andy Green27e770b2014-03-23 11:21:51 +0800304 /*
305 * extension recreated it:
306 * need to buffer this if not all sent
307 */
308 wsi->u.ws.clean_buffer = 0;
Andy Green1f4267b2013-10-17 08:09:19 +0800309
Andy Greenb429d482013-01-16 12:21:29 +0800310 buf = (unsigned char *)eff_buf.token;
311 len = eff_buf.token_len;
312
313 switch (wsi->ietf_spec_revision) {
Andy Greenb429d482013-01-16 12:21:29 +0800314 case 13:
Andy Green1f4267b2013-10-17 08:09:19 +0800315
Andy Greenb429d482013-01-16 12:21:29 +0800316 if (masked7) {
317 pre += 4;
318 dropmask = &buf[0 - pre];
319 is_masked_bit = 0x80;
320 }
Andy Green5738c0e2013-01-21 09:53:35 +0800321
Andy Greenb429d482013-01-16 12:21:29 +0800322 switch (protocol & 0xf) {
323 case LWS_WRITE_TEXT:
Andy Green5738c0e2013-01-21 09:53:35 +0800324 n = LWS_WS_OPCODE_07__TEXT_FRAME;
Andy Greenb429d482013-01-16 12:21:29 +0800325 break;
326 case LWS_WRITE_BINARY:
Andy Green5738c0e2013-01-21 09:53:35 +0800327 n = LWS_WS_OPCODE_07__BINARY_FRAME;
Andy Greenb429d482013-01-16 12:21:29 +0800328 break;
329 case LWS_WRITE_CONTINUATION:
Andy Green5738c0e2013-01-21 09:53:35 +0800330 n = LWS_WS_OPCODE_07__CONTINUATION;
Andy Greenb429d482013-01-16 12:21:29 +0800331 break;
332
333 case LWS_WRITE_CLOSE:
Andy Green5738c0e2013-01-21 09:53:35 +0800334 n = LWS_WS_OPCODE_07__CLOSE;
Andy Greenb429d482013-01-16 12:21:29 +0800335
336 /*
Andy Green5738c0e2013-01-21 09:53:35 +0800337 * 06+ has a 2-byte status code in network order
338 * we can do this because we demand post-buf
Andy Greenb429d482013-01-16 12:21:29 +0800339 */
340
Andy Green623a98d2013-01-21 11:04:23 +0800341 if (wsi->u.ws.close_reason) {
Andy Green5738c0e2013-01-21 09:53:35 +0800342 /* reason codes count as data bytes */
343 buf -= 2;
Andy Green623a98d2013-01-21 11:04:23 +0800344 buf[0] = wsi->u.ws.close_reason >> 8;
345 buf[1] = wsi->u.ws.close_reason;
Andy Green5738c0e2013-01-21 09:53:35 +0800346 len += 2;
Andy Greenb429d482013-01-16 12:21:29 +0800347 }
348 break;
349 case LWS_WRITE_PING:
Andy Green5738c0e2013-01-21 09:53:35 +0800350 n = LWS_WS_OPCODE_07__PING;
Andy Greenb429d482013-01-16 12:21:29 +0800351 break;
352 case LWS_WRITE_PONG:
Andy Green5738c0e2013-01-21 09:53:35 +0800353 n = LWS_WS_OPCODE_07__PONG;
Andy Greenb429d482013-01-16 12:21:29 +0800354 break;
355 default:
Andy Greenb5b23192013-02-11 17:13:32 +0800356 lwsl_warn("lws_write: unknown write opc / protocol\n");
Andy Greenb429d482013-01-16 12:21:29 +0800357 return -1;
358 }
359
360 if (!(protocol & LWS_WRITE_NO_FIN))
361 n |= 1 << 7;
362
363 if (len < 126) {
364 pre += 2;
365 buf[-pre] = n;
366 buf[-pre + 1] = len | is_masked_bit;
367 } else {
368 if (len < 65536) {
369 pre += 4;
370 buf[-pre] = n;
371 buf[-pre + 1] = 126 | is_masked_bit;
372 buf[-pre + 2] = len >> 8;
373 buf[-pre + 3] = len;
374 } else {
375 pre += 10;
376 buf[-pre] = n;
377 buf[-pre + 1] = 127 | is_masked_bit;
378#if defined __LP64__
379 buf[-pre + 2] = (len >> 56) & 0x7f;
380 buf[-pre + 3] = len >> 48;
381 buf[-pre + 4] = len >> 40;
382 buf[-pre + 5] = len >> 32;
383#else
384 buf[-pre + 2] = 0;
385 buf[-pre + 3] = 0;
386 buf[-pre + 4] = 0;
387 buf[-pre + 5] = 0;
388#endif
389 buf[-pre + 6] = len >> 24;
390 buf[-pre + 7] = len >> 16;
391 buf[-pre + 8] = len >> 8;
392 buf[-pre + 9] = len;
393 }
394 }
395 break;
396 }
397
Andy Green1f4267b2013-10-17 08:09:19 +0800398do_more_inside_frame:
399
Andy Greenb429d482013-01-16 12:21:29 +0800400 /*
401 * Deal with masking if we are in client -> server direction and
402 * the protocol demands it
403 */
404
Andy Green5738c0e2013-01-21 09:53:35 +0800405 if (wsi->mode == LWS_CONNMODE_WS_CLIENT) {
Andy Greenb429d482013-01-16 12:21:29 +0800406
Andy Green1f4267b2013-10-17 08:09:19 +0800407 if (!wsi->u.ws.inside_frame)
408 if (libwebsocket_0405_frame_mask_generate(wsi)) {
Andy Green27e770b2014-03-23 11:21:51 +0800409 lwsl_err("frame mask generation failed\n");
Andy Green1f4267b2013-10-17 08:09:19 +0800410 return -1;
411 }
Andy Greenb429d482013-01-16 12:21:29 +0800412
Andy Green5738c0e2013-01-21 09:53:35 +0800413 /*
414 * in v7, just mask the payload
415 */
Nikolay Dimitrova8268e72013-12-21 10:22:17 +0800416 if (dropmask) { /* never set if already inside frame */
417 for (n = 4; n < (int)len + 4; n++)
418 dropmask[n] = dropmask[n] ^
Andy Greenb5b23192013-02-11 17:13:32 +0800419 wsi->u.ws.frame_masking_nonce_04[
420 (wsi->u.ws.frame_mask_index++) & 3];
Andy Green5738c0e2013-01-21 09:53:35 +0800421
Andy Green5738c0e2013-01-21 09:53:35 +0800422 /* copy the frame nonce into place */
Andy Green1f4267b2013-10-17 08:09:19 +0800423 memcpy(dropmask, wsi->u.ws.frame_masking_nonce_04, 4);
Nikolay Dimitrova8268e72013-12-21 10:22:17 +0800424 }
Andy Greenb429d482013-01-16 12:21:29 +0800425 }
426
427send_raw:
Andy Green0303db42013-01-17 14:46:43 +0800428 switch (protocol) {
429 case LWS_WRITE_CLOSE:
Andy Greenb5b23192013-02-11 17:13:32 +0800430/* lwsl_hexdump(&buf[-pre], len + post); */
Andy Green0303db42013-01-17 14:46:43 +0800431 case LWS_WRITE_HTTP:
Andy Green024eb6c2014-10-08 12:00:53 +0800432 case LWS_WRITE_HTTP_HEADERS:
Andy Green0303db42013-01-17 14:46:43 +0800433 case LWS_WRITE_PONG:
434 case LWS_WRITE_PING:
Andy Green095d3032014-10-08 12:15:15 +0800435#ifdef LWS_USE_HTTP2
Andy Green024eb6c2014-10-08 12:00:53 +0800436 if (wsi->mode == LWS_CONNMODE_HTTP2_SERVING) {
437 n = LWS_HTTP2_FRAME_TYPE_DATA;
438 if (protocol == LWS_WRITE_HTTP_HEADERS)
439 n = LWS_HTTP2_FRAME_TYPE_HEADERS;
440 return lws_http2_frame_write(wsi, n, 0, wsi->u.http2.my_stream_id, len, buf);
441 }
Andy Green095d3032014-10-08 12:15:15 +0800442#endif
Andy Greenfc7c5e42013-02-23 10:50:10 +0800443 return lws_issue_raw(wsi, (unsigned char *)buf - pre,
444 len + pre + post);
Andy Green0303db42013-01-17 14:46:43 +0800445 default:
446 break;
Andy Greenb429d482013-01-16 12:21:29 +0800447 }
448
Andy Green1f4267b2013-10-17 08:09:19 +0800449 wsi->u.ws.inside_frame = 1;
450
Andy Greenb429d482013-01-16 12:21:29 +0800451 /*
452 * give any active extensions a chance to munge the buffer
453 * before send. We pass in a pointer to an lws_tokens struct
454 * prepared with the default buffer and content length that's in
455 * there. Rather than rewrite the default buffer, extensions
456 * that expect to grow the buffer can adapt .token to
457 * point to their own per-connection buffer in the extension
458 * user allocation. By default with no extensions or no
459 * extension callback handling, just the normal input buffer is
460 * used then so it is efficient.
461 *
462 * callback returns 1 in case it wants to spill more buffers
Andy Green1f4267b2013-10-17 08:09:19 +0800463 *
464 * This takes care of holding the buffer if send is incomplete, ie,
465 * if wsi->u.ws.clean_buffer is 0 (meaning an extension meddled with
466 * the buffer). If wsi->u.ws.clean_buffer is 1, it will instead
467 * return to the user code how much OF THE USER BUFFER was consumed.
Andy Greenb429d482013-01-16 12:21:29 +0800468 */
469
Andy Greenfc7c5e42013-02-23 10:50:10 +0800470 n = lws_issue_raw_ext_access(wsi, buf - pre, len + pre + post);
Andy Green03cf1dd2014-04-01 14:20:44 +0800471 if (n <= 0)
Andy Greenfc7c5e42013-02-23 10:50:10 +0800472 return n;
473
Andy Green1f4267b2013-10-17 08:09:19 +0800474 if (n == len + pre + post) {
475 /* everything in the buffer was handled (or rebuffered...) */
476 wsi->u.ws.inside_frame = 0;
477 return orig_len;
478 }
479
480 /*
481 * it is how many bytes of user buffer got sent... may be < orig_len
482 * in which case callback when writable has already been arranged
483 * and user code can call libwebsocket_write() again with the rest
484 * later.
485 */
486
487 return n - (pre + post);
Andy Greenb429d482013-01-16 12:21:29 +0800488}
489
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800490LWS_VISIBLE int libwebsockets_serve_http_file_fragment(
Andy Greenb5b23192013-02-11 17:13:32 +0800491 struct libwebsocket_context *context, struct libwebsocket *wsi)
Andy Greenb8b247d2013-01-22 07:20:08 +0800492{
Patrick Gansterer81338aa2014-02-27 03:21:50 +0100493 int n;
Patrick Gansterer81338aa2014-02-27 03:21:50 +0100494 int m;
Andy Greenb8b247d2013-01-22 07:20:08 +0800495
496 while (!lws_send_pipe_choked(wsi)) {
Andy Green2764eba2013-12-09 14:16:17 +0800497
Andy Greene254d952014-03-23 11:41:15 +0800498 if (wsi->truncated_send_len) {
Andy Greena1a24d22014-04-10 14:25:24 +0800499 if (lws_issue_raw(wsi, wsi->truncated_send_malloc +
Andy Green2764eba2013-12-09 14:16:17 +0800500 wsi->truncated_send_offset,
Andy Greena1a24d22014-04-10 14:25:24 +0800501 wsi->truncated_send_len) < 0) {
502 lwsl_info("closing from libwebsockets_serve_http_file_fragment\n");
503 return -1;
504 }
Andy Green2764eba2013-12-09 14:16:17 +0800505 continue;
506 }
507
508 if (wsi->u.http.filepos == wsi->u.http.filelen)
509 goto all_sent;
510
Andy Green158e8042014-04-02 14:25:10 +0800511 compatible_file_read(n, wsi->u.http.fd, context->service_buffer,
Andy Greenb5b23192013-02-11 17:13:32 +0800512 sizeof(context->service_buffer));
Patrick Gansterer81338aa2014-02-27 03:21:50 +0100513 if (n < 0)
514 return -1; /* caller will close */
Patrick Gansterer81338aa2014-02-27 03:21:50 +0100515 if (n) {
Andy Greenfc7c5e42013-02-23 10:50:10 +0800516 m = libwebsocket_write(wsi, context->service_buffer, n,
Andy Greenb5b23192013-02-11 17:13:32 +0800517 LWS_WRITE_HTTP);
Andy Greenfc7c5e42013-02-23 10:50:10 +0800518 if (m < 0)
519 return -1;
520
David Gauchard6c582282013-06-29 10:24:16 +0800521 wsi->u.http.filepos += m;
Andy Green158e8042014-04-02 14:25:10 +0800522 if (m != n)
Andy Greenfc7c5e42013-02-23 10:50:10 +0800523 /* adjust for what was not sent */
Andy Green158e8042014-04-02 14:25:10 +0800524 compatible_file_seek_cur(wsi->u.http.fd, m - n);
Andy Greenb8b247d2013-01-22 07:20:08 +0800525 }
Andy Green2764eba2013-12-09 14:16:17 +0800526all_sent:
Andy Greene254d952014-03-23 11:41:15 +0800527 if (!wsi->truncated_send_len &&
Andy Green2764eba2013-12-09 14:16:17 +0800528 wsi->u.http.filepos == wsi->u.http.filelen) {
Andy Greenb8b247d2013-01-22 07:20:08 +0800529 wsi->state = WSI_STATE_HTTP;
530
531 if (wsi->protocol->callback)
David Gauchard6c582282013-06-29 10:24:16 +0800532 /* ignore callback returned value */
533 user_callback_handle_rxflow(
Andy Greenb5b23192013-02-11 17:13:32 +0800534 wsi->protocol->callback, context, wsi,
535 LWS_CALLBACK_HTTP_FILE_COMPLETION,
536 wsi->user_space, NULL, 0);
David Gauchard6c582282013-06-29 10:24:16 +0800537 return 1; /* >0 indicates completed */
Andy Greenb8b247d2013-01-22 07:20:08 +0800538 }
539 }
540
Andy Green2764eba2013-12-09 14:16:17 +0800541 lwsl_info("choked before able to send whole file (post)\n");
Andy Greenb8b247d2013-01-22 07:20:08 +0800542 libwebsocket_callback_on_writable(context, wsi);
543
David Gauchard6c582282013-06-29 10:24:16 +0800544 return 0; /* indicates further processing must be done */
Andy Greenb8b247d2013-01-22 07:20:08 +0800545}
Andy Green02138122014-04-06 06:26:35 +0100546
547LWS_VISIBLE int
Andy Green1f5c9f02014-10-09 08:14:30 +0800548lws_ssl_capable_read_no_ssl(struct libwebsocket_context *context,
549 struct libwebsocket *wsi, unsigned char *buf, int len)
Andy Green02138122014-04-06 06:26:35 +0100550{
551 int n;
552
553 n = recv(wsi->sock, buf, len, 0);
Andy Greend7340c12014-04-10 14:08:10 +0800554 if (n >= 0)
555 return n;
556
557 lwsl_warn("error on reading from skt\n");
558 return LWS_SSL_CAPABLE_ERROR;
Andy Green02138122014-04-06 06:26:35 +0100559}
560
561LWS_VISIBLE int
562lws_ssl_capable_write_no_ssl(struct libwebsocket *wsi, unsigned char *buf, int len)
563{
564 int n;
565
Andy Green485abc12014-04-06 12:41:20 +0100566 n = send(wsi->sock, buf, len, 0);
Andy Greend7340c12014-04-10 14:08:10 +0800567 if (n >= 0)
568 return n;
Andy Green02138122014-04-06 06:26:35 +0100569
Andy Greend7340c12014-04-10 14:08:10 +0800570 if (LWS_ERRNO == LWS_EAGAIN ||
571 LWS_ERRNO == LWS_EWOULDBLOCK ||
572 LWS_ERRNO == LWS_EINTR) {
573 if (LWS_ERRNO == LWS_EWOULDBLOCK)
574 lws_set_blocking_send(wsi);
575
576 return LWS_SSL_CAPABLE_MORE_SERVICE;
577 }
578 lwsl_debug("ERROR writing len %d to skt %d\n", len, n);
579 return LWS_SSL_CAPABLE_ERROR;
Andy Green02138122014-04-06 06:26:35 +0100580}