-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathswoole_http_server_coro.cc
524 lines (451 loc) Β· 16.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
/*
+----------------------------------------------------------------------+
| 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_cxx.h"
#include "swoole_http.h"
#include <string>
#include <map>
#include <algorithm>
using namespace std;
using namespace swoole;
using swoole::coroutine::Socket;
using swoole::coroutine::System;
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_void, 0, 0, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_server_coro_handle, 0, 0, 2)
ZEND_ARG_INFO(0, pattern)
ZEND_ARG_CALLABLE_INFO(0, callback, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_server_coro_set, 0, 0, 1)
ZEND_ARG_ARRAY_INFO(0, settings, 0)
ZEND_END_ARG_INFO()
static zend_class_entry *swoole_http_server_coro_ce;
static zend_object_handlers swoole_http_server_coro_handlers;
static bool http_context_send_data(http_context* ctx, const char *data, size_t length);
static bool http_context_send_file(http_context* ctx, const char *file, uint32_t l_file, off_t offset, size_t length);
static bool http_context_disconnect(http_context* ctx);
class http_server
{
public:
Socket *socket;
map<string, php_swoole_fci *> handlers;
php_swoole_fci *default_handler;
bool running;
public:
http_server(enum swSocket_type type)
{
socket = new Socket(type);
running = true;
default_handler = nullptr;
}
void set_handler(string pattern, php_swoole_fci *fci)
{
if (pattern == "/")
{
if (default_handler)
{
sw_zend_fci_cache_discard(&default_handler->fci_cache);
efree(default_handler);
}
default_handler = fci;
}
else
{
auto find_fci = handlers.find(pattern);
if (find_fci != handlers.end())
{
sw_zend_fci_cache_discard(&find_fci->second->fci_cache);
efree(find_fci->second);
}
handlers[pattern] = fci;
}
sw_zend_fci_cache_persist(&fci->fci_cache);
}
php_swoole_fci* get_handler(http_context *ctx)
{
for (auto i = handlers.begin(); i != handlers.end(); i++)
{
if (strncasecmp(i->first.c_str(), ctx->request.path, i->first.length()) == 0)
{
return i->second;
}
}
return default_handler;
}
http_context* create_context(Socket *conn, zval *zconn)
{
http_context *ctx = swoole_http_context_new(conn->get_fd());
ctx->parse_body = 1;
ctx->parse_cookie = 1;
#ifdef SW_HAVE_ZLIB
ctx->enable_compression = 1;
ctx->compression_level = Z_BEST_SPEED;
#endif
ctx->private_data = conn;
ctx->co_socket = 1;
ctx->send = http_context_send_data;
ctx->sendfile = http_context_send_file;
ctx->close = http_context_disconnect;
ctx->upload_tmp_dir = "/tmp";
swoole_http_parser *parser = &ctx->parser;
parser->data = ctx;
swoole_http_parser_init(parser, PHP_HTTP_REQUEST);
zend_update_property(swoole_http_response_ce, ctx->response.zobject, ZEND_STRL("socket"), zconn);
return ctx;
}
};
typedef struct
{
http_server *server;
zend_object std;
} http_server_coro_t;
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);
static PHP_METHOD(swoole_http_server_coro, __destruct);
static const zend_function_entry swoole_http_server_coro_methods[] =
{
PHP_ME(swoole_http_server_coro, __construct, arginfo_swoole_void, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_server_coro, __destruct, arginfo_swoole_void, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_server_coro, set, arginfo_swoole_http_server_coro_set, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_server_coro, handle, arginfo_swoole_http_server_coro_handle, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_server_coro, onAccept, arginfo_swoole_void, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_server_coro, start, arginfo_swoole_void, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_server_coro, shutdown, arginfo_swoole_void, ZEND_ACC_PUBLIC)
PHP_FE_END
};
static zend_object *swoole_http_server_coro_create_object(zend_class_entry *ce)
{
http_server_coro_t *hsc = (http_server_coro_t *) ecalloc(1, sizeof(http_server_coro_t) + zend_object_properties_size(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 http_server_coro_t* swoole_http_server_coro_fetch_object(zend_object *obj)
{
return (http_server_coro_t *) ((char *) obj - swoole_http_server_coro_handlers.offset);
}
static sw_inline http_server* http_server_get_object(zend_object *obj)
{
return 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, zobject, ZEND_STRL("errCode"), sock->errCode);
zend_update_property_string(swoole_http_server_coro_ce, zobject, ZEND_STRL("errMsg"), sock->errMsg);
}
static bool http_context_send_data(http_context* 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_send_file(http_context* 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(http_context* ctx)
{
Socket *sock = (Socket *) ctx->private_data;
return sock->close();
}
static void swoole_http_server_coro_free_object(zend_object *object)
{
http_server_coro_t *hsc = swoole_http_server_coro_fetch_object(object);
if (hsc->server)
{
http_server *hs = hsc->server;
if (hs->default_handler)
{
sw_zend_fci_cache_discard(&hs->default_handler->fci_cache);
efree(hs->default_handler);
}
for (auto i = hs->handlers.begin(); i != hs->handlers.end(); i++)
{
sw_zend_fci_cache_discard(&i->second->fci_cache);
efree(i->second);
}
delete hs;
}
zend_object_std_dtor(&hsc->std);
}
void swoole_http_server_coro_init(int module_number)
{
SW_INIT_CLASS_ENTRY(swoole_http_server_coro, "Swoole\\Coroutine\\Http\\Server", NULL, "Co\\Http\\Server", swoole_http_server_coro_methods);
SW_SET_CLASS_SERIALIZABLE(swoole_http_server_coro, zend_class_serialize_deny, zend_class_unserialize_deny);
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, swoole_http_server_coro_create_object, swoole_http_server_coro_free_object, http_server_coro_t, 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_PARSE_PARAMETERS_START_EX(ZEND_PARSE_PARAMS_THROW, 1, 3)
Z_PARAM_STRING(host, l_host)
Z_PARAM_OPTIONAL
Z_PARAM_LONG(port)
Z_PARAM_BOOL(ssl)
ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE);
zend_update_property_stringl(swoole_http_server_coro_ce, ZEND_THIS, ZEND_STRL("host"), host, l_host);
zend_update_property_bool(swoole_http_server_coro_ce, 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;
}
http_server_coro_t *hsc = swoole_http_server_coro_fetch_object(Z_OBJ_P(ZEND_THIS));
string host_str(host, l_host);
hsc->server = new http_server(Socket::get_type(host_str));
Socket *sock = hsc->server->socket;
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;
}
#ifdef SW_USE_OPENSSL
/**
* Do not initialize ssl in listen method
*/
sock->open_ssl = false;
#endif
if (!sock->listen())
{
http_server_set_error(ZEND_THIS, sock);
zend_throw_exception_ex(swoole_exception_ce, sock->errCode, "listen() failed");
RETURN_FALSE;
}
//check ssl
#ifndef SW_USE_OPENSSL
if (ssl)
{
zend_throw_exception_ex(
swoole_exception_ce,
EPROTONOSUPPORT, "you must configure with `enable-openssl` to support ssl connection"
);
RETURN_FALSE;
}
#else
sock->open_ssl = ssl;
#endif
zend_update_property_long(swoole_http_server_coro_ce, ZEND_THIS, ZEND_STRL("fd"), sock->get_fd());
zend_update_property_long(swoole_http_server_coro_ce, ZEND_THIS, ZEND_STRL("port"), sock->get_bind_port());
}
static PHP_METHOD(swoole_http_server_coro, handle)
{
char *pattern;
size_t pattern_len;
http_server *hs = http_server_get_object(Z_OBJ_P(ZEND_THIS));
php_swoole_fci *fci = (php_swoole_fci *) ecalloc(1, sizeof(php_swoole_fci));
ZEND_PARSE_PARAMETERS_START(2, 2)
Z_PARAM_STRING(pattern, pattern_len)
Z_PARAM_FUNC(fci->fci, fci->fci_cache)
ZEND_PARSE_PARAMETERS_END();
string key(pattern, pattern_len);
hs->set_handler(key, fci);
}
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)
{
http_server *hs = http_server_get_object(Z_OBJ_P(ZEND_THIS));
auto sock = hs->socket;
char *func_name = NULL;
zend_fcall_info_cache fci_cache = empty_fcall_info_cache;
zval zcallback;
ZVAL_STRING(&zcallback, "onAccept");
if (!sw_zend_is_callable_ex(&zcallback, ZEND_THIS, 0, &func_name, NULL, &fci_cache, NULL))
{
php_swoole_fatal_error(E_ERROR, "function '%s' is not callable", func_name);
return;
}
efree(func_name);
zval zsocket;
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);
php_swoole_http_server_init_global_variant();
while (hs->running)
{
auto conn = sock->accept();
if (conn)
{
php_swoole_init_socket_object(&zsocket, conn);
long cid = PHPCoroutine::create(&fci_cache, 1, &zsocket);
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(1.0);
}
else if (sock->errCode == ETIMEDOUT)
{
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;
}
}
}
zval_dtor(&zcallback);
RETURN_TRUE;
}
static PHP_METHOD(swoole_http_server_coro, __destruct)
{
}
static PHP_METHOD(swoole_http_server_coro, onAccept)
{
http_server *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);
Socket *sock = php_swoole_get_socket(zconn);
size_t total_bytes = 0;
size_t parsed_n;
http_context *ctx = nullptr;
while (true)
{
auto buffer = sock->get_read_buffer();
ssize_t retval = sock->recv(buffer->str + total_bytes + buffer->offset, buffer->size - total_bytes - buffer->offset);
if (sw_unlikely(retval <= 0))
{
break;
}
total_bytes += retval;
if (!ctx)
{
ctx = hs->create_context(sock, zconn);
}
if (total_bytes > sock->protocol.package_max_length)
{
ctx->response.status = 413;
_error:
zval_dtor(ctx->request.zobject);
zval_dtor(ctx->response.zobject);
break;
}
parsed_n = swoole_http_requset_parse(ctx, buffer->str + total_bytes - retval, retval);
swTraceLog(SW_TRACE_CO_HTTP_SERVER, "parsed_n=%ld, retval=%ld, total_bytes=%ld, completed=%d", parsed_n, retval, total_bytes, ctx->completed);
if (!ctx->completed)
{
if (total_bytes == buffer->size)
{
if (swString_extend(buffer, buffer->size * 2) != SW_OK)
{
ctx->response.status = 503;
goto _error;
}
}
continue;
}
if (retval > (ssize_t) parsed_n)
{
buffer->offset = retval - parsed_n;
memmove(buffer->str, buffer->str + total_bytes + parsed_n, buffer->offset);
}
else
{
buffer->offset = 0;
}
ZVAL_STRINGL(&ctx->request.zdata, buffer->str, total_bytes);
zval *zserver = ctx->request.zserver;
add_assoc_long(zserver, "server_port", hs->socket->get_bind_port());
add_assoc_long(zserver, "remote_port", (zend_long) swConnection_get_port(sock->socket));
add_assoc_string(zserver, "remote_addr", (char *) swConnection_get_ip(sock->socket));
php_swoole_fci *fci = hs->get_handler(ctx);
zval args[2];
args[0] = *ctx->request.zobject;
args[1] = *ctx->response.zobject;
bool keep_alive = swoole_http_should_keep_alive(&ctx->parser) && !ctx->websocket;
if (fci)
{
if (UNEXPECTED(!zend::function::call(&fci->fci_cache, 2, args, NULL, 0)))
{
php_swoole_error(E_WARNING, "handler error");
}
}
else
{
ctx->response.status = 404;
}
zval_dtor(&args[0]);
zval_dtor(&args[1]);
if (hs->running && keep_alive)
{
swTraceLog(SW_TRACE_CO_HTTP_SERVER, "http_server_coro keepalive");
ctx = nullptr;
continue;
}
else
{
break;
}
}
}
static PHP_METHOD(swoole_http_server_coro, shutdown)
{
http_server *hs = http_server_get_object(Z_OBJ_P(ZEND_THIS));
hs->running = false;
hs->socket->cancel(SW_EVENT_READ);
}