-
Notifications
You must be signed in to change notification settings - Fork 1
/
WebSocketClient.cpp
386 lines (311 loc) · 9.28 KB
/
WebSocketClient.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
// You can comment this out to disable debugging
#define DEBUGGING
#include "global.h"
#include "WebSocketClient.h"
#include "sha1.h"
#include "base64.h"
bool WebSocketClient::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()) {
#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("Invalid handshake"));
#endif
disconnectStream();
return false;
}
} else {
return false;
}
}
bool WebSocketClient::analyzeRequest() {
String temp;
int bite;
bool foundupgrade = false;
unsigned long intkey[2];
String serverKey;
char keyStart[17];
char b64Key[25];
//String key = "------------------------";
String key = "dGhlIHNhbXBsZSBub25jZQ==";
randomSeed(analogRead(0));
for (int i=0; i<16; ++i) {
keyStart[i] = (char)random(1, 256);
}
base64_encode(b64Key, keyStart, 16);
for (int i=0; i<24; ++i) {
key[i] = b64Key[i];
}
#ifdef DEBUGGING
Serial.println(F("Sending websocket upgrade headers"));
#endif
socket_client->print(F("GET "));
socket_client->print(path);
socket_client->print(F(" HTTP/1.1\r\n"));
socket_client->print(F("Upgrade: websocket\r\n"));
socket_client->print(F("Connection: Upgrade\r\n"));
socket_client->print(F("Host: "));
socket_client->print(host);
socket_client->print(CRLF);
socket_client->print(F("Sec-WebSocket-Key: "));
socket_client->print(key);
socket_client->print(CRLF);
//socket_client->print(F("Sec-WebSocket-Origin: "));
//socket_client->print(origin);
//socket_client->print(CRLF);
socket_client->print(F("Sec-WebSocket-Version: 13\r\n"));
socket_client->print(CRLF);
#ifdef DEBUGGING
Serial.println(F("Analyzing response headers"));
#endif
while (socket_client->connected() && !socket_client->available()) {
delay(100);
Serial.println("Waiting...");
}
// TODO: More robust string extraction
while ((bite = socket_client->read()) != -1) {
temp += (char)bite;
if ((char)bite == '\n') {
#ifdef DEBUGGING
Serial.print("Got Header: " + temp);
#endif
if (!foundupgrade && temp.startsWith("Upgrade: websocket")) {
foundupgrade = true;
} else if (temp.startsWith("Sec-WebSocket-Accept: ")) {
serverKey = temp.substring(22,temp.length() - 2); // Don't save last CR+LF
}
temp = "";
}
if (!socket_client->available()) {
delay(20);
}
}
key += "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
uint8_t *hash;
char result[21];
char b64Result[30];
Sha1.init();
Sha1.print(key);
hash = Sha1.result();
for (int i=0; i<20; ++i) {
result[i] = (char)hash[i];
}
result[20] = '\0';
base64_encode(b64Result, result, 20);
// if the keys match, good to go
return serverKey.equals(String(b64Result));
}
String WebSocketClient::handleStream() {
uint8_t msgtype;
uint8_t bite;
unsigned int length;
uint8_t mask[4];
uint8_t index;
unsigned int i;
bool hasMask = false;
// String to hold bytes sent by server to client
String socketString;
if (socket_client->connected() && socket_client->available()) {
msgtype = timedRead();
if (!socket_client->connected()) {
return socketString;
}
length = timedRead();
if (length & WS_MASK) {
hasMask = true;
length = length & ~WS_MASK;
}
if (!socket_client->connected()) {
return socketString;
}
index = 6;
if (length == WS_SIZE16) {
length = timedRead() << 8;
if (!socket_client->connected()) {
return socketString;
}
length |= timedRead();
if (!socket_client->connected()) {
return socketString;
}
} else if (length == WS_SIZE64) {
#ifdef DEBUGGING
Serial.println(F("Message is larger than 16 bit, attempting to read."));
#endif
length = timedRead() << 14;
if (!socket_client->connected()) {
return socketString;
}
length |= timedRead();
if (!socket_client->connected()) {
return socketString;
}
Serial.println(F("Message attempt finalized."));
}
if (hasMask) {
// 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;
}
}
if (hasMask) {
for (i=0; i<length; ++i) {
socketString += (char) (timedRead() ^ mask[i % 4]);
if (!socket_client->connected()) {
return socketString;
}
}
} else {
for (i=0; i<length; ++i) {
socketString += (char) timedRead();
if (!socket_client->connected()) {
return socketString;
}
}
}
}
return socketString;
}
void WebSocketClient::disconnectStream() {
#ifdef DEBUGGING
Serial.println(F("Terminating socket"));
#endif
// Should send 0x8700 to server to tell it I'm quitting here.
socket_client->write((uint8_t) 0x87);
socket_client->write((uint8_t) 0x00);
socket_client->flush();
delay(10);
socket_client->stop();
}
String WebSocketClient::getData() {
String data;
data = handleStream();
return data;
}
void WebSocketClient::sendData(const char *str) {
#ifdef DEBUGGING
Serial.print(F("Sending data: "));
Serial.println(str);
#endif
if (socket_client->connected()) {
sendEncodedData(str);
}
}
void WebSocketClient::sendData(String str) {
#ifdef DEBUGGING
Serial.print(F("Sending data: "));
Serial.println(str);
#endif
if (socket_client->connected()) {
sendEncodedData(str);
}
}
void WebSocketClient::sendData(const char *str, uint8_t opcode) {
#ifdef DEBUGGING
Serial.print(F("Sending data: "));
Serial.println(str);
#endif
if (socket_client->connected()) {
sendEncodedData(str, opcode);
}
}
void WebSocketClient::sendData(String str, uint8_t opcode) {
#ifdef DEBUGGING
Serial.print(F("Sending data: "));
Serial.println(str);
#endif
if (socket_client->connected()) {
sendEncodedData(str, opcode);
}
}
int WebSocketClient::timedRead() {
while (!socket_client->available()) {
delay(20);
}
return socket_client->read();
}
void WebSocketClient::sendEncodedData(char *str) {
int size = strlen(str);
// string type
socket_client->write(0x81);
// NOTE: no support for > 16-bit sized messages
if (size > 125) {
socket_client->write(126);
socket_client->write((uint8_t) (size >> 8) & 0xFF);
socket_client->write((uint8_t) (size & 0xFF));
} else if (size <= 125) {
socket_client->write((uint8_t) size);
} else {
Serial.print(F("Websocket: Message is too big to send."));
Serial.println(F("Only messages up to 65535 bytes are allowed."));
}
for (int i=0; i<size; ++i) {
socket_client->write(str[i]);
}
}
void WebSocketClient::sendEncodedData(String str) {
int size = str.length() + 1;
char cstr[size];
str.toCharArray(cstr, size);
sendEncodedData(cstr);
}
void WebSocketClient::sendEncodedData(char *str, uint8_t opcode) {
uint8_t mask[4];
int size = strlen(str);
// Opcode; final fragment
socket_client->write(opcode | WS_FIN);
if (size > 125) {
if(size == 126) {
socket_client->write(WS_SIZE16 | WS_MASK);
socket_client->write((uint8_t) (size >> 8));
socket_client->write((uint8_t) (size & 0xFF));
} else if(size == 127) {
socket_client->write(WS_SIZE64 | WS_MASK);
socket_client->write((uint8_t) (size >> 14));
socket_client->write((uint8_t) (size & 0xFF));
}
} else {
socket_client->write((uint8_t) size | WS_MASK);
}
mask[0] = random(0, 256);
mask[1] = random(0, 256);
mask[2] = random(0, 256);
mask[3] = random(0, 256);
socket_client->write(mask[0]);
socket_client->write(mask[1]);
socket_client->write(mask[2]);
socket_client->write(mask[3]);
for (int i=0; i<size; ++i) {
socket_client->write(str[i] ^ mask[i % 4]);
}
}
void WebSocketClient::sendEncodedData(String str, uint8_t opcode) {
int size = str.length() + 1;
char cstr[size];
str.toCharArray(cstr, size);
sendEncodedData(cstr, opcode);
}