summaryrefslogtreecommitdiffstats
path: root/src/websock.c
blob: e583a49da0f2c6f6564184cf26772ff0a952dfdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
/*
 * Copyright 2016 iot.bzh
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/*
 * This work is a far adaptation of apache-websocket:
 *   origin:  https://github.com/disconnect/apache-websocket
 *   commit:  cfaef071223f11ba016bff7e1e4b7c9e5df45b50
 *   Copyright 2010-2012 self.disconnect (APACHE-2)
 */

#include <stdlib.h>
#include <stdint.h>
#include <errno.h>
#include <string.h>
#include <sys/uio.h>

#include "websock.h"

#define BLOCK_DATA_SIZE              4096

#define FRAME_GET_FIN(BYTE)         (((BYTE) >> 7) & 0x01)
#define FRAME_GET_RSV1(BYTE)        (((BYTE) >> 6) & 0x01)
#define FRAME_GET_RSV2(BYTE)        (((BYTE) >> 5) & 0x01)
#define FRAME_GET_RSV3(BYTE)        (((BYTE) >> 4) & 0x01)
#define FRAME_GET_OPCODE(BYTE)      ( (BYTE)       & 0x0F)
#define FRAME_GET_MASK(BYTE)        (((BYTE) >> 7) & 0x01)
#define FRAME_GET_PAYLOAD_LEN(BYTE) ( (BYTE)       & 0x7F)

#define FRAME_SET_FIN(BYTE)         (((BYTE) & 0x01) << 7)
#define FRAME_SET_OPCODE(BYTE)       ((BYTE) & 0x0F)
#define FRAME_SET_MASK(BYTE)        (((BYTE) & 0x01) << 7)
#define FRAME_SET_LENGTH(X64, IDX)  (unsigned char)(((X64) >> ((IDX)*8)) & 0xFF)

#define OPCODE_CONTINUATION 0x0
#define OPCODE_TEXT         0x1
#define OPCODE_BINARY       0x2
#define OPCODE_CLOSE        0x8
#define OPCODE_PING         0x9
#define OPCODE_PONG         0xA

#define STATE_INIT    0
#define STATE_START   1
#define STATE_LENGTH  2
#define STATE_DATA    3
#define STATE_CLOSED  4

struct websock {
	int state;
	uint64_t maxlength;
	int lenhead, szhead;
	uint64_t length;
	uint32_t mask;
	unsigned char header[14];	/* 2 + 8 + 4 */
	const struct websock_itf *itf;
	void *closure;
};

static ssize_t ws_writev(struct websock *ws, const struct iovec *iov, int iovcnt)
{
	return ws->itf->writev(ws->closure, iov, iovcnt);
}

static ssize_t ws_readv(struct websock *ws, const struct iovec *iov, int iovcnt)
{
	return ws->itf->readv(ws->closure, iov, iovcnt);
}

#if 0
static ssize_t ws_write(struct websock *ws, const void *buffer, size_t buffer_size)
{
	struct iovec iov;
	iov.iov_base = (void *)buffer;	/* const cast */
	iov.iov_len = buffer_size;
	return ws_writev(ws, &iov, 1);
}
#endif

static ssize_t ws_read(struct websock *ws, void *buffer, size_t buffer_size)
{
	struct iovec iov;
	iov.iov_base = buffer;
	iov.iov_len = buffer_size;
	return ws_readv(ws, &iov, 1);
}

static ssize_t websock_send(struct websock *ws, unsigned char opcode,
			    const void *buffer, size_t buffer_size)
{
	struct iovec iov[2];
	size_t pos;
	ssize_t rc;
	unsigned char header[32];

	if (ws->state == STATE_CLOSED)
		return 0;

	pos = 0;
	header[pos++] = (unsigned char)(FRAME_SET_FIN(1) | FRAME_SET_OPCODE(opcode));
	buffer_size = (uint64_t) buffer_size;
	if (buffer_size < 126) {
		header[pos++] =
		    FRAME_SET_MASK(0) | FRAME_SET_LENGTH(buffer_size, 0);
	} else {
		if (buffer_size < 65536) {
			header[pos++] = FRAME_SET_MASK(0) | 126;
		} else {
			header[pos++] = FRAME_SET_MASK(0) | 127;
			header[pos++] = FRAME_SET_LENGTH(buffer_size, 7);
			header[pos++] = FRAME_SET_LENGTH(buffer_size, 6);
			header[pos++] = FRAME_SET_LENGTH(buffer_size, 5);
			header[pos++] = FRAME_SET_LENGTH(buffer_size, 4);
			header[pos++] = FRAME_SET_LENGTH(buffer_size, 3);
			header[pos++] = FRAME_SET_LENGTH(buffer_size, 2);
		}
		header[pos++] = FRAME_SET_LENGTH(buffer_size, 1);
		header[pos++] = FRAME_SET_LENGTH(buffer_size, 0);
	}

	iov[0].iov_base = header;
	iov[0].iov_len = pos;
	iov[1].iov_base = (void *)buffer;	/* const cast */
	iov[1].iov_len = buffer_size;

	rc = ws_writev(ws, iov, 1 + !!buffer_size);

	if (opcode == OPCODE_CLOSE) {
		ws->length = 0;
		ws->state = STATE_CLOSED;
		ws->itf->disconnect(ws->closure);
	}
	return rc;
}

void websock_close(struct websock *ws)
{
	websock_send(ws, OPCODE_CLOSE, NULL, 0);
}

void websock_close_code(struct websock *ws, uint16_t code)
{
	unsigned char buffer[2];
	/* Send server-side closing handshake */
	buffer[0] = (unsigned char)((code >> 8) & 0xFF);
	buffer[1] = (unsigned char)(code & 0xFF);
	websock_send(ws, OPCODE_CLOSE, buffer, 2);
}

void websock_ping(struct websock *ws)
{
	websock_send(ws, OPCODE_PING, NULL, 0);
}

void websock_pong(struct websock *ws)
{
	websock_send(ws, OPCODE_PONG, NULL, 0);
}

void websock_text(struct websock *ws, const char *text, size_t length)
{
	websock_send(ws, OPCODE_TEXT, text, length);
}

void websock_binary(struct websock *ws, const void *data, size_t length)
{
	websock_send(ws, OPCODE_BINARY, data, length);
}

static int read_header(struct websock *ws)
{
	if (ws->lenhead < ws->szhead) {
		ssize_t rbc =
		    ws_read(ws, &ws->header[ws->lenhead], (size_t)(ws->szhead - ws->lenhead));
		if (rbc < 0)
			return -1;
		ws->lenhead += (int)rbc;
	}
	return 0;
}

static int check_control_header(struct websock *ws)
{
	/* sanity checks */
	if (FRAME_GET_RSV1(ws->header[0]) != 0)
		return 0;
	if (FRAME_GET_RSV2(ws->header[0]) != 0)
		return 0;
	if (FRAME_GET_RSV3(ws->header[0]) != 0)
		return 0;
	if (FRAME_GET_MASK(ws->header[1]))
		return 0;
	if (FRAME_GET_OPCODE(ws->header[0]) == OPCODE_CLOSE)
		return FRAME_GET_PAYLOAD_LEN(ws->header[1]) != 1;
	return FRAME_GET_PAYLOAD_LEN(ws->header[1]) == 0;
}

int websock_dispatch(struct websock *ws)
{
loop:
	switch (ws->state) {
	case STATE_INIT:
		ws->lenhead = 0;
		ws->szhead = 2;
		ws->state = STATE_START;

	case STATE_START:
		/* read the header */
		if (read_header(ws))
			return -1;
		else if (ws->lenhead < ws->szhead)
			return 0;
		/* fast track */
		switch (FRAME_GET_OPCODE(ws->header[0])) {
		case OPCODE_CONTINUATION:
		case OPCODE_TEXT:
		case OPCODE_BINARY:
			break;
		case OPCODE_CLOSE:
			if (!check_control_header(ws))
				goto protocol_error;
			if (FRAME_GET_PAYLOAD_LEN(ws->header[1]))
				ws->szhead += 2;
			break;
		case OPCODE_PING:
			if (!check_control_header(ws))
				goto protocol_error;
			if (ws->itf->on_ping)
				ws->itf->on_ping(ws->closure);
			else
				websock_pong(ws);
			ws->state = STATE_INIT;
			goto loop;
		case OPCODE_PONG:
			if (!check_control_header(ws))
				goto protocol_error;
			if (ws->itf->on_pong)
				ws->itf->on_pong(ws->closure);
			ws->state = STATE_INIT;
			goto loop;
		default:
			break;
		}
		/* update heading size */
		switch (FRAME_GET_PAYLOAD_LEN(ws->header[1])) {
		case 127:
			ws->szhead += 6;
		case 126:
			ws->szhead += 2;
		default:
			ws->szhead += 4 * FRAME_GET_MASK(ws->header[1]);
		}
		ws->state = STATE_LENGTH;

	case STATE_LENGTH:
		/* continue to read the header */
		if (read_header(ws))
			return -1;
		else if (ws->lenhead < ws->szhead)
			return 0;
		/* compute header values */
		switch (FRAME_GET_PAYLOAD_LEN(ws->header[1])) {
		case 127:
			ws->length = (((uint64_t) ws->header[2]) << 56)
			    | (((uint64_t) ws->header[3]) << 48)
			    | (((uint64_t) ws->header[4]) << 40)
			    | (((uint64_t) ws->header[5]) << 32)
			    | (((uint64_t) ws->header[6]) << 24)
			    | (((uint64_t) ws->header[7]) << 16)
			    | (((uint64_t) ws->header[8]) << 8)
			    | (uint64_t) ws->header[9];
			break;
		case 126:
			ws->length = (((uint64_t) ws->header[2]) << 8)
			    | (uint64_t) ws->header[3];
			break;
		default:
			ws->length = FRAME_GET_PAYLOAD_LEN(ws->header[1]);
			break;
		}
		if (ws->length > ws->maxlength)
			goto too_long_error;
		if (FRAME_GET_MASK(ws->header[1])) {
			((unsigned char *)&ws->mask)[0] = ws->header[ws->szhead - 4];
			((unsigned char *)&ws->mask)[1] = ws->header[ws->szhead - 3];
			((unsigned char *)&ws->mask)[2] = ws->header[ws->szhead - 2];
			((unsigned char *)&ws->mask)[3] = ws->header[ws->szhead - 1];
		} else
			ws->mask = 0;

		/* all heading fields are known, process */
		ws->state = STATE_DATA;
		if (ws->itf->on_extension != NULL) {
			if (ws->itf->on_extension(ws->closure,
					FRAME_GET_FIN(ws->header[0]),
					FRAME_GET_RSV1(ws->header[0]),
					FRAME_GET_RSV2(ws->header[0]),
					FRAME_GET_RSV3(ws->header[0]),
					FRAME_GET_OPCODE(ws->header[0]),
					(size_t) ws->length)) {
				return 0;
			}
		}

		/* not an extension case */
		if (FRAME_GET_RSV1(ws->header[0]) != 0)
			goto protocol_error;
		if (FRAME_GET_RSV2(ws->header[0]) != 0)
			goto protocol_error;
		if (FRAME_GET_RSV3(ws->header[0]) != 0)
			goto protocol_error;

		/* handle */
		switch (FRAME_GET_OPCODE(ws->header[0])) {
		case OPCODE_CONTINUATION:
			ws->itf->on_continue(ws->closure,
					     FRAME_GET_FIN(ws->header[0]),
					     (size_t) ws->length);
			break;
		case OPCODE_TEXT:
			ws->itf->on_text(ws->closure,
					 FRAME_GET_FIN(ws->header[0]),
					 (size_t) ws->length);
			break;
		case OPCODE_BINARY:
			ws->itf->on_binary(ws->closure,
					   FRAME_GET_FIN(ws->header[0]),
					   (size_t) ws->length);
			break;
		case OPCODE_CLOSE:
			ws->state = STATE_CLOSED;
			if (ws->length)
				ws->itf->on_close(ws->closure,
						  (uint16_t)((((uint16_t) ws-> header[2]) << 8) | ((uint16_t) ws->header[3])),
						  (size_t) ws->length);
			else
				ws->itf->on_close(ws->closure,
						  WEBSOCKET_CODE_UNSET, 0);
			ws->itf->disconnect(ws->closure);
			return 0;
		default:
			goto protocol_error;
		}
		break;

	case STATE_DATA:
		if (ws->length)
			return 0;
		ws->state = STATE_INIT;
		break;

	case STATE_CLOSED:
		return 0;
	}
	goto loop;

 too_long_error:
	websock_close_code(ws, WEBSOCKET_CODE_MESSAGE_TOO_LARGE);
	return 0;

 protocol_error:
	websock_close_code(ws, WEBSOCKET_CODE_PROTOCOL_ERROR);
	return 0;
}

ssize_t websock_read(struct websock * ws, void *buffer, size_t size)
{
	uint32_t mask, *b32;
	uint8_t m, *b8;
	ssize_t rc;

	if (ws->state != STATE_DATA && ws->state != STATE_CLOSED)
		return 0;

	if (size > ws->length)
		size = (size_t) ws->length;

	rc = ws_read(ws, buffer, size);
	if (rc > 0) {
		size = (size_t) rc;
		ws->length -= size;

		if (ws->mask) {
			mask = ws->mask;
			b8 = buffer;
			while (size && ((sizeof(uint32_t) - 1) & (uintptr_t) b8)) {
				m = ((uint8_t *) & mask)[0];
				((uint8_t *) & mask)[0] = ((uint8_t *) & mask)[1];
				((uint8_t *) & mask)[1] = ((uint8_t *) & mask)[2];
				((uint8_t *) & mask)[2] = ((uint8_t *) & mask)[3];
				((uint8_t *) & mask)[3] = m;
				*b8++ ^= m;
				size--;
			}
			b32 = (uint32_t *) b8;
			while (size >= sizeof(uint32_t)) {
				*b32++ ^= mask;
				size -= sizeof(uint32_t);
			}
			b8 = (uint8_t *) b32;
			while (size) {
				m = ((uint8_t *) & mask)[0];
				((uint8_t *) & mask)[0] = ((uint8_t *) & mask)[1];
				((uint8_t *) & mask)[1] = ((uint8_t *) & mask)[2];
				((uint8_t *) & mask)[2] = ((uint8_t *) & mask)[3];
				((uint8_t *) & mask)[3] = m;
				*b8++ ^= m;
				size--;
			}
			ws->mask = mask;
		}
	}
	return rc;
}

void websock_drop(struct websock *ws)
{
	char buffer[8000];

	while (ws->length && ws_read(ws, buffer, sizeof buffer) >= 0) ;
}

struct websock *websock_create_v13(const struct websock_itf *itf, void *closure)
{
	struct websock *result = calloc(1, sizeof *result);
	if (result) {
		result->itf = itf;
		result->closure = closure;
		result->maxlength = 65000;
	}
	return result;
}

void websock_destroy(struct websock *ws)
{
	free(ws);
}