/src/php-src/ext/opcache/zend_persist.c
Line | Count | Source |
1 | | /* |
2 | | +----------------------------------------------------------------------+ |
3 | | | Zend OPcache | |
4 | | +----------------------------------------------------------------------+ |
5 | | | Copyright (c) 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 | | | https://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 | | |
22 | | #include "zend.h" |
23 | | #include "ZendAccelerator.h" |
24 | | #include "zend_persist.h" |
25 | | #include "zend_extensions.h" |
26 | | #include "zend_shared_alloc.h" |
27 | | #include "zend_vm.h" |
28 | | #include "zend_constants.h" |
29 | | #include "zend_operators.h" |
30 | | #include "zend_interfaces.h" |
31 | | #include "zend_attributes.h" |
32 | | |
33 | | #ifdef HAVE_JIT |
34 | | # include "Optimizer/zend_func_info.h" |
35 | | # include "jit/zend_jit.h" |
36 | | #endif |
37 | | |
38 | 44.1k | #define zend_set_str_gc_flags(str) do { \ |
39 | 44.1k | GC_SET_REFCOUNT(str, 2); \ |
40 | 44.1k | uint32_t flags = GC_STRING | (ZSTR_IS_VALID_UTF8(str) ? IS_STR_VALID_UTF8 : 0); \ |
41 | 44.1k | if (file_cache_only \ |
42 | 44.1k | || (ZCG(current_persistent_script) && ZCG(current_persistent_script)->corrupted)) { \ |
43 | 0 | GC_TYPE_INFO(str) = GC_STRING | (IS_STR_INTERNED << GC_FLAGS_SHIFT); \ |
44 | 0 | flags |= (IS_STR_INTERNED << GC_FLAGS_SHIFT); \ |
45 | 44.1k | } else { \ |
46 | 44.1k | flags |= ((IS_STR_INTERNED | IS_STR_PERMANENT) << GC_FLAGS_SHIFT); \ |
47 | 44.1k | } \ |
48 | 44.1k | GC_TYPE_INFO(str) = flags; \ |
49 | 44.1k | } while (0) |
50 | | |
51 | 53.0k | #define zend_accel_store_string(str) do { \ |
52 | 53.0k | zend_string *new_str = zend_shared_alloc_get_xlat_entry(str); \ |
53 | 53.0k | if (new_str) { \ |
54 | 8.92k | zend_string_release_ex(str, 0); \ |
55 | 8.92k | str = new_str; \ |
56 | 44.1k | } else { \ |
57 | 44.1k | new_str = zend_shared_memdup_put((void*)str, _ZSTR_STRUCT_SIZE(ZSTR_LEN(str))); \ |
58 | 44.1k | zend_string_release_ex(str, 0); \ |
59 | 44.1k | str = new_str; \ |
60 | 44.1k | zend_string_hash_val(str); \ |
61 | 44.1k | zend_set_str_gc_flags(str); \ |
62 | 44.1k | } \ |
63 | 53.0k | } while (0) |
64 | | #define zend_accel_memdup_string(str) do { \ |
65 | | zend_string *new_str = zend_shared_alloc_get_xlat_entry(str); \ |
66 | | if (new_str) { \ |
67 | | str = new_str; \ |
68 | | } else { \ |
69 | | new_str = zend_shared_memdup_put((void*)str, _ZSTR_STRUCT_SIZE(ZSTR_LEN(str))); \ |
70 | | str = new_str; \ |
71 | | zend_string_hash_val(str); \ |
72 | | zend_set_str_gc_flags(str); \ |
73 | | } \ |
74 | | } while (0) |
75 | 403k | #define zend_accel_store_interned_string(str) do { \ |
76 | 403k | if (!IS_ACCEL_INTERNED(str)) { \ |
77 | 33.8k | zend_accel_store_string(str); \ |
78 | 33.8k | } \ |
79 | 403k | } while (0) |
80 | | #define zend_accel_memdup_interned_string(str) do { \ |
81 | | if (!IS_ACCEL_INTERNED(str)) { \ |
82 | | zend_accel_memdup_string(str); \ |
83 | | } \ |
84 | | } while (0) |
85 | | |
86 | | typedef void (*zend_persist_func_t)(zval*); |
87 | | |
88 | | static void zend_persist_zval(zval *z); |
89 | | static void zend_persist_op_array(zval *zv); |
90 | | |
91 | | static const uint32_t uninitialized_bucket[-HT_MIN_MASK] = |
92 | | {HT_INVALID_IDX, HT_INVALID_IDX}; |
93 | | |
94 | | static void zend_hash_persist(HashTable *ht) |
95 | 38.6k | { |
96 | 38.6k | uint32_t idx, nIndex; |
97 | 38.6k | Bucket *p; |
98 | | |
99 | 38.6k | HT_FLAGS(ht) |= HASH_FLAG_STATIC_KEYS; |
100 | 38.6k | ht->pDestructor = NULL; |
101 | 38.6k | ht->nInternalPointer = 0; |
102 | | |
103 | 38.6k | if (HT_FLAGS(ht) & HASH_FLAG_UNINITIALIZED) { |
104 | 27.9k | if (EXPECTED(!ZCG(current_persistent_script)->corrupted)) { |
105 | 27.9k | HT_SET_DATA_ADDR(ht, &ZCSG(uninitialized_bucket)); |
106 | 27.9k | } else { |
107 | 0 | HT_SET_DATA_ADDR(ht, &uninitialized_bucket); |
108 | 0 | } |
109 | 27.9k | return; |
110 | 27.9k | } |
111 | 10.6k | if (ht->nNumUsed == 0) { |
112 | 0 | efree(HT_GET_DATA_ADDR(ht)); |
113 | 0 | ht->nTableMask = HT_MIN_MASK; |
114 | 0 | if (EXPECTED(!ZCG(current_persistent_script)->corrupted)) { |
115 | 0 | HT_SET_DATA_ADDR(ht, &ZCSG(uninitialized_bucket)); |
116 | 0 | } else { |
117 | 0 | HT_SET_DATA_ADDR(ht, &uninitialized_bucket); |
118 | 0 | } |
119 | 0 | HT_FLAGS(ht) |= HASH_FLAG_UNINITIALIZED; |
120 | 0 | return; |
121 | 0 | } |
122 | 10.6k | if (HT_IS_PACKED(ht)) { |
123 | 6.27k | void *data = HT_GET_DATA_ADDR(ht); |
124 | 6.27k | if (GC_FLAGS(ht) & IS_ARRAY_IMMUTABLE) { |
125 | 0 | data = zend_shared_memdup(data, HT_PACKED_USED_SIZE(ht)); |
126 | 6.27k | } else { |
127 | 6.27k | data = zend_shared_memdup_free(data, HT_PACKED_USED_SIZE(ht)); |
128 | 6.27k | } |
129 | 6.27k | HT_SET_DATA_ADDR(ht, data); |
130 | 6.27k | } else if (ht->nNumUsed > HT_MIN_SIZE && ht->nNumUsed < (uint32_t)(-(int32_t)ht->nTableMask) / 4) { |
131 | | /* compact table */ |
132 | 4 | void *old_data = HT_GET_DATA_ADDR(ht); |
133 | 4 | Bucket *old_buckets = ht->arData; |
134 | 4 | uint32_t hash_size; |
135 | | |
136 | 4 | hash_size = (uint32_t)(-(int32_t)ht->nTableMask); |
137 | 8 | while (hash_size >> 2 > ht->nNumUsed) { |
138 | 4 | hash_size >>= 1; |
139 | 4 | } |
140 | 4 | ht->nTableMask = (uint32_t)(-(int32_t)hash_size); |
141 | 4 | ZEND_ASSERT(((uintptr_t)ZCG(mem) & 0x7) == 0); /* should be 8 byte aligned */ |
142 | 4 | HT_SET_DATA_ADDR(ht, ZCG(mem)); |
143 | 4 | ZCG(mem) = (void*)((char*)ZCG(mem) + ZEND_ALIGNED_SIZE((hash_size * sizeof(uint32_t)) + (ht->nNumUsed * sizeof(Bucket)))); |
144 | 4 | HT_HASH_RESET(ht); |
145 | 4 | memcpy(ht->arData, old_buckets, ht->nNumUsed * sizeof(Bucket)); |
146 | 4 | if (!(GC_FLAGS(ht) & IS_ARRAY_IMMUTABLE)) { |
147 | 4 | efree(old_data); |
148 | 4 | } |
149 | | |
150 | | /* rehash */ |
151 | 64 | for (idx = 0; idx < ht->nNumUsed; idx++) { |
152 | 60 | p = ht->arData + idx; |
153 | 60 | if (Z_TYPE(p->val) == IS_UNDEF) continue; |
154 | 60 | nIndex = p->h | ht->nTableMask; |
155 | 60 | Z_NEXT(p->val) = HT_HASH(ht, nIndex); |
156 | 60 | HT_HASH(ht, nIndex) = HT_IDX_TO_HASH(idx); |
157 | 60 | } |
158 | 4.40k | } else { |
159 | 4.40k | void *data = ZCG(mem); |
160 | 4.40k | void *old_data = HT_GET_DATA_ADDR(ht); |
161 | | |
162 | 4.40k | ZEND_ASSERT(((uintptr_t)ZCG(mem) & 0x7) == 0); /* should be 8 byte aligned */ |
163 | 4.40k | ZCG(mem) = (void*)((char*)data + ZEND_ALIGNED_SIZE(HT_USED_SIZE(ht))); |
164 | 4.40k | memcpy(data, old_data, HT_USED_SIZE(ht)); |
165 | 4.40k | if (!(GC_FLAGS(ht) & IS_ARRAY_IMMUTABLE)) { |
166 | 4.40k | efree(old_data); |
167 | 4.40k | } |
168 | 4.40k | HT_SET_DATA_ADDR(ht, data); |
169 | 4.40k | } |
170 | 10.6k | } |
171 | | |
172 | | static zend_ast *zend_persist_ast(zend_ast *ast) |
173 | 2.32k | { |
174 | 2.32k | uint32_t i; |
175 | 2.32k | zend_ast *node; |
176 | | |
177 | 2.32k | if (ast->kind == ZEND_AST_ZVAL || ast->kind == ZEND_AST_CONSTANT) { |
178 | 1.17k | zend_ast_zval *copy = zend_shared_memdup(ast, sizeof(zend_ast_zval)); |
179 | 1.17k | zend_persist_zval(©->val); |
180 | 1.17k | node = (zend_ast *) copy; |
181 | 1.17k | } else if (zend_ast_is_list(ast)) { |
182 | 358 | zend_ast_list *list = zend_ast_get_list(ast); |
183 | 358 | zend_ast_list *copy = zend_shared_memdup(ast, |
184 | 358 | sizeof(zend_ast_list) - sizeof(zend_ast *) + sizeof(zend_ast *) * list->children); |
185 | 796 | for (i = 0; i < list->children; i++) { |
186 | 438 | if (copy->child[i]) { |
187 | 438 | copy->child[i] = zend_persist_ast(copy->child[i]); |
188 | 438 | } |
189 | 438 | } |
190 | 358 | node = (zend_ast *) copy; |
191 | 786 | } else if (ast->kind == ZEND_AST_OP_ARRAY) { |
192 | 0 | zend_ast_op_array *copy = zend_shared_memdup(ast, sizeof(zend_ast_op_array)); |
193 | 0 | zval z; |
194 | 0 | ZVAL_PTR(&z, copy->op_array); |
195 | 0 | zend_persist_op_array(&z); |
196 | 0 | copy->op_array = Z_PTR(z); |
197 | 0 | node = (zend_ast *) copy; |
198 | 786 | } else if (ast->kind == ZEND_AST_CALLABLE_CONVERT) { |
199 | 0 | zend_ast_fcc *copy = zend_shared_memdup(ast, sizeof(zend_ast_fcc)); |
200 | 0 | node = (zend_ast *) copy; |
201 | 786 | } else if (zend_ast_is_decl(ast)) { |
202 | | /* Not implemented. */ |
203 | 0 | ZEND_UNREACHABLE(); |
204 | 786 | } else { |
205 | 786 | uint32_t children = zend_ast_get_num_children(ast); |
206 | 786 | node = zend_shared_memdup(ast, zend_ast_size(children)); |
207 | 2.32k | for (i = 0; i < children; i++) { |
208 | 1.54k | if (node->child[i]) { |
209 | 1.39k | node->child[i] = zend_persist_ast(node->child[i]); |
210 | 1.39k | } |
211 | 1.54k | } |
212 | 786 | } |
213 | | |
214 | 2.32k | return node; |
215 | 2.32k | } |
216 | | |
217 | | static void zend_persist_zval(zval *z) |
218 | 355k | { |
219 | 355k | void *new_ptr; |
220 | | |
221 | 355k | switch (Z_TYPE_P(z)) { |
222 | 211k | case IS_STRING: |
223 | 211k | zend_accel_store_interned_string(Z_STR_P(z)); |
224 | 211k | Z_TYPE_FLAGS_P(z) = 0; |
225 | 211k | break; |
226 | 7.28k | case IS_ARRAY: |
227 | 7.28k | new_ptr = zend_shared_alloc_get_xlat_entry(Z_ARR_P(z)); |
228 | 7.28k | if (new_ptr) { |
229 | 407 | Z_ARR_P(z) = new_ptr; |
230 | 407 | Z_TYPE_FLAGS_P(z) = 0; |
231 | 6.87k | } else if (!ZCG(current_persistent_script)->corrupted |
232 | 6.87k | && zend_accel_in_shm(Z_ARR_P(z))) { |
233 | | /* pass */ |
234 | 6.87k | } else { |
235 | 6.87k | HashTable *ht; |
236 | | |
237 | 6.87k | if (!Z_REFCOUNTED_P(z)) { |
238 | 415 | ht = zend_shared_memdup_put(Z_ARR_P(z), sizeof(zend_array)); |
239 | 6.45k | } else { |
240 | 6.45k | GC_REMOVE_FROM_BUFFER(Z_ARR_P(z)); |
241 | 6.45k | ht = zend_shared_memdup_put_free(Z_ARR_P(z), sizeof(zend_array)); |
242 | 6.45k | } |
243 | 6.87k | Z_ARR_P(z) = ht; |
244 | 6.87k | zend_hash_persist(ht); |
245 | 6.87k | if (HT_IS_PACKED(ht)) { |
246 | 5.91k | zval *zv; |
247 | | |
248 | 225k | ZEND_HASH_PACKED_FOREACH_VAL(ht, zv) { |
249 | 225k | zend_persist_zval(zv); |
250 | 225k | } ZEND_HASH_FOREACH_END(); |
251 | 5.91k | } else { |
252 | 960 | Bucket *p; |
253 | | |
254 | 14.7k | ZEND_HASH_MAP_FOREACH_BUCKET(ht, p) { |
255 | 14.7k | if (p->key) { |
256 | 366 | zend_accel_store_interned_string(p->key); |
257 | 366 | } |
258 | 14.7k | zend_persist_zval(&p->val); |
259 | 14.7k | } ZEND_HASH_FOREACH_END(); |
260 | 960 | } |
261 | | /* make immutable array */ |
262 | 6.87k | Z_TYPE_FLAGS_P(z) = 0; |
263 | 6.87k | GC_SET_REFCOUNT(Z_COUNTED_P(z), 2); |
264 | 6.87k | GC_ADD_FLAGS(Z_COUNTED_P(z), IS_ARRAY_IMMUTABLE); |
265 | 6.87k | } |
266 | 7.28k | break; |
267 | 7.28k | case IS_CONSTANT_AST: |
268 | 490 | new_ptr = zend_shared_alloc_get_xlat_entry(Z_AST_P(z)); |
269 | 490 | if (new_ptr) { |
270 | 0 | Z_AST_P(z) = new_ptr; |
271 | 0 | Z_TYPE_FLAGS_P(z) = 0; |
272 | 490 | } else if (ZCG(current_persistent_script)->corrupted |
273 | 490 | || !zend_accel_in_shm(Z_AST_P(z))) { |
274 | 490 | zend_ast_ref *old_ref = Z_AST_P(z); |
275 | 490 | Z_AST_P(z) = zend_shared_memdup_put(Z_AST_P(z), sizeof(zend_ast_ref)); |
276 | 490 | zend_persist_ast(GC_AST(old_ref)); |
277 | 490 | Z_TYPE_FLAGS_P(z) = 0; |
278 | 490 | GC_SET_REFCOUNT(Z_COUNTED_P(z), 1); |
279 | 490 | GC_ADD_FLAGS(Z_COUNTED_P(z), GC_IMMUTABLE); |
280 | 490 | efree(old_ref); |
281 | 490 | } |
282 | 490 | break; |
283 | 10 | case IS_PTR: |
284 | 10 | break; |
285 | 136k | default: |
286 | 136k | ZEND_ASSERT(Z_TYPE_P(z) < IS_STRING); |
287 | 136k | break; |
288 | 355k | } |
289 | 355k | } |
290 | | |
291 | | static HashTable *zend_persist_attributes(HashTable *attributes) |
292 | 368 | { |
293 | 368 | uint32_t i; |
294 | 368 | zval *v; |
295 | | |
296 | 368 | if (!ZCG(current_persistent_script)->corrupted && zend_accel_in_shm(attributes)) { |
297 | 6 | return attributes; |
298 | 6 | } |
299 | | |
300 | | /* Attributes for trait properties may be shared if preloading is used. */ |
301 | 362 | HashTable *xlat = zend_shared_alloc_get_xlat_entry(attributes); |
302 | 362 | if (xlat) { |
303 | 0 | return xlat; |
304 | 0 | } |
305 | | |
306 | 362 | zend_hash_persist(attributes); |
307 | | |
308 | 1.87k | ZEND_HASH_PACKED_FOREACH_VAL(attributes, v) { |
309 | 1.87k | zend_attribute *attr = Z_PTR_P(v); |
310 | 1.87k | zend_attribute *copy = zend_shared_memdup_put_free(attr, ZEND_ATTRIBUTE_SIZE(attr->argc)); |
311 | | |
312 | 1.87k | zend_accel_store_interned_string(copy->name); |
313 | 1.87k | zend_accel_store_interned_string(copy->lcname); |
314 | 1.87k | if (copy->validation_error) { |
315 | 6 | zend_accel_store_interned_string(copy->validation_error); |
316 | 6 | } |
317 | | |
318 | 1.87k | for (i = 0; i < copy->argc; i++) { |
319 | 96 | if (copy->args[i].name) { |
320 | 0 | zend_accel_store_interned_string(copy->args[i].name); |
321 | 0 | } |
322 | 96 | zend_persist_zval(©->args[i].value); |
323 | 96 | } |
324 | | |
325 | 1.87k | ZVAL_PTR(v, copy); |
326 | 1.87k | } ZEND_HASH_FOREACH_END(); |
327 | | |
328 | 362 | HashTable *ptr = zend_shared_memdup_put_free(attributes, sizeof(HashTable)); |
329 | 362 | GC_SET_REFCOUNT(ptr, 2); |
330 | 362 | GC_TYPE_INFO(ptr) = GC_ARRAY | ((IS_ARRAY_IMMUTABLE|GC_NOT_COLLECTABLE) << GC_FLAGS_SHIFT); |
331 | | |
332 | 362 | return ptr; |
333 | 362 | } |
334 | | |
335 | | uint32_t zend_accel_get_class_name_map_ptr(zend_string *type_name) |
336 | 2.37k | { |
337 | 2.37k | uint32_t ret; |
338 | | |
339 | 2.37k | if (zend_string_equals_ci(type_name, ZSTR_KNOWN(ZEND_STR_SELF)) || |
340 | 2.37k | zend_string_equals_ci(type_name, ZSTR_KNOWN(ZEND_STR_PARENT))) { |
341 | 0 | return 0; |
342 | 0 | } |
343 | | |
344 | | /* We use type.name.gc.refcount to keep map_ptr of corresponding type */ |
345 | 2.37k | if (ZSTR_HAS_CE_CACHE(type_name)) { |
346 | 2.16k | return GC_REFCOUNT(type_name); |
347 | 2.16k | } |
348 | | |
349 | 219 | if ((GC_FLAGS(type_name) & GC_IMMUTABLE) |
350 | 219 | && (GC_FLAGS(type_name) & IS_STR_PERMANENT)) { |
351 | 219 | do { |
352 | 219 | ret = ZEND_MAP_PTR_NEW_OFFSET(); |
353 | 219 | } while (ret <= 2); |
354 | 219 | GC_SET_REFCOUNT(type_name, ret); |
355 | 219 | GC_ADD_FLAGS(type_name, IS_STR_CLASS_NAME_MAP_PTR); |
356 | 219 | return ret; |
357 | 219 | } |
358 | | |
359 | 0 | return 0; |
360 | 219 | } |
361 | | |
362 | 6.32k | static void zend_persist_type(zend_type *type) { |
363 | 6.32k | if (ZEND_TYPE_HAS_LIST(*type)) { |
364 | 68 | zend_type_list *list = ZEND_TYPE_LIST(*type); |
365 | 68 | if (ZEND_TYPE_USES_ARENA(*type) || zend_accel_in_shm(list)) { |
366 | 68 | list = zend_shared_memdup_put(list, ZEND_TYPE_LIST_SIZE(list->num_types)); |
367 | 68 | ZEND_TYPE_FULL_MASK(*type) &= ~_ZEND_TYPE_ARENA_BIT; |
368 | 68 | } else { |
369 | 0 | list = zend_shared_memdup_put_free(list, ZEND_TYPE_LIST_SIZE(list->num_types)); |
370 | 0 | } |
371 | 68 | ZEND_TYPE_SET_PTR(*type, list); |
372 | 68 | } |
373 | | |
374 | 6.32k | zend_type *single_type; |
375 | 12.7k | ZEND_TYPE_FOREACH_MUTABLE(*type, single_type) { |
376 | 12.7k | if (ZEND_TYPE_HAS_LIST(*single_type)) { |
377 | 32 | zend_persist_type(single_type); |
378 | 32 | continue; |
379 | 32 | } |
380 | 6.35k | if (ZEND_TYPE_HAS_NAME(*single_type)) { |
381 | 347 | zend_string *type_name = ZEND_TYPE_NAME(*single_type); |
382 | 347 | zend_accel_store_interned_string(type_name); |
383 | 347 | ZEND_TYPE_SET_PTR(*single_type, type_name); |
384 | 347 | if (!ZCG(current_persistent_script)->corrupted) { |
385 | 347 | zend_accel_get_class_name_map_ptr(type_name); |
386 | 347 | } |
387 | 347 | } |
388 | 6.35k | } ZEND_TYPE_FOREACH_END(); |
389 | 6.32k | } |
390 | | |
391 | | static void zend_persist_op_array_ex(zend_op_array *op_array, zend_persistent_script* main_persistent_script) |
392 | 17.7k | { |
393 | 17.7k | zend_op *persist_ptr; |
394 | 17.7k | zval *orig_literals = NULL; |
395 | | |
396 | 17.7k | if (op_array->refcount && --(*op_array->refcount) == 0) { |
397 | 17.0k | efree(op_array->refcount); |
398 | 17.0k | } |
399 | 17.7k | op_array->refcount = NULL; |
400 | | |
401 | 17.7k | if (main_persistent_script) { |
402 | 12.1k | zend_execute_data *orig_execute_data = EG(current_execute_data); |
403 | 12.1k | zend_execute_data fake_execute_data; |
404 | 12.1k | zval *offset; |
405 | | |
406 | 12.1k | memset(&fake_execute_data, 0, sizeof(fake_execute_data)); |
407 | 12.1k | fake_execute_data.func = (zend_function*)op_array; |
408 | 12.1k | EG(current_execute_data) = &fake_execute_data; |
409 | 12.1k | if ((offset = zend_get_constant_str("__COMPILER_HALT_OFFSET__", sizeof("__COMPILER_HALT_OFFSET__") - 1)) != NULL) { |
410 | 2 | main_persistent_script->compiler_halt_offset = Z_LVAL_P(offset); |
411 | 2 | } |
412 | 12.1k | EG(current_execute_data) = orig_execute_data; |
413 | 12.1k | } |
414 | | |
415 | 17.7k | if (op_array->function_name) { |
416 | 5.59k | zend_string *old_name = op_array->function_name; |
417 | 5.59k | zend_accel_store_interned_string(op_array->function_name); |
418 | | /* Remember old function name, so it can be released multiple times if shared. */ |
419 | 5.59k | if (op_array->function_name != old_name |
420 | 200 | && !zend_shared_alloc_get_xlat_entry(&op_array->function_name)) { |
421 | 200 | zend_shared_alloc_register_xlat_entry(&op_array->function_name, old_name); |
422 | 200 | } |
423 | 5.59k | } |
424 | | |
425 | 17.7k | if (op_array->scope) { |
426 | 3.00k | zend_class_entry *scope = zend_shared_alloc_get_xlat_entry(op_array->scope); |
427 | | |
428 | 3.00k | if (scope) { |
429 | 3.00k | op_array->scope = scope; |
430 | 3.00k | } |
431 | | |
432 | 3.00k | if (op_array->prototype) { |
433 | 503 | zend_function *ptr = zend_shared_alloc_get_xlat_entry(op_array->prototype); |
434 | | |
435 | 503 | if (ptr) { |
436 | 56 | op_array->prototype = ptr; |
437 | 56 | } |
438 | 503 | } |
439 | | |
440 | 3.00k | persist_ptr = zend_shared_alloc_get_xlat_entry(op_array->opcodes); |
441 | 3.00k | if (persist_ptr) { |
442 | 0 | op_array->opcodes = persist_ptr; |
443 | 0 | if (op_array->static_variables) { |
444 | 0 | op_array->static_variables = zend_shared_alloc_get_xlat_entry(op_array->static_variables); |
445 | 0 | ZEND_ASSERT(op_array->static_variables != NULL); |
446 | 0 | } |
447 | 0 | if (op_array->literals) { |
448 | 0 | op_array->literals = zend_shared_alloc_get_xlat_entry(op_array->literals); |
449 | 0 | ZEND_ASSERT(op_array->literals != NULL); |
450 | 0 | } |
451 | 0 | if (op_array->filename) { |
452 | 0 | op_array->filename = zend_shared_alloc_get_xlat_entry(op_array->filename); |
453 | 0 | ZEND_ASSERT(op_array->filename != NULL); |
454 | 0 | } |
455 | 0 | if (op_array->arg_info) { |
456 | 0 | zend_arg_info *arg_info = op_array->arg_info; |
457 | 0 | if (op_array->fn_flags & ZEND_ACC_HAS_RETURN_TYPE) { |
458 | 0 | arg_info--; |
459 | 0 | } |
460 | 0 | arg_info = zend_shared_alloc_get_xlat_entry(arg_info); |
461 | 0 | ZEND_ASSERT(arg_info != NULL); |
462 | 0 | if (op_array->fn_flags & ZEND_ACC_HAS_RETURN_TYPE) { |
463 | 0 | arg_info++; |
464 | 0 | } |
465 | 0 | op_array->arg_info = arg_info; |
466 | 0 | } |
467 | 0 | if (op_array->live_range) { |
468 | 0 | op_array->live_range = zend_shared_alloc_get_xlat_entry(op_array->live_range); |
469 | 0 | ZEND_ASSERT(op_array->live_range != NULL); |
470 | 0 | } |
471 | 0 | if (op_array->doc_comment) { |
472 | 0 | if (ZCG(accel_directives).save_comments) { |
473 | 0 | op_array->doc_comment = zend_shared_alloc_get_xlat_entry(op_array->doc_comment); |
474 | 0 | ZEND_ASSERT(op_array->doc_comment != NULL); |
475 | 0 | } else { |
476 | 0 | op_array->doc_comment = NULL; |
477 | 0 | } |
478 | 0 | } |
479 | 0 | if (op_array->attributes) { |
480 | 0 | op_array->attributes = zend_shared_alloc_get_xlat_entry(op_array->attributes); |
481 | 0 | ZEND_ASSERT(op_array->attributes != NULL); |
482 | 0 | } |
483 | |
|
484 | 0 | if (op_array->try_catch_array) { |
485 | 0 | op_array->try_catch_array = zend_shared_alloc_get_xlat_entry(op_array->try_catch_array); |
486 | 0 | ZEND_ASSERT(op_array->try_catch_array != NULL); |
487 | 0 | } |
488 | 0 | if (op_array->vars) { |
489 | 0 | op_array->vars = zend_shared_alloc_get_xlat_entry(op_array->vars); |
490 | 0 | ZEND_ASSERT(op_array->vars != NULL); |
491 | 0 | } |
492 | 0 | if (op_array->dynamic_func_defs) { |
493 | 0 | op_array->dynamic_func_defs = zend_shared_alloc_get_xlat_entry(op_array->dynamic_func_defs); |
494 | 0 | ZEND_ASSERT(op_array->dynamic_func_defs != NULL); |
495 | 0 | } |
496 | 0 | ZCG(mem) = (void*)((char*)ZCG(mem) + ZEND_ALIGNED_SIZE(zend_extensions_op_array_persist(op_array, ZCG(mem)))); |
497 | 0 | return; |
498 | 0 | } |
499 | 14.7k | } else { |
500 | | /* "prototype" may be undefined if "scope" isn't set */ |
501 | 14.7k | op_array->prototype = NULL; |
502 | 14.7k | } |
503 | | |
504 | 17.7k | if (op_array->scope |
505 | 3.00k | && !(op_array->fn_flags & ZEND_ACC_CLOSURE) |
506 | 3.00k | && (op_array->scope->ce_flags & ZEND_ACC_CACHED)) { |
507 | 669 | return; |
508 | 669 | } |
509 | | |
510 | 17.1k | if (op_array->static_variables && !zend_accel_in_shm(op_array->static_variables)) { |
511 | 208 | Bucket *p; |
512 | | |
513 | 208 | zend_hash_persist(op_array->static_variables); |
514 | 3.39k | ZEND_HASH_MAP_FOREACH_BUCKET(op_array->static_variables, p) { |
515 | 3.39k | ZEND_ASSERT(p->key != NULL); |
516 | 3.39k | zend_accel_store_interned_string(p->key); |
517 | 1.49k | zend_persist_zval(&p->val); |
518 | 1.49k | } ZEND_HASH_FOREACH_END(); |
519 | 208 | op_array->static_variables = zend_shared_memdup_put_free(op_array->static_variables, sizeof(HashTable)); |
520 | | /* make immutable array */ |
521 | 208 | GC_SET_REFCOUNT(op_array->static_variables, 2); |
522 | 208 | GC_TYPE_INFO(op_array->static_variables) = GC_ARRAY | ((IS_ARRAY_IMMUTABLE|GC_NOT_COLLECTABLE) << GC_FLAGS_SHIFT); |
523 | 208 | } |
524 | | |
525 | 17.1k | if (op_array->literals) { |
526 | 17.0k | zval *p, *end; |
527 | | |
528 | 17.0k | orig_literals = op_array->literals; |
529 | | #if ZEND_USE_ABS_CONST_ADDR |
530 | | p = zend_shared_memdup_put_free(op_array->literals, sizeof(zval) * op_array->last_literal); |
531 | | #else |
532 | 17.0k | p = zend_shared_memdup_put(op_array->literals, sizeof(zval) * op_array->last_literal); |
533 | 17.0k | #endif |
534 | 17.0k | end = p + op_array->last_literal; |
535 | 17.0k | op_array->literals = p; |
536 | 254k | while (p < end) { |
537 | 237k | zend_persist_zval(p); |
538 | 237k | p++; |
539 | 237k | } |
540 | 17.0k | } |
541 | | |
542 | 17.1k | { |
543 | 17.1k | zend_op *new_opcodes = zend_shared_memdup_put(op_array->opcodes, sizeof(zend_op) * op_array->last); |
544 | 17.1k | zend_op *opline = new_opcodes; |
545 | 17.1k | zend_op *end = new_opcodes + op_array->last; |
546 | 17.1k | int offset = 0; |
547 | | |
548 | 973k | for (; opline < end ; opline++, offset++) { |
549 | | #if ZEND_USE_ABS_CONST_ADDR |
550 | | if (opline->op1_type == IS_CONST) { |
551 | | opline->op1.zv = (zval*)((char*)opline->op1.zv + ((char*)op_array->literals - (char*)orig_literals)); |
552 | | if (opline->opcode == ZEND_SEND_VAL |
553 | | || opline->opcode == ZEND_SEND_VAL_EX |
554 | | || opline->opcode == ZEND_QM_ASSIGN) { |
555 | | /* Update handlers to eliminate REFCOUNTED check */ |
556 | | zend_vm_set_opcode_handler_ex(opline, 1 << Z_TYPE_P(opline->op1.zv), 0, 0); |
557 | | } |
558 | | } |
559 | | if (opline->op2_type == IS_CONST) { |
560 | | opline->op2.zv = (zval*)((char*)opline->op2.zv + ((char*)op_array->literals - (char*)orig_literals)); |
561 | | } |
562 | | #else |
563 | 956k | if (opline->op1_type == IS_CONST) { |
564 | 122k | opline->op1.constant = |
565 | 122k | (char*)(op_array->literals + |
566 | 122k | ((zval*)((char*)(op_array->opcodes + (opline - new_opcodes)) + |
567 | 122k | (int32_t)opline->op1.constant) - orig_literals)) - |
568 | 122k | (char*)opline; |
569 | 122k | if (opline->opcode == ZEND_SEND_VAL |
570 | 113k | || opline->opcode == ZEND_SEND_VAL_EX |
571 | 111k | || opline->opcode == ZEND_QM_ASSIGN) { |
572 | 12.9k | zend_vm_set_opcode_handler_ex(opline, 0, 0, 0); |
573 | 12.9k | } |
574 | 122k | } |
575 | 956k | if (opline->op2_type == IS_CONST) { |
576 | 260k | opline->op2.constant = |
577 | 260k | (char*)(op_array->literals + |
578 | 260k | ((zval*)((char*)(op_array->opcodes + (opline - new_opcodes)) + |
579 | 260k | (int32_t)opline->op2.constant) - orig_literals)) - |
580 | 260k | (char*)opline; |
581 | 260k | } |
582 | 956k | #endif |
583 | | #if ZEND_USE_ABS_JMP_ADDR |
584 | | if (op_array->fn_flags & ZEND_ACC_DONE_PASS_TWO) { |
585 | | /* fix jumps to point to new array */ |
586 | | switch (opline->opcode) { |
587 | | case ZEND_JMP: |
588 | | case ZEND_FAST_CALL: |
589 | | opline->op1.jmp_addr = &new_opcodes[opline->op1.jmp_addr - op_array->opcodes]; |
590 | | break; |
591 | | case ZEND_JMPZ: |
592 | | case ZEND_JMPNZ: |
593 | | case ZEND_JMPZ_EX: |
594 | | case ZEND_JMPNZ_EX: |
595 | | case ZEND_JMP_SET: |
596 | | case ZEND_COALESCE: |
597 | | case ZEND_FE_RESET_R: |
598 | | case ZEND_FE_RESET_RW: |
599 | | case ZEND_ASSERT_CHECK: |
600 | | case ZEND_JMP_NULL: |
601 | | case ZEND_BIND_INIT_STATIC_OR_JMP: |
602 | | case ZEND_JMP_FRAMELESS: |
603 | | opline->op2.jmp_addr = &new_opcodes[opline->op2.jmp_addr - op_array->opcodes]; |
604 | | break; |
605 | | case ZEND_CATCH: |
606 | | if (!(opline->extended_value & ZEND_LAST_CATCH)) { |
607 | | opline->op2.jmp_addr = &new_opcodes[opline->op2.jmp_addr - op_array->opcodes]; |
608 | | } |
609 | | break; |
610 | | case ZEND_FE_FETCH_R: |
611 | | case ZEND_FE_FETCH_RW: |
612 | | case ZEND_SWITCH_LONG: |
613 | | case ZEND_SWITCH_STRING: |
614 | | case ZEND_MATCH: |
615 | | /* relative extended_value don't have to be changed */ |
616 | | break; |
617 | | } |
618 | | } |
619 | | #endif |
620 | 956k | if (opline->opcode == ZEND_OP_DATA && (opline-1)->opcode == ZEND_DECLARE_ATTRIBUTED_CONST) { |
621 | 10 | zval *literal = RT_CONSTANT(opline, opline->op1); |
622 | 10 | HashTable *attributes = Z_PTR_P(literal); |
623 | 10 | attributes = zend_persist_attributes(attributes); |
624 | 10 | ZVAL_PTR(literal, attributes); |
625 | 10 | } |
626 | 956k | } |
627 | | |
628 | 17.1k | efree(op_array->opcodes); |
629 | 17.1k | op_array->opcodes = new_opcodes; |
630 | 17.1k | } |
631 | | |
632 | 17.1k | if (op_array->filename) { |
633 | 17.1k | zend_accel_store_string(op_array->filename); |
634 | 17.1k | } |
635 | | |
636 | 17.1k | if (op_array->arg_info) { |
637 | 2.34k | zend_arg_info *arg_info = op_array->arg_info; |
638 | 2.34k | uint32_t num_args = op_array->num_args; |
639 | 2.34k | uint32_t i; |
640 | | |
641 | 2.34k | if (op_array->fn_flags & ZEND_ACC_HAS_RETURN_TYPE) { |
642 | 772 | arg_info--; |
643 | 772 | num_args++; |
644 | 772 | } |
645 | 2.34k | if (op_array->fn_flags & ZEND_ACC_VARIADIC) { |
646 | 28 | num_args++; |
647 | 28 | } |
648 | 2.34k | arg_info = zend_shared_memdup_put_free(arg_info, sizeof(zend_arg_info) * num_args); |
649 | 6.06k | for (i = 0; i < num_args; i++) { |
650 | 3.72k | if (arg_info[i].name) { |
651 | 2.94k | zend_accel_store_interned_string(arg_info[i].name); |
652 | 2.94k | } |
653 | 3.72k | zend_persist_type(&arg_info[i].type); |
654 | 3.72k | } |
655 | 2.34k | if (op_array->fn_flags & ZEND_ACC_HAS_RETURN_TYPE) { |
656 | 772 | arg_info++; |
657 | 772 | } |
658 | 2.34k | op_array->arg_info = arg_info; |
659 | 2.34k | } |
660 | | |
661 | 17.1k | if (op_array->live_range) { |
662 | 12.6k | op_array->live_range = zend_shared_memdup_put_free(op_array->live_range, sizeof(zend_live_range) * op_array->last_live_range); |
663 | 12.6k | } |
664 | | |
665 | 17.1k | if (op_array->doc_comment) { |
666 | 58 | if (ZCG(accel_directives).save_comments) { |
667 | 58 | zend_accel_store_interned_string(op_array->doc_comment); |
668 | 58 | } else { |
669 | 0 | zend_string_release_ex(op_array->doc_comment, 0); |
670 | 0 | op_array->doc_comment = NULL; |
671 | 0 | } |
672 | 58 | } |
673 | | |
674 | 17.1k | if (op_array->attributes) { |
675 | 196 | op_array->attributes = zend_persist_attributes(op_array->attributes); |
676 | 196 | } |
677 | | |
678 | 17.1k | if (op_array->try_catch_array) { |
679 | 9.74k | op_array->try_catch_array = zend_shared_memdup_put_free(op_array->try_catch_array, sizeof(zend_try_catch_element) * op_array->last_try_catch); |
680 | 9.74k | } |
681 | | |
682 | 17.1k | if (op_array->vars) { |
683 | 14.0k | int i; |
684 | 14.0k | op_array->vars = zend_shared_memdup_put_free(op_array->vars, sizeof(zend_string*) * op_array->last_var); |
685 | 163k | for (i = 0; i < op_array->last_var; i++) { |
686 | 149k | zend_accel_store_interned_string(op_array->vars[i]); |
687 | 149k | } |
688 | 14.0k | } |
689 | | |
690 | 17.1k | if (op_array->num_dynamic_func_defs) { |
691 | 528 | op_array->dynamic_func_defs = zend_shared_memdup_put_free( |
692 | 528 | op_array->dynamic_func_defs, sizeof(zend_function *) * op_array->num_dynamic_func_defs); |
693 | 1.57k | for (uint32_t i = 0; i < op_array->num_dynamic_func_defs; i++) { |
694 | 1.04k | zval tmp; |
695 | 1.04k | ZVAL_PTR(&tmp, op_array->dynamic_func_defs[i]); |
696 | 1.04k | zend_persist_op_array(&tmp); |
697 | 1.04k | op_array->dynamic_func_defs[i] = Z_PTR(tmp); |
698 | 1.04k | } |
699 | 528 | } |
700 | | |
701 | 17.1k | ZCG(mem) = (void*)((char*)ZCG(mem) + ZEND_ALIGNED_SIZE(zend_extensions_op_array_persist(op_array, ZCG(mem)))); |
702 | 17.1k | } |
703 | | |
704 | | static void zend_persist_op_array(zval *zv) |
705 | 2.59k | { |
706 | 2.59k | zend_op_array *op_array = Z_PTR_P(zv); |
707 | 2.59k | zend_op_array *old_op_array; |
708 | 2.59k | ZEND_ASSERT(op_array->type == ZEND_USER_FUNCTION); |
709 | | |
710 | 2.59k | old_op_array = zend_shared_alloc_get_xlat_entry(op_array); |
711 | 2.59k | if (!old_op_array) { |
712 | 2.59k | op_array = Z_PTR_P(zv) = zend_shared_memdup_put(Z_PTR_P(zv), sizeof(zend_op_array)); |
713 | 2.59k | zend_persist_op_array_ex(op_array, NULL); |
714 | 2.59k | if (!ZCG(current_persistent_script)->corrupted) { |
715 | 2.59k | op_array->fn_flags |= ZEND_ACC_IMMUTABLE; |
716 | 2.59k | ZEND_MAP_PTR_NEW(op_array->run_time_cache); |
717 | 2.59k | if (op_array->static_variables) { |
718 | 206 | ZEND_MAP_PTR_NEW(op_array->static_variables_ptr); |
719 | 206 | } |
720 | 2.59k | } |
721 | 2.59k | #ifdef HAVE_JIT |
722 | 2.59k | if (JIT_G(on) |
723 | 0 | && JIT_G(opt_level) <= ZEND_JIT_LEVEL_OPT_FUNCS |
724 | 0 | && (!ZCG(current_persistent_script) |
725 | 0 | || !ZCG(current_persistent_script)->corrupted)) { |
726 | 0 | zend_jit_op_array(op_array, ZCG(current_persistent_script) ? &ZCG(current_persistent_script)->script : NULL); |
727 | 0 | } |
728 | 2.59k | #endif |
729 | 2.59k | } else { |
730 | | /* This can happen during preloading, if a dynamic function definition is declared. */ |
731 | 0 | Z_PTR_P(zv) = old_op_array; |
732 | 0 | } |
733 | 2.59k | } |
734 | | |
735 | | static zend_op_array *zend_persist_class_method(zend_op_array *op_array, const zend_class_entry *ce) |
736 | 4.55k | { |
737 | 4.55k | zend_op_array *old_op_array; |
738 | | |
739 | 4.55k | if (op_array->type != ZEND_USER_FUNCTION) { |
740 | 1.31k | ZEND_ASSERT(op_array->type == ZEND_INTERNAL_FUNCTION); |
741 | 1.31k | if (op_array->fn_flags & ZEND_ACC_ARENA_ALLOCATED) { |
742 | 1.31k | old_op_array = zend_shared_alloc_get_xlat_entry(op_array); |
743 | 1.31k | if (old_op_array) { |
744 | 0 | return old_op_array; |
745 | 1.31k | } else { |
746 | 1.31k | op_array = zend_shared_memdup_put(op_array, sizeof(zend_internal_function)); |
747 | 1.31k | if (op_array->scope) { |
748 | 1.31k | void *persist_ptr; |
749 | | |
750 | 1.31k | if ((persist_ptr = zend_shared_alloc_get_xlat_entry(op_array->scope))) { |
751 | 0 | op_array->scope = (zend_class_entry*)persist_ptr; |
752 | 0 | } |
753 | 1.31k | if (op_array->prototype) { |
754 | 474 | if ((persist_ptr = zend_shared_alloc_get_xlat_entry(op_array->prototype))) { |
755 | 0 | op_array->prototype = (zend_function*)persist_ptr; |
756 | 0 | } |
757 | 474 | } |
758 | 1.31k | } |
759 | | // Real dynamically created internal functions like enum methods must have their own run_time_cache pointer. They're always on the same scope as their defining class. |
760 | | // However, copies - as caused by inheritance of internal methods - must retain the original run_time_cache pointer, shared with the source function. |
761 | 1.31k | if (!op_array->scope || (op_array->scope == ce && !(op_array->fn_flags & ZEND_ACC_TRAIT_CLONE))) { |
762 | 0 | if (op_array->fn_flags & ZEND_ACC_PRELOADED) { |
763 | 0 | ZEND_MAP_PTR_NEW_STATIC(op_array->run_time_cache); |
764 | 0 | } else { |
765 | 0 | ZEND_MAP_PTR_NEW(op_array->run_time_cache); |
766 | 0 | } |
767 | 0 | } |
768 | 1.31k | } |
769 | 1.31k | } |
770 | 1.31k | return op_array; |
771 | 1.31k | } |
772 | | |
773 | 3.24k | if ((op_array->fn_flags & ZEND_ACC_IMMUTABLE) |
774 | 112 | && !ZCG(current_persistent_script)->corrupted |
775 | 112 | && zend_accel_in_shm(op_array)) { |
776 | 112 | zend_shared_alloc_register_xlat_entry(op_array, op_array); |
777 | 112 | return op_array; |
778 | 112 | } |
779 | | |
780 | 3.13k | old_op_array = zend_shared_alloc_get_xlat_entry(op_array); |
781 | 3.13k | if (old_op_array) { |
782 | 134 | if (op_array->refcount && --(*op_array->refcount) == 0) { |
783 | 110 | efree(op_array->refcount); |
784 | 110 | } |
785 | | |
786 | | /* If op_array is shared, the function name refcount is still incremented for each use, |
787 | | * so we need to release it here. We remembered the original function name in xlat. */ |
788 | 134 | zend_string *old_function_name = |
789 | 134 | zend_shared_alloc_get_xlat_entry(&old_op_array->function_name); |
790 | 134 | if (old_function_name) { |
791 | 0 | zend_string_release_ex(old_function_name, 0); |
792 | 0 | } |
793 | 134 | return old_op_array; |
794 | 134 | } |
795 | | |
796 | 3.00k | op_array = zend_shared_memdup_put(op_array, sizeof(zend_op_array)); |
797 | 3.00k | zend_persist_op_array_ex(op_array, NULL); |
798 | 3.00k | if (ce->ce_flags & ZEND_ACC_IMMUTABLE) { |
799 | 3.00k | op_array->fn_flags |= ZEND_ACC_IMMUTABLE; |
800 | 3.00k | if (ce->ce_flags & ZEND_ACC_LINKED) { |
801 | 2.42k | ZEND_MAP_PTR_NEW(op_array->run_time_cache); |
802 | 2.42k | if (op_array->static_variables) { |
803 | 2 | ZEND_MAP_PTR_NEW(op_array->static_variables_ptr); |
804 | 2 | } |
805 | 2.42k | } else { |
806 | 579 | ZEND_MAP_PTR_INIT(op_array->run_time_cache, NULL); |
807 | 579 | ZEND_MAP_PTR_INIT(op_array->static_variables_ptr, NULL); |
808 | 579 | } |
809 | 3.00k | } |
810 | 3.00k | return op_array; |
811 | 3.13k | } |
812 | | |
813 | | static zend_property_info *zend_persist_property_info(zend_property_info *prop) |
814 | 1.83k | { |
815 | 1.83k | zend_class_entry *ce; |
816 | 1.83k | prop = zend_shared_memdup_put(prop, sizeof(zend_property_info)); |
817 | 1.83k | ce = zend_shared_alloc_get_xlat_entry(prop->ce); |
818 | 1.83k | if (ce) { |
819 | 1.83k | prop->ce = ce; |
820 | 1.83k | } |
821 | 1.83k | zend_accel_store_interned_string(prop->name); |
822 | 1.83k | if (prop->doc_comment) { |
823 | 38 | if (ZCG(accel_directives).save_comments) { |
824 | 38 | zend_accel_store_interned_string(prop->doc_comment); |
825 | 38 | } else { |
826 | 0 | if (!zend_shared_alloc_get_xlat_entry(prop->doc_comment)) { |
827 | 0 | zend_shared_alloc_register_xlat_entry(prop->doc_comment, prop->doc_comment); |
828 | 0 | } |
829 | 0 | zend_string_release_ex(prop->doc_comment, 0); |
830 | 0 | prop->doc_comment = NULL; |
831 | 0 | } |
832 | 38 | } |
833 | 1.83k | if (prop->attributes) { |
834 | 28 | prop->attributes = zend_persist_attributes(prop->attributes); |
835 | 28 | } |
836 | 1.83k | if (prop->prototype) { |
837 | 1.83k | const zend_property_info *new_prototype = (const zend_property_info *) zend_shared_alloc_get_xlat_entry(prop->prototype); |
838 | 1.83k | if (new_prototype) { |
839 | 1.83k | prop->prototype = new_prototype; |
840 | 1.83k | } |
841 | 1.83k | } |
842 | 1.83k | if (prop->hooks) { |
843 | 220 | prop->hooks = zend_shared_memdup_put(prop->hooks, ZEND_PROPERTY_HOOK_STRUCT_SIZE); |
844 | 660 | for (uint32_t i = 0; i < ZEND_PROPERTY_HOOK_COUNT; i++) { |
845 | 440 | if (prop->hooks[i]) { |
846 | 306 | zend_op_array *hook = zend_persist_class_method(&prop->hooks[i]->op_array, ce); |
847 | 306 | #ifdef HAVE_JIT |
848 | 306 | if (JIT_G(on) |
849 | 0 | && JIT_G(opt_level) <= ZEND_JIT_LEVEL_OPT_FUNCS |
850 | 0 | && (!ZCG(current_persistent_script) |
851 | 0 | || !ZCG(current_persistent_script)->corrupted)) { |
852 | 0 | if (hook->scope == ce && !(hook->fn_flags & ZEND_ACC_TRAIT_CLONE)) { |
853 | 0 | zend_jit_op_array(hook, ZCG(current_persistent_script) ? &ZCG(current_persistent_script)->script : NULL); |
854 | 0 | } |
855 | 0 | } |
856 | 306 | #endif |
857 | 306 | const zend_property_info *new_prop_info = (const zend_property_info *) zend_shared_alloc_get_xlat_entry(hook->prop_info); |
858 | 306 | if (new_prop_info) { |
859 | 306 | hook->prop_info = new_prop_info; |
860 | 306 | } |
861 | 306 | prop->hooks[i] = (zend_function *) hook; |
862 | 306 | } |
863 | 440 | } |
864 | 220 | } |
865 | 1.83k | zend_persist_type(&prop->type); |
866 | 1.83k | return prop; |
867 | 1.83k | } |
868 | | |
869 | | static void zend_persist_class_constant(zval *zv) |
870 | 1.48k | { |
871 | 1.48k | const zend_class_constant *orig_c = Z_PTR_P(zv); |
872 | 1.48k | zend_class_constant *c = zend_shared_alloc_get_xlat_entry(orig_c); |
873 | 1.48k | zend_class_entry *ce; |
874 | | |
875 | 1.48k | if (c) { |
876 | 10 | Z_PTR_P(zv) = c; |
877 | 10 | return; |
878 | 1.47k | } else if (((orig_c->ce->ce_flags & ZEND_ACC_IMMUTABLE) && !(Z_CONSTANT_FLAGS(orig_c->value) & CONST_OWNED)) |
879 | 1.47k | || orig_c->ce->type == ZEND_INTERNAL_CLASS) { |
880 | | /* Class constant comes from a different file in shm or internal class, keep existing pointer. */ |
881 | 740 | return; |
882 | 740 | } else if (!ZCG(current_persistent_script)->corrupted |
883 | 734 | && zend_accel_in_shm(Z_PTR_P(zv))) { |
884 | 0 | return; |
885 | 0 | } |
886 | 734 | c = Z_PTR_P(zv) = zend_shared_memdup_put(Z_PTR_P(zv), sizeof(zend_class_constant)); |
887 | 734 | zend_persist_zval(&c->value); |
888 | 734 | ce = zend_shared_alloc_get_xlat_entry(c->ce); |
889 | 734 | if (ce) { |
890 | 734 | c->ce = ce; |
891 | 734 | } |
892 | 734 | if (c->doc_comment) { |
893 | 0 | if (ZCG(accel_directives).save_comments) { |
894 | 0 | zend_string *doc_comment = zend_shared_alloc_get_xlat_entry(c->doc_comment); |
895 | 0 | if (doc_comment) { |
896 | 0 | c->doc_comment = doc_comment; |
897 | 0 | } else { |
898 | 0 | zend_accel_store_interned_string(c->doc_comment); |
899 | 0 | } |
900 | 0 | } else { |
901 | 0 | zend_string *doc_comment = zend_shared_alloc_get_xlat_entry(c->doc_comment); |
902 | 0 | if (!doc_comment) { |
903 | 0 | zend_shared_alloc_register_xlat_entry(c->doc_comment, c->doc_comment); |
904 | 0 | zend_string_release_ex(c->doc_comment, 0); |
905 | 0 | } |
906 | 0 | c->doc_comment = NULL; |
907 | 0 | } |
908 | 0 | } |
909 | 734 | if (c->attributes) { |
910 | 14 | c->attributes = zend_persist_attributes(c->attributes); |
911 | 14 | } |
912 | 734 | zend_persist_type(&c->type); |
913 | 734 | } |
914 | | |
915 | | zend_class_entry *zend_persist_class_entry(zend_class_entry *orig_ce) |
916 | 2.28k | { |
917 | 2.28k | Bucket *p; |
918 | 2.28k | zend_class_entry *ce = orig_ce; |
919 | | |
920 | 2.28k | if (ce->type == ZEND_USER_CLASS) { |
921 | | /* The same zend_class_entry may be reused by class_alias */ |
922 | 2.28k | zend_class_entry *new_ce = zend_shared_alloc_get_xlat_entry(ce); |
923 | 2.28k | if (new_ce) { |
924 | 0 | return new_ce; |
925 | 0 | } |
926 | 2.28k | ce = zend_shared_memdup_put(ce, sizeof(zend_class_entry)); |
927 | 2.28k | if (EXPECTED(!ZCG(current_persistent_script)->corrupted)) { |
928 | 2.28k | ce->ce_flags |= ZEND_ACC_IMMUTABLE; |
929 | 2.28k | if ((ce->ce_flags & ZEND_ACC_LINKED) |
930 | 2.03k | && !(ce->ce_flags & ZEND_ACC_CONSTANTS_UPDATED)) { |
931 | 50 | ZEND_MAP_PTR_NEW(ce->mutable_data); |
932 | 2.23k | } else { |
933 | 2.23k | ZEND_MAP_PTR_INIT(ce->mutable_data, NULL); |
934 | 2.23k | } |
935 | 2.28k | } else { |
936 | 0 | ce->ce_flags |= ZEND_ACC_FILE_CACHED; |
937 | 0 | } |
938 | 2.28k | ce->inheritance_cache = NULL; |
939 | | |
940 | 2.28k | if (!(ce->ce_flags & ZEND_ACC_CACHED)) { |
941 | 2.07k | if (ZSTR_HAS_CE_CACHE(ce->name)) { |
942 | 1.82k | ZSTR_SET_CE_CACHE_EX(ce->name, NULL, 0); |
943 | 1.82k | } |
944 | 2.07k | zend_accel_store_interned_string(ce->name); |
945 | 2.07k | if (!(ce->ce_flags & ZEND_ACC_ANON_CLASS) |
946 | 2.03k | && !ZCG(current_persistent_script)->corrupted) { |
947 | 2.03k | zend_accel_get_class_name_map_ptr(ce->name); |
948 | 2.03k | } |
949 | 2.07k | if (ce->parent_name && !(ce->ce_flags & ZEND_ACC_LINKED)) { |
950 | 44 | zend_accel_store_interned_string(ce->parent_name); |
951 | 44 | } |
952 | 2.07k | } |
953 | | |
954 | 2.28k | zend_hash_persist(&ce->function_table); |
955 | 13.0k | ZEND_HASH_MAP_FOREACH_BUCKET(&ce->function_table, p) { |
956 | 13.0k | ZEND_ASSERT(p->key != NULL); |
957 | 13.0k | zend_accel_store_interned_string(p->key); |
958 | 4.25k | Z_PTR(p->val) = zend_persist_class_method(Z_PTR(p->val), ce); |
959 | 4.25k | } ZEND_HASH_FOREACH_END(); |
960 | 2.28k | HT_FLAGS(&ce->function_table) &= (HASH_FLAG_UNINITIALIZED | HASH_FLAG_STATIC_KEYS); |
961 | 2.28k | if (ce->default_properties_table) { |
962 | 432 | int i; |
963 | | |
964 | 432 | ce->default_properties_table = zend_shared_memdup_free(ce->default_properties_table, sizeof(zval) * ce->default_properties_count); |
965 | 1.59k | for (i = 0; i < ce->default_properties_count; i++) { |
966 | 1.16k | zend_persist_zval(&ce->default_properties_table[i]); |
967 | 1.16k | } |
968 | 432 | } |
969 | 2.28k | if (ce->default_static_members_table) { |
970 | 138 | ce->default_static_members_table = zend_shared_memdup_free(ce->default_static_members_table, sizeof(zval) * ce->default_static_members_count); |
971 | | |
972 | | /* Persist only static properties in this class. |
973 | | * Static properties from parent classes will be handled in class_copy_ctor and are marked with IS_INDIRECT */ |
974 | 852 | for (uint32_t i = 0; i < ce->default_static_members_count; i++) { |
975 | 714 | if (Z_TYPE(ce->default_static_members_table[i]) != IS_INDIRECT) { |
976 | 706 | zend_persist_zval(&ce->default_static_members_table[i]); |
977 | 706 | } |
978 | 714 | } |
979 | 138 | if (ce->ce_flags & ZEND_ACC_IMMUTABLE) { |
980 | 138 | if (ce->ce_flags & ZEND_ACC_LINKED) { |
981 | 130 | ZEND_MAP_PTR_NEW(ce->static_members_table); |
982 | 130 | } else { |
983 | 8 | ZEND_MAP_PTR_INIT(ce->static_members_table, NULL); |
984 | 8 | } |
985 | 138 | } |
986 | 138 | } |
987 | | |
988 | 2.28k | zend_hash_persist(&ce->constants_table); |
989 | 7.54k | ZEND_HASH_MAP_FOREACH_BUCKET(&ce->constants_table, p) { |
990 | 7.54k | ZEND_ASSERT(p->key != NULL); |
991 | 7.54k | zend_accel_store_interned_string(p->key); |
992 | 1.48k | zend_persist_class_constant(&p->val); |
993 | 1.48k | } ZEND_HASH_FOREACH_END(); |
994 | 2.28k | HT_FLAGS(&ce->constants_table) &= (HASH_FLAG_UNINITIALIZED | HASH_FLAG_STATIC_KEYS); |
995 | | |
996 | 2.28k | zend_hash_persist(&ce->properties_info); |
997 | 8.73k | ZEND_HASH_MAP_FOREACH_BUCKET(&ce->properties_info, p) { |
998 | 8.73k | zend_property_info *prop = Z_PTR(p->val); |
999 | 8.73k | ZEND_ASSERT(p->key != NULL); |
1000 | 8.73k | zend_accel_store_interned_string(p->key); |
1001 | 2.08k | if (prop->ce == orig_ce) { |
1002 | 1.83k | Z_PTR(p->val) = zend_persist_property_info(prop); |
1003 | 1.83k | } else { |
1004 | 243 | prop = zend_shared_alloc_get_xlat_entry(prop); |
1005 | 243 | if (prop) { |
1006 | 201 | Z_PTR(p->val) = prop; |
1007 | 201 | } else { |
1008 | | /* This can happen if preloading is used and we inherit a property from an |
1009 | | * internal class. In that case we should keep pointing to the internal |
1010 | | * property, without any adjustments. */ |
1011 | 42 | } |
1012 | 243 | } |
1013 | 2.08k | } ZEND_HASH_FOREACH_END(); |
1014 | 2.28k | HT_FLAGS(&ce->properties_info) &= (HASH_FLAG_UNINITIALIZED | HASH_FLAG_STATIC_KEYS); |
1015 | | |
1016 | 2.28k | if (ce->properties_info_table) { |
1017 | 392 | int i; |
1018 | | |
1019 | 392 | size_t size = sizeof(zend_property_info *) * ce->default_properties_count; |
1020 | 392 | ZEND_ASSERT(ce->ce_flags & ZEND_ACC_LINKED); |
1021 | 392 | ce->properties_info_table = zend_shared_memdup( |
1022 | 392 | ce->properties_info_table, size); |
1023 | | |
1024 | 1.48k | for (i = 0; i < ce->default_properties_count; i++) { |
1025 | 1.08k | if (ce->properties_info_table[i]) { |
1026 | 1.07k | zend_property_info *prop_info = zend_shared_alloc_get_xlat_entry( |
1027 | 1.07k | ce->properties_info_table[i]); |
1028 | 1.07k | if (prop_info) { |
1029 | 1.07k | ce->properties_info_table[i] = prop_info; |
1030 | 1.07k | } |
1031 | 1.07k | } |
1032 | 1.08k | } |
1033 | 392 | } |
1034 | | |
1035 | 2.28k | if (ce->iterator_funcs_ptr) { |
1036 | 24 | ce->iterator_funcs_ptr = zend_shared_memdup(ce->iterator_funcs_ptr, sizeof(zend_class_iterator_funcs)); |
1037 | 24 | } |
1038 | 2.28k | if (ce->arrayaccess_funcs_ptr) { |
1039 | 40 | ce->arrayaccess_funcs_ptr = zend_shared_memdup(ce->arrayaccess_funcs_ptr, sizeof(zend_class_arrayaccess_funcs)); |
1040 | 40 | } |
1041 | | |
1042 | 2.28k | if (ce->ce_flags & ZEND_ACC_CACHED) { |
1043 | 217 | return ce; |
1044 | 217 | } |
1045 | | |
1046 | 2.07k | ce->ce_flags |= ZEND_ACC_CACHED; |
1047 | | |
1048 | 2.07k | if (ce->info.user.filename) { |
1049 | 2.07k | zend_accel_store_string(ce->info.user.filename); |
1050 | 2.07k | } |
1051 | | |
1052 | 2.07k | if (ce->doc_comment) { |
1053 | 2 | if (ZCG(accel_directives).save_comments) { |
1054 | 2 | zend_accel_store_interned_string(ce->doc_comment); |
1055 | 2 | } else { |
1056 | 0 | if (!zend_shared_alloc_get_xlat_entry(ce->doc_comment)) { |
1057 | 0 | zend_shared_alloc_register_xlat_entry(ce->doc_comment, ce->doc_comment); |
1058 | 0 | zend_string_release_ex(ce->doc_comment, 0); |
1059 | 0 | } |
1060 | 0 | ce->doc_comment = NULL; |
1061 | 0 | } |
1062 | 2 | } |
1063 | | |
1064 | 2.07k | if (ce->attributes) { |
1065 | 120 | ce->attributes = zend_persist_attributes(ce->attributes); |
1066 | 120 | } |
1067 | | |
1068 | 2.07k | if (ce->num_interfaces && !(ce->ce_flags & ZEND_ACC_LINKED)) { |
1069 | 161 | uint32_t i = 0; |
1070 | | |
1071 | 326 | for (i = 0; i < ce->num_interfaces; i++) { |
1072 | 165 | zend_accel_store_interned_string(ce->interface_names[i].name); |
1073 | 165 | zend_accel_store_interned_string(ce->interface_names[i].lc_name); |
1074 | 165 | } |
1075 | 161 | ce->interface_names = zend_shared_memdup_free(ce->interface_names, sizeof(zend_class_name) * ce->num_interfaces); |
1076 | 161 | } |
1077 | | |
1078 | 2.07k | if (ce->num_traits) { |
1079 | 80 | uint32_t i = 0; |
1080 | | |
1081 | 222 | for (i = 0; i < ce->num_traits; i++) { |
1082 | 142 | zend_accel_store_interned_string(ce->trait_names[i].name); |
1083 | 142 | zend_accel_store_interned_string(ce->trait_names[i].lc_name); |
1084 | 142 | } |
1085 | 80 | ce->trait_names = zend_shared_memdup_free(ce->trait_names, sizeof(zend_class_name) * ce->num_traits); |
1086 | | |
1087 | 80 | i = 0; |
1088 | 80 | if (ce->trait_aliases) { |
1089 | 92 | while (ce->trait_aliases[i]) { |
1090 | 68 | if (ce->trait_aliases[i]->trait_method.method_name) { |
1091 | 68 | zend_accel_store_interned_string(ce->trait_aliases[i]->trait_method.method_name); |
1092 | 68 | } |
1093 | 68 | if (ce->trait_aliases[i]->trait_method.class_name) { |
1094 | 54 | zend_accel_store_interned_string(ce->trait_aliases[i]->trait_method.class_name); |
1095 | 54 | } |
1096 | | |
1097 | 68 | if (ce->trait_aliases[i]->alias) { |
1098 | 56 | zend_accel_store_interned_string(ce->trait_aliases[i]->alias); |
1099 | 56 | } |
1100 | | |
1101 | 68 | ce->trait_aliases[i] = zend_shared_memdup_free(ce->trait_aliases[i], sizeof(zend_trait_alias)); |
1102 | 68 | i++; |
1103 | 68 | } |
1104 | | |
1105 | 24 | ce->trait_aliases = zend_shared_memdup_free(ce->trait_aliases, sizeof(zend_trait_alias*) * (i + 1)); |
1106 | 24 | } |
1107 | | |
1108 | 80 | if (ce->trait_precedences) { |
1109 | 6 | uint32_t j; |
1110 | | |
1111 | 6 | i = 0; |
1112 | 12 | while (ce->trait_precedences[i]) { |
1113 | 6 | zend_accel_store_interned_string(ce->trait_precedences[i]->trait_method.method_name); |
1114 | 6 | zend_accel_store_interned_string(ce->trait_precedences[i]->trait_method.class_name); |
1115 | | |
1116 | 12 | for (j = 0; j < ce->trait_precedences[i]->num_excludes; j++) { |
1117 | 6 | zend_accel_store_interned_string(ce->trait_precedences[i]->exclude_class_names[j]); |
1118 | 6 | } |
1119 | | |
1120 | 6 | ce->trait_precedences[i] = zend_shared_memdup_free(ce->trait_precedences[i], sizeof(zend_trait_precedence) + (ce->trait_precedences[i]->num_excludes - 1) * sizeof(zend_string*)); |
1121 | 6 | i++; |
1122 | 6 | } |
1123 | 6 | ce->trait_precedences = zend_shared_memdup_free( |
1124 | 6 | ce->trait_precedences, sizeof(zend_trait_precedence*) * (i + 1)); |
1125 | 6 | } |
1126 | 80 | } |
1127 | | |
1128 | 2.07k | ZEND_ASSERT(ce->backed_enum_table == NULL); |
1129 | 2.07k | } |
1130 | | |
1131 | 2.07k | return ce; |
1132 | 2.28k | } |
1133 | | |
1134 | | void zend_update_parent_ce(zend_class_entry *ce) |
1135 | 2.28k | { |
1136 | 2.28k | if (ce->ce_flags & ZEND_ACC_LINKED) { |
1137 | 2.03k | if (ce->parent) { |
1138 | 231 | int i, end; |
1139 | 231 | zend_class_entry *parent = ce->parent; |
1140 | | |
1141 | 231 | if (parent->type == ZEND_USER_CLASS) { |
1142 | 173 | zend_class_entry *p = zend_shared_alloc_get_xlat_entry(parent); |
1143 | | |
1144 | 173 | if (p) { |
1145 | 137 | ce->parent = parent = p; |
1146 | 137 | } |
1147 | 173 | } |
1148 | | |
1149 | | /* Create indirections to static properties from parent classes */ |
1150 | 231 | i = parent->default_static_members_count - 1; |
1151 | 239 | while (parent && parent->default_static_members_table) { |
1152 | 8 | end = parent->parent ? parent->parent->default_static_members_count : 0; |
1153 | 16 | for (; i >= end; i--) { |
1154 | 8 | zval *p = &ce->default_static_members_table[i]; |
1155 | | /* The static property may have been overridden by a trait |
1156 | | * during inheritance. In that case, the property default |
1157 | | * value is replaced by zend_declare_typed_property() at the |
1158 | | * property index of the parent property. Make sure we only |
1159 | | * point to the parent property value if the child value was |
1160 | | * already indirect. */ |
1161 | 8 | if (Z_TYPE_P(p) == IS_INDIRECT) { |
1162 | 8 | ZVAL_INDIRECT(p, &parent->default_static_members_table[i]); |
1163 | 8 | } |
1164 | 8 | } |
1165 | | |
1166 | 8 | parent = parent->parent; |
1167 | 8 | } |
1168 | 231 | } |
1169 | | |
1170 | 2.03k | if (ce->num_interfaces) { |
1171 | 209 | uint32_t i = 0; |
1172 | | |
1173 | 209 | ce->interfaces = zend_shared_memdup_free(ce->interfaces, sizeof(zend_class_entry*) * ce->num_interfaces); |
1174 | 446 | for (i = 0; i < ce->num_interfaces; i++) { |
1175 | 237 | if (ce->interfaces[i]->type == ZEND_USER_CLASS) { |
1176 | 56 | zend_class_entry *tmp = zend_shared_alloc_get_xlat_entry(ce->interfaces[i]); |
1177 | 56 | if (tmp != NULL) { |
1178 | 0 | ce->interfaces[i] = tmp; |
1179 | 0 | } |
1180 | 56 | } |
1181 | 237 | } |
1182 | 209 | } |
1183 | | |
1184 | 2.03k | if (ce->iterator_funcs_ptr) { |
1185 | 24 | memset(ce->iterator_funcs_ptr, 0, sizeof(zend_class_iterator_funcs)); |
1186 | 24 | if (zend_class_implements_interface(ce, zend_ce_aggregate)) { |
1187 | 6 | ce->iterator_funcs_ptr->zf_new_iterator = zend_hash_str_find_ptr(&ce->function_table, "getiterator", sizeof("getiterator") - 1); |
1188 | 6 | } |
1189 | 24 | if (zend_class_implements_interface(ce, zend_ce_iterator)) { |
1190 | 18 | ce->iterator_funcs_ptr->zf_rewind = zend_hash_str_find_ptr(&ce->function_table, "rewind", sizeof("rewind") - 1); |
1191 | 18 | ce->iterator_funcs_ptr->zf_valid = zend_hash_str_find_ptr(&ce->function_table, "valid", sizeof("valid") - 1); |
1192 | 18 | ce->iterator_funcs_ptr->zf_key = zend_hash_find_ptr(&ce->function_table, ZSTR_KNOWN(ZEND_STR_KEY)); |
1193 | 18 | ce->iterator_funcs_ptr->zf_current = zend_hash_str_find_ptr(&ce->function_table, "current", sizeof("current") - 1); |
1194 | 18 | ce->iterator_funcs_ptr->zf_next = zend_hash_str_find_ptr(&ce->function_table, "next", sizeof("next") - 1); |
1195 | 18 | } |
1196 | 24 | } |
1197 | | |
1198 | 2.03k | if (ce->arrayaccess_funcs_ptr) { |
1199 | 40 | ZEND_ASSERT(zend_class_implements_interface(ce, zend_ce_arrayaccess)); |
1200 | 40 | ce->arrayaccess_funcs_ptr->zf_offsetget = zend_hash_str_find_ptr(&ce->function_table, "offsetget", sizeof("offsetget") - 1); |
1201 | 40 | ce->arrayaccess_funcs_ptr->zf_offsetexists = zend_hash_str_find_ptr(&ce->function_table, "offsetexists", sizeof("offsetexists") - 1); |
1202 | 40 | ce->arrayaccess_funcs_ptr->zf_offsetset = zend_hash_str_find_ptr(&ce->function_table, "offsetset", sizeof("offsetset") - 1); |
1203 | 40 | ce->arrayaccess_funcs_ptr->zf_offsetunset = zend_hash_str_find_ptr(&ce->function_table, "offsetunset", sizeof("offsetunset") - 1); |
1204 | 40 | } |
1205 | 2.03k | } |
1206 | | |
1207 | | /* update methods */ |
1208 | 2.28k | if (ce->constructor) { |
1209 | 258 | zend_function *tmp = zend_shared_alloc_get_xlat_entry(ce->constructor); |
1210 | 258 | if (tmp != NULL) { |
1211 | 206 | ce->constructor = tmp; |
1212 | 206 | } |
1213 | 258 | } |
1214 | 2.28k | if (ce->destructor) { |
1215 | 270 | zend_function *tmp = zend_shared_alloc_get_xlat_entry(ce->destructor); |
1216 | 270 | if (tmp != NULL) { |
1217 | 270 | ce->destructor = tmp; |
1218 | 270 | } |
1219 | 270 | } |
1220 | 2.28k | if (ce->clone) { |
1221 | 10 | zend_function *tmp = zend_shared_alloc_get_xlat_entry(ce->clone); |
1222 | 10 | if (tmp != NULL) { |
1223 | 10 | ce->clone = tmp; |
1224 | 10 | } |
1225 | 10 | } |
1226 | 2.28k | if (ce->__get) { |
1227 | 48 | zend_function *tmp = zend_shared_alloc_get_xlat_entry(ce->__get); |
1228 | 48 | if (tmp != NULL) { |
1229 | 48 | ce->__get = tmp; |
1230 | 48 | } |
1231 | 48 | } |
1232 | 2.28k | if (ce->__set) { |
1233 | 28 | zend_function *tmp = zend_shared_alloc_get_xlat_entry(ce->__set); |
1234 | 28 | if (tmp != NULL) { |
1235 | 28 | ce->__set = tmp; |
1236 | 28 | } |
1237 | 28 | } |
1238 | 2.28k | if (ce->__call) { |
1239 | 72 | zend_function *tmp = zend_shared_alloc_get_xlat_entry(ce->__call); |
1240 | 72 | if (tmp != NULL) { |
1241 | 72 | ce->__call = tmp; |
1242 | 72 | } |
1243 | 72 | } |
1244 | 2.28k | if (ce->__serialize) { |
1245 | 66 | zend_function *tmp = zend_shared_alloc_get_xlat_entry(ce->__serialize); |
1246 | 66 | if (tmp != NULL) { |
1247 | 8 | ce->__serialize = tmp; |
1248 | 8 | } |
1249 | 66 | } |
1250 | 2.28k | if (ce->__unserialize) { |
1251 | 68 | zend_function *tmp = zend_shared_alloc_get_xlat_entry(ce->__unserialize); |
1252 | 68 | if (tmp != NULL) { |
1253 | 10 | ce->__unserialize = tmp; |
1254 | 10 | } |
1255 | 68 | } |
1256 | 2.28k | if (ce->__isset) { |
1257 | 10 | zend_function *tmp = zend_shared_alloc_get_xlat_entry(ce->__isset); |
1258 | 10 | if (tmp != NULL) { |
1259 | 10 | ce->__isset = tmp; |
1260 | 10 | } |
1261 | 10 | } |
1262 | 2.28k | if (ce->__unset) { |
1263 | 12 | zend_function *tmp = zend_shared_alloc_get_xlat_entry(ce->__unset); |
1264 | 12 | if (tmp != NULL) { |
1265 | 12 | ce->__unset = tmp; |
1266 | 12 | } |
1267 | 12 | } |
1268 | 2.28k | if (ce->__tostring) { |
1269 | 76 | zend_function *tmp = zend_shared_alloc_get_xlat_entry(ce->__tostring); |
1270 | 76 | if (tmp != NULL) { |
1271 | 76 | ce->__tostring = tmp; |
1272 | 76 | } |
1273 | 76 | } |
1274 | 2.28k | if (ce->__callstatic) { |
1275 | 32 | zend_function *tmp = zend_shared_alloc_get_xlat_entry(ce->__callstatic); |
1276 | 32 | if (tmp != NULL) { |
1277 | 32 | ce->__callstatic = tmp; |
1278 | 32 | } |
1279 | 32 | } |
1280 | 2.28k | if (ce->__debugInfo) { |
1281 | 10 | zend_function *tmp = zend_shared_alloc_get_xlat_entry(ce->__debugInfo); |
1282 | 10 | if (tmp != NULL) { |
1283 | 10 | ce->__debugInfo = tmp; |
1284 | 10 | } |
1285 | 10 | } |
1286 | 2.28k | } |
1287 | | |
1288 | | #ifdef HAVE_JIT |
1289 | | static void zend_accel_persist_jit_op_array(zend_op_array *op_array, const zend_class_entry *ce) |
1290 | 0 | { |
1291 | 0 | if (op_array->type == ZEND_USER_FUNCTION) { |
1292 | 0 | if (op_array->scope == ce |
1293 | 0 | && !(op_array->fn_flags & ZEND_ACC_ABSTRACT) |
1294 | 0 | && !(op_array->fn_flags & ZEND_ACC_TRAIT_CLONE)) { |
1295 | 0 | zend_jit_op_array(op_array, ZCG(current_persistent_script) ? &ZCG(current_persistent_script)->script : NULL); |
1296 | 0 | for (uint32_t i = 0; i < op_array->num_dynamic_func_defs; i++) { |
1297 | 0 | zend_jit_op_array(op_array->dynamic_func_defs[i], ZCG(current_persistent_script) ? &ZCG(current_persistent_script)->script : NULL); |
1298 | 0 | } |
1299 | 0 | } |
1300 | 0 | } |
1301 | 0 | } |
1302 | | |
1303 | | static void zend_accel_persist_link_func_info(zend_op_array *op_array, const zend_class_entry *ce) |
1304 | 0 | { |
1305 | 0 | if (op_array->type == ZEND_USER_FUNCTION |
1306 | 0 | && !(op_array->fn_flags & ZEND_ACC_ABSTRACT)) { |
1307 | 0 | if ((op_array->scope != ce |
1308 | 0 | || (op_array->fn_flags & ZEND_ACC_TRAIT_CLONE)) |
1309 | 0 | && (JIT_G(trigger) == ZEND_JIT_ON_FIRST_EXEC |
1310 | 0 | || JIT_G(trigger) == ZEND_JIT_ON_PROF_REQUEST |
1311 | 0 | || JIT_G(trigger) == ZEND_JIT_ON_HOT_COUNTERS |
1312 | 0 | || JIT_G(trigger) == ZEND_JIT_ON_HOT_TRACE)) { |
1313 | 0 | void *jit_extension = zend_shared_alloc_get_xlat_entry(op_array->opcodes); |
1314 | |
|
1315 | 0 | if (jit_extension) { |
1316 | 0 | ZEND_SET_FUNC_INFO(op_array, jit_extension); |
1317 | 0 | } |
1318 | 0 | } |
1319 | 0 | } |
1320 | 0 | } |
1321 | | #endif |
1322 | | |
1323 | | static void zend_accel_persist_class_table(HashTable *class_table) |
1324 | 12.1k | { |
1325 | 12.1k | Bucket *p; |
1326 | 12.1k | zend_class_entry *ce; |
1327 | 12.1k | #ifdef HAVE_JIT |
1328 | 12.1k | bool orig_jit_on = JIT_G(on); |
1329 | | |
1330 | 12.1k | JIT_G(on) = 0; |
1331 | 12.1k | #endif |
1332 | 12.1k | zend_hash_persist(class_table); |
1333 | 28.5k | ZEND_HASH_MAP_FOREACH_BUCKET(class_table, p) { |
1334 | 28.5k | ZEND_ASSERT(p->key != NULL); |
1335 | 28.5k | zend_accel_store_interned_string(p->key); |
1336 | 2.07k | Z_CE(p->val) = zend_persist_class_entry(Z_CE(p->val)); |
1337 | 2.07k | } ZEND_HASH_FOREACH_END(); |
1338 | 28.5k | ZEND_HASH_MAP_FOREACH_BUCKET(class_table, p) { |
1339 | 28.5k | if (EXPECTED(Z_TYPE(p->val) != IS_ALIAS_PTR)) { |
1340 | 2.07k | ce = Z_PTR(p->val); |
1341 | 2.07k | zend_update_parent_ce(ce); |
1342 | 2.07k | } |
1343 | 28.5k | } ZEND_HASH_FOREACH_END(); |
1344 | 12.1k | #ifdef HAVE_JIT |
1345 | 12.1k | JIT_G(on) = orig_jit_on; |
1346 | 12.1k | if (JIT_G(on) && JIT_G(opt_level) <= ZEND_JIT_LEVEL_OPT_FUNCS && |
1347 | 0 | !ZCG(current_persistent_script)->corrupted) { |
1348 | 0 | zend_op_array *op_array; |
1349 | 0 | zend_property_info *prop; |
1350 | |
|
1351 | 0 | ZEND_HASH_MAP_FOREACH_BUCKET(class_table, p) { |
1352 | 0 | if (EXPECTED(Z_TYPE(p->val) != IS_ALIAS_PTR)) { |
1353 | 0 | ce = Z_PTR(p->val); |
1354 | 0 | ZEND_HASH_MAP_FOREACH_PTR(&ce->function_table, op_array) { |
1355 | 0 | zend_accel_persist_jit_op_array(op_array, ce); |
1356 | 0 | } ZEND_HASH_FOREACH_END(); |
1357 | |
|
1358 | 0 | if (ce->num_hooked_props > 0) { |
1359 | 0 | ZEND_HASH_MAP_FOREACH_PTR(&ce->properties_info, prop) { |
1360 | 0 | if (prop->hooks) { |
1361 | 0 | for (uint32_t i = 0; i < ZEND_PROPERTY_HOOK_COUNT; i++) { |
1362 | 0 | if (prop->hooks[i]) { |
1363 | 0 | op_array = &prop->hooks[i]->op_array; |
1364 | 0 | zend_accel_persist_jit_op_array(op_array, ce); |
1365 | 0 | } |
1366 | 0 | } |
1367 | 0 | } |
1368 | 0 | } ZEND_HASH_FOREACH_END(); |
1369 | 0 | } |
1370 | 0 | } |
1371 | 0 | } ZEND_HASH_FOREACH_END(); |
1372 | 0 | ZEND_HASH_MAP_FOREACH_BUCKET(class_table, p) { |
1373 | 0 | if (EXPECTED(Z_TYPE(p->val) != IS_ALIAS_PTR)) { |
1374 | 0 | ce = Z_PTR(p->val); |
1375 | 0 | ZEND_HASH_MAP_FOREACH_PTR(&ce->function_table, op_array) { |
1376 | 0 | zend_accel_persist_link_func_info(op_array, ce); |
1377 | 0 | } ZEND_HASH_FOREACH_END(); |
1378 | |
|
1379 | 0 | if (ce->num_hooked_props > 0) { |
1380 | 0 | ZEND_HASH_MAP_FOREACH_PTR(&ce->properties_info, prop) { |
1381 | 0 | if (prop->hooks) { |
1382 | 0 | for (uint32_t i = 0; i < ZEND_PROPERTY_HOOK_COUNT; i++) { |
1383 | 0 | if (prop->hooks[i]) { |
1384 | 0 | op_array = &prop->hooks[i]->op_array; |
1385 | 0 | zend_accel_persist_link_func_info(op_array, ce); |
1386 | 0 | } |
1387 | 0 | } |
1388 | 0 | } |
1389 | 0 | } ZEND_HASH_FOREACH_END(); |
1390 | 0 | } |
1391 | 0 | } |
1392 | 0 | } ZEND_HASH_FOREACH_END(); |
1393 | 0 | } |
1394 | 12.1k | #endif |
1395 | 12.1k | } |
1396 | | |
1397 | 12.4k | zend_error_info **zend_persist_warnings(uint32_t num_warnings, zend_error_info **warnings) { |
1398 | 12.4k | if (warnings) { |
1399 | 2 | warnings = zend_shared_memdup(warnings, num_warnings * sizeof(zend_error_info *)); |
1400 | 4 | for (uint32_t i = 0; i < num_warnings; i++) { |
1401 | 2 | zend_accel_store_string(warnings[i]->filename); |
1402 | 2 | zend_accel_store_string(warnings[i]->message); |
1403 | 2 | warnings[i] = zend_shared_memdup(warnings[i], sizeof(zend_error_info)); |
1404 | 2 | } |
1405 | 2 | } |
1406 | 12.4k | return warnings; |
1407 | 12.4k | } |
1408 | | |
1409 | | static zend_early_binding *zend_persist_early_bindings( |
1410 | 12.1k | uint32_t num_early_bindings, zend_early_binding *early_bindings) { |
1411 | 12.1k | if (early_bindings) { |
1412 | 38 | early_bindings = zend_shared_memdup_free( |
1413 | 38 | early_bindings, num_early_bindings * sizeof(zend_early_binding)); |
1414 | 802 | for (uint32_t i = 0; i < num_early_bindings; i++) { |
1415 | 764 | zend_accel_store_interned_string(early_bindings[i].lcname); |
1416 | 764 | zend_accel_store_interned_string(early_bindings[i].rtd_key); |
1417 | 764 | zend_accel_store_interned_string(early_bindings[i].lc_parent_name); |
1418 | 764 | } |
1419 | 38 | } |
1420 | 12.1k | return early_bindings; |
1421 | 12.1k | } |
1422 | | |
1423 | | zend_persistent_script *zend_accel_script_persist(zend_persistent_script *script, bool for_shm) |
1424 | 12.1k | { |
1425 | 12.1k | Bucket *p; |
1426 | | |
1427 | 12.1k | script->mem = ZCG(mem); |
1428 | | |
1429 | 12.1k | ZEND_ASSERT(((uintptr_t)ZCG(mem) & 0x7) == 0); /* should be 8 byte aligned */ |
1430 | | |
1431 | 12.1k | script = zend_shared_memdup_free(script, sizeof(zend_persistent_script)); |
1432 | 12.1k | script->corrupted = false; |
1433 | 12.1k | ZCG(current_persistent_script) = script; |
1434 | | |
1435 | 12.1k | if (!for_shm) { |
1436 | | /* script is not going to be saved in SHM */ |
1437 | 0 | script->corrupted = true; |
1438 | 0 | } |
1439 | | |
1440 | 12.1k | zend_accel_store_interned_string(script->script.filename); |
1441 | | |
1442 | 12.1k | #if defined(__AVX__) || defined(__SSE2__) |
1443 | | /* Align to 64-byte boundary */ |
1444 | 12.1k | ZCG(mem) = (void*)(((uintptr_t)ZCG(mem) + 63L) & ~63L); |
1445 | | #else |
1446 | | ZEND_ASSERT(((uintptr_t)ZCG(mem) & 0x7) == 0); /* should be 8 byte aligned */ |
1447 | | #endif |
1448 | | |
1449 | 12.1k | #ifdef HAVE_JIT |
1450 | 12.1k | if (JIT_G(on) && for_shm) { |
1451 | 0 | zend_jit_unprotect(); |
1452 | 0 | } |
1453 | 12.1k | #endif |
1454 | | |
1455 | 12.1k | zend_map_ptr_extend(ZCSG(map_ptr_last)); |
1456 | | |
1457 | 12.1k | zend_accel_persist_class_table(&script->script.class_table); |
1458 | 12.1k | zend_hash_persist(&script->script.function_table); |
1459 | 27.4k | ZEND_HASH_MAP_FOREACH_BUCKET(&script->script.function_table, p) { |
1460 | 27.4k | ZEND_ASSERT(p->key != NULL); |
1461 | 27.4k | zend_accel_store_interned_string(p->key); |
1462 | 1.55k | zend_persist_op_array(&p->val); |
1463 | 1.55k | } ZEND_HASH_FOREACH_END(); |
1464 | 12.1k | zend_persist_op_array_ex(&script->script.main_op_array, script); |
1465 | 12.1k | if (!script->corrupted) { |
1466 | 12.1k | ZEND_MAP_PTR_INIT(script->script.main_op_array.run_time_cache, NULL); |
1467 | 12.1k | if (script->script.main_op_array.static_variables) { |
1468 | 0 | ZEND_MAP_PTR_NEW(script->script.main_op_array.static_variables_ptr); |
1469 | 0 | } |
1470 | 12.1k | #ifdef HAVE_JIT |
1471 | 12.1k | if (JIT_G(on) && JIT_G(opt_level) <= ZEND_JIT_LEVEL_OPT_FUNCS) { |
1472 | 0 | zend_jit_op_array(&script->script.main_op_array, &script->script); |
1473 | 0 | } |
1474 | 12.1k | #endif |
1475 | 12.1k | } |
1476 | 12.1k | script->warnings = zend_persist_warnings(script->num_warnings, script->warnings); |
1477 | 12.1k | script->early_bindings = zend_persist_early_bindings( |
1478 | 12.1k | script->num_early_bindings, script->early_bindings); |
1479 | | |
1480 | 12.1k | if (for_shm) { |
1481 | 12.1k | ZCSG(map_ptr_last) = CG(map_ptr_last); |
1482 | 12.1k | ZCSG(map_ptr_static_last) = zend_map_ptr_static_last; |
1483 | 12.1k | } |
1484 | | |
1485 | 12.1k | #ifdef HAVE_JIT |
1486 | 12.1k | if (JIT_G(on) && for_shm) { |
1487 | 0 | if (JIT_G(opt_level) >= ZEND_JIT_LEVEL_OPT_SCRIPT) { |
1488 | 0 | zend_jit_script(&script->script); |
1489 | 0 | } |
1490 | 0 | zend_jit_protect(); |
1491 | 0 | } |
1492 | 12.1k | #endif |
1493 | | |
1494 | 12.1k | script->corrupted = false; |
1495 | 12.1k | ZCG(current_persistent_script) = NULL; |
1496 | | |
1497 | 12.1k | return script; |
1498 | 12.1k | } |