X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=http_url_api.c;h=882c390549f284cfda18d883fb95310058978faa;hb=31f45628be37e6828b275130cc8db0f92efcf33c;hp=dd7066085d514e010937b7b88d5fa5d1b67f21bb;hpb=0e41acb9661b95484c212e349f83e34eb3fe84a2;p=m6w6%2Fext-http diff --git a/http_url_api.c b/http_url_api.c index dd70660..882c390 100644 --- a/http_url_api.c +++ b/http_url_api.c @@ -15,25 +15,17 @@ #ifdef HAVE_CONFIG_H # include "config.h" #endif -#include "php.h" + +#define HTTP_WANT_NETDB +#include "php_http.h" #include "SAPI.h" #include "zend_ini.h" #include "php_output.h" #include "ext/standard/url.h" -#include "php_http.h" #include "php_http_api.h" #include "php_http_url_api.h" -#include "php_http_std_defs.h" - -#include "phpstr/phpstr.h" - -#ifdef PHP_WIN32 -# include -#elif defined(HAVE_NETDB_H) -# include -#endif ZEND_EXTERN_MODULE_GLOBALS(http); @@ -59,13 +51,15 @@ PHP_HTTP_API char *_http_absolute_url_ex( return NULL; } - URL = ecalloc(1, HTTP_URI_MAXLEN + 1); uri = estrndup(url, url_len); if (!(purl = php_url_parse(uri))) { + efree(uri); http_error_ex(HE_WARNING, HTTP_E_URL, "Could not parse supplied URL: %s", url); return NULL; } + URL = ecalloc(1, HTTP_URI_MAXLEN + 1); + furl.user = purl->user; furl.pass = purl->pass; furl.path = purl->path; @@ -77,7 +71,7 @@ PHP_HTTP_API char *_http_absolute_url_ex( } else if (purl->scheme) { furl.scheme = purl->scheme; #if defined(PHP_WIN32) || defined(HAVE_NETDB_H) - } else if (port && (se = getservbyport(port, "tcp"))) { + } else if (port && (se = getservbyport(htons(port), "tcp"))) { furl.scheme = (scheme = estrdup(se->s_name)); #endif } else { @@ -90,15 +84,16 @@ PHP_HTTP_API char *_http_absolute_url_ex( furl.port = purl->port; } else if (strncmp(furl.scheme, "http", 4)) { #if defined(PHP_WIN32) || defined(HAVE_NETDB_H) - if (se = getservbyname(furl.scheme, "tcp")) { - furl.port = se->s_port; + if ((se = getservbyname(furl.scheme, "tcp"))) { + furl.port = ntohs(se->s_port); } #endif + furl.port = 0; } else { furl.port = (furl.scheme[4] == 's') ? 443 : 80; } - if (host) { + if (host && host_len) { furl.host = (char *) host; } else if (purl->host) { furl.host = purl->host; @@ -141,8 +136,12 @@ PHP_HTTP_API char *_http_absolute_url_ex( HTTP_URI_STRLCATL(URL, full_len, furl.host); - if ( (!strcmp(furl.scheme, "http") && (furl.port != 80)) || - (!strcmp(furl.scheme, "https") && (furl.port != 443))) { + if (( (!strcmp(furl.scheme, "http") && (furl.port != 80)) || + (!strcmp(furl.scheme, "https") && (furl.port != 443)) +#if defined(PHP_WIN32) || defined(HAVE_NETDB_H) + || ((!(se = getservbyname(furl.scheme, "tcp"))) || (ntohs(se->s_port) != furl.port)) +#endif + ) && furl.port) { char port_string[8] = {0}; snprintf(port_string, 7, ":%u", furl.port); HTTP_URI_STRLCATL(URL, full_len, port_string);