php_var.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 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. | Author: Jani Lehtimäki <jkl@njet.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifndef PHP_VAR_H
  20. #define PHP_VAR_H
  21. #include "ext/standard/basic_functions.h"
  22. #include "ext/standard/php_smart_str_public.h"
  23. PHP_FUNCTION(var_dump);
  24. PHP_FUNCTION(var_export);
  25. PHP_FUNCTION(debug_zval_dump);
  26. PHP_FUNCTION(serialize);
  27. PHP_FUNCTION(unserialize);
  28. PHP_FUNCTION(memory_get_usage);
  29. PHP_FUNCTION(memory_get_peak_usage);
  30. PHPAPI void php_var_dump(zval **struc, int level TSRMLS_DC);
  31. PHPAPI void php_var_export(zval **struc, int level TSRMLS_DC);
  32. PHPAPI void php_var_export_ex(zval **struc, int level, smart_str *buf TSRMLS_DC);
  33. PHPAPI void php_debug_zval_dump(zval **struc, int level TSRMLS_DC);
  34. typedef HashTable* php_serialize_data_t;
  35. struct php_unserialize_data {
  36. void *first;
  37. void *last;
  38. void *first_dtor;
  39. void *last_dtor;
  40. };
  41. typedef struct php_unserialize_data* php_unserialize_data_t;
  42. PHPAPI void php_var_serialize(smart_str *buf, zval **struc, php_serialize_data_t *var_hash TSRMLS_DC);
  43. PHPAPI int php_var_unserialize(zval **rval, const unsigned char **p, const unsigned char *max, php_unserialize_data_t *var_hash TSRMLS_DC);
  44. #define PHP_VAR_SERIALIZE_INIT(var_hash_ptr) \
  45. do { \
  46. /* fprintf(stderr, "SERIALIZE_INIT == lock: %u, level: %u\n", BG(serialize_lock), BG(serialize).level); */ \
  47. if (BG(serialize_lock) || !BG(serialize).level) { \
  48. ALLOC_HASHTABLE(var_hash_ptr); \
  49. zend_hash_init((var_hash_ptr), 10, NULL, NULL, 0); \
  50. if (!BG(serialize_lock)) { \
  51. BG(serialize).var_hash = (void *)(var_hash_ptr); \
  52. BG(serialize).level = 1; \
  53. } \
  54. } else { \
  55. (var_hash_ptr) = (php_serialize_data_t)BG(serialize).var_hash; \
  56. ++BG(serialize).level; \
  57. } \
  58. } while(0)
  59. #define PHP_VAR_SERIALIZE_DESTROY(var_hash_ptr) \
  60. do { \
  61. /* fprintf(stderr, "SERIALIZE_DESTROY == lock: %u, level: %u\n", BG(serialize_lock), BG(serialize).level); */ \
  62. if (BG(serialize_lock) || !BG(serialize).level) { \
  63. zend_hash_destroy((var_hash_ptr)); \
  64. FREE_HASHTABLE(var_hash_ptr); \
  65. } else { \
  66. if (!--BG(serialize).level) { \
  67. zend_hash_destroy((php_serialize_data_t)BG(serialize).var_hash); \
  68. FREE_HASHTABLE((php_serialize_data_t)BG(serialize).var_hash); \
  69. BG(serialize).var_hash = NULL; \
  70. } \
  71. } \
  72. } while (0)
  73. #define PHP_VAR_UNSERIALIZE_INIT(var_hash_ptr) \
  74. do { \
  75. /* fprintf(stderr, "UNSERIALIZE_INIT == lock: %u, level: %u\n", BG(serialize_lock), BG(unserialize).level); */ \
  76. if (BG(serialize_lock) || !BG(unserialize).level) { \
  77. (var_hash_ptr) = (php_unserialize_data_t)ecalloc(1, sizeof(struct php_unserialize_data)); \
  78. if (!BG(serialize_lock)) { \
  79. BG(unserialize).var_hash = (void *)(var_hash_ptr); \
  80. BG(unserialize).level = 1; \
  81. } \
  82. } else { \
  83. (var_hash_ptr) = (php_unserialize_data_t)BG(unserialize).var_hash; \
  84. ++BG(unserialize).level; \
  85. } \
  86. } while (0)
  87. #define PHP_VAR_UNSERIALIZE_DESTROY(var_hash_ptr) \
  88. do { \
  89. /* fprintf(stderr, "UNSERIALIZE_DESTROY == lock: %u, level: %u\n", BG(serialize_lock), BG(unserialize).level); */ \
  90. if (BG(serialize_lock) || !BG(unserialize).level) { \
  91. var_destroy(&(var_hash_ptr)); \
  92. efree(var_hash_ptr); \
  93. } else { \
  94. if (!--BG(unserialize).level) { \
  95. var_destroy(&(var_hash_ptr)); \
  96. efree((var_hash_ptr)); \
  97. BG(unserialize).var_hash = NULL; \
  98. } \
  99. } \
  100. } while (0)
  101. PHPAPI void var_replace(php_unserialize_data_t *var_hash, zval *ozval, zval **nzval);
  102. PHPAPI void var_push_dtor(php_unserialize_data_t *var_hash, zval **val);
  103. PHPAPI void var_push_dtor_no_addref(php_unserialize_data_t *var_hashx, zval **rval);
  104. PHPAPI void var_destroy(php_unserialize_data_t *var_hash);
  105. #define PHP_VAR_UNSERIALIZE_ZVAL_CHANGED(var_hash, ozval, nzval) \
  106. var_replace((var_hash), (ozval), &(nzval))
  107. PHPAPI zend_class_entry *php_create_empty_class(char *class_name, int len);
  108. static inline int php_varname_check(char *name, int name_len, zend_bool silent TSRMLS_DC) /* {{{ */
  109. {
  110. if (name_len == sizeof("GLOBALS") - 1 && !memcmp(name, "GLOBALS", sizeof("GLOBALS") - 1)) {
  111. if (!silent) {
  112. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Attempted GLOBALS variable overwrite");
  113. }
  114. return FAILURE;
  115. } else if (name[0] == '_' &&
  116. (
  117. (name_len == sizeof("_GET") - 1 && !memcmp(name, "_GET", sizeof("_GET") - 1)) ||
  118. (name_len == sizeof("_POST") - 1 && !memcmp(name, "_POST", sizeof("_POST") - 1)) ||
  119. (name_len == sizeof("_COOKIE") - 1 && !memcmp(name, "_COOKIE", sizeof("_COOKIE") - 1)) ||
  120. (name_len == sizeof("_ENV") - 1 && !memcmp(name, "_ENV", sizeof("_ENV") - 1)) ||
  121. (name_len == sizeof("_SERVER") - 1 && !memcmp(name, "_SERVER", sizeof("_SERVER") - 1)) ||
  122. (name_len == sizeof("_SESSION") - 1 && !memcmp(name, "_SESSION", sizeof("_SESSION") - 1)) ||
  123. (name_len == sizeof("_FILES") - 1 && !memcmp(name, "_FILES", sizeof("_FILES") - 1)) ||
  124. (name_len == sizeof("_REQUEST") -1 && !memcmp(name, "_REQUEST", sizeof("_REQUEST") - 1))
  125. )
  126. ) {
  127. if (!silent) {
  128. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Attempted super-global (%s) variable overwrite", name);
  129. }
  130. return FAILURE;
  131. } else if (name[0] == 'H' &&
  132. (
  133. (name_len == sizeof("HTTP_POST_VARS") - 1 && !memcmp(name, "HTTP_POST_VARS", sizeof("HTTP_POST_VARS") - 1)) ||
  134. (name_len == sizeof("HTTP_GET_VARS") - 1 && !memcmp(name, "HTTP_GET_VARS", sizeof("HTTP_GET_VARS") - 1)) ||
  135. (name_len == sizeof("HTTP_COOKIE_VARS") - 1 && !memcmp(name, "HTTP_COOKIE_VARS", sizeof("HTTP_COOKIE_VARS") - 1)) ||
  136. (name_len == sizeof("HTTP_ENV_VARS") - 1 && !memcmp(name, "HTTP_ENV_VARS", sizeof("HTTP_ENV_VARS") - 1)) ||
  137. (name_len == sizeof("HTTP_SERVER_VARS") - 1 && !memcmp(name, "HTTP_SERVER_VARS", sizeof("HTTP_SERVER_VARS") - 1)) ||
  138. (name_len == sizeof("HTTP_SESSION_VARS") - 1 && !memcmp(name, "HTTP_SESSION_VARS", sizeof("HTTP_SESSION_VARS") - 1)) ||
  139. (name_len == sizeof("HTTP_RAW_POST_DATA") - 1 && !memcmp(name, "HTTP_RAW_POST_DATA", sizeof("HTTP_RAW_POST_DATA") - 1)) ||
  140. (name_len == sizeof("HTTP_POST_FILES") - 1 && !memcmp(name, "HTTP_POST_FILES", sizeof("HTTP_POST_FILES") - 1))
  141. )
  142. ) {
  143. if (!silent) {
  144. php_error_docref(NULL TSRMLS_CC, E_WARNING, "Attempted long input array (%s) overwrite", name);
  145. }
  146. return FAILURE;
  147. }
  148. return SUCCESS;
  149. }
  150. /* }}} */
  151. #endif /* PHP_VAR_H */