-
Notifications
You must be signed in to change notification settings - Fork 136
/
runkit_functions.c
877 lines (758 loc) · 30.3 KB
/
runkit_functions.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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2006 The PHP Group, (c) 2008-2015 Dmitry Zenovich |
+----------------------------------------------------------------------+
| This source file is subject to the new BSD 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.opensource.org/licenses/BSD-3-Clause |
| If you did not receive a copy of the 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]> |
| Modified by Dmitry Zenovich <[email protected]> |
+----------------------------------------------------------------------+
*/
/* $Id$ */
#include "php_runkit.h"
#include "php_runkit_hash.h"
#ifdef PHP_RUNKIT_MANIPULATION
/* {{{ php_runkit_check_call_stack
*/
int php_runkit_check_call_stack(zend_op_array *op_array TSRMLS_DC)
{
zend_execute_data *ptr;
ptr = EG(current_execute_data);
while (ptr) {
if (ptr->op_array && ptr->op_array->opcodes == op_array->opcodes) {
return FAILURE;
}
ptr = ptr->prev_execute_data;
}
return SUCCESS;
}
/* }}} */
static void php_runkit_hash_key_dtor(void *hash_key)
{
efree((void*) PHP_RUNKIT_HASH_KEY((zend_hash_key*)hash_key));
}
/* Maintain order */
#define PHP_RUNKIT_FETCH_FUNCTION_INSPECT 0
#define PHP_RUNKIT_FETCH_FUNCTION_REMOVE 1
#define PHP_RUNKIT_FETCH_FUNCTION_RENAME 2
/* {{{ php_runkit_fetch_function
*/
static int php_runkit_fetch_function(int fname_type, const char *fname, int fname_len, zend_function **pfe, int flag TSRMLS_DC)
{
zend_function *fe;
PHP_RUNKIT_DECL_STRING_PARAM(fname_lower)
PHP_RUNKIT_NORMALIZE_NAMESPACE(fname);
PHP_RUNKIT_MAKE_LOWERCASE_COPY(fname);
if (fname_lower == NULL) {
PHP_RUNKIT_NOT_ENOUGH_MEMORY_ERROR;
return FAILURE;
}
if (zend_hash_find(EG(function_table), fname_lower, fname_lower_len + 1, (void*)&fe) == FAILURE) {
efree(fname_lower);
php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s() not found", fname);
return FAILURE;
}
if (fe->type == ZEND_INTERNAL_FUNCTION &&
!RUNKIT_G(internal_override)) {
efree(fname_lower);
php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s() is an internal function and runkit.internal_override is disabled", fname);
return FAILURE;
}
if (fe->type != ZEND_USER_FUNCTION &&
fe->type != ZEND_INTERNAL_FUNCTION) {
efree(fname_lower);
php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s() is not a user or normal internal function", fname);
return FAILURE;
}
if (pfe) {
*pfe = fe;
}
if (fe->type == ZEND_INTERNAL_FUNCTION &&
flag >= PHP_RUNKIT_FETCH_FUNCTION_REMOVE) {
zend_hash_key runkit_hash_key;
if (!RUNKIT_G(replaced_internal_functions)) {
ALLOC_HASHTABLE(RUNKIT_G(replaced_internal_functions));
zend_hash_init(RUNKIT_G(replaced_internal_functions), 4, NULL, NULL, 0);
}
#if PHP_MAJOR_VERSION >= 6
zend_u_hash_add(RUNKIT_G(replaced_internal_functions), fname_type, fname_lower, fname_lower_len + 1, (void*)fe, sizeof(zend_function), NULL);
#else
zend_hash_add(RUNKIT_G(replaced_internal_functions), fname_lower, fname_lower_len + 1, (void*)fe, sizeof(zend_function), NULL);
#endif
/*
* If internal functions have been modified then runkit's request shutdown handler
* should be called after all other modules' ones.
*/
runkit_hash_key.nKeyLength = sizeof("runkit");
PHP_RUNKIT_HASH_KEY(&runkit_hash_key) = "runkit";
runkit_hash_key.h = zend_get_hash_value("runkit", sizeof("runkit"));
php_runkit_hash_move_to_front(&module_registry, php_runkit_hash_get_bucket(&module_registry, &runkit_hash_key));
EG(full_tables_cleanup) = 1; // dirty hack!
}
efree(fname_lower);
return SUCCESS;
}
/* }}} */
/* {{{ php_runkit_add_to_misplaced_internal_functions */
static inline void php_runkit_add_to_misplaced_internal_functions(zend_function *fe, const char *name_lower, int name_lower_len TSRMLS_DC) {
if (fe->type == ZEND_INTERNAL_FUNCTION &&
(!RUNKIT_G(misplaced_internal_functions) ||
!zend_hash_exists(RUNKIT_G(misplaced_internal_functions), (char *) name_lower, name_lower_len + 1))
) {
zend_hash_key hash_key;
hash_key.nKeyLength = PHP_RUNKIT_STRING_LEN(name_lower, 1);
PHP_RUNKIT_HASH_KEY(&hash_key) = estrndup(name_lower, PHP_RUNKIT_HASH_KEYLEN(&hash_key));
if (!RUNKIT_G(misplaced_internal_functions)) {
ALLOC_HASHTABLE(RUNKIT_G(misplaced_internal_functions));
zend_hash_init(RUNKIT_G(misplaced_internal_functions), 4, NULL, php_runkit_hash_key_dtor, 0);
}
zend_hash_add(RUNKIT_G(misplaced_internal_functions), (char *) name_lower, name_lower_len + 1, (void*)&hash_key, sizeof(zend_hash_key), NULL);
}
}
/* }}} */
/* {{{ php_runkit_destroy_misplaced_internal_function */
static inline void php_runkit_destroy_misplaced_internal_function(zend_function *fe, const char *fname_lower, int fname_lower_len TSRMLS_DC) {
if (fe->type == ZEND_INTERNAL_FUNCTION && RUNKIT_G(misplaced_internal_functions) &&
zend_hash_exists(RUNKIT_G(misplaced_internal_functions), (char *) fname_lower, fname_lower_len + 1)) {
PHP_RUNKIT_FREE_INTERNAL_FUNCTION_NAME(fe);
zend_hash_del(RUNKIT_G(misplaced_internal_functions), (char *) fname_lower, fname_lower_len + 1);
}
}
/* }}} */
/* {{{ php_runkit_function_copy_ctor
Duplicate structures in an op_array where necessary to make an outright duplicate */
void php_runkit_function_copy_ctor(zend_function *fe, const char *newname, int newname_len TSRMLS_DC)
{
#if PHP_MAJOR_VERSION > 5 || (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4)
zend_literal *literals;
void *run_time_cache;
#endif
#if PHP_MAJOR_VERSION > 5 || (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 1)
zend_compiled_variable *dupvars;
zend_op *last_op;
#endif
zend_op *opcode_copy;
int i;
if (newname) {
fe->common.function_name = estrndup(newname, newname_len);
} else {
fe->common.function_name = estrdup(fe->common.function_name);
}
if (fe->common.type == ZEND_USER_FUNCTION) {
#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 1) || (PHP_MAJOR_VERSION >= 6)
if (fe->op_array.vars) {
i = fe->op_array.last_var;
dupvars = safe_emalloc(fe->op_array.last_var, sizeof(zend_compiled_variable), 0);
while (i > 0) {
i--;
dupvars[i].name = estrdup(fe->op_array.vars[i].name);
dupvars[i].name_len = fe->op_array.vars[i].name_len;
dupvars[i].hash_value = fe->op_array.vars[i].hash_value;
}
fe->op_array.vars = dupvars;
}
#endif
if (fe->op_array.static_variables) {
HashTable *static_variables = fe->op_array.static_variables;
#if !((PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4) || (PHP_MAJOR_VERSION >= 6))
zval *tmpZval;
#endif
ALLOC_HASHTABLE(fe->op_array.static_variables);
zend_hash_init(fe->op_array.static_variables, zend_hash_num_elements(static_variables), NULL, ZVAL_PTR_DTOR, 0);
#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4) || (PHP_MAJOR_VERSION >= 6)
zend_hash_apply_with_arguments(RUNKIT_53_TSRMLS_PARAM(static_variables), (apply_func_args_t)zval_copy_static_var, 1, fe->op_array.static_variables);
#else
zend_hash_copy(fe->op_array.static_variables, static_variables, (copy_ctor_func_t) zval_add_ref, (void*) &tmpZval, sizeof(zval*));
#endif
}
#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4) || (PHP_MAJOR_VERSION >= 6)
if (fe->op_array.run_time_cache) {
run_time_cache = emalloc(sizeof(void*) * fe->op_array.last_cache_slot);
memcpy(run_time_cache, fe->op_array.run_time_cache, sizeof(void*) * fe->op_array.last_cache_slot);
fe->op_array.run_time_cache = run_time_cache;
}
#endif
opcode_copy = safe_emalloc(sizeof(zend_op), fe->op_array.last, 0);
last_op = fe->op_array.opcodes + fe->op_array.last;
for(i = 0; i < fe->op_array.last; i++) {
opcode_copy[i] = fe->op_array.opcodes[i];
#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION < 4) || (PHP_MAJOR_VERSION < 5)
if (opcode_copy[i].op1.op_type == IS_CONST) {
zval_copy_ctor(&opcode_copy[i].op1.u.constant);
#else
if (opcode_copy[i].op1_type == IS_CONST) {
#endif
} else {
switch (opcode_copy[i].opcode) {
#ifdef ZEND_GOTO
case ZEND_GOTO:
#endif
#ifdef ZEND_FAST_CALL
case ZEND_FAST_CALL:
#endif
case ZEND_JMP:
#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4) || (PHP_MAJOR_VERSION > 5)
if (opcode_copy[i].op1.jmp_addr >= fe->op_array.opcodes &&
opcode_copy[i].op1.jmp_addr < last_op) {
opcode_copy[i].op1.jmp_addr = opcode_copy + (fe->op_array.opcodes[i].op1.jmp_addr - fe->op_array.opcodes);
}
#else
if (opcode_copy[i].op1.u.jmp_addr >= fe->op_array.opcodes &&
opcode_copy[i].op1.u.jmp_addr < last_op) {
opcode_copy[i].op1.u.jmp_addr = opcode_copy + (fe->op_array.opcodes[i].op1.u.jmp_addr - fe->op_array.opcodes);
}
#endif
}
}
#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION < 4) || (PHP_MAJOR_VERSION < 5)
if (opcode_copy[i].op2.op_type == IS_CONST) {
zval_copy_ctor(&opcode_copy[i].op2.u.constant);
#else
if (opcode_copy[i].op2_type == IS_CONST) {
#endif
} else {
switch (opcode_copy[i].opcode) {
case ZEND_JMPZ:
case ZEND_JMPNZ:
case ZEND_JMPZ_EX:
case ZEND_JMPNZ_EX:
#ifdef ZEND_JMP_SET
case ZEND_JMP_SET:
#endif
#ifdef ZEND_JMP_SET_VAR
case ZEND_JMP_SET_VAR:
#endif
#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4) || (PHP_MAJOR_VERSION > 5)
if (opcode_copy[i].op2.jmp_addr >= fe->op_array.opcodes &&
opcode_copy[i].op2.jmp_addr < last_op) {
opcode_copy[i].op2.jmp_addr = opcode_copy + (fe->op_array.opcodes[i].op2.jmp_addr - fe->op_array.opcodes);
}
#else
if (opcode_copy[i].op2.u.jmp_addr >= fe->op_array.opcodes &&
opcode_copy[i].op2.u.jmp_addr < last_op) {
opcode_copy[i].op2.u.jmp_addr = opcode_copy + (fe->op_array.opcodes[i].op2.u.jmp_addr - fe->op_array.opcodes);
}
#endif
}
}
}
#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4) || (PHP_MAJOR_VERSION >= 6)
if (fe->op_array.literals) {
i = fe->op_array.last_literal;
literals = safe_emalloc(fe->op_array.last_literal, sizeof(zend_literal), 0);
while (i > 0) {
zval *tmpZval;
int k;
i--;
ALLOC_ZVAL(tmpZval);
literals[i] = fe->op_array.literals[i];
*tmpZval = literals[i].constant;
zval_copy_ctor(tmpZval);
literals[i].constant = *tmpZval;
for (k=0; k < fe->op_array.last; k++) {
if (opcode_copy[k].op1_type == IS_CONST && opcode_copy[k].op1.zv == &fe->op_array.literals[i].constant) {
opcode_copy[k].op1.zv = &literals[i].constant;
}
if (opcode_copy[k].op2_type == IS_CONST && opcode_copy[k].op2.zv == &fe->op_array.literals[i].constant) {
opcode_copy[k].op2.zv = &literals[i].constant;
}
}
literals[i].hash_value = fe->op_array.literals[i].hash_value;
efree(tmpZval);
}
fe->op_array.literals = literals;
}
#endif
fe->op_array.opcodes = opcode_copy;
fe->op_array.refcount = emalloc(sizeof(zend_uint));
*fe->op_array.refcount = 1;
#if !((PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4) || (PHP_MAJOR_VERSION >= 6))
fe->op_array.start_op = fe->op_array.opcodes;
#endif
fe->op_array.doc_comment = estrndup(fe->op_array.doc_comment, fe->op_array.doc_comment_len);
fe->op_array.try_catch_array = (zend_try_catch_element*)estrndup((char*)fe->op_array.try_catch_array, sizeof(zend_try_catch_element) * fe->op_array.last_try_catch);
fe->op_array.brk_cont_array = (zend_brk_cont_element*)estrndup((char*)fe->op_array.brk_cont_array, sizeof(zend_brk_cont_element) * fe->op_array.last_brk_cont);
if (fe->common.arg_info) {
zend_arg_info *tmpArginfo;
tmpArginfo = safe_emalloc(sizeof(zend_arg_info), fe->common.num_args, 0);
for(i = 0; i < fe->common.num_args; i++) {
tmpArginfo[i] = fe->common.arg_info[i];
tmpArginfo[i].name = estrndup(tmpArginfo[i].name, tmpArginfo[i].name_len);
if (tmpArginfo[i].class_name) {
tmpArginfo[i].class_name = estrndup(tmpArginfo[i].class_name, tmpArginfo[i].class_name_len);
}
}
fe->common.arg_info = tmpArginfo;
}
}
#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4) || (PHP_MAJOR_VERSION >= 6)
fe->common.fn_flags &= ~ZEND_ACC_DONE_PASS_TWO;
#endif
fe->common.prototype = fe;
}
/* }}}} */
#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4) || (PHP_MAJOR_VERSION > 5)
/* {{{ php_runkit_clear_function_runtime_cache */
static int php_runkit_clear_function_runtime_cache(void *pDest TSRMLS_DC)
{
zend_function *f = (zend_function *) pDest;
if (pDest == NULL || f->type != ZEND_USER_FUNCTION ||
f->op_array.last_cache_slot == 0 || f->op_array.run_time_cache == NULL) {
return ZEND_HASH_APPLY_KEEP;
}
memset(f->op_array.run_time_cache, 0, (f->op_array.last_cache_slot) * sizeof(void*));
return ZEND_HASH_APPLY_KEEP;
}
/* }}} */
/* {{{ php_runkit_clear_all_functions_runtime_cache */
void php_runkit_clear_all_functions_runtime_cache(TSRMLS_D)
{
int i, count;
zend_execute_data *ptr;
HashPosition pos;
zend_hash_apply(EG(function_table), php_runkit_clear_function_runtime_cache TSRMLS_CC);
zend_hash_internal_pointer_reset_ex(EG(class_table), &pos);
count = zend_hash_num_elements(EG(class_table));
for (i = 0; i < count; ++i) {
zend_class_entry **curce;
zend_hash_get_current_data_ex(EG(class_table), (void*)&curce, &pos);
zend_hash_apply(&(*curce)->function_table, php_runkit_clear_function_runtime_cache TSRMLS_CC);
zend_hash_move_forward_ex(EG(class_table), &pos);
}
for (ptr = EG(current_execute_data); ptr != NULL; ptr = ptr->prev_execute_data) {
if (ptr->op_array == NULL || ptr->op_array->last_cache_slot == 0 || ptr->op_array->run_time_cache == NULL) {
continue;
}
memset(ptr->op_array->run_time_cache, 0, (ptr->op_array->last_cache_slot) * sizeof(void*));
}
PHP_RUNKIT_ITERATE_THROUGH_OBJECTS_STORE_BEGIN(i)
if (object->ce == zend_ce_closure) {
zend_closure *cl = (zend_closure *) object;
php_runkit_clear_function_runtime_cache((void*) &cl->func TSRMLS_CC);
}
PHP_RUNKIT_ITERATE_THROUGH_OBJECTS_STORE_END
}
/* }}} */
#endif
/* {{{ php_runkit_remove_function_from_reflection_objects */
void php_runkit_remove_function_from_reflection_objects(zend_function *fe TSRMLS_DC) {
int i;
extern PHPAPI zend_class_entry *reflection_function_ptr;
extern PHPAPI zend_class_entry *reflection_method_ptr;
extern PHPAPI zend_class_entry *reflection_parameter_ptr;
PHP_RUNKIT_ITERATE_THROUGH_OBJECTS_STORE_BEGIN(i)
if (object->ce == reflection_function_ptr) {
reflection_object *refl_obj = (reflection_object *) object;
if (refl_obj->ptr == fe) {
PHP_RUNKIT_DELETE_REFLECTION_FUNCTION_PTR(refl_obj);
refl_obj->ptr = RUNKIT_G(removed_function);
#if !RUNKIT_ABOVE53
refl_obj->free_ptr = 0;
#endif
PHP_RUNKIT_UPDATE_REFLECTION_OBJECT_NAME(object, i, RUNKIT_G(removed_function_str));
}
} else if (object->ce == reflection_method_ptr) {
reflection_object *refl_obj = (reflection_object *) object;
if (refl_obj->ptr == fe) {
zend_function *f = emalloc(sizeof(zend_function));
memcpy(f, RUNKIT_G(removed_method), sizeof(zend_function));
f->common.scope = fe->common.scope;
#ifdef ZEND_ACC_CALL_VIA_HANDLER
f->internal_function.fn_flags |= ZEND_ACC_CALL_VIA_HANDLER; // This is a trigger to free it from destructor
#endif
#if RUNKIT_ABOVE53
f->internal_function.function_name = estrdup(f->internal_function.function_name);
#endif
PHP_RUNKIT_DELETE_REFLECTION_FUNCTION_PTR(refl_obj);
refl_obj->ptr = f;
#if !RUNKIT_ABOVE53
refl_obj->free_ptr = 1;
#endif
PHP_RUNKIT_UPDATE_REFLECTION_OBJECT_NAME(object, i, RUNKIT_G(removed_method_str));
}
} else if (object->ce == reflection_parameter_ptr) {
reflection_object *refl_obj = (reflection_object *) object;
parameter_reference *reference = (parameter_reference *) refl_obj->ptr;
if (reference && reference->fptr == fe) {
PHP_RUNKIT_DELETE_REFLECTION_FUNCTION_PTR(refl_obj);
refl_obj->ptr = NULL;
PHP_RUNKIT_UPDATE_REFLECTION_OBJECT_NAME(object, i, RUNKIT_G(removed_parameter_str));
}
}
PHP_RUNKIT_ITERATE_THROUGH_OBJECTS_STORE_END
}
/* }}} */
/* {{{ php_runkit_generate_lambda_method
Heavily borrowed from ZEND_FUNCTION(create_function) */
int php_runkit_generate_lambda_method(const char *arguments, int arguments_len, const char *phpcode, int phpcode_len,
zend_function **pfe, zend_bool return_ref TSRMLS_DC)
{
char *eval_code, *eval_name;
int eval_code_length;
eval_code_length = sizeof("function " RUNKIT_TEMP_FUNCNAME) + arguments_len + 4 + phpcode_len + return_ref;
eval_code = (char*)emalloc(eval_code_length);
snprintf(eval_code, eval_code_length, "function %s" RUNKIT_TEMP_FUNCNAME "(%s){%s}", (return_ref ? "&" : ""), arguments, phpcode);
eval_name = zend_make_compiled_string_description("runkit runtime-created function" TSRMLS_CC);
if (zend_eval_string(eval_code, NULL, eval_name TSRMLS_CC) == FAILURE) {
efree(eval_code);
efree(eval_name);
php_error_docref(NULL TSRMLS_CC, E_ERROR, "Cannot create temporary function");
zend_hash_del(EG(function_table), RUNKIT_TEMP_FUNCNAME, sizeof(RUNKIT_TEMP_FUNCNAME));
return FAILURE;
}
efree(eval_code);
efree(eval_name);
if (zend_hash_find(EG(function_table), RUNKIT_TEMP_FUNCNAME, sizeof(RUNKIT_TEMP_FUNCNAME), (void*)pfe) == FAILURE) {
php_error_docref(NULL TSRMLS_CC, E_ERROR, "Unexpected inconsistency during create_function");
return FAILURE;
}
return SUCCESS;
}
/* }}} */
/* {{{ php_runkit_destroy_misplaced_functions
Wipe old internal functions that were renamed to new targets
They'll get replaced soon enough */
int php_runkit_destroy_misplaced_functions(void *pDest TSRMLS_DC)
{
zend_hash_key *hash_key = (zend_hash_key *) pDest;
zend_function *fe = NULL;
if (!hash_key->nKeyLength) {
/* Nonsense, skip it */
return ZEND_HASH_APPLY_REMOVE;
}
if (zend_hash_find(EG(function_table), hash_key->arKey, hash_key->nKeyLength, (void *) &fe) == SUCCESS) {
PHP_RUNKIT_FREE_INTERNAL_FUNCTION_NAME(fe);
}
#if PHP_MAJOR_VERSION >= 6
zend_u_hash_del(EG(function_table), hash_key->type, hash_key->u.unicode, hash_key->nKeyLength);
#else
zend_hash_del(EG(function_table), hash_key->arKey, hash_key->nKeyLength);
#endif
return ZEND_HASH_APPLY_REMOVE;
}
/* }}} */
/* {{{ php_runkit_restore_internal_functions
Cleanup after modifications to internal functions */
int php_runkit_restore_internal_functions(RUNKIT_53_TSRMLS_ARG(void *pDest), int num_args, va_list args, zend_hash_key *hash_key)
{
zend_internal_function *fe = (zend_internal_function *) pDest;
#ifdef ZTS
#if (RUNKIT_UNDER53)
void ***tsrm_ls = va_arg(args, void***); /* NULL when !defined(ZTS) */
#endif
#endif
if (!hash_key->nKeyLength) {
/* Nonsense, skip it */
return ZEND_HASH_APPLY_REMOVE;
}
#if PHP_MAJOR_VERSION >= 6
zend_u_hash_update(EG(function_table), hash_key->type, hash_key->u.unicode, hash_key->nKeyLength, (void*)fe, sizeof(zend_function), NULL);
#else
zend_hash_update(EG(function_table), hash_key->arKey, hash_key->nKeyLength, (void*)fe, sizeof(zend_function), NULL);
#endif
/* It's possible for restored internal functions to now be blocking a ZEND_USER_FUNCTION
* which will screw up post-request cleanup.
* Avoid this by restoring internal functions to the front of the list where they won't be in the way
*/
php_runkit_hash_move_to_front(EG(function_table), php_runkit_hash_get_bucket(EG(function_table), hash_key));
return ZEND_HASH_APPLY_REMOVE;
}
/* }}} */
/* {{{ php_runkit_function_add_or_update */
static void php_runkit_function_add_or_update(INTERNAL_FUNCTION_PARAMETERS, int add_or_update) {
PHP_RUNKIT_DECL_STRING_PARAM(funcname)
PHP_RUNKIT_DECL_STRING_PARAM(funcname_lower)
const PHP_RUNKIT_DECL_STRING_PARAM(arguments)
const PHP_RUNKIT_DECL_STRING_PARAM(phpcode)
const PHP_RUNKIT_DECL_STRING_PARAM(doc_comment)
zend_bool return_ref = 0;
zend_function *orig_fe = NULL, *source_fe = NULL, *fe, func;
zval ***args;
int remove_temp = 0;
long argc = ZEND_NUM_ARGS();
long opt_arg_pos = 2;
if (argc < 1 || zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, 1 TSRMLS_CC, "s",
&funcname, &funcname_len) == FAILURE || !funcname_len) {
php_error_docref(NULL TSRMLS_CC, E_ERROR, "Function name should not be empty");
RETURN_FALSE;
}
if (argc < 2) {
php_error_docref(NULL TSRMLS_CC, E_ERROR, "Function body should be provided");
RETURN_FALSE;
}
if (!php_runkit_parse_args_to_zvals(argc, &args TSRMLS_CC)) {
RETURN_FALSE;
}
if (!php_runkit_parse_function_arg(argc, args, 1, &source_fe, &arguments, &arguments_len, &phpcode, &phpcode_len, &opt_arg_pos, "Function" TSRMLS_CC)) {
efree(args);
RETURN_FALSE;
}
if (argc > opt_arg_pos && !source_fe) {
switch (Z_TYPE_PP(args[opt_arg_pos])) {
case IS_NULL:
case IS_STRING:
case IS_LONG:
case IS_DOUBLE:
case IS_BOOL:
convert_to_boolean_ex(args[opt_arg_pos]);
return_ref = Z_BVAL_PP(args[opt_arg_pos]);
break;
default:
php_error_docref(NULL TSRMLS_CC, E_WARNING, "return_ref should be boolean");
}
opt_arg_pos++;
}
php_runkit_parse_doc_comment_arg(argc, args, opt_arg_pos, &doc_comment, &doc_comment_len TSRMLS_CC);
efree(args);
if (add_or_update == HASH_UPDATE &&
php_runkit_fetch_function(PHP_RUNKIT_STRING_TYPE(funcname), funcname, funcname_len, &orig_fe, PHP_RUNKIT_FETCH_FUNCTION_REMOVE TSRMLS_CC) == FAILURE) {
RETURN_FALSE;
}
/* UTODO */
PHP_RUNKIT_NORMALIZE_NAMESPACE(funcname);
PHP_RUNKIT_MAKE_LOWERCASE_COPY(funcname);
if (funcname_lower == NULL) {
PHP_RUNKIT_NOT_ENOUGH_MEMORY_ERROR;
RETURN_FALSE;
}
if (add_or_update == HASH_ADD && zend_hash_exists(EG(function_table), funcname_lower, funcname_len + 1)) {
efree(funcname_lower);
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Function %s() already exists", funcname);
RETURN_FALSE;
}
if (!source_fe) {
if (php_runkit_generate_lambda_method(arguments, arguments_len, phpcode, phpcode_len, &source_fe,
return_ref TSRMLS_CC) == FAILURE) {
efree(funcname_lower);
RETURN_FALSE;
}
remove_temp = 1;
}
func = *source_fe;
php_runkit_function_copy_ctor(&func, funcname, funcname_len TSRMLS_CC);
func.common.scope = NULL;
#if RUNKIT_ABOVE53
func.common.fn_flags &= ~ZEND_ACC_CLOSURE;
#endif
if (doc_comment == NULL && source_fe->op_array.doc_comment == NULL &&
orig_fe && orig_fe->type == ZEND_USER_FUNCTION && orig_fe->op_array.doc_comment) {
doc_comment = orig_fe->op_array.doc_comment;
doc_comment_len = orig_fe->op_array.doc_comment_len;
}
php_runkit_modify_function_doc_comment(&func, doc_comment, doc_comment_len);
if (add_or_update == HASH_UPDATE) {
php_runkit_remove_function_from_reflection_objects(orig_fe TSRMLS_CC);
php_runkit_destroy_misplaced_internal_function(orig_fe, funcname_lower, funcname_lower_len TSRMLS_CC);
#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4) || (PHP_MAJOR_VERSION > 5)
php_runkit_clear_all_functions_runtime_cache(TSRMLS_C);
#endif
}
if (zend_hash_add_or_update(EG(function_table), funcname_lower, funcname_lower_len + 1, &func, sizeof(zend_function), NULL, add_or_update) == FAILURE) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to add new function");
efree(funcname_lower);
if (remove_temp && zend_hash_del(EG(function_table), RUNKIT_TEMP_FUNCNAME, sizeof(RUNKIT_TEMP_FUNCNAME)) == FAILURE) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to remove temporary function entry");
}
zend_function_dtor(&func);
RETURN_FALSE;
}
if (remove_temp && zend_hash_del(EG(function_table), RUNKIT_TEMP_FUNCNAME, sizeof(RUNKIT_TEMP_FUNCNAME)) == FAILURE) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to remove temporary function entry");
}
if (zend_hash_find(EG(function_table), funcname_lower, funcname_lower_len + 1, (void*)&fe) == FAILURE ||
!fe) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to locate newly added function");
efree(funcname_lower);
RETURN_FALSE;
}
efree(funcname_lower);
RETURN_TRUE;
}
/* }}} */
/* *****************
* Functions API *
***************** */
/* {{{ proto bool runkit_function_add(string funcname, string arglist, string code[, bool return_by_reference=NULL[, string doc_comment]])
proto bool runkit_function_add(string funcname, closure code[, string doc_comment])
Add a new function, similar to create_function, but allows specifying name
*/
PHP_FUNCTION(runkit_function_add)
{
php_runkit_function_add_or_update(INTERNAL_FUNCTION_PARAM_PASSTHRU, HASH_ADD);
}
/* }}} */
/* {{{ proto bool runkit_function_remove(string funcname)
*/
PHP_FUNCTION(runkit_function_remove)
{
PHP_RUNKIT_DECL_STRING_PARAM(fname)
PHP_RUNKIT_DECL_STRING_PARAM(fname_lower)
int result;
zend_function *fe;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, PHP_RUNKIT_STRING_SPEC "/", PHP_RUNKIT_STRING_PARAM(fname)) == FAILURE) {
RETURN_FALSE;
}
if (php_runkit_fetch_function(PHP_RUNKIT_STRING_TYPE(funcname), fname, fname_len, &fe, PHP_RUNKIT_FETCH_FUNCTION_REMOVE TSRMLS_CC) == FAILURE) {
RETURN_FALSE;
}
PHP_RUNKIT_NORMALIZE_NAMESPACE(fname);
PHP_RUNKIT_MAKE_LOWERCASE_COPY(fname);
if (fname_lower == NULL) {
PHP_RUNKIT_NOT_ENOUGH_MEMORY_ERROR;
RETURN_FALSE;
}
php_runkit_remove_function_from_reflection_objects(fe TSRMLS_CC);
php_runkit_destroy_misplaced_internal_function(fe, fname_lower, fname_lower_len TSRMLS_CC);
result = (zend_hash_del(EG(function_table), fname_lower, fname_lower_len + 1) == SUCCESS);
efree(fname_lower);
#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4) || (PHP_MAJOR_VERSION > 5)
php_runkit_clear_all_functions_runtime_cache(TSRMLS_C);
#endif
RETURN_BOOL(result);
}
/* }}} */
#define PHP_RUNKIT_FUNCTION_PARSE_RENAME_COPY_PARAMS \
PHP_RUNKIT_DECL_STRING_PARAM(sfunc) \
PHP_RUNKIT_DECL_STRING_PARAM(dfunc) \
PHP_RUNKIT_DECL_STRING_PARAM(sfunc_lower) \
PHP_RUNKIT_DECL_STRING_PARAM(dfunc_lower) \
\
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, \
PHP_RUNKIT_STRING_SPEC "/" PHP_RUNKIT_STRING_SPEC "/", \
PHP_RUNKIT_STRING_PARAM(sfunc), \
PHP_RUNKIT_STRING_PARAM(dfunc)) == FAILURE ) { \
RETURN_FALSE; \
} \
\
/* UTODO */ \
PHP_RUNKIT_NORMALIZE_NAMESPACE(dfunc) \
PHP_RUNKIT_MAKE_LOWERCASE_COPY(dfunc); \
if (dfunc_lower == NULL) { \
PHP_RUNKIT_NOT_ENOUGH_MEMORY_ERROR; \
RETURN_FALSE; \
} \
\
if (zend_hash_exists(EG(function_table), dfunc_lower, dfunc_len + 1)) { \
efree(dfunc_lower); \
php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s() already exists", dfunc); \
RETURN_FALSE; \
}
/* {{{ proto bool runkit_function_rename(string funcname, string newname)
*/
PHP_FUNCTION(runkit_function_rename)
{
zend_function func, *sfe;
PHP_RUNKIT_FUNCTION_PARSE_RENAME_COPY_PARAMS;
if (php_runkit_fetch_function(PHP_RUNKIT_STRING_TYPE(sfunc), sfunc, sfunc_len, &sfe, PHP_RUNKIT_FETCH_FUNCTION_RENAME TSRMLS_CC) == FAILURE) {
efree(dfunc_lower);
RETURN_FALSE;
}
PHP_RUNKIT_NORMALIZE_NAMESPACE(sfunc);
PHP_RUNKIT_MAKE_LOWERCASE_COPY(sfunc);
if (sfunc_lower == NULL) {
efree(dfunc_lower);
PHP_RUNKIT_NOT_ENOUGH_MEMORY_ERROR;
RETURN_FALSE;
}
func = *sfe;
php_runkit_function_copy_ctor(&func, dfunc, dfunc_len TSRMLS_CC);
php_runkit_remove_function_from_reflection_objects(sfe TSRMLS_CC);
php_runkit_destroy_misplaced_internal_function(sfe, sfunc_lower, sfunc_lower_len TSRMLS_CC);
if (zend_hash_del(EG(function_table), sfunc_lower, sfunc_lower_len + 1) == FAILURE) {
efree(dfunc_lower);
efree(sfunc_lower);
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error removing reference to old function name %s()", sfunc);
PHP_RUNKIT_FREE_INTERNAL_FUNCTION_NAME(&func);
zend_function_dtor(&func);
RETURN_FALSE;
}
efree(sfunc_lower);
if (zend_hash_add(EG(function_table), dfunc_lower, dfunc_lower_len + 1, &func, sizeof(zend_function), NULL) == FAILURE) {
efree(dfunc_lower);
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to add reference to new function name %s()", dfunc);
PHP_RUNKIT_FREE_INTERNAL_FUNCTION_NAME(&func);
zend_function_dtor(&func);
RETURN_FALSE;
}
php_runkit_add_to_misplaced_internal_functions(&func, dfunc_lower, dfunc_lower_len TSRMLS_CC);
efree(dfunc_lower);
#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4) || (PHP_MAJOR_VERSION > 5)
php_runkit_clear_all_functions_runtime_cache(TSRMLS_C);
#endif
RETURN_TRUE;
}
/* }}} */
/* {{{ proto bool runkit_function_redefine(string funcname, string arglist, string code[, bool return_by_reference=NULL[, string doc_comment]])
* proto bool runkit_function_redefine(string funcname, closure code[, string doc_comment])
*/
PHP_FUNCTION(runkit_function_redefine)
{
php_runkit_function_add_or_update(INTERNAL_FUNCTION_PARAM_PASSTHRU, HASH_UPDATE);
}
/* }}} */
/* {{{ proto bool runkit_function_copy(string funcname, string targetname)
*/
PHP_FUNCTION(runkit_function_copy)
{
zend_function fe, *sfe;
PHP_RUNKIT_FUNCTION_PARSE_RENAME_COPY_PARAMS;
if (php_runkit_fetch_function(PHP_RUNKIT_STRING_TYPE(sfunc), sfunc, sfunc_len, &sfe, PHP_RUNKIT_FETCH_FUNCTION_INSPECT TSRMLS_CC) == FAILURE) {
efree(dfunc_lower);
RETURN_FALSE;
}
PHP_RUNKIT_NORMALIZE_NAMESPACE(sfunc);
PHP_RUNKIT_MAKE_LOWERCASE_COPY(sfunc);
if (sfunc_lower == NULL) {
efree(dfunc_lower);
PHP_RUNKIT_NOT_ENOUGH_MEMORY_ERROR;
RETURN_FALSE;
}
fe = *sfe;
php_runkit_function_copy_ctor(&fe, dfunc, dfunc_len TSRMLS_CC);
php_runkit_add_to_misplaced_internal_functions(&fe, dfunc_lower, dfunc_lower_len TSRMLS_CC);
if (zend_hash_add(EG(function_table), dfunc_lower, dfunc_len + 1, &fe, sizeof(zend_function), NULL) == FAILURE) {
efree(dfunc_lower);
efree(sfunc_lower);
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to add refernce to new function name %s()", dfunc);
PHP_RUNKIT_FREE_INTERNAL_FUNCTION_NAME(&fe);
zend_function_dtor(&fe);
RETURN_FALSE;
}
efree(dfunc_lower);
efree(sfunc_lower);
RETURN_TRUE;
}
/* }}} */
#endif /* PHP_RUNKIT_MANIPULATION */
/* {{{ proto bool runkit_return_value_used(void)
Does the calling function do anything with our return value? */
PHP_FUNCTION(runkit_return_value_used)
{
zend_execute_data *ptr = EG(current_execute_data)->prev_execute_data;
if (!ptr) {
/* main() */
RETURN_FALSE;
}
#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 4) || (PHP_MAJOR_VERSION >= 6)
RETURN_BOOL(!(ptr->opline->result_type & EXT_TYPE_UNUSED));
#else
RETURN_BOOL(!(ptr->opline->result.u.EA.type & EXT_TYPE_UNUSED));
#endif
}
/* }}} */
/*
* 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
*/