1 | dnl {{{ === program start ======================================== |
---|
2 | divert(0) |
---|
3 | #include <string.h> |
---|
4 | #include <stdio.h> |
---|
5 | |
---|
6 | #include "php.h" |
---|
7 | #include "zend_extensions.h" |
---|
8 | #include "zend_compile.h" |
---|
9 | #include "zend_API.h" |
---|
10 | #include "zend_ini.h" |
---|
11 | |
---|
12 | /* export: #include "xcache.h" :export */ |
---|
13 | #include "xcache.h" |
---|
14 | /* export: #include "mod_cacher/xc_cache.h" :export */ |
---|
15 | #include "mod_cacher/xc_cache.h" |
---|
16 | #include "util/xc_align.h" |
---|
17 | #include "xcache/xc_const_string.h" |
---|
18 | #include "xcache/xc_utils.h" |
---|
19 | #include "xc_processor.h" |
---|
20 | #include "xcache_globals.h" |
---|
21 | |
---|
22 | #if defined(HARDENING_PATCH_HASH_PROTECT) && HARDENING_PATCH_HASH_PROTECT |
---|
23 | extern unsigned int zend_hash_canary; |
---|
24 | #endif |
---|
25 | |
---|
26 | define(`SIZEOF_zend_uint', `sizeof(zend_uint)') |
---|
27 | define(`COUNTOF_zend_uint', `1') |
---|
28 | define(`SIZEOF_int', `sizeof(int)') |
---|
29 | define(`COUNTOF_int', `1') |
---|
30 | define(`SIZEOF_zend_function', `sizeof(zend_function)') |
---|
31 | define(`COUNTOF_zend_function', `1') |
---|
32 | define(`SIZEOF_zval_ptr', `sizeof(zval_ptr)') |
---|
33 | define(`COUNTOF_zval_ptr', `1') |
---|
34 | define(`SIZEOF_zval_ptr_nullable', `sizeof(zval_ptr_nullable)') |
---|
35 | define(`COUNTOF_zval_ptr_nullable', `1') |
---|
36 | define(`SIZEOF_zend_trait_alias_ptr', `sizeof(zend_trait_alias)') |
---|
37 | define(`COUNTOF_zend_trait_alias_ptr', `1') |
---|
38 | define(`SIZEOF_zend_trait_precedence_ptr', `sizeof(zend_trait_precedence)') |
---|
39 | define(`COUNTOF_zend_trait_precedence_ptr', `1') |
---|
40 | define(`SIZEOF_xc_entry_name_t', `sizeof(xc_entry_name_t)') |
---|
41 | define(`COUNTOF_xc_entry_name_t', `1') |
---|
42 | define(`SIZEOF_xc_ztstring', `sizeof(xc_ztstring)') |
---|
43 | define(`COUNTOF_xc_ztstring', `1') |
---|
44 | |
---|
45 | ifdef(`XCACHE_ENABLE_TEST', ` |
---|
46 | #undef NDEBUG |
---|
47 | #include <assert.h> |
---|
48 | m4_errprint(`AUTOCHECK INFO: runtime autocheck Enabled (debug build)') |
---|
49 | ', ` |
---|
50 | m4_errprint(`AUTOCHECK INFO: runtime autocheck Disabled (optimized build)') |
---|
51 | ') |
---|
52 | ifdef(`DEBUG_SIZE', `static int xc_totalsize = 0;') |
---|
53 | |
---|
54 | sinclude(builddir`/structinfo.m4') |
---|
55 | |
---|
56 | #ifndef NDEBUG |
---|
57 | # undef inline |
---|
58 | #define inline |
---|
59 | #endif |
---|
60 | |
---|
61 | typedef zval *zval_ptr; |
---|
62 | typedef zval *zval_ptr_nullable; |
---|
63 | typedef char *xc_ztstring; |
---|
64 | #ifdef ZEND_ENGINE_2_4 |
---|
65 | typedef zend_trait_alias *zend_trait_alias_ptr; |
---|
66 | typedef zend_trait_precedence *zend_trait_precedence_ptr; |
---|
67 | #endif |
---|
68 | #ifdef ZEND_ENGINE_2_3 |
---|
69 | typedef int last_brk_cont_t; |
---|
70 | #else |
---|
71 | typedef zend_uint last_brk_cont_t; |
---|
72 | #endif |
---|
73 | |
---|
74 | typedef zend_uchar xc_zval_type_t; |
---|
75 | typedef int xc_op_type; |
---|
76 | typedef zend_uchar xc_opcode; |
---|
77 | #ifdef IS_UNICODE |
---|
78 | typedef UChar zstr_uchar; |
---|
79 | #endif |
---|
80 | typedef char zstr_char; |
---|
81 | |
---|
82 | #define MAX_DUP_STR_LEN 256 |
---|
83 | dnl }}} |
---|
84 | /* export: typedef struct _xc_processor_t xc_processor_t; :export {{{ */ |
---|
85 | struct _xc_processor_t { |
---|
86 | char *p; |
---|
87 | zend_uint size; |
---|
88 | HashTable strings; |
---|
89 | HashTable zvalptrs; |
---|
90 | zend_bool reference; /* enable if to deal with reference */ |
---|
91 | zend_bool have_references; |
---|
92 | const xc_entry_php_t *entry_php_src; |
---|
93 | const xc_entry_php_t *entry_php_dst; |
---|
94 | const xc_entry_data_php_t *php_src; |
---|
95 | const xc_entry_data_php_t *php_dst; |
---|
96 | xc_shm_t *shm; |
---|
97 | xc_mem_t *mem; |
---|
98 | const zend_class_entry *cache_ce; |
---|
99 | zend_uint cache_class_index; |
---|
100 | |
---|
101 | const zend_op_array *active_op_array_src; |
---|
102 | zend_op_array *active_op_array_dst; |
---|
103 | const zend_class_entry *active_class_entry_src; |
---|
104 | zend_class_entry *active_class_entry_dst; |
---|
105 | zend_uint active_class_index; |
---|
106 | zend_uint active_op_array_index; |
---|
107 | const xc_op_array_info_t *active_op_array_infos_src; |
---|
108 | |
---|
109 | zend_bool readonly_protection; /* wheather it's present */ |
---|
110 | IFAUTOCHECK(xc_stack_t allocsizes;) |
---|
111 | }; |
---|
112 | /* }}} */ |
---|
113 | /* export: typedef struct _xc_dasm_t { const zend_op_array *active_op_array_src; } xc_dasm_t; :export {{{ */ |
---|
114 | /* }}} */ |
---|
115 | /* {{{ memsetptr */ |
---|
116 | IFAUTOCHECK(`dnl |
---|
117 | static void *memsetptr(void *mem, void *content, size_t n) |
---|
118 | { |
---|
119 | void **p = (void **) mem; |
---|
120 | void **end = (void **) ((char *) mem + n); |
---|
121 | while (p < end - sizeof(content)) { |
---|
122 | *p = content; |
---|
123 | p += sizeof(content); |
---|
124 | } |
---|
125 | if (p < end) { |
---|
126 | memset(p, -1, end - p); |
---|
127 | } |
---|
128 | return mem; |
---|
129 | } |
---|
130 | ') |
---|
131 | /* }}} */ |
---|
132 | #ifdef HAVE_XCACHE_DPRINT |
---|
133 | static void xc_dprint_indent(int indent) /* {{{ */ |
---|
134 | { |
---|
135 | int i; |
---|
136 | for (i = 0; i < indent; i ++) { |
---|
137 | fprintf(stderr, " "); |
---|
138 | } |
---|
139 | } |
---|
140 | /* }}} */ |
---|
141 | static void xc_dprint_str_len(const char *str, int len) /* {{{ */ |
---|
142 | { |
---|
143 | const unsigned char *p = (const unsigned char *) str; |
---|
144 | int i; |
---|
145 | for (i = 0; i < len; i ++) { |
---|
146 | if (p[i] < 32 || p[i] == 127) { |
---|
147 | fprintf(stderr, "\\%03o", (unsigned int) p[i]); |
---|
148 | } |
---|
149 | else { |
---|
150 | fputc(p[i], stderr); |
---|
151 | } |
---|
152 | } |
---|
153 | } |
---|
154 | /* }}} */ |
---|
155 | #endif |
---|
156 | /* {{{ xc_zstrlen_char */ |
---|
157 | static inline int xc_zstrlen_char(const_zstr s) |
---|
158 | { |
---|
159 | return strlen(ZSTR_S(s)); |
---|
160 | } |
---|
161 | /* }}} */ |
---|
162 | #ifdef IS_UNICODE |
---|
163 | /* {{{ xc_zstrlen_uchar */ |
---|
164 | static inline int xc_zstrlen_uchar(zstr s) |
---|
165 | { |
---|
166 | return u_strlen(ZSTR_U(s)); |
---|
167 | } |
---|
168 | /* }}} */ |
---|
169 | /* {{{ xc_zstrlen */ |
---|
170 | static inline int xc_zstrlen(int type, const_zstr s) |
---|
171 | { |
---|
172 | return type == IS_UNICODE ? xc_zstrlen_uchar(s) : xc_zstrlen_char(s); |
---|
173 | } |
---|
174 | /* }}} */ |
---|
175 | #else |
---|
176 | /* {{{ xc_zstrlen */ |
---|
177 | #define xc_zstrlen(dummy, s) xc_zstrlen_char(s) |
---|
178 | /* }}} */ |
---|
179 | #endif |
---|
180 | /* {{{ xc_calc_string_n */ |
---|
181 | REDEF(`PROCESSOR_TYPE', `calc') |
---|
182 | #undef C_RELAYLINE |
---|
183 | #define C_RELAYLINE |
---|
184 | IFAUTOCHECK(` |
---|
185 | #undef C_RELAYLINE |
---|
186 | #define C_RELAYLINE , __LINE__ |
---|
187 | ') |
---|
188 | static inline void xc_calc_string_n(xc_processor_t *processor, zend_uchar type, const_zstr str, long size IFAUTOCHECK(`, int relayline')) { |
---|
189 | pushdef(`__LINE__', `relayline') |
---|
190 | int realsize = UNISW(size, (type == IS_UNICODE) ? UBYTES(size) : size); |
---|
191 | long dummy = 1; |
---|
192 | |
---|
193 | if (realsize > MAX_DUP_STR_LEN) { |
---|
194 | ALLOC(, char, realsize) |
---|
195 | } |
---|
196 | else if (zend_u_hash_add(&processor->strings, type, str, size, (void *) &dummy, sizeof(dummy), NULL) == SUCCESS) { |
---|
197 | /* new string */ |
---|
198 | ALLOC(, char, realsize) |
---|
199 | } |
---|
200 | IFAUTOCHECK(` |
---|
201 | else { |
---|
202 | dnl fprintf(stderr, "dupstr %s\n", ZSTR_S(str)); |
---|
203 | } |
---|
204 | ') |
---|
205 | popdef(`__LINE__') |
---|
206 | } |
---|
207 | /* }}} */ |
---|
208 | /* {{{ xc_store_string_n */ |
---|
209 | REDEF(`PROCESSOR_TYPE', `store') |
---|
210 | static inline zstr xc_store_string_n(xc_processor_t *processor, zend_uchar type, const_zstr str, long size IFAUTOCHECK(`, int relayline')) { |
---|
211 | pushdef(`__LINE__', `relayline') |
---|
212 | int realsize = UNISW(size, (type == IS_UNICODE) ? UBYTES(size) : size); |
---|
213 | zstr ret, *pret; |
---|
214 | |
---|
215 | if (realsize > MAX_DUP_STR_LEN) { |
---|
216 | ALLOC(ZSTR_V(ret), char, realsize) |
---|
217 | memcpy(ZSTR_V(ret), ZSTR_V(str), realsize); |
---|
218 | return ret; |
---|
219 | } |
---|
220 | |
---|
221 | if (zend_u_hash_find(&processor->strings, type, str, size, (void **) &pret) == SUCCESS) { |
---|
222 | return *pret; |
---|
223 | } |
---|
224 | |
---|
225 | /* new string */ |
---|
226 | ALLOC(ZSTR_V(ret), char, realsize) |
---|
227 | memcpy(ZSTR_V(ret), ZSTR_V(str), realsize); |
---|
228 | zend_u_hash_add(&processor->strings, type, str, size, (void *) &ret, sizeof(zstr), NULL); |
---|
229 | return ret; |
---|
230 | |
---|
231 | popdef(`__LINE__') |
---|
232 | } |
---|
233 | /* }}} */ |
---|
234 | /* {{{ xc_get_class_num |
---|
235 | * return class_index + 1 |
---|
236 | */ |
---|
237 | static zend_ulong xc_get_class_num(xc_processor_t *processor, zend_class_entry *ce) { |
---|
238 | zend_ulong i; |
---|
239 | const xc_entry_data_php_t *php = processor->php_src; |
---|
240 | zend_class_entry *ceptr; |
---|
241 | |
---|
242 | if (processor->cache_ce == ce) { |
---|
243 | return processor->cache_class_index + 1; |
---|
244 | } |
---|
245 | for (i = 0; i < php->classinfo_cnt; i ++) { |
---|
246 | ceptr = CestToCePtr(php->classinfos[i].cest); |
---|
247 | if (ZCEP_REFCOUNT_PTR(ceptr) == ZCEP_REFCOUNT_PTR(ce)) { |
---|
248 | processor->cache_ce = ceptr; |
---|
249 | processor->cache_class_index = i; |
---|
250 | return i + 1; |
---|
251 | } |
---|
252 | } |
---|
253 | assert(0); |
---|
254 | return (zend_ulong) -1; |
---|
255 | } |
---|
256 | define(`xc_get_class_num', `xc_get_class_numNOTDEFINED') |
---|
257 | /* }}} */ |
---|
258 | /* {{{ xc_get_class */ |
---|
259 | #ifdef ZEND_ENGINE_2 |
---|
260 | static zend_class_entry *xc_get_class(xc_processor_t *processor, zend_ulong class_num) { |
---|
261 | /* must be parent or currrent class */ |
---|
262 | assert(class_num <= processor->active_class_index + 1); |
---|
263 | return CestToCePtr(processor->php_dst->classinfos[class_num - 1].cest); |
---|
264 | } |
---|
265 | #endif |
---|
266 | define(`xc_get_class', `xc_get_classNOTDEFINED') |
---|
267 | /* }}} */ |
---|
268 | #ifdef ZEND_ENGINE_2 |
---|
269 | /* fix method on store */ |
---|
270 | static void xc_fix_method(xc_processor_t *processor, zend_op_array *dst TSRMLS_DC) /* {{{ */ |
---|
271 | { |
---|
272 | zend_function *zf = (zend_function *) dst; |
---|
273 | zend_class_entry *ce = processor->active_class_entry_dst; |
---|
274 | const zend_class_entry *srcce = processor->active_class_entry_src; |
---|
275 | |
---|
276 | /* Fixing up the default functions for objects here since |
---|
277 | * we need to compare with the newly allocated functions |
---|
278 | * |
---|
279 | * caveat: a sub-class method can have the same name as the |
---|
280 | * parent~s constructor and create problems. |
---|
281 | */ |
---|
282 | |
---|
283 | if (zf->common.fn_flags & ZEND_ACC_CTOR) { |
---|
284 | if (!ce->constructor) { |
---|
285 | ce->constructor = zf; |
---|
286 | } |
---|
287 | } |
---|
288 | else if (zf->common.fn_flags & ZEND_ACC_DTOR) { |
---|
289 | ce->destructor = zf; |
---|
290 | } |
---|
291 | else if (zf->common.fn_flags & ZEND_ACC_CLONE) { |
---|
292 | ce->clone = zf; |
---|
293 | } |
---|
294 | else { |
---|
295 | pushdef(`SET_IF_SAME_NAMEs', ` |
---|
296 | SET_IF_SAME_NAME(__get); |
---|
297 | SET_IF_SAME_NAME(__set); |
---|
298 | #ifdef ZEND_ENGINE_2_1 |
---|
299 | SET_IF_SAME_NAME(__unset); |
---|
300 | SET_IF_SAME_NAME(__isset); |
---|
301 | #endif |
---|
302 | SET_IF_SAME_NAME(__call); |
---|
303 | #ifdef ZEND_CALLSTATIC_FUNC_NAME |
---|
304 | SET_IF_SAME_NAME(__callstatic); |
---|
305 | #endif |
---|
306 | #if defined(ZEND_ENGINE_2_2) || PHP_MAJOR_VERSION >= 6 |
---|
307 | SET_IF_SAME_NAME(__tostring); |
---|
308 | #endif |
---|
309 | ') |
---|
310 | #ifdef IS_UNICODE |
---|
311 | if (UG(unicode)) { |
---|
312 | #define SET_IF_SAME_NAME(member) \ |
---|
313 | do { \ |
---|
314 | if (srcce->member && u_strcmp(ZSTR_U(zf->common.function_name), ZSTR_U(srcce->member->common.function_name)) == 0) { \ |
---|
315 | ce->member = zf; \ |
---|
316 | } \ |
---|
317 | } \ |
---|
318 | while(0) |
---|
319 | |
---|
320 | SET_IF_SAME_NAMEs() |
---|
321 | #undef SET_IF_SAME_NAME |
---|
322 | } |
---|
323 | else |
---|
324 | #endif |
---|
325 | do { |
---|
326 | #define SET_IF_SAME_NAME(member) \ |
---|
327 | do { \ |
---|
328 | if (srcce->member && strcmp(ZSTR_S(zf->common.function_name), ZSTR_S(srcce->member->common.function_name)) == 0) { \ |
---|
329 | ce->member = zf; \ |
---|
330 | } \ |
---|
331 | } \ |
---|
332 | while(0) |
---|
333 | |
---|
334 | SET_IF_SAME_NAMEs() |
---|
335 | #undef SET_IF_SAME_NAME |
---|
336 | } while (0); |
---|
337 | |
---|
338 | popdef(`SET_IF_SAME_NAMEs') |
---|
339 | |
---|
340 | } |
---|
341 | } |
---|
342 | /* }}} */ |
---|
343 | #endif |
---|
344 | /* {{{ call op_array ctor handler */ |
---|
345 | extern zend_bool xc_have_op_array_ctor; |
---|
346 | static void xc_zend_extension_op_array_ctor_handler(zend_extension *extension, zend_op_array *op_array TSRMLS_DC) |
---|
347 | { |
---|
348 | if (extension->op_array_ctor) { |
---|
349 | extension->op_array_ctor(op_array); |
---|
350 | } |
---|
351 | } |
---|
352 | /* }}} */ |
---|
353 | /* {{{ field name checker */ |
---|
354 | IFAUTOCHECK(`dnl |
---|
355 | static int xc_check_names(const char *file, int line, const char *functionName, const char **assert_names, int assert_names_count, HashTable *done_names) |
---|
356 | { |
---|
357 | int errors = 0; |
---|
358 | if (assert_names_count) { |
---|
359 | int i; |
---|
360 | Bucket *b; |
---|
361 | |
---|
362 | for (i = 0; i < assert_names_count; ++i) { |
---|
363 | if (!zend_u_hash_exists(done_names, IS_STRING, assert_names[i], strlen(assert_names[i]) + 1)) { |
---|
364 | fprintf(stderr |
---|
365 | , "Error: missing field at %s `#'%d %s`' : %s\n" |
---|
366 | , file, line, functionName |
---|
367 | , assert_names[i] |
---|
368 | ); |
---|
369 | ++errors; |
---|
370 | } |
---|
371 | } |
---|
372 | |
---|
373 | for (b = done_names->pListHead; b != NULL; b = b->pListNext) { |
---|
374 | int known = 0; |
---|
375 | for (i = 0; i < assert_names_count; ++i) { |
---|
376 | if (strcmp(assert_names[i], BUCKET_KEY_S(b)) == 0) { |
---|
377 | known = 1; |
---|
378 | break; |
---|
379 | } |
---|
380 | } |
---|
381 | if (!known) { |
---|
382 | fprintf(stderr |
---|
383 | , "Error: unknown field at %s `#'%d %s`' : %s\n" |
---|
384 | , file, line, functionName |
---|
385 | , BUCKET_KEY_S(b) |
---|
386 | ); |
---|
387 | ++errors; |
---|
388 | } |
---|
389 | } |
---|
390 | } |
---|
391 | return errors; |
---|
392 | } |
---|
393 | ') |
---|
394 | /* }}} */ |
---|
395 | dnl ================ export API |
---|
396 | define(`DEFINE_STORE_API', ` |
---|
397 | /* export: $1 *xc_processor_store_$1(xc_shm_t *shm, xc_mem_t *mem, $1 *src TSRMLS_DC); :export {{{ */ |
---|
398 | $1 *xc_processor_store_$1(xc_shm_t *shm, xc_mem_t *mem, $1 *src TSRMLS_DC) { |
---|
399 | $1 *dst; |
---|
400 | xc_processor_t processor; |
---|
401 | |
---|
402 | memset(&processor, 0, sizeof(processor)); |
---|
403 | processor.reference = 1; |
---|
404 | processor.shm = shm; |
---|
405 | processor.mem = mem; |
---|
406 | |
---|
407 | IFAUTOCHECK(`xc_stack_init(&processor.allocsizes);') |
---|
408 | |
---|
409 | /* calc size */ { |
---|
410 | zend_hash_init(&processor.strings, 0, NULL, NULL, 0); |
---|
411 | if (processor.reference) { |
---|
412 | zend_hash_init(&processor.zvalptrs, 0, NULL, NULL, 0); |
---|
413 | } |
---|
414 | |
---|
415 | processor.size = 0; |
---|
416 | /* allocate */ |
---|
417 | processor.size = ALIGN(processor.size + sizeof(src[0])); |
---|
418 | |
---|
419 | xc_calc_$1(&processor, src TSRMLS_CC); |
---|
420 | if (processor.reference) { |
---|
421 | zend_hash_destroy(&processor.zvalptrs); |
---|
422 | } |
---|
423 | zend_hash_destroy(&processor.strings); |
---|
424 | } |
---|
425 | src->ifelse( |
---|
426 | `$1', `xc_entry_data_php_t', `', |
---|
427 | `', `', entry.)size = processor.size; |
---|
428 | ifelse( |
---|
429 | `$1', `xc_entry_var_t', `src->have_references = processor.have_references;', |
---|
430 | `$1', `xc_entry_data_php_t', `src->have_references = processor.have_references;' |
---|
431 | ) |
---|
432 | |
---|
433 | IFAUTOCHECK(`xc_stack_reverse(&processor.allocsizes);') |
---|
434 | /* store {{{ */ |
---|
435 | { |
---|
436 | IFAUTOCHECK(`char *oldp;') |
---|
437 | zend_hash_init(&processor.strings, 0, NULL, NULL, 0); |
---|
438 | if (processor.reference) { |
---|
439 | zend_hash_init(&processor.zvalptrs, 0, NULL, NULL, 0); |
---|
440 | } |
---|
441 | |
---|
442 | /* mem :) */ |
---|
443 | processor.p = (char *) processor.mem->handlers->malloc(processor.mem, processor.size); |
---|
444 | if (processor.p == NULL) { |
---|
445 | dst = NULL; |
---|
446 | goto err_alloc; |
---|
447 | } |
---|
448 | IFAUTOCHECK(`oldp = processor.p;') |
---|
449 | assert(processor.p == (char *) ALIGN(processor.p)); |
---|
450 | |
---|
451 | /* allocate */ |
---|
452 | dst = ($1 *) processor.p; |
---|
453 | processor.p = (char *) ALIGN(processor.p + sizeof(dst[0])); |
---|
454 | |
---|
455 | xc_store_$1(&processor, dst, src TSRMLS_CC); |
---|
456 | IFAUTOCHECK(` { |
---|
457 | size_t unexpected = processor.p - oldp; |
---|
458 | size_t expected = processor.size; |
---|
459 | if (unexpected != processor.size) { |
---|
460 | fprintf(stderr, "unexpected:%lu - expected:%lu = %ld != 0\n", (unsigned long) unexpected, (unsigned long) expected, (long) unexpected - expected); |
---|
461 | abort(); |
---|
462 | } |
---|
463 | }') |
---|
464 | err_alloc: |
---|
465 | if (processor.reference) { |
---|
466 | zend_hash_destroy(&processor.zvalptrs); |
---|
467 | } |
---|
468 | zend_hash_destroy(&processor.strings); |
---|
469 | } |
---|
470 | /* }}} */ |
---|
471 | |
---|
472 | IFAUTOCHECK(`xc_stack_destroy(&processor.allocsizes);') |
---|
473 | |
---|
474 | return dst; |
---|
475 | } |
---|
476 | /* }}} */ |
---|
477 | ') |
---|
478 | DEFINE_STORE_API(`xc_entry_var_t') |
---|
479 | DEFINE_STORE_API(`xc_entry_php_t') |
---|
480 | DEFINE_STORE_API(`xc_entry_data_php_t') |
---|
481 | /* export: xc_entry_php_t *xc_processor_restore_xc_entry_php_t(xc_entry_php_t *dst, const xc_entry_php_t *src TSRMLS_DC); :export {{{ */ |
---|
482 | xc_entry_php_t *xc_processor_restore_xc_entry_php_t(xc_entry_php_t *dst, const xc_entry_php_t *src TSRMLS_DC) { |
---|
483 | xc_processor_t processor; |
---|
484 | |
---|
485 | memset(&processor, 0, sizeof(processor)); |
---|
486 | xc_restore_xc_entry_php_t(&processor, dst, src TSRMLS_CC); |
---|
487 | |
---|
488 | return dst; |
---|
489 | } |
---|
490 | /* }}} */ |
---|
491 | /* export: xc_entry_data_php_t *xc_processor_restore_xc_entry_data_php_t(const xc_entry_php_t *entry_php, xc_entry_data_php_t *dst, const xc_entry_data_php_t *src, zend_bool readonly_protection TSRMLS_DC); :export {{{ */ |
---|
492 | xc_entry_data_php_t *xc_processor_restore_xc_entry_data_php_t(const xc_entry_php_t *entry_php, xc_entry_data_php_t *dst, const xc_entry_data_php_t *src, zend_bool readonly_protection TSRMLS_DC) { |
---|
493 | xc_processor_t processor; |
---|
494 | |
---|
495 | memset(&processor, 0, sizeof(processor)); |
---|
496 | processor.readonly_protection = readonly_protection; |
---|
497 | /* this function is used for php data only */ |
---|
498 | if (src->have_references) { |
---|
499 | processor.reference = 1; |
---|
500 | } |
---|
501 | processor.entry_php_src = entry_php; |
---|
502 | |
---|
503 | if (processor.reference) { |
---|
504 | zend_hash_init(&processor.zvalptrs, 0, NULL, NULL, 0); |
---|
505 | } |
---|
506 | xc_restore_xc_entry_data_php_t(&processor, dst, src TSRMLS_CC); |
---|
507 | if (processor.reference) { |
---|
508 | zend_hash_destroy(&processor.zvalptrs); |
---|
509 | } |
---|
510 | return dst; |
---|
511 | } |
---|
512 | /* }}} */ |
---|
513 | /* export: xc_entry_var_t *xc_processor_restore_xc_entry_var_t(xc_entry_var_t *dst, const xc_entry_var_t *src TSRMLS_DC); :export {{{ */ |
---|
514 | xc_entry_var_t *xc_processor_restore_xc_entry_var_t(xc_entry_var_t *dst, const xc_entry_var_t *src TSRMLS_DC) { |
---|
515 | xc_processor_t processor; |
---|
516 | |
---|
517 | memset(&processor, 0, sizeof(processor)); |
---|
518 | xc_restore_xc_entry_var_t(&processor, dst, src TSRMLS_CC); |
---|
519 | |
---|
520 | return dst; |
---|
521 | } |
---|
522 | /* }}} */ |
---|
523 | /* export: zval *xc_processor_restore_zval(zval *dst, const zval *src, zend_bool have_references TSRMLS_DC); :export {{{ */ |
---|
524 | zval *xc_processor_restore_zval(zval *dst, const zval *src, zend_bool have_references TSRMLS_DC) { |
---|
525 | xc_processor_t processor; |
---|
526 | |
---|
527 | memset(&processor, 0, sizeof(processor)); |
---|
528 | processor.reference = have_references; |
---|
529 | |
---|
530 | if (processor.reference) { |
---|
531 | zend_hash_init(&processor.zvalptrs, 0, NULL, NULL, 0); |
---|
532 | dnl fprintf(stderr, "mark[%p] = %p\n", src, dst); |
---|
533 | zend_hash_add(&processor.zvalptrs, (char *)src, sizeof(src), (void*)&dst, sizeof(dst), NULL); |
---|
534 | } |
---|
535 | xc_restore_zval(&processor, dst, src TSRMLS_CC); |
---|
536 | if (processor.reference) { |
---|
537 | zend_hash_destroy(&processor.zvalptrs); |
---|
538 | } |
---|
539 | |
---|
540 | return dst; |
---|
541 | } |
---|
542 | /* }}} */ |
---|
543 | /* export: void xc_dprint(xc_entry_php_t *src, int indent TSRMLS_DC); :export {{{ */ |
---|
544 | #ifdef HAVE_XCACHE_DPRINT |
---|
545 | void xc_dprint(xc_entry_php_t *src, int indent TSRMLS_DC) { |
---|
546 | IFDPRINT(`INDENT()`'fprintf(stderr, "xc_entry_php_t:src");') |
---|
547 | xc_dprint_xc_entry_php_t(src, indent TSRMLS_CC); |
---|
548 | } |
---|
549 | #endif |
---|
550 | /* }}} */ |
---|