php_variables.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Rasmus Lerdorf <rasmus@lerdorf.on.ca> |
  16. | Zeev Suraski <zeev@php.net> |
  17. +----------------------------------------------------------------------+
  18. */
  19. #include <stdio.h>
  20. #include "php.h"
  21. #include "ext/standard/php_standard.h"
  22. #include "ext/standard/credits.h"
  23. #include "zend_smart_str.h"
  24. #include "php_variables.h"
  25. #include "php_globals.h"
  26. #include "php_content_types.h"
  27. #include "SAPI.h"
  28. #include "zend_globals.h"
  29. #ifdef PHP_WIN32
  30. # include "win32/php_inttypes.h"
  31. #endif
  32. /* for systems that need to override reading of environment variables */
  33. void _php_import_environment_variables(zval *array_ptr);
  34. PHPAPI void (*php_import_environment_variables)(zval *array_ptr) = _php_import_environment_variables;
  35. PHPAPI void php_register_variable(char *var, char *strval, zval *track_vars_array)
  36. {
  37. php_register_variable_safe(var, strval, strlen(strval), track_vars_array);
  38. }
  39. /* binary-safe version */
  40. PHPAPI void php_register_variable_safe(char *var, char *strval, size_t str_len, zval *track_vars_array)
  41. {
  42. zval new_entry;
  43. assert(strval != NULL);
  44. /* Prepare value */
  45. if (str_len == 0) {
  46. ZVAL_EMPTY_STRING(&new_entry);
  47. } else if (str_len == 1) {
  48. ZVAL_INTERNED_STR(&new_entry, ZSTR_CHAR((zend_uchar)*strval));
  49. } else {
  50. ZVAL_NEW_STR(&new_entry, zend_string_init(strval, str_len, 0));
  51. }
  52. php_register_variable_ex(var, &new_entry, track_vars_array);
  53. }
  54. static zend_always_inline void php_register_variable_quick(const char *name, size_t name_len, zval *val, HashTable *ht)
  55. {
  56. zend_string *key = zend_string_init_interned(name, name_len, 0);
  57. zend_hash_update_ind(ht, key, val);
  58. zend_string_release_ex(key, 0);
  59. }
  60. PHPAPI void php_register_variable_ex(char *var_name, zval *val, zval *track_vars_array)
  61. {
  62. char *p = NULL;
  63. char *ip = NULL; /* index pointer */
  64. char *index;
  65. char *var, *var_orig;
  66. size_t var_len, index_len;
  67. zval gpc_element, *gpc_element_p;
  68. zend_bool is_array = 0;
  69. HashTable *symtable1 = NULL;
  70. ALLOCA_FLAG(use_heap)
  71. assert(var_name != NULL);
  72. if (track_vars_array && Z_TYPE_P(track_vars_array) == IS_ARRAY) {
  73. symtable1 = Z_ARRVAL_P(track_vars_array);
  74. }
  75. if (!symtable1) {
  76. /* Nothing to do */
  77. zval_ptr_dtor_nogc(val);
  78. return;
  79. }
  80. /* ignore leading spaces in the variable name */
  81. while (*var_name==' ') {
  82. var_name++;
  83. }
  84. /*
  85. * Prepare variable name
  86. */
  87. var_len = strlen(var_name);
  88. var = var_orig = do_alloca(var_len + 1, use_heap);
  89. memcpy(var_orig, var_name, var_len + 1);
  90. /* ensure that we don't have spaces or dots in the variable name (not binary safe) */
  91. for (p = var; *p; p++) {
  92. if (*p == ' ' || *p == '.') {
  93. *p='_';
  94. } else if (*p == '[') {
  95. is_array = 1;
  96. ip = p;
  97. *p = 0;
  98. break;
  99. }
  100. }
  101. var_len = p - var;
  102. if (var_len==0) { /* empty variable name, or variable name with a space in it */
  103. zval_ptr_dtor_nogc(val);
  104. free_alloca(var_orig, use_heap);
  105. return;
  106. }
  107. if (var_len == sizeof("this")-1 && EG(current_execute_data)) {
  108. zend_execute_data *ex = EG(current_execute_data);
  109. while (ex) {
  110. if (ex->func && ZEND_USER_CODE(ex->func->common.type)) {
  111. if ((ZEND_CALL_INFO(ex) & ZEND_CALL_HAS_SYMBOL_TABLE)
  112. && ex->symbol_table == symtable1) {
  113. if (memcmp(var, "this", sizeof("this")-1) == 0) {
  114. zend_throw_error(NULL, "Cannot re-assign $this");
  115. zval_ptr_dtor_nogc(val);
  116. free_alloca(var_orig, use_heap);
  117. return;
  118. }
  119. }
  120. break;
  121. }
  122. ex = ex->prev_execute_data;
  123. }
  124. }
  125. /* GLOBALS hijack attempt, reject parameter */
  126. if (symtable1 == &EG(symbol_table) &&
  127. var_len == sizeof("GLOBALS")-1 &&
  128. !memcmp(var, "GLOBALS", sizeof("GLOBALS")-1)) {
  129. zval_ptr_dtor_nogc(val);
  130. free_alloca(var_orig, use_heap);
  131. return;
  132. }
  133. index = var;
  134. index_len = var_len;
  135. if (is_array) {
  136. int nest_level = 0;
  137. while (1) {
  138. char *index_s;
  139. size_t new_idx_len = 0;
  140. if(++nest_level > PG(max_input_nesting_level)) {
  141. HashTable *ht;
  142. /* too many levels of nesting */
  143. if (track_vars_array) {
  144. ht = Z_ARRVAL_P(track_vars_array);
  145. zend_symtable_str_del(ht, var, var_len);
  146. }
  147. zval_ptr_dtor_nogc(val);
  148. /* do not output the error message to the screen,
  149. this helps us to to avoid "information disclosure" */
  150. if (!PG(display_errors)) {
  151. php_error_docref(NULL, E_WARNING, "Input variable nesting level exceeded " ZEND_LONG_FMT ". To increase the limit change max_input_nesting_level in php.ini.", PG(max_input_nesting_level));
  152. }
  153. free_alloca(var_orig, use_heap);
  154. return;
  155. }
  156. ip++;
  157. index_s = ip;
  158. if (isspace(*ip)) {
  159. ip++;
  160. }
  161. if (*ip==']') {
  162. index_s = NULL;
  163. } else {
  164. ip = strchr(ip, ']');
  165. if (!ip) {
  166. /* PHP variables cannot contain '[' in their names, so we replace the character with a '_' */
  167. *(index_s - 1) = '_';
  168. index_len = 0;
  169. if (index) {
  170. index_len = strlen(index);
  171. }
  172. goto plain_var;
  173. return;
  174. }
  175. *ip = 0;
  176. new_idx_len = strlen(index_s);
  177. }
  178. if (!index) {
  179. array_init(&gpc_element);
  180. if ((gpc_element_p = zend_hash_next_index_insert(symtable1, &gpc_element)) == NULL) {
  181. zend_array_destroy(Z_ARR(gpc_element));
  182. zval_ptr_dtor_nogc(val);
  183. free_alloca(var_orig, use_heap);
  184. return;
  185. }
  186. } else {
  187. gpc_element_p = zend_symtable_str_find(symtable1, index, index_len);
  188. if (!gpc_element_p) {
  189. zval tmp;
  190. array_init(&tmp);
  191. gpc_element_p = zend_symtable_str_update_ind(symtable1, index, index_len, &tmp);
  192. } else {
  193. if (Z_TYPE_P(gpc_element_p) == IS_INDIRECT) {
  194. gpc_element_p = Z_INDIRECT_P(gpc_element_p);
  195. }
  196. if (Z_TYPE_P(gpc_element_p) != IS_ARRAY) {
  197. zval_ptr_dtor_nogc(gpc_element_p);
  198. array_init(gpc_element_p);
  199. } else {
  200. SEPARATE_ARRAY(gpc_element_p);
  201. }
  202. }
  203. }
  204. symtable1 = Z_ARRVAL_P(gpc_element_p);
  205. /* ip pointed to the '[' character, now obtain the key */
  206. index = index_s;
  207. index_len = new_idx_len;
  208. ip++;
  209. if (*ip == '[') {
  210. is_array = 1;
  211. *ip = 0;
  212. } else {
  213. goto plain_var;
  214. }
  215. }
  216. } else {
  217. plain_var:
  218. if (!index) {
  219. if (zend_hash_next_index_insert(symtable1, val) == NULL) {
  220. zval_ptr_dtor_nogc(val);
  221. }
  222. } else {
  223. zend_ulong idx;
  224. /*
  225. * According to rfc2965, more specific paths are listed above the less specific ones.
  226. * If we encounter a duplicate cookie name, we should skip it, since it is not possible
  227. * to have the same (plain text) cookie name for the same path and we should not overwrite
  228. * more specific cookies with the less specific ones.
  229. */
  230. if (Z_TYPE(PG(http_globals)[TRACK_VARS_COOKIE]) != IS_UNDEF &&
  231. symtable1 == Z_ARRVAL(PG(http_globals)[TRACK_VARS_COOKIE]) &&
  232. zend_symtable_str_exists(symtable1, index, index_len)) {
  233. zval_ptr_dtor_nogc(val);
  234. } else if (ZEND_HANDLE_NUMERIC_STR(index, index_len, idx)) {
  235. zend_hash_index_update(symtable1, idx, val);
  236. } else {
  237. php_register_variable_quick(index, index_len, val, symtable1);
  238. }
  239. }
  240. }
  241. free_alloca(var_orig, use_heap);
  242. }
  243. typedef struct post_var_data {
  244. smart_str str;
  245. char *ptr;
  246. char *end;
  247. uint64_t cnt;
  248. /* Bytes in ptr that have already been scanned for '&' */
  249. size_t already_scanned;
  250. } post_var_data_t;
  251. static zend_bool add_post_var(zval *arr, post_var_data_t *var, zend_bool eof)
  252. {
  253. char *start, *ksep, *vsep, *val;
  254. size_t klen, vlen;
  255. size_t new_vlen;
  256. if (var->ptr >= var->end) {
  257. return 0;
  258. }
  259. start = var->ptr + var->already_scanned;
  260. vsep = memchr(start, '&', var->end - start);
  261. if (!vsep) {
  262. if (!eof) {
  263. var->already_scanned = var->end - var->ptr;
  264. return 0;
  265. } else {
  266. vsep = var->end;
  267. }
  268. }
  269. ksep = memchr(var->ptr, '=', vsep - var->ptr);
  270. if (ksep) {
  271. *ksep = '\0';
  272. /* "foo=bar&" or "foo=&" */
  273. klen = ksep - var->ptr;
  274. vlen = vsep - ++ksep;
  275. } else {
  276. ksep = "";
  277. /* "foo&" */
  278. klen = vsep - var->ptr;
  279. vlen = 0;
  280. }
  281. php_url_decode(var->ptr, klen);
  282. val = estrndup(ksep, vlen);
  283. if (vlen) {
  284. vlen = php_url_decode(val, vlen);
  285. }
  286. if (sapi_module.input_filter(PARSE_POST, var->ptr, &val, vlen, &new_vlen)) {
  287. php_register_variable_safe(var->ptr, val, new_vlen, arr);
  288. }
  289. efree(val);
  290. var->ptr = vsep + (vsep != var->end);
  291. var->already_scanned = 0;
  292. return 1;
  293. }
  294. static inline int add_post_vars(zval *arr, post_var_data_t *vars, zend_bool eof)
  295. {
  296. uint64_t max_vars = PG(max_input_vars);
  297. vars->ptr = ZSTR_VAL(vars->str.s);
  298. vars->end = ZSTR_VAL(vars->str.s) + ZSTR_LEN(vars->str.s);
  299. while (add_post_var(arr, vars, eof)) {
  300. if (++vars->cnt > max_vars) {
  301. php_error_docref(NULL, E_WARNING,
  302. "Input variables exceeded %" PRIu64 ". "
  303. "To increase the limit change max_input_vars in php.ini.",
  304. max_vars);
  305. return FAILURE;
  306. }
  307. }
  308. if (!eof && ZSTR_VAL(vars->str.s) != vars->ptr) {
  309. memmove(ZSTR_VAL(vars->str.s), vars->ptr, ZSTR_LEN(vars->str.s) = vars->end - vars->ptr);
  310. }
  311. return SUCCESS;
  312. }
  313. #ifdef PHP_WIN32
  314. #define SAPI_POST_HANDLER_BUFSIZ 16384
  315. #else
  316. # define SAPI_POST_HANDLER_BUFSIZ BUFSIZ
  317. #endif
  318. SAPI_API SAPI_POST_HANDLER_FUNC(php_std_post_handler)
  319. {
  320. zval *arr = (zval *) arg;
  321. php_stream *s = SG(request_info).request_body;
  322. post_var_data_t post_data;
  323. if (s && SUCCESS == php_stream_rewind(s)) {
  324. memset(&post_data, 0, sizeof(post_data));
  325. while (!php_stream_eof(s)) {
  326. char buf[SAPI_POST_HANDLER_BUFSIZ] = {0};
  327. size_t len = php_stream_read(s, buf, SAPI_POST_HANDLER_BUFSIZ);
  328. if (len && len != (size_t) -1) {
  329. smart_str_appendl(&post_data.str, buf, len);
  330. if (SUCCESS != add_post_vars(arr, &post_data, 0)) {
  331. smart_str_free(&post_data.str);
  332. return;
  333. }
  334. }
  335. if (len != SAPI_POST_HANDLER_BUFSIZ){
  336. break;
  337. }
  338. }
  339. if (post_data.str.s) {
  340. add_post_vars(arr, &post_data, 1);
  341. smart_str_free(&post_data.str);
  342. }
  343. }
  344. }
  345. #undef SAPI_POST_HANDLER_BUFSIZ
  346. SAPI_API SAPI_INPUT_FILTER_FUNC(php_default_input_filter)
  347. {
  348. /* TODO: check .ini setting here and apply user-defined input filter */
  349. if(new_val_len) *new_val_len = val_len;
  350. return 1;
  351. }
  352. SAPI_API SAPI_TREAT_DATA_FUNC(php_default_treat_data)
  353. {
  354. char *res = NULL, *var, *val, *separator = NULL;
  355. const char *c_var;
  356. zval array;
  357. int free_buffer = 0;
  358. char *strtok_buf = NULL;
  359. zend_long count = 0;
  360. ZVAL_UNDEF(&array);
  361. switch (arg) {
  362. case PARSE_POST:
  363. case PARSE_GET:
  364. case PARSE_COOKIE:
  365. array_init(&array);
  366. switch (arg) {
  367. case PARSE_POST:
  368. zval_ptr_dtor_nogc(&PG(http_globals)[TRACK_VARS_POST]);
  369. ZVAL_COPY_VALUE(&PG(http_globals)[TRACK_VARS_POST], &array);
  370. break;
  371. case PARSE_GET:
  372. zval_ptr_dtor_nogc(&PG(http_globals)[TRACK_VARS_GET]);
  373. ZVAL_COPY_VALUE(&PG(http_globals)[TRACK_VARS_GET], &array);
  374. break;
  375. case PARSE_COOKIE:
  376. zval_ptr_dtor_nogc(&PG(http_globals)[TRACK_VARS_COOKIE]);
  377. ZVAL_COPY_VALUE(&PG(http_globals)[TRACK_VARS_COOKIE], &array);
  378. break;
  379. }
  380. break;
  381. default:
  382. ZVAL_COPY_VALUE(&array, destArray);
  383. break;
  384. }
  385. if (arg == PARSE_POST) {
  386. sapi_handle_post(&array);
  387. return;
  388. }
  389. if (arg == PARSE_GET) { /* GET data */
  390. c_var = SG(request_info).query_string;
  391. if (c_var && *c_var) {
  392. res = (char *) estrdup(c_var);
  393. free_buffer = 1;
  394. } else {
  395. free_buffer = 0;
  396. }
  397. } else if (arg == PARSE_COOKIE) { /* Cookie data */
  398. c_var = SG(request_info).cookie_data;
  399. if (c_var && *c_var) {
  400. res = (char *) estrdup(c_var);
  401. free_buffer = 1;
  402. } else {
  403. free_buffer = 0;
  404. }
  405. } else if (arg == PARSE_STRING) { /* String data */
  406. res = str;
  407. free_buffer = 1;
  408. }
  409. if (!res) {
  410. return;
  411. }
  412. switch (arg) {
  413. case PARSE_GET:
  414. case PARSE_STRING:
  415. separator = PG(arg_separator).input;
  416. break;
  417. case PARSE_COOKIE:
  418. separator = ";\0";
  419. break;
  420. }
  421. var = php_strtok_r(res, separator, &strtok_buf);
  422. while (var) {
  423. val = strchr(var, '=');
  424. if (arg == PARSE_COOKIE) {
  425. /* Remove leading spaces from cookie names, needed for multi-cookie header where ; can be followed by a space */
  426. while (isspace(*var)) {
  427. var++;
  428. }
  429. if (var == val || *var == '\0') {
  430. goto next_cookie;
  431. }
  432. }
  433. if (++count > PG(max_input_vars)) {
  434. php_error_docref(NULL, E_WARNING, "Input variables exceeded " ZEND_LONG_FMT ". To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
  435. break;
  436. }
  437. if (val) { /* have a value */
  438. size_t val_len;
  439. size_t new_val_len;
  440. *val++ = '\0';
  441. if (arg != PARSE_COOKIE) {
  442. php_url_decode(var, strlen(var));
  443. }
  444. val_len = php_url_decode(val, strlen(val));
  445. val = estrndup(val, val_len);
  446. if (sapi_module.input_filter(arg, var, &val, val_len, &new_val_len)) {
  447. php_register_variable_safe(var, val, new_val_len, &array);
  448. }
  449. efree(val);
  450. } else {
  451. size_t val_len;
  452. size_t new_val_len;
  453. if (arg != PARSE_COOKIE) {
  454. php_url_decode(var, strlen(var));
  455. }
  456. val_len = 0;
  457. val = estrndup("", val_len);
  458. if (sapi_module.input_filter(arg, var, &val, val_len, &new_val_len)) {
  459. php_register_variable_safe(var, val, new_val_len, &array);
  460. }
  461. efree(val);
  462. }
  463. next_cookie:
  464. var = php_strtok_r(NULL, separator, &strtok_buf);
  465. }
  466. if (free_buffer) {
  467. efree(res);
  468. }
  469. }
  470. static zend_always_inline int valid_environment_name(const char *name, const char *end)
  471. {
  472. const char *s;
  473. for (s = name; s < end; s++) {
  474. if (*s == ' ' || *s == '.' || *s == '[') {
  475. return 0;
  476. }
  477. }
  478. return 1;
  479. }
  480. static zend_always_inline void import_environment_variable(HashTable *ht, char *env)
  481. {
  482. char *p;
  483. size_t name_len, len;
  484. zval val;
  485. zend_ulong idx;
  486. p = strchr(env, '=');
  487. if (!p
  488. || p == env
  489. || !valid_environment_name(env, p)) {
  490. /* malformed entry? */
  491. return;
  492. }
  493. name_len = p - env;
  494. p++;
  495. len = strlen(p);
  496. if (len == 0) {
  497. ZVAL_EMPTY_STRING(&val);
  498. } else if (len == 1) {
  499. ZVAL_INTERNED_STR(&val, ZSTR_CHAR((zend_uchar)*p));
  500. } else {
  501. ZVAL_NEW_STR(&val, zend_string_init(p, len, 0));
  502. }
  503. if (ZEND_HANDLE_NUMERIC_STR(env, name_len, idx)) {
  504. zend_hash_index_update(ht, idx, &val);
  505. } else {
  506. php_register_variable_quick(env, name_len, &val, ht);
  507. }
  508. }
  509. void _php_import_environment_variables(zval *array_ptr)
  510. {
  511. #ifndef PHP_WIN32
  512. char **env;
  513. #else
  514. char *environment, *env;
  515. #endif
  516. #ifndef PHP_WIN32
  517. for (env = environ; env != NULL && *env != NULL; env++) {
  518. import_environment_variable(Z_ARRVAL_P(array_ptr), *env);
  519. }
  520. #else
  521. environment = GetEnvironmentStringsA();
  522. for (env = environment; env != NULL && *env; env += strlen(env) + 1) {
  523. import_environment_variable(Z_ARRVAL_P(array_ptr), env);
  524. }
  525. FreeEnvironmentStringsA(environment);
  526. #endif
  527. }
  528. zend_bool php_std_auto_global_callback(char *name, uint32_t name_len)
  529. {
  530. zend_printf("%s\n", name);
  531. return 0; /* don't rearm */
  532. }
  533. /* {{{ php_build_argv
  534. */
  535. PHPAPI void php_build_argv(char *s, zval *track_vars_array)
  536. {
  537. zval arr, argc, tmp;
  538. int count = 0;
  539. char *ss, *space;
  540. if (!(SG(request_info).argc || track_vars_array)) {
  541. return;
  542. }
  543. array_init(&arr);
  544. /* Prepare argv */
  545. if (SG(request_info).argc) { /* are we in cli sapi? */
  546. int i;
  547. for (i = 0; i < SG(request_info).argc; i++) {
  548. ZVAL_STRING(&tmp, SG(request_info).argv[i]);
  549. if (zend_hash_next_index_insert(Z_ARRVAL(arr), &tmp) == NULL) {
  550. zend_string_efree(Z_STR(tmp));
  551. }
  552. }
  553. } else if (s && *s) {
  554. ss = s;
  555. while (ss) {
  556. space = strchr(ss, '+');
  557. if (space) {
  558. *space = '\0';
  559. }
  560. /* auto-type */
  561. ZVAL_STRING(&tmp, ss);
  562. count++;
  563. if (zend_hash_next_index_insert(Z_ARRVAL(arr), &tmp) == NULL) {
  564. zend_string_efree(Z_STR(tmp));
  565. }
  566. if (space) {
  567. *space = '+';
  568. ss = space + 1;
  569. } else {
  570. ss = space;
  571. }
  572. }
  573. }
  574. /* prepare argc */
  575. if (SG(request_info).argc) {
  576. ZVAL_LONG(&argc, SG(request_info).argc);
  577. } else {
  578. ZVAL_LONG(&argc, count);
  579. }
  580. if (SG(request_info).argc) {
  581. Z_ADDREF(arr);
  582. zend_hash_update(&EG(symbol_table), ZSTR_KNOWN(ZEND_STR_ARGV), &arr);
  583. zend_hash_update(&EG(symbol_table), ZSTR_KNOWN(ZEND_STR_ARGC), &argc);
  584. }
  585. if (track_vars_array && Z_TYPE_P(track_vars_array) == IS_ARRAY) {
  586. Z_ADDREF(arr);
  587. zend_hash_update(Z_ARRVAL_P(track_vars_array), ZSTR_KNOWN(ZEND_STR_ARGV), &arr);
  588. zend_hash_update(Z_ARRVAL_P(track_vars_array), ZSTR_KNOWN(ZEND_STR_ARGC), &argc);
  589. }
  590. zval_ptr_dtor_nogc(&arr);
  591. }
  592. /* }}} */
  593. /* {{{ php_register_server_variables
  594. */
  595. static inline void php_register_server_variables(void)
  596. {
  597. zval tmp;
  598. zval *arr = &PG(http_globals)[TRACK_VARS_SERVER];
  599. HashTable *ht;
  600. zval_ptr_dtor_nogc(arr);
  601. array_init(arr);
  602. /* Server variables */
  603. if (sapi_module.register_server_variables) {
  604. sapi_module.register_server_variables(arr);
  605. }
  606. ht = Z_ARRVAL_P(arr);
  607. /* PHP Authentication support */
  608. if (SG(request_info).auth_user) {
  609. ZVAL_STRING(&tmp, SG(request_info).auth_user);
  610. php_register_variable_quick("PHP_AUTH_USER", sizeof("PHP_AUTH_USER")-1, &tmp, ht);
  611. }
  612. if (SG(request_info).auth_password) {
  613. ZVAL_STRING(&tmp, SG(request_info).auth_password);
  614. php_register_variable_quick("PHP_AUTH_PW", sizeof("PHP_AUTH_PW")-1, &tmp, ht);
  615. }
  616. if (SG(request_info).auth_digest) {
  617. ZVAL_STRING(&tmp, SG(request_info).auth_digest);
  618. php_register_variable_quick("PHP_AUTH_DIGEST", sizeof("PHP_AUTH_DIGEST")-1, &tmp, ht);
  619. }
  620. /* store request init time */
  621. ZVAL_DOUBLE(&tmp, sapi_get_request_time());
  622. php_register_variable_quick("REQUEST_TIME_FLOAT", sizeof("REQUEST_TIME_FLOAT")-1, &tmp, ht);
  623. ZVAL_LONG(&tmp, zend_dval_to_lval(Z_DVAL(tmp)));
  624. php_register_variable_quick("REQUEST_TIME", sizeof("REQUEST_TIME")-1, &tmp, ht);
  625. }
  626. /* }}} */
  627. /* {{{ php_autoglobal_merge
  628. */
  629. static void php_autoglobal_merge(HashTable *dest, HashTable *src)
  630. {
  631. zval *src_entry, *dest_entry;
  632. zend_string *string_key;
  633. zend_ulong num_key;
  634. int globals_check = (dest == (&EG(symbol_table)));
  635. ZEND_HASH_FOREACH_KEY_VAL(src, num_key, string_key, src_entry) {
  636. if (Z_TYPE_P(src_entry) != IS_ARRAY
  637. || (string_key && (dest_entry = zend_hash_find(dest, string_key)) == NULL)
  638. || (string_key == NULL && (dest_entry = zend_hash_index_find(dest, num_key)) == NULL)
  639. || Z_TYPE_P(dest_entry) != IS_ARRAY) {
  640. Z_TRY_ADDREF_P(src_entry);
  641. if (string_key) {
  642. if (!globals_check || ZSTR_LEN(string_key) != sizeof("GLOBALS") - 1
  643. || memcmp(ZSTR_VAL(string_key), "GLOBALS", sizeof("GLOBALS") - 1)) {
  644. zend_hash_update(dest, string_key, src_entry);
  645. } else {
  646. Z_TRY_DELREF_P(src_entry);
  647. }
  648. } else {
  649. zend_hash_index_update(dest, num_key, src_entry);
  650. }
  651. } else {
  652. SEPARATE_ARRAY(dest_entry);
  653. php_autoglobal_merge(Z_ARRVAL_P(dest_entry), Z_ARRVAL_P(src_entry));
  654. }
  655. } ZEND_HASH_FOREACH_END();
  656. }
  657. /* }}} */
  658. /* {{{ php_hash_environment
  659. */
  660. PHPAPI int php_hash_environment(void)
  661. {
  662. memset(PG(http_globals), 0, sizeof(PG(http_globals)));
  663. zend_activate_auto_globals();
  664. if (PG(register_argc_argv)) {
  665. php_build_argv(SG(request_info).query_string, &PG(http_globals)[TRACK_VARS_SERVER]);
  666. }
  667. return SUCCESS;
  668. }
  669. /* }}} */
  670. static zend_bool php_auto_globals_create_get(zend_string *name)
  671. {
  672. if (PG(variables_order) && (strchr(PG(variables_order),'G') || strchr(PG(variables_order),'g'))) {
  673. sapi_module.treat_data(PARSE_GET, NULL, NULL);
  674. } else {
  675. zval_ptr_dtor_nogc(&PG(http_globals)[TRACK_VARS_GET]);
  676. array_init(&PG(http_globals)[TRACK_VARS_GET]);
  677. }
  678. zend_hash_update(&EG(symbol_table), name, &PG(http_globals)[TRACK_VARS_GET]);
  679. Z_ADDREF(PG(http_globals)[TRACK_VARS_GET]);
  680. return 0; /* don't rearm */
  681. }
  682. static zend_bool php_auto_globals_create_post(zend_string *name)
  683. {
  684. if (PG(variables_order) &&
  685. (strchr(PG(variables_order),'P') || strchr(PG(variables_order),'p')) &&
  686. !SG(headers_sent) &&
  687. SG(request_info).request_method &&
  688. !strcasecmp(SG(request_info).request_method, "POST")) {
  689. sapi_module.treat_data(PARSE_POST, NULL, NULL);
  690. } else {
  691. zval_ptr_dtor_nogc(&PG(http_globals)[TRACK_VARS_POST]);
  692. array_init(&PG(http_globals)[TRACK_VARS_POST]);
  693. }
  694. zend_hash_update(&EG(symbol_table), name, &PG(http_globals)[TRACK_VARS_POST]);
  695. Z_ADDREF(PG(http_globals)[TRACK_VARS_POST]);
  696. return 0; /* don't rearm */
  697. }
  698. static zend_bool php_auto_globals_create_cookie(zend_string *name)
  699. {
  700. if (PG(variables_order) && (strchr(PG(variables_order),'C') || strchr(PG(variables_order),'c'))) {
  701. sapi_module.treat_data(PARSE_COOKIE, NULL, NULL);
  702. } else {
  703. zval_ptr_dtor_nogc(&PG(http_globals)[TRACK_VARS_COOKIE]);
  704. array_init(&PG(http_globals)[TRACK_VARS_COOKIE]);
  705. }
  706. zend_hash_update(&EG(symbol_table), name, &PG(http_globals)[TRACK_VARS_COOKIE]);
  707. Z_ADDREF(PG(http_globals)[TRACK_VARS_COOKIE]);
  708. return 0; /* don't rearm */
  709. }
  710. static zend_bool php_auto_globals_create_files(zend_string *name)
  711. {
  712. if (Z_TYPE(PG(http_globals)[TRACK_VARS_FILES]) == IS_UNDEF) {
  713. array_init(&PG(http_globals)[TRACK_VARS_FILES]);
  714. }
  715. zend_hash_update(&EG(symbol_table), name, &PG(http_globals)[TRACK_VARS_FILES]);
  716. Z_ADDREF(PG(http_globals)[TRACK_VARS_FILES]);
  717. return 0; /* don't rearm */
  718. }
  719. /* Upgly hack to fix HTTP_PROXY issue, see bug #72573 */
  720. static void check_http_proxy(HashTable *var_table)
  721. {
  722. if (zend_hash_str_exists(var_table, "HTTP_PROXY", sizeof("HTTP_PROXY")-1)) {
  723. char *local_proxy = getenv("HTTP_PROXY");
  724. if (!local_proxy) {
  725. zend_hash_str_del(var_table, "HTTP_PROXY", sizeof("HTTP_PROXY")-1);
  726. } else {
  727. zval local_zval;
  728. ZVAL_STRING(&local_zval, local_proxy);
  729. zend_hash_str_update(var_table, "HTTP_PROXY", sizeof("HTTP_PROXY")-1, &local_zval);
  730. }
  731. }
  732. }
  733. static zend_bool php_auto_globals_create_server(zend_string *name)
  734. {
  735. if (PG(variables_order) && (strchr(PG(variables_order),'S') || strchr(PG(variables_order),'s'))) {
  736. php_register_server_variables();
  737. if (PG(register_argc_argv)) {
  738. if (SG(request_info).argc) {
  739. zval *argc, *argv;
  740. if ((argc = zend_hash_find_ex_ind(&EG(symbol_table), ZSTR_KNOWN(ZEND_STR_ARGC), 1)) != NULL &&
  741. (argv = zend_hash_find_ex_ind(&EG(symbol_table), ZSTR_KNOWN(ZEND_STR_ARGV), 1)) != NULL) {
  742. Z_ADDREF_P(argv);
  743. zend_hash_update(Z_ARRVAL(PG(http_globals)[TRACK_VARS_SERVER]), ZSTR_KNOWN(ZEND_STR_ARGV), argv);
  744. zend_hash_update(Z_ARRVAL(PG(http_globals)[TRACK_VARS_SERVER]), ZSTR_KNOWN(ZEND_STR_ARGC), argc);
  745. }
  746. } else {
  747. php_build_argv(SG(request_info).query_string, &PG(http_globals)[TRACK_VARS_SERVER]);
  748. }
  749. }
  750. } else {
  751. zval_ptr_dtor_nogc(&PG(http_globals)[TRACK_VARS_SERVER]);
  752. array_init(&PG(http_globals)[TRACK_VARS_SERVER]);
  753. }
  754. check_http_proxy(Z_ARRVAL(PG(http_globals)[TRACK_VARS_SERVER]));
  755. zend_hash_update(&EG(symbol_table), name, &PG(http_globals)[TRACK_VARS_SERVER]);
  756. Z_ADDREF(PG(http_globals)[TRACK_VARS_SERVER]);
  757. /* TODO: TRACK_VARS_SERVER is modified in a number of places (e.g. phar) past this point,
  758. * where rc>1 due to the $_SERVER global. Ideally this shouldn't happen, but for now we
  759. * ignore this issue, as it would probably require larger changes. */
  760. HT_ALLOW_COW_VIOLATION(Z_ARRVAL(PG(http_globals)[TRACK_VARS_SERVER]));
  761. return 0; /* don't rearm */
  762. }
  763. static zend_bool php_auto_globals_create_env(zend_string *name)
  764. {
  765. zval_ptr_dtor_nogc(&PG(http_globals)[TRACK_VARS_ENV]);
  766. array_init(&PG(http_globals)[TRACK_VARS_ENV]);
  767. if (PG(variables_order) && (strchr(PG(variables_order),'E') || strchr(PG(variables_order),'e'))) {
  768. php_import_environment_variables(&PG(http_globals)[TRACK_VARS_ENV]);
  769. }
  770. check_http_proxy(Z_ARRVAL(PG(http_globals)[TRACK_VARS_ENV]));
  771. zend_hash_update(&EG(symbol_table), name, &PG(http_globals)[TRACK_VARS_ENV]);
  772. Z_ADDREF(PG(http_globals)[TRACK_VARS_ENV]);
  773. return 0; /* don't rearm */
  774. }
  775. static zend_bool php_auto_globals_create_request(zend_string *name)
  776. {
  777. zval form_variables;
  778. unsigned char _gpc_flags[3] = {0, 0, 0};
  779. char *p;
  780. array_init(&form_variables);
  781. if (PG(request_order) != NULL) {
  782. p = PG(request_order);
  783. } else {
  784. p = PG(variables_order);
  785. }
  786. for (; p && *p; p++) {
  787. switch (*p) {
  788. case 'g':
  789. case 'G':
  790. if (!_gpc_flags[0]) {
  791. php_autoglobal_merge(Z_ARRVAL(form_variables), Z_ARRVAL(PG(http_globals)[TRACK_VARS_GET]));
  792. _gpc_flags[0] = 1;
  793. }
  794. break;
  795. case 'p':
  796. case 'P':
  797. if (!_gpc_flags[1]) {
  798. php_autoglobal_merge(Z_ARRVAL(form_variables), Z_ARRVAL(PG(http_globals)[TRACK_VARS_POST]));
  799. _gpc_flags[1] = 1;
  800. }
  801. break;
  802. case 'c':
  803. case 'C':
  804. if (!_gpc_flags[2]) {
  805. php_autoglobal_merge(Z_ARRVAL(form_variables), Z_ARRVAL(PG(http_globals)[TRACK_VARS_COOKIE]));
  806. _gpc_flags[2] = 1;
  807. }
  808. break;
  809. }
  810. }
  811. zend_hash_update(&EG(symbol_table), name, &form_variables);
  812. return 0;
  813. }
  814. void php_startup_auto_globals(void)
  815. {
  816. zend_register_auto_global(zend_string_init_interned("_GET", sizeof("_GET")-1, 1), 0, php_auto_globals_create_get);
  817. zend_register_auto_global(zend_string_init_interned("_POST", sizeof("_POST")-1, 1), 0, php_auto_globals_create_post);
  818. zend_register_auto_global(zend_string_init_interned("_COOKIE", sizeof("_COOKIE")-1, 1), 0, php_auto_globals_create_cookie);
  819. zend_register_auto_global(zend_string_init_interned("_SERVER", sizeof("_SERVER")-1, 1), PG(auto_globals_jit), php_auto_globals_create_server);
  820. zend_register_auto_global(zend_string_init_interned("_ENV", sizeof("_ENV")-1, 1), PG(auto_globals_jit), php_auto_globals_create_env);
  821. zend_register_auto_global(zend_string_init_interned("_REQUEST", sizeof("_REQUEST")-1, 1), PG(auto_globals_jit), php_auto_globals_create_request);
  822. zend_register_auto_global(zend_string_init_interned("_FILES", sizeof("_FILES")-1, 1), 0, php_auto_globals_create_files);
  823. }
  824. /*
  825. * Local variables:
  826. * tab-width: 4
  827. * c-basic-offset: 4
  828. * End:
  829. * vim600: sw=4 ts=4 fdm=marker
  830. * vim<600: sw=4 ts=4
  831. */