Merge branch 'R_2_5' [ci skip]
[m6w6/ext-http] / php_http_params.c
1 /*
2 +--------------------------------------------------------------------+
3 | PECL :: http |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted provided that the conditions mentioned |
7 | in the accompanying LICENSE file are met. |
8 +--------------------------------------------------------------------+
9 | Copyright (c) 2004-2014, Michael Wallner <mike@php.net> |
10 +--------------------------------------------------------------------+
11 */
12
13 #include "php_http_api.h"
14
15 static php_http_params_token_t def_param_sep = {",", 1}, *def_param_sep_ptr[] = {&def_param_sep, NULL};
16 static php_http_params_token_t def_arg_sep = {";", 1}, *def_arg_sep_ptr[] = {&def_arg_sep, NULL};
17 static php_http_params_token_t def_val_sep = {"=", 1}, *def_val_sep_ptr[] = {&def_val_sep, NULL};
18 static php_http_params_opts_t def_opts = {
19 {NULL, 0},
20 def_param_sep_ptr,
21 def_arg_sep_ptr,
22 def_val_sep_ptr,
23 {{0}},
24 PHP_HTTP_PARAMS_DEFAULT
25 };
26
27 php_http_params_opts_t *php_http_params_opts_default_get(php_http_params_opts_t *opts)
28 {
29 if (!opts) {
30 opts = emalloc(sizeof(*opts));
31 }
32
33 memcpy(opts, &def_opts, sizeof(def_opts));
34
35 return opts;
36 }
37
38 typedef struct php_http_params_state {
39 php_http_params_token_t input;
40 php_http_params_token_t param;
41 php_http_params_token_t arg;
42 php_http_params_token_t val;
43 struct {
44 zval *param;
45 zval *args;
46 zval *val;
47 } current;
48 unsigned quotes:1;
49 unsigned escape:1;
50 unsigned rfc5987:1;
51 } php_http_params_state_t;
52
53 static inline void sanitize_escaped(zval *zv)
54 {
55 if (Z_STRVAL_P(zv)[0] == '"' && Z_STRVAL_P(zv)[Z_STRLEN_P(zv) - 1] == '"') {
56 size_t deq_len = Z_STRLEN_P(zv) - 2;
57 char *deq = estrndup(Z_STRVAL_P(zv) + 1, deq_len);
58
59 zval_dtor(zv);
60 ZVAL_STR(zv, php_http_cs2zs(deq, deq_len));
61 }
62
63 php_stripcslashes(Z_STR_P(zv));
64 }
65
66 static inline void quote_string(zend_string **zs, zend_bool force)
67 {
68 int len = (*zs)->len;
69
70 *zs = php_addcslashes(*zs, 1, ZEND_STRL("\0..\37\173\\\""));
71
72 if (force || len != (*zs)->len || strpbrk((*zs)->val, "()<>@,;:\"[]?={} ")) {
73 int len = (*zs)->len + 2;
74
75 *zs = zend_string_extend(*zs, len, 0);
76
77 memmove(&(*zs)->val[1], (*zs)->val, (*zs)->len);
78 (*zs)->val[0] = '"';
79 (*zs)->val[len-1] = '"';
80 (*zs)->val[len] = '\0';
81
82 zend_string_forget_hash_val(*zs);
83 }
84 }
85
86 /* if (Z_TYPE_P(zv) == IS_STRING) {
87 size_t len = Z_STRLEN_P(zv);
88 zend_string *stripped = php_addcslashes(Z_STR_P(zv), 0,
89 ZEND_STRL("\0..\37\173\\\""));
90
91 if (len != stripped->len || strpbrk(stripped->val, "()<>@,;:\"[]?={} ")) {
92 size_t len = stripped->len + 2;
93 char *str = emalloc(len + 1);
94
95 str[0] = '"';
96 memcpy(&str[1], stripped->val, stripped->len);
97 str[len-1] = '"';
98 str[len] = '\0';
99
100 zval_dtor(zv);
101 zend_string_release(stripped);
102 ZVAL_STR(zv, php_http_cs2zs(str, len));
103 } else {
104 zval_dtor(zv);
105 ZVAL_STR(zv, stripped);
106 }
107 */
108
109 static inline void prepare_escaped(zval *zv)
110 {
111 if (Z_TYPE_P(zv) == IS_STRING) {
112 quote_string(&Z_STR_P(zv), 0);
113 } else {
114 zval_dtor(zv);
115 ZVAL_EMPTY_STRING(zv);
116 }
117 }
118
119 static inline void sanitize_urlencoded(zval *zv)
120 {
121 Z_STRLEN_P(zv) = php_raw_url_decode(Z_STRVAL_P(zv), Z_STRLEN_P(zv));
122 }
123
124 static inline void prepare_urlencoded(zval *zv)
125 {
126 zend_string *str = php_raw_url_encode(Z_STRVAL_P(zv), Z_STRLEN_P(zv));
127
128 zval_dtor(zv);
129 ZVAL_STR(zv, str);
130 }
131
132 static void sanitize_dimension(zval *zv)
133 {
134 zval arr, tmp, *cur = NULL;
135 char *var = NULL, *ptr = Z_STRVAL_P(zv), *end = Z_STRVAL_P(zv) + Z_STRLEN_P(zv);
136 long level = 0;
137
138 array_init(&arr);
139 cur = &arr;
140
141 while (ptr < end) {
142 if (!var) {
143 var = ptr;
144 }
145
146 switch (*ptr) {
147 case '[':
148 if (++level > PG(max_input_nesting_level)) {
149 zval_ptr_dtor(&arr);
150 php_error_docref(NULL, E_WARNING, "Max input nesting level of %ld exceeded", (long) PG(max_input_nesting_level));
151 return;
152 }
153 if (ptr - var == 0) {
154 ++var;
155 break;
156 }
157 /* no break */
158
159 case ']':
160
161 ZVAL_NULL(&tmp);
162 convert_to_array(cur);
163
164 if (ptr - var) {
165 char chr = *ptr;
166 *ptr = '\0';
167 cur = zend_symtable_str_update(Z_ARRVAL_P(cur), var, ptr - var, &tmp);
168 *ptr = chr;
169 } else {
170 cur = zend_hash_next_index_insert(Z_ARRVAL_P(cur), &tmp);
171 }
172
173 var = NULL;
174 break;
175 }
176
177 ++ptr;
178 }
179
180 if (zend_hash_num_elements(Z_ARRVAL(arr))) {
181 zval_dtor(zv);
182 ZVAL_COPY_VALUE(zv, &arr);
183 } else {
184 zval_ptr_dtor(&arr);
185 }
186 }
187
188 static inline void shift_key(php_http_buffer_t *buf, char *key_str, size_t key_len, const char *ass, size_t asl, unsigned flags);
189 static inline void shift_val(php_http_buffer_t *buf, zval *zvalue, const char *vss, size_t vsl, unsigned flags);
190
191 static void prepare_dimension(php_http_buffer_t *buf, php_http_buffer_t *keybuf, zval *zvalue, const char *pss, size_t psl, const char *vss, size_t vsl, unsigned flags)
192 {
193 HashTable *ht = HASH_OF(zvalue);
194 php_http_arrkey_t key;
195 zval *val;
196 php_http_buffer_t prefix;
197
198 if (!ZEND_HASH_GET_APPLY_COUNT(ht)) {
199 ZEND_HASH_INC_APPLY_COUNT(ht);
200 php_http_buffer_init(&prefix);
201 php_http_buffer_append(&prefix, keybuf->data, keybuf->used);
202
203 ZEND_HASH_FOREACH_KEY_VAL_IND(ht, key.h, key.key, val)
204 {
205 if (key.key && !*key.key->val) {
206 /* only public properties */
207 continue;
208 }
209
210 php_http_buffer_appends(&prefix, "[");
211 if (key.key) {
212 php_http_buffer_append(&prefix, key.key->val, key.key->len);
213 } else {
214 php_http_buffer_appendf(&prefix, "%lu", key.h);
215 }
216 php_http_buffer_appends(&prefix, "]");
217
218 if (Z_TYPE_P(val) == IS_ARRAY || Z_TYPE_P(val) == IS_OBJECT) {
219 prepare_dimension(buf, &prefix, val, pss, psl, vss, vsl, flags);
220 } else {
221 zend_string *cpy = zval_get_string(val);
222 zval tmp;
223
224 ZVAL_STR(&tmp, cpy);
225 shift_key(buf, prefix.data, prefix.used, pss, psl, flags);
226 shift_val(buf, &tmp, vss, vsl, flags);
227 zend_string_release(cpy);
228 }
229
230 php_http_buffer_cut(&prefix, keybuf->used, prefix.used - keybuf->used);
231 }
232 ZEND_HASH_FOREACH_END();
233 ZEND_HASH_DEC_APPLY_COUNT(ht);
234
235 php_http_buffer_dtor(&prefix);
236 }
237 }
238
239 static inline void sanitize_key(unsigned flags, const char *str, size_t len, zval *zv, zend_bool *rfc5987)
240 {
241 char *eos;
242 zend_string *zs = zend_string_init(str, len, 0);
243
244 zval_dtor(zv);
245 ZVAL_STR(zv, php_trim(zs, NULL, 0, 3));
246 zend_string_release(zs);
247
248 if (flags & PHP_HTTP_PARAMS_ESCAPED) {
249 sanitize_escaped(zv);
250 }
251
252 if (!Z_STRLEN_P(zv)) {
253 return;
254 }
255
256 eos = &Z_STRVAL_P(zv)[Z_STRLEN_P(zv)-1];
257 if (*eos == '*') {
258 *eos = '\0';
259 *rfc5987 = 1;
260 Z_STRLEN_P(zv) -= 1;
261 }
262
263 if (flags & PHP_HTTP_PARAMS_URLENCODED) {
264 sanitize_urlencoded(zv);
265 }
266
267 if (flags & PHP_HTTP_PARAMS_DIMENSION) {
268 sanitize_dimension(zv);
269 }
270 }
271
272 static inline void sanitize_rfc5987(zval *zv, char **language, zend_bool *latin1)
273 {
274 char *ptr;
275
276 /* examples:
277 * iso-8850-1'de'bl%f6der%20schei%df%21
278 * utf-8'de-DE'bl%c3%b6der%20schei%c3%9f%21
279 */
280
281 switch (Z_STRVAL_P(zv)[0]) {
282 case 'I':
283 case 'i':
284 if (!strncasecmp(Z_STRVAL_P(zv), "iso-8859-1", lenof("iso-8859-1"))) {
285 *latin1 = 1;
286 ptr = Z_STRVAL_P(zv) + lenof("iso-8859-1");
287 break;
288 }
289 /* no break */
290 case 'U':
291 case 'u':
292 if (!strncasecmp(Z_STRVAL_P(zv), "utf-8", lenof("utf-8"))) {
293 *latin1 = 0;
294 ptr = Z_STRVAL_P(zv) + lenof("utf-8");
295 break;
296 }
297 /* no break */
298 default:
299 return;
300 }
301
302 /* extract language */
303 if (*ptr == '\'') {
304 for (*language = ++ptr; *ptr && *ptr != '\''; ++ptr);
305 if (!*ptr) {
306 *language = NULL;
307 return;
308 }
309 *language = estrndup(*language, ptr - *language);
310
311 /* remainder */
312 ptr = estrdup(++ptr);
313 zval_dtor(zv);
314 ZVAL_STR(zv, php_http_cs2zs(ptr, strlen(ptr)));
315 }
316 }
317
318 static inline void sanitize_rfc5988(char *str, size_t len, zval *zv)
319 {
320 zend_string *zs = zend_string_init(str, len, 0);
321
322 zval_dtor(zv);
323 ZVAL_STR(zv, php_trim(zs, " ><", 3, 3));
324 zend_string_release(zs);
325 }
326
327 static inline void prepare_rfc5988(zval *zv)
328 {
329 if (Z_TYPE_P(zv) != IS_STRING) {
330 zval_dtor(zv);
331 ZVAL_EMPTY_STRING(zv);
332 }
333 }
334
335 static void utf8encode(zval *zv)
336 {
337 size_t pos, len = 0;
338 unsigned char *ptr = (unsigned char *) Z_STRVAL_P(zv);
339
340 while (*ptr) {
341 if (*ptr++ >= 0x80) {
342 ++len;
343 }
344 ++len;
345 }
346
347 ptr = safe_emalloc(1, len, 1);
348 for (len = 0, pos = 0; len <= Z_STRLEN_P(zv); ++len, ++pos) {
349 ptr[pos] = Z_STRVAL_P(zv)[len];
350 if ((ptr[pos]) >= 0x80) {
351 ptr[pos + 1] = 0x80 | (ptr[pos] & 0x3f);
352 ptr[pos] = 0xc0 | ((ptr[pos] >> 6) & 0x1f);
353 ++pos;
354 }
355 }
356 zval_dtor(zv);
357 ZVAL_STR(zv, php_http_cs2zs((char *) ptr, pos-1));
358 }
359
360 static inline void sanitize_value(unsigned flags, const char *str, size_t len, zval *zv, zend_bool rfc5987)
361 {
362 char *language = NULL;
363 zend_bool latin1 = 0;
364 zend_string *zs = zend_string_init(str, len, 0);
365
366 zval_dtor(zv);
367 ZVAL_STR(zv, php_trim(zs, NULL, 0, 3));
368 zend_string_release(zs);
369
370 if (rfc5987) {
371 sanitize_rfc5987(zv, &language, &latin1);
372 }
373
374 if (flags & PHP_HTTP_PARAMS_ESCAPED) {
375 sanitize_escaped(zv);
376 }
377
378 if ((flags & PHP_HTTP_PARAMS_URLENCODED) || (rfc5987 && language)) {
379 sanitize_urlencoded(zv);
380 }
381
382 if (rfc5987 && language) {
383 zval tmp;
384
385 if (latin1) {
386 utf8encode(zv);
387 }
388
389 ZVAL_COPY_VALUE(&tmp, zv);
390 array_init(zv);
391 add_assoc_zval(zv, language, &tmp);
392 efree(language);
393 }
394 }
395
396 static inline void prepare_key(unsigned flags, char *old_key, size_t old_len, char **new_key, size_t *new_len)
397 {
398 zval zv;
399
400 ZVAL_STRINGL(&zv, old_key, old_len);
401
402 if (flags & PHP_HTTP_PARAMS_URLENCODED) {
403 prepare_urlencoded(&zv);
404 }
405
406 if (flags & PHP_HTTP_PARAMS_ESCAPED) {
407 if (flags & PHP_HTTP_PARAMS_RFC5988) {
408 prepare_rfc5988(&zv);
409 } else {
410 prepare_escaped(&zv);
411 }
412 }
413
414 *new_key = estrndup(Z_STRVAL(zv), Z_STRLEN(zv));
415 *new_len = Z_STRLEN(zv);
416 zval_ptr_dtor(&zv);
417 }
418
419 static inline void prepare_value(unsigned flags, zval *zv)
420 {
421 if (flags & PHP_HTTP_PARAMS_URLENCODED) {
422 prepare_urlencoded(zv);
423 }
424
425 if (flags & PHP_HTTP_PARAMS_ESCAPED) {
426 prepare_escaped(zv);
427 }
428 }
429
430 static void merge_param(HashTable *params, zval *zdata, zval **current_param, zval **current_args)
431 {
432 zval *ptr, *zdata_ptr;
433 php_http_arrkey_t hkey = {0};
434
435 #if 0
436 {
437 zval tmp;
438 INIT_PZVAL_ARRAY(&tmp, params);
439 fprintf(stderr, "params = ");
440 zend_print_zval_r(&tmp, 1);
441 fprintf(stderr, "\n");
442 }
443 #endif
444
445 zend_hash_get_current_key(Z_ARRVAL_P(zdata), &hkey.key, &hkey.h);
446
447 if ((hkey.key && !zend_hash_exists(params, hkey.key))
448 || (!hkey.key && !zend_hash_index_exists(params, hkey.h))
449 ) {
450 zval tmp, arg, *args;
451
452 /* create the entry if it doesn't exist */
453 ptr = zend_hash_get_current_data(Z_ARRVAL_P(zdata));
454 Z_TRY_ADDREF_P(ptr);
455 array_init(&tmp);
456 add_assoc_zval_ex(&tmp, ZEND_STRL("value"), ptr);
457
458 array_init(&arg);
459 args = zend_hash_str_update(Z_ARRVAL(tmp), "arguments", lenof("arguments"), &arg);
460 *current_args = args;
461
462 if (hkey.key) {
463 ptr = zend_hash_update(params, hkey.key, &tmp);
464 } else {
465 ptr = zend_hash_index_update(params, hkey.h, &tmp);
466 }
467 } else {
468 /* merge */
469 if (hkey.key) {
470 ptr = zend_hash_find(params, hkey.key);
471 } else {
472 ptr = zend_hash_index_find(params, hkey.h);
473 }
474
475 zdata_ptr = zdata;
476
477 if (Z_TYPE_P(ptr) == IS_ARRAY
478 && (ptr = zend_hash_str_find(Z_ARRVAL_P(ptr), "value", lenof("value")))
479 && (zdata_ptr = zend_hash_get_current_data(Z_ARRVAL_P(zdata_ptr)))
480 ) {
481 /*
482 * params = [arr => [value => [0 => 1]]]
483 * ^- ptr
484 * zdata = [arr => [0 => NULL]]
485 * ^- zdata_ptr
486 */
487 zval *test_ptr;
488
489 while (Z_TYPE_P(zdata_ptr) == IS_ARRAY && (test_ptr = zend_hash_get_current_data(Z_ARRVAL_P(zdata_ptr)))) {
490 if (Z_TYPE_P(test_ptr) == IS_ARRAY) {
491 zval *tmp_ptr = ptr;
492
493 /* now find key in ptr */
494 if (HASH_KEY_IS_STRING == zend_hash_get_current_key(Z_ARRVAL_P(zdata_ptr), &hkey.key, &hkey.h)) {
495 if ((ptr = zend_hash_find(Z_ARRVAL_P(ptr), hkey.key))) {
496 zdata_ptr = test_ptr;
497 } else {
498 ptr = tmp_ptr;
499 Z_TRY_ADDREF_P(test_ptr);
500 ptr = zend_hash_update(Z_ARRVAL_P(ptr), hkey.key, test_ptr);
501 break;
502 }
503 } else {
504 if ((ptr = zend_hash_index_find(Z_ARRVAL_P(ptr), hkey.h))) {
505 zdata_ptr = test_ptr;
506 } else if (hkey.h) {
507 ptr = tmp_ptr;
508 Z_TRY_ADDREF_P(test_ptr);
509 ptr = zend_hash_index_update(Z_ARRVAL_P(ptr), hkey.h, test_ptr);
510 break;
511 } else {
512 ptr = tmp_ptr;
513 Z_TRY_ADDREF_P(test_ptr);
514 ptr = zend_hash_next_index_insert(Z_ARRVAL_P(ptr), test_ptr);
515 break;
516 }
517 }
518 } else {
519 /* this is the leaf */
520 Z_TRY_ADDREF_P(test_ptr);
521 if (Z_TYPE_P(ptr) != IS_ARRAY) {
522 zval_dtor(ptr);
523 array_init(ptr);
524 }
525 if (HASH_KEY_IS_STRING == zend_hash_get_current_key(Z_ARRVAL_P(zdata_ptr), &hkey.key, &hkey.h)) {
526 ptr = zend_hash_update(Z_ARRVAL_P(ptr), hkey.key, test_ptr);
527 } else if (hkey.h) {
528 ptr = zend_hash_index_update(Z_ARRVAL_P(ptr), hkey.h, test_ptr);
529 } else {
530 ptr = zend_hash_next_index_insert(Z_ARRVAL_P(ptr), test_ptr);
531 }
532 break;
533 }
534 }
535
536 }
537 }
538
539 /* bubble up */
540 while (Z_TYPE_P(ptr) == IS_ARRAY) {
541 zval *tmp = zend_hash_get_current_data(Z_ARRVAL_P(ptr));
542
543 if (tmp) {
544 ptr = tmp;
545 } else {
546 break;
547 }
548 }
549 *current_param = ptr;
550 }
551
552 static void push_param(HashTable *params, php_http_params_state_t *state, const php_http_params_opts_t *opts)
553 {
554 if (state->val.str) {
555 if (0 < (state->val.len = state->input.str - state->val.str)) {
556 sanitize_value(opts->flags, state->val.str, state->val.len, state->current.val, state->rfc5987);
557 }
558 state->rfc5987 = 0;
559 } else if (state->arg.str) {
560 if (0 < (state->arg.len = state->input.str - state->arg.str)) {
561 zval val, key;
562 zend_bool rfc5987 = 0;
563
564 ZVAL_NULL(&key);
565 sanitize_key(opts->flags, state->arg.str, state->arg.len, &key, &rfc5987);
566 state->rfc5987 = rfc5987;
567 if (Z_TYPE(key) == IS_STRING && Z_STRLEN(key)) {
568 ZVAL_TRUE(&val);
569
570 if (rfc5987) {
571 zval *rfc;
572
573 if ((rfc = zend_hash_str_find(Z_ARRVAL_P(state->current.args), ZEND_STRL("*rfc5987*")))) {
574 state->current.val = zend_symtable_str_update(Z_ARRVAL_P(rfc), Z_STRVAL(key), Z_STRLEN(key), &val);
575 } else {
576 zval tmp;
577
578 array_init_size(&tmp, 1);
579 state->current.val = zend_symtable_str_update(Z_ARRVAL(tmp), Z_STRVAL(key), Z_STRLEN(key), &val);
580 zend_symtable_str_update(Z_ARRVAL_P(state->current.args), ZEND_STRL("*rfc5987*"), &tmp);
581 }
582 } else {
583 state->current.val = zend_symtable_str_update(Z_ARRVAL_P(state->current.args), Z_STRVAL(key), Z_STRLEN(key), &val);
584 }
585 }
586 zval_dtor(&key);
587 }
588 } else if (state->param.str) {
589 if (0 < (state->param.len = state->input.str - state->param.str)) {
590 zval prm, arg, val, key;
591 zend_bool rfc5987 = 0;
592
593 ZVAL_NULL(&key);
594 if (opts->flags & PHP_HTTP_PARAMS_RFC5988) {
595 sanitize_rfc5988(state->param.str, state->param.len, &key);
596 } else {
597 sanitize_key(opts->flags, state->param.str, state->param.len, &key, &rfc5987);
598 state->rfc5987 = rfc5987;
599 }
600 if (Z_TYPE(key) == IS_ARRAY) {
601 merge_param(params, &key, &state->current.val, &state->current.args);
602 } else if (Z_TYPE(key) == IS_STRING && Z_STRLEN(key)) {
603 // FIXME: array_init_size(&prm, 2);
604 array_init(&prm);
605
606 if (!Z_ISUNDEF(opts->defval)) {
607 ZVAL_COPY_VALUE(&val, &opts->defval);
608 zval_copy_ctor(&val);
609 } else {
610 ZVAL_TRUE(&val);
611 }
612 if (rfc5987 && (opts->flags & PHP_HTTP_PARAMS_RFC5987)) {
613 state->current.val = zend_hash_str_update(Z_ARRVAL(prm), "*rfc5987*", lenof("*rfc5987*"), &val);
614 } else {
615 state->current.val = zend_hash_str_update(Z_ARRVAL(prm), "value", lenof("value"), &val);
616 }
617 // FIXME: array_init_size(&arg, 3);
618 array_init(&arg);
619 state->current.args = zend_hash_str_update(Z_ARRVAL(prm), "arguments", lenof("arguments"), &arg);
620 state->current.param = zend_symtable_str_update(params, Z_STRVAL(key), Z_STRLEN(key), &prm);
621 }
622 zval_ptr_dtor(&key);
623 }
624 }
625 }
626
627 static inline zend_bool check_str(const char *chk_str, size_t chk_len, const char *sep_str, size_t sep_len) {
628 return 0 < sep_len && chk_len >= sep_len && *chk_str == *sep_str && !memcmp(chk_str + 1, sep_str + 1, sep_len - 1);
629 }
630
631 static size_t check_sep(php_http_params_state_t *state, php_http_params_token_t **separators)
632 {
633 php_http_params_token_t **sep = separators;
634
635 if (state->quotes || state->escape) {
636 return 0;
637 }
638
639 if (sep) while (*sep) {
640 if (check_str(state->input.str, state->input.len, (*sep)->str, (*sep)->len)) {
641 return (*sep)->len;
642 }
643 ++sep;
644 }
645 return 0;
646 }
647
648 static void skip_sep(size_t skip, php_http_params_state_t *state, php_http_params_token_t **param, php_http_params_token_t **arg, php_http_params_token_t **val)
649 {
650 size_t sep_len;
651
652 state->input.str += skip;
653 state->input.len -= skip;
654
655 while ( (param && (sep_len = check_sep(state, param)))
656 || (arg && (sep_len = check_sep(state, arg)))
657 || (val && (sep_len = check_sep(state, val)))
658 ) {
659 state->input.str += sep_len;
660 state->input.len -= sep_len;
661 }
662 }
663
664 HashTable *php_http_params_parse(HashTable *params, const php_http_params_opts_t *opts)
665 {
666 php_http_params_state_t state = {{NULL,0}, {NULL,0}, {NULL,0}, {NULL,0}, {NULL,NULL,NULL}, 0, 0};
667
668 state.input.str = opts->input.str;
669 state.input.len = opts->input.len;
670
671 if (!params) {
672 ALLOC_HASHTABLE(params);
673 ZEND_INIT_SYMTABLE(params);
674 }
675
676 while (state.input.len) {
677 if ((opts->flags & PHP_HTTP_PARAMS_RFC5988) && !state.arg.str) {
678 if (*state.input.str == '<') {
679 state.quotes = 1;
680 } else if (*state.input.str == '>') {
681 state.quotes = 0;
682 }
683 } else if (*state.input.str == '"' && !state.escape) {
684 state.quotes = !state.quotes;
685 } else {
686 state.escape = (*state.input.str == '\\');
687 }
688
689 if (!state.param.str) {
690 /* initialize */
691 skip_sep(0, &state, opts->param, opts->arg, opts->val);
692 state.param.str = state.input.str;
693 } else {
694 size_t sep_len;
695 /* are we at a param separator? */
696 if (0 < (sep_len = check_sep(&state, opts->param))) {
697 push_param(params, &state, opts);
698
699 skip_sep(sep_len, &state, opts->param, opts->arg, opts->val);
700
701 /* start off with a new param */
702 state.param.str = state.input.str;
703 state.param.len = 0;
704 state.arg.str = NULL;
705 state.arg.len = 0;
706 state.val.str = NULL;
707 state.val.len = 0;
708
709 continue;
710
711 } else
712 /* are we at an arg separator? */
713 if (0 < (sep_len = check_sep(&state, opts->arg))) {
714 push_param(params, &state, opts);
715
716 skip_sep(sep_len, &state, NULL, opts->arg, opts->val);
717
718 /* continue with a new arg */
719 state.arg.str = state.input.str;
720 state.arg.len = 0;
721 state.val.str = NULL;
722 state.val.len = 0;
723
724 continue;
725
726 } else
727 /* are we at a val separator? */
728 if (0 < (sep_len = check_sep(&state, opts->val))) {
729 /* only handle separator if we're not already reading in a val */
730 if (!state.val.str) {
731 push_param(params, &state, opts);
732
733 skip_sep(sep_len, &state, NULL, NULL, opts->val);
734
735 state.val.str = state.input.str;
736 state.val.len = 0;
737
738 continue;
739 }
740 }
741 }
742
743 if (state.input.len) {
744 ++state.input.str;
745 --state.input.len;
746 }
747 }
748 /* finalize */
749 push_param(params, &state, opts);
750
751 return params;
752 }
753
754 static inline void shift_key(php_http_buffer_t *buf, char *key_str, size_t key_len, const char *ass, size_t asl, unsigned flags)
755 {
756 char *str;
757 size_t len;
758
759 if (buf->used) {
760 php_http_buffer_append(buf, ass, asl);
761 }
762
763 prepare_key(flags, key_str, key_len, &str, &len);
764 php_http_buffer_append(buf, str, len);
765 efree(str);
766 }
767
768 static inline void shift_rfc5987(php_http_buffer_t *buf, zval *zvalue, const char *vss, size_t vsl, unsigned flags)
769 {
770 HashTable *ht = HASH_OF(zvalue);
771 zval *zdata, tmp;
772 zend_string *zs;
773 php_http_arrkey_t key = {0};
774
775 if ((zdata = zend_hash_get_current_data(ht))
776 && HASH_KEY_NON_EXISTENT != zend_hash_get_current_key(ht, &key.key, &key.h)
777 ) {
778 php_http_arrkey_stringify(&key, NULL);
779 php_http_buffer_appendf(buf, "*%.*sutf-8'%.*s'",
780 (int) (vsl > INT_MAX ? INT_MAX : vsl), vss,
781 (int) (key.key->len > INT_MAX ? INT_MAX : key.key->len), key.key->val);
782 php_http_arrkey_dtor(&key);
783
784 if (Z_TYPE_P(zdata) == IS_INDIRECT) {
785 zdata = Z_INDIRECT_P(zdata);
786 }
787 zs = zval_get_string(zdata);
788 ZVAL_STR(&tmp, zs);
789 prepare_value(flags | PHP_HTTP_PARAMS_URLENCODED, &tmp);
790 php_http_buffer_append(buf, Z_STRVAL(tmp), Z_STRLEN(tmp));
791 zval_ptr_dtor(&tmp);
792 }
793 }
794
795 static inline void shift_rfc5988(php_http_buffer_t *buf, char *key_str, size_t key_len, const char *ass, size_t asl, unsigned flags)
796 {
797 char *str;
798 size_t len;
799
800 if (buf->used) {
801 php_http_buffer_append(buf, ass, asl);
802 }
803
804 prepare_key(flags, key_str, key_len, &str, &len);
805 php_http_buffer_appends(buf, "<");
806 php_http_buffer_append(buf, str, len);
807 php_http_buffer_appends(buf, ">");
808 efree(str);
809 }
810
811 static inline void shift_rfc5988_val(php_http_buffer_t *buf, zval *zv, const char *vss, size_t vsl, unsigned flags)
812 {
813 zend_string *zs = zval_get_string(zv);
814
815 quote_string(&zs, 1);
816 php_http_buffer_append(buf, vss, vsl);
817 php_http_buffer_append(buf, zs->val, zs->len);
818
819 zend_string_release(zs);
820 }
821
822 static inline void shift_val(php_http_buffer_t *buf, zval *zvalue, const char *vss, size_t vsl, unsigned flags)
823 {
824 zval tmp;
825 zend_string *zs;
826
827 switch (Z_TYPE_P(zvalue)) {
828 case IS_TRUE:
829 break;
830
831 case IS_FALSE:
832 php_http_buffer_append(buf, vss, vsl);
833 php_http_buffer_appends(buf, "0");
834 break;
835
836 default:
837 zs = zval_get_string(zvalue);
838
839 ZVAL_STR(&tmp, zs);
840 prepare_value(flags, &tmp);
841 php_http_buffer_append(buf, vss, vsl);
842 php_http_buffer_append(buf, Z_STRVAL(tmp), Z_STRLEN(tmp));
843
844 zval_ptr_dtor(&tmp);
845 break;
846 }
847 }
848
849 static void shift_arg(php_http_buffer_t *buf, char *key_str, size_t key_len, zval *zvalue, const char *ass, size_t asl, const char *vss, size_t vsl, unsigned flags)
850 {
851 if (Z_TYPE_P(zvalue) == IS_ARRAY || Z_TYPE_P(zvalue) == IS_OBJECT) {
852 php_http_arrkey_t key;
853 HashTable *ht = HASH_OF(zvalue);
854 zval *val;
855 zend_bool rfc5987 = !strcmp(key_str, "*rfc5987*");
856
857 if (!rfc5987) {
858 shift_key(buf, key_str, key_len, ass, asl, flags);
859 }
860 ZEND_HASH_FOREACH_KEY_VAL_IND(ht, key.h, key.key, val)
861 {
862 /* did you mean recursion? */
863 php_http_arrkey_stringify(&key, NULL);
864 if (rfc5987 && (Z_TYPE_P(val) == IS_ARRAY || Z_TYPE_P(val) == IS_OBJECT)) {
865 shift_key(buf, key.key->val, key.key->len, ass, asl, flags);
866 shift_rfc5987(buf, val, vss, vsl, flags);
867 } else {
868 shift_arg(buf, key.key->val, key.key->len, val, ass, asl, vss, vsl, flags);
869 }
870 php_http_arrkey_dtor(&key);
871 }
872 ZEND_HASH_FOREACH_END();
873 } else {
874 shift_key(buf, key_str, key_len, ass, asl, flags);
875
876 if (flags & PHP_HTTP_PARAMS_RFC5988) {
877 switch (key_len) {
878 case lenof("rel"):
879 case lenof("title"):
880 case lenof("anchor"):
881 /* some args must be quoted */
882 if (0 <= php_http_select_str(key_str, 3, "rel", "title", "anchor")) {
883 shift_rfc5988_val(buf, zvalue, vss, vsl, flags);
884 return;
885 }
886 break;
887 }
888 }
889
890 shift_val(buf, zvalue, vss, vsl, flags);
891 }
892 }
893
894 static void shift_param(php_http_buffer_t *buf, char *key_str, size_t key_len, zval *zvalue, const char *pss, size_t psl, const char *ass, size_t asl, const char *vss, size_t vsl, unsigned flags, zend_bool rfc5987)
895 {
896 if (Z_TYPE_P(zvalue) == IS_ARRAY || Z_TYPE_P(zvalue) == IS_OBJECT) {
897 /* treat as arguments, unless we care for dimensions or rfc5987 */
898 if (flags & PHP_HTTP_PARAMS_DIMENSION) {
899 php_http_buffer_t *keybuf = php_http_buffer_from_string(key_str, key_len);
900 prepare_dimension(buf, keybuf, zvalue, pss, psl, vss, vsl, flags);
901 php_http_buffer_free(&keybuf);
902 } else if (rfc5987) {
903 shift_key(buf, key_str, key_len, pss, psl, flags);
904 shift_rfc5987(buf, zvalue, vss, vsl, flags);
905 } else {
906 shift_arg(buf, key_str, key_len, zvalue, ass, asl, vss, vsl, flags);
907 }
908 } else {
909 if (flags & PHP_HTTP_PARAMS_RFC5988) {
910 shift_rfc5988(buf, key_str, key_len, pss, psl, flags);
911 } else {
912 shift_key(buf, key_str, key_len, pss, psl, flags);
913 }
914 shift_val(buf, zvalue, vss, vsl, flags);
915 }
916 }
917
918 php_http_buffer_t *php_http_params_to_string(php_http_buffer_t *buf, HashTable *params, const char *pss, size_t psl, const char *ass, size_t asl, const char *vss, size_t vsl, unsigned flags)
919 {
920 zval *zparam;
921 php_http_arrkey_t key;
922 zend_bool rfc5987 = 0;
923
924 if (!buf) {
925 buf = php_http_buffer_init(NULL);
926 }
927
928 ZEND_HASH_FOREACH_KEY_VAL(params, key.h, key.key, zparam)
929 {
930 zval *zvalue, *zargs;
931
932 if (Z_TYPE_P(zparam) != IS_ARRAY) {
933 zvalue = zparam;
934 } else {
935 if (!(zvalue = zend_hash_str_find(Z_ARRVAL_P(zparam), ZEND_STRL("value")))) {
936 if (!(zvalue = zend_hash_str_find(Z_ARRVAL_P(zparam), ZEND_STRL("*rfc5987*")))) {
937 zvalue = zparam;
938 } else {
939 rfc5987 = 1;
940 }
941 }
942 }
943
944 php_http_arrkey_stringify(&key, NULL);
945 shift_param(buf, key.key->val, key.key->len, zvalue, pss, psl, ass, asl, vss, vsl, flags, rfc5987);
946 php_http_arrkey_dtor(&key);
947
948 if (Z_TYPE_P(zparam) == IS_ARRAY) {
949 zval *tmp = zend_hash_str_find(Z_ARRVAL_P(zparam), ZEND_STRL("arguments"));
950
951 if (tmp) {
952 zvalue = tmp;
953 } else if (zvalue == zparam) {
954 continue;
955 } else {
956 zvalue = zparam;
957 }
958 }
959
960 if (Z_TYPE_P(zvalue) == IS_ARRAY) {
961 ZEND_HASH_FOREACH_KEY_VAL(Z_ARRVAL_P(zvalue), key.h, key.key, zargs)
962 {
963 if (zvalue == zparam && key.key && zend_string_equals_literal(key.key, "value")) {
964 continue;
965 }
966
967 php_http_arrkey_stringify(&key, NULL);
968 shift_arg(buf, key.key->val, key.key->len, zargs, ass, asl, vss, vsl, flags);
969 php_http_arrkey_dtor(&key);
970 }
971 ZEND_HASH_FOREACH_END();
972 }
973 }
974 ZEND_HASH_FOREACH_END();
975
976 php_http_buffer_shrink(buf);
977 php_http_buffer_fix(buf);
978
979 return buf;
980 }
981
982 php_http_params_token_t **php_http_params_separator_init(zval *zv)
983 {
984 zval *sep, ztmp;
985 php_http_params_token_t **ret, **tmp;
986
987 if (!zv) {
988 return NULL;
989 }
990
991 ZVAL_DUP(&ztmp, zv);
992 zv = &ztmp;
993 convert_to_array(zv);
994
995 ret = ecalloc(zend_hash_num_elements(Z_ARRVAL_P(zv)) + 1, sizeof(*ret));
996
997 tmp = ret;
998 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(zv), sep)
999 {
1000 zend_string *zs = zval_get_string(sep);
1001
1002 if (zs->len) {
1003 *tmp = emalloc(sizeof(**tmp));
1004 (*tmp)->str = estrndup(zs->val, (*tmp)->len = zs->len);
1005 ++tmp;
1006 }
1007 zend_string_release(zs);
1008 }
1009 ZEND_HASH_FOREACH_END();
1010
1011 zval_ptr_dtor(&ztmp);
1012
1013 *tmp = NULL;
1014 return ret;
1015 }
1016
1017 void php_http_params_separator_free(php_http_params_token_t **separator)
1018 {
1019 php_http_params_token_t **sep = separator;
1020 if (sep) {
1021 while (*sep) {
1022 PTR_FREE((*sep)->str);
1023 efree(*sep);
1024 ++sep;
1025 }
1026 efree(separator);
1027 }
1028 }
1029
1030 ZEND_BEGIN_ARG_INFO_EX(ai_HttpParams___construct, 0, 0, 0)
1031 ZEND_ARG_INFO(0, params)
1032 ZEND_ARG_INFO(0, param_sep)
1033 ZEND_ARG_INFO(0, arg_sep)
1034 ZEND_ARG_INFO(0, val_sep)
1035 ZEND_ARG_INFO(0, flags)
1036 ZEND_END_ARG_INFO();
1037 PHP_METHOD(HttpParams, __construct)
1038 {
1039 zval *zparams = NULL, *param_sep = NULL, *arg_sep = NULL, *val_sep = NULL;
1040 zend_long flags = PHP_HTTP_PARAMS_DEFAULT;
1041 zend_error_handling zeh;
1042 zend_string *zs;
1043
1044 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|z!/z/z/z/l", &zparams, &param_sep, &arg_sep, &val_sep, &flags), invalid_arg, return);
1045
1046 zend_replace_error_handling(EH_THROW, php_http_exception_runtime_class_entry, &zeh);
1047 {
1048 switch (ZEND_NUM_ARGS()) {
1049 case 5:
1050 zend_update_property_long(php_http_params_class_entry, getThis(), ZEND_STRL("flags"), flags);
1051 /* no break */
1052 case 4:
1053 zend_update_property(php_http_params_class_entry, getThis(), ZEND_STRL("val_sep"), val_sep);
1054 /* no break */
1055 case 3:
1056 zend_update_property(php_http_params_class_entry, getThis(), ZEND_STRL("arg_sep"), arg_sep);
1057 /* no break */
1058 case 2:
1059 zend_update_property(php_http_params_class_entry, getThis(), ZEND_STRL("param_sep"), param_sep);
1060 /* no break */
1061 }
1062
1063 if (zparams) {
1064 switch (Z_TYPE_P(zparams)) {
1065 case IS_OBJECT:
1066 case IS_ARRAY:
1067 convert_to_array(zparams);
1068 zend_update_property(php_http_params_class_entry, getThis(), ZEND_STRL("params"), zparams);
1069 break;
1070 default:
1071 zs = zval_get_string(zparams);
1072 if (zs->len) {
1073 zval tmp;
1074
1075 php_http_params_opts_t opts = {
1076 {zs->val, zs->len},
1077 php_http_params_separator_init(zend_read_property(php_http_params_class_entry, getThis(), ZEND_STRL("param_sep"), 0, &tmp)),
1078 php_http_params_separator_init(zend_read_property(php_http_params_class_entry, getThis(), ZEND_STRL("arg_sep"), 0, &tmp)),
1079 php_http_params_separator_init(zend_read_property(php_http_params_class_entry, getThis(), ZEND_STRL("val_sep"), 0, &tmp)),
1080 {{0}}, flags
1081 };
1082
1083 array_init(&tmp);
1084 php_http_params_parse(Z_ARRVAL(tmp), &opts);
1085 zend_update_property(php_http_params_class_entry, getThis(), ZEND_STRL("params"), &tmp);
1086 zval_ptr_dtor(&tmp);
1087
1088 php_http_params_separator_free(opts.param);
1089 php_http_params_separator_free(opts.arg);
1090 php_http_params_separator_free(opts.val);
1091 }
1092 zend_string_release(zs);
1093 break;
1094 }
1095 } else {
1096 zval tmp;
1097
1098 array_init(&tmp);
1099 zend_update_property(php_http_params_class_entry, getThis(), ZEND_STRL("params"), &tmp);
1100 zval_ptr_dtor(&tmp);
1101 }
1102 }
1103 zend_restore_error_handling(&zeh);
1104 }
1105
1106 ZEND_BEGIN_ARG_INFO_EX(ai_HttpParams_toArray, 0, 0, 0)
1107 ZEND_END_ARG_INFO();
1108 PHP_METHOD(HttpParams, toArray)
1109 {
1110 zval zparams_tmp, *zparams;
1111
1112 if (SUCCESS != zend_parse_parameters_none()) {
1113 return;
1114 }
1115 zparams = zend_read_property(php_http_params_class_entry, getThis(), ZEND_STRL("params"), 0, &zparams_tmp);
1116 RETURN_ZVAL(zparams, 1, 0);
1117 }
1118
1119 ZEND_BEGIN_ARG_INFO_EX(ai_HttpParams_toString, 0, 0, 0)
1120 ZEND_END_ARG_INFO();
1121 PHP_METHOD(HttpParams, toString)
1122 {
1123 zval *tmp, *zparams, *zpsep, *zasep, *zvsep;
1124 zval zparams_tmp, flags_tmp, psep_tmp, asep_tmp, vsep_tmp;
1125 zend_string *psep, *asep, *vsep;
1126 long flags;
1127 php_http_buffer_t buf;
1128
1129 zparams = zend_read_property(php_http_params_class_entry, getThis(), ZEND_STRL("params"), 0, &zparams_tmp);
1130 convert_to_array_ex(zparams);
1131 flags = zval_get_long(zend_read_property(php_http_params_class_entry, getThis(), ZEND_STRL("flags"), 0, &flags_tmp));
1132
1133 zpsep = zend_read_property(php_http_params_class_entry, getThis(), ZEND_STRL("param_sep"), 0, &psep_tmp);
1134 if (Z_TYPE_P(zpsep) == IS_ARRAY && (tmp = zend_hash_get_current_data(Z_ARRVAL_P(zpsep)))) {
1135 psep = zval_get_string(tmp);
1136 } else {
1137 psep = zval_get_string(zpsep);
1138 }
1139 zasep = zend_read_property(php_http_params_class_entry, getThis(), ZEND_STRL("arg_sep"), 0, &asep_tmp);
1140 if (Z_TYPE_P(zasep) == IS_ARRAY && (tmp = zend_hash_get_current_data(Z_ARRVAL_P(zasep)))) {
1141 asep = zval_get_string(tmp);
1142 } else {
1143 asep = zval_get_string(zasep);
1144 }
1145 zvsep = zend_read_property(php_http_params_class_entry, getThis(), ZEND_STRL("val_sep"), 0, &vsep_tmp);
1146 if (Z_TYPE_P(zvsep) == IS_ARRAY && (tmp = zend_hash_get_current_data(Z_ARRVAL_P(zvsep)))) {
1147 vsep = zval_get_string(tmp);
1148 } else {
1149 vsep = zval_get_string(zvsep);
1150 }
1151
1152 php_http_buffer_init(&buf);
1153 php_http_params_to_string(&buf, Z_ARRVAL_P(zparams), psep->val, psep->len, asep->val, asep->len, vsep->val, vsep->len, flags);
1154
1155 zend_string_release(psep);
1156 zend_string_release(asep);
1157 zend_string_release(vsep);
1158
1159 RETVAL_STR(php_http_cs2zs(buf.data, buf.used));
1160 }
1161
1162 ZEND_BEGIN_ARG_INFO_EX(ai_HttpParams_offsetExists, 0, 0, 1)
1163 ZEND_ARG_INFO(0, name)
1164 ZEND_END_ARG_INFO();
1165 PHP_METHOD(HttpParams, offsetExists)
1166 {
1167 zend_string *name;
1168 zval zparams_tmp, *zparam, *zparams;
1169
1170 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "S", &name)) {
1171 return;
1172 }
1173
1174 zparams = zend_read_property(php_http_params_class_entry, getThis(), ZEND_STRL("params"), 0, &zparams_tmp);
1175
1176 if (Z_TYPE_P(zparams) == IS_ARRAY && (zparam = zend_symtable_find(Z_ARRVAL_P(zparams), name))) {
1177 RETVAL_BOOL(Z_TYPE_P(zparam) != IS_NULL);
1178 } else {
1179 RETVAL_FALSE;
1180 }
1181 }
1182
1183 ZEND_BEGIN_ARG_INFO_EX(ai_HttpParams_offsetGet, 0, 0, 1)
1184 ZEND_ARG_INFO(0, name)
1185 ZEND_END_ARG_INFO();
1186 PHP_METHOD(HttpParams, offsetGet)
1187 {
1188 zend_string *name;
1189 zval zparams_tmp, *zparam, *zparams;
1190
1191 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "S", &name)) {
1192 return;
1193 }
1194
1195 zparams = zend_read_property(php_http_params_class_entry, getThis(), ZEND_STRL("params"), 0, &zparams_tmp);
1196
1197 if (Z_TYPE_P(zparams) == IS_ARRAY && (zparam = zend_symtable_find(Z_ARRVAL_P(zparams), name))) {
1198 RETVAL_ZVAL(zparam, 1, 0);
1199 }
1200 }
1201
1202 ZEND_BEGIN_ARG_INFO_EX(ai_HttpParams_offsetUnset, 0, 0, 1)
1203 ZEND_ARG_INFO(0, name)
1204 ZEND_END_ARG_INFO();
1205 PHP_METHOD(HttpParams, offsetUnset)
1206 {
1207 zend_string *name;
1208 zval zparams_tmp, *zparams;
1209
1210 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "S", &name)) {
1211 return;
1212 }
1213
1214 zparams = zend_read_property(php_http_params_class_entry, getThis(), ZEND_STRL("params"), 0, &zparams_tmp);
1215
1216 if (Z_TYPE_P(zparams) == IS_ARRAY) {
1217 zend_symtable_del(Z_ARRVAL_P(zparams), name);
1218 }
1219 }
1220
1221 ZEND_BEGIN_ARG_INFO_EX(ai_HttpParams_offsetSet, 0, 0, 2)
1222 ZEND_ARG_INFO(0, name)
1223 ZEND_ARG_INFO(0, value)
1224 ZEND_END_ARG_INFO();
1225 PHP_METHOD(HttpParams, offsetSet)
1226 {
1227 zend_string *name;
1228 zval zparams_tmp, *zparam, *zparams, *nvalue;
1229
1230 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "Sz", &name, &nvalue)) {
1231 return;
1232 }
1233
1234 zparams = zend_read_property(php_http_params_class_entry, getThis(), ZEND_STRL("params"), 0, &zparams_tmp);
1235 convert_to_array(zparams);
1236
1237 if (name->len) {
1238 if (Z_TYPE_P(nvalue) == IS_ARRAY) {
1239 if ((zparam = zend_symtable_find(Z_ARRVAL_P(zparams), name))) {
1240 convert_to_array(zparam);
1241 array_join(Z_ARRVAL_P(nvalue), Z_ARRVAL_P(zparam), 0, 0);
1242 } else {
1243 Z_TRY_ADDREF_P(nvalue);
1244 add_assoc_zval_ex(zparams, name->val, name->len, nvalue);
1245 }
1246 } else {
1247 zval tmp;
1248
1249 if ((zparam = zend_symtable_find(Z_ARRVAL_P(zparams), name))) {
1250 ZVAL_DUP(&tmp, zparam);
1251 convert_to_array(&tmp);
1252 } else {
1253 array_init(&tmp);
1254 }
1255
1256 Z_TRY_ADDREF_P(nvalue);
1257 add_assoc_zval_ex(&tmp, ZEND_STRL("value"), nvalue);
1258 add_assoc_zval_ex(zparams, name->val, name->len, &tmp);
1259 }
1260 } else {
1261 zval arr;
1262 zend_string *zs = zval_get_string(nvalue);
1263
1264 array_init(&arr);
1265 add_assoc_bool_ex(&arr, ZEND_STRL("value"), 1);
1266 add_assoc_zval_ex(zparams, zs->val, zs->len, &arr);
1267 zend_string_release(zs);
1268 }
1269 }
1270
1271 static zend_function_entry php_http_params_methods[] = {
1272 PHP_ME(HttpParams, __construct, ai_HttpParams___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR|ZEND_ACC_FINAL)
1273
1274 PHP_ME(HttpParams, toArray, ai_HttpParams_toArray, ZEND_ACC_PUBLIC)
1275 PHP_ME(HttpParams, toString, ai_HttpParams_toString, ZEND_ACC_PUBLIC)
1276 ZEND_MALIAS(HttpParams, __toString, toString, ai_HttpParams_toString, ZEND_ACC_PUBLIC)
1277
1278 PHP_ME(HttpParams, offsetExists, ai_HttpParams_offsetExists, ZEND_ACC_PUBLIC)
1279 PHP_ME(HttpParams, offsetUnset, ai_HttpParams_offsetUnset, ZEND_ACC_PUBLIC)
1280 PHP_ME(HttpParams, offsetSet, ai_HttpParams_offsetSet, ZEND_ACC_PUBLIC)
1281 PHP_ME(HttpParams, offsetGet, ai_HttpParams_offsetGet, ZEND_ACC_PUBLIC)
1282
1283 EMPTY_FUNCTION_ENTRY
1284 };
1285
1286 zend_class_entry *php_http_params_class_entry;
1287
1288 PHP_MINIT_FUNCTION(http_params)
1289 {
1290 zend_class_entry ce = {0};
1291
1292 INIT_NS_CLASS_ENTRY(ce, "http", "Params", php_http_params_methods);
1293 php_http_params_class_entry = zend_register_internal_class(&ce);
1294 php_http_params_class_entry->create_object = php_http_params_object_new;
1295 zend_class_implements(php_http_params_class_entry, 1, zend_ce_arrayaccess);
1296
1297 zend_declare_class_constant_stringl(php_http_params_class_entry, ZEND_STRL("DEF_PARAM_SEP"), ZEND_STRL(","));
1298 zend_declare_class_constant_stringl(php_http_params_class_entry, ZEND_STRL("DEF_ARG_SEP"), ZEND_STRL(";"));
1299 zend_declare_class_constant_stringl(php_http_params_class_entry, ZEND_STRL("DEF_VAL_SEP"), ZEND_STRL("="));
1300 zend_declare_class_constant_stringl(php_http_params_class_entry, ZEND_STRL("COOKIE_PARAM_SEP"), ZEND_STRL(""));
1301
1302 zend_declare_class_constant_long(php_http_params_class_entry, ZEND_STRL("PARSE_RAW"), PHP_HTTP_PARAMS_RAW);
1303 zend_declare_class_constant_long(php_http_params_class_entry, ZEND_STRL("PARSE_ESCAPED"), PHP_HTTP_PARAMS_ESCAPED);
1304 zend_declare_class_constant_long(php_http_params_class_entry, ZEND_STRL("PARSE_URLENCODED"), PHP_HTTP_PARAMS_URLENCODED);
1305 zend_declare_class_constant_long(php_http_params_class_entry, ZEND_STRL("PARSE_DIMENSION"), PHP_HTTP_PARAMS_DIMENSION);
1306 zend_declare_class_constant_long(php_http_params_class_entry, ZEND_STRL("PARSE_RFC5987"), PHP_HTTP_PARAMS_RFC5987);
1307 zend_declare_class_constant_long(php_http_params_class_entry, ZEND_STRL("PARSE_RFC5988"), PHP_HTTP_PARAMS_RFC5988);
1308 zend_declare_class_constant_long(php_http_params_class_entry, ZEND_STRL("PARSE_DEFAULT"), PHP_HTTP_PARAMS_DEFAULT);
1309 zend_declare_class_constant_long(php_http_params_class_entry, ZEND_STRL("PARSE_QUERY"), PHP_HTTP_PARAMS_QUERY);
1310
1311 zend_declare_property_null(php_http_params_class_entry, ZEND_STRL("params"), ZEND_ACC_PUBLIC);
1312 zend_declare_property_stringl(php_http_params_class_entry, ZEND_STRL("param_sep"), ZEND_STRL(","), ZEND_ACC_PUBLIC);
1313 zend_declare_property_stringl(php_http_params_class_entry, ZEND_STRL("arg_sep"), ZEND_STRL(";"), ZEND_ACC_PUBLIC);
1314 zend_declare_property_stringl(php_http_params_class_entry, ZEND_STRL("val_sep"), ZEND_STRL("="), ZEND_ACC_PUBLIC);
1315 zend_declare_property_long(php_http_params_class_entry, ZEND_STRL("flags"), PHP_HTTP_PARAMS_DEFAULT, ZEND_ACC_PUBLIC);
1316
1317 return SUCCESS;
1318 }
1319
1320 /*
1321 * Local variables:
1322 * tab-width: 4
1323 * c-basic-offset: 4
1324 * End:
1325 * vim600: noet sw=4 ts=4 fdm=marker
1326 * vim<600: noet sw=4 ts=4
1327 */
1328