X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=http_headers_api.c;h=7ac475692aff101d66d18fd7d0ca278350686bd6;hb=f41f0417afd1d0ad0609fde76a99d907117ed669;hp=c26214592b02420628e66defb06a6c5fec29b03b;hpb=9ba68660f21ea9481af483dffd666ae5bee72d11;p=m6w6%2Fext-http diff --git a/http_headers_api.c b/http_headers_api.c index c262145..7ac4756 100644 --- a/http_headers_api.c +++ b/http_headers_api.c @@ -326,22 +326,14 @@ PHP_HTTP_API http_range_status _http_get_request_ranges(HashTable *ranges, size_ PHP_HTTP_API STATUS _http_parse_headers_ex(const char *header, HashTable *headers, zend_bool prettify, http_info_callback callback_func, void **callback_data TSRMLS_DC) { - const char *colon = NULL, *line = NULL, *begin = header; - const char *body = http_locate_body(header); - size_t header_len; + const char *colon = NULL, *line = header; zval array; INIT_ZARR(array, headers); - if (body) { - header_len = body - header; - } else { - header_len = strlen(header) + 1; - } - line = header; - - if (header_len) do { + do { int value_len = 0; + switch (*line++) { case ':': @@ -392,7 +384,7 @@ PHP_HTTP_API STATUS _http_parse_headers_ex(const char *header, HashTable *header } /* if we already have got such a header make an array of those */ - if (SUCCESS == zend_hash_find(headers, key, keylen + 1, (void **) &previous)) { + if (SUCCESS == zend_hash_find(headers, key, keylen + 1, (void *) &previous)) { /* convert to array */ if (Z_TYPE_PP(previous) != IS_ARRAY) { convert_to_array(*previous); @@ -403,6 +395,8 @@ PHP_HTTP_API STATUS _http_parse_headers_ex(const char *header, HashTable *header } efree(key); } + } else { + return FAILURE; } colon = NULL; value_len = 0; @@ -410,7 +404,7 @@ PHP_HTTP_API STATUS _http_parse_headers_ex(const char *header, HashTable *header } break; } - } while (header_len > (size_t) (line - begin)); + } while (*(line-1) && !(*(line-1) == '\n' && (*line == '\n' || *line == '\r'))); return SUCCESS; } @@ -429,7 +423,7 @@ PHP_HTTP_API void _http_get_request_headers_ex(HashTable *headers, zend_bool pre #ifdef ZEND_ENGINE_2 zend_is_auto_global("_SERVER", lenof("_SERVER") TSRMLS_CC); #endif - if (SUCCESS == zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"), (void **) &hsv)) { + if (SUCCESS == zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"), (void *) &hsv)) { FOREACH_KEYLEN(pos, *hsv, key, keylen, idx) { if (key && keylen > 6 && !strncmp(key, "HTTP_", 5)) { zval **header, *orig; @@ -440,7 +434,7 @@ PHP_HTTP_API void _http_get_request_headers_ex(HashTable *headers, zend_bool pre key = pretty_key(estrndup(key, keylen), keylen, 1, 1); } - zend_hash_get_current_data_ex(Z_ARRVAL_PP(hsv), (void **) &header, &pos); + zend_hash_get_current_data_ex(Z_ARRVAL_PP(hsv), (void *) &header, &pos); orig = *header; convert_to_string_ex(header); @@ -474,7 +468,7 @@ PHP_HTTP_API zend_bool _http_match_request_header_ex(const char *header, const c zend_hash_init(&headers, 0, NULL, ZVAL_PTR_DTOR, 0); http_get_request_headers_ex(&headers, 1); - if (SUCCESS == zend_hash_find(&headers, name, name_len+1, (void **) &data)) { + if (SUCCESS == zend_hash_find(&headers, name, name_len+1, (void *) &data)) { result = (match_case ? strcmp(Z_STRVAL_PP(data), value) : strcasecmp(Z_STRVAL_PP(data), value)) ? 0 : 1; } zend_hash_destroy(&headers);