1 Star 0 Fork 0

exchange / swoole-src

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
swoole_http_request.cc 33.30 KB
一键复制 编辑 原始数据 按行查看 历史
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056
/*
+----------------------------------------------------------------------+
| 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 "swoole_http_server.h"
SW_EXTERN_C_BEGIN
#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"
SW_EXTERN_C_END
#include "main/rfc1867.h"
#include "main/php_variables.h"
#include "base64.h"
#ifdef SW_HAVE_ZLIB
#include <zlib.h>
#endif
#ifdef SW_HAVE_BROTLI
#include <brotli/encode.h>
#endif
#ifdef SW_USE_HTTP2
#include "http2.h"
#endif
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,
};
static int http_request_on_path(swoole_http_parser *parser, const char *at, size_t length);
static int http_request_on_query_string(swoole_http_parser *parser, const char *at, size_t length);
static int http_request_on_body(swoole_http_parser *parser, const char *at, size_t length);
static int http_request_on_header_field(swoole_http_parser *parser, const char *at, size_t length);
static int http_request_on_header_value(swoole_http_parser *parser, const char *at, size_t length);
static int http_request_on_headers_complete(swoole_http_parser *parser);
static int http_request_message_complete(swoole_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 int http_request_on_path(swoole_http_parser *parser, const char *at, size_t length)
{
http_context *ctx = (http_context *) parser->data;
ctx->request.path = estrndup(at, length);
ctx->request.path_len = length;
return 0;
}
static inline char* http_trim_double_quote(char *ptr, int *len)
{
int i;
char *tmp = ptr;
//ltrim('"')
for (i = 0; i < *len; i++)
{
if (tmp[0] == '"')
{
(*len)--;
tmp++;
continue;
}
else
{
break;
}
}
//rtrim('"')
for (i = (*len) - 1; i >= 0; i--)
{
if (tmp[i] == '"')
{
tmp[i] = 0;
(*len)--;
continue;
}
else
{
break;
}
}
return tmp;
}
static sw_inline const 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";
/* proxy */
case PHP_HTTP_PURGE:
return "PURGE";
/* unknown */
case PHP_HTTP_NOT_IMPLEMENTED:
return "UNKNOWN";
default:
return nullptr;
}
}
static const swoole_http_parser_settings http_parser_settings =
{
nullptr,
http_request_on_path,
http_request_on_query_string,
nullptr,
nullptr,
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,
nullptr,
multipart_body_on_header_complete,
multipart_body_on_data_end,
nullptr,
};
size_t swoole_http_requset_parse(http_context *ctx, const char *data, size_t length)
{
return swoole_http_parser_execute(&ctx->parser, &http_parser_settings, data, length);
}
zend_class_entry *swoole_http_request_ce;
static zend_object_handlers swoole_http_request_handlers;
typedef struct
{
http_context *ctx;
zend_object std;
} http_request_t;
static sw_inline http_request_t* php_swoole_http_request_fetch_object(zend_object *obj)
{
return (http_request_t *) ((char *) obj - swoole_http_request_handlers.offset);
}
http_context * php_swoole_http_request_get_context(zval *zobject)
{
return php_swoole_http_request_fetch_object(Z_OBJ_P(zobject))->ctx;
}
void php_swoole_http_request_set_context(zval *zobject, http_context *ctx)
{
php_swoole_http_request_fetch_object(Z_OBJ_P(zobject))->ctx = ctx;
}
static void php_swoole_http_request_free_object(zend_object *object)
{
http_request_t *request = php_swoole_http_request_fetch_object(object);
http_context *ctx = request->ctx;
zval zobject, *ztmpfiles;
ZVAL_OBJ(&zobject, object);
ztmpfiles = sw_zend_read_property_ex(swoole_http_request_ce, &zobject, SW_ZSTR_KNOWN(SW_ZEND_STR_TMPFILES), 0);
if (ZVAL_IS_ARRAY(ztmpfiles))
{
zval *z_file_path;
SW_HASHTABLE_FOREACH_START(Z_ARRVAL_P(ztmpfiles), z_file_path)
{
if (Z_TYPE_P(z_file_path) != IS_STRING)
{
continue;
}
unlink(Z_STRVAL_P(z_file_path));
if (SG(rfc1867_uploaded_files))
{
zend_hash_str_del(SG(rfc1867_uploaded_files), Z_STRVAL_P(z_file_path), Z_STRLEN_P(z_file_path));
}
}
SW_HASHTABLE_FOREACH_END();
}
if (ctx)
{
ctx->request.zobject = nullptr;
swoole_http_context_free(ctx);
}
zend_object_std_dtor(&request->std);
}
static zend_object *php_swoole_http_request_create_object(zend_class_entry *ce)
{
http_request_t *request = (http_request_t *) zend_object_alloc(sizeof(http_request_t), ce);
zend_object_std_init(&request->std, ce);
object_properties_init(&request->std, ce);
request->std.handlers = &swoole_http_request_handlers;
return &request->std;
}
SW_EXTERN_C_BEGIN
static PHP_METHOD(swoole_http_request, getData);
static PHP_METHOD(swoole_http_request, rawContent);
static PHP_METHOD(swoole_http_request, __destruct);
SW_EXTERN_C_END
ZEND_BEGIN_ARG_INFO_EX(arginfo_swoole_http_void, 0, 0, 0)
ZEND_END_ARG_INFO()
const zend_function_entry swoole_http_request_methods[] =
{
PHP_ME(swoole_http_request, rawContent, arginfo_swoole_http_void, ZEND_ACC_PUBLIC)
PHP_MALIAS(swoole_http_request, getContent, rawContent, arginfo_swoole_http_void, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_request, getData, arginfo_swoole_http_void, ZEND_ACC_PUBLIC)
PHP_ME(swoole_http_request, __destruct, arginfo_swoole_http_void, ZEND_ACC_PUBLIC)
PHP_FE_END
};
void php_swoole_http_request_minit(int module_number)
{
SW_INIT_CLASS_ENTRY(swoole_http_request, "Swoole\\Http\\Request", "swoole_http_request", nullptr, swoole_http_request_methods);
SW_SET_CLASS_SERIALIZABLE(swoole_http_request, zend_class_serialize_deny, zend_class_unserialize_deny);
SW_SET_CLASS_CLONEABLE(swoole_http_request, sw_zend_class_clone_deny);
SW_SET_CLASS_UNSET_PROPERTY_HANDLER(swoole_http_request, sw_zend_class_unset_property_deny);
SW_SET_CLASS_CUSTOM_OBJECT(swoole_http_request, php_swoole_http_request_create_object, php_swoole_http_request_free_object, http_request_t, std);
zend_declare_property_long(swoole_http_request_ce, ZEND_STRL("fd"), 0, ZEND_ACC_PUBLIC);
#ifdef SW_USE_HTTP2
zend_declare_property_long(swoole_http_request_ce, ZEND_STRL("streamId"), 0, ZEND_ACC_PUBLIC);
#endif
zend_declare_property_null(swoole_http_request_ce, ZEND_STRL("header"), ZEND_ACC_PUBLIC);
zend_declare_property_null(swoole_http_request_ce, ZEND_STRL("server"), ZEND_ACC_PUBLIC);
zend_declare_property_null(swoole_http_request_ce, ZEND_STRL("cookie"), ZEND_ACC_PUBLIC);
zend_declare_property_null(swoole_http_request_ce, ZEND_STRL("get"), ZEND_ACC_PUBLIC);
zend_declare_property_null(swoole_http_request_ce, ZEND_STRL("files"), ZEND_ACC_PUBLIC);
zend_declare_property_null(swoole_http_request_ce, ZEND_STRL("post"), ZEND_ACC_PUBLIC);
zend_declare_property_null(swoole_http_request_ce, ZEND_STRL("tmpfiles"), ZEND_ACC_PUBLIC);
}
static int http_request_on_query_string(swoole_http_parser *parser, const char *at, size_t length)
{
http_context *ctx = (http_context *) parser->data;
add_assoc_stringl_ex(ctx->request.zserver, ZEND_STRL("query_string"), (char *) at, length);
//parse url params
sapi_module.treat_data(
PARSE_STRING,
estrndup(at, length), // it will be freed by treat_data
swoole_http_init_and_read_property(swoole_http_request_ce, ctx->request.zobject, &ctx->request.zget, ZEND_STRL("get"))
);
return 0;
}
static int http_request_on_header_field(swoole_http_parser *parser, const char *at, size_t length)
{
http_context *ctx = (http_context *) parser->data;
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)
{
multipart_parser *mt_parser = multipart_parser_init(boundary_str, boundary_len, &mt_parser_settings);
if (!mt_parser)
{
php_swoole_fatal_error(E_WARNING, "multipart_parser_init() failed");
return SW_ERR;
}
ctx->mt_parser = mt_parser;
mt_parser->data = ctx;
return SW_OK;
}
void swoole_http_parse_cookie(zval *zarray, const char *at, size_t length)
{
char keybuf[SW_HTTP_COOKIE_KEYLEN];
char valbuf[SW_HTTP_COOKIE_VALLEN];
char *_c = (char *) at;
char *_value;
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[%.*s...] name length %d is exceed the max name len %d", 8, (char *) at + j, klen, SW_HTTP_COOKIE_KEYLEN);
return;
}
memcpy(keybuf, (char *) 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[%s]'s value[v=%.*s...] length %d is exceed the max value len %d", keybuf, 8, (char *) at + j, vlen, SW_HTTP_COOKIE_VALLEN);
return;
}
memcpy(valbuf, (char *) at + j, vlen);
valbuf[vlen] = 0;
_value = http_trim_double_quote(valbuf, &vlen);
vlen = php_url_decode(_value, vlen);
if (klen > 1)
{
add_assoc_stringl_ex(zarray, keybuf, klen - 1, _value, vlen);
}
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 < (off_t) length)
{
vlen = i - j;
if (klen >= SW_HTTP_COOKIE_KEYLEN)
{
swWarn("cookie[%.*s...] name length %d is exceed the max name len %d", 8, keybuf, klen, SW_HTTP_COOKIE_KEYLEN);
return;
}
keybuf[klen - 1] = 0;
if (vlen >= SW_HTTP_COOKIE_VALLEN)
{
swWarn("cookie[%s]'s value[v=%.*s...] length %d is exceed the max value len %d", keybuf, 8, (char *) at + j, vlen, SW_HTTP_COOKIE_VALLEN);
return;
}
memcpy(valbuf, (char *) at + j, vlen);
valbuf[vlen] = 0;
_value = http_trim_double_quote(valbuf, &vlen);
vlen = php_url_decode(_value, vlen);
if (klen > 1)
{
add_assoc_stringl_ex(zarray, keybuf, klen - 1, _value, vlen);
}
}
}
static int http_request_on_header_value(swoole_http_parser *parser, const char *at, size_t length)
{
size_t offset = 0;
http_context *ctx = (http_context *) parser->data;
zval *zheader = ctx->request.zheader;
size_t header_len = ctx->current_header_name_len;
char *header_name = zend_str_tolower_dup(ctx->current_header_name, header_len);
if (ctx->parse_cookie && SW_STREQ(header_name, header_len, "cookie"))
{
zval *zcookie = swoole_http_init_and_read_property(swoole_http_request_ce, ctx->request.zobject, &ctx->request.zcookie, ZEND_STRL("cookie"));
swoole_http_parse_cookie(zcookie, at, length);
efree(header_name);
return 0;
}
else if (SW_STREQ(header_name, header_len, "upgrade") && SW_STRCASEEQ(at, length, "websocket"))
{
ctx->websocket = 1;
if (ctx->co_socket)
{
goto _add_header;
}
swServer *serv = (swServer *) ctx->private_data;
swConnection *conn = swWorker_get_connection(serv, ctx->fd);
if (!conn)
{
swoole_error_log(SW_LOG_NOTICE, SW_ERROR_SESSION_CLOSED, "session[%d] is closed", ctx->fd);
efree(header_name);
return -1;
}
swListenPort *port = (swListenPort *) serv->connection_list[conn->server_fd].object;
if (port->open_websocket_protocol)
{
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) &&
SW_STREQ(header_name, header_len, "content-type")
)
{
if (SW_STRCASECT(at, length, "application/x-www-form-urlencoded"))
{
ctx->request.post_form_urlencoded = 1;
}
else if (SW_STRCASECT(at, length, "multipart/form-data"))
{
offset = sizeof("multipart/form-data") - 1;
while (at[offset] == ' ' || at[offset] == ';')
{
offset++;
}
offset += sizeof("boundary=") - 1;
int boundary_len = length - offset;
char *boundary_str = (char *) at + offset;
// find ';'
char *tmp = (char*) memchr(boundary_str, ';', boundary_len);
if (tmp)
{
boundary_len = tmp - boundary_str;
}
if (boundary_len <= 0)
{
swWarn("invalid multipart/form-data body fd:%d", ctx->fd);
return -1;
}
// trim '"'
if (boundary_len >= 2 && boundary_str[0] == '"' && *(boundary_str + boundary_len - 1) == '"')
{
boundary_str++;
boundary_len -= 2;
}
swTraceLog(SW_TRACE_HTTP, "form_data, boundary_str=%s", boundary_str);
swoole_http_parse_form_data(ctx, boundary_str, boundary_len);
}
}
#ifdef SW_HAVE_COMPRESSION
else if (ctx->enable_compression && SW_STREQ(header_name, header_len, "accept-encoding"))
{
swoole_http_get_compression_method(ctx, at, length);
}
#endif
else if (SW_STREQ(header_name, header_len, "transfer-encoding") && SW_STRCASECT(at, length, "chunked"))
{
ctx->recv_chunked = 1;
}
_add_header:
add_assoc_stringl_ex(zheader, header_name, header_len, (char *) at, length);
efree(header_name);
return 0;
}
static int http_request_on_headers_complete(swoole_http_parser *parser)
{
http_context *ctx = (http_context *) parser->data;
const char *vpath = ctx->request.path, *end = vpath + ctx->request.path_len, *p = end;
zval *zserver = ctx->request.zserver;
ctx->request.version = parser->http_major * 100 + parser->http_minor;
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->keepalive = swoole_http_should_keep_alive(parser);
add_assoc_string(zserver, "request_method", (char *) http_get_method_name(parser->method));
add_assoc_stringl_ex(zserver, ZEND_STRL("request_uri"), ctx->request.path, ctx->request.path_len);
// path_info should be decoded
zend_string * zstr_path = zend_string_init(ctx->request.path, ctx->request.path_len, 0);
ZSTR_LEN(zstr_path) = php_url_decode(ZSTR_VAL(zstr_path), ZSTR_LEN(zstr_path));
add_assoc_str_ex(zserver, ZEND_STRL("path_info"), zstr_path);
add_assoc_long_ex(zserver, ZEND_STRL("request_time"), time(nullptr));
add_assoc_double_ex(zserver, ZEND_STRL("request_time_float"), swoole_microtime());
add_assoc_string(zserver, "server_protocol", (char *) (ctx->request.version == 101 ? "HTTP/1.1" : "HTTP/1.0"));
ctx->current_header_name = nullptr;
return 0;
}
static int multipart_body_on_header_field(multipart_parser* p, const char *at, size_t length)
{
http_context *ctx = (http_context *) 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)
{
char value_buf[SW_HTTP_FORM_KEYLEN];
int value_len;
int ret = 0;
http_context *ctx = (http_context *) p->data;
/**
* Hash collision attack
*/
if (ctx->input_var_num > PG(max_input_vars))
{
php_swoole_error(E_WARNING,
"Input variables exceeded " ZEND_LONG_FMT ". "
"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 *header_name = zend_str_tolower_dup(ctx->current_header_name, header_len);
if (SW_STRCASEEQ(header_name, header_len, "content-disposition"))
{
//not form data
if (swoole_strnpos(at, length, ZEND_STRL("form-data;")) < 0)
{
goto _end;
}
zval tmp_array;
array_init(&tmp_array);
swoole_http_parse_cookie(&tmp_array, at + sizeof("form-data;") - 1, length - sizeof("form-data;") + 1);
zval *zform_name;
if (!(zform_name = zend_hash_str_find(Z_ARRVAL(tmp_array), ZEND_STRL("name"))))
{
goto _end;
}
if (Z_STRLEN_P(zform_name) >= SW_HTTP_FORM_KEYLEN)
{
swWarn("form_name[%s] is too large", Z_STRVAL_P(zform_name));
ret = -1;
goto _end;
}
strncpy(value_buf, Z_STRVAL_P(zform_name), Z_STRLEN_P(zform_name));
value_len = Z_STRLEN_P(zform_name);
char *tmp = http_trim_double_quote(value_buf, &value_len);
zval *zfilename;
//POST form data
if (!(zfilename = zend_hash_str_find(Z_ARRVAL(tmp_array), ZEND_STRL("filename"))))
{
ctx->current_form_data_name = estrndup(tmp, value_len);
ctx->current_form_data_name_len = value_len;
}
//upload file
else
{
if (Z_STRLEN_P(zfilename) >= SW_HTTP_FORM_KEYLEN)
{
swWarn("filename[%s] is too large", Z_STRVAL_P(zfilename));
ret = -1;
goto _end;
}
ctx->current_input_name = estrndup(tmp, value_len);
ctx->current_input_name_len = value_len;
zval *z_multipart_header = sw_malloc_zval();
array_init(z_multipart_header);
add_assoc_string(z_multipart_header, "name", (char *) "");
add_assoc_string(z_multipart_header, "type", (char *) "");
add_assoc_string(z_multipart_header, "tmp_name", (char *) "");
add_assoc_long(z_multipart_header, "error", HTTP_UPLOAD_ERR_OK);
add_assoc_long(z_multipart_header, "size", 0);
strncpy(value_buf, Z_STRVAL_P(zfilename), Z_STRLEN_P(zfilename));
value_len = Z_STRLEN_P(zfilename);
tmp = http_trim_double_quote(value_buf, &value_len);
add_assoc_stringl(z_multipart_header, "name", tmp, value_len);
if (value_len == 0)
{
add_assoc_long(z_multipart_header, "error", HTTP_UPLOAD_ERR_NO_FILE);
}
ctx->current_multipart_header = z_multipart_header;
}
zval_ptr_dtor(&tmp_array);
}
else if (SW_STRCASEEQ(header_name, header_len, "content-type") && ctx->current_multipart_header)
{
zval *z_multipart_header = ctx->current_multipart_header;
zval *zerr = zend_hash_str_find(Z_ARRVAL_P(z_multipart_header), ZEND_STRL("error"));
if (zerr && Z_TYPE_P(zerr) == IS_LONG && Z_LVAL_P(zerr) == HTTP_UPLOAD_ERR_OK)
{
add_assoc_stringl(z_multipart_header, "type", (char * ) at, length);
}
}
_end:
efree(header_name);
return ret;
}
static int multipart_body_on_data(multipart_parser* p, const char *at, size_t length)
{
http_context *ctx = (http_context *) p->data;
if (ctx->current_form_data_name)
{
swString_append_ptr(swoole_http_form_data_buffer, (char*) at, length);
return 0;
}
if (p->fp == nullptr)
{
return 0;
}
int n = fwrite(at, sizeof(char), length, (FILE *) p->fp);
if (n != (off_t) length)
{
zval *z_multipart_header = ctx->current_multipart_header;
add_assoc_long(z_multipart_header, "error", HTTP_UPLOAD_ERR_CANT_WRITE);
fclose((FILE *) p->fp);
p->fp = nullptr;
swSysWarn("write upload file failed");
}
return 0;
}
#if 0
static void get_random_file_name(char *des, const char *src)
{
unsigned char digest[16] = {};
char buf[19] = {};
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)
{
http_context *ctx = (http_context *) p->data;
if (!ctx->current_input_name)
{
return 0;
}
zval *z_multipart_header = ctx->current_multipart_header;
zval *zerr = nullptr;
if (!(zerr = zend_hash_str_find(Z_ARRVAL_P(z_multipart_header), ZEND_STRL("error"))))
{
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", ctx->upload_tmp_dir);
int tmpfile = swoole_tmpfile(file_path);
if (tmpfile < 0)
{
return 0;
}
FILE *fp = fdopen(tmpfile, "wb+");
if (fp == nullptr)
{
add_assoc_long(z_multipart_header, "error", HTTP_UPLOAD_ERR_NO_TMP_DIR);
swSysWarn("fopen(%s) failed", file_path);
return 0;
}
p->fp = fp;
add_assoc_string(z_multipart_header, "tmp_name", file_path);
size_t file_path_len = strlen(file_path);
add_next_index_stringl(
swoole_http_init_and_read_property(swoole_http_request_ce, ctx->request.zobject, &ctx->request.ztmpfiles, ZEND_STRL("tmpfiles")),
file_path, file_path_len
);
// support is_upload_file
zend_hash_str_add_ptr(SG(rfc1867_uploaded_files), file_path, file_path_len, (char *) file_path);
return 0;
}
static int multipart_body_on_data_end(multipart_parser* p)
{
http_context *ctx = (http_context *) p->data;
if (ctx->current_form_data_name)
{
php_register_variable_safe(
ctx->current_form_data_name,
swoole_http_form_data_buffer->str,
swoole_http_form_data_buffer->length,
swoole_http_init_and_read_property(swoole_http_request_ce, ctx->request.zobject, &ctx->request.zpost, ZEND_STRL("post"))
);
efree(ctx->current_form_data_name);
ctx->current_form_data_name = nullptr;
ctx->current_form_data_name_len = 0;
swString_clear(swoole_http_form_data_buffer);
return 0;
}
if (!ctx->current_input_name)
{
return 0;
}
zval *z_multipart_header = ctx->current_multipart_header;
if (p->fp != nullptr)
{
long size = swoole_file_get_size((FILE *) p->fp);
add_assoc_long(z_multipart_header, "size", size);
fclose((FILE *) p->fp);
p->fp = nullptr;
}
zval *zfiles = swoole_http_init_and_read_property(swoole_http_request_ce, ctx->request.zobject, &ctx->request.zfiles, ZEND_STRL("files"));
int input_path_pos = swoole_strnpos(ctx->current_input_name, ctx->current_input_name_len, ZEND_STRL("["));
if (ctx->parse_files && input_path_pos > 0)
{
char meta_name[SW_HTTP_FORM_KEYLEN + sizeof("[tmp_name]") - 1];
char *input_path = ctx->current_input_name + input_path_pos;
char *meta_path = meta_name + input_path_pos;
size_t meta_path_len = sizeof(meta_name) - input_path_pos;
strncpy(meta_name, ctx->current_input_name, input_path_pos);
zval *zname = zend_hash_str_find(Z_ARRVAL_P(z_multipart_header), ZEND_STRL("name"));
zval *ztype = zend_hash_str_find(Z_ARRVAL_P(z_multipart_header), ZEND_STRL("type"));
zval *zfile = zend_hash_str_find(Z_ARRVAL_P(z_multipart_header), ZEND_STRL("tmp_name"));
zval *zerr = zend_hash_str_find(Z_ARRVAL_P(z_multipart_header), ZEND_STRL("error"));
zval *zsize = zend_hash_str_find(Z_ARRVAL_P(z_multipart_header), ZEND_STRL("size"));
sw_snprintf(meta_path, meta_path_len, "[name]%s", input_path);
php_register_variable_ex(meta_name, zname, zfiles);
sw_snprintf(meta_path, meta_path_len, "[type]%s", input_path);
php_register_variable_ex(meta_name, ztype, zfiles);
sw_snprintf(meta_path, meta_path_len, "[tmp_name]%s", input_path);
php_register_variable_ex(meta_name, zfile, zfiles);
sw_snprintf(meta_path, meta_path_len, "[error]%s", input_path);
php_register_variable_ex(meta_name, zerr, zfiles);
sw_snprintf(meta_path, meta_path_len, "[size]%s", input_path);
php_register_variable_ex(meta_name, zsize, zfiles);
}
else
{
php_register_variable_ex(ctx->current_input_name, z_multipart_header, zfiles);
}
efree(ctx->current_input_name);
ctx->current_input_name = nullptr;
ctx->current_input_name_len = 0;
efree(ctx->current_multipart_header);
ctx->current_multipart_header = nullptr;
return 0;
}
static int http_request_on_body(swoole_http_parser *parser, const char *at, size_t length)
{
if (length == 0)
{
return 0;
}
http_context *ctx = (http_context *) parser->data;
bool is_beginning = (ctx->request.chunked_body ? ctx->request.chunked_body->length : ctx->request.body_length) == 0;
if (ctx->recv_chunked)
{
if (ctx->request.chunked_body == nullptr)
{
ctx->request.chunked_body = swString_new(SW_BUFFER_SIZE_STD);
if (ctx->request.chunked_body == nullptr)
{
return -1;
}
}
swString_append_ptr(ctx->request.chunked_body, at, length);
}
else
{
ctx->request.body_length += length;
}
if (!ctx->recv_chunked && ctx->parse_body && ctx->request.post_form_urlencoded)
{
sapi_module.treat_data(
PARSE_STRING,
estrndup(at, length), // do not free, it will be freed by treat_data
swoole_http_init_and_read_property(swoole_http_request_ce, ctx->request.zobject, &ctx->request.zpost, ZEND_STRL("post"))
);
}
else if (ctx->mt_parser != nullptr)
{
multipart_parser *multipart_parser = ctx->mt_parser;
if (is_beginning)
{
/* Compatibility: some clients may send extra EOL */
do
{
if (*at != '\r' && *at != '\n')
{
break;
}
at++;
length--;
} while (length != 0);
}
size_t n = multipart_parser_execute(multipart_parser, at, length);
if (n != length)
{
swoole_error_log(SW_LOG_WARNING, SW_ERROR_SERVER_INVALID_REQUEST, "parse multipart body failed, n=%zu", n);
}
}
return 0;
}
static int http_request_message_complete(swoole_http_parser *parser)
{
http_context *ctx = (http_context *) parser->data;
size_t content_length = ctx->request.chunked_body ? ctx->request.chunked_body->length : ctx->request.body_length;
if (ctx->request.chunked_body != nullptr && ctx->parse_body && ctx->request.post_form_urlencoded)
{
/* parse dechunked content */
sapi_module.treat_data(
PARSE_STRING,
estrndup(ctx->request.chunked_body->str, content_length), // do not free, it will be freed by treat_data
swoole_http_init_and_read_property(swoole_http_request_ce, ctx->request.zobject, &ctx->request.zpost, ZEND_STRL("post"))
);
}
if (ctx->mt_parser)
{
multipart_parser_free(ctx->mt_parser);
ctx->mt_parser = nullptr;
}
ctx->completed = 1;
swTraceLog(SW_TRACE_HTTP, "request body length=%ld", content_length);
return 1; /* return from execute */
}
#ifdef SW_HAVE_COMPRESSION
void swoole_http_get_compression_method(http_context *ctx, const char *accept_encoding, size_t length)
{
#ifdef SW_HAVE_BROTLI
if (swoole_strnpos(accept_encoding, length, ZEND_STRL("br")) >= 0)
{
ctx->accept_compression = 1;
ctx->compression_method = HTTP_COMPRESS_BR;
}
else
#endif
if (swoole_strnpos(accept_encoding, length, ZEND_STRL("gzip")) >= 0)
{
ctx->accept_compression = 1;
ctx->compression_method = HTTP_COMPRESS_GZIP;
}
else if (swoole_strnpos(accept_encoding, length, ZEND_STRL("deflate")) >= 0)
{
ctx->accept_compression = 1;
ctx->compression_method = HTTP_COMPRESS_DEFLATE;
}
else
{
ctx->accept_compression = 0;
}
}
const char* swoole_http_get_content_encoding(http_context *ctx)
{
if (ctx->compression_method == HTTP_COMPRESS_GZIP)
{
return "gzip";
}
else if (ctx->compression_method == HTTP_COMPRESS_DEFLATE)
{
return "deflate";
}
#ifdef SW_HAVE_BROTLI
else if (ctx->compression_method == HTTP_COMPRESS_BR)
{
return "br";
}
#endif
else
{
return nullptr;
}
}
#endif
static PHP_METHOD(swoole_http_request, rawContent)
{
http_context *ctx = php_swoole_http_request_get_and_check_context(ZEND_THIS);
if (UNEXPECTED(!ctx))
{
RETURN_FALSE;
}
http_request *req = &ctx->request;
if (req->body_length > 0)
{
zval *zdata = &req->zdata;
RETURN_STRINGL(Z_STRVAL_P(zdata) + Z_STRLEN_P(zdata) - req->body_length, req->body_length);
}
else if (req->chunked_body && req->chunked_body->length != 0)
{
RETURN_STRINGL(req->chunked_body->str, req->chunked_body->length);
}
#ifdef SW_USE_HTTP2
else if (req->h2_data_buffer && req->h2_data_buffer->length != 0)
{
RETURN_STRINGL(req->h2_data_buffer->str, req->h2_data_buffer->length);
}
#endif
RETURN_EMPTY_STRING();
}
static PHP_METHOD(swoole_http_request, getData)
{
http_context *ctx = php_swoole_http_request_get_and_check_context(ZEND_THIS);
if (UNEXPECTED(!ctx))
{
RETURN_FALSE;
}
#ifdef SW_USE_HTTP2
if (ctx->http2)
{
php_swoole_fatal_error(E_WARNING, "unable to get data from HTTP2 request");
RETURN_FALSE;
}
#endif
if (Z_TYPE(ctx->request.zdata) == IS_STRING)
{
RETURN_ZVAL(&ctx->request.zdata, 1, 0);
}
RETURN_EMPTY_STRING();
}
static PHP_METHOD(swoole_http_request, __destruct) { }
1
https://gitee.com/exchange_96/swoole-src.git
git@gitee.com:exchange_96/swoole-src.git
exchange_96
swoole-src
swoole-src
master

搜索帮助