1 Star 0 Fork 0

tjloved / swoole-my

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
swoole_http_server.c 75.76 KB
一键复制 编辑 原始数据 按行查看 历史
tjloved 提交于 2018-06-01 19:26 . test
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631
/*
+----------------------------------------------------------------------+
| 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 |
| license@swoole.com so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Tianfeng Han <mikan.tenny@gmail.com> |
+----------------------------------------------------------------------+
*/
#include "php_swoole.h"
#include "swoole_http.h"
#ifdef SW_COROUTINE
#include "swoole_coroutine.h"
#endif
#include <ext/standard/url.h>
#include <ext/standard/sha1.h>
#include <ext/standard/php_var.h>
#include <ext/standard/php_string.h>
#include <ext/standard/php_math.h>
#include <ext/standard/php_array.h>
#include <ext/date/php_date.h>
#include <ext/standard/md5.h>
#include <main/rfc1867.h>
#include <main/php_variables.h>
#include "websocket.h"
#include "Connection.h"
#include "base64.h"
#ifdef SW_HAVE_ZLIB
#include <zlib.h>
#endif
#ifdef SW_USE_HTTP2
#include "http2.h"
#endif
#ifdef SW_USE_PICOHTTPPARSER
#include "thirdparty/picohttpparser/picohttpparser.h"
#endif
static swArray *http_client_array;
swString *swoole_http_buffer;
#ifdef SW_HAVE_ZLIB
swString *swoole_zlib_buffer;
#endif
swString *swoole_http_form_data_buffer;
enum http_global_flag
{
HTTP_GLOBAL_GET = 1u << 1,
HTTP_GLOBAL_POST = 1u << 2,
HTTP_GLOBAL_COOKIE = 1u << 3,
HTTP_GLOBAL_REQUEST = 1u << 4,
HTTP_GLOBAL_SERVER = 1u << 5,
HTTP_GLOBAL_FILES = 1u << 6,
};
enum http_upload_errno
{
HTTP_UPLOAD_ERR_OK = 0,
HTTP_UPLOAD_ERR_INI_SIZE,
HTTP_UPLOAD_ERR_FORM_SIZE,
HTTP_UPLOAD_ERR_PARTIAL,
HTTP_UPLOAD_ERR_NO_FILE,
HTTP_UPLOAD_ERR_NO_TMP_DIR = 6,
HTTP_UPLOAD_ERR_CANT_WRITE,
};
zend_class_entry swoole_http_server_ce;
zend_class_entry *swoole_http_server_class_entry_ptr;
zend_class_entry swoole_http_response_ce;
zend_class_entry *swoole_http_response_class_entry_ptr;
zend_class_entry swoole_http_request_ce;
zend_class_entry *swoole_http_request_class_entry_ptr;
static int http_onReceive(swServer *serv, swEventData *req);
static void http_onClose(swServer *serv, swDataHead *ev);
static int http_request_on_path(php_http_parser *parser, const char *at, size_t length);
static int http_request_on_query_string(php_http_parser *parser, const char *at, size_t length);
static int http_request_on_body(php_http_parser *parser, const char *at, size_t length);
static int http_request_on_header_field(php_http_parser *parser, const char *at, size_t length);
static int http_request_on_header_value(php_http_parser *parser, const char *at, size_t length);
static int http_request_on_headers_complete(php_http_parser *parser);
static int http_request_message_complete(php_http_parser *parser);
static int multipart_body_on_header_field(multipart_parser* p, const char *at, size_t length);
static int multipart_body_on_header_value(multipart_parser* p, const char *at, size_t length);
static int multipart_body_on_data(multipart_parser* p, const char *at, size_t length);
static int multipart_body_on_header_complete(multipart_parser* p);
static int multipart_body_on_data_end(multipart_parser* p);
static http_context* http_get_context(zval *object, int check_end TSRMLS_DC);
static void http_parse_cookie(zval *array, const char *at, size_t length);
static void http_build_header(http_context *, zval *object, swString *response, int body_length TSRMLS_DC);
static int http_trim_double_quote(zval **value, char **ptr);
static inline void http_header_key_format(char *key, int length)
{
int i, state = 0;
for (i = 0; i < length; i++)
{
if (state == 0)
{
if (key[i] >= 97 && key[i] <= 122)
{
key[i] -= 32;
}
state = 1;
}
else if (key[i] == '-')
{
state = 0;
}
else
{
if (key[i] >= 65 && key[i] <= 90)
{
key[i] += 32;
}
}
}
}
#ifdef SW_USE_PICOHTTPPARSER
enum flags
{
F_CONNECTION_KEEP_ALIVE = 1 << 1,
F_CONNECTION_CLOSE = 1 << 2,
};
static inline long http_fast_parse(php_http_parser *parser, char *data, size_t length)
{
http_context *ctx = parser->data;
const char *method;
size_t method_len;
int minor_version;
struct phr_header headers[64];
size_t num_headers = sizeof(headers) / sizeof(headers[0]);
const char *path;
size_t path_len;
int n = phr_parse_request(data, length, &method, &method_len, &path, &path_len, &minor_version, headers, &num_headers, 0);
if (n < 0)
{
return SW_ERR;
}
char *p = memchr(path, '?', path_len);
if (p)
{
http_request_on_path(parser, path, p - path);
http_request_on_query_string(parser, p + 1, path + path_len - p - 1);
}
else
{
http_request_on_path(parser, path, path_len);
}
int i;
for (i = 0; i < num_headers; i++)
{
if (strncasecmp(headers[i].name, "Connection", headers[i].name_len) == 0
&& strncasecmp(headers[i].value, "keep-alive", headers[i].value_len) == 0)
{
parser->flags |= F_CONNECTION_KEEP_ALIVE;
}
else
{
parser->flags |= F_CONNECTION_CLOSE;
}
if (http_request_on_header_field(parser, headers[i].name, headers[i].name_len) < 0)
{
return SW_ERR;
}
if (http_request_on_header_value(parser, headers[i].value, headers[i].value_len) < 0)
{
return SW_ERR;
}
}
parser->method = swHttp_get_method(method, method_len) - 1;
parser->http_major = 1;
parser->http_minor = minor_version;
ctx->request.version = 100 + minor_version;
if (n < length)
{
http_request_on_body(parser, data + n, length - n);
}
http_request_on_headers_complete(parser);
return SW_OK;
}
#endif
#ifdef SW_HAVE_ZLIB
static int http_response_compress(swString *body, int level);
voidpf php_zlib_alloc(voidpf opaque, uInt items, uInt size);
void php_zlib_free(voidpf opaque, voidpf address);
#endif
static PHP_METHOD(swoole_http_server, on);
static PHP_METHOD(swoole_http_server, start);
static PHP_METHOD(swoole_http_request, rawcontent);
static PHP_METHOD(swoole_http_request, __destruct);
static PHP_METHOD(swoole_http_response, write);
static PHP_METHOD(swoole_http_response, end);
static PHP_METHOD(swoole_http_response, sendfile);
static PHP_METHOD(swoole_http_response, cookie);
static PHP_METHOD(swoole_http_response, rawcookie);
static PHP_METHOD(swoole_http_response, header);
static PHP_METHOD(swoole_http_response, initHeader);
#ifdef SW_HAVE_ZLIB
static PHP_METHOD(swoole_http_response, gzip);
#endif
#ifdef SW_USE_HTTP2
static PHP_METHOD(swoole_http_response, trailer);
#endif
static PHP_METHOD(swoole_http_response, status);
static PHP_METHOD(swoole_http_response, __destruct);
static sw_inline char* http_get_method_name(int method)
{
switch (method)
{
case PHP_HTTP_GET:
return "GET";
case PHP_HTTP_POST:
return "POST";
case PHP_HTTP_HEAD:
return "HEAD";
case PHP_HTTP_PUT:
return "PUT";
case PHP_HTTP_DELETE:
return "DELETE";
case PHP_HTTP_PATCH:
return "PATCH";
case PHP_HTTP_CONNECT:
return "CONNECT";
case PHP_HTTP_OPTIONS:
return "OPTIONS";
case PHP_HTTP_TRACE:
return "TRACE";
case PHP_HTTP_COPY:
return "COPY";
case PHP_HTTP_LOCK:
return "LOCK";
case PHP_HTTP_MKCOL:
return "MKCOL";
case PHP_HTTP_MOVE:
return "MOVE";
case PHP_HTTP_PROPFIND:
return "PROPFIND";
case PHP_HTTP_PROPPATCH:
return "PROPPATCH";
case PHP_HTTP_UNLOCK:
return "UNLOCK";
/* subversion */
case PHP_HTTP_REPORT:
return "REPORT";
case PHP_HTTP_MKACTIVITY:
return "MKACTIVITY";
case PHP_HTTP_CHECKOUT:
return "CHECKOUT";
case PHP_HTTP_MERGE:
return "MERGE";
/* upnp */
case PHP_HTTP_MSEARCH:
return "MSEARCH";
case PHP_HTTP_NOTIFY:
return "NOTIFY";
case PHP_HTTP_SUBSCRIBE:
return "SUBSCRIBE";
case PHP_HTTP_UNSUBSCRIBE:
return "UNSUBSCRIBE";
case PHP_HTTP_NOT_IMPLEMENTED:
return "IMPLEMENTED";
default:
return NULL;
}
}
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_void, 0, 0, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_server_on, 0, 0, 2)
ZEND_ARG_INFO(0, event_name)
ZEND_ARG_INFO(0, callback)
ZEND_END_ARG_INFO()
#ifdef SW_HAVE_ZLIB
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_gzip, 0, 0, 0)
ZEND_ARG_INFO(0, compress_level)
ZEND_END_ARG_INFO()
#endif
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_status, 0, 0, 1)
ZEND_ARG_INFO(0, http_code)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_header, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, ucwords)
ZEND_END_ARG_INFO()
#ifdef SW_USE_HTTP2
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_trailer, 0, 0, 2)
ZEND_ARG_INFO(0, key)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, ucwords)
ZEND_END_ARG_INFO()
#endif
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_cookie, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_ARG_INFO(0, value)
ZEND_ARG_INFO(0, expires)
ZEND_ARG_INFO(0, path)
ZEND_ARG_INFO(0, domain)
ZEND_ARG_INFO(0, secure)
ZEND_ARG_INFO(0, httponly)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_write, 0, 0, 1)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_end, 0, 0, 0)
ZEND_ARG_INFO(0, content)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_response_sendfile, 0, 0, 1)
ZEND_ARG_INFO(0, filename)
ZEND_ARG_INFO(0, offset)
ZEND_ARG_INFO(0, length)
ZEND_END_ARG_INFO()
static const php_http_parser_settings http_parser_settings =
{
NULL,
http_request_on_path,
http_request_on_query_string,
NULL,
NULL,
http_request_on_header_field,
http_request_on_header_value,
http_request_on_headers_complete,
http_request_on_body,
http_request_message_complete
};
static const multipart_parser_settings mt_parser_settings =
{
multipart_body_on_header_field,
multipart_body_on_header_value,
multipart_body_on_data,
NULL,
multipart_body_on_header_complete,
multipart_body_on_data_end,
NULL,
};
const zend_function_entry swoole_http_server_methods[] =
{
PHP_ME(swoole_http_server, on, arginfo_swoole_http_server_on, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_server, start, arginfo_swoole_http_void, ZEND_ACC_PUBLIC)
PHP_FALIAS(__sleep, swoole_unsupport_serialize, NULL)
PHP_FALIAS(__wakeup, swoole_unsupport_serialize, NULL)
PHP_FE_END
};
const zend_function_entry swoole_http_request_methods[] =
{
PHP_ME(swoole_http_request, rawcontent, arginfo_swoole_http_void, ZEND_ACC_PUBLIC)
PHP_FALIAS(__sleep, swoole_unsupport_serialize, NULL)
PHP_FALIAS(__wakeup, swoole_unsupport_serialize, NULL)
PHP_ME(swoole_http_request, __destruct, arginfo_swoole_http_void, ZEND_ACC_PUBLIC | ZEND_ACC_DTOR)
PHP_FE_END
};
const zend_function_entry swoole_http_response_methods[] =
{
PHP_ME(swoole_http_response, initHeader, arginfo_swoole_http_void, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_response, cookie, arginfo_swoole_http_response_cookie, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_response, rawcookie, arginfo_swoole_http_response_cookie, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_response, status, arginfo_swoole_http_response_status, ZEND_ACC_PUBLIC)
#ifdef SW_HAVE_ZLIB
PHP_ME(swoole_http_response, gzip, arginfo_swoole_http_response_gzip, ZEND_ACC_PUBLIC)
#endif
PHP_ME(swoole_http_response, header, arginfo_swoole_http_response_header, ZEND_ACC_PUBLIC)
#ifdef SW_USE_HTTP2
PHP_ME(swoole_http_response, trailer, arginfo_swoole_http_response_trailer, ZEND_ACC_PUBLIC)
#endif
PHP_ME(swoole_http_response, write, arginfo_swoole_http_response_write, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_response, end, arginfo_swoole_http_response_end, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_response, sendfile, arginfo_swoole_http_response_sendfile, ZEND_ACC_PUBLIC)
PHP_FALIAS(__sleep, swoole_unsupport_serialize, NULL)
PHP_FALIAS(__wakeup, swoole_unsupport_serialize, NULL)
PHP_ME(swoole_http_response, __destruct, arginfo_swoole_http_void, ZEND_ACC_PUBLIC | ZEND_ACC_DTOR)
PHP_FE_END
};
static int http_request_on_path(php_http_parser *parser, const char *at, size_t length)
{
http_context *ctx = parser->data;
ctx->request.path = estrndup(at, length);
ctx->request.path_len = length;
return 0;
}
static int http_request_on_query_string(php_http_parser *parser, const char *at, size_t length)
{
#if PHP_MAJOR_VERSION < 7
TSRMLS_FETCH_FROM_CTX(sw_thread_ctx ? sw_thread_ctx : NULL);
#endif
http_context *ctx = parser->data;
//no need free, will free by treat_data
char *query = estrndup(at, length);
sw_add_assoc_stringl_ex(ctx->request.zserver, ZEND_STRS("query_string"), query, length, 1);
zval *zrequest_object = ctx->request.zobject;
zval *zget;
swoole_http_server_array_init(get, request);
//parse url params
sapi_module.treat_data(PARSE_STRING, query, zget TSRMLS_CC);
return 0;
}
static int http_request_on_header_field(php_http_parser *parser, const char *at, size_t length)
{
http_context *ctx = parser->data;
if (ctx->current_header_name_allocated)
{
efree(ctx->current_header_name);
ctx->current_header_name_allocated = 0;
}
ctx->current_header_name = (char *) at;
ctx->current_header_name_len = length;
return 0;
}
int swoole_http_parse_form_data(http_context *ctx, const char *boundary_str, int boundary_len TSRMLS_DC)
{
multipart_parser *mt_parser = multipart_parser_init(boundary_str, boundary_len, &mt_parser_settings);
if (!mt_parser)
{
swoole_php_fatal_error(E_WARNING, "multipart_parser_init() failed.");
return SW_ERR;
}
ctx->mt_parser = mt_parser;
mt_parser->data = ctx;
return SW_OK;
}
static void http_parse_cookie(zval *array, const char *at, size_t length)
{
char keybuf[SW_HTTP_COOKIE_KEYLEN];
char valbuf[SW_HTTP_COOKIE_VALLEN];
char *_c = (char *) at;
int klen = 0;
int vlen = 0;
int state = -1;
int i = 0, j = 0;
while (_c < at + length)
{
if (state <= 0 && *_c == '=')
{
klen = i - j + 1;
if (klen >= SW_HTTP_COOKIE_KEYLEN)
{
swWarn("cookie key is too large.");
return;
}
memcpy(keybuf, at + j, klen - 1);
keybuf[klen - 1] = 0;
j = i + 1;
state = 1;
}
else if (state == 1 && *_c == ';')
{
vlen = i - j;
if (vlen >= SW_HTTP_COOKIE_VALLEN)
{
swWarn("cookie value is too large.");
return;
}
memcpy(valbuf, (char *) at + j, vlen);
valbuf[vlen] = 0;
vlen = php_url_decode(valbuf, vlen);
if (klen > 1)
{
sw_add_assoc_stringl_ex(array, keybuf, klen, valbuf, vlen, 1);
}
j = i + 1;
state = -1;
}
else if (state < 0)
{
if (isspace(*_c))
{
//Remove leading spaces from cookie names
++j;
}
else
{
state = 0;
}
}
_c++;
i++;
}
if (j < length)
{
vlen = i - j;
if (klen >= SW_HTTP_COOKIE_KEYLEN)
{
swWarn("cookie key is too large.");
return;
}
keybuf[klen - 1] = 0;
if (vlen >= SW_HTTP_COOKIE_VALLEN)
{
swWarn("cookie value is too large.");
return;
}
memcpy(valbuf, (char *) at + j, vlen);
valbuf[vlen] = 0;;
vlen = php_url_decode(valbuf, vlen);
if (klen > 1)
{
sw_add_assoc_stringl_ex(array, keybuf, klen, valbuf, vlen, 1);
}
}
}
static int http_trim_double_quote(zval **value, char **ptr)
{
int len = Z_STRLEN_PP(value);
*ptr = Z_STRVAL_PP(value);
//ltrim('"')
if ((*ptr)[0] == '"')
{
(*ptr)++;
len--;
}
//rtrim('"')
if ((*ptr)[len - 1] == '"')
{
len--;
}
return len;
}
static int http_request_on_header_value(php_http_parser *parser, const char *at, size_t length)
{
#if PHP_MAJOR_VERSION < 7
TSRMLS_FETCH_FROM_CTX(sw_thread_ctx ? sw_thread_ctx : NULL);
#endif
size_t offset = 0;
http_context *ctx = parser->data;
zval *zrequest_object = ctx->request.zobject;
size_t header_len = ctx->current_header_name_len;
char *header_name = zend_str_tolower_dup(ctx->current_header_name, header_len);
if (strncmp(header_name, "cookie", header_len) == 0)
{
zval *zcookie;
if (length >= SW_HTTP_COOKIE_VALLEN)
{
swWarn("cookie is too large.");
}
else
{
swoole_http_server_array_init(cookie, request);
http_parse_cookie(zcookie, at, length);
}
goto free_memory;
}
else if (SwooleG.serv->listen_list->open_websocket_protocol && strncmp(header_name, "upgrade", header_len) == 0 && strncasecmp(at, "websocket", length) == 0)
{
swConnection *conn = swWorker_get_connection(SwooleG.serv, ctx->fd);
if (!conn)
{
swWarn("connection[%d] is closed.", ctx->fd);
return SW_ERR;
}
conn->websocket_status = WEBSOCKET_STATUS_CONNECTION;
}
else if (parser->method == PHP_HTTP_POST || parser->method == PHP_HTTP_PUT || parser->method == PHP_HTTP_DELETE || parser->method == PHP_HTTP_PATCH)
{
if (strncmp(header_name, "content-type", header_len) == 0)
{
if (http_strncasecmp("application/x-www-form-urlencoded", at, length))
{
ctx->request.post_form_urlencoded = 1;
}
else if (http_strncasecmp("multipart/form-data", at, length))
{
offset = sizeof("multipart/form-data;") - 1;
while (at[offset] == ' ') {
offset += 1;
}
offset += sizeof("boundary=") - 1;
int boundary_len = length - offset;
if (boundary_len <= 0)
{
swWarn("invalid multipart/form-data body.", ctx->fd);
return 0;
}
swoole_http_parse_form_data(ctx, at + length - boundary_len, boundary_len TSRMLS_CC);
}
}
}
zval *header = ctx->request.zheader;
sw_add_assoc_stringl_ex(header, header_name, ctx->current_header_name_len + 1, (char *) at, length, 1);
free_memory:
if (ctx->current_header_name_allocated)
{
efree(ctx->current_header_name);
ctx->current_header_name_allocated = 0;
}
efree(header_name);
return 0;
}
static int http_request_on_headers_complete(php_http_parser *parser)
{
http_context *ctx = parser->data;
if (ctx->current_header_name_allocated)
{
efree(ctx->current_header_name);
ctx->current_header_name_allocated = 0;
}
ctx->current_header_name = NULL;
return 0;
}
static int multipart_body_on_header_field(multipart_parser* p, const char *at, size_t length)
{
http_context *ctx = p->data;
return http_request_on_header_field(&ctx->parser, at, length);
}
static int multipart_body_on_header_value(multipart_parser* p, const char *at, size_t length)
{
#if PHP_MAJOR_VERSION < 7
TSRMLS_FETCH_FROM_CTX(sw_thread_ctx ? sw_thread_ctx : NULL);
#endif
http_context *ctx = p->data;
/**
* Hash collision attack
*/
if (ctx->input_var_num > PG(max_input_vars))
{
swoole_php_error(E_WARNING, "Input variables exceeded %ld. "
"To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
return SW_OK;
}
else
{
ctx->input_var_num++;
}
size_t header_len = ctx->current_header_name_len;
char *headername = zend_str_tolower_dup(ctx->current_header_name, header_len);
if (strncasecmp(headername, "content-disposition", header_len) == 0)
{
//not form data
if (swoole_strnpos((char *) at, length, ZEND_STRL("form-data;")) < 0)
{
return SW_OK;
}
zval *tmp_array;
SW_MAKE_STD_ZVAL(tmp_array);
array_init(tmp_array);
http_parse_cookie(tmp_array, (char *) at + sizeof("form-data;"), length - sizeof("form-data;"));
zval *form_name;
if (sw_zend_hash_find(Z_ARRVAL_P(tmp_array), ZEND_STRS("name"), (void **) &form_name) == FAILURE)
{
return SW_OK;
}
char *str;
int len = http_trim_double_quote(&form_name, &str);
zval *filename;
//POST form data
if (sw_zend_hash_find(Z_ARRVAL_P(tmp_array), ZEND_STRS("filename"), (void **) &filename) == FAILURE)
{
ctx->current_form_data_name = estrndup(str, len);
ctx->current_form_data_name_len = len;
}
//upload file
else
{
ctx->current_input_name = estrndup(str, len);
zval *multipart_header = NULL;
SW_ALLOC_INIT_ZVAL(multipart_header);
array_init(multipart_header);
sw_add_assoc_string(multipart_header, "name", "", 1);
sw_add_assoc_string(multipart_header, "type", "", 1);
sw_add_assoc_string(multipart_header, "tmp_name", "", 1);
add_assoc_long(multipart_header, "error", HTTP_UPLOAD_ERR_OK);
add_assoc_long(multipart_header, "size", 0);
len = http_trim_double_quote(&filename, &str);
sw_add_assoc_stringl(multipart_header, "name", str, len, 1);
ctx->current_multipart_header = multipart_header;
}
sw_zval_ptr_dtor(&tmp_array);
}
if (strncasecmp(headername, "content-type", header_len) == 0 && ctx->current_multipart_header)
{
sw_add_assoc_stringl(ctx->current_multipart_header, "type", (char * ) at, length, 1);
}
if (ctx->current_header_name_allocated)
{
efree(ctx->current_header_name);
ctx->current_header_name_allocated = 0;
}
efree(headername);
return 0;
}
static int multipart_body_on_data(multipart_parser* p, const char *at, size_t length)
{
http_context *ctx = p->data;
if (ctx->current_form_data_name)
{
swString_append_ptr(swoole_http_form_data_buffer, (char*) at, length);
return 0;
}
if (p->fp == NULL)
{
return 0;
}
int n = fwrite(at, sizeof(char), length, (FILE *) p->fp);
if (n != length)
{
zval *multipart_header = ctx->current_multipart_header;
add_assoc_long(multipart_header, "error", HTTP_UPLOAD_ERR_CANT_WRITE);
fclose((FILE *) p->fp);
p->fp = NULL;
swWarn("write upload file failed. Error %s[%d]", strerror(errno), errno);
}
return 0;
}
#if 0
static void get_random_file_name(char *des, const char *src)
{
unsigned char digest[16] = {0};
char buf[19] = {0};
int n = sprintf(buf, "%s%d", src, swoole_system_random(0, 9999));
PHP_MD5_CTX ctx;
PHP_MD5Init(&ctx);
PHP_MD5Update(&ctx, buf, n);
PHP_MD5Final(digest, &ctx);
make_digest_ex(des, digest, 16);
}
#endif
static int multipart_body_on_header_complete(multipart_parser* p)
{
#if PHP_MAJOR_VERSION < 7
TSRMLS_FETCH_FROM_CTX(sw_thread_ctx ? sw_thread_ctx : NULL);
#endif
http_context *ctx = p->data;
if (!ctx->current_input_name)
{
return 0;
}
zval *multipart_header = ctx->current_multipart_header;
zval *zrequest_object = ctx->request.zobject;
zval *zerr = NULL;
if (sw_zend_hash_find(Z_ARRVAL_P(multipart_header), ZEND_STRS("error"), (void **) &zerr) == FAILURE)
{
return 0;
}
if (Z_TYPE_P(zerr) == IS_LONG && Z_LVAL_P(zerr) != HTTP_UPLOAD_ERR_OK)
{
return 0;
}
char file_path[SW_HTTP_UPLOAD_TMPDIR_SIZE];
snprintf(file_path, SW_HTTP_UPLOAD_TMPDIR_SIZE, "%s/swoole.upfile.XXXXXX", SwooleG.serv->upload_tmp_dir);
int tmpfile = swoole_tmpfile(file_path);
if (tmpfile < 0)
{
return 0;
}
FILE *fp = fdopen(tmpfile, "wb+");
if (fp == NULL)
{
add_assoc_long(multipart_header, "error", HTTP_UPLOAD_ERR_NO_TMP_DIR);
swWarn("fopen(%s) failed. Error %s[%d]", file_path, strerror(errno), errno);
return 0;
}
p->fp = fp;
sw_add_assoc_string(multipart_header, "tmp_name", file_path, 1);
zval *ztmpfiles = sw_zend_read_property(swoole_http_request_class_entry_ptr, zrequest_object, ZEND_STRL("tmpfiles"), 1 TSRMLS_CC);
if (ztmpfiles == NULL || ZVAL_IS_NULL(ztmpfiles))
{
swoole_http_server_array_init(tmpfiles, request);
}
int file_path_len = strlen(file_path);
sw_add_next_index_stringl(ztmpfiles, file_path, file_path_len, 1);
char *temp_filename = file_path;
sw_zend_hash_add(SG(rfc1867_uploaded_files), temp_filename, file_path_len + 1, &temp_filename, sizeof(char *), NULL);
return 0;
}
static int multipart_body_on_data_end(multipart_parser* p)
{
#if PHP_MAJOR_VERSION < 7
TSRMLS_FETCH_FROM_CTX(sw_thread_ctx ? sw_thread_ctx : NULL);
#endif
http_context *ctx = p->data;
zval *zrequest_object = ctx->request.zobject;
if (ctx->current_form_data_name)
{
zval *zpost = sw_zend_read_property(swoole_http_request_class_entry_ptr, zrequest_object, ZEND_STRL("post"), 1 TSRMLS_CC);
if (ZVAL_IS_NULL(zpost))
{
swoole_http_server_array_init(post, request);
}
php_register_variable_safe(ctx->current_form_data_name, swoole_http_form_data_buffer->str,
swoole_http_form_data_buffer->length, zpost TSRMLS_CC);
efree(ctx->current_form_data_name);
ctx->current_form_data_name = NULL;
ctx->current_form_data_name_len = 0;
swString_clear(swoole_http_form_data_buffer);
return 0;
}
if (!ctx->current_input_name)
{
return 0;
}
zval *multipart_header = ctx->current_multipart_header;
if (p->fp != NULL)
{
long size = swoole_file_get_size((FILE*) p->fp);
add_assoc_long(multipart_header, "size", size);
fclose((FILE *) p->fp);
p->fp = NULL;
}
zval *zfiles = ctx->request.zfiles;
if (!zfiles)
{
swoole_http_server_array_init(files, request);
}
php_register_variable_ex(ctx->current_input_name, multipart_header, zfiles TSRMLS_CC);
efree(ctx->current_input_name);
ctx->current_input_name = NULL;
efree(ctx->current_multipart_header);
ctx->current_multipart_header = NULL;
return 0;
}
static int http_request_on_body(php_http_parser *parser, const char *at, size_t length)
{
#if PHP_MAJOR_VERSION < 7
TSRMLS_FETCH_FROM_CTX(sw_thread_ctx ? sw_thread_ctx : NULL);
#endif
http_context *ctx = parser->data;
zval *zrequest_object = ctx->request.zobject;
char *body;
ctx->request.post_length = length;
if (SwooleG.serv->http_parse_post && ctx->request.post_form_urlencoded)
{
zval *zpost;
swoole_http_server_array_init(post, request);
body = estrndup(at, length);
sapi_module.treat_data(PARSE_STRING, body, zpost TSRMLS_CC);
}
else if (ctx->mt_parser != NULL)
{
multipart_parser *multipart_parser = ctx->mt_parser;
size_t n = multipart_parser_execute(multipart_parser, at, length);
if (n != length)
{
swoole_php_fatal_error(E_WARNING, "parse multipart body failed.");
}
}
return 0;
}
static int http_request_message_complete(php_http_parser *parser)
{
http_context *ctx = parser->data;
ctx->request.version = parser->http_major * 100 + parser->http_minor;
const char *vpath = ctx->request.path, *end = vpath + ctx->request.path_len, *p = end;
ctx->request.ext = end;
ctx->request.ext_len = 0;
while (p > vpath)
{
--p;
if (*p == '.')
{
++p;
ctx->request.ext = p;
ctx->request.ext_len = end - p;
break;
}
}
ctx->request_read = 1;
if (ctx->mt_parser)
{
multipart_parser_free(ctx->mt_parser);
ctx->mt_parser = NULL;
}
return 0;
}
static int http_onReceive(swServer *serv, swEventData *req)
{
if (swEventData_is_dgram(req->info.type))
{
return php_swoole_onReceive(serv, req);
}
int fd = req->info.fd;
swConnection *conn = swServer_connection_verify_no_ssl(SwooleG.serv, fd);
if (!conn)
{
swoole_error_log(SW_LOG_NOTICE, SW_ERROR_SESSION_NOT_EXIST, "connection[%d] is closed.", fd);
return SW_ERR;
}
swListenPort *port = serv->connection_list[req->info.from_fd].object;
//other server port
if (!port->open_http_protocol)
{
return php_swoole_onReceive(serv, req);
}
//websocket client
if (conn->websocket_status == WEBSOCKET_STATUS_ACTIVE)
{
return swoole_websocket_onMessage(req);
}
swoole_http_client *client = swArray_alloc(http_client_array, conn->fd);
if (!client)
{
return SW_OK;
}
client->fd = fd;
#ifdef SW_USE_HTTP2
if (conn->http2_stream)
{
client->http2 = 1;
return swoole_http2_onFrame(client, req);
}
#endif
#if PHP_MAJOR_VERSION < 7
TSRMLS_FETCH_FROM_CTX(sw_thread_ctx ? sw_thread_ctx : NULL);
#endif
http_context *ctx = swoole_http_context_new(client TSRMLS_CC);
php_http_parser *parser = &ctx->parser;
zval *zserver = ctx->request.zserver;
parser->data = ctx;
zval *zdata;
SW_ALLOC_INIT_ZVAL(zdata);
php_swoole_get_recv_data(zdata, req, NULL, 0);
swTrace("httpRequest %d bytes:\n---------------------------------------\n%s\n", (int)Z_STRLEN_P(zdata), Z_STRVAL_P(zdata));
#ifdef SW_USE_PICOHTTPPARSER
long n = http_fast_parse(parser, Z_STRVAL_P(zdata), Z_STRLEN_P(zdata));
#else
php_http_parser_init(parser, PHP_HTTP_REQUEST);
long n = php_http_parser_execute(parser, &http_parser_settings, Z_STRVAL_P(zdata), Z_STRLEN_P(zdata));
#endif
if (n < 0)
{
sw_zval_free(zdata);
bzero(client, sizeof(swoole_http_client));
swWarn("php_http_parser_execute failed.");
if (conn->websocket_status == WEBSOCKET_STATUS_CONNECTION)
{
return swServer_tcp_close(SwooleG.serv, fd, 1);
}
}
else
{
zval *retval = NULL;
#ifndef SW_COROUTINE
zval **args[2];
#else
zval *args[2];
#endif
zval *zrequest_object = ctx->request.zobject;
zval *zresponse_object = ctx->response.zobject;
SW_SEPARATE_ZVAL(zrequest_object);
SW_SEPARATE_ZVAL(zresponse_object);
ctx->keepalive = php_http_should_keep_alive(parser);
char *method_name = http_get_method_name(parser->method);
sw_add_assoc_string(zserver, "request_method", method_name, 1);
sw_add_assoc_stringl(zserver, "request_uri", ctx->request.path, ctx->request.path_len, 1);
sw_add_assoc_stringl(zserver, "path_info", ctx->request.path, ctx->request.path_len, 1);
sw_add_assoc_long_ex(zserver, ZEND_STRS("request_time"), SwooleGS->now);
// Add REQUEST_TIME_FLOAT
double now_float = swoole_microtime();
sw_add_assoc_double_ex(zserver, ZEND_STRS("request_time_float"), now_float);
swConnection *conn = swWorker_get_connection(SwooleG.serv, fd);
if (!conn)
{
sw_zval_free(zdata);
swWarn("connection[%d] is closed.", fd);
return SW_ERR;
}
swoole_set_property(zrequest_object, 0, zdata);
add_assoc_long(ctx->request.zserver, "server_port", swConnection_get_port(&SwooleG.serv->connection_list[conn->from_fd]));
add_assoc_long(ctx->request.zserver, "remote_port", swConnection_get_port(conn));
sw_add_assoc_string(zserver, "remote_addr", swConnection_get_ip(conn), 1);
add_assoc_long(zserver, "master_time", conn->last_time);
if (ctx->request.version == 101)
{
sw_add_assoc_string(zserver, "server_protocol", "HTTP/1.1", 1);
}
else
{
sw_add_assoc_string(zserver, "server_protocol", "HTTP/1.0", 1);
}
sw_add_assoc_string(zserver, "server_software", SW_HTTP_SERVER_SOFTWARE, 1);
zval *zcallback = php_swoole_server_get_callback(serv, req->info.from_fd, SW_SERVER_CB_onHandShake);
//websocket handshake
if (conn->websocket_status == WEBSOCKET_STATUS_CONNECTION && zcallback == NULL)
{
swoole_websocket_onHandshake(port, ctx);
goto free_object;
}
#ifndef SW_COROUTINE
args[0] = &zrequest_object;
args[1] = &zresponse_object;
#else
args[0] = zrequest_object;
args[1] = zresponse_object;
#endif
int callback_type = 0;
if (conn->websocket_status == WEBSOCKET_STATUS_CONNECTION)
{
callback_type = SW_SERVER_CB_onHandShake;
conn->websocket_status = WEBSOCKET_STATUS_HANDSHAKE;
ctx->upgrade = 1;
}
else
{
callback_type = SW_SERVER_CB_onRequest;
zcallback = php_swoole_server_get_callback(serv, req->info.from_fd, SW_SERVER_CB_onRequest);
//no have onRequest callback
if (zcallback == NULL)
{
swoole_websocket_onRequest(ctx);
goto free_object;
}
}
#ifndef SW_COROUTINE
zcallback = php_swoole_server_get_callback(serv, req->info.from_fd, callback_type);
#ifdef PHP_SWOOLE_ENABLE_FASTCALL
zend_fcall_info_cache *fci_cache = php_swoole_server_get_cache(serv, req->info.from_fd, callback_type);
if (sw_call_user_function_fast(zcallback, fci_cache, &retval, 2, args TSRMLS_CC) == FAILURE)
#else
if (sw_call_user_function_ex(EG(function_table), NULL, zcallback, &retval, 2, args, 0, NULL TSRMLS_CC) == FAILURE)
#endif
{
swoole_php_error(E_WARNING, "onRequest handler error");
}
#else
zend_fcall_info_cache *cache = php_swoole_server_get_cache(serv, req->info.from_fd, callback_type);
int ret = coro_create(cache, args, 2, &retval, NULL, NULL);
if (ret != 0)
{
sw_zval_ptr_dtor(&zrequest_object);
sw_zval_ptr_dtor(&zresponse_object);
if (ret == CORO_LIMIT)
{
SwooleG.serv->factory.end(&SwooleG.serv->factory, fd);
}
return SW_OK;
}
#endif
if (EG(exception))
{
zend_exception_error(EG(exception), E_ERROR TSRMLS_CC);
}
//websocket user handshake
if (conn->websocket_status == WEBSOCKET_STATUS_HANDSHAKE)
{
//handshake success
if (retval && Z_BVAL_P(retval))
{
conn->websocket_status = WEBSOCKET_STATUS_ACTIVE;
}
}
free_object: bzero(client, sizeof(swoole_http_client));
sw_zval_ptr_dtor(&zrequest_object);
sw_zval_ptr_dtor(&zresponse_object);
if (retval)
{
sw_zval_ptr_dtor(&retval);
}
}
return SW_OK;
}
static void http_onClose(swServer *serv, swDataHead *ev)
{
int fd = ev->fd;
swConnection *conn = swWorker_get_connection(SwooleG.serv, fd);
if (!conn)
{
return;
}
swoole_http_client *client = swArray_fetch(http_client_array, conn->fd);
if (!client)
{
return;
}
#ifdef SW_USE_HTTP2
if (client->http2)
{
swoole_http2_free(client);
}
#endif
zval *zcallback = php_swoole_server_get_callback(serv, ev->from_fd, SW_SERVER_CB_onClose);
if (!zcallback)
{
return;
}
php_swoole_onClose(serv, ev);
}
void swoole_http_server_init(int module_number TSRMLS_DC)
{
SWOOLE_INIT_CLASS_ENTRY(swoole_http_server_ce, "swoole_http_server", "Swoole\\Http\\Server", swoole_http_server_methods);
swoole_http_server_class_entry_ptr = sw_zend_register_internal_class_ex(&swoole_http_server_ce, swoole_server_class_entry_ptr, "swoole_server" TSRMLS_CC);
SWOOLE_CLASS_ALIAS(swoole_http_server, "Swoole\\Http\\Server");
zend_declare_property_null(swoole_http_server_class_entry_ptr, SW_STRL("onRequest")-1, ZEND_ACC_PUBLIC TSRMLS_CC);
zend_declare_property_null(swoole_http_server_class_entry_ptr, SW_STRL("onHandshake")-1, ZEND_ACC_PUBLIC TSRMLS_CC);
zend_declare_property_null(swoole_http_server_class_entry_ptr, SW_STRL("setting")-1, ZEND_ACC_PUBLIC TSRMLS_CC);
SWOOLE_INIT_CLASS_ENTRY(swoole_http_response_ce, "swoole_http_response", "Swoole\\Http\\Response", swoole_http_response_methods);
swoole_http_response_class_entry_ptr = zend_register_internal_class(&swoole_http_response_ce TSRMLS_CC);
SWOOLE_CLASS_ALIAS(swoole_http_response, "Swoole\\Http\\Response");
zend_declare_property_long(swoole_http_response_class_entry_ptr, SW_STRL("fd")-1, 0, ZEND_ACC_PUBLIC TSRMLS_CC);
zend_declare_property_null(swoole_http_response_class_entry_ptr, SW_STRL("header")-1, ZEND_ACC_PUBLIC TSRMLS_CC);
zend_declare_property_null(swoole_http_response_class_entry_ptr, SW_STRL("cookie")-1, ZEND_ACC_PUBLIC TSRMLS_CC);
zend_declare_property_null(swoole_http_response_class_entry_ptr, SW_STRL("trailer")-1, ZEND_ACC_PUBLIC TSRMLS_CC);
SWOOLE_INIT_CLASS_ENTRY(swoole_http_request_ce, "swoole_http_request", "Swoole\\Http\\Request", swoole_http_request_methods);
swoole_http_request_class_entry_ptr = zend_register_internal_class(&swoole_http_request_ce TSRMLS_CC);
SWOOLE_CLASS_ALIAS(swoole_http_request, "Swoole\\Http\\Request");
zend_declare_property_long(swoole_http_request_class_entry_ptr, SW_STRL("fd")-1, 0, ZEND_ACC_PUBLIC TSRMLS_CC);
zend_declare_property_null(swoole_http_request_class_entry_ptr, SW_STRL("header")-1, ZEND_ACC_PUBLIC TSRMLS_CC);
zend_declare_property_null(swoole_http_request_class_entry_ptr, SW_STRL("server")-1, ZEND_ACC_PUBLIC TSRMLS_CC);
zend_declare_property_null(swoole_http_request_class_entry_ptr, SW_STRL("request")-1, ZEND_ACC_PUBLIC TSRMLS_CC);
zend_declare_property_null(swoole_http_request_class_entry_ptr, SW_STRL("cookie")-1, ZEND_ACC_PUBLIC TSRMLS_CC);
zend_declare_property_null(swoole_http_request_class_entry_ptr, SW_STRL("get")-1, ZEND_ACC_PUBLIC TSRMLS_CC);
zend_declare_property_null(swoole_http_request_class_entry_ptr, SW_STRL("files")-1, ZEND_ACC_PUBLIC TSRMLS_CC);
zend_declare_property_null(swoole_http_request_class_entry_ptr, SW_STRL("post")-1, ZEND_ACC_PUBLIC TSRMLS_CC);
zend_declare_property_null(swoole_http_request_class_entry_ptr, SW_STRL("tmpfiles")-1, ZEND_ACC_PUBLIC TSRMLS_CC);
}
static PHP_METHOD(swoole_http_server, on)
{
zval *callback;
zval *event_name;
if (SwooleGS->start > 0)
{
swoole_php_error(E_WARNING, "server is running. unable to register event callback function.");
RETURN_FALSE;
}
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zz", &event_name, &callback) == FAILURE)
{
return;
}
#ifdef PHP_SWOOLE_CHECK_CALLBACK
char *func_name = NULL;
#if !defined(SW_COROUTINE) && !defined(PHP_SWOOLE_ENABLE_FASTCALL)
if (!sw_zend_is_callable(callback, 0, &func_name TSRMLS_CC))
#else
zend_fcall_info_cache *func_cache = emalloc(sizeof(zend_fcall_info_cache));
if (!sw_zend_is_callable_ex(callback, NULL, 0, &func_name, NULL, func_cache, NULL TSRMLS_CC))
#endif
{
swoole_php_fatal_error(E_ERROR, "function '%s' is not callable", func_name);
efree(func_name);
RETURN_FALSE;
}
efree(func_name);
#elif defined(PHP_SWOOLE_CHECK_CALLBACK)
char *func_name = NULL;
if (!sw_zend_is_callable(callback, 0, &func_name TSRMLS_CC))
{
swoole_php_fatal_error(E_ERROR, "function '%s' is not callable", func_name);
efree(func_name);
return;
}
efree(func_name);
#endif
if (strncasecmp("request", Z_STRVAL_P(event_name), Z_STRLEN_P(event_name)) == 0)
{
zend_update_property(swoole_http_server_class_entry_ptr, getThis(), ZEND_STRL("onRequest"), callback TSRMLS_CC);
php_sw_server_callbacks[SW_SERVER_CB_onRequest] = sw_zend_read_property(swoole_http_server_class_entry_ptr, getThis(), ZEND_STRL("onRequest"), 0 TSRMLS_CC);
sw_copy_to_stack(php_sw_server_callbacks[SW_SERVER_CB_onRequest], _php_sw_server_callbacks[SW_SERVER_CB_onRequest]);
#if defined(SW_COROUTINE) || defined(PHP_SWOOLE_ENABLE_FASTCALL)
php_sw_server_caches[SW_SERVER_CB_onRequest] = func_cache;
#endif
}
else if (strncasecmp("handshake", Z_STRVAL_P(event_name), Z_STRLEN_P(event_name)) == 0)
{
zend_update_property(swoole_http_server_class_entry_ptr, getThis(), ZEND_STRL("onHandshake"), callback TSRMLS_CC);
php_sw_server_callbacks[SW_SERVER_CB_onHandShake] = sw_zend_read_property(swoole_http_server_class_entry_ptr, getThis(), ZEND_STRL("onHandshake"), 0 TSRMLS_CC);
sw_copy_to_stack(php_sw_server_callbacks[SW_SERVER_CB_onHandShake], _php_sw_server_callbacks[SW_SERVER_CB_onHandShake]);
#if defined(SW_COROUTINE) || defined(PHP_SWOOLE_ENABLE_FASTCALL)
php_sw_server_caches[SW_SERVER_CB_onHandShake] = func_cache;
#endif
}
else
{
#if defined(SW_COROUTINE) || defined(PHP_SWOOLE_ENABLE_FASTCALL)
efree(func_cache);
#endif
zval *obj = getThis();
sw_zend_call_method_with_2_params(&obj, swoole_server_class_entry_ptr, NULL, "on", &return_value, event_name, callback);
}
}
http_context* swoole_http_context_new(swoole_http_client* client TSRMLS_DC)
{
http_context *ctx = emalloc(sizeof(http_context));
if (!ctx)
{
swoole_error_log(SW_LOG_ERROR, SW_ERROR_MALLOC_FAIL, "emalloc(%ld) failed.", sizeof(http_context));
return NULL;
}
bzero(ctx, sizeof(http_context));
zval *zrequest_object;
#if PHP_MAJOR_VERSION >= 7
zrequest_object = &ctx->request._zobject;
#else
SW_ALLOC_INIT_ZVAL(zrequest_object);
#endif
ctx->request.zobject = zrequest_object;
object_init_ex(zrequest_object, swoole_http_request_class_entry_ptr);
swoole_set_object(zrequest_object, ctx);
zval *zresponse_object;
#if PHP_MAJOR_VERSION >= 7
zresponse_object = &ctx->response._zobject;
#else
SW_ALLOC_INIT_ZVAL(zresponse_object);
#endif
ctx->response.zobject = zresponse_object;
object_init_ex(zresponse_object, swoole_http_response_class_entry_ptr);
swoole_set_object(zresponse_object, ctx);
//socket fd
zend_update_property_long(swoole_http_response_class_entry_ptr, zresponse_object, ZEND_STRL("fd"), client->fd TSRMLS_CC);
zend_update_property_long(swoole_http_request_class_entry_ptr, zrequest_object, ZEND_STRL("fd"), client->fd TSRMLS_CC);
#if PHP_MEMORY_DEBUG
php_vmstat.new_http_request ++;
#endif
zval *zheader;
swoole_http_server_array_init(header, request);
zval *zserver;
swoole_http_server_array_init(server, request);
ctx->fd = client->fd;
ctx->client = client;
return ctx;
}
void swoole_http_context_free(http_context *ctx TSRMLS_DC)
{
swoole_set_object(ctx->response.zobject, NULL);
http_request *req = &ctx->request;
if (req->path)
{
efree(req->path);
}
#ifdef SW_USE_HTTP2
if (req->post_buffer)
{
swString_free(req->post_buffer);
}
#endif
efree(ctx);
}
static char *http_status_message(int code)
{
switch (code)
{
case 100:
return "100 Continue";
case 101:
return "101 Switching Protocols";
case 201:
return "201 Created";
case 202:
return "202 Accepted";
case 203:
return "203 Non-Authoritative Information";
case 204:
return "204 No Content";
case 205:
return "205 Reset Content";
case 206:
return "206 Partial Content";
case 207:
return "207 Multi-Status";
case 208:
return "208 Already Reported";
case 226:
return "226 IM Used";
case 300:
return "300 Multiple Choices";
case 301:
return "301 Moved Permanently";
case 302:
return "302 Found";
case 303:
return "303 See Other";
case 304:
return "304 Not Modified";
case 305:
return "305 Use Proxy";
case 307:
return "307 Temporary Redirect";
case 400:
return "400 Bad Request";
case 401:
return "401 Unauthorized";
case 402:
return "402 Payment Required";
case 403:
return "403 Forbidden";
case 404:
return "404 Not Found";
case 405:
return "405 Method Not Allowed";
case 406:
return "406 Not Acceptable";
case 407:
return "407 Proxy Authentication Required";
case 408:
return "408 Request Timeout";
case 409:
return "409 Conflict";
case 410:
return "410 Gone";
case 411:
return "411 Length Required";
case 412:
return "412 Precondition Failed";
case 413:
return "413 Request Entity Too Large";
case 414:
return "414 Request URI Too Long";
case 415:
return "415 Unsupported Media Type";
case 416:
return "416 Requested Range Not Satisfiable";
case 417:
return "417 Expectation Failed";
case 418:
return "418 I'm a teapot";
case 421:
return "421 Misdirected Request";
case 422:
return "422 Unprocessable Entity";
case 423:
return "423 Locked";
case 424:
return "424 Failed Dependency";
case 426:
return "426 Upgrade Required";
case 428:
return "428 Precondition Required";
case 429:
return "429 Too Many Requests";
case 431:
return "431 Request Header Fields Too Large";
case 500:
return "500 Internal Server Error";
case 501:
return "501 Method Not Implemented";
case 502:
return "502 Bad Gateway";
case 503:
return "503 Service Unavailable";
case 504:
return "504 Gateway Timeout";
case 505:
return "505 HTTP Version Not Supported";
case 506:
return "506 Variant Also Negotiates";
case 507:
return "507 Insufficient Storage";
case 508:
return "508 Loop Detected";
case 510:
return "510 Not Extended";
case 511:
return "511 Network Authentication Required";
case 200:
default:
return "200 OK";
}
}
static PHP_METHOD(swoole_http_server, start)
{
int ret;
if (SwooleGS->start > 0)
{
swoole_php_error(E_WARNING, "Server is running. Unable to execute swoole_server::start.");
RETURN_FALSE;
}
swServer *serv = swoole_get_object(getThis());
php_swoole_register_callback(serv);
if (serv->listen_list->open_websocket_protocol)
{
if (php_sw_server_callbacks[SW_SERVER_CB_onMessage] == NULL)
{
swoole_php_fatal_error(E_ERROR, "require onMessage callback");
RETURN_FALSE;
}
if (serv->listen_list->open_http2_protocol == 1)
{
swoole_php_fatal_error(E_ERROR, "cannot use http2 protocol in websocket server");
RETURN_FALSE;
}
}
else if (php_sw_server_callbacks[SW_SERVER_CB_onRequest] == NULL)
{
swoole_php_fatal_error(E_ERROR, "require onRequest callback");
RETURN_FALSE;
}
http_client_array = swArray_new(1024, sizeof(swoole_http_client));
if (!http_client_array)
{
swoole_php_fatal_error(E_ERROR, "swArray_new(1024, %ld) failed.", sizeof(swoole_http_client));
RETURN_FALSE;
}
swoole_http_buffer = swString_new(SW_HTTP_RESPONSE_INIT_SIZE);
if (!swoole_http_buffer)
{
swoole_php_fatal_error(E_ERROR, "[1] swString_new(%d) failed.", SW_HTTP_RESPONSE_INIT_SIZE);
RETURN_FALSE;
}
swoole_http_form_data_buffer = swString_new(SW_HTTP_RESPONSE_INIT_SIZE);
if (!swoole_http_form_data_buffer)
{
swoole_php_fatal_error(E_ERROR, "[2] swString_new(%d) failed.", SW_HTTP_RESPONSE_INIT_SIZE);
RETURN_FALSE;
}
#ifdef SW_HAVE_ZLIB
swoole_zlib_buffer = swString_new(SW_HTTP_RESPONSE_INIT_SIZE);
if (!swoole_zlib_buffer)
{
swoole_php_fatal_error(E_ERROR, "[3] swString_new(%d) failed.", SW_HTTP_RESPONSE_INIT_SIZE);
RETURN_FALSE;
}
#endif
serv->onReceive = http_onReceive;
if (serv->listen_list->open_http2_protocol)
{
serv->onClose = http_onClose;
}
zval *zsetting = sw_zend_read_property(swoole_server_class_entry_ptr, getThis(), ZEND_STRL("setting"), 1 TSRMLS_CC);
if (zsetting == NULL || ZVAL_IS_NULL(zsetting))
{
SW_ALLOC_INIT_ZVAL(zsetting);
array_init(zsetting);
#ifdef HT_ALLOW_COW_VIOLATION
HT_ALLOW_COW_VIOLATION(Z_ARRVAL_P(zsetting));
#endif
zend_update_property(swoole_server_class_entry_ptr, getThis(), ZEND_STRL("setting"), zsetting TSRMLS_CC);
}
add_assoc_bool(zsetting, "open_http_protocol", 1);
add_assoc_bool(zsetting, "open_mqtt_protocol", 0);
add_assoc_bool(zsetting, "open_eof_check", 0);
add_assoc_bool(zsetting, "open_length_check", 0);
if (serv->listen_list->open_websocket_protocol)
{
add_assoc_bool(zsetting, "open_websocket_protocol", 1);
}
serv->listen_list->open_http_protocol = 1;
serv->listen_list->open_mqtt_protocol = 0;
serv->listen_list->open_eof_check = 0;
serv->listen_list->open_length_check = 0;
serv->ptr2 = getThis();
//for is_uploaded_file and move_uploaded_file
ALLOC_HASHTABLE(SG(rfc1867_uploaded_files));
zend_hash_init(SG(rfc1867_uploaded_files), 8, NULL, NULL, 0);
php_swoole_server_before_start(serv, getThis() TSRMLS_CC);
ret = swServer_start(serv);
if (ret < 0)
{
swoole_php_fatal_error(E_ERROR, "failed to start server. Error: %s", sw_error);
RETURN_LONG(ret);
}
RETURN_TRUE;
}
static PHP_METHOD(swoole_http_request, rawcontent)
{
zval *zfd = sw_zend_read_property(swoole_http_request_class_entry_ptr, getThis(), ZEND_STRL("fd"), 0 TSRMLS_CC);
if (ZVAL_IS_NULL(zfd))
{
swoole_php_error(E_WARNING, "http client is not existed.");
RETURN_FALSE;
}
http_context *ctx = http_get_context(getThis(), 0 TSRMLS_CC);
if (!ctx)
{
RETURN_FALSE;
}
http_request *req = &ctx->request;
if (req->post_length > 0)
{
zval *zdata = swoole_get_property(getThis(), 0);
SW_RETVAL_STRINGL(Z_STRVAL_P(zdata) + Z_STRLEN_P(zdata) - req->post_length, req->post_length, 1);
}
#ifdef SW_USE_HTTP2
else if (req->post_buffer)
{
SW_RETVAL_STRINGL(req->post_buffer->str, req->post_buffer->length, 1);
}
#endif
else
{
RETURN_FALSE;
}
}
static PHP_METHOD(swoole_http_request, __destruct)
{
zval *ztmpfiles = sw_zend_read_property(swoole_http_request_class_entry_ptr, getThis(), ZEND_STRL("tmpfiles"), 1 TSRMLS_CC);
//upload files
if (ztmpfiles && Z_TYPE_P(ztmpfiles) == IS_ARRAY)
{
zval *file_path;
SW_HASHTABLE_FOREACH_START(Z_ARRVAL_P(ztmpfiles), file_path)
{
if (Z_TYPE_P(file_path) != IS_STRING)
{
continue;
}
unlink(Z_STRVAL_P(file_path));
if (SG(rfc1867_uploaded_files))
{
sw_zend_hash_del(SG(rfc1867_uploaded_files), Z_STRVAL_P(file_path), Z_STRLEN_P(file_path) + 1);
}
}
SW_HASHTABLE_FOREACH_END();
}
zval *zdata = swoole_get_property(getThis(), 0);
if (zdata)
{
sw_zval_free(zdata);
swoole_set_property(getThis(), 0, NULL);
}
swoole_set_object(getThis(), NULL);
}
static PHP_METHOD(swoole_http_response, write)
{
zval *zdata;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &zdata) == FAILURE)
{
return;
}
http_context *ctx = http_get_context(getThis(), 0 TSRMLS_CC);
if (!ctx)
{
return;
}
if (!ctx->send_header)
{
ctx->chunk = 1;
swString_clear(swoole_http_buffer);
http_build_header(ctx, getThis(), swoole_http_buffer, -1 TSRMLS_CC);
if (swServer_tcp_send(SwooleG.serv, ctx->fd, swoole_http_buffer->str, swoole_http_buffer->length) < 0)
{
ctx->chunk = 0;
ctx->send_header = 0;
RETURN_FALSE;
}
}
swString http_body;
int length = php_swoole_get_send_data(zdata, &http_body.str TSRMLS_CC);
if (length < 0)
{
RETURN_FALSE;
}
else if (length == 0)
{
swoole_php_error(E_WARNING, "data to send is empty.");
RETURN_FALSE;
}
else
{
http_body.length = length;
}
swString_clear(swoole_http_buffer);
char *hex_string;
int hex_len;
#ifdef SW_HAVE_ZLIB
if (ctx->gzip_enable)
{
http_response_compress(&http_body, ctx->gzip_level);
hex_string = swoole_dec2hex(swoole_zlib_buffer->length, 16);
hex_len = strlen(hex_string);
//"%*s\r\n%*s\r\n", hex_len, hex_string, body.length, body.str
swString_append_ptr(swoole_http_buffer, hex_string, hex_len);
swString_append_ptr(swoole_http_buffer, SW_STRL("\r\n") - 1);
swString_append(swoole_http_buffer, swoole_zlib_buffer);
swString_append_ptr(swoole_http_buffer, SW_STRL("\r\n") - 1);
}
else
#endif
{
hex_string = swoole_dec2hex(http_body.length, 16);
hex_len = strlen(hex_string);
//"%*s\r\n%*s\r\n", hex_len, hex_string, body.length, body.str
swString_append_ptr(swoole_http_buffer, hex_string, hex_len);
swString_append_ptr(swoole_http_buffer, SW_STRL("\r\n") - 1);
swString_append_ptr(swoole_http_buffer, http_body.str, http_body.length);
swString_append_ptr(swoole_http_buffer, SW_STRL("\r\n") - 1);
}
int ret = swServer_tcp_send(SwooleG.serv, ctx->fd, swoole_http_buffer->str, swoole_http_buffer->length);
sw_free(hex_string);
SW_CHECK_RETURN(ret);
}
static http_context* http_get_context(zval *object, int check_end TSRMLS_DC)
{
http_context *ctx = swoole_get_object(object);
if (!ctx)
{
swoole_php_fatal_error(E_WARNING, "Http request is finished.");
return NULL;
}
if (check_end && ctx->end)
{
swoole_php_fatal_error(E_WARNING, "Http request is finished.");
return NULL;
}
return ctx;
}
static void http_build_header(http_context *ctx, zval *object, swString *response, int body_length TSRMLS_DC)
{
assert(ctx->send_header == 0);
char buf[SW_HTTP_HEADER_MAX_SIZE];
int n;
char *date_str;
/**
* http status line
*/
n = snprintf(buf, sizeof(buf), "HTTP/1.1 %s\r\n", http_status_message(ctx->response.status));
swString_append_ptr(response, buf, n);
/**
* http header
*/
zval *header = ctx->response.zheader;
if (header)
{
int flag = 0x0;
HashTable *ht = Z_ARRVAL_P(header);
zval *value = NULL;
char *key = NULL;
uint32_t keylen = 0;
int type;
SW_HASHTABLE_FOREACH_START2(ht, key, keylen, type, value)
{
if (!key)
{
break;
}
if (strncasecmp(key, "Server", keylen) == 0)
{
flag |= HTTP_RESPONSE_SERVER;
}
else if (strncasecmp(key, "Connection", keylen) == 0)
{
flag |= HTTP_RESPONSE_CONNECTION;
}
else if (strncasecmp(key, "Date", keylen) == 0)
{
flag |= HTTP_RESPONSE_DATE;
}
else if (strncasecmp(key, "Content-Type", keylen) == 0)
{
flag |= HTTP_RESPONSE_CONTENT_TYPE;
}
n = snprintf(buf, sizeof(buf), "%*s: %*s\r\n", keylen - 1, key, Z_STRLEN_P(value), Z_STRVAL_P(value));
swString_append_ptr(response, buf, n);
}
SW_HASHTABLE_FOREACH_END();
(void)type;
if (!(flag & HTTP_RESPONSE_SERVER))
{
swString_append_ptr(response, ZEND_STRL("Server: "SW_HTTP_SERVER_SOFTWARE"\r\n"));
}
//websocket protocol
if (ctx->upgrade == 1)
{
swString_append_ptr(response, ZEND_STRL("\r\n"));
ctx->send_header = 1;
return;
}
if (!(flag & HTTP_RESPONSE_CONNECTION))
{
if (ctx->keepalive)
{
swString_append_ptr(response, ZEND_STRL("Connection: keep-alive\r\n"));
}
else
{
swString_append_ptr(response, ZEND_STRL("Connection: close\r\n"));
}
}
if (!(flag & HTTP_RESPONSE_CONTENT_TYPE))
{
swString_append_ptr(response, ZEND_STRL("Content-Type: text/html\r\n"));
}
if (!(flag & HTTP_RESPONSE_DATE))
{
date_str = sw_php_format_date(ZEND_STRL(SW_HTTP_DATE_FORMAT), SwooleGS->now, 0 TSRMLS_CC);
n = snprintf(buf, sizeof(buf), "Date: %s\r\n", date_str);
swString_append_ptr(response, buf, n);
efree(date_str);
}
}
else
{
//Server
swString_append_ptr(response, ZEND_STRL("Server: "SW_HTTP_SERVER_SOFTWARE"\r\nContent-Type: text/html\r\n"));
if (ctx->keepalive)
{
swString_append_ptr(response, ZEND_STRL("Connection: keep-alive\r\n"));
}
else
{
swString_append_ptr(response, ZEND_STRL("Connection: close\r\n"));
}
//Date
date_str = sw_php_format_date(ZEND_STRL(SW_HTTP_DATE_FORMAT), SwooleGS->now, 0 TSRMLS_CC);
n = snprintf(buf, sizeof(buf), "Date: %s\r\n", date_str);
efree(date_str);
swString_append_ptr(response, buf, n);
}
/**
* Http chunk
*/
if (ctx->chunk)
{
swString_append_ptr(response, SW_STRL("Transfer-Encoding: chunked\r\n") - 1);
}
/**
* Content-Length
*/
else
{
#ifdef SW_HAVE_ZLIB
if (ctx->gzip_enable)
{
body_length = swoole_zlib_buffer->length;
}
#endif
n = snprintf(buf, sizeof(buf), "Content-Length: %d\r\n", body_length);
swString_append_ptr(response, buf, n);
}
//http cookies
if (ctx->response.zcookie)
{
zval *value;
SW_HASHTABLE_FOREACH_START(Z_ARRVAL_P(ctx->response.zcookie), value)
{
if (Z_TYPE_P(value) != IS_STRING)
{
continue;
}
swString_append_ptr(response, SW_STRL("Set-Cookie: ") - 1);
swString_append_ptr(response, Z_STRVAL_P(value), Z_STRLEN_P(value));
swString_append_ptr(response, SW_STRL("\r\n") - 1);
}
SW_HASHTABLE_FOREACH_END();
}
//http compress
if (ctx->gzip_enable)
{
#ifdef SW_HTTP_COMPRESS_GZIP
swString_append_ptr(response, SW_STRL("Content-Encoding: gzip\r\n") - 1);
#else
swString_append_ptr(response, SW_STRL("Content-Encoding: deflate\r\n") - 1);
#endif
}
swString_append_ptr(response, ZEND_STRL("\r\n"));
ctx->send_header = 1;
}
#ifdef SW_HAVE_ZLIB
voidpf php_zlib_alloc(voidpf opaque, uInt items, uInt size)
{
return (voidpf)safe_emalloc(items, size, 0);
}
void php_zlib_free(voidpf opaque, voidpf address)
{
efree((void*)address);
}
static int http_response_compress(swString *body, int level)
{
assert(level > 0 || level < 10);
size_t memory_size = ((size_t) ((double) body->length * (double) 1.015)) + 10 + 8 + 4 + 1;
if (memory_size > swoole_zlib_buffer->size)
{
if (swString_extend(swoole_zlib_buffer, memory_size) < 0)
{
return SW_ERR;
}
}
z_stream zstream;
memset(&zstream, 0, sizeof(zstream));
//deflate: -0xf, gzip: 0x1f
#ifdef SW_HTTP_COMPRESS_GZIP
int encoding = 0x1f;
#else
int encoding = -0xf;
#endif
int status;
zstream.zalloc = php_zlib_alloc;
zstream.zfree = php_zlib_free;
if (Z_OK == deflateInit2(&zstream, level, Z_DEFLATED, encoding, MAX_MEM_LEVEL, Z_DEFAULT_STRATEGY))
{
zstream.next_in = (Bytef *) body->str;
zstream.next_out = (Bytef *) swoole_zlib_buffer->str;
zstream.avail_in = body->length;
zstream.avail_out = swoole_zlib_buffer->size;
status = deflate(&zstream, Z_FINISH);
deflateEnd(&zstream);
if (Z_STREAM_END == status)
{
swoole_zlib_buffer->length = zstream.total_out;
return SW_OK;
}
}
else
{
swWarn("deflateInit2() failed.");
}
return SW_ERR;
}
#endif
static PHP_METHOD(swoole_http_response, initHeader)
{
http_context *ctx = http_get_context(getThis(), 0 TSRMLS_CC);
if (!ctx)
{
RETURN_FALSE;
}
zval *zresponse_object = ctx->response.zobject;
zval *zheader = ctx->response.zheader;
if (!zheader)
{
swoole_http_server_array_init(header, response);
}
zval *zcookie = ctx->response.zcookie;
if (!zcookie)
{
swoole_http_server_array_init(cookie, response);
}
zval *ztrailer = ctx->response.ztrailer;
if (!ztrailer)
{
swoole_http_server_array_init(trailer, response);
}
}
static PHP_METHOD(swoole_http_response, end)
{
zval *zdata = NULL;
int ret;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|z", &zdata) == FAILURE)
{
return;
}
swString http_body;
if (zdata)
{
int length = php_swoole_get_send_data(zdata, &http_body.str TSRMLS_CC);
if (length < 0)
{
RETURN_FALSE;
}
else
{
http_body.length = length;
}
}
else
{
http_body.length = 0;
http_body.str = NULL;
}
http_context *ctx = http_get_context(getThis(), 0 TSRMLS_CC);
if (!ctx)
{
RETURN_FALSE;
}
#ifdef SW_USE_HTTP2
if (ctx->http2)
{
swoole_http2_do_response(ctx, &http_body);
RETURN_TRUE;
}
#endif
if (ctx->chunk)
{
ret = swServer_tcp_send(SwooleG.serv, ctx->fd, SW_STRL("0\r\n\r\n") - 1);
if (ret < 0)
{
RETURN_FALSE;
}
ctx->chunk = 0;
}
//no http chunk
else
{
swString_clear(swoole_http_buffer);
#ifdef SW_HAVE_ZLIB
if (ctx->gzip_enable)
{
if (http_body.length > 0)
{
http_response_compress(&http_body, ctx->gzip_level);
}
else
{
ctx->gzip_enable = 0;
}
}
#endif
http_build_header(ctx, getThis(), swoole_http_buffer, http_body.length TSRMLS_CC);
if (http_body.length > 0)
{
#ifdef SW_HAVE_ZLIB
if (ctx->gzip_enable)
{
swString_append(swoole_http_buffer, swoole_zlib_buffer);
}
else
#endif
{
swString_append(swoole_http_buffer, &http_body);
}
}
ret = swServer_tcp_send(SwooleG.serv, ctx->fd, swoole_http_buffer->str, swoole_http_buffer->length);
if (ret < 0)
{
ctx->send_header = 0;
RETURN_FALSE;
}
}
if (!ctx->keepalive)
{
swServer_tcp_close(SwooleG.serv, ctx->fd, 0);
}
swoole_http_context_free(ctx TSRMLS_CC);
RETURN_TRUE;
}
static PHP_METHOD(swoole_http_response, sendfile)
{
char *filename;
zend_size_t filename_length;
long offset = 0;
long length = 0;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|ll", &filename, &filename_length, &offset, &length) == FAILURE)
{
return;
}
if (filename_length <= 0)
{
swoole_php_error(E_WARNING, "file name is empty.");
RETURN_FALSE;
}
http_context *ctx = http_get_context(getThis(), 0 TSRMLS_CC);
if (!ctx)
{
RETURN_FALSE;
}
#ifdef SW_HAVE_ZLIB
if (ctx->gzip_enable)
{
swoole_php_error(E_ERROR, "can't use sendfile when gzip compression is enabled.");
RETURN_FALSE;
}
#endif
if (ctx->chunk)
{
swoole_php_error(E_ERROR, "can't use sendfile when Http-Chunk is enabled.");
RETURN_FALSE;
}
struct stat file_stat;
if (stat(filename, &file_stat) < 0)
{
swoole_php_sys_error(E_WARNING, "stat(%s) failed.", filename);
RETURN_FALSE;
}
if (file_stat.st_size == 0)
{
swoole_php_sys_error(E_WARNING, "can't send empty file[%s].", filename);
RETURN_FALSE;
}
if (file_stat.st_size <= offset)
{
swoole_php_error(E_WARNING, "parameter $offset[%ld] exceeds the file size.", offset);
RETURN_FALSE;
}
if (length > file_stat.st_size - offset)
{
swoole_php_sys_error(E_WARNING, "parameter $length[%ld] exceeds the file size.", length);
RETURN_FALSE;
}
if (length == 0)
{
length = file_stat.st_size - offset;
}
swString_clear(swoole_http_buffer);
http_build_header(ctx, getThis(), swoole_http_buffer, length TSRMLS_CC);
int ret = swServer_tcp_send(SwooleG.serv, ctx->fd, swoole_http_buffer->str, swoole_http_buffer->length);
if (ret < 0)
{
ctx->send_header = 0;
RETURN_FALSE;
}
ret = swServer_tcp_sendfile(SwooleG.serv, ctx->fd, filename, filename_length, offset, length);
if (ret < 0)
{
ctx->send_header = 0;
RETURN_FALSE;
}
if (!ctx->keepalive)
{
swServer_tcp_close(SwooleG.serv, ctx->fd, 0);
}
swoole_http_context_free(ctx TSRMLS_CC);
RETURN_TRUE;
}
static PHP_METHOD(swoole_http_response, cookie)
{
char *name, *value = NULL, *path = NULL, *domain = NULL;
long expires = 0;
zend_bool secure = 0, httponly = 0;
zend_size_t name_len, value_len = 0, path_len = 0, domain_len = 0;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|slssbb", &name, &name_len, &value, &value_len, &expires,
&path, &path_len, &domain, &domain_len, &secure, &httponly) == FAILURE)
{
return;
}
http_context *ctx = http_get_context(getThis(), 0 TSRMLS_CC);
if (!ctx)
{
RETURN_FALSE;
}
zval *zcookie = ctx->response.zcookie;
zval *zresponse_object = ctx->response.zobject;
if (!zcookie)
{
swoole_http_server_array_init(cookie, response);
}
char *cookie, *encoded_value = NULL;
int len = 0;
char *dt;
if (name && strpbrk(name, "=,; \t\r\n\013\014") != NULL)
{
swoole_php_error(E_WARNING, "Cookie names can't contain any of the following '=,; \\t\\r\\n\\013\\014'");
RETURN_FALSE;
}
len += name_len;
if (value)
{
int encoded_value_len;
encoded_value = sw_php_url_encode(value, value_len, &encoded_value_len);
len += encoded_value_len;
}
if (path)
{
len += path_len;
}
if (domain)
{
len += domain_len;
}
cookie = emalloc(len + 100);
if (value && value_len == 0)
{
dt = sw_php_format_date("D, d-M-Y H:i:s T", sizeof("D, d-M-Y H:i:s T") - 1, 1, 0 TSRMLS_CC);
snprintf(cookie, len + 100, "%s=deleted; expires=%s", name, dt);
efree(dt);
}
else
{
snprintf(cookie, len + 100, "%s=%s", name, value ? encoded_value : "");
if (expires > 0)
{
const char *p;
strlcat(cookie, "; expires=", len + 100);
dt = sw_php_format_date("D, d-M-Y H:i:s T", sizeof("D, d-M-Y H:i:s T") - 1, expires, 0 TSRMLS_CC);
p = zend_memrchr(dt, '-', strlen(dt));
if (!p || *(p + 5) != ' ')
{
efree(dt);
efree(cookie);
efree(encoded_value);
swoole_php_error(E_WARNING, "Expiry date can't be a year greater than 9999");
RETURN_FALSE;
}
strlcat(cookie, dt, len + 100);
efree(dt);
}
}
if (encoded_value)
{
efree(encoded_value);
}
if (path && path_len > 0)
{
strlcat(cookie, "; path=", len + 100);
strlcat(cookie, path, len + 100);
}
if (domain && domain_len > 0)
{
strlcat(cookie, "; domain=", len + 100);
strlcat(cookie, domain, len + 100);
}
if (secure)
{
strlcat(cookie, "; secure", len + 100);
}
if (httponly)
{
strlcat(cookie, "; httponly", len + 100);
}
sw_add_next_index_stringl(zcookie, cookie, strlen(cookie), 0);
#if PHP_MAJOR_VERSION >= 7
efree(cookie);
#endif
}
static PHP_METHOD(swoole_http_response, rawcookie)
{
char *name, *value = NULL, *path = NULL, *domain = NULL;
long expires = 0;
zend_bool secure = 0, httponly = 0;
zend_size_t name_len, value_len = 0, path_len = 0, domain_len = 0;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|slssbb", &name, &name_len, &value, &value_len, &expires,
&path, &path_len, &domain, &domain_len, &secure, &httponly) == FAILURE)
{
return;
}
http_context *ctx = http_get_context(getThis(), 0 TSRMLS_CC);
if (!ctx)
{
RETURN_FALSE;
}
zval *zcookie = ctx->response.zcookie;
zval *zresponse_object = ctx->response.zobject;
if (!zcookie)
{
swoole_http_server_array_init(cookie, response);
}
char *cookie, *encoded_value = NULL;
int len = 0;
char *dt;
if (name && strpbrk(name, "=,; \t\r\n\013\014") != NULL)
{
swoole_php_error(E_WARNING, "Cookie names can't contain any of the following '=,; \\t\\r\\n\\013\\014'");
RETURN_FALSE;
}
len += name_len;
if (value)
{
encoded_value = estrdup(value);
len += value_len;
}
if (path)
{
len += path_len;
}
if (domain)
{
len += domain_len;
}
cookie = emalloc(len + 100);
if (value && value_len == 0)
{
dt = sw_php_format_date("D, d-M-Y H:i:s T", sizeof("D, d-M-Y H:i:s T") - 1, 1, 0 TSRMLS_CC);
snprintf(cookie, len + 100, "%s=deleted; expires=%s", name, dt);
efree(dt);
}
else
{
snprintf(cookie, len + 100, "%s=%s", name, value ? encoded_value : "");
if (expires > 0)
{
const char *p;
strlcat(cookie, "; expires=", len + 100);
dt = sw_php_format_date("D, d-M-Y H:i:s T", sizeof("D, d-M-Y H:i:s T") - 1, expires, 0 TSRMLS_CC);
p = zend_memrchr(dt, '-', strlen(dt));
if (!p || *(p + 5) != ' ')
{
efree(dt);
efree(cookie);
efree(encoded_value);
swoole_php_error(E_WARNING, "Expiry date can't be a year greater than 9999");
RETURN_FALSE;
}
strlcat(cookie, dt, len + 100);
efree(dt);
}
}
if (encoded_value)
{
efree(encoded_value);
}
if (path && path_len > 0)
{
strlcat(cookie, "; path=", len + 100);
strlcat(cookie, path, len + 100);
}
if (domain && domain_len > 0)
{
strlcat(cookie, "; domain=", len + 100);
strlcat(cookie, domain, len + 100);
}
if (secure)
{
strlcat(cookie, "; secure", len + 100);
}
if (httponly)
{
strlcat(cookie, "; httponly", len + 100);
}
sw_add_next_index_stringl(zcookie, cookie, strlen(cookie), 0);
#if PHP_MAJOR_VERSION >= 7
efree(cookie);
#endif
}
static PHP_METHOD(swoole_http_response, status)
{
long http_status;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &http_status) == FAILURE)
{
return;
}
http_context *client = http_get_context(getThis(), 0 TSRMLS_CC);
if (!client)
{
RETURN_FALSE;
}
client->response.status = http_status;
}
static PHP_METHOD(swoole_http_response, header)
{
char *k, *v;
zend_size_t klen, vlen;
zend_bool ucwords = 1;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|b", &k, &klen, &v, &vlen, &ucwords) == FAILURE)
{
return;
}
http_context *ctx = http_get_context(getThis(), 0 TSRMLS_CC);
if (!ctx)
{
RETURN_FALSE;
}
zval *zheader = ctx->response.zheader;
zval *zresponse_object = ctx->response.zobject;
if (!zheader)
{
swoole_http_server_array_init(header, response);
}
if (klen > SW_HTTP_HEADER_KEY_SIZE - 1)
{
swoole_php_error(E_WARNING, "header key is too long.");
RETURN_FALSE;
}
if (vlen > SW_HTTP_HEADER_VALUE_SIZE)
{
swoole_php_error(E_WARNING, "header value is too long.");
RETURN_FALSE;
}
if (ucwords)
{
char key_buf[SW_HTTP_HEADER_KEY_SIZE];
memcpy(key_buf, k, klen);
key_buf[klen] = '\0';
if (ctx->http2)
{
swoole_strtolower(key_buf, klen);
}
else
{
http_header_key_format(key_buf, klen);
}
sw_add_assoc_stringl_ex(zheader, key_buf, klen + 1, v, vlen, 1);
}
else
{
sw_add_assoc_stringl_ex(zheader, k, klen + 1, v, vlen, 1);
}
}
#ifdef SW_USE_HTTP2
static PHP_METHOD(swoole_http_response, trailer)
{
char *k, *v;
zend_size_t klen, vlen;
zend_bool ucwords = 1;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|b", &k, &klen, &v, &vlen, &ucwords) == FAILURE)
{
return;
}
http_context *ctx = http_get_context(getThis(), 0 TSRMLS_CC);
if (!ctx)
{
RETURN_FALSE;
}
zval *ztrailer = ctx->response.ztrailer;
zval *zresponse_object = ctx->response.zobject;
if (!ztrailer)
{
swoole_http_server_array_init(trailer, response);
}
if (klen > SW_HTTP_HEADER_KEY_SIZE - 1)
{
swoole_php_error(E_WARNING, "trailer key is too long.");
RETURN_FALSE;
}
if (vlen > SW_HTTP_HEADER_VALUE_SIZE)
{
swoole_php_error(E_WARNING, "trailer value is too long.");
RETURN_FALSE;
}
if (ucwords)
{
char key_buf[SW_HTTP_HEADER_KEY_SIZE];
memcpy(key_buf, k, klen);
key_buf[klen] = '\0';
if (ctx->http2)
{
swoole_strtolower(key_buf, klen);
}
else
{
http_header_key_format(key_buf, klen);
}
sw_add_assoc_stringl_ex(ztrailer, key_buf, klen + 1, v, vlen, 1);
}
else
{
sw_add_assoc_stringl_ex(ztrailer, k, klen + 1, v, vlen, 1);
}
}
#endif
#ifdef SW_HAVE_ZLIB
static PHP_METHOD(swoole_http_response, gzip)
{
long level = Z_DEFAULT_COMPRESSION;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|l", &level) == FAILURE)
{
return;
}
http_context *context = http_get_context(getThis(), 0 TSRMLS_CC);
if (!context)
{
RETURN_FALSE;
}
if (context->send_header)
{
swoole_php_fatal_error(E_WARNING, "must be used before sending the http header.");
RETURN_FALSE;
}
if (level > 9)
{
level = 9;
}
if (level < 0)
{
level = 0;
}
context->gzip_enable = 1;
context->gzip_level = level;
}
#endif
static PHP_METHOD(swoole_http_response, __destruct)
{
http_context *context = swoole_get_object(getThis());
if (context)
{
swConnection *conn = swWorker_get_connection(SwooleG.serv, context->fd);
if (!conn || conn->closed || conn->removed)
{
swoole_http_context_free(context TSRMLS_CC);
}
else
{
zval *zobject = getThis();
zval *retval = NULL;
sw_zend_call_method_with_0_params(&zobject, swoole_http_response_class_entry_ptr, NULL, "end", &retval);
if (retval)
{
sw_zval_ptr_dtor(&retval);
}
context = swoole_get_object(getThis());
if (context)
{
swoole_http_context_free(context TSRMLS_CC);
}
}
}
}
PHP
1
https://gitee.com/tjloved/swoole-my.git
git@gitee.com:tjloved/swoole-my.git
tjloved
swoole-my
swoole-my
master

搜索帮助