forked from xdebug/xdebug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xdebug_superglobals.c
212 lines (177 loc) · 6.49 KB
/
xdebug_superglobals.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
/*
+----------------------------------------------------------------------+
| Xdebug |
+----------------------------------------------------------------------+
| Copyright (c) 2002-2011 Derick Rethans |
+----------------------------------------------------------------------+
| This source file is subject to version 1.0 of the Xdebug license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| http://xdebug.derickrethans.nl/license.php |
| If you did not receive a copy of the Xdebug 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. |
+----------------------------------------------------------------------+
| Authors: Harald Radi <[email protected]> |
+----------------------------------------------------------------------+
*/
#include "php_xdebug.h"
#include "xdebug_private.h"
#include "xdebug_var.h"
#include "xdebug_compat.h"
#include "xdebug_superglobals.h"
#include "SAPI.h"
extern ZEND_DECLARE_MODULE_GLOBALS(xdebug);
void xdebug_superglobals_dump_dtor(void *user, void *ptr)
{
free(ptr);
}
static void dump_hash_elem(zval *z, char *name, long index, char *elem, int html, xdebug_str *str TSRMLS_DC)
{
int len;
if (html) {
if (elem) {
xdebug_str_add(str, xdebug_sprintf("<tr><td colspan='2' align='right' bgcolor='#eeeeec' valign='top'><pre>$%s['%s'] =</pre></td>", name, elem), 1);
} else {
xdebug_str_add(str, xdebug_sprintf("<tr><td colspan='2' align='right' bgcolor='#eeeeec' valign='top'><pre>$%s[%ld] =</pre></td>", name, index), 1);
}
}
if (z != NULL) {
char *val;
if (html) {
val = xdebug_get_zval_value_fancy(NULL, z, &len, 0, NULL TSRMLS_CC);
#if HAVE_PHP_MEMORY_USAGE
xdebug_str_add(str, xdebug_sprintf("<td colspan='3' bgcolor='#eeeeec'>"), 1);
#else
xdebug_str_add(str, xdebug_sprintf("<td colspan='2' bgcolor='#eeeeec'>"), 1);
#endif
xdebug_str_addl(str, val, len, 0);
xdebug_str_add(str, "</td>", 0);
} else {
val = xdebug_get_zval_value(z, 0, NULL);
xdebug_str_add(str, xdebug_sprintf("\n $%s['%s'] = %s", name, elem, val), 1);
}
xdfree(val);
} else {
/* not found */
if (html) {
#if HAVE_PHP_MEMORY_USAGE
xdebug_str_add(str, "<td colspan='3' bgcolor='#eeeeec'><i>undefined</i></td>", 0);
#else
xdebug_str_add(str, "<td colspan='2' bgcolor='#eeeeec'><i>undefined</i></td>", 0);
#endif
} else {
xdebug_str_add(str, xdebug_sprintf("\n $%s['%s'] is undefined", name, elem), 1);
}
}
if (html) {
xdebug_str_add(str, "</tr>\n", 0);
}
}
static int dump_hash_elem_va(void *pDest XDEBUG_ZEND_HASH_APPLY_TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key)
{
int html;
char *name;
xdebug_str *str;
#if defined(ZTS) && (!defined(PHP_VERSION_ID) || PHP_VERSION_ID < 50300)
void ***tsrm_ls;
#endif
name = va_arg(args, char *);
html = va_arg(args, int);
str = va_arg(args, xdebug_str *);
#if defined(ZTS) && (!defined(PHP_VERSION_ID) || PHP_VERSION_ID < 50300)
tsrm_ls = va_arg(args, void ***);
#endif
if (hash_key->nKeyLength == 0) {
dump_hash_elem(*((zval **) pDest), name, hash_key->h, NULL, html, str TSRMLS_CC);
} else {
dump_hash_elem(*((zval **) pDest), name, 0, hash_key->arKey, html, str TSRMLS_CC);
}
return SUCCESS;
}
static void dump_hash(xdebug_llist *l, char *name, int name_len, int html, xdebug_str *str TSRMLS_DC)
{
zval **z;
HashTable *ht = NULL;
xdebug_llist_element *elem;
if (!XDEBUG_LLIST_COUNT(l)) {
return;
}
if (zend_hash_find(&EG(symbol_table), name, name_len, (void **) &z) == SUCCESS) {
if (Z_TYPE_PP(z) == IS_ARRAY) {
ht = Z_ARRVAL_PP(z);
}
}
if (html) {
#if HAVE_PHP_MEMORY_USAGE
xdebug_str_add(str, xdebug_sprintf("<tr><th colspan='5' align='left' bgcolor='#e9b96e'>Dump <i>$%s</i></th></tr>\n", name), 1);
#else
xdebug_str_add(str, xdebug_sprintf("<tr><th colspan='4' align='left' bgcolor='#e9b96e'>Dump <i>$%s</i></th></tr>\n", name), 1);
#endif
} else {
xdebug_str_add(str, xdebug_sprintf("\nDump $%s", name), 1);
}
elem = XDEBUG_LLIST_HEAD(l);
while (elem != NULL) {
if (ht && (*((char *) (elem->ptr)) == '*')) {
#if defined(ZTS) && (!defined(PHP_VERSION_ID) || PHP_VERSION_ID < 50300)
zend_hash_apply_with_arguments(ht, dump_hash_elem_va, 4, name, html, str TSRMLS_CC);
#else
zend_hash_apply_with_arguments(ht TSRMLS_CC, dump_hash_elem_va, 3, name, html, str);
#endif
} else if (ht && zend_hash_find(ht, elem->ptr, strlen(elem->ptr) + 1, (void **) &z) == SUCCESS) {
dump_hash_elem(*z, name, 0, elem->ptr, html, str TSRMLS_CC);
} else if(XG(dump_undefined)) {
dump_hash_elem(NULL, name, 0, elem->ptr, html, str TSRMLS_CC);
}
elem = XDEBUG_LLIST_NEXT(elem);
}
}
char* xdebug_get_printable_superglobals(int html TSRMLS_DC)
{
xdebug_str str = {0, 0, NULL};
dump_hash(&XG(server), "_SERVER", 8, html, &str TSRMLS_CC);
dump_hash(&XG(get), "_GET", 5, html, &str TSRMLS_CC);
dump_hash(&XG(post), "_POST", 6, html, &str TSRMLS_CC);
dump_hash(&XG(cookie), "_COOKIE", 8, html, &str TSRMLS_CC);
dump_hash(&XG(files), "_FILES", 7, html, &str TSRMLS_CC);
dump_hash(&XG(env), "_ENV", 5, html, &str TSRMLS_CC);
dump_hash(&XG(session), "_SESSION", 9, html, &str TSRMLS_CC);
dump_hash(&XG(request), "_REQUEST", 9, html, &str TSRMLS_CC);
return str.d;
}
void xdebug_superglobals_dump_tok(xdebug_llist *l, char *str)
{
char *tok, *sep = ",";
tok = strtok(str, sep);
while (tok != NULL) {
char *p = tok + strlen(tok) - 1;
while ((*tok == ' ') || (*tok == '\t')) {
tok++;
}
while ((p > tok) && ((*p == ' ') || (*p == '\t'))) {
p--;
}
*(p+1) = 0;
/* we need to strdup each element so that we can safely free it */
xdebug_llist_insert_next(l, NULL, strdup(tok));
tok = strtok(NULL, sep);
}
}
PHP_FUNCTION(xdebug_dump_superglobals)
{
int html = PG(html_errors);
char *superglobal_info = NULL;
if (html) {
php_printf("<table class='xdebug-superglobals' dir='ltr' border='1' cellspacing='0'>\n");
}
superglobal_info = xdebug_get_printable_superglobals(html TSRMLS_CC);
if (superglobal_info) {
php_printf("%s", xdebug_get_printable_superglobals(html TSRMLS_CC));
} else {
php_printf("<tr><td><i>No information about superglobals is available or configured.</i></td></tr>\n");
}
if (html) {
php_printf("</table>\n");
}
}