zend_persist_calc.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434
  1. /*
  2. +----------------------------------------------------------------------+
  3. | Zend OPcache |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1998-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: Andi Gutmans <andi@php.net> |
  16. | Zeev Suraski <zeev@php.net> |
  17. | Stanislav Malyshev <stas@zend.com> |
  18. | Dmitry Stogov <dmitry@php.net> |
  19. +----------------------------------------------------------------------+
  20. */
  21. #include "zend.h"
  22. #include "ZendAccelerator.h"
  23. #include "zend_persist.h"
  24. #include "zend_extensions.h"
  25. #include "zend_shared_alloc.h"
  26. #include "zend_operators.h"
  27. #define ADD_DUP_SIZE(m,s) ZCG(current_persistent_script)->size += zend_shared_memdup_size((void*)m, s)
  28. #define ADD_SIZE(m) ZCG(current_persistent_script)->size += ZEND_ALIGNED_SIZE(m)
  29. #define ADD_ARENA_SIZE(m) ZCG(current_persistent_script)->arena_size += ZEND_ALIGNED_SIZE(m)
  30. # define ADD_STRING(str) ADD_DUP_SIZE((str), _ZSTR_STRUCT_SIZE(ZSTR_LEN(str)))
  31. # define ADD_INTERNED_STRING(str, do_free) do { \
  32. if (ZCG(current_persistent_script)->corrupted) { \
  33. ADD_STRING(str); \
  34. } else if (!IS_ACCEL_INTERNED(str)) { \
  35. zend_string *tmp = accel_new_interned_string(str); \
  36. if (tmp != (str)) { \
  37. (str) = tmp; \
  38. } else { \
  39. ADD_STRING(str); \
  40. } \
  41. } \
  42. } while (0)
  43. static void zend_persist_zval_calc(zval *z);
  44. static void zend_hash_persist_calc(HashTable *ht, void (*pPersistElement)(zval *pElement))
  45. {
  46. uint32_t idx;
  47. Bucket *p;
  48. if (!(HT_FLAGS(ht) & HASH_FLAG_INITIALIZED) || ht->nNumUsed == 0) {
  49. return;
  50. }
  51. if (!(HT_FLAGS(ht) & HASH_FLAG_PACKED) && ht->nNumUsed < (uint32_t)(-(int32_t)ht->nTableMask) / 4) {
  52. /* compact table */
  53. uint32_t hash_size;
  54. if (ht->nNumUsed <= HT_MIN_SIZE) {
  55. hash_size = HT_MIN_SIZE * 2;
  56. } else {
  57. hash_size = (uint32_t)(-(int32_t)ht->nTableMask);
  58. while (hash_size >> 2 > ht->nNumUsed) {
  59. hash_size >>= 1;
  60. }
  61. }
  62. ADD_SIZE(hash_size * sizeof(uint32_t) + ht->nNumUsed * sizeof(Bucket));
  63. } else {
  64. ADD_SIZE(HT_USED_SIZE(ht));
  65. }
  66. for (idx = 0; idx < ht->nNumUsed; idx++) {
  67. p = ht->arData + idx;
  68. if (Z_TYPE(p->val) == IS_UNDEF) continue;
  69. /* persist bucket and key */
  70. if (p->key) {
  71. ADD_INTERNED_STRING(p->key, 1);
  72. }
  73. pPersistElement(&p->val);
  74. }
  75. }
  76. static void zend_persist_ast_calc(zend_ast *ast)
  77. {
  78. uint32_t i;
  79. if (ast->kind == ZEND_AST_ZVAL || ast->kind == ZEND_AST_CONSTANT) {
  80. ADD_SIZE(sizeof(zend_ast_zval));
  81. zend_persist_zval_calc(&((zend_ast_zval*)(ast))->val);
  82. } else if (zend_ast_is_list(ast)) {
  83. zend_ast_list *list = zend_ast_get_list(ast);
  84. ADD_SIZE(sizeof(zend_ast_list) - sizeof(zend_ast *) + sizeof(zend_ast *) * list->children);
  85. for (i = 0; i < list->children; i++) {
  86. if (list->child[i]) {
  87. zend_persist_ast_calc(list->child[i]);
  88. }
  89. }
  90. } else {
  91. uint32_t children = zend_ast_get_num_children(ast);
  92. ADD_SIZE(sizeof(zend_ast) - sizeof(zend_ast *) + sizeof(zend_ast *) * children);
  93. for (i = 0; i < children; i++) {
  94. if (ast->child[i]) {
  95. zend_persist_ast_calc(ast->child[i]);
  96. }
  97. }
  98. }
  99. }
  100. static void zend_persist_zval_calc(zval *z)
  101. {
  102. uint32_t size;
  103. switch (Z_TYPE_P(z)) {
  104. case IS_STRING:
  105. ADD_INTERNED_STRING(Z_STR_P(z), 0);
  106. if (ZSTR_IS_INTERNED(Z_STR_P(z))) {
  107. Z_TYPE_FLAGS_P(z) = 0;
  108. }
  109. break;
  110. case IS_ARRAY:
  111. size = zend_shared_memdup_size(Z_ARR_P(z), sizeof(zend_array));
  112. if (size) {
  113. ADD_SIZE(size);
  114. zend_hash_persist_calc(Z_ARRVAL_P(z), zend_persist_zval_calc);
  115. }
  116. break;
  117. case IS_REFERENCE:
  118. size = zend_shared_memdup_size(Z_REF_P(z), sizeof(zend_reference));
  119. if (size) {
  120. ADD_SIZE(size);
  121. zend_persist_zval_calc(Z_REFVAL_P(z));
  122. }
  123. break;
  124. case IS_CONSTANT_AST:
  125. size = zend_shared_memdup_size(Z_AST_P(z), sizeof(zend_ast_ref));
  126. if (size) {
  127. ADD_SIZE(size);
  128. zend_persist_ast_calc(Z_ASTVAL_P(z));
  129. }
  130. break;
  131. }
  132. }
  133. static void zend_persist_op_array_calc_ex(zend_op_array *op_array)
  134. {
  135. if (op_array->static_variables) {
  136. if (!zend_shared_alloc_get_xlat_entry(op_array->static_variables)) {
  137. HashTable *old = op_array->static_variables;
  138. ADD_DUP_SIZE(op_array->static_variables, sizeof(HashTable));
  139. zend_hash_persist_calc(op_array->static_variables, zend_persist_zval_calc);
  140. zend_shared_alloc_register_xlat_entry(old, op_array->static_variables);
  141. }
  142. }
  143. if (zend_shared_alloc_get_xlat_entry(op_array->opcodes)) {
  144. /* already stored */
  145. if (op_array->function_name) {
  146. zend_string *new_name = zend_shared_alloc_get_xlat_entry(op_array->function_name);
  147. if (new_name) {
  148. op_array->function_name = new_name;
  149. }
  150. }
  151. return;
  152. }
  153. if (op_array->literals) {
  154. zval *p = op_array->literals;
  155. zval *end = p + op_array->last_literal;
  156. ADD_DUP_SIZE(op_array->literals, sizeof(zval) * op_array->last_literal);
  157. while (p < end) {
  158. zend_persist_zval_calc(p);
  159. p++;
  160. }
  161. }
  162. ADD_DUP_SIZE(op_array->opcodes, sizeof(zend_op) * op_array->last);
  163. if (op_array->function_name) {
  164. zend_string *old_name = op_array->function_name;
  165. zend_string *new_name = zend_shared_alloc_get_xlat_entry(old_name);
  166. if (new_name) {
  167. op_array->function_name = new_name;
  168. } else {
  169. ADD_INTERNED_STRING(op_array->function_name, 0);
  170. zend_shared_alloc_register_xlat_entry(old_name, op_array->function_name);
  171. }
  172. }
  173. if (op_array->filename) {
  174. ADD_STRING(op_array->filename);
  175. }
  176. if (op_array->arg_info) {
  177. zend_arg_info *arg_info = op_array->arg_info;
  178. uint32_t num_args = op_array->num_args;
  179. uint32_t i;
  180. num_args = op_array->num_args;
  181. if (op_array->fn_flags & ZEND_ACC_VARIADIC) {
  182. num_args++;
  183. }
  184. if (op_array->fn_flags & ZEND_ACC_HAS_RETURN_TYPE) {
  185. arg_info--;
  186. num_args++;
  187. }
  188. ADD_DUP_SIZE(arg_info, sizeof(zend_arg_info) * num_args);
  189. for (i = 0; i < num_args; i++) {
  190. if (arg_info[i].name) {
  191. ADD_INTERNED_STRING(arg_info[i].name, 1);
  192. }
  193. if (ZEND_TYPE_IS_CLASS(arg_info[i].type)) {
  194. zend_string *type_name = ZEND_TYPE_NAME(arg_info[i].type);
  195. zend_bool allow_null = ZEND_TYPE_ALLOW_NULL(arg_info[i].type);
  196. ADD_INTERNED_STRING(type_name, 1);
  197. arg_info[i].type = ZEND_TYPE_ENCODE_CLASS(type_name, allow_null);
  198. }
  199. }
  200. }
  201. if (op_array->live_range) {
  202. ADD_DUP_SIZE(op_array->live_range, sizeof(zend_live_range) * op_array->last_live_range);
  203. }
  204. if (ZCG(accel_directives).save_comments && op_array->doc_comment) {
  205. ADD_STRING(op_array->doc_comment);
  206. }
  207. if (op_array->try_catch_array) {
  208. ADD_DUP_SIZE(op_array->try_catch_array, sizeof(zend_try_catch_element) * op_array->last_try_catch);
  209. }
  210. if (op_array->vars) {
  211. int i;
  212. ADD_DUP_SIZE(op_array->vars, sizeof(zend_string*) * op_array->last_var);
  213. for (i = 0; i < op_array->last_var; i++) {
  214. ADD_INTERNED_STRING(op_array->vars[i], 0);
  215. }
  216. }
  217. ADD_SIZE(ZEND_ALIGNED_SIZE(zend_extensions_op_array_persist_calc(op_array)));
  218. }
  219. static void zend_persist_op_array_calc(zval *zv)
  220. {
  221. zend_op_array *op_array = Z_PTR_P(zv);
  222. ZEND_ASSERT(op_array->type == ZEND_USER_FUNCTION);
  223. ADD_SIZE(sizeof(zend_op_array));
  224. zend_persist_op_array_calc_ex(Z_PTR_P(zv));
  225. }
  226. static void zend_persist_class_method_calc(zval *zv)
  227. {
  228. zend_op_array *op_array = Z_PTR_P(zv);
  229. zend_op_array *old_op_array;
  230. ZEND_ASSERT(op_array->type == ZEND_USER_FUNCTION);
  231. old_op_array = zend_shared_alloc_get_xlat_entry(op_array);
  232. if (old_op_array) {
  233. Z_PTR_P(zv) = old_op_array;
  234. } else {
  235. ADD_ARENA_SIZE(sizeof(zend_op_array));
  236. zend_persist_op_array_calc_ex(Z_PTR_P(zv));
  237. zend_shared_alloc_register_xlat_entry(op_array, Z_PTR_P(zv));
  238. }
  239. }
  240. static void zend_persist_property_info_calc(zval *zv)
  241. {
  242. zend_property_info *prop = Z_PTR_P(zv);
  243. if (!zend_shared_alloc_get_xlat_entry(prop)) {
  244. zend_shared_alloc_register_xlat_entry(prop, prop);
  245. ADD_ARENA_SIZE(sizeof(zend_property_info));
  246. ADD_INTERNED_STRING(prop->name, 0);
  247. if (ZCG(accel_directives).save_comments && prop->doc_comment) {
  248. ADD_STRING(prop->doc_comment);
  249. }
  250. }
  251. }
  252. static void zend_persist_class_constant_calc(zval *zv)
  253. {
  254. zend_class_constant *c = Z_PTR_P(zv);
  255. if (!zend_shared_alloc_get_xlat_entry(c)) {
  256. zend_shared_alloc_register_xlat_entry(c, c);
  257. ADD_ARENA_SIZE(sizeof(zend_class_constant));
  258. zend_persist_zval_calc(&c->value);
  259. if (ZCG(accel_directives).save_comments && c->doc_comment) {
  260. ADD_STRING(c->doc_comment);
  261. }
  262. }
  263. }
  264. static void zend_persist_class_entry_calc(zval *zv)
  265. {
  266. zend_class_entry *ce = Z_PTR_P(zv);
  267. if (ce->type == ZEND_USER_CLASS) {
  268. ADD_ARENA_SIZE(sizeof(zend_class_entry));
  269. ADD_INTERNED_STRING(ce->name, 0);
  270. zend_hash_persist_calc(&ce->function_table, zend_persist_class_method_calc);
  271. if (ce->default_properties_table) {
  272. int i;
  273. ADD_SIZE(sizeof(zval) * ce->default_properties_count);
  274. for (i = 0; i < ce->default_properties_count; i++) {
  275. zend_persist_zval_calc(&ce->default_properties_table[i]);
  276. }
  277. }
  278. if (ce->default_static_members_table) {
  279. int i;
  280. ADD_SIZE(sizeof(zval) * ce->default_static_members_count);
  281. for (i = 0; i < ce->default_static_members_count; i++) {
  282. if (Z_TYPE(ce->default_static_members_table[i]) != IS_INDIRECT) {
  283. zend_persist_zval_calc(&ce->default_static_members_table[i]);
  284. }
  285. }
  286. }
  287. zend_hash_persist_calc(&ce->constants_table, zend_persist_class_constant_calc);
  288. if (ce->info.user.filename) {
  289. ADD_STRING(ce->info.user.filename);
  290. }
  291. if (ZCG(accel_directives).save_comments && ce->info.user.doc_comment) {
  292. ADD_STRING(ce->info.user.doc_comment);
  293. }
  294. zend_hash_persist_calc(&ce->properties_info, zend_persist_property_info_calc);
  295. if (ce->trait_aliases) {
  296. int i = 0;
  297. while (ce->trait_aliases[i]) {
  298. if (ce->trait_aliases[i]->trait_method.method_name) {
  299. ADD_INTERNED_STRING(ce->trait_aliases[i]->trait_method.method_name, 0);
  300. }
  301. if (ce->trait_aliases[i]->trait_method.class_name) {
  302. ADD_INTERNED_STRING(ce->trait_aliases[i]->trait_method.class_name, 0);
  303. }
  304. if (ce->trait_aliases[i]->alias) {
  305. ADD_INTERNED_STRING(ce->trait_aliases[i]->alias, 0);
  306. }
  307. ADD_SIZE(sizeof(zend_trait_alias));
  308. i++;
  309. }
  310. ADD_SIZE(sizeof(zend_trait_alias*) * (i + 1));
  311. }
  312. if (ce->trait_precedences) {
  313. int i = 0;
  314. int j;
  315. while (ce->trait_precedences[i]) {
  316. ADD_INTERNED_STRING(ce->trait_precedences[i]->trait_method.method_name, 0);
  317. ADD_INTERNED_STRING(ce->trait_precedences[i]->trait_method.class_name, 0);
  318. for (j = 0; j < ce->trait_precedences[i]->num_excludes; j++) {
  319. ADD_INTERNED_STRING(ce->trait_precedences[i]->exclude_class_names[j], 0);
  320. }
  321. ADD_SIZE(sizeof(zend_trait_precedence) + (ce->trait_precedences[i]->num_excludes - 1) * sizeof(zend_string*));
  322. i++;
  323. }
  324. ADD_SIZE(sizeof(zend_trait_precedence*) * (i + 1));
  325. }
  326. }
  327. }
  328. static void zend_accel_persist_class_table_calc(HashTable *class_table)
  329. {
  330. zend_hash_persist_calc(class_table, zend_persist_class_entry_calc);
  331. }
  332. uint32_t zend_accel_script_persist_calc(zend_persistent_script *new_persistent_script, const char *key, unsigned int key_length, int for_shm)
  333. {
  334. new_persistent_script->mem = NULL;
  335. new_persistent_script->size = 0;
  336. new_persistent_script->arena_mem = NULL;
  337. new_persistent_script->arena_size = 0;
  338. new_persistent_script->corrupted = 0;
  339. ZCG(current_persistent_script) = new_persistent_script;
  340. if (!for_shm) {
  341. /* script is not going to be saved in SHM */
  342. new_persistent_script->corrupted = 1;
  343. }
  344. ADD_DUP_SIZE(new_persistent_script, sizeof(zend_persistent_script));
  345. if (key) {
  346. ADD_DUP_SIZE(key, key_length + 1);
  347. }
  348. ADD_STRING(new_persistent_script->script.filename);
  349. #if defined(__AVX__) || defined(__SSE2__)
  350. /* Align size to 64-byte boundary */
  351. new_persistent_script->size = (new_persistent_script->size + 63) & ~63;
  352. #endif
  353. if (new_persistent_script->script.class_table.nNumUsed != new_persistent_script->script.class_table.nNumOfElements) {
  354. zend_hash_rehash(&new_persistent_script->script.class_table);
  355. }
  356. zend_accel_persist_class_table_calc(&new_persistent_script->script.class_table);
  357. if (new_persistent_script->script.function_table.nNumUsed != new_persistent_script->script.function_table.nNumOfElements) {
  358. zend_hash_rehash(&new_persistent_script->script.function_table);
  359. }
  360. zend_hash_persist_calc(&new_persistent_script->script.function_table, zend_persist_op_array_calc);
  361. zend_persist_op_array_calc_ex(&new_persistent_script->script.main_op_array);
  362. #if defined(__AVX__) || defined(__SSE2__)
  363. /* Align size to 64-byte boundary */
  364. new_persistent_script->arena_size = (new_persistent_script->arena_size + 63) & ~63;
  365. #endif
  366. new_persistent_script->size += new_persistent_script->arena_size;
  367. new_persistent_script->corrupted = 0;
  368. ZCG(current_persistent_script) = NULL;
  369. return new_persistent_script->size;
  370. }