-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
purple-websocket.c
651 lines (551 loc) · 15.5 KB
/
purple-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
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
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
#include <errno.h>
#include <stdint.h>
#include <string.h>
#include <cipher.h>
#include <debug.h>
#include <sslconn.h>
#ifdef _WIN32
#include "win32/win32dep.h"
#else
#include <unistd.h>
#endif
#include "purple-websocket.h"
static const char WS_SALT[] = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
#define WS_FIN 0x80
#define WS_RSV1 0x40
#define WS_RSV2 0x20
#define WS_RSV3 0x10
#define WS_OP_MASK 0x0F
#define WS_OP_CONT 0x00
#define WS_OP_TEXT 0x01
#define WS_OP_BIN 0x02
#define WS_OP_CLOS 0x08
#define WS_OP_PING 0x09
#define WS_OP_PONG 0x0A
#define WS_MASK 0x80
#define MAX_FRAG 64
struct buffer {
guchar *buf;
gsize off; /* next byte to read/write to */
gsize len; /* (expected) size of data in buffer */
gsize siz; /* allocated size of buffer */
};
struct _PurpleWebsocket {
PurpleWebsocketCallback callback;
void *user_data;
char *key;
PurpleProxyConnectData *connection;
PurpleSslConnection *ssl_connection;
int fd;
guint inpa;
struct buffer input, output;
gboolean connected;
PurpleInputCondition closed;
};
static void buffer_set_len(struct buffer *b, size_t n) {
if (n > b->siz) {
b->buf = g_realloc(b->buf, n);
b->siz = n;
}
b->len = n;
}
static inline guchar *buffer_incr(struct buffer *b, size_t n) {
gsize l = b->len;
buffer_set_len(b, l + n);
return &b->buf[l];
}
void purple_websocket_abort(PurpleWebsocket *ws) {
if (ws == NULL)
return;
if (ws->ssl_connection != NULL)
purple_ssl_close(ws->ssl_connection);
if (ws->connection != NULL)
purple_proxy_connect_cancel(ws->connection);
purple_debug_misc("websocket", "removing input %u\n", ws->inpa);
if (ws->inpa > 0)
purple_input_remove(ws->inpa);
if (ws->fd >= 0)
close(ws->fd);
g_free(ws->key);
g_free(ws->output.buf);
g_free(ws->input.buf);
g_free(ws);
}
static void ws_error(PurpleWebsocket *ws, const char *error) {
ws->callback(ws, ws->user_data, PURPLE_WEBSOCKET_ERROR, (const guchar *)error, strlen(error));
purple_websocket_abort(ws);
}
static const char *skip_lws(const char *s) {
while (s) {
switch (*s) {
case ' ':
case '\t':
s++;
break;
case '\r':
if (s[1] == '\n' && (s[2] == ' ' || s[2] == '\t')) {
s += 3;
break;
}
return NULL;
case '\n':
case '\0':
return NULL;
default:
return s;
}
}
return s;
}
static const char *find_header_content(const char *data, const char *name) {
int nlen = strlen(name);
const char *p = data;
while ((p = strstr(p, "\r\n"))) {
p += 2;
if (!g_ascii_strncasecmp(p, name, nlen) && p[nlen] == ':')
return &p[nlen+1];
}
return NULL;
}
static gboolean ws_read_headers(PurpleWebsocket *ws, const char *headers) {
const char *upgrade = skip_lws(find_header_content(headers, "Upgrade"));
if (upgrade && (g_ascii_strncasecmp(upgrade, "websocket", 9) != 0 || skip_lws(upgrade+9)))
upgrade = NULL;
const char *connection = find_header_content(headers, "Connection");
while ((connection = skip_lws(connection)) && g_ascii_strncasecmp(connection, "Upgrade", 7) != 0)
while (*connection++ != ',' && (connection = skip_lws(connection)));
if (connection) {
const char *e = skip_lws(connection+7);
if (e && *e != ',')
connection = NULL;
}
const char *accept = skip_lws(find_header_content(headers, "Sec-WebSocket-Accept"));
if (accept) {
char *k = g_strjoin(NULL, ws->key, WS_SALT, NULL);
size_t l = 20;
guchar s[l];
g_warn_if_fail(purple_cipher_digest_region("sha1", (guchar *)k, strlen(k), l, s, &l));
g_free(k);
gchar *b = g_base64_encode(s, l);
l = strlen(b);
if (strncmp(accept, b, l) != 0 || skip_lws(accept+l))
accept = NULL;
g_free(b);
}
/* TODO: Sec-WebSocket-Extensions, Sec-WebSocket-Protocol */
if (strncmp(headers, "HTTP/1.1 101 ", 13) != 0 || !upgrade || !connection || !accept) {
ws_error(ws, headers);
return FALSE;
}
ws->connected = TRUE;
ws->callback(ws, ws->user_data, PURPLE_WEBSOCKET_OPEN, NULL, 0);
return TRUE;
}
static size_t ws_read_message(PurpleWebsocket *ws) {
uint8_t *input = ws->input.buf;
size_t len = ws->input.off;
size_t off = 0;
struct {
guchar *p;
size_t l;
} frag[MAX_FRAG];
unsigned fi;
for (fi = 0; fi < MAX_FRAG; fi ++) {
#define GETN(N) ({ \
if (len-off < (N)) \
return off+N; \
uint8_t *_p = &input[off]; \
off += N; \
_p; \
})
#define GETB(T) (*(uint8_t*)GETN(1))
#define GET(V) memcpy(&(V), GETN(sizeof(V)), sizeof(V))
if (len-off < 2)
return off+2;
uint8_t header = GETB(uint8_t);
if (header & ~(WS_OP_MASK|WS_FIN)) {
ws_error(ws, "Unsupported RSV flag");
return 0;
}
uint8_t mlen = GETB(uint8_t);
if (mlen & WS_MASK) {
ws_error(ws, "Masked frame");
return 0;
}
uint64_t plen = mlen & ~WS_MASK;
uint16_t tlen;
switch (plen) {
case 127:
GET(plen);
plen = GUINT64_FROM_BE(plen);
break;
case 126:
GET(tlen);
plen = GUINT16_FROM_BE(tlen);
break;
}
frag[fi].l = plen;
frag[fi].p = GETN(plen);
#undef GET
#undef GETB
#undef GETN
if (header & WS_FIN) {
/* consolidate all the fragments after the first */
unsigned i;
for (i = 1; i <= fi; i++) {
memmove(&frag[0].p[frag[0].l], frag[i].p, frag[i].l);
frag[0].l += frag[i].l;
}
purple_debug_misc("websocket", "message %x len %lu\n", input[0], (unsigned long) frag[0].l);
uint8_t op = input[0] & WS_OP_MASK;
switch (op) {
case WS_OP_TEXT:
case WS_OP_BIN:
case WS_OP_PONG:
case WS_OP_CLOS:
ws->callback(ws, ws->user_data, (PurpleWebsocketOp)op, frag[0].p, frag[0].l);
if (op == WS_OP_CLOS) {
ws->closed |= PURPLE_INPUT_READ;
if (ws->closed & PURPLE_INPUT_WRITE) {
purple_websocket_abort(ws);
return 0;
} else
purple_websocket_send(ws, PURPLE_WEBSOCKET_CLOSE, NULL, 0);
}
break;
case WS_OP_PING:
purple_websocket_send(ws, PURPLE_WEBSOCKET_PONG, frag[0].p, frag[0].l);
break;
default:
ws_error(ws, "Unknown frame op");
return 0;
}
return off;
}
}
ws_error(ws, "Maximum fragment count exceeded");
return 0;
}
static void ws_input_cb(gpointer data, gint source, PurpleInputCondition cond);
static gboolean ws_input(PurpleWebsocket *ws) {
if (ws->inpa) {
purple_input_remove(ws->inpa);
ws->inpa = 0;
}
if (ws->output.off) {
/* always none left in practice: */
memmove(ws->output.buf, ws->output.buf + ws->output.off, ws->output.len -= ws->output.off);
ws->output.off = 0;
}
PurpleInputCondition cond = (ws->ssl_connection ? 0 : PURPLE_INPUT_READ); /* permanent purple_ssl_input_add for ssl */
if (ws->output.len)
cond |= PURPLE_INPUT_WRITE;
else if (ws->closed & PURPLE_INPUT_READ) {
purple_websocket_abort(ws);
return FALSE;
}
if (cond != 0)
ws->inpa = purple_input_add(ws->fd, cond, ws_input_cb, ws);
return TRUE;
}
static void ws_input_cb(gpointer data, G_GNUC_UNUSED gint source, PurpleInputCondition cond) {
PurpleWebsocket *ws = data;
if (cond & PURPLE_INPUT_WRITE) {
gssize len = ws->output.off >= ws->output.len ? 0 :
ws->ssl_connection
? purple_ssl_write(ws->ssl_connection, ws->output.buf + ws->output.off, ws->output.len - ws->output.off)
: write(ws->fd, ws->output.buf + ws->output.off, ws->output.len - ws->output.off);
if (len < 0) {
if (errno != EAGAIN) {
ws_error(ws, g_strerror(errno));
return;
}
} else if ((ws->output.off += len) >= ws->output.len) {
g_assert(ws->output.off == ws->output.len);
if (!ws_input(ws))
return;
}
/*
gchar *enc = purple_base16_encode(ws->output.buf + ws->output.off, len);
purple_debug_misc("websocket", "send: %s\n", enc);
g_free(enc);
*/
}
while (cond & PURPLE_INPUT_READ) {
g_return_if_fail(ws->input.off < ws->input.len);
gssize len = ws->ssl_connection
? purple_ssl_read(ws->ssl_connection, ws->input.buf + ws->input.off, ws->input.siz - ws->input.off)
: read(ws->fd, ws->input.buf + ws->input.off, ws->input.siz - ws->input.off);
if (len < 0) {
if (errno != EAGAIN) {
ws_error(ws, g_strerror(errno));
return;
}
cond &= ~PURPLE_INPUT_READ;
}
else if (len == 0) {
ws_error(ws, "Connection closed");
return;
} else {
/*
gchar *enc = purple_base16_encode(ws->input.buf + ws->input.off, len);
purple_debug_misc("websocket", "recv %zu/%zu: %s\n", ws->input.off+len, ws->input.len, enc);
g_free(enc);
*/
ws->input.off += len;
if (!ws->connected) {
/* search for the end of headers in the new block (backing up 4-1) */
char *resp = (char *)ws->input.buf;
int backup = len + 3;
if (backup > ws->input.off)
backup = ws->input.off;
char *eoh = g_strstr_len(resp + ws->input.off - backup, backup, "\r\n\r\n");
if (eoh) {
/* got all the headers now */
*eoh = '\0';
eoh += 4;
if (!ws_read_headers(ws, resp))
return;
memmove(ws->input.buf, eoh, ws->input.off -= eoh - resp);
ws->input.len = 2;
}
else if (ws->input.off >= ws->input.len) {
ws_error(ws, "Response headers too long");
return;
}
else
return;
}
while (ws->input.off >= ws->input.len) {
size_t r = ws_read_message(ws);
if (!r) /* error */
return;
else if (r > ws->input.off) {
/* need more */
buffer_set_len(&ws->input, r);
} else {
/* consumed some */
memmove(ws->input.buf, ws->input.buf + r, ws->input.off -= r);
ws->input.len = 2;
}
}
}
}
}
void purple_websocket_send(PurpleWebsocket *ws, PurpleWebsocketOp op, const guchar *msg, size_t len) {
g_return_if_fail(ws);
g_return_if_fail(ws->connected && !(ws->closed & PURPLE_INPUT_WRITE));
g_return_if_fail(!(op & ~WS_OP_MASK));
gboolean buf = ws->output.len;
#define ADDB(V) (*(uint8_t*)buffer_incr(&ws->output, 1) = (V))
#define ADD(T, V) ({ \
T _v = (V); \
memcpy(buffer_incr(&ws->output, sizeof(T)), &_v, sizeof(T)); \
})
ADDB(WS_FIN | op);
if (len > UINT16_MAX) {
ADDB(WS_MASK | 127);
ADD(uint64_t, GUINT64_TO_BE(len));
} else if (len >= 126) {
ADDB(WS_MASK | 126);
ADD(uint16_t, GUINT16_TO_BE(len));
} else {
ADDB(WS_MASK | len);
}
uint32_t mask = g_random_int();
ADD(uint32_t, mask);
#undef ADD
#undef ADDB
guchar *p = buffer_incr(&ws->output, len);
size_t i;
for (i = 0; i+3 < len; i+=4) {
uint32_t m = *(uint32_t*)&msg[i] ^ mask;
memcpy(&p[i], &m, 4);
}
for (; i < len; i++)
p[i] = msg[i] ^ ((uint8_t*)&mask)[i&3];
if (op == PURPLE_WEBSOCKET_CLOSE)
ws->closed |= PURPLE_INPUT_WRITE;
if (!buf)
ws_input(ws);
}
static void wss_input_cb(gpointer data, G_GNUC_UNUSED PurpleSslConnection *ssl_connection, PurpleInputCondition cond)
{
PurpleWebsocket *ws = data;
ws_input_cb(data, ws->fd, cond);
}
static void wss_connect_cb(gpointer data, PurpleSslConnection *ssl_connection, G_GNUC_UNUSED PurpleInputCondition cond) {
PurpleWebsocket *ws = data;
ws->fd = ssl_connection->fd;
purple_ssl_input_add(ws->ssl_connection, wss_input_cb, ws);
if (ws_input(ws))
ws_input_cb(ws, ws->fd, PURPLE_INPUT_WRITE);
}
static void wss_error_cb(G_GNUC_UNUSED PurpleSslConnection *ssl_connection, PurpleSslErrorType error, gpointer data) {
PurpleWebsocket *ws = data;
ws->ssl_connection = NULL;
ws_error(ws, purple_ssl_strerror(error));
}
static void ws_connect_cb(gpointer data, gint source, const gchar *error_message) {
PurpleWebsocket *ws = data;
ws->connection = NULL;
if (source == -1) {
ws_error(ws, error_message ?: "Unable to connect to websocket");
return;
}
ws->fd = source;
if (ws_input(ws))
ws_input_cb(ws, ws->fd, PURPLE_INPUT_WRITE);
}
/**
* Like purple_url_parse() but for longer URLs
*/
static gboolean
purple_long_url_parse(const char *url, char **ret_host, int *ret_port,
char **ret_path, char **ret_user, char **ret_passwd)
{
gboolean is_https = FALSE;
const char * scan_info;
char port_str[6];
int f;
const char *at, *slash;
const char *turl;
char host[256], path[2560], user[256], passwd[256];
int port = 0;
/* hyphen at end includes it in control set */
#define ADDR_CTRL "A-Za-z0-9.-"
#define PORT_CTRL "0-9"
#define PAGE_CTRL "A-Za-z0-9.~_/:*!@&%%?=+^-"
#define USER_CTRL "A-Za-z0-9.~_/*!&%%?=+^-"
#define PASSWD_CTRL "A-Za-z0-9.~_/*!&%%?=+^-"
g_return_val_if_fail(url != NULL, FALSE);
if ((turl = purple_strcasestr(url, "http://")) != NULL)
{
turl += 7;
url = turl;
}
else if ((turl = purple_strcasestr(url, "https://")) != NULL)
{
is_https = TRUE;
turl += 8;
url = turl;
}
/* parse out authentication information if supplied */
/* Only care about @ char BEFORE the first / */
at = strchr(url, '@');
slash = strchr(url, '/');
f = 0;
if (at && (!slash || at < slash)) {
scan_info = "%255[" USER_CTRL "]:%255[" PASSWD_CTRL "]^@";
f = sscanf(url, scan_info, user, passwd);
if (f == 1) {
/* No passwd, possibly just username supplied */
scan_info = "%255[" USER_CTRL "]^@";
f = sscanf(url, scan_info, user);
}
url = at+1; /* move pointer after the @ char */
}
if (f < 1) {
*user = '\0';
*passwd = '\0';
} else if (f == 1)
*passwd = '\0';
scan_info = "%255[" ADDR_CTRL "]:%5[" PORT_CTRL "]/%2559[" PAGE_CTRL "]";
f = sscanf(url, scan_info, host, port_str, path);
if (f == 1)
{
scan_info = "%255[" ADDR_CTRL "]/%2559[" PAGE_CTRL "]";
f = sscanf(url, scan_info, host, path);
/* Use the default port */
if (is_https)
g_snprintf(port_str, sizeof(port_str), "443");
else
g_snprintf(port_str, sizeof(port_str), "80");
}
if (f == 0)
*host = '\0';
if (f <= 1)
*path = '\0';
if (sscanf(port_str, "%d", &port) != 1)
purple_debug_error("util", "Error parsing URL port from %s\n", url);
if (ret_host != NULL) *ret_host = g_strdup(host);
if (ret_port != NULL) *ret_port = port;
if (ret_path != NULL) *ret_path = g_strdup(path);
if (ret_user != NULL) *ret_user = g_strdup(user);
if (ret_passwd != NULL) *ret_passwd = g_strdup(passwd);
return ((*host != '\0') ? TRUE : FALSE);
#undef ADDR_CTRL
#undef PORT_CTRL
#undef PAGE_CTRL
#undef USER_CTRL
#undef PASSWD_CTRL
}
PurpleWebsocket *purple_websocket_connect(PurpleAccount *account,
const char *url, const char *protocol,
PurpleWebsocketCallback callback, void *user_data) {
gboolean ssl = FALSE;
if (!g_ascii_strncasecmp(url, "ws://", 5)) {
ssl = FALSE;
url += 5;
}
else if (!g_ascii_strncasecmp(url, "wss://", 6)) {
ssl = TRUE;
url += 6;
}
else if (!g_ascii_strncasecmp(url, "http://", 7)) {
ssl = FALSE;
url += 7;
}
else if (!g_ascii_strncasecmp(url, "https://", 8)) {
ssl = TRUE;
url += 8;
}
PurpleWebsocket *ws = g_new0(PurpleWebsocket, 1);
ws->callback = callback;
ws->user_data = user_data;
ws->fd = -1;
char *host, *path;
int port;
if (!purple_long_url_parse(url, &host, &port, &path, NULL, NULL));
else {
/* hack to fix default port */
if (ssl && port == 80)
port = 443;
guint32 key[4] = {
g_random_int(),
g_random_int(),
g_random_int(),
g_random_int()
};
ws->key = g_base64_encode((guchar*)key, 16);
GString *request = g_string_new(NULL);
g_string_printf(request, "\
GET /%s HTTP/1.1\r\n\
Host: %s\r\n\
Connection: Upgrade\r\n\
Upgrade: websocket\r\n\
Sec-WebSocket-Key: %s\r\n\
Sec-WebSocket-Version: 13\r\n", path, host, ws->key);
if (protocol)
g_string_append_printf(request, "Sec-WebSocket-Protocol: %s\r\n", protocol);
g_string_append(request, "\r\n");
ws->output.len = request->len;
ws->output.siz = request->allocated_len;
ws->output.buf = (guchar *)g_string_free(request, FALSE);
/* allocate space for responses (headers) */
buffer_set_len(&ws->input, 4096);
if (ssl)
ws->ssl_connection = purple_ssl_connect(account, host, port,
wss_connect_cb, wss_error_cb, ws);
else
ws->connection = purple_proxy_connect(NULL, account, host, port,
ws_connect_cb, ws);
g_free(host);
g_free(path);
}
if (!(ws->ssl_connection || ws->connection)) {
ws_error(ws, "Unable to connect to websocket");
return NULL;
}
return ws;
}