From: Rasmus Lerdorf Date: Mon, 17 Mar 2008 18:03:31 +0000 (+0000) Subject: We need to pass PHP-managed pointers to filter here to avoid having X-Git-Tag: BEFORE_NEW_PARAMETER_PARSE~558 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bafb0b4ff5ec13509e99bbecf23949d233885e2f;p=php We need to pass PHP-managed pointers to filter here to avoid having emalloc'ed data assigned to things like r->uri and having it get efree()'ed on request shutdown which then means that if the Apache logging module tries to log r->uri it would be reading from free'ed memory. So a simple estrdup before the filter call takes care of that. --- diff --git a/sapi/apache/mod_php5.c b/sapi/apache/mod_php5.c index d84b11e548..0845f8e40b 100644 --- a/sapi/apache/mod_php5.c +++ b/sapi/apache/mod_php5.c @@ -243,14 +243,12 @@ static void sapi_apache_register_server_variables(zval *track_vars_array TSRMLS_ table_entry *elts = (table_entry *) arr->elts; zval **path_translated; HashTable *symbol_table; - int new_val_len; + int val_len, new_val_len; + char *val; for (i = 0; i < arr->nelts; i++) { - char *val; - int val_len; - if (elts[i].val) { - val = elts[i].val; + val = estrdup(elts[i].val); } else { val = ""; } @@ -275,8 +273,9 @@ static void sapi_apache_register_server_variables(zval *track_vars_array TSRMLS_ php_register_variable("PATH_TRANSLATED", Z_STRVAL_PP(path_translated), track_vars_array TSRMLS_CC); } - if (sapi_module.input_filter(PARSE_SERVER, "PHP_SELF", &((request_rec *) SG(server_context))->uri, strlen(((request_rec *) SG(server_context))->uri), &new_val_len TSRMLS_CC)) { - php_register_variable("PHP_SELF", ((request_rec *) SG(server_context))->uri, track_vars_array TSRMLS_CC); + val = estrdup(((request_rec *)SG(server_context))->uri); + if (sapi_module.input_filter(PARSE_SERVER, "PHP_SELF", val, strlen(val), &new_val_len TSRMLS_CC)) { + php_register_variable_safe("PHP_SELF", val, new_val_len, track_vars_array TSRMLS_CC); } } /* }}} */