X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=http_url_api.c;h=5b618a3645bca1da82f9fc4b480eca41120f1aec;hb=96c0ae82ca8cda98d70b87597d765a9d050129de;hp=dff4caec0a78d6e73483ea9669d3c0f3b458183c;hpb=d046681a7b929ef813849cfe38fbceb333f0b0eb;p=m6w6%2Fext-http diff --git a/http_url_api.c b/http_url_api.c index dff4cae..5b618a3 100644 --- a/http_url_api.c +++ b/http_url_api.c @@ -23,6 +23,32 @@ #include "php_http_api.h" #include "php_http_url_api.h" +static inline char *localhostname(void) +{ + char hostname[1024] = {0}; + +#ifdef PHP_WIN32 + if (SUCCESS == gethostname(hostname, lenof(hostname))) { + return estrdup(hostname); + } +#elif defined(HAVE_UNISTD_H) + if (SUCCESS == gethostname(hostname, lenof(hostname))) { + size_t hlen = strlen(hostname); + + if (hlen <= lenof(hostname) - lenof("(none)")) { + hostname[hlen++] = '.'; + if (SUCCESS == getdomainname(&hostname[hlen], lenof(hostname) - hlen)) { + if (!strcmp(&hostname[hlen], "(none)")) { + hostname[hlen - 1] = '\0'; + } + return estrdup(hostname); + } + } + } +#endif + return estrdup("localhost"); +} + PHP_MINIT_FUNCTION(http_url) { HTTP_LONG_CONSTANT("HTTP_URL_REPLACE", HTTP_URL_REPLACE); @@ -144,7 +170,7 @@ PHP_HTTP_API void _http_build_url(int flags, const php_url *old_url, const php_u (zhost = http_get_server_var("SERVER_NAME")))) && Z_STRLEN_P(zhost)) { url->host = estrndup(Z_STRVAL_P(zhost), Z_STRLEN_P(zhost)); } else { - url->host = estrndup("localhost", lenof("localhost")); + url->host = localhostname(); } } @@ -208,6 +234,11 @@ PHP_HTTP_API void _http_build_url(int flags, const php_url *old_url, const php_u memmove(&ptr[1], pos, end - pos); } break; + + default: + /* something else */ + ++ptr; + break; } } } @@ -336,6 +367,7 @@ PHP_HTTP_API STATUS _http_urlencode_hash_recursive(HashTable *ht, phpstr *str, c phpstr new_prefix; if (!data || !*data) { + phpstr_dtor(str); return FAILURE; } @@ -372,6 +404,7 @@ PHP_HTTP_API STATUS _http_urlencode_hash_recursive(HashTable *ht, phpstr *str, c --ht->nApplyCount; if (SUCCESS != status) { phpstr_dtor(&new_prefix); + phpstr_dtor(str); return FAILURE; } } else {