-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathwebsocket.c
443 lines (388 loc) · 11.3 KB
/
websocket.c
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
/*
* Copyright (C) 2014 - 2024 Micro Systems Marc Balmer, CH-5073 Gipf-Oberfrick
* Copyright (c) 2014 Putilov Andrey
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#include <openssl/opensslconf.h>
#include <openssl/bio.h>
#include <openssl/err.h>
#include <openssl/evp.h>
#include <assert.h>
#include <endian.h>
#include <stdlib.h>
#include <netinet/in.h>
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include "base64.h"
#include "websocket.h"
#define INITIAL_BUFSIZE 256
void
nullHandshake(struct handshake *hs)
{
hs->host = NULL;
hs->origin = NULL;
hs->resource = NULL;
hs->key = NULL;
hs->frameType = WS_EMPTY_FRAME;
}
void
freeHandshake(struct handshake *hs)
{
free(hs->host);
free(hs->origin);
free(hs->resource);
free(hs->key);
nullHandshake(hs);
}
static char *
getUptoLinefeed(const char *startFrom)
{
char *writeTo = NULL;
uint8_t newLength = strstr(startFrom, "\r\n") - startFrom;
assert(newLength);
writeTo = (char *)malloc(newLength + 1);
assert(writeTo);
memcpy(writeTo, startFrom, newLength);
writeTo[newLength] = 0;
return writeTo;
}
enum wsFrameType
wsParseHandshake(const uint8_t *inputFrame, size_t inputLength,
struct handshake *hs)
{
const char *inputPtr = (const char *)inputFrame;
const char *endPtr = (const char *)inputFrame + inputLength;
int connectionFlag = 0;
int upgradeFlag = 0;
int subprotocolFlag = 0;
int versionMismatch = 0;
if (!strstr((const char *)inputFrame, "\r\n\r\n"))
return WS_INCOMPLETE_FRAME;
if (memcmp(inputFrame, "GET ", 4) != 0)
return WS_ERROR_FRAME;
/* measure resource size */
char *first = strchr((const char *)inputFrame, ' ');
if (!first)
return WS_ERROR_FRAME;
first++;
char *second = strchr(first, ' ');
if (!second)
return WS_ERROR_FRAME;
if (hs->resource) {
free(hs->resource);
hs->resource = NULL;
}
hs->resource = (char *)malloc(second - first + 1);
assert(hs->resource);
if (sscanf(inputPtr, "GET %s HTTP/1.1\r\n", hs->resource) != 1)
return WS_ERROR_FRAME;
inputPtr = strstr(inputPtr, "\r\n") + 2;
/* parse next lines */
while (inputPtr < endPtr && inputPtr[0] != '\r'
&& inputPtr[1] != '\n') {
if (!strncasecmp(inputPtr, hostField, strlen(hostField))) {
inputPtr += strlen(hostField);
free(hs->host);
hs->host = getUptoLinefeed(inputPtr);
} else if (!strncasecmp(inputPtr, originField,
strlen(originField))) {
inputPtr += strlen(originField);
free(hs->origin);
hs->origin = getUptoLinefeed(inputPtr);
} else if (!strncasecmp(inputPtr, protocolField,
strlen(protocolField))) {
inputPtr += strlen(protocolField);
subprotocolFlag = 1;
} else if (!strncasecmp(inputPtr, keyField, strlen(keyField))) {
inputPtr += strlen(keyField);
free(hs->key);
hs->key = getUptoLinefeed(inputPtr);
} else if (!strncasecmp(inputPtr, versionField,
strlen(versionField))) {
char *versionString;
inputPtr += strlen(versionField);
versionString = getUptoLinefeed(inputPtr);
if (memcmp(versionString, version, strlen(version)))
versionMismatch = 1;
free(versionString);
} else if (!strncasecmp(inputPtr, connectionField,
strlen(connectionField))) {
char *connectionValue;
inputPtr += strlen(connectionField);
connectionValue = getUptoLinefeed(inputPtr);
assert(connectionValue);
if (strcasestr(connectionValue, upgrade) != NULL)
connectionFlag = 1;
free(connectionValue);
} else if (!strncasecmp(inputPtr, upgradeField,
strlen(upgradeField))) {
char *compare;
inputPtr += strlen(upgradeField);
compare = getUptoLinefeed(inputPtr);
assert(compare);
if (!strncasecmp(compare, websocket, strlen(websocket)))
upgradeFlag = 1;
free(compare);
}
inputPtr = strstr(inputPtr, "\r\n") + 2;
}
/* we have read all data, so check them */
if (!hs->host || !hs->key || !connectionFlag || !upgradeFlag ||
subprotocolFlag || versionMismatch)
hs->frameType = WS_ERROR_FRAME;
else
hs->frameType = WS_OPENING_FRAME;
return hs->frameType;
}
void
wsGetHandshakeAnswer(const struct handshake *hs, uint8_t *outFrame,
size_t *outLength)
{
BIO *bio, *md;
char *responseKey, *b64;
unsigned char mdbuf[EVP_MAX_MD_SIZE];
int mdlen;
assert(outFrame && *outLength);
assert(hs->frameType == WS_OPENING_FRAME);
assert(hs && hs->key);
uint8_t length = strlen(hs->key) + strlen(secret);
responseKey = malloc(length + 1);
memcpy(responseKey, hs->key, strlen(hs->key));
memcpy(&(responseKey[strlen(hs->key)]), secret, strlen(secret));
responseKey[length] = '\0';
/* Setup the message digest BIO chain */
bio = BIO_new(BIO_s_null());
md = BIO_new(BIO_f_md());
BIO_set_md(md, EVP_sha1());
bio = BIO_push(md, bio);
BIO_printf(md, "%s", responseKey);
mdlen = BIO_gets(md, (char *)mdbuf, EVP_MAX_MD_SIZE);
b64 = base64(mdbuf, mdlen);
BIO_free(bio);
size_t written = sprintf((char *)outFrame,
"HTTP/1.1 101 Switching Protocols\r\n"
"%s%s\r\n"
"%s%s\r\n"
"Sec-WebSocket-Accept: %s\r\n\r\n", upgradeField,
websocket, connectionField, upgrade2, b64);
free(b64);
/* if the assert fails, that means, that we corrupt memory */
assert(written <= *outLength);
*outLength = written;
}
static uint64_t
htonll(uint64_t value)
{
uint32_t high, low;
high = htonl(value >> 32);
low = htonl(value & 0xFFFFFFFF);
return (uint64_t)low << 32 | high;
}
void
wsMakeFrame(const uint8_t *data, size_t dataLength, uint8_t *outFrame,
size_t *outLength, enum wsFrameType frameType)
{
assert(outFrame && outLength);
assert(frameType < 0x10);
if (dataLength > 0)
assert(data);
outFrame[0] = 0x80 | frameType;
if (dataLength <= 125) {
outFrame[1] = dataLength;
*outLength = 2;
} else if (dataLength <= 0xFFFF) {
outFrame[1] = 126;
uint16_t payloadLength16b = htons(dataLength);
memcpy(&outFrame[2], &payloadLength16b, 2);
*outLength = 4;
} else {
outFrame[1] = 127;
uint64_t payloadLength64b = htonll((uint64_t)dataLength);
memcpy(&outFrame[2], &payloadLength64b, 8);
*outLength = 10;
}
memcpy(&outFrame[*outLength], data, dataLength);
*outLength += dataLength;
}
size_t
wsGetPayloadLength(const uint8_t *inputFrame, size_t inputLength,
uint8_t *payloadFieldExtraBytes, enum wsFrameType *frameType)
{
size_t payloadLength = inputFrame[1] & 0x7F;
*payloadFieldExtraBytes = 0;
if ((payloadLength == 0x7E && inputLength < 4) ||
(payloadLength == 0x7F && inputLength < 10)) {
*frameType = WS_INCOMPLETE_FRAME;
return 0;
}
if (payloadLength == 0x7F && (inputFrame[3] & 0x80) != 0x0) {
*frameType = WS_ERROR_FRAME;
return 0;
}
if (payloadLength == 0x7E) {
*payloadFieldExtraBytes = 2;
payloadLength = be16toh(*(uint16_t *)&inputFrame[2]);
} else if (payloadLength == 0x7F) {
*payloadFieldExtraBytes = 8;
if (payloadLength > SIZE_MAX) {
*frameType = WS_ERROR_FRAME;
return 0;
}
}
return payloadLength;
}
enum wsFrameType
wsParseInputFrame(uint8_t *inputFrame, size_t inputLength, uint8_t **dataPtr,
size_t *dataLength)
{
assert(inputFrame && inputLength);
uint8_t opcode = inputFrame[0] & 0x0F;
if (opcode == WS_TEXT_FRAME ||
opcode == WS_BINARY_FRAME ||
opcode == WS_CLOSING_FRAME ||
opcode == WS_PING_FRAME ||
opcode == WS_PONG_FRAME) {
enum wsFrameType frameType = opcode;
uint8_t payloadFieldExtraBytes = 0;
size_t payloadLength = wsGetPayloadLength(inputFrame,
inputLength, &payloadFieldExtraBytes, &frameType);
if (payloadLength > 0) {
size_t i;
uint8_t *maskingKey = &inputFrame[2 +
payloadFieldExtraBytes];
assert(payloadLength == inputLength - 6 -
payloadFieldExtraBytes);
*dataPtr = &inputFrame[2 + payloadFieldExtraBytes + 4];
*dataLength = payloadLength;
for (i = 0; i < *dataLength; i++)
(*dataPtr)[i] = (*dataPtr)[i] ^ maskingKey[i%4];
} else {
*dataPtr = NULL;
*dataLength = 0;
}
return opcode;
}
return WS_ERROR_FRAME;
}
enum wsFrameType
wsRead(char **dest, size_t *destlen,
int(*readfunc)(void *, unsigned char *, size_t),
int(*writefunc)(void *, unsigned char *, size_t), void *client_data)
{
unsigned char *data;
char *buf;
size_t bufsize, nread, len, datasize;
int type;
uint8_t payloadFieldExtraBytes = 0;
size_t payloadLength;
enum wsFrameType frameType;
bufsize = INITIAL_BUFSIZE;
buf = malloc(bufsize);
if (buf == NULL)
return -1;
nread = len = 0;
type = WS_INCOMPLETE_FRAME;
do {
/*
* The most common frame header is six bytes long, try to read
* 6 bytes and then determine the actual payload size and read
* the remaining data.
*/
do {
nread = readfunc(client_data, buf, 6);
if (nread <= 0) { /* remote closed */
free(buf);
return -1;
}
len += nread;
} while (len < 2); /* 2 is the minimum */
if (((buf[0] & 0x70) != 0x0) || ((buf[0] & 0x80) != 0x80) ||
((buf[1] & 0x80) != 0x80)) {
free(buf);
return -1;
}
payloadLength = wsGetPayloadLength(buf, len,
&payloadFieldExtraBytes, &frameType);
if (payloadLength + payloadFieldExtraBytes > 0) {
/* Ensure buf can hold the complete payload */
if (6 + payloadFieldExtraBytes + payloadLength >
bufsize) {
bufsize = 6 + payloadFieldExtraBytes +
payloadLength;
buf = realloc(buf, bufsize);
if (buf == NULL)
return -1;
}
do {
nread = readfunc(client_data, buf + len,
payloadLength + payloadFieldExtraBytes);
if (nread <= 0) {
free(buf);
return -1;
}
len += nread;
} while (len < 6 + payloadFieldExtraBytes +
payloadLength);
}
type = wsParseInputFrame((unsigned char *)buf, len, &data,
&datasize);
switch (type) {
case WS_CLOSING_FRAME:
wsMakeFrame(NULL, 0, (unsigned char *)buf, &datasize,
WS_CLOSING_FRAME);
writefunc(client_data, buf, datasize);
free(buf);
return -1;
case WS_PING_FRAME:
if (data)
data[datasize] = '\0';
wsMakeFrame(data, datasize, (unsigned char *)buf,
&datasize, WS_PONG_FRAME);
writefunc(client_data, buf, datasize);
len = 0;
type = WS_INCOMPLETE_FRAME;
break;
case WS_TEXT_FRAME:
if (data) {
data[datasize] = '\0';
*dest = strdup(data);
if (destlen != NULL)
*destlen = datasize;
if (*dest == NULL) {
free(buf);
return -1;
}
} else {
if (destlen != NULL)
*destlen = 0;
*dest = NULL;
}
break;
case WS_INCOMPLETE_FRAME:
break;
default:
free(buf);
return -1;
}
} while (type == WS_INCOMPLETE_FRAME);
free(buf);
return 0;
}