-
Notifications
You must be signed in to change notification settings - Fork 2
/
runkit_import.c
461 lines (392 loc) · 14.9 KB
/
runkit_import.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2006 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.0 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_0.txt. |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Sara Golemon <[email protected]> |
+----------------------------------------------------------------------+
*/
/* $Id: runkit_import.c,v 1.11 2008/05/05 04:28:34 mlively Exp $ */
#include "php_runkit.h"
#ifdef PHP_RUNKIT_MANIPULATION
/* {{{ php_runkit_import_functions
*/
static int php_runkit_import_functions(HashTable *function_table, long flags TSRMLS_DC)
{
HashPosition pos;
int i, func_count = zend_hash_num_elements(function_table);
zend_hash_internal_pointer_reset_ex(function_table, &pos);
for(i = 0; i < func_count; i++) {
zend_function *fe = NULL;
char *key;
int key_len, type;
long idx;
zend_bool add_function = 1;
zend_hash_get_current_data_ex(function_table, (void**)&fe, &pos);
if (((type = zend_hash_get_current_key_ex(EG(function_table), &key, &key_len, &idx, 0, &pos)) != HASH_KEY_NON_EXISTANT) &&
fe && fe->type == ZEND_USER_FUNCTION) {
if (flags & PHP_RUNKIT_IMPORT_OVERRIDE) {
if (type == HASH_KEY_IS_STRING) {
if (zend_hash_del(EG(function_table), key, key_len) == FAILURE) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Inconsistency cleaning up import environment");
return FAILURE;
}
} else {
if (zend_hash_index_del(EG(function_table), idx) == FAILURE) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Inconsistency cleaning up import environment");
return FAILURE;
}
}
} else {
add_function = 0;
}
}
if (add_function) {
PHP_RUNKIT_FUNCTION_ADD_REF(fe);
char *lcase = estrdup(fe->common.function_name);
int lcase_len = strlen(lcase);
php_strtolower(lcase, lcase_len);
if (zend_hash_add(EG(function_table), lcase, lcase_len + 1, fe, sizeof(zend_function), NULL) == FAILURE) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failure importing %s()", fe->common.function_name);
#ifdef ZEND_ENGINE_2
destroy_zend_function(fe TSRMLS_CC);
#else
destroy_end_function(fe);
#endif
efree(lcase);
return FAILURE;
}
efree(lcase);
}
zend_hash_move_forward_ex(function_table, &pos);
}
return SUCCESS;
}
/* }}} */
/* {{{ php_runkit_import_class_methods
*/
static int php_runkit_import_class_methods(zend_class_entry *dce, zend_class_entry *ce, int override TSRMLS_DC)
{
HashPosition pos;
zend_function *fe;
char *fn;
int fn_maxlen;
/* Generic strtolower buffer for function names */
fn_maxlen = 64;
fn = emalloc(fn_maxlen);
zend_hash_internal_pointer_reset_ex(&ce->function_table, &pos);
while (zend_hash_get_current_data_ex(&ce->function_table, (void**)&fe, &pos) == SUCCESS) {
zend_function *dfe;
int fn_len = strlen(fe->common.function_name);
zend_class_entry *fe_scope = php_runkit_locate_scope(ce, fe, fe->common.function_name, fn_len);
if (fe_scope != ce) {
/* This is an inhereted function, let's skip it */
zend_hash_move_forward_ex(&ce->function_table, &pos);
continue;
}
if (fn_len > fn_maxlen - 1) {
fn_maxlen = fn_len + 33;
fn = erealloc(fn, fn_maxlen);
}
memcpy(fn, fe->common.function_name, fn_len + 1);
php_strtolower(fn, fn_len);
if (zend_hash_find(&dce->function_table, fn, fn_len + 1, (void**)&dfe) == SUCCESS) {
zend_class_entry *scope = php_runkit_locate_scope(dce, dfe, fn, fn_len);
if (php_runkit_check_call_stack(&dfe->op_array TSRMLS_CC) == FAILURE) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot override active method %s::%s(). Skipping.", dce->name, fe->common.function_name);
zend_hash_move_forward_ex(&ce->function_table, &pos);
continue;
}
zend_hash_apply_with_arguments(EG(class_table), (apply_func_args_t)php_runkit_clean_children_methods, 4, scope, dce, fn, fn_len);
if (zend_hash_del(&dce->function_table, fn, fn_len + 1) == FAILURE) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error removing old method in destination class %s::%s", dce->name, fe->common.function_name);
zend_hash_move_forward_ex(&ce->function_table, &pos);
continue;
}
}
PHP_RUNKIT_FUNCTION_ADD_REF(fe);
#ifdef ZEND_ENGINE_2
fe->common.scope = dce;
#endif
zend_hash_apply_with_arguments(EG(class_table), (apply_func_args_t)php_runkit_update_children_methods, 5, dce, dce, fe, fn, fn_len);
if (zend_hash_add(&dce->function_table, fn, fn_len + 1, fe, sizeof(zend_function), NULL) == FAILURE) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failure importing %s::%s()", ce->name, fe->common.function_name);
zend_hash_move_forward_ex(&ce->function_table, &pos);
continue;
}
zend_hash_move_forward_ex(&ce->function_table, &pos);
}
efree(fn);
return SUCCESS;
}
/* }}} */
#ifdef ZEND_ENGINE_2
/* {{{ php_runkit_import_class_consts
*/
static int php_runkit_import_class_consts(zend_class_entry *dce, zend_class_entry *ce, int override TSRMLS_DC)
{
HashPosition pos;
char *key;
int key_len;
long idx;
zval **c;
zend_hash_internal_pointer_reset_ex(&ce->constants_table, &pos);
while (zend_hash_get_current_data_ex(&ce->constants_table, (void**)&c, &pos) == SUCCESS && c && *c) {
long action = HASH_ADD;
if (zend_hash_get_current_key_ex(&ce->constants_table, &key, &key_len, &idx, 0, &pos) == HASH_KEY_IS_STRING) {
if (zend_hash_exists(&dce->constants_table, key, key_len)) {
if (override) {
action = HASH_UPDATE;
} else {
php_error_docref(NULL TSRMLS_CC, E_NOTICE, "%s::%s already exists, not importing", dce->name, key);
goto import_const_skip;
}
}
ZVAL_ADDREF(*c);
if (zend_hash_add_or_update(&dce->constants_table, key, key_len, (void*)c, sizeof(zval*), NULL, action) == FAILURE) {
zval_ptr_dtor(c);
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to import %s::%s", dce->name, key);
}
zend_hash_apply_with_arguments(EG(class_table), (apply_func_args_t)php_runkit_update_children_consts, 4, dce, c, key, key_len - 1);
} else {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Constant has invalid key name");
}
import_const_skip:
zend_hash_move_forward_ex(&ce->constants_table, &pos);
}
return SUCCESS;
}
/* }}} */
#endif
/* {{{ php_runkit_import_class_props
*/
static int php_runkit_import_class_props(zend_class_entry *dce, zend_class_entry *ce, int override TSRMLS_DC)
{
HashPosition pos;
char *key;
int key_len;
long idx;
zval **p;
zend_hash_internal_pointer_reset_ex(&ce->default_properties, &pos);
while (zend_hash_get_current_data_ex(&ce->default_properties, (void**)&p, &pos) == SUCCESS && p && *p) {
long action = HASH_ADD;
if (zend_hash_get_current_key_ex(&ce->default_properties, &key, &key_len, &idx, 0, &pos) == HASH_KEY_IS_STRING) {
char *cname = NULL, *pname = key;
#ifdef ZEND_ENGINE_2_2
zend_unmangle_property_name(key, key_len - 1, &cname, &pname);
#elif defined(ZEND_ENGINE_2)
zend_unmangle_property_name(key, &cname, &pname);
#endif
if (zend_hash_exists(&dce->default_properties, key, key_len)) {
if (override) {
action = HASH_UPDATE;
} else {
php_error_docref(NULL TSRMLS_CC, E_NOTICE, "%s->%s already exists, not importing", dce->name, pname);
goto import_prop_skip;
}
}
ZVAL_ADDREF(*p);
if (zend_hash_add_or_update(&dce->default_properties, key, key_len, (void*)p, sizeof(zval*), NULL, action) == FAILURE) {
zval_ptr_dtor(p);
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to import %s->%s", dce->name, pname);
}
if (!cname || strcmp(cname, "*") == 0) {
/* PUBLIC || PROTECTED */
zend_hash_apply_with_arguments(EG(class_table), (apply_func_args_t)php_runkit_update_children_def_props, 4, dce, p, key, key_len - 1);
}
} else {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Property has invalid key name");
}
import_prop_skip:
zend_hash_move_forward_ex(&ce->default_properties, &pos);
}
return SUCCESS;
}
/* }}} */
/* {{{ php_runkit_import_classes
*/
static int php_runkit_import_classes(HashTable *class_table, long flags TSRMLS_DC)
{
HashPosition pos;
int i, class_count;
class_count = zend_hash_num_elements(class_table);
zend_hash_internal_pointer_reset_ex(class_table, &pos);
for(i = 0; i < class_count; i++) {
zend_class_entry *ce = NULL;
char *key;
int key_len, type;
long idx;
zend_hash_get_current_data_ex(class_table, (void**)&ce, &pos);
#ifdef ZEND_ENGINE_2
if (ce) {
ce = *((zend_class_entry**)ce);
}
#endif
if (!ce) {
php_error_docref(NULL TSRMLS_CC, E_ERROR, "Non-class in class table!");
return FAILURE;
}
if (((type = zend_hash_get_current_key_ex(EG(class_table), &key, &key_len, &idx, 0, &pos)) != HASH_KEY_NON_EXISTANT) &&
ce && ce->type == ZEND_USER_CLASS) {
zend_class_entry *dce;
/* We can clobber the temp class's name, it'll be freed soon anyway */
php_strtolower(ce->name, ce->name_length);
if (php_runkit_fetch_class(ce->name, ce->name_length, &dce TSRMLS_CC) == FAILURE) {
/* Oddly non-existant target class or error retreiving it... Or it's an internal class... */
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot redeclare class %s", ce->name);
continue;
}
if (flags & PHP_RUNKIT_IMPORT_CLASS_METHODS) {
php_runkit_import_class_methods(dce, ce, (flags & PHP_RUNKIT_IMPORT_OVERRIDE) TSRMLS_CC);
}
#ifdef ZEND_ENGINE_2
if (flags & PHP_RUNKIT_IMPORT_CLASS_CONSTS) {
php_runkit_import_class_consts(dce, ce, (flags & PHP_RUNKIT_IMPORT_OVERRIDE) TSRMLS_CC);
}
#endif
if (flags & PHP_RUNKIT_IMPORT_CLASS_PROPS) {
php_runkit_import_class_props(dce, ce, (flags & PHP_RUNKIT_IMPORT_OVERRIDE) TSRMLS_CC);
}
zend_hash_move_forward_ex(class_table, &pos);
if (type == HASH_KEY_IS_STRING) {
if (zend_hash_del(class_table, key, key_len) == FAILURE) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to remove temporary version of class %s", ce->name);
continue;
}
} else {
if (zend_hash_index_del(class_table, idx) == FAILURE) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to remove temporary version of class %s", ce->name);
continue;
}
}
} else {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Can not find class definition in class table");
return FAILURE;
}
}
return SUCCESS;
}
/* }}} */
/* {{{ php_runkit_compile_filename
* Duplicate of Zend's compile_filename which explicitly calls the internal compile_file() implementation.
*
* This is only used when an accelerator has replaced zend_compile_file() with an alternate method
* which has been known to cause issues with overly-optimistic early binding.
*
* It would be clener to temporarily set zend_compile_file back to compile_file, but that wouldn't be
* particularly thread-safe so.... */
static zend_op_array *php_runkit_compile_filename(int type, zval *filename TSRMLS_DC)
{
zend_file_handle file_handle;
zval tmp;
zend_op_array *retval;
char *opened_path = NULL;
if (filename->type != IS_STRING) {
tmp = *filename;
zval_copy_ctor(&tmp);
convert_to_string(&tmp);
filename = &tmp;
}
file_handle.filename = filename->value.str.val;
file_handle.free_filename = 0;
file_handle.type = ZEND_HANDLE_FILENAME;
file_handle.opened_path = NULL;
#if PHP_MAJOR_VERSION > 5 || (PHP_MINOR_VERSION == 5 && PHP_MINOR_VERSION > 0)
file_handle.handle.fp = NULL;
#endif
/* Use builtin compiler only -- bypass accelerators and whatnot */
retval = compile_file(&file_handle, type TSRMLS_CC);
#ifdef ZEND_ENGINE_2
if (retval && file_handle.handle.stream.handle) {
#else /* ZEND ENGINE 1 */
if (retval && ZEND_IS_VALID_FILE_HANDLE(&file_handle)) {
#endif
int dummy = 1;
if (!file_handle.opened_path) {
file_handle.opened_path = opened_path = estrndup(filename->value.str.val, filename->value.str.len);
}
zend_hash_add(&EG(included_files), file_handle.opened_path, strlen(file_handle.opened_path)+1, (void *)&dummy, sizeof(int), NULL);
if (opened_path) {
efree(opened_path);
}
}
zend_destroy_file_handle(&file_handle TSRMLS_CC);
if (filename==&tmp) {
zval_dtor(&tmp);
}
return retval;
}
/* }}} */
/* {{{ array runkit_import(string filename[, long flags])
Import functions and class definitions from a file
Similar to include(), but doesn't execute root op_array, and allows pre-existing functions/methods to be overridden */
PHP_FUNCTION(runkit_import)
{
zend_op_array *new_op_array;
zval *filename;
long flags = PHP_RUNKIT_IMPORT_CLASS_METHODS;
HashTable *current_class_table, *class_table, *current_function_table, *function_table;
zend_op_array *(*local_compile_filename)(int type, zval *filename TSRMLS_DC) = compile_filename;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z|l", &filename, &flags) == FAILURE) {
RETURN_FALSE;
}
convert_to_string(filename);
if (compile_file != zend_compile_file) {
/* An accellerator or other dark force is at work
* Use the wrapper method to force the builtin compiler
* to be used */
local_compile_filename = php_runkit_compile_filename;
}
class_table = (HashTable *) emalloc(sizeof(HashTable));
zend_hash_init_ex(class_table, 10, NULL, ZEND_CLASS_DTOR, 0, 0);
function_table = (HashTable *) emalloc(sizeof(HashTable));
zend_hash_init_ex(function_table, 100, NULL, ZEND_FUNCTION_DTOR, 0, 0);
current_class_table = CG(class_table);
CG(class_table) = class_table;
current_function_table = CG(function_table);
CG(function_table) = function_table;
new_op_array = local_compile_filename(ZEND_INCLUDE, filename TSRMLS_CC);
CG(class_table) = current_class_table;
CG(function_table) = current_function_table;
if (!new_op_array) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Import Failure");
RETURN_FALSE;
}
/* We never really needed the main loop opcodes to begin with */
#ifdef ZEND_ENGINE_2
destroy_op_array(new_op_array TSRMLS_CC);
#else
destroy_op_array(new_op_array);
#endif
efree(new_op_array);
if (flags & PHP_RUNKIT_IMPORT_FUNCTIONS) {
php_runkit_import_functions(function_table, flags TSRMLS_CC);
}
if (flags & PHP_RUNKIT_IMPORT_CLASSES) {
php_runkit_import_classes(class_table, flags TSRMLS_CC);
}
zend_hash_destroy(class_table);
efree(class_table);
zend_hash_destroy(function_table);
efree(function_table);
RETURN_TRUE;
}
/* }}} */
#endif /* PHP_RUNKIT_MANIPULATION */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/