-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcg_bcode.c
453 lines (404 loc) · 11.2 KB
/
cg_bcode.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
/*
+----------------------------------------------------------------------+
| PHP Version 7 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2015 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 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_01.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: |
+----------------------------------------------------------------------+
*/
/* $Id$ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include "ext/standard/info.h"
#include "zend_smart_str.h"
#include "php_cg_bcode.h"
#include "cg_bcode_arginfo.h"
#ifndef TSRMLS_CC
#define TSRMLS_CC // Do nothing since it has been removed since PHP 8
#endif
/* If you declare any globals in php_cg_bcode.h uncomment this:
ZEND_DECLARE_MODULE_GLOBALS(cg_bcode)
*/
/* True global resources - no need for thread safety here */
// static int le_cg_bcode;
/* The previous line is meant for vim and emacs, so it can correctly fold and
unfold functions in source code. See the corresponding marks just before
function definition, where the functions purpose is also documented. Please
follow this convention for the convenience of others editing your code.
*/
/* {{{ proto string bencode(mixed php_variable)
*/
PHP_FUNCTION(bencode)
{
int argc = ZEND_NUM_ARGS();
zval *php_variable = NULL;
smart_str buf = {0};
if (zend_parse_parameters(argc TSRMLS_CC, "z", &php_variable) == FAILURE)
return;
php_bencode_encode(&buf, php_variable);
smart_str_0(&buf);
if (buf.s) {
RETURN_STR(buf.s);
} else {
smart_str_free(&buf);
RETURN_EMPTY_STRING();
}
}
/* }}} */
static void php_bencode_decode_str(zval *return_value, char *str, size_t *pos, size_t *str_len) /* {{{ */
{
size_t len = 0;
smart_str buf = {0};
while (*pos < *str_len && str[*pos] != ':') {
smart_str_appendc(&buf, str[*pos]);
(*pos)++;
}
if (str[*pos] != ':') {
zend_error(E_WARNING, "Invalid bencoded-string, expected semicolon, stop at position %lu.", *pos);
RETURN_NULL();
}
(*pos)++;
smart_str_0(&buf);
len = atoi(ZSTR_VAL(buf.s));
smart_str_free(&buf);
if (len > 0 && *pos + len - 1 < *str_len) {
size_t i;
for (i = 0; i < len; i++, (*pos)++) {
smart_str_appendc(&buf, str[*pos]);
}
smart_str_0(&buf);
RETVAL_STR(buf.s);
} else {
RETVAL_EMPTY_STRING();
}
}
/* }}} */
static void php_bencode_decode_int(zval *return_value, char *str, size_t *pos, size_t *str_len) /* {{{ */
{
int len = 0;
double d;
smart_str buf = {0};
(*pos)++;
while (*pos < *str_len && str[*pos] != PHP_BENCODE_END_STRUCTURE) {
smart_str_appendc(&buf, str[*pos]);
(*pos)++;
len++;
}
smart_str_0(&buf);
if (str[*pos] != PHP_BENCODE_END_STRUCTURE) {
smart_str_free(&buf);
zend_error(E_WARNING, "Invalid bencoded-integer, expected 'e'.");
RETURN_NULL();
}
(*pos)++;
ZVAL_STRINGL(return_value, ZSTR_VAL(buf.s), len);
d = zend_strtod(ZSTR_VAL(buf.s), NULL);
if (d <= ZEND_LONG_MAX && d >= ZEND_LONG_MIN) {
convert_to_long(return_value);
}
smart_str_free(&buf);
}
/* }}} */
static void php_bencode_decode_list(zval *return_value, char *str, size_t *pos, size_t *str_len) /* {{{ */
{
array_init(return_value);
(*pos)++;
while (*pos < *str_len && str[*pos] != PHP_BENCODE_END_STRUCTURE) {
zval list_value;
php_bencode_decode(&list_value, str, pos, str_len);
zend_hash_next_index_insert(Z_ARRVAL_P(return_value), &list_value);
}
(*pos)++;
}
/* }}} */
static void php_bencode_decode_dict(zval *return_value, char *str, size_t *pos, size_t *str_len) /* {{{ */
{
array_init(return_value);
(*pos)++;
while (*pos < *str_len && str[*pos] != PHP_BENCODE_END_STRUCTURE) {
zval dict_key, dict_value;
php_bencode_decode_str(&dict_key, str, pos, str_len);
php_bencode_decode(&dict_value, str, pos, str_len);
if (Z_TYPE(dict_key) == IS_NULL) break;
if (Z_TYPE(dict_value) != IS_NULL) {
add_assoc_zval(return_value, Z_STRVAL(dict_key), &dict_value);
}
}
(*pos)++;
}
/* }}} */
PHP_CG_BCODE_API void php_bencode_decode(zval *return_value, char *str, size_t *pos, size_t *str_len) /* {{{ */
{
if (*str_len > 0 && *pos < *str_len) {
switch (str[*pos]) {
case PHP_BENCODE_TYPE_LIST:
php_bencode_decode_list(return_value, str, pos, str_len);
break;
case PHP_BENCODE_TYPE_DICTIONARY:
php_bencode_decode_dict(return_value, str, pos, str_len);
break;
case PHP_BENCODE_TYPE_INTEGER:
php_bencode_decode_int(return_value, str, pos, str_len);
break;
default:
php_bencode_decode_str(return_value, str, pos, str_len);
}
}
}
/* }}} */
/* {{{ proto mixed bdecode(string bencoded_str)
*/
PHP_FUNCTION(bdecode)
{
char *bencoded_str = NULL;
int argc = ZEND_NUM_ARGS();
size_t bencoded_str_len;
size_t pos = 0;
if (zend_parse_parameters(argc TSRMLS_CC, "s", &bencoded_str, &bencoded_str_len) == FAILURE)
return;
if (bencoded_str_len > 0) {
php_bencode_decode(return_value, bencoded_str, &pos, &bencoded_str_len);
} else {
RETVAL_NULL();
}
}
/* }}} */
static inline int php_bencode_is_valid_double(double d) /* {{{ */
{
return !zend_isinf(d) && !zend_isnan(d);
}
/* }}} */
// Copied from ext/standard/array.c
static int php_bencode_key_compare_string(
#if PHP_VERSION_ID < 80000
const void *a, const void *b
#else
Bucket *f, Bucket *s
#endif
) /* {{{ */
{
#if PHP_VERSION_ID < 80000
Bucket *f = (Bucket *) a;
Bucket *s = (Bucket *) b;
#endif
char *s1, *s2;
size_t l1, l2;
char buf1[MAX_LENGTH_OF_LONG + 1];
char buf2[MAX_LENGTH_OF_LONG + 1];
if (f->key) {
s1 = f->key->val;
l1 = f->key->len;
} else {
s1 = zend_print_long_to_buf(buf1 + sizeof(buf1) - 1, f->h);
l1 = buf1 + sizeof(buf1) - 1 - s1;
}
if (s->key) {
s2 = s->key->val;
l2 = s->key->len;
} else {
s2 = zend_print_long_to_buf(buf2 + sizeof(buf2) - 1, s->h);
l2 = buf2 + sizeof(buf2) - 1 - s1;
}
return zend_binary_strcmp(s1, l1, s2, l2);
}
/* }}} */
static void php_bencode_encode_array(smart_str *buf, zval *val) /* {{{ */
{
int num_elements = 0;
char mode;
HashTable *ht;
if (Z_TYPE_P(val) == IS_ARRAY) {
ht = Z_ARRVAL_P(val);
} else {
ht = Z_OBJPROP_P(val);
mode = PHP_BENCODE_TYPE_DICTIONARY;
}
#if PHP_VERSION_ID < 70300
if (ht && ZEND_HASH_GET_APPLY_COUNT(ht) > 1) {
#else
if (GC_FLAGS(ht) & GC_PROTECTED) {
#endif
zend_error(E_WARNING, "recursion detected");
return;
}
num_elements = ht ? zend_hash_num_elements(ht) : 0;
if (Z_TYPE_P(val) == IS_ARRAY) {
if (num_elements > 0) {
zend_string *key;
zend_ulong index, idx;
idx = 0;
mode = PHP_BENCODE_TYPE_LIST;
ZEND_HASH_FOREACH_KEY(ht, index, key) {
if (key) {
mode = PHP_BENCODE_TYPE_DICTIONARY;
break;
} else {
if (index != idx) {
mode = PHP_BENCODE_TYPE_DICTIONARY;
break;
}
}
idx++;
} ZEND_HASH_FOREACH_END();
}else{
mode = PHP_BENCODE_TYPE_LIST;
}
}
smart_str_appendc(buf, mode);
if (num_elements > 0) {
zend_string *key;
zval *data;
zend_ulong index;
HashTable sorted_ht;
if (mode == PHP_BENCODE_TYPE_DICTIONARY) {
zend_hash_init(&sorted_ht, num_elements, NULL, NULL, 1);
zend_hash_copy(&sorted_ht, ht, NULL);
zend_hash_sort(&sorted_ht, php_bencode_key_compare_string, 0);
ht = &sorted_ht;
}
ZEND_HASH_FOREACH_KEY_VAL_IND(ht, index, key, data) {
ZVAL_DEREF(data);
if (mode == PHP_BENCODE_TYPE_DICTIONARY) {
if (key) {
if (ZSTR_VAL(key)[0] == '\0' && Z_TYPE_P(val) == IS_OBJECT) {
continue;
}
smart_str_append_long(buf, ZSTR_LEN(key));
smart_str_appendc(buf, ':');
smart_str_appendl(buf, ZSTR_VAL(key), ZSTR_LEN(key));
} else {
char key_buf[MAX_LENGTH_OF_LONG + 1];
char *res = zend_print_long_to_buf(key_buf + sizeof(key_buf) - 1, index);
smart_str_append_long(buf, key_buf + sizeof(key_buf) - 1 - res);
smart_str_appendc(buf, ':');
smart_str_appendl(buf, res, key_buf + sizeof(key_buf) - 1 - res);
}
}
php_bencode_encode(buf, data);
} ZEND_HASH_FOREACH_END();
if (mode == PHP_BENCODE_TYPE_DICTIONARY) {
zend_hash_destroy(&sorted_ht);
}
}
smart_str_appendc(buf, PHP_BENCODE_END_STRUCTURE);
}
/* }}} */
PHP_CG_BCODE_API void php_bencode_encode(smart_str *buf, zval *val) /* {{{ */
{
again:
switch (Z_TYPE_P(val))
{
case IS_NULL:
break;
case IS_TRUE:
smart_str_appendl(buf, "i1e", 3);
break;
case IS_FALSE:
smart_str_appendl(buf, "i0e", 3);
break;
case IS_LONG:
smart_str_appendc(buf, PHP_BENCODE_TYPE_INTEGER);
smart_str_append_long(buf, Z_LVAL_P(val));
smart_str_appendc(buf, PHP_BENCODE_END_STRUCTURE);
break;
case IS_DOUBLE:
smart_str_appendc(buf, PHP_BENCODE_TYPE_INTEGER);
if(php_bencode_is_valid_double(Z_DVAL_P(val))){
smart_str_append_long(buf, zval_get_long(val));
}else{
zend_error(E_WARNING, "cg_bcode: Cannot convert infinite or NaN to bencode, encoded as 0");
smart_str_appendc(buf, '0');
}
smart_str_appendc(buf, PHP_BENCODE_END_STRUCTURE);
break;
case IS_STRING:
smart_str_append_long(buf, Z_STRLEN_P(val));
smart_str_appendc(buf, ':');
smart_str_appendl(buf, Z_STRVAL_P(val), Z_STRLEN_P(val));
break;
case IS_OBJECT:
case IS_ARRAY:
php_bencode_encode_array(buf, val);
break;
case IS_REFERENCE:
val = Z_REFVAL_P(val);
goto again;
default:
zend_error(E_WARNING, "cg_bcode: Unsuppported variable type.");
break;
}
}
/* }}} */
/* {{{ PHP_MINIT_FUNCTION
*/
PHP_MINIT_FUNCTION(cg_bcode)
{
/* If you have INI entries, uncomment these lines
REGISTER_INI_ENTRIES();
*/
return SUCCESS;
}
/* }}} */
/* {{{ PHP_MSHUTDOWN_FUNCTION
*/
PHP_MSHUTDOWN_FUNCTION(cg_bcode)
{
/* uncomment this line if you have INI entries
UNREGISTER_INI_ENTRIES();
*/
return SUCCESS;
}
/* }}} */
/* {{{ PHP_MINFO_FUNCTION
*/
PHP_MINFO_FUNCTION(cg_bcode)
{
php_info_print_table_start();
php_info_print_table_row(2, "cg_bcode support", "enabled");
php_info_print_table_row(2, "bencode version", PHP_CG_BCODE_VERSION);
php_info_print_table_end();
/* Remove comments if you have entries in php.ini
DISPLAY_INI_ENTRIES();
*/
}
/* }}} */
/* {{{ cg_bcode_module_entry
*/
zend_module_entry cg_bcode_module_entry = {
STANDARD_MODULE_HEADER,
"cg_bcode",
ext_functions,
PHP_MINIT(cg_bcode),
PHP_MSHUTDOWN(cg_bcode),
NULL, /* Replace with NULL if there's nothing to do at request start */
NULL, /* Replace with NULL if there's nothing to do at request end */
PHP_MINFO(cg_bcode),
PHP_CG_BCODE_VERSION,
STANDARD_MODULE_PROPERTIES
};
/* }}} */
#ifdef COMPILE_DL_CG_BCODE
#ifdef ZTS
ZEND_TSRMLS_CACHE_DEFINE();
#endif
ZEND_GET_MODULE(cg_bcode)
#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
*/