-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathswoole_http_server_coro.cc
745 lines (652 loc) Β· 26.8 KB
/
swoole_http_server_coro.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
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
/*
+----------------------------------------------------------------------+
| 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_http_server.h"
#include <string>
#include <map>
BEGIN_EXTERN_C()
#include "stubs/php_swoole_http_server_coro_arginfo.h"
END_EXTERN_C()
using swoole::Coroutine;
using swoole::microtime;
using swoole::PHPCoroutine;
using swoole::Server;
using swoole::String;
using swoole::coroutine::Socket;
using swoole::coroutine::System;
using HttpRequest = swoole::http::Request;
using HttpResponse = swoole::http::Response;
using HttpContext = swoole::http::Context;
namespace http2 = swoole::http2;
using Http2Stream = http2::Stream;
using Http2Session = http2::Session;
static zend_class_entry *swoole_http_server_coro_ce;
static zend_object_handlers swoole_http_server_coro_handlers;
static bool http_context_send_data(HttpContext *ctx, const char *data, size_t length);
static bool http_context_sendfile(HttpContext *ctx, const char *file, uint32_t l_file, off_t offset, size_t length);
static bool http_context_disconnect(HttpContext *ctx);
static void http2_server_onRequest(Http2Session *session, Http2Stream *stream);
namespace swoole {
namespace coroutine {
class HttpServer {
public:
Socket *socket;
zend::Callable *default_handler;
std::unordered_map<std::string, zend::Callable *> handlers;
bool running;
zval zclients;
/* options */
bool parse_cookie;
bool parse_post;
bool parse_files;
#ifdef SW_HAVE_COMPRESSION
bool compression;
#endif
#ifdef SW_HAVE_ZLIB
bool websocket_compression;
#endif
char *upload_tmp_dir;
#ifdef SW_HAVE_COMPRESSION
uint8_t compression_level;
uint32_t compression_min_length;
std::shared_ptr<std::unordered_set<std::string>> compression_types = nullptr;
#endif
HttpServer(enum swSocketType type) {
socket = new Socket(type);
default_handler = nullptr;
array_init(&zclients);
running = true;
parse_cookie = true;
parse_post = true;
parse_files = false;
#ifdef SW_HAVE_COMPRESSION
compression = true;
compression_level = SW_Z_BEST_SPEED;
compression_min_length = SW_COMPRESSION_MIN_LENGTH_DEFAULT;
#endif
#ifdef SW_HAVE_ZLIB
websocket_compression = false;
#endif
upload_tmp_dir = sw_strdup("/tmp");
}
~HttpServer() {
sw_free(upload_tmp_dir);
zval_ptr_dtor(&zclients);
for (auto i = handlers.begin(); i != handlers.end(); i++) {
sw_callable_free(i->second);
}
delete socket;
}
bool set_handler(std::string pattern, zval *zfn) {
auto cb = sw_callable_create(zfn);
if (!cb) {
return false;
}
if (handlers.find(pattern) != handlers.end()) {
sw_callable_free(handlers[pattern]);
}
handlers[pattern] = cb;
if (pattern == "/") {
default_handler = cb;
}
return true;
}
zend::Callable *get_handler(HttpContext *ctx) {
for (auto i = handlers.begin(); i != handlers.end(); i++) {
if (i->second == default_handler) {
continue;
}
if (swoole_str_istarts_with(
ctx->request.path, ctx->request.path_len, i->first.c_str(), i->first.length())) {
return i->second;
}
}
return default_handler;
}
HttpContext *create_context(Socket *conn, zval *zconn) {
HttpContext *ctx = swoole_http_context_new(conn->get_fd());
ctx->parse_body = parse_post;
ctx->parse_cookie = parse_cookie;
ctx->parse_files = parse_files;
#ifdef SW_HAVE_COMPRESSION
ctx->enable_compression = compression;
ctx->compression_level = compression_level;
ctx->compression_min_length = compression_min_length;
ctx->compression_types = compression_types;
#endif
#ifdef SW_HAVE_ZLIB
ctx->websocket_compression = websocket_compression;
#endif
ctx->upload_tmp_dir = upload_tmp_dir;
ctx->bind(conn);
swoole_http_parser *parser = &ctx->parser;
parser->data = ctx;
swoole_http_parser_init(parser, PHP_HTTP_REQUEST);
zend_update_property_ex(
swoole_http_response_ce, SW_Z8_OBJ_P(ctx->response.zobject), SW_ZSTR_KNOWN(SW_ZEND_STR_SOCKET), zconn);
return ctx;
}
void recv_http2_frame(HttpContext *ctx) {
Socket *sock = (Socket *) ctx->private_data;
http2::send_setting_frame(&sock->protocol, sock->get_socket());
sock->open_length_check = true;
sock->protocol.package_length_size = SW_HTTP2_FRAME_HEADER_SIZE;
sock->protocol.package_length_offset = 0;
sock->protocol.package_body_offset = 0;
sock->protocol.get_package_length = http2::get_frame_length;
Http2Session session(ctx->fd);
session.default_ctx = ctx;
session.handle = http2_server_onRequest;
session.private_data = this;
session.is_coro = true;
while (true) {
auto buffer = sock->get_read_buffer();
ssize_t retval = sock->recv_packet();
if (sw_unlikely(retval <= 0)) {
break;
}
swoole_http2_server_parse(&session, buffer->str);
}
/* default_ctx does not blong to session object */
session.default_ctx = nullptr;
ctx->detached = 1;
zval_dtor(ctx->request.zobject);
zval_dtor(ctx->response.zobject);
}
};
}; // namespace coroutine
}; // namespace swoole
using swoole::coroutine::HttpServer;
struct HttpServerObject {
HttpServer *server;
zend_object std;
};
SW_EXTERN_C_BEGIN
static PHP_METHOD(swoole_http_server_coro, __construct);
static PHP_METHOD(swoole_http_server_coro, set);
static PHP_METHOD(swoole_http_server_coro, handle);
static PHP_METHOD(swoole_http_server_coro, start);
static PHP_METHOD(swoole_http_server_coro, shutdown);
static PHP_METHOD(swoole_http_server_coro, onAccept);
SW_EXTERN_C_END
// clang-format off
static const zend_function_entry swoole_http_server_coro_methods[] =
{
PHP_ME(swoole_http_server_coro, __construct, arginfo_class_Swoole_Coroutine_Http_Server___construct, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_server_coro, set, arginfo_class_Swoole_Coroutine_Http_Server_set, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_server_coro, handle, arginfo_class_Swoole_Coroutine_Http_Server_handle, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_server_coro, onAccept, arginfo_class_Swoole_Coroutine_Http_Server_onAccept, ZEND_ACC_PRIVATE)
PHP_ME(swoole_http_server_coro, start, arginfo_class_Swoole_Coroutine_Http_Server_start, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_server_coro, shutdown, arginfo_class_Swoole_Coroutine_Http_Server_shutdown, ZEND_ACC_PUBLIC)
PHP_FE_END
};
// clang-format on
static zend_object *php_swoole_http_server_coro_create_object(zend_class_entry *ce) {
HttpServerObject *hsc = (HttpServerObject *) zend_object_alloc(sizeof(HttpServerObject), ce);
zend_object_std_init(&hsc->std, ce);
object_properties_init(&hsc->std, ce);
hsc->std.handlers = &swoole_http_server_coro_handlers;
return &hsc->std;
}
static sw_inline HttpServerObject *php_swoole_http_server_coro_fetch_object(zend_object *obj) {
return (HttpServerObject *) ((char *) obj - swoole_http_server_coro_handlers.offset);
}
static sw_inline HttpServer *http_server_get_object(zend_object *obj) {
return php_swoole_http_server_coro_fetch_object(obj)->server;
}
static inline void http_server_set_error(zval *zobject, Socket *sock) {
zend_update_property_long(swoole_http_server_coro_ce, SW_Z8_OBJ_P(zobject), ZEND_STRL("errCode"), sock->errCode);
zend_update_property_string(swoole_http_server_coro_ce, SW_Z8_OBJ_P(zobject), ZEND_STRL("errMsg"), sock->errMsg);
}
static bool http_context_send_data(HttpContext *ctx, const char *data, size_t length) {
Socket *sock = (Socket *) ctx->private_data;
return sock->send_all(data, length) == (ssize_t) length;
}
static bool http_context_sendfile(HttpContext *ctx, const char *file, uint32_t l_file, off_t offset, size_t length) {
Socket *sock = (Socket *) ctx->private_data;
return sock->sendfile(file, offset, length);
}
static bool http_context_disconnect(HttpContext *ctx) {
Socket *sock = (Socket *) ctx->private_data;
return sock->close();
}
static void php_swoole_http_server_coro_free_object(zend_object *object) {
HttpServerObject *hsc = php_swoole_http_server_coro_fetch_object(object);
if (hsc->server) {
HttpServer *hs = hsc->server;
delete hs;
}
zend_object_std_dtor(&hsc->std);
}
void HttpContext::init(Socket *sock) {
parse_cookie = 1;
parse_body = 1;
parse_files = 1;
#ifdef SW_HAVE_COMPRESSION
enable_compression = 1;
compression_level = SW_Z_BEST_SPEED;
#endif
#ifdef SW_HAVE_ZLIB
websocket_compression = 0;
#endif
upload_tmp_dir = "/tmp";
bind(sock);
}
void HttpContext::bind(Socket *sock) {
private_data = sock;
co_socket = 1;
send = http_context_send_data;
sendfile = http_context_sendfile;
close = http_context_disconnect;
}
void php_swoole_http_server_coro_minit(int module_number) {
SW_INIT_CLASS_ENTRY(swoole_http_server_coro,
"Swoole\\Coroutine\\Http\\Server",
"Co\\Http\\Server",
swoole_http_server_coro_methods);
SW_SET_CLASS_NOT_SERIALIZABLE(swoole_http_server_coro);
SW_SET_CLASS_CLONEABLE(swoole_http_server_coro, sw_zend_class_clone_deny);
SW_SET_CLASS_UNSET_PROPERTY_HANDLER(swoole_http_server_coro, sw_zend_class_unset_property_deny);
SW_SET_CLASS_CREATE_WITH_ITS_OWN_HANDLERS(swoole_http_server_coro);
SW_SET_CLASS_CUSTOM_OBJECT(swoole_http_server_coro,
php_swoole_http_server_coro_create_object,
php_swoole_http_server_coro_free_object,
HttpServerObject,
std);
swoole_http_server_coro_ce->ce_flags |= ZEND_ACC_FINAL;
zend_declare_property_long(swoole_http_server_coro_ce, ZEND_STRL("fd"), -1, ZEND_ACC_PUBLIC);
zend_declare_property_null(swoole_http_server_coro_ce, ZEND_STRL("host"), ZEND_ACC_PUBLIC);
zend_declare_property_long(swoole_http_server_coro_ce, ZEND_STRL("port"), -1, ZEND_ACC_PUBLIC);
zend_declare_property_bool(swoole_http_server_coro_ce, ZEND_STRL("ssl"), 0, ZEND_ACC_PUBLIC);
zend_declare_property_null(swoole_http_server_coro_ce, ZEND_STRL("settings"), ZEND_ACC_PUBLIC);
zend_declare_property_long(swoole_http_server_coro_ce, ZEND_STRL("errCode"), 0, ZEND_ACC_PUBLIC);
zend_declare_property_string(swoole_http_server_coro_ce, ZEND_STRL("errMsg"), "", ZEND_ACC_PUBLIC);
}
static PHP_METHOD(swoole_http_server_coro, __construct) {
char *host;
size_t l_host;
zend_long port = 0;
zend_bool ssl = 0;
zend_bool reuse_port = 0;
ZEND_PARSE_PARAMETERS_START_EX(ZEND_PARSE_PARAMS_THROW, 1, 4)
Z_PARAM_STRING(host, l_host)
Z_PARAM_OPTIONAL
Z_PARAM_LONG(port)
Z_PARAM_BOOL(ssl)
Z_PARAM_BOOL(reuse_port)
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
zend_update_property_stringl(swoole_http_server_coro_ce, SW_Z8_OBJ_P(ZEND_THIS), ZEND_STRL("host"), host, l_host);
zend_update_property_bool(swoole_http_server_coro_ce, SW_Z8_OBJ_P(ZEND_THIS), ZEND_STRL("ssl"), ssl);
// check host
if (l_host == 0) {
zend_throw_exception_ex(swoole_exception_ce, EINVAL, "host is empty");
RETURN_FALSE;
}
HttpServerObject *hsc = php_swoole_http_server_coro_fetch_object(Z_OBJ_P(ZEND_THIS));
std::string host_str(host, l_host);
hsc->server = new HttpServer(swoole::network::Socket::convert_to_type(host_str));
Socket *sock = hsc->server->socket;
if (reuse_port) {
sock->get_socket()->set_reuse_port();
}
if (!sock->bind(host_str, port)) {
http_server_set_error(ZEND_THIS, sock);
zend_throw_exception_ex(swoole_exception_ce, sock->errCode, "bind(%s:%d) failed", host, (int) port);
RETURN_FALSE;
}
// check ssl
if (ssl) {
#ifndef SW_USE_OPENSSL
zend_throw_exception_ex(
swoole_exception_ce,
EPROTONOSUPPORT,
"you must configure with `--enable-openssl` to support ssl connection when compiling Swoole");
RETURN_FALSE;
#else
/* we have to call ssl_check_context after user setProtocols */
zval *zsettings =
sw_zend_read_and_convert_property_array(swoole_http_server_coro_ce, ZEND_THIS, ZEND_STRL("settings"), 0);
add_assoc_bool(zsettings, "open_ssl", 1);
sock->enable_ssl_encrypt();
#endif
}
if (!sock->listen()) {
http_server_set_error(ZEND_THIS, sock);
zend_throw_exception_ex(swoole_exception_ce, sock->errCode, "listen() failed");
RETURN_FALSE;
}
zend_update_property_long(swoole_http_server_coro_ce, SW_Z8_OBJ_P(ZEND_THIS), ZEND_STRL("fd"), sock->get_fd());
zend_update_property_long(
swoole_http_server_coro_ce, SW_Z8_OBJ_P(ZEND_THIS), ZEND_STRL("port"), sock->get_bind_port());
}
static PHP_METHOD(swoole_http_server_coro, handle) {
char *pattern;
size_t pattern_len;
zval *zfn;
HttpServer *hs = http_server_get_object(Z_OBJ_P(ZEND_THIS));
ZEND_PARSE_PARAMETERS_START(2, 2)
Z_PARAM_STRING(pattern, pattern_len)
Z_PARAM_ZVAL(zfn)
ZEND_PARSE_PARAMETERS_END();
std::string key(pattern, pattern_len);
RETURN_BOOL(hs->set_handler(key, zfn));
}
static PHP_METHOD(swoole_http_server_coro, set) {
zval *zset;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_ARRAY(zset)
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
if (php_swoole_array_length(zset) == 0) {
RETURN_FALSE;
} else {
zval *zsettings =
sw_zend_read_and_convert_property_array(swoole_http_server_coro_ce, ZEND_THIS, ZEND_STRL("settings"), 0);
php_array_merge(Z_ARRVAL_P(zsettings), Z_ARRVAL_P(zset));
RETURN_TRUE;
}
}
static PHP_METHOD(swoole_http_server_coro, start) {
HttpServer *hs = http_server_get_object(Z_OBJ_P(ZEND_THIS));
Socket *sock = hs->socket;
/* get callback fci cache */
char *func_name = nullptr;
zend_fcall_info_cache fci_cache;
zend::Variable zcallback("onAccept");
if (!sw_zend_is_callable_at_frame(
zcallback.ptr(), ZEND_THIS, execute_data, 0, &func_name, nullptr, &fci_cache, nullptr)) {
php_swoole_fatal_error(E_CORE_ERROR, "function '%s' is not callable", func_name);
return;
}
efree(func_name);
/* check settings */
zval *zsettings =
sw_zend_read_and_convert_property_array(swoole_http_server_coro_ce, ZEND_THIS, ZEND_STRL("settings"), 0);
php_swoole_socket_set_protocol(hs->socket, zsettings);
HashTable *vht = Z_ARRVAL_P(zsettings);
zval *ztmp;
// parse cookie header
if (php_swoole_array_get_value(vht, "http_parse_cookie", ztmp)) {
hs->parse_cookie = zval_is_true(ztmp);
}
// parse x-www-form-urlencoded form data
if (php_swoole_array_get_value(vht, "http_parse_post", ztmp)) {
hs->parse_post = zval_is_true(ztmp);
}
// parse multipart/form-data file uploads
if (php_swoole_array_get_value(vht, "http_parse_files", ztmp)) {
hs->parse_files = zval_is_true(ztmp);
}
#ifdef SW_HAVE_COMPRESSION
// http content compression
if (php_swoole_array_get_value(vht, "http_compression", ztmp)) {
hs->compression = zval_is_true(ztmp);
}
if (php_swoole_array_get_value(vht, "http_compression_level", ztmp) ||
php_swoole_array_get_value(vht, "compression_level", ztmp) ||
php_swoole_array_get_value(vht, "http_gzip_level", ztmp)) {
zend_long level = zval_get_long(ztmp);
if (level > UINT8_MAX) {
level = UINT8_MAX;
} else if (level < 0) {
level = 0;
}
hs->compression_level = level;
}
if (php_swoole_array_get_value(vht, "http_compression_min_length", ztmp) ||
php_swoole_array_get_value(vht, "compression_min_length", ztmp)) {
hs->compression_min_length = zval_get_long(ztmp);
}
if (php_swoole_array_get_value(vht, "http_compression_types", ztmp) ||
php_swoole_array_get_value(vht, "compression_types", ztmp)) {
hs->compression_types = std::make_shared<std::unordered_set<std::string>>();
if (ZVAL_IS_ARRAY(ztmp)) {
zval *ztype;
SW_HASHTABLE_FOREACH_START(Z_ARRVAL_P(ztmp), ztype)
zend::String type(ztype);
if (type.len() > 0) {
hs->compression_types->emplace(type.to_std_string());
}
SW_HASHTABLE_FOREACH_END();
} else {
php_swoole_fatal_error(E_ERROR, "http_compression_types must be array");
RETURN_FALSE;
}
}
#endif
#ifdef SW_HAVE_ZLIB
if (php_swoole_array_get_value(vht, "websocket_compression", ztmp)) {
hs->websocket_compression = zval_is_true(ztmp);
}
#endif
// temporary directory for HTTP uploaded file.
if (php_swoole_array_get_value(vht, "upload_tmp_dir", ztmp)) {
zend::String str_v(ztmp);
if (php_swoole_create_dir(str_v.val(), str_v.len()) < 0) {
php_swoole_fatal_error(E_ERROR, "Unable to create upload_tmp_dir[%s]", str_v.val());
return;
}
if (hs->upload_tmp_dir) {
sw_free(hs->upload_tmp_dir);
}
hs->upload_tmp_dir = str_v.dup();
}
hs->running = true;
while (hs->running) {
auto conn = sock->accept();
if (conn) {
zval zsocket;
php_swoole_init_socket_object(&zsocket, conn);
long cid = PHPCoroutine::create(&fci_cache, 1, &zsocket, zcallback.ptr());
zval_dtor(&zsocket);
if (cid < 0) {
goto _wait_1s;
}
} else {
/*
* Too many connection, wait 1s
*/
if (sock->errCode == EMFILE || sock->errCode == ENFILE) {
_wait_1s:
System::sleep(SW_ACCEPT_RETRY_TIME);
} else if (sock->errCode == ETIMEDOUT || sock->errCode == SW_ERROR_SSL_BAD_CLIENT) {
continue;
} else if (sock->errCode == ECANCELED) {
http_server_set_error(ZEND_THIS, sock);
break;
} else {
http_server_set_error(ZEND_THIS, sock);
php_swoole_fatal_error(E_WARNING, "accept failed, Error: %s[%d]", sock->errMsg, sock->errCode);
break;
}
}
}
RETURN_TRUE;
}
static PHP_METHOD(swoole_http_server_coro, onAccept) {
HttpServer *hs = http_server_get_object(Z_OBJ_P(ZEND_THIS));
zval *zconn;
ZEND_PARSE_PARAMETERS_START_EX(ZEND_PARSE_PARAMS_THROW, 1, 1)
Z_PARAM_OBJECT(zconn)
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
Coroutine *co = Coroutine::get_current();
Socket *sock = php_swoole_get_socket(zconn);
sock->set_buffer_allocator(sw_zend_string_allocator());
String *buffer = sock->get_read_buffer();
HttpContext *ctx = nullptr;
bool header_completed = false;
off_t header_crlf_offset = 0;
size_t total_length;
#ifdef SW_USE_OPENSSL
if (sock->ssl_is_enable() && !sock->ssl_handshake()) {
RETURN_FALSE;
}
#endif
Z_TRY_ADDREF_P(zconn);
zend_hash_index_add(Z_ARRVAL_P(&hs->zclients), co->get_cid(), zconn);
zend::Variable remote_addr = zend::Variable(sock->get_ip());
while (true) {
_recv_request : {
sock->get_socket()->recv_wait = 1;
ssize_t retval = sock->recv(buffer->str + buffer->length, buffer->size - buffer->length);
if (sw_unlikely(retval <= 0)) {
break;
}
buffer->length += retval;
}
_parse_request:
if (!ctx) {
ctx = hs->create_context(sock, zconn);
}
if (!header_completed) {
ssize_t pos = swoole_strnpos(
buffer->str + header_crlf_offset, buffer->length - header_crlf_offset, ZEND_STRL("\r\n\r\n"));
if (pos < 0) {
if (buffer->length == buffer->size) {
ctx->response.status = SW_HTTP_REQUEST_ENTITY_TOO_LARGE;
break;
}
header_crlf_offset = buffer->length > 4 ? buffer->length - 4 : 0;
continue;
}
size_t header_length = header_crlf_offset + pos;
header_completed = true;
header_crlf_offset = 0;
// The HTTP header must be parsed first
// Header contains CRLFx2
header_length += 4;
size_t parsed_n = ctx->parse(buffer->str, header_length);
if (parsed_n != header_length) {
ctx->response.status = SW_HTTP_BAD_REQUEST;
break;
}
buffer->offset += header_length;
total_length = header_length + ctx->get_content_length();
if (ctx->get_content_length() > 0 && total_length > sock->protocol.package_max_length) {
ctx->response.status = SW_HTTP_REQUEST_ENTITY_TOO_LARGE;
break;
}
if (total_length > buffer->size && !buffer->extend(total_length)) {
ctx->response.status = SW_HTTP_SERVICE_UNAVAILABLE;
break;
}
}
if (!ctx->completed) {
// Make sure the complete request package is received
if (ctx->recv_chunked && memcmp(buffer->str + buffer->length - (sizeof(SW_HTTP_CHUNK_EOF) - 1),
SW_STRL(SW_HTTP_CHUNK_EOF)) != 0) {
goto _recv_request;
}
if (buffer->length < total_length) {
goto _recv_request;
}
size_t parsed_n = ctx->parse(buffer->str + buffer->offset, buffer->length - buffer->offset);
buffer->offset += parsed_n;
swoole_trace_log(SW_TRACE_CO_HTTP_SERVER,
"parsed_n=%zu, length=%zu, offset=%jd, completed=%u",
parsed_n,
buffer->length,
(intmax_t) buffer->offset,
ctx->completed);
if (ctx->parser.state == s_dead) {
ctx->response.status = SW_HTTP_BAD_REQUEST;
break;
}
}
if (ctx->parser.method == PHP_HTTP_NOT_IMPLEMENTED && buffer->length >= (sizeof(SW_HTTP2_PRI_STRING) - 1) &&
memcmp(buffer->str, SW_HTTP2_PRI_STRING, sizeof(SW_HTTP2_PRI_STRING) - 1) == 0) {
buffer->offset = (sizeof(SW_HTTP2_PRI_STRING) - 1);
hs->recv_http2_frame(ctx);
/* ownership of ctx has been transferred */
ctx = nullptr;
break;
}
zend::assign_zend_string_by_val(&ctx->request.zdata, buffer->pop(SW_BUFFER_SIZE_BIG), total_length);
zval *zserver = ctx->request.zserver;
http_server_add_server_array(
Z_ARRVAL_P(zserver), SW_ZSTR_KNOWN(SW_ZEND_STR_SERVER_PORT), (zend_long) hs->socket->get_bind_port());
http_server_add_server_array(
Z_ARRVAL_P(zserver), SW_ZSTR_KNOWN(SW_ZEND_STR_REMOTE_PORT), (zend_long) sock->get_port());
http_server_add_server_array(Z_ARRVAL_P(zserver), SW_ZSTR_KNOWN(SW_ZEND_STR_REMOTE_ADDR), remote_addr.ptr());
remote_addr.add_ref();
zend::Callable *cb = hs->get_handler(ctx);
zval args[2] = {*ctx->request.zobject, *ctx->response.zobject};
bool keep_alive = swoole_http_should_keep_alive(&ctx->parser) && !ctx->websocket;
sock->get_socket()->recv_wait = 0;
if (cb) {
if (UNEXPECTED(!zend::function::call(cb, 2, args, nullptr, 0))) {
php_swoole_error(E_WARNING, "handler error");
}
} else {
ctx->response.status = SW_HTTP_NOT_FOUND;
}
zval_dtor(&args[0]);
zval_dtor(&args[1]);
ctx = nullptr;
if (!hs->running || !keep_alive || php_swoole_socket_is_closed(zconn)) {
break;
} else {
header_completed = false;
if (buffer->length > 0) {
goto _parse_request;
} else {
goto _recv_request;
}
}
}
if (ctx) {
zval_dtor(ctx->request.zobject);
zval_dtor(ctx->response.zobject);
}
zend_hash_index_del(Z_ARRVAL_P(&hs->zclients), co->get_cid());
}
static PHP_METHOD(swoole_http_server_coro, shutdown) {
HttpServer *hs = http_server_get_object(Z_OBJ_P(ZEND_THIS));
hs->running = false;
hs->socket->cancel(SW_EVENT_READ);
zend_ulong index;
zval *zconn;
ZEND_HASH_FOREACH_NUM_KEY_VAL(Z_ARRVAL_P(&hs->zclients), index, zconn) {
Socket *sock = php_swoole_get_socket(zconn);
if (sock->get_socket()->recv_wait) {
sock->cancel(SW_EVENT_READ);
zend_hash_index_del(Z_ARRVAL_P(&hs->zclients), index);
}
}
ZEND_HASH_FOREACH_END();
}
static void http2_server_onRequest(Http2Session *session, Http2Stream *stream) {
HttpContext *ctx = stream->ctx;
HttpServer *hs = (HttpServer *) session->private_data;
Socket *sock = (Socket *) ctx->private_data;
zval *zserver = ctx->request.zserver;
add_assoc_long(zserver, "request_time", time(nullptr));
add_assoc_double(zserver, "request_time_float", microtime());
add_assoc_long(zserver, "server_port", hs->socket->get_bind_port());
add_assoc_long(zserver, "remote_port", sock->get_port());
add_assoc_string(zserver, "remote_addr", (char *) sock->get_ip());
add_assoc_string(zserver, "server_protocol", (char *) "HTTP/2");
zend::Callable *cb = hs->get_handler(ctx);
zval args[2] = {*ctx->request.zobject, *ctx->response.zobject};
if (cb) {
if (UNEXPECTED(!zend::function::call(cb, 2, args, nullptr, true))) {
stream->reset(SW_HTTP2_ERROR_INTERNAL_ERROR);
php_swoole_error(E_WARNING, "%s->onRequest[v2] handler error", ZSTR_VAL(swoole_http_server_ce->name));
}
} else {
ctx->response.status = SW_HTTP_NOT_FOUND;
}
zval_ptr_dtor(&args[0]);
zval_ptr_dtor(&args[1]);
}