This repository has been archived by the owner on May 17, 2019. It is now read-only.
forked from brandenhall/Arduino-Websocket
-
Notifications
You must be signed in to change notification settings - Fork 118
/
WebSocketServer.cpp
500 lines (417 loc) · 14.1 KB
/
WebSocketServer.cpp
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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
//#define DEBUGGING
//#define SUPPORT_HIXIE_76
//MS:
#include "global.h"
#include "WebSocketServer.h"
#ifdef SUPPORT_HIXIE_76
#include "MD5.c"
#endif
#include "sha1.h"
#include "Base64.h"
bool WebSocketServer::handshake(Client &client) {
socket_client = &client;
// If there is a connected client->
if (socket_client->connected()) {
// Check request and look for websocket handshake
#ifdef DEBUGGING
Serial.println(F("Client connected"));
#endif
if (analyzeRequest(BUFFER_LENGTH)) {
#ifdef DEBUGGING
Serial.println(F("Websocket established"));
#endif
return true;
} else {
// Might just need to break until out of socket_client loop.
#ifdef DEBUGGING
Serial.println(F("Disconnecting client"));
#endif
terminateStream(0x87);
return false;
}
} else {
return false;
}
}
bool WebSocketServer::analyzeRequest(int bufferLength) {
// Use String library to do some sort of read() magic here.
String temp,tempLc;
int charpos;
int bite;
bool foundupgrade = false;
#ifdef SUPPORT_HIXIE_76
String oldkey[2];
unsigned long intkey[2];
#endif
String newkey;
hixie76style = false;
#ifdef DEBUGGING
Serial.println(F("Analyzing request headers"));
#endif
for (int i = 0; i < 10 && !socket_client->available(); i++) {
delay(20);
}
// TODO: More robust string extraction
while ((bite = socket_client->read()) != -1) {
temp += (char)bite;
if ((char)bite == '\n') {
// Recieved CRNL without content, so header is done
#ifndef SUPPORT_HIXIE_76
if (temp.charAt(0) == '\r') break;
#endif
#ifdef DEBUGGING
Serial.print("Got Line: " + temp);
#endif
// Preserve mixed case vor values
tempLc = temp;
// Remove whitespaces and convert to lowercase to comply
// http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html
tempLc.toLowerCase();
while ((charpos = temp.indexOf(' ')) != -1) {
temp.remove(charpos,1);
}
if (!foundupgrade && tempLc.startsWith("upgrade:") && temp.indexOf("WebSocket") != -1) {
// OK, it's a websockets handshake for sure
foundupgrade = true;
hixie76style = true;
} else if (!foundupgrade && tempLc.startsWith("upgrade:") && temp.indexOf("websocket") != -1) {
foundupgrade = true;
hixie76style = false;
} else if (tempLc.startsWith("origin:")) {
origin = temp.substring(7,temp.length() - 2); // Don't save last CR+LF
} else
#ifdef SUPPORT_HIXIE_76
if (tempLc.startsWith("host:")) {
host = temp.substring(5,temp.length() - 2); // Don't save last CR+LF
} else if (tempLcLc.startsWith("sec-websocket-key1:")) {
oldkey[0]=tempLc.substring(19,temp.length() - 2); // Don't save last CR+LF
} else if (temp.startsWith("sec-websocket-key2:")) {
oldkey[1]=tempLc.substring(19,temp.length() - 2); // Don't save last CR+LF
} else
#endif
if (tempLc.startsWith("sec-websocket-key:")) {
newkey=temp.substring(18,temp.length() - 2); // Don't save last CR+LF
}
temp = "";
}
if (!socket_client->available()) {
delay(20);
}
}
if (!socket_client->connected()) {
return false;
}
temp += 0; // Terminate string
// Assert that we have all headers that are needed. If so, go ahead and
// send response headers.
if (foundupgrade == true) {
#ifdef SUPPORT_HIXIE_76
if (hixie76style && host.length() > 0 && oldkey[0].length() > 0 && oldkey[1].length() > 0) {
// All ok, proceed with challenge and MD5 digest
char key3[9] = {0};
// What now is in temp should be the third key
temp.toCharArray(key3, 9);
// Process keys
for (int i = 0; i <= 1; i++) {
unsigned int spaces =0;
String numbers;
for (int c = 0; c < oldkey[i].length(); c++) {
char ac = oldkey[i].charAt(c);
if (ac >= '0' && ac <= '9') {
numbers += ac;
}
if (ac == ' ') {
spaces++;
}
}
char numberschar[numbers.length() + 1];
numbers.toCharArray(numberschar, numbers.length()+1);
intkey[i] = strtoul(numberschar, NULL, 10) / spaces;
}
unsigned char challenge[16] = {0};
challenge[0] = (unsigned char) ((intkey[0] >> 24) & 0xFF);
challenge[1] = (unsigned char) ((intkey[0] >> 16) & 0xFF);
challenge[2] = (unsigned char) ((intkey[0] >> 8) & 0xFF);
challenge[3] = (unsigned char) ((intkey[0] ) & 0xFF);
challenge[4] = (unsigned char) ((intkey[1] >> 24) & 0xFF);
challenge[5] = (unsigned char) ((intkey[1] >> 16) & 0xFF);
challenge[6] = (unsigned char) ((intkey[1] >> 8) & 0xFF);
challenge[7] = (unsigned char) ((intkey[1] ) & 0xFF);
memcpy(challenge + 8, key3, 8);
unsigned char md5Digest[16];
MD5(challenge, md5Digest, 16);
socket_client->print(F("HTTP/1.1 101 Web Socket Protocol Handshake\r\n"));
socket_client->print(F("Upgrade: WebSocket\r\n"));
socket_client->print(F("Connection: Upgrade\r\n"));
socket_client->print(F("Sec-WebSocket-Origin: "));
socket_client->print(origin);
socket_client->print(CRLF);
// The "Host:" value should be used as location
socket_client->print(F("Sec-WebSocket-Location: ws://"));
socket_client->print(host);
socket_client->print(socket_urlPrefix);
socket_client->print(CRLF);
socket_client->print(CRLF);
socket_client->write(md5Digest, 16);
return true;
}
#endif
if (!hixie76style && newkey.length() > 0) {
// add the magic string
newkey += "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
uint8_t *hash;
char result[21];
char b64Result[30];
SHA1Context sha;
int err;
uint8_t Message_Digest[20];
Serial.println("Calculating");
err = SHA1Reset(&sha);
err = SHA1Input(&sha, reinterpret_cast<const uint8_t *>(newkey.c_str()), newkey.length());
err = SHA1Result(&sha, Message_Digest);
hash = Message_Digest;
for (int i=0; i<20; ++i) {
result[i] = (char)hash[i];
}
result[20] = '\0';
base64_encode(b64Result, result, 20);
Serial.println("Sending");
char * response = (char*)malloc(200);
sprintf(response, "HTTP/1.1 101 Web Socket Protocol Handshake\r\nUpgrade: websocket\r\nConnection: Upgrade\r\nSec-WebSocket-Accept: %s\r\n\r\n", b64Result);
socket_client->print(response);
#ifdef DEBUGGING
Serial.print(response);
#endif
free(response);
return true;
} else {
// something went horribly wrong
return false;
}
} else {
// Nope, failed handshake. Disconnect
#ifdef DEBUGGING
Serial.println(F("Header mismatch"));
#endif
return false;
}
}
#ifdef SUPPORT_HIXIE_76
String WebSocketServer::handleHixie76Stream() {
int bite;
int frameLength = 0;
// String to hold bytes sent by client to server.
String socketString;
if (socket_client->connected() && socket_client->available()) {
bite = timedRead();
if (bite != -1) {
if (bite == 0)
continue; // Frame start, don't save
if ((uint8_t) bite == 0xFF) {
// Frame end. Process what we got.
return socketString;
} else {
socketString += (char)bite;
frameLength++;
if (frameLength > MAX_FRAME_LENGTH) {
// Too big to handle!
#ifdef DEBUGGING
Serial.print("Client send frame exceeding ");
Serial.print(MAX_FRAME_LENGTH);
Serial.println(" bytes");
#endif
return;
}
}
}
}
return socketString;
}
#endif
String WebSocketServer::handleStream() {
uint8_t msgtype;
unsigned int length;
uint8_t mask[4];
unsigned int i;
// String to hold bytes sent by client to server.
String socketString;
if (socket_client->connected() && socket_client->available()) {
msgtype = timedRead();
if (msgtype == 0x88) {
disconnectStream();
return socketString;
}
if (!socket_client->connected()) {
return socketString;
}
length = timedRead() & 127;
if (!socket_client->connected()) {
return socketString;
}
if (length == 126) {
length = timedRead() << 8;
if (!socket_client->connected()) {
return socketString;
}
length |= timedRead();
if (!socket_client->connected()) {
return socketString;
}
} else if (length == 127) {
#ifdef DEBUGGING
Serial.println(F("No support for over 16 bit sized messages"));
#endif
terminateStream(0x89);
return socketString;
}
// get the mask
mask[0] = timedRead();
if (!socket_client->connected()) {
return socketString;
}
mask[1] = timedRead();
if (!socket_client->connected()) {
return socketString;
}
mask[2] = timedRead();
if (!socket_client->connected()) {
return socketString;
}
mask[3] = timedRead();
if (!socket_client->connected()) {
return socketString;
}
for (i=0; i<length; ++i) {
socketString += (char) (timedRead() ^ mask[i % 4]);
if (!socket_client->connected()) {
return socketString;
}
}
if (msgtype == 0x89) {
sendPong(socketString);
} else if (msgtype == 0x8A) {
#ifdef DEBUGGING
Serial.println(F("Received pong"));
#endif
return socketString;
}
}
return socketString;
}
void WebSocketServer::terminateStream(uint8_t cause) {
#ifdef DEBUGGING
Serial.println(F("Terminating socket"));
#endif
if (hixie76style) {
#ifdef SUPPORT_HIXIE_76
// Should send 0xFF00 to server to tell it I'm quitting here.
socket_client->write((uint8_t) 0xFF);
socket_client->write((uint8_t) 0x00);
#endif
} else {
// Should send termination sequence (87,88,89) to server to tell it I'm quitting here.
socket_client->write((uint8_t) cause);
socket_client->write((uint8_t) 0x00);
}
socket_client->flush();
delay(10);
socket_client->stop();
}
void WebSocketServer::disconnectStream() {
#ifdef DEBUGGING
Serial.println(F("Disconnecting socket"));
#endif
if (hixie76style) {
#ifdef SUPPORT_HIXIE_76
// Should send 0xFF00 to server to tell it I'm quitting here.
socket_client->write((uint8_t) 0xFF);
socket_client->write((uint8_t) 0x00);
#endif
} else {
// Should send 0x8800 to server to tell it I'm quitting here.
socket_client->write((uint8_t) 0x88);
socket_client->write((uint8_t) 0x00);
}
socket_client->flush();
delay(10);
socket_client->stop();
}
String WebSocketServer::getData() {
String data;
if (hixie76style) {
#ifdef SUPPORT_HIXIE_76
data = handleHixie76Stream();
#endif
} else {
data = handleStream();
}
return data;
}
void WebSocketServer::sendData(const char *str) {
#ifdef DEBUGGING
Serial.print(F("Sending data: "));
Serial.println(str);
#endif
if (socket_client->connected()) {
if (hixie76style) {
socket_client->write(0x00); // Frame start
socket_client->print(str);
socket_client->write(0xFF); // Frame end
} else {
sendEncodedData(str, 0x81);
}
}
}
void WebSocketServer::sendData(String str) {
#ifdef DEBUGGING
Serial.print(F("Sending data: "));
Serial.println(str);
#endif
if (socket_client->connected()) {
if (hixie76style) {
socket_client->write(0x00); // Frame start
socket_client->print(str);
socket_client->write(0xFF); // Frame end
} else {
sendEncodedData(str, 0x81);
}
}
}
int WebSocketServer::timedRead() {
while (!socket_client->available()) {
delay(20);
}
return socket_client->read();
}
void WebSocketServer::sendEncodedData(char *str, uint8_t opcode) {
int size = strlen(str);
// string type
socket_client->write(opcode);
// NOTE: no support for > 16-bit sized messages
if (size > 125) {
socket_client->write(126);
socket_client->write((uint8_t) (size >> 8));
socket_client->write((uint8_t) (size & 0xFF));
} else {
socket_client->write((uint8_t) size);
}
socket_client->print(str);
}
void WebSocketServer::sendEncodedData(String str, uint8_t opcode) {
int size = str.length() + 1;
char cstr[size];
str.toCharArray(cstr, size);
sendEncodedData(cstr, opcode);
}
void WebSocketServer::sendPing(String str) {
sendEncodedData(str, 0x89);
}
void WebSocketServer::sendPing(const char *str) {
sendEncodedData(str, 0x89);
}
void WebSocketServer::sendPong(String str) {
sendEncodedData(str, 0x8A);
}
void WebSocketServer::sendPong(const char *str) {
sendEncodedData(str, 0x8A);
}