forked from swoole/swoole-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swoole_websocket_server.cc
695 lines (612 loc) · 23.4 KB
/
swoole_websocket_server.cc
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
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
/*
+----------------------------------------------------------------------+
| Swoole |
+----------------------------------------------------------------------+
| This source file is subject to version 2.0 of the Apache license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.apache.org/licenses/LICENSE-2.0.html |
| If you did not receive a copy of the Apache2.0 license and are unable|
| to obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Tianfeng Han <[email protected]> |
+----------------------------------------------------------------------+
*/
#include "php_swoole.h"
#include "swoole_http.h"
#include "swoole_coroutine.h"
extern "C"
{
#include "ext/standard/url.h"
#include "ext/standard/sha1.h"
#include "ext/standard/php_var.h"
#include "ext/standard/php_string.h"
#include "ext/date/php_date.h"
#include "main/php_variables.h"
}
#include "websocket.h"
#include "connection.h"
#include "base64.h"
#include "thirdparty/swoole_http_parser.h"
static zend_class_entry swoole_websocket_server_ce;
zend_class_entry *swoole_websocket_server_ce_ptr;
static zend_object_handlers swoole_websocket_server_handlers;
static zend_class_entry swoole_websocket_frame_ce;
zend_class_entry *swoole_websocket_frame_ce_ptr;
static zend_object_handlers swoole_websocket_frame_handlers;
static zend_class_entry swoole_websocket_closeframe_ce;
static zend_class_entry *swoole_websocket_closeframe_ce_ptr;
static zend_object_handlers swoole_websocket_closeframe_handlers;
static int websocket_handshake(swListenPort *, http_context *);
static PHP_METHOD(swoole_websocket_server, push);
static PHP_METHOD(swoole_websocket_server, exist);
static PHP_METHOD(swoole_websocket_server, isEstablished);
static PHP_METHOD(swoole_websocket_server, pack);
static PHP_METHOD(swoole_websocket_server, unpack);
static PHP_METHOD(swoole_websocket_server, disconnect);
static PHP_METHOD(swoole_websocket_frame, __toString);
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_websocket_server_push, 0, 0, 2)
ZEND_ARG_INFO(0, fd)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, opcode)
ZEND_ARG_INFO(0, finish)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_websocket_server_disconnect, 0, 0, 1)
ZEND_ARG_INFO(0, fd)
ZEND_ARG_INFO(0, code)
ZEND_ARG_INFO(0, reason)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_websocket_server_pack, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_ARG_INFO(0, opcode)
ZEND_ARG_INFO(0, finish)
ZEND_ARG_INFO(0, mask)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_websocket_server_unpack, 0, 0, 1)
ZEND_ARG_INFO(0, data)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_websocket_server_exist, 0, 0, 1)
ZEND_ARG_INFO(0, fd)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_websocket_server_isEstablished, 0, 0, 1)
ZEND_ARG_INFO(0, fd)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_websocket_frame_void, 0, 0, 0)
ZEND_END_ARG_INFO()
const zend_function_entry swoole_websocket_server_methods[] =
{
PHP_ME(swoole_websocket_server, push, arginfo_swoole_websocket_server_push, ZEND_ACC_PUBLIC)
PHP_ME(swoole_websocket_server, disconnect, arginfo_swoole_websocket_server_disconnect, ZEND_ACC_PUBLIC)
PHP_ME(swoole_websocket_server, exist, arginfo_swoole_websocket_server_exist, ZEND_ACC_PUBLIC)
PHP_ME(swoole_websocket_server, isEstablished, arginfo_swoole_websocket_server_isEstablished, ZEND_ACC_PUBLIC)
PHP_ME(swoole_websocket_server, pack, arginfo_swoole_websocket_server_pack, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
PHP_ME(swoole_websocket_server, unpack, arginfo_swoole_websocket_server_unpack, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
PHP_FE_END
};
const zend_function_entry swoole_websocket_frame_methods[] =
{
PHP_ME(swoole_websocket_frame, __toString, arginfo_swoole_websocket_frame_void, ZEND_ACC_PUBLIC)
PHP_ME(swoole_websocket_server, pack, arginfo_swoole_websocket_server_pack, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
PHP_ME(swoole_websocket_server, unpack, arginfo_swoole_websocket_server_unpack, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
PHP_FE_END
};
static void php_swoole_websocket_construct_frame(zval *zframe, zend_long opcode, char *payload, size_t payload_length, zend_bool finish)
{
if (opcode == WEBSOCKET_OPCODE_CLOSE)
{
object_init_ex(zframe, swoole_websocket_closeframe_ce_ptr);
if (payload_length >= SW_WEBSOCKET_CLOSE_CODE_LEN)
{
// WebSocket Close code
zend_update_property_long(
swoole_websocket_closeframe_ce_ptr, zframe, ZEND_STRL("code"),
(payload[0] << 8) ^ (payload[1] & 0xFF)
);
if (payload_length > SW_WEBSOCKET_CLOSE_CODE_LEN)
{
// WebSocket Close reason message
zend_update_property_stringl(
swoole_websocket_closeframe_ce_ptr, zframe, ZEND_STRL("reason"),
payload + SW_WEBSOCKET_CLOSE_CODE_LEN, payload_length - SW_WEBSOCKET_CLOSE_CODE_LEN
);
}
}
}
else
{
object_init_ex(zframe, swoole_websocket_frame_ce_ptr);
zend_update_property_stringl(swoole_websocket_frame_ce_ptr, zframe, ZEND_STRL("data"), payload, payload_length);
}
zend_update_property_bool(swoole_websocket_frame_ce_ptr, zframe, ZEND_STRL("finish"), finish);
zend_update_property_long(swoole_websocket_frame_ce_ptr, zframe, ZEND_STRL("opcode"), opcode);
}
void php_swoole_websocket_frame_unpack(swString *data, zval *zframe)
{
swWebSocket_frame frame;
if (data->length < sizeof(frame.header))
{
ZVAL_BOOL(zframe, 0);
return;
}
swWebSocket_decode(&frame, data);
php_swoole_websocket_construct_frame(zframe, frame.header.OPCODE, frame.payload, frame.payload_length, frame.header.FIN);
}
int php_swoole_websocket_frame_pack(swString *buffer, zval *zdata, zend_bool opcode, zend_bool fin, zend_bool mask)
{
char *data = NULL;
size_t length = 0;
zend_long code = WEBSOCKET_CLOSE_NORMAL;
if (Z_TYPE_P(zdata) == IS_OBJECT && instanceof_function(Z_OBJCE_P(zdata), swoole_websocket_frame_ce_ptr))
{
zval *zframe = zdata;
zval *ztmp = NULL;
zdata = NULL;
if ((ztmp = sw_zend_read_property(swoole_websocket_frame_ce_ptr, zframe, ZEND_STRL("opcode"), 1)))
{
convert_to_long(ztmp);
opcode = Z_LVAL_P(ztmp);
}
if (opcode == WEBSOCKET_OPCODE_CLOSE)
{
if ((ztmp = sw_zend_read_property_not_null(swoole_websocket_frame_ce_ptr, zframe, ZEND_STRL("code"), 1)))
{
convert_to_long(ztmp);
code = Z_LVAL_P(ztmp);
}
if ((ztmp = sw_zend_read_property_not_null(swoole_websocket_frame_ce_ptr, zframe, ZEND_STRL("reason"), 1)))
{
zdata = ztmp;
}
}
if (!zdata && (ztmp = sw_zend_read_property(swoole_websocket_frame_ce_ptr, zframe, ZEND_STRL("data"), 1)))
{
zdata = ztmp;
}
if ((ztmp = sw_zend_read_property(swoole_websocket_frame_ce_ptr, zframe, ZEND_STRL("finish"), 1)))
{
convert_to_boolean(ztmp);
fin = Z_BVAL_P(ztmp);
}
if ((ztmp = sw_zend_read_property(swoole_websocket_frame_ce_ptr, zframe, ZEND_STRL("mask"), 1)))
{
convert_to_boolean(ztmp);
mask = Z_BVAL_P(ztmp);
}
}
if (unlikely(opcode > SW_WEBSOCKET_OPCODE_MAX))
{
swoole_php_fatal_error(E_WARNING, "the maximum value of opcode is %d.", SW_WEBSOCKET_OPCODE_MAX);
return SW_ERR;
}
if (zdata && !ZVAL_IS_NULL(zdata))
{
convert_to_string(zdata);
data = Z_STRVAL_P(zdata);
length = Z_STRLEN_P(zdata);
}
switch(opcode)
{
case WEBSOCKET_OPCODE_CLOSE:
return swWebSocket_pack_close_frame(buffer, code, data, length, mask);
default:
swWebSocket_encode(buffer, data, length, opcode, fin, mask);
}
return SW_OK;
}
void swoole_websocket_onOpen(swServer *serv, http_context *ctx)
{
int fd = ctx->fd;
swConnection *conn = swWorker_get_connection(serv, fd);
if (!conn)
{
swoole_error_log(SW_LOG_NOTICE, SW_ERROR_SESSION_CLOSED, "session[%d] is closed.", fd);
return;
}
zend_fcall_info_cache *fci_cache = php_swoole_server_get_fci_cache(serv, conn->from_fd, SW_SERVER_CB_onOpen);
if (!fci_cache)
{
return;
}
zval *zserv = (zval *) serv->ptr2;
zval *zrequest_object = ctx->request.zobject;
zval args[2];
args[0] = *zserv;
args[1] = *zrequest_object;
if (SwooleG.enable_coroutine)
{
if (sw_coro_create(fci_cache, 2, args) < 0)
{
swoole_php_error(E_WARNING, "create onOpen coroutine error.");
serv->close(serv, fd, 0);
return;
}
}
else
{
zval _retval, *retval = &_retval;
if (sw_call_user_function_fast_ex(NULL, fci_cache, retval, 2, args) == FAILURE)
{
swoole_php_error(E_WARNING, "onOpen handler error.");
}
zval_ptr_dtor(retval);
}
}
/**
* default onRequest callback
*/
void swoole_websocket_onRequest(http_context *ctx)
{
const char *bad_request =
"HTTP/1.1 400 Bad Request\r\n"
"Connection: close\r\n"
"Content-Type: text/html; charset=UTF-8\r\n"
"Cache-Control: must-revalidate,no-cache,no-store\r\n"
"Content-Length: 83\r\n"
"Server: " SW_HTTP_SERVER_SOFTWARE "\r\n\r\n"
"<html><body><h2>HTTP 400 Bad Request</h2><hr><i>Powered by Swoole</i></body></html>";
swServer_tcp_send(SwooleG.serv, ctx->fd, (char *) bad_request, strlen(bad_request));
ctx->end = 1;
swServer_tcp_close(SwooleG.serv, ctx->fd, 0);
swoole_http_context_free(ctx);
}
void php_swoole_sha1(const char *str, int _len, unsigned char *digest)
{
PHP_SHA1_CTX context;
PHP_SHA1Init(&context);
PHP_SHA1Update(&context, (unsigned char *) str, _len);
PHP_SHA1Final(digest, &context);
}
static int websocket_handshake(swServer *serv, swListenPort *port, http_context *ctx)
{
zval *header = ctx->request.zheader;
HashTable *ht = Z_ARRVAL_P(header);
zval *pData;
if (!(pData = zend_hash_str_find(ht, ZEND_STRL("sec-websocket-key"))))
{
php_error_docref(NULL, E_WARNING, "header no sec-websocket-key");
return SW_ERR;
}
convert_to_string(pData);
swString_clear(swoole_http_buffer);
swString_append_ptr(swoole_http_buffer, ZEND_STRL("HTTP/1.1 101 Switching Protocols\r\nUpgrade: websocket\r\nConnection: Upgrade\r\n"));
int n;
char sec_websocket_accept[128];
memcpy(sec_websocket_accept, Z_STRVAL_P(pData), Z_STRLEN_P(pData));
memcpy(sec_websocket_accept + Z_STRLEN_P(pData), SW_WEBSOCKET_GUID, sizeof(SW_WEBSOCKET_GUID) - 1);
char sha1_str[20];
bzero(sha1_str, sizeof(sha1_str));
php_swoole_sha1(sec_websocket_accept, Z_STRLEN_P(pData) + sizeof(SW_WEBSOCKET_GUID) - 1, (unsigned char *) sha1_str);
char encoded_str[50];
bzero(encoded_str, sizeof(encoded_str));
n = swBase64_encode((unsigned char *) sha1_str, sizeof(sha1_str), encoded_str);
char _buf[128];
n = snprintf(_buf, sizeof(_buf), "Sec-WebSocket-Accept: %*s\r\n", n, encoded_str);
swString_append_ptr(swoole_http_buffer, _buf, n);
swString_append_ptr(swoole_http_buffer, ZEND_STRL("Sec-WebSocket-Version: " SW_WEBSOCKET_VERSION "\r\n"));
if (port->websocket_subprotocol)
{
swString_append_ptr(swoole_http_buffer, ZEND_STRL("Sec-WebSocket-Protocol: "));
swString_append_ptr(swoole_http_buffer, port->websocket_subprotocol, port->websocket_subprotocol_length);
swString_append_ptr(swoole_http_buffer, ZEND_STRL("\r\n"));
}
swString_append_ptr(swoole_http_buffer, ZEND_STRL("Server: " SW_WEBSOCKET_SERVER_SOFTWARE "\r\n\r\n"));
swTrace("websocket header len:%ld\n%s \n", swoole_http_buffer->length, swoole_http_buffer->str);
swConnection *conn = swWorker_get_connection(serv, ctx->fd);
if (!conn)
{
swoole_error_log(SW_LOG_NOTICE, SW_ERROR_SESSION_CLOSED, "session[%d] is closed.", ctx->fd);
return SW_ERR;
}
conn->websocket_status = WEBSOCKET_STATUS_ACTIVE;
return serv->send(serv, ctx->fd, swoole_http_buffer->str, swoole_http_buffer->length);
}
int swoole_websocket_onMessage(swServer *serv, swEventData *req)
{
int fd = req->info.fd;
zend_bool finish = 0;
zend_long opcode = 0;
zval *zdata;
SW_MAKE_STD_ZVAL(zdata);
char frame_header[2];
php_swoole_get_recv_data(zdata, req, frame_header, SW_WEBSOCKET_HEADER_LEN);
// frame info has already decoded in swWebSocket_dispatch_frame
finish = frame_header[0] ? 1 : 0;
opcode = frame_header[1];
if (opcode == WEBSOCKET_OPCODE_CLOSE)
{
if (!SwooleG.serv->listen_list->open_websocket_close_frame)
{
zval_ptr_dtor(zdata);
return SW_OK;
}
}
zval *zframe;
SW_MAKE_STD_ZVAL(zframe);
php_swoole_websocket_construct_frame(zframe, opcode, Z_STRVAL_P(zdata), Z_STRLEN_P(zdata), finish);
zend_update_property_long(swoole_websocket_frame_ce_ptr, zframe, ZEND_STRL("fd"), fd);
zend_fcall_info_cache *fci_cache = php_swoole_server_get_fci_cache(serv, req->info.from_fd, SW_SERVER_CB_onMessage);
zval args[2];
args[0] = *(zval *) serv->ptr2; // zserver
args[1] = *zframe;
if (SwooleG.enable_coroutine)
{
if (sw_coro_create(fci_cache, 2, args) < 0)
{
swoole_php_error(E_WARNING, "create onMessage coroutine error.");
SwooleG.serv->factory.end(&SwooleG.serv->factory, fd);
}
}
else
{
zval _retval, *retval = &_retval;
if (sw_call_user_function_fast_ex(NULL, fci_cache, retval, 2, args) == FAILURE)
{
swoole_php_error(E_WARNING, "onMessage handler error.");
}
zval_ptr_dtor(retval);
}
zval_ptr_dtor(zdata);
zval_ptr_dtor(zframe);
return SW_OK;
}
int swoole_websocket_onHandshake(swServer *serv, swListenPort *port, http_context *ctx)
{
int fd = ctx->fd;
int ret = websocket_handshake(serv, port, ctx);
if (ret == SW_ERR)
{
swServer_tcp_close(serv, fd, 1);
}
else
{
swoole_websocket_onOpen(serv, ctx);
}
//free client data
if (!ctx->end)
{
swoole_http_context_free(ctx);
}
return SW_OK;
}
void swoole_websocket_init(int module_number)
{
SWOOLE_INIT_CLASS_ENTRY_EX(swoole_websocket_server, "Swoole\\WebSocket\\Server", "swoole_websocket_server", NULL, swoole_websocket_server_methods, swoole_http_server);
SWOOLE_SET_CLASS_SERIALIZABLE(swoole_websocket_server, zend_class_serialize_deny, zend_class_unserialize_deny);
SWOOLE_SET_CLASS_CLONEABLE(swoole_websocket_server, zend_class_clone_deny);
SWOOLE_SET_CLASS_UNSET_PROPERTY_HANDLER(swoole_websocket_server, zend_class_unset_property_deny);
SWOOLE_INIT_CLASS_ENTRY(swoole_websocket_frame, "Swoole\\WebSocket\\Frame", "swoole_websocket_frame", NULL, swoole_websocket_frame_methods);
SWOOLE_INIT_CLASS_ENTRY_EX(swoole_websocket_closeframe, "Swoole\\WebSocket\\CloseFrame", "swoole_websocket_closeframe", NULL, NULL, swoole_websocket_frame);
zend_declare_property_long(swoole_websocket_frame_ce_ptr, ZEND_STRL("fd"), 0, ZEND_ACC_PUBLIC);
zend_declare_property_string(swoole_websocket_frame_ce_ptr, ZEND_STRL("data"), "", ZEND_ACC_PUBLIC);
zend_declare_property_long(swoole_websocket_frame_ce_ptr, ZEND_STRL("opcode"), WEBSOCKET_OPCODE_TEXT, ZEND_ACC_PUBLIC);
zend_declare_property_bool(swoole_websocket_frame_ce_ptr, ZEND_STRL("finish"), 1, ZEND_ACC_PUBLIC);
zend_declare_property_long(swoole_websocket_closeframe_ce_ptr, ZEND_STRL("opcode"), WEBSOCKET_OPCODE_CLOSE, ZEND_ACC_PUBLIC);
zend_declare_property_long(swoole_websocket_closeframe_ce_ptr, ZEND_STRL("code"), WEBSOCKET_CLOSE_NORMAL, ZEND_ACC_PUBLIC);
zend_declare_property_string(swoole_websocket_closeframe_ce_ptr, ZEND_STRL("reason"), "", ZEND_ACC_PUBLIC);
// status
SWOOLE_RAW_DEFINE(WEBSOCKET_STATUS_CONNECTION);
SWOOLE_RAW_DEFINE(WEBSOCKET_STATUS_HANDSHAKE);
REGISTER_LONG_CONSTANT("WEBSOCKET_STATUS_FRAME", WEBSOCKET_STATUS_ACTIVE, CONST_CS | CONST_PERSISTENT);
SWOOLE_RAW_DEFINE(WEBSOCKET_STATUS_ACTIVE);
SWOOLE_RAW_DEFINE(WEBSOCKET_STATUS_CLOSING);
// all opcodes
SWOOLE_RAW_DEFINE(WEBSOCKET_OPCODE_CONTINUATION);
SWOOLE_RAW_DEFINE(WEBSOCKET_OPCODE_TEXT);
SWOOLE_RAW_DEFINE(WEBSOCKET_OPCODE_BINARY);
SWOOLE_RAW_DEFINE(WEBSOCKET_OPCODE_CLOSE);
SWOOLE_RAW_DEFINE(WEBSOCKET_OPCODE_PING);
SWOOLE_RAW_DEFINE(WEBSOCKET_OPCODE_PONG);
// close error
SWOOLE_RAW_DEFINE(WEBSOCKET_CLOSE_NORMAL);
SWOOLE_RAW_DEFINE(WEBSOCKET_CLOSE_GOING_AWAY);
SWOOLE_RAW_DEFINE(WEBSOCKET_CLOSE_PROTOCOL_ERROR);
SWOOLE_RAW_DEFINE(WEBSOCKET_CLOSE_DATA_ERROR);
SWOOLE_RAW_DEFINE(WEBSOCKET_CLOSE_STATUS_ERROR);
SWOOLE_RAW_DEFINE(WEBSOCKET_CLOSE_ABNORMAL);
SWOOLE_RAW_DEFINE(WEBSOCKET_CLOSE_MESSAGE_ERROR);
SWOOLE_RAW_DEFINE(WEBSOCKET_CLOSE_POLICY_ERROR);
SWOOLE_RAW_DEFINE(WEBSOCKET_CLOSE_MESSAGE_TOO_BIG);
SWOOLE_RAW_DEFINE(WEBSOCKET_CLOSE_EXTENSION_MISSING);
SWOOLE_RAW_DEFINE(WEBSOCKET_CLOSE_SERVER_ERROR);
SWOOLE_RAW_DEFINE(WEBSOCKET_CLOSE_TLS);
}
static sw_inline int swoole_websocket_server_push(swServer *serv, int fd, swString *buffer)
{
if (unlikely(fd <= 0))
{
swoole_php_fatal_error(E_WARNING, "fd[%d] is invalid.", fd);
return SW_ERR;
}
swConnection *conn = swWorker_get_connection(serv, fd);
if (!conn || conn->websocket_status < WEBSOCKET_STATUS_HANDSHAKE)
{
SwooleG.error = SW_ERROR_WEBSOCKET_UNCONNECTED;
swoole_php_fatal_error(E_WARNING, "the connected client of connection[%d] is not a websocket client or closed.", (int ) fd);
return SW_ERR;
}
int ret = swServer_tcp_send(SwooleG.serv, fd, buffer->str, buffer->length);
if (ret < 0 && SwooleG.error == SW_ERROR_OUTPUT_BUFFER_OVERFLOW && serv->send_yield)
{
zval _return_value;
zval *return_value = &_return_value;
zval _yield_data;
ZVAL_STRINGL(&_yield_data, buffer->str, buffer->length);
ZVAL_FALSE(return_value);
php_swoole_server_send_yield(serv, fd, &_yield_data, return_value);
ret = Z_BVAL_P(return_value) ? SW_OK : SW_ERR;
}
return ret;
}
static sw_inline int swoole_websocket_server_close(swServer *serv, int fd, swString *buffer, uint8_t real_close)
{
int ret = swoole_websocket_server_push(serv, fd, buffer);
if (ret < 0 || !real_close)
{
return ret;
}
swConnection *conn = swWorker_get_connection(serv, fd);
if (conn)
{
// Change status immediately to avoid double close
conn->websocket_status = WEBSOCKET_STATUS_CLOSING;
// Server close connection immediately
return serv->close(serv, fd, SW_FALSE);
}
else
{
return SW_ERR;
}
}
static PHP_METHOD(swoole_websocket_server, disconnect)
{
zend_long fd = 0;
zend_long code = WEBSOCKET_CLOSE_NORMAL;
char *data = NULL;
size_t length = 0;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|ls", &fd, &code, &data, &length) == FAILURE)
{
RETURN_FALSE;
}
swString_clear(swoole_http_buffer);
if (swWebSocket_pack_close_frame(swoole_http_buffer, code, data, length, 0) < 0)
{
RETURN_FALSE;
}
swServer *serv = (swServer *) swoole_get_object(getThis());
SW_CHECK_RETURN(swoole_websocket_server_close(serv, fd, swoole_http_buffer, 1));
}
static PHP_METHOD(swoole_websocket_server, push)
{
zend_long fd = 0;
zval *zdata = NULL;
zend_long opcode = WEBSOCKET_OPCODE_TEXT;
zend_bool fin = 1;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "lz|lb", &fd, &zdata, &opcode, &fin) == FAILURE)
{
RETURN_FALSE;
}
swString_clear(swoole_http_buffer);
if (php_swoole_websocket_frame_pack(swoole_http_buffer, zdata, opcode, fin, 0) < 0)
{
RETURN_FALSE;
}
swServer *serv = (swServer *) swoole_get_object(getThis());
switch (opcode)
{
case WEBSOCKET_OPCODE_CLOSE:
SW_CHECK_RETURN(swoole_websocket_server_close(serv, fd, swoole_http_buffer, fin));
break;
default:
SW_CHECK_RETURN(swoole_websocket_server_push(serv, fd, swoole_http_buffer));
}
}
static PHP_METHOD(swoole_websocket_server, pack)
{
swString *buffer = SwooleTG.buffer_stack;
zval *zdata = NULL;
zend_long opcode = WEBSOCKET_OPCODE_TEXT;
zend_bool fin = 1;
zend_bool mask = 0;
if (zend_parse_parameters(ZEND_NUM_ARGS(), "z|lbb", &zdata, &opcode, &fin, &mask) == FAILURE)
{
RETURN_FALSE;
}
swString_clear(buffer);
if (php_swoole_websocket_frame_pack(buffer, zdata, opcode, fin, mask) < 0)
{
RETURN_EMPTY_STRING();
}
else
{
RETVAL_STRINGL(buffer->str, buffer->length);
}
}
static PHP_METHOD(swoole_websocket_frame, __toString)
{
swString *buffer = SwooleTG.buffer_stack;
zval *zdata = getThis();
swString_clear(buffer);
if (php_swoole_websocket_frame_pack(buffer, zdata, WEBSOCKET_OPCODE_TEXT, 1, 0) < 0)
{
RETURN_EMPTY_STRING();
}
else
{
RETVAL_STRINGL(buffer->str, buffer->length);
}
}
static PHP_METHOD(swoole_websocket_server, unpack)
{
swString buffer;
bzero(&buffer, sizeof(buffer));
if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &buffer.str, &buffer.length) == FAILURE)
{
RETURN_FALSE;
}
php_swoole_websocket_frame_unpack(&buffer, return_value);
}
static PHP_METHOD(swoole_websocket_server, exist)
{
zend_long fd;
swServer *serv = (swServer *) swoole_get_object(getThis());
if (serv->gs->start == 0)
{
php_error_docref(NULL, E_WARNING, "the server is not running.");
RETURN_FALSE;
}
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &fd) == FAILURE)
{
RETURN_FALSE;
}
swConnection *conn = swWorker_get_connection(serv, fd);
if (!conn)
{
RETURN_FALSE;
}
//connection is closed
if (conn->active == 0 || conn->closed)
{
RETURN_FALSE;
}
swConnection *server_sock = swServer_connection_get(serv, conn->from_fd);
if (server_sock)
{
swListenPort *port = (swListenPort *) server_sock->object;
//not websocket port
if (port && !port->open_websocket_protocol)
{
RETURN_TRUE;
}
}
//have not handshake
if (conn->websocket_status < WEBSOCKET_STATUS_ACTIVE)
{
RETURN_FALSE;
}
RETURN_TRUE;
}
static PHP_METHOD(swoole_websocket_server, isEstablished)
{
zend_long fd;
swServer *serv = (swServer *) swoole_get_object(getThis());
if (serv->gs->start == 0)
{
php_error_docref(NULL, E_WARNING, "the server is not running.");
RETURN_FALSE;
}
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &fd) == FAILURE)
{
RETURN_FALSE;
}
swConnection *conn = swWorker_get_connection(serv, fd);
//not isEstablished
if (!conn || conn->active == 0 || conn->closed || conn->websocket_status < WEBSOCKET_STATUS_ACTIVE)
{
RETURN_FALSE;
}
else
{
RETURN_TRUE;
}
}