123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020 |
- /*
- +----------------------------------------------------------------------+
- | PHP Version 5 |
- +----------------------------------------------------------------------+
- | Copyright (c) 1997-2016 The PHP Group |
- +----------------------------------------------------------------------+
- | This source file is subject to version 3.01 of the PHP 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.php.net/license/3_01.txt |
- | If you did not receive a copy of the PHP license and are unable to |
- | obtain it through the world-wide-web, please send a note to |
- | license@php.net so we can mail you a copy immediately. |
- +----------------------------------------------------------------------+
- | Authors: Rasmus Lerdorf <rasmus@php.net> |
- | Jim Winstead <jimw@php.net> |
- | Hartmut Holzgraefe <hholzgra@php.net> |
- | Wez Furlong <wez@thebrainroom.com> |
- | Sara Golemon <pollita@php.net> |
- +----------------------------------------------------------------------+
- */
- /* $Id$ */
- #include "php.h"
- #include "php_globals.h"
- #include "php_streams.h"
- #include "php_network.h"
- #include "php_ini.h"
- #include "ext/standard/basic_functions.h"
- #include "ext/standard/php_smart_str.h"
- #include <stdio.h>
- #include <stdlib.h>
- #include <errno.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #ifdef PHP_WIN32
- #define O_RDONLY _O_RDONLY
- #include "win32/param.h"
- #else
- #include <sys/param.h>
- #endif
- #include "php_standard.h"
- #include <sys/types.h>
- #if HAVE_SYS_SOCKET_H
- #include <sys/socket.h>
- #endif
- #ifdef PHP_WIN32
- #include <winsock2.h>
- #elif defined(NETWARE) && defined(USE_WINSOCK)
- #include <novsock2.h>
- #else
- #include <netinet/in.h>
- #include <netdb.h>
- #if HAVE_ARPA_INET_H
- #include <arpa/inet.h>
- #endif
- #endif
- #if defined(PHP_WIN32) || defined(__riscos__) || defined(NETWARE)
- #undef AF_UNIX
- #endif
- #if defined(AF_UNIX)
- #include <sys/un.h>
- #endif
- #include "php_fopen_wrappers.h"
- #define HTTP_HEADER_BLOCK_SIZE 1024
- #define PHP_URL_REDIRECT_MAX 20
- #define HTTP_HEADER_USER_AGENT 1
- #define HTTP_HEADER_HOST 2
- #define HTTP_HEADER_AUTH 4
- #define HTTP_HEADER_FROM 8
- #define HTTP_HEADER_CONTENT_LENGTH 16
- #define HTTP_HEADER_TYPE 32
- #define HTTP_HEADER_CONNECTION 64
- #define HTTP_WRAPPER_HEADER_INIT 1
- #define HTTP_WRAPPER_REDIRECTED 2
- static inline void strip_header(char *header_bag, char *lc_header_bag,
- const char *lc_header_name)
- {
- char *lc_header_start = strstr(lc_header_bag, lc_header_name);
- char *header_start = header_bag + (lc_header_start - lc_header_bag);
- if (lc_header_start
- && (lc_header_start == lc_header_bag || *(lc_header_start-1) == '\n')
- ) {
- char *lc_eol = strchr(lc_header_start, '\n');
- char *eol = header_start + (lc_eol - lc_header_start);
- if (lc_eol) {
- size_t eollen = strlen(lc_eol);
- memmove(lc_header_start, lc_eol+1, eollen);
- memmove(header_start, eol+1, eollen);
- } else {
- *lc_header_start = '\0';
- *header_start = '\0';
- }
- }
- }
- php_stream *php_stream_url_wrap_http_ex(php_stream_wrapper *wrapper,
- const char *path, const char *mode, int options, char **opened_path,
- php_stream_context *context, int redirect_max, int flags STREAMS_DC TSRMLS_DC) /* {{{ */
- {
- php_stream *stream = NULL;
- php_url *resource = NULL;
- int use_ssl;
- int use_proxy = 0;
- char *scratch = NULL;
- char *tmp = NULL;
- char *ua_str = NULL;
- zval **ua_zval = NULL, **tmpzval = NULL, *ssl_proxy_peer_name = NULL;
- int scratch_len = 0;
- int body = 0;
- char location[HTTP_HEADER_BLOCK_SIZE];
- zval *response_header = NULL;
- int reqok = 0;
- char *http_header_line = NULL;
- char tmp_line[128];
- size_t chunk_size = 0, file_size = 0;
- int eol_detect = 0;
- char *transport_string, *errstr = NULL;
- int transport_len, have_header = 0, request_fulluri = 0, ignore_errors = 0;
- char *protocol_version = NULL;
- int protocol_version_len = 3; /* Default: "1.0" */
- struct timeval timeout;
- char *user_headers = NULL;
- int header_init = ((flags & HTTP_WRAPPER_HEADER_INIT) != 0);
- int redirected = ((flags & HTTP_WRAPPER_REDIRECTED) != 0);
- int follow_location = 1;
- php_stream_filter *transfer_encoding = NULL;
- int response_code;
- tmp_line[0] = '\0';
- if (redirect_max < 1) {
- php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Redirection limit reached, aborting");
- return NULL;
- }
- resource = php_url_parse(path);
- if (resource == NULL) {
- return NULL;
- }
- if (strncasecmp(resource->scheme, "http", sizeof("http")) && strncasecmp(resource->scheme, "https", sizeof("https"))) {
- if (!context ||
- php_stream_context_get_option(context, wrapper->wops->label, "proxy", &tmpzval) == FAILURE ||
- Z_TYPE_PP(tmpzval) != IS_STRING ||
- Z_STRLEN_PP(tmpzval) <= 0) {
- php_url_free(resource);
- return php_stream_open_wrapper_ex(path, mode, REPORT_ERRORS, NULL, context);
- }
- /* Called from a non-http wrapper with http proxying requested (i.e. ftp) */
- request_fulluri = 1;
- use_ssl = 0;
- use_proxy = 1;
- transport_len = Z_STRLEN_PP(tmpzval);
- transport_string = estrndup(Z_STRVAL_PP(tmpzval), Z_STRLEN_PP(tmpzval));
- } else {
- /* Normal http request (possibly with proxy) */
- if (strpbrk(mode, "awx+")) {
- php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "HTTP wrapper does not support writeable connections");
- php_url_free(resource);
- return NULL;
- }
- use_ssl = resource->scheme && (strlen(resource->scheme) > 4) && resource->scheme[4] == 's';
- /* choose default ports */
- if (use_ssl && resource->port == 0)
- resource->port = 443;
- else if (resource->port == 0)
- resource->port = 80;
- if (context &&
- php_stream_context_get_option(context, wrapper->wops->label, "proxy", &tmpzval) == SUCCESS &&
- Z_TYPE_PP(tmpzval) == IS_STRING &&
- Z_STRLEN_PP(tmpzval) > 0) {
- use_proxy = 1;
- transport_len = Z_STRLEN_PP(tmpzval);
- transport_string = estrndup(Z_STRVAL_PP(tmpzval), Z_STRLEN_PP(tmpzval));
- } else {
- transport_len = spprintf(&transport_string, 0, "%s://%s:%d", use_ssl ? "ssl" : "tcp", resource->host, resource->port);
- }
- }
- if (context && php_stream_context_get_option(context, wrapper->wops->label, "timeout", &tmpzval) == SUCCESS) {
- SEPARATE_ZVAL(tmpzval);
- convert_to_double_ex(tmpzval);
- timeout.tv_sec = (time_t) Z_DVAL_PP(tmpzval);
- timeout.tv_usec = (size_t) ((Z_DVAL_PP(tmpzval) - timeout.tv_sec) * 1000000);
- } else {
- timeout.tv_sec = FG(default_socket_timeout);
- timeout.tv_usec = 0;
- }
- stream = php_stream_xport_create(transport_string, transport_len, options,
- STREAM_XPORT_CLIENT | STREAM_XPORT_CONNECT,
- NULL, &timeout, context, &errstr, NULL);
- if (stream) {
- php_stream_set_option(stream, PHP_STREAM_OPTION_READ_TIMEOUT, 0, &timeout);
- }
- if (errstr) {
- php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "%s", errstr);
- efree(errstr);
- errstr = NULL;
- }
- efree(transport_string);
- if (stream && use_proxy && use_ssl) {
- smart_str header = {0};
- /* Set peer_name or name verification will try to use the proxy server name */
- if (!context || php_stream_context_get_option(context, "ssl", "peer_name", &tmpzval) == FAILURE) {
- MAKE_STD_ZVAL(ssl_proxy_peer_name);
- ZVAL_STRING(ssl_proxy_peer_name, resource->host, 1);
- php_stream_context_set_option(stream->context, "ssl", "peer_name", ssl_proxy_peer_name);
- }
- smart_str_appendl(&header, "CONNECT ", sizeof("CONNECT ")-1);
- smart_str_appends(&header, resource->host);
- smart_str_appendc(&header, ':');
- smart_str_append_unsigned(&header, resource->port);
- smart_str_appendl(&header, " HTTP/1.0\r\n", sizeof(" HTTP/1.0\r\n")-1);
- /* check if we have Proxy-Authorization header */
- if (context && php_stream_context_get_option(context, "http", "header", &tmpzval) == SUCCESS) {
- char *s, *p;
- if (Z_TYPE_PP(tmpzval) == IS_ARRAY) {
- HashPosition pos;
- zval **tmpheader = NULL;
- for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_PP(tmpzval), &pos);
- SUCCESS == zend_hash_get_current_data_ex(Z_ARRVAL_PP(tmpzval), (void *)&tmpheader, &pos);
- zend_hash_move_forward_ex(Z_ARRVAL_PP(tmpzval), &pos)) {
- if (Z_TYPE_PP(tmpheader) == IS_STRING) {
- s = Z_STRVAL_PP(tmpheader);
- do {
- while (*s == ' ' || *s == '\t') s++;
- p = s;
- while (*p != 0 && *p != ':' && *p != '\r' && *p !='\n') p++;
- if (*p == ':') {
- p++;
- if (p - s == sizeof("Proxy-Authorization:") - 1 &&
- zend_binary_strcasecmp(s, sizeof("Proxy-Authorization:") - 1,
- "Proxy-Authorization:", sizeof("Proxy-Authorization:") - 1) == 0) {
- while (*p != 0 && *p != '\r' && *p !='\n') p++;
- smart_str_appendl(&header, s, p - s);
- smart_str_appendl(&header, "\r\n", sizeof("\r\n")-1);
- goto finish;
- } else {
- while (*p != 0 && *p != '\r' && *p !='\n') p++;
- }
- }
- s = p;
- while (*s == '\r' || *s == '\n') s++;
- } while (*s != 0);
- }
- }
- } else if (Z_TYPE_PP(tmpzval) == IS_STRING && Z_STRLEN_PP(tmpzval)) {
- s = Z_STRVAL_PP(tmpzval);
- do {
- while (*s == ' ' || *s == '\t') s++;
- p = s;
- while (*p != 0 && *p != ':' && *p != '\r' && *p !='\n') p++;
- if (*p == ':') {
- p++;
- if (p - s == sizeof("Proxy-Authorization:") - 1 &&
- zend_binary_strcasecmp(s, sizeof("Proxy-Authorization:") - 1,
- "Proxy-Authorization:", sizeof("Proxy-Authorization:") - 1) == 0) {
- while (*p != 0 && *p != '\r' && *p !='\n') p++;
- smart_str_appendl(&header, s, p - s);
- smart_str_appendl(&header, "\r\n", sizeof("\r\n")-1);
- goto finish;
- } else {
- while (*p != 0 && *p != '\r' && *p !='\n') p++;
- }
- }
- s = p;
- while (*s == '\r' || *s == '\n') s++;
- } while (*s != 0);
- }
- }
- finish:
- smart_str_appendl(&header, "\r\n", sizeof("\r\n")-1);
- if (php_stream_write(stream, header.c, header.len) != header.len) {
- php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Cannot connect to HTTPS server through proxy");
- php_stream_close(stream);
- stream = NULL;
- }
- smart_str_free(&header);
- if (stream) {
- char header_line[HTTP_HEADER_BLOCK_SIZE];
- /* get response header */
- while (php_stream_gets(stream, header_line, HTTP_HEADER_BLOCK_SIZE-1) != NULL) {
- if (header_line[0] == '\n' ||
- header_line[0] == '\r' ||
- header_line[0] == '\0') {
- break;
- }
- }
- }
- /* enable SSL transport layer */
- if (stream) {
- if (php_stream_xport_crypto_setup(stream, STREAM_CRYPTO_METHOD_SSLv23_CLIENT, NULL TSRMLS_CC) < 0 ||
- php_stream_xport_crypto_enable(stream, 1 TSRMLS_CC) < 0) {
- php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Cannot connect to HTTPS server through proxy");
- php_stream_close(stream);
- stream = NULL;
- }
- }
- }
- if (stream == NULL)
- goto out;
- /* avoid buffering issues while reading header */
- if (options & STREAM_WILL_CAST)
- chunk_size = php_stream_set_chunk_size(stream, 1);
- /* avoid problems with auto-detecting when reading the headers -> the headers
- * are always in canonical \r\n format */
- eol_detect = stream->flags & (PHP_STREAM_FLAG_DETECT_EOL | PHP_STREAM_FLAG_EOL_MAC);
- stream->flags &= ~(PHP_STREAM_FLAG_DETECT_EOL | PHP_STREAM_FLAG_EOL_MAC);
- php_stream_context_set(stream, context);
- php_stream_notify_info(context, PHP_STREAM_NOTIFY_CONNECT, NULL, 0);
- if (header_init && context && php_stream_context_get_option(context, "http", "max_redirects", &tmpzval) == SUCCESS) {
- SEPARATE_ZVAL(tmpzval);
- convert_to_long_ex(tmpzval);
- redirect_max = Z_LVAL_PP(tmpzval);
- }
- if (context && php_stream_context_get_option(context, "http", "method", &tmpzval) == SUCCESS) {
- if (Z_TYPE_PP(tmpzval) == IS_STRING && Z_STRLEN_PP(tmpzval) > 0) {
- /* As per the RFC, automatically redirected requests MUST NOT use other methods than
- * GET and HEAD unless it can be confirmed by the user */
- if (!redirected
- || (Z_STRLEN_PP(tmpzval) == 3 && memcmp("GET", Z_STRVAL_PP(tmpzval), 3) == 0)
- || (Z_STRLEN_PP(tmpzval) == 4 && memcmp("HEAD",Z_STRVAL_PP(tmpzval), 4) == 0)
- ) {
- scratch_len = strlen(path) + 29 + Z_STRLEN_PP(tmpzval);
- scratch = emalloc(scratch_len);
- strlcpy(scratch, Z_STRVAL_PP(tmpzval), Z_STRLEN_PP(tmpzval) + 1);
- strncat(scratch, " ", 1);
- }
- }
- }
- if (context && php_stream_context_get_option(context, "http", "protocol_version", &tmpzval) == SUCCESS) {
- SEPARATE_ZVAL(tmpzval);
- convert_to_double_ex(tmpzval);
- protocol_version_len = spprintf(&protocol_version, 0, "%.1F", Z_DVAL_PP(tmpzval));
- }
- if (!scratch) {
- scratch_len = strlen(path) + 29 + protocol_version_len;
- scratch = emalloc(scratch_len);
- strncpy(scratch, "GET ", scratch_len);
- }
- /* Should we send the entire path in the request line, default to no. */
- if (!request_fulluri &&
- context &&
- php_stream_context_get_option(context, "http", "request_fulluri", &tmpzval) == SUCCESS) {
- zval ztmp = **tmpzval;
- zval_copy_ctor(&ztmp);
- convert_to_boolean(&ztmp);
- request_fulluri = Z_BVAL(ztmp) ? 1 : 0;
- zval_dtor(&ztmp);
- }
- if (request_fulluri) {
- /* Ask for everything */
- strcat(scratch, path);
- } else {
- /* Send the traditional /path/to/file?query_string */
- /* file */
- if (resource->path && *resource->path) {
- strlcat(scratch, resource->path, scratch_len);
- } else {
- strlcat(scratch, "/", scratch_len);
- }
- /* query string */
- if (resource->query) {
- strlcat(scratch, "?", scratch_len);
- strlcat(scratch, resource->query, scratch_len);
- }
- }
- /* protocol version we are speaking */
- if (protocol_version) {
- strlcat(scratch, " HTTP/", scratch_len);
- strlcat(scratch, protocol_version, scratch_len);
- strlcat(scratch, "\r\n", scratch_len);
- } else {
- strlcat(scratch, " HTTP/1.0\r\n", scratch_len);
- }
- /* send it */
- php_stream_write(stream, scratch, strlen(scratch));
- if (context && php_stream_context_get_option(context, "http", "header", &tmpzval) == SUCCESS) {
- tmp = NULL;
- if (Z_TYPE_PP(tmpzval) == IS_ARRAY) {
- HashPosition pos;
- zval **tmpheader = NULL;
- smart_str tmpstr = {0};
- for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_PP(tmpzval), &pos);
- SUCCESS == zend_hash_get_current_data_ex(Z_ARRVAL_PP(tmpzval), (void *)&tmpheader, &pos);
- zend_hash_move_forward_ex(Z_ARRVAL_PP(tmpzval), &pos)
- ) {
- if (Z_TYPE_PP(tmpheader) == IS_STRING) {
- smart_str_appendl(&tmpstr, Z_STRVAL_PP(tmpheader), Z_STRLEN_PP(tmpheader));
- smart_str_appendl(&tmpstr, "\r\n", sizeof("\r\n") - 1);
- }
- }
- smart_str_0(&tmpstr);
- /* Remove newlines and spaces from start and end. there's at least one extra \r\n at the end that needs to go. */
- if (tmpstr.c) {
- tmp = php_trim(tmpstr.c, strlen(tmpstr.c), NULL, 0, NULL, 3 TSRMLS_CC);
- smart_str_free(&tmpstr);
- }
- }
- if (Z_TYPE_PP(tmpzval) == IS_STRING && Z_STRLEN_PP(tmpzval)) {
- /* Remove newlines and spaces from start and end php_trim will estrndup() */
- tmp = php_trim(Z_STRVAL_PP(tmpzval), Z_STRLEN_PP(tmpzval), NULL, 0, NULL, 3 TSRMLS_CC);
- }
- if (tmp && strlen(tmp) > 0) {
- char *s;
- user_headers = estrdup(tmp);
- /* Make lowercase for easy comparison against 'standard' headers */
- php_strtolower(tmp, strlen(tmp));
- if (!header_init) {
- /* strip POST headers on redirect */
- strip_header(user_headers, tmp, "content-length:");
- strip_header(user_headers, tmp, "content-type:");
- }
- if ((s = strstr(tmp, "user-agent:")) &&
- (s == tmp || *(s-1) == '\r' || *(s-1) == '\n' ||
- *(s-1) == '\t' || *(s-1) == ' ')) {
- have_header |= HTTP_HEADER_USER_AGENT;
- }
- if ((s = strstr(tmp, "host:")) &&
- (s == tmp || *(s-1) == '\r' || *(s-1) == '\n' ||
- *(s-1) == '\t' || *(s-1) == ' ')) {
- have_header |= HTTP_HEADER_HOST;
- }
- if ((s = strstr(tmp, "from:")) &&
- (s == tmp || *(s-1) == '\r' || *(s-1) == '\n' ||
- *(s-1) == '\t' || *(s-1) == ' ')) {
- have_header |= HTTP_HEADER_FROM;
- }
- if ((s = strstr(tmp, "authorization:")) &&
- (s == tmp || *(s-1) == '\r' || *(s-1) == '\n' ||
- *(s-1) == '\t' || *(s-1) == ' ')) {
- have_header |= HTTP_HEADER_AUTH;
- }
- if ((s = strstr(tmp, "content-length:")) &&
- (s == tmp || *(s-1) == '\r' || *(s-1) == '\n' ||
- *(s-1) == '\t' || *(s-1) == ' ')) {
- have_header |= HTTP_HEADER_CONTENT_LENGTH;
- }
- if ((s = strstr(tmp, "content-type:")) &&
- (s == tmp || *(s-1) == '\r' || *(s-1) == '\n' ||
- *(s-1) == '\t' || *(s-1) == ' ')) {
- have_header |= HTTP_HEADER_TYPE;
- }
- if ((s = strstr(tmp, "connection:")) &&
- (s == tmp || *(s-1) == '\r' || *(s-1) == '\n' ||
- *(s-1) == '\t' || *(s-1) == ' ')) {
- have_header |= HTTP_HEADER_CONNECTION;
- }
- /* remove Proxy-Authorization header */
- if (use_proxy && use_ssl && (s = strstr(tmp, "proxy-authorization:")) &&
- (s == tmp || *(s-1) == '\r' || *(s-1) == '\n' ||
- *(s-1) == '\t' || *(s-1) == ' ')) {
- char *p = s + sizeof("proxy-authorization:") - 1;
- while (s > tmp && (*(s-1) == ' ' || *(s-1) == '\t')) s--;
- while (*p != 0 && *p != '\r' && *p != '\n') p++;
- while (*p == '\r' || *p == '\n') p++;
- if (*p == 0) {
- if (s == tmp) {
- efree(user_headers);
- user_headers = NULL;
- } else {
- while (s > tmp && (*(s-1) == '\r' || *(s-1) == '\n')) s--;
- user_headers[s - tmp] = 0;
- }
- } else {
- memmove(user_headers + (s - tmp), user_headers + (p - tmp), strlen(p) + 1);
- }
- }
- }
- if (tmp) {
- efree(tmp);
- }
- }
- /* auth header if it was specified */
- if (((have_header & HTTP_HEADER_AUTH) == 0) && resource->user) {
- /* decode the strings first */
- php_url_decode(resource->user, strlen(resource->user));
- /* scratch is large enough, since it was made large enough for the whole URL */
- strcpy(scratch, resource->user);
- strcat(scratch, ":");
- /* Note: password is optional! */
- if (resource->pass) {
- php_url_decode(resource->pass, strlen(resource->pass));
- strcat(scratch, resource->pass);
- }
- tmp = (char*)php_base64_encode((unsigned char*)scratch, strlen(scratch), NULL);
- if (snprintf(scratch, scratch_len, "Authorization: Basic %s\r\n", tmp) > 0) {
- php_stream_write(stream, scratch, strlen(scratch));
- php_stream_notify_info(context, PHP_STREAM_NOTIFY_AUTH_REQUIRED, NULL, 0);
- }
- efree(tmp);
- tmp = NULL;
- }
- /* if the user has configured who they are, send a From: line */
- if (((have_header & HTTP_HEADER_FROM) == 0) && FG(from_address)) {
- if (snprintf(scratch, scratch_len, "From: %s\r\n", FG(from_address)) > 0)
- php_stream_write(stream, scratch, strlen(scratch));
- }
- /* Send Host: header so name-based virtual hosts work */
- if ((have_header & HTTP_HEADER_HOST) == 0) {
- if ((use_ssl && resource->port != 443 && resource->port != 0) ||
- (!use_ssl && resource->port != 80 && resource->port != 0)) {
- if (snprintf(scratch, scratch_len, "Host: %s:%i\r\n", resource->host, resource->port) > 0)
- php_stream_write(stream, scratch, strlen(scratch));
- } else {
- if (snprintf(scratch, scratch_len, "Host: %s\r\n", resource->host) > 0) {
- php_stream_write(stream, scratch, strlen(scratch));
- }
- }
- }
- /* Send a Connection: close header to avoid hanging when the server
- * interprets the RFC literally and establishes a keep-alive connection,
- * unless the user specifically requests something else by specifying a
- * Connection header in the context options. Send that header even for
- * HTTP/1.0 to avoid issues when the server respond with a HTTP/1.1
- * keep-alive response, which is the preferred response type. */
- if ((have_header & HTTP_HEADER_CONNECTION) == 0) {
- php_stream_write_string(stream, "Connection: close\r\n");
- }
- if (context &&
- php_stream_context_get_option(context, "http", "user_agent", &ua_zval) == SUCCESS &&
- Z_TYPE_PP(ua_zval) == IS_STRING) {
- ua_str = Z_STRVAL_PP(ua_zval);
- } else if (FG(user_agent)) {
- ua_str = FG(user_agent);
- }
- if (((have_header & HTTP_HEADER_USER_AGENT) == 0) && ua_str) {
- #define _UA_HEADER "User-Agent: %s\r\n"
- char *ua;
- size_t ua_len;
- ua_len = sizeof(_UA_HEADER) + strlen(ua_str);
- /* ensure the header is only sent if user_agent is not blank */
- if (ua_len > sizeof(_UA_HEADER)) {
- ua = emalloc(ua_len + 1);
- if ((ua_len = slprintf(ua, ua_len, _UA_HEADER, ua_str)) > 0) {
- ua[ua_len] = 0;
- php_stream_write(stream, ua, ua_len);
- } else {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot construct User-agent header");
- }
- if (ua) {
- efree(ua);
- }
- }
- }
- if (user_headers) {
- /* A bit weird, but some servers require that Content-Length be sent prior to Content-Type for POST
- * see bug #44603 for details. Since Content-Type maybe part of user's headers we need to do this check first.
- */
- if (
- header_init &&
- context &&
- !(have_header & HTTP_HEADER_CONTENT_LENGTH) &&
- php_stream_context_get_option(context, "http", "content", &tmpzval) == SUCCESS &&
- Z_TYPE_PP(tmpzval) == IS_STRING && Z_STRLEN_PP(tmpzval) > 0
- ) {
- scratch_len = slprintf(scratch, scratch_len, "Content-Length: %d\r\n", Z_STRLEN_PP(tmpzval));
- php_stream_write(stream, scratch, scratch_len);
- have_header |= HTTP_HEADER_CONTENT_LENGTH;
- }
- php_stream_write(stream, user_headers, strlen(user_headers));
- php_stream_write(stream, "\r\n", sizeof("\r\n")-1);
- efree(user_headers);
- }
- /* Request content, such as for POST requests */
- if (header_init && context &&
- php_stream_context_get_option(context, "http", "content", &tmpzval) == SUCCESS &&
- Z_TYPE_PP(tmpzval) == IS_STRING && Z_STRLEN_PP(tmpzval) > 0) {
- if (!(have_header & HTTP_HEADER_CONTENT_LENGTH)) {
- scratch_len = slprintf(scratch, scratch_len, "Content-Length: %d\r\n", Z_STRLEN_PP(tmpzval));
- php_stream_write(stream, scratch, scratch_len);
- }
- if (!(have_header & HTTP_HEADER_TYPE)) {
- php_stream_write(stream, "Content-Type: application/x-www-form-urlencoded\r\n",
- sizeof("Content-Type: application/x-www-form-urlencoded\r\n") - 1);
- php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Content-type not specified assuming application/x-www-form-urlencoded");
- }
- php_stream_write(stream, "\r\n", sizeof("\r\n")-1);
- php_stream_write(stream, Z_STRVAL_PP(tmpzval), Z_STRLEN_PP(tmpzval));
- } else {
- php_stream_write(stream, "\r\n", sizeof("\r\n")-1);
- }
- location[0] = '\0';
- if (!EG(active_symbol_table)) {
- zend_rebuild_symbol_table(TSRMLS_C);
- }
- if (header_init) {
- zval *ztmp;
- MAKE_STD_ZVAL(ztmp);
- array_init(ztmp);
- ZEND_SET_SYMBOL(EG(active_symbol_table), "http_response_header", ztmp);
- }
- {
- zval **rh;
- if(zend_hash_find(EG(active_symbol_table), "http_response_header", sizeof("http_response_header"), (void **) &rh) != SUCCESS || Z_TYPE_PP(rh) != IS_ARRAY) {
- php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "HTTP request failed, http_response_header overwritten");
- goto out;
- }
- response_header = *rh;
- Z_ADDREF_P(response_header);
- }
- if (!php_stream_eof(stream)) {
- size_t tmp_line_len;
- /* get response header */
- if (php_stream_get_line(stream, tmp_line, sizeof(tmp_line) - 1, &tmp_line_len) != NULL) {
- zval *http_response;
- if (tmp_line_len > 9) {
- response_code = atoi(tmp_line + 9);
- } else {
- response_code = 0;
- }
- if (context && SUCCESS==php_stream_context_get_option(context, "http", "ignore_errors", &tmpzval)) {
- ignore_errors = zend_is_true(*tmpzval);
- }
- /* when we request only the header, don't fail even on error codes */
- if ((options & STREAM_ONLY_GET_HEADERS) || ignore_errors) {
- reqok = 1;
- }
- /* status codes of 1xx are "informational", and will be followed by a real response
- * e.g "100 Continue". RFC 7231 states that unexpected 1xx status MUST be parsed,
- * and MAY be ignored. As such, we need to skip ahead to the "real" status*/
- if (response_code >= 100 && response_code < 200) {
- /* consume lines until we find a line starting 'HTTP/1' */
- while (
- !php_stream_eof(stream)
- && php_stream_get_line(stream, tmp_line, sizeof(tmp_line) - 1, &tmp_line_len) != NULL
- && ( tmp_line_len < sizeof("HTTP/1") - 1 || strncasecmp(tmp_line, "HTTP/1", sizeof("HTTP/1") - 1) )
- );
- if (tmp_line_len > 9) {
- response_code = atoi(tmp_line + 9);
- } else {
- response_code = 0;
- }
- }
- /* all status codes in the 2xx range are defined by the specification as successful;
- * all status codes in the 3xx range are for redirection, and so also should never
- * fail */
- if (response_code >= 200 && response_code < 400) {
- reqok = 1;
- } else {
- switch(response_code) {
- case 403:
- php_stream_notify_error(context, PHP_STREAM_NOTIFY_AUTH_RESULT,
- tmp_line, response_code);
- break;
- default:
- /* safety net in the event tmp_line == NULL */
- if (!tmp_line_len) {
- tmp_line[0] = '\0';
- }
- php_stream_notify_error(context, PHP_STREAM_NOTIFY_FAILURE,
- tmp_line, response_code);
- }
- }
- if (tmp_line_len >= 1 && tmp_line[tmp_line_len - 1] == '\n') {
- --tmp_line_len;
- if (tmp_line_len >= 1 &&tmp_line[tmp_line_len - 1] == '\r') {
- --tmp_line_len;
- }
- }
- MAKE_STD_ZVAL(http_response);
- ZVAL_STRINGL(http_response, tmp_line, tmp_line_len, 1);
- zend_hash_next_index_insert(Z_ARRVAL_P(response_header), &http_response, sizeof(zval *), NULL);
- }
- } else {
- php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "HTTP request failed, unexpected end of socket!");
- goto out;
- }
- /* read past HTTP headers */
- http_header_line = emalloc(HTTP_HEADER_BLOCK_SIZE);
- while (!body && !php_stream_eof(stream)) {
- size_t http_header_line_length;
- if (php_stream_get_line(stream, http_header_line, HTTP_HEADER_BLOCK_SIZE, &http_header_line_length) && *http_header_line != '\n' && *http_header_line != '\r') {
- char *e = http_header_line + http_header_line_length - 1;
- if (*e != '\n') {
- do { /* partial header */
- if (php_stream_get_line(stream, http_header_line, HTTP_HEADER_BLOCK_SIZE, &http_header_line_length) == NULL) {
- php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Failed to read HTTP headers");
- goto out;
- }
- e = http_header_line + http_header_line_length - 1;
- } while (*e != '\n');
- continue;
- }
- while (*e == '\n' || *e == '\r') {
- e--;
- }
- http_header_line_length = e - http_header_line + 1;
- http_header_line[http_header_line_length] = '\0';
- if (!strncasecmp(http_header_line, "Location: ", 10)) {
- if (context && php_stream_context_get_option(context, "http", "follow_location", &tmpzval) == SUCCESS) {
- SEPARATE_ZVAL(tmpzval);
- convert_to_long_ex(tmpzval);
- follow_location = Z_LVAL_PP(tmpzval);
- } else if (!(response_code >= 300 && response_code < 304 || 307 == response_code || 308 == response_code)) {
- /* we shouldn't redirect automatically
- if follow_location isn't set and response_code not in (300, 301, 302, 303 and 307)
- see http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.1
- RFC 7238 defines 308: http://tools.ietf.org/html/rfc7238 */
- follow_location = 0;
- }
- strlcpy(location, http_header_line + 10, sizeof(location));
- } else if (!strncasecmp(http_header_line, "Content-Type: ", 14)) {
- php_stream_notify_info(context, PHP_STREAM_NOTIFY_MIME_TYPE_IS, http_header_line + 14, 0);
- } else if (!strncasecmp(http_header_line, "Content-Length: ", 16)) {
- file_size = atoi(http_header_line + 16);
- php_stream_notify_file_size(context, file_size, http_header_line, 0);
- } else if (!strncasecmp(http_header_line, "Transfer-Encoding: chunked", sizeof("Transfer-Encoding: chunked"))) {
- /* create filter to decode response body */
- if (!(options & STREAM_ONLY_GET_HEADERS)) {
- long decode = 1;
- if (context && php_stream_context_get_option(context, "http", "auto_decode", &tmpzval) == SUCCESS) {
- SEPARATE_ZVAL(tmpzval);
- convert_to_boolean(*tmpzval);
- decode = Z_LVAL_PP(tmpzval);
- }
- if (decode) {
- transfer_encoding = php_stream_filter_create("dechunk", NULL, php_stream_is_persistent(stream) TSRMLS_CC);
- if (transfer_encoding) {
- /* don't store transfer-encodeing header */
- continue;
- }
- }
- }
- }
- if (http_header_line[0] == '\0') {
- body = 1;
- } else {
- zval *http_header;
- MAKE_STD_ZVAL(http_header);
- ZVAL_STRINGL(http_header, http_header_line, http_header_line_length, 1);
- zend_hash_next_index_insert(Z_ARRVAL_P(response_header), &http_header, sizeof(zval *), NULL);
- }
- } else {
- break;
- }
- }
- if (!reqok || (location[0] != '\0' && follow_location)) {
- if (!follow_location || (((options & STREAM_ONLY_GET_HEADERS) || ignore_errors) && redirect_max <= 1)) {
- goto out;
- }
- if (location[0] != '\0')
- php_stream_notify_info(context, PHP_STREAM_NOTIFY_REDIRECTED, location, 0);
- php_stream_close(stream);
- stream = NULL;
- if (location[0] != '\0') {
- char new_path[HTTP_HEADER_BLOCK_SIZE];
- char loc_path[HTTP_HEADER_BLOCK_SIZE];
- *new_path='\0';
- if (strlen(location)<8 || (strncasecmp(location, "http://", sizeof("http://")-1) &&
- strncasecmp(location, "https://", sizeof("https://")-1) &&
- strncasecmp(location, "ftp://", sizeof("ftp://")-1) &&
- strncasecmp(location, "ftps://", sizeof("ftps://")-1)))
- {
- if (*location != '/') {
- if (*(location+1) != '\0' && resource->path) {
- char *s = strrchr(resource->path, '/');
- if (!s) {
- s = resource->path;
- if (!s[0]) {
- efree(s);
- s = resource->path = estrdup("/");
- } else {
- *s = '/';
- }
- }
- s[1] = '\0';
- if (resource->path && *(resource->path) == '/' && *(resource->path + 1) == '\0') {
- snprintf(loc_path, sizeof(loc_path) - 1, "%s%s", resource->path, location);
- } else {
- snprintf(loc_path, sizeof(loc_path) - 1, "%s/%s", resource->path, location);
- }
- } else {
- snprintf(loc_path, sizeof(loc_path) - 1, "/%s", location);
- }
- } else {
- strlcpy(loc_path, location, sizeof(loc_path));
- }
- if ((use_ssl && resource->port != 443) || (!use_ssl && resource->port != 80)) {
- snprintf(new_path, sizeof(new_path) - 1, "%s://%s:%d%s", resource->scheme, resource->host, resource->port, loc_path);
- } else {
- snprintf(new_path, sizeof(new_path) - 1, "%s://%s%s", resource->scheme, resource->host, loc_path);
- }
- } else {
- strlcpy(new_path, location, sizeof(new_path));
- }
- php_url_free(resource);
- /* check for invalid redirection URLs */
- if ((resource = php_url_parse(new_path)) == NULL) {
- php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Invalid redirect URL! %s", new_path);
- goto out;
- }
- #define CHECK_FOR_CNTRL_CHARS(val) { \
- if (val) { \
- unsigned char *s, *e; \
- int l; \
- l = php_url_decode(val, strlen(val)); \
- s = (unsigned char*)val; e = s + l; \
- while (s < e) { \
- if (iscntrl(*s)) { \
- php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Invalid redirect URL! %s", new_path); \
- goto out; \
- } \
- s++; \
- } \
- } \
- }
- /* check for control characters in login, password & path */
- if (strncasecmp(new_path, "http://", sizeof("http://") - 1) || strncasecmp(new_path, "https://", sizeof("https://") - 1)) {
- CHECK_FOR_CNTRL_CHARS(resource->user)
- CHECK_FOR_CNTRL_CHARS(resource->pass)
- CHECK_FOR_CNTRL_CHARS(resource->path)
- }
- stream = php_stream_url_wrap_http_ex(wrapper, new_path, mode, options, opened_path, context, --redirect_max, HTTP_WRAPPER_REDIRECTED STREAMS_CC TSRMLS_CC);
- } else {
- php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "HTTP request failed! %s", tmp_line);
- }
- }
- out:
- if (protocol_version) {
- efree(protocol_version);
- }
- if (http_header_line) {
- efree(http_header_line);
- }
- if (scratch) {
- efree(scratch);
- }
- if (resource) {
- php_url_free(resource);
- }
- if (stream) {
- if (header_init) {
- stream->wrapperdata = response_header;
- } else {
- if(response_header) {
- Z_DELREF_P(response_header);
- }
- }
- php_stream_notify_progress_init(context, 0, file_size);
- /* Restore original chunk size now that we're done with headers */
- if (options & STREAM_WILL_CAST)
- php_stream_set_chunk_size(stream, chunk_size);
- /* restore the users auto-detect-line-endings setting */
- stream->flags |= eol_detect;
- /* as far as streams are concerned, we are now at the start of
- * the stream */
- stream->position = 0;
- /* restore mode */
- strlcpy(stream->mode, mode, sizeof(stream->mode));
- if (transfer_encoding) {
- php_stream_filter_append(&stream->readfilters, transfer_encoding);
- }
- } else {
- if(response_header) {
- Z_DELREF_P(response_header);
- }
- if (transfer_encoding) {
- php_stream_filter_free(transfer_encoding TSRMLS_CC);
- }
- }
- return stream;
- }
- /* }}} */
- php_stream *php_stream_url_wrap_http(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) /* {{{ */
- {
- return php_stream_url_wrap_http_ex(wrapper, path, mode, options, opened_path, context, PHP_URL_REDIRECT_MAX, HTTP_WRAPPER_HEADER_INIT STREAMS_CC TSRMLS_CC);
- }
- /* }}} */
- static int php_stream_http_stream_stat(php_stream_wrapper *wrapper, php_stream *stream, php_stream_statbuf *ssb TSRMLS_DC) /* {{{ */
- {
- /* one day, we could fill in the details based on Date: and Content-Length:
- * headers. For now, we return with a failure code to prevent the underlying
- * file's details from being used instead. */
- return -1;
- }
- /* }}} */
- static php_stream_wrapper_ops http_stream_wops = {
- php_stream_url_wrap_http,
- NULL, /* stream_close */
- php_stream_http_stream_stat,
- NULL, /* stat_url */
- NULL, /* opendir */
- "http",
- NULL, /* unlink */
- NULL, /* rename */
- NULL, /* mkdir */
- NULL /* rmdir */
- };
- PHPAPI php_stream_wrapper php_stream_http_wrapper = {
- &http_stream_wops,
- NULL,
- 1 /* is_url */
- };
- /*
- * Local variables:
- * tab-width: 4
- * c-basic-offset: 4
- * End:
- * vim600: sw=4 ts=4 fdm=marker
- * vim<600: sw=4 ts=4
- */
|