fix leak
[m6w6/ext-http] / php_http_message_body.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 #include <ext/standard/php_lcg.h>
16
17 #define BOUNDARY_OPEN(body) \
18 do {\
19 size_t size = php_http_message_body_size(body); \
20 if (size) { \
21 php_stream_truncate_set_size(php_http_message_body_stream(body), size - lenof("--" PHP_HTTP_CRLF)); \
22 php_http_message_body_append(body, ZEND_STRL(PHP_HTTP_CRLF)); \
23 } else { \
24 php_http_message_body_appendf(body, "--%s" PHP_HTTP_CRLF, php_http_message_body_boundary(body)); \
25 } \
26 } while(0)
27
28 #define BOUNDARY_CLOSE(body) \
29 php_http_message_body_appendf(body, PHP_HTTP_CRLF "--%s--" PHP_HTTP_CRLF, php_http_message_body_boundary(body))
30
31 static ZEND_RESULT_CODE add_recursive_fields(php_http_message_body_t *body, const char *name, HashTable *fields);
32 static ZEND_RESULT_CODE add_recursive_files(php_http_message_body_t *body, const char *name, HashTable *files);
33
34 php_http_message_body_t *php_http_message_body_init(php_http_message_body_t **body_ptr, php_stream *stream)
35 {
36 php_http_message_body_t *body;
37
38 if (body_ptr && *body_ptr) {
39 body = *body_ptr;
40 ++body->refcount;
41 return body;
42 }
43
44 body = ecalloc(1, sizeof(php_http_message_body_t));
45 body->refcount = 1;
46
47 if (stream) {
48 body->res = stream->res;
49 ++GC_REFCOUNT(body->res);
50 } else {
51 stream = php_stream_temp_create(TEMP_STREAM_DEFAULT, 0xffff);
52 body->res = stream->res;
53 }
54 php_stream_auto_cleanup(stream);
55
56 if (body_ptr) {
57 *body_ptr = body;
58 }
59
60 return body;
61 }
62
63 unsigned php_http_message_body_addref(php_http_message_body_t *body)
64 {
65 return ++body->refcount;
66 }
67
68 php_http_message_body_t *php_http_message_body_copy(php_http_message_body_t *from, php_http_message_body_t *to)
69 {
70 if (from) {
71 if (to) {
72 php_stream_truncate_set_size(php_http_message_body_stream(to), 0);
73 } else {
74 to = php_http_message_body_init(NULL, NULL);
75 }
76 php_http_message_body_to_stream(from, php_http_message_body_stream(to), 0, 0);
77
78 if (to->boundary) {
79 efree(to->boundary);
80 }
81 if (from->boundary) {
82 to->boundary = estrdup(from->boundary);
83 }
84 } else {
85 to = NULL;
86 }
87 return to;
88 }
89
90 void php_http_message_body_free(php_http_message_body_t **body_ptr)
91 {
92 if (*body_ptr) {
93 php_http_message_body_t *body = *body_ptr;
94
95 if (!--body->refcount) {
96 //zend_list_close(body->res);
97 PTR_FREE(body->boundary);
98 efree(body);
99 }
100 *body_ptr = NULL;
101 }
102 }
103
104 const php_stream_statbuf *php_http_message_body_stat(php_http_message_body_t *body)
105 {
106 php_stream_stat(php_http_message_body_stream(body), &body->ssb);
107 return &body->ssb;
108 }
109
110 const char *php_http_message_body_boundary(php_http_message_body_t *body)
111 {
112 if (!body->boundary) {
113 union { double dbl; int num[2]; } data;
114
115 data.dbl = php_combined_lcg();
116 spprintf(&body->boundary, 0, "%x.%x", data.num[0], data.num[1]);
117 }
118 return body->boundary;
119 }
120
121 char *php_http_message_body_etag(php_http_message_body_t *body)
122 {
123 php_http_etag_t *etag;
124 php_stream *s = php_http_message_body_stream(body);
125
126 /* real file or temp buffer ? */
127 if (s->ops != &php_stream_temp_ops && s->ops != &php_stream_memory_ops) {
128 php_stream_stat(php_http_message_body_stream(body), &body->ssb);
129
130 if (body->ssb.sb.st_mtime) {
131 char *etag;
132
133 spprintf(&etag, 0, "%lx-%lx-%lx", body->ssb.sb.st_ino, body->ssb.sb.st_mtime, body->ssb.sb.st_size);
134 return etag;
135 }
136 }
137
138 /* content based */
139 if ((etag = php_http_etag_init(PHP_HTTP_G->env.etag_mode))) {
140 php_http_message_body_to_callback(body, (php_http_pass_callback_t) php_http_etag_update, etag, 0, 0);
141 return php_http_etag_finish(etag);
142 }
143
144 return NULL;
145 }
146
147 zend_string *php_http_message_body_to_string(php_http_message_body_t *body, off_t offset, size_t forlen)
148 {
149 php_stream *s = php_http_message_body_stream(body);
150
151 php_stream_seek(s, offset, SEEK_SET);
152 if (!forlen) {
153 forlen = -1;
154 }
155 return php_stream_copy_to_mem(s, forlen, 0);
156 }
157
158 ZEND_RESULT_CODE php_http_message_body_to_stream(php_http_message_body_t *body, php_stream *dst, off_t offset, size_t forlen)
159 {
160 php_stream *s = php_http_message_body_stream(body);
161
162 php_stream_seek(s, offset, SEEK_SET);
163
164 if (!forlen) {
165 forlen = -1;
166 }
167 return php_stream_copy_to_stream_ex(s, dst, forlen, NULL);
168 }
169
170 ZEND_RESULT_CODE php_http_message_body_to_callback(php_http_message_body_t *body, php_http_pass_callback_t cb, void *cb_arg, off_t offset, size_t forlen)
171 {
172 php_stream *s = php_http_message_body_stream(body);
173 char *buf = emalloc(0x1000);
174
175 php_stream_seek(s, offset, SEEK_SET);
176
177 if (!forlen) {
178 forlen = -1;
179 }
180 while (!php_stream_eof(s)) {
181 size_t read = php_stream_read(s, buf, MIN(forlen, 0x1000));
182
183 if (read) {
184 if (-1 == cb(cb_arg, buf, read)) {
185 return FAILURE;
186 }
187 }
188
189 if (read < MIN(forlen, sizeof(buf))) {
190 break;
191 }
192
193 if (forlen && !(forlen -= read)) {
194 break;
195 }
196 }
197 efree(buf);
198
199 return SUCCESS;
200 }
201
202 size_t php_http_message_body_append(php_http_message_body_t *body, const char *buf, size_t len)
203 {
204 php_stream *s;
205 size_t written;
206
207 if (!(s = php_http_message_body_stream(body))) {
208 return -1;
209 }
210
211 if (s->ops->seek) {
212 php_stream_seek(s, 0, SEEK_END);
213 }
214
215 written = php_stream_write(s, buf, len);
216
217 if (written != len) {
218 php_error_docref(NULL, E_WARNING, "Failed to append %zu bytes to body; wrote %zu", len, written);
219 }
220
221 return len;
222 }
223
224 size_t php_http_message_body_appendf(php_http_message_body_t *body, const char *fmt, ...)
225 {
226 va_list argv;
227 char *print_str;
228 size_t print_len;
229
230 va_start(argv, fmt);
231 print_len = vspprintf(&print_str, 0, fmt, argv);
232 va_end(argv);
233
234 print_len = php_http_message_body_append(body, print_str, print_len);
235 efree(print_str);
236
237 return print_len;
238 }
239
240 ZEND_RESULT_CODE php_http_message_body_add_form(php_http_message_body_t *body, HashTable *fields, HashTable *files)
241 {
242 if (fields) {
243 if (SUCCESS != add_recursive_fields(body, NULL, fields)) {
244 return FAILURE;
245 }
246 }
247 if (files) {
248 if (SUCCESS != add_recursive_files(body, NULL, files)) {
249 return FAILURE;
250 }
251 }
252
253 return SUCCESS;
254 }
255
256 void php_http_message_body_add_part(php_http_message_body_t *body, php_http_message_t *part)
257 {
258 BOUNDARY_OPEN(body);
259 php_http_message_to_callback(part, (php_http_pass_callback_t) php_http_message_body_append, body);
260 BOUNDARY_CLOSE(body);
261 }
262
263
264 ZEND_RESULT_CODE php_http_message_body_add_form_field(php_http_message_body_t *body, const char *name, const char *value_str, size_t value_len)
265 {
266 zend_string *safe_name = zend_string_init(name, strlen(name), 0);
267
268 safe_name = php_addslashes(safe_name, 1);
269
270 BOUNDARY_OPEN(body);
271 php_http_message_body_appendf(
272 body,
273 "Content-Disposition: form-data; name=\"%s\"" PHP_HTTP_CRLF
274 "" PHP_HTTP_CRLF,
275 safe_name->val
276 );
277 php_http_message_body_append(body, value_str, value_len);
278 BOUNDARY_CLOSE(body);
279
280 zend_string_release(safe_name);
281 return SUCCESS;
282 }
283
284 ZEND_RESULT_CODE php_http_message_body_add_form_file(php_http_message_body_t *body, const char *name, const char *ctype, const char *path, php_stream *in)
285 {
286 size_t path_len = strlen(path);
287 char *path_dup = estrndup(path, path_len);
288 zend_string *base_name, *safe_name = zend_string_init(name, strlen(name), 0);
289
290 safe_name = php_addslashes(safe_name, 1);
291 base_name = php_basename(path_dup, path_len, NULL, 0);
292
293 BOUNDARY_OPEN(body);
294 php_http_message_body_appendf(
295 body,
296 "Content-Disposition: form-data; name=\"%s\"; filename=\"%s\"" PHP_HTTP_CRLF
297 "Content-Transfer-Encoding: binary" PHP_HTTP_CRLF
298 "Content-Type: %s" PHP_HTTP_CRLF
299 PHP_HTTP_CRLF,
300 safe_name->val, base_name->val, ctype
301 );
302 php_stream_copy_to_stream_ex(in, php_http_message_body_stream(body), PHP_STREAM_COPY_ALL, NULL);
303 BOUNDARY_CLOSE(body);
304
305 zend_string_release(safe_name);
306 zend_string_release(base_name);
307 efree(path_dup);
308
309 return SUCCESS;
310 }
311
312 static inline char *format_key(php_http_arrkey_t *key, const char *prefix) {
313 char *new_key = NULL;
314
315 if (prefix && *prefix) {
316 if (key->key) {
317 spprintf(&new_key, 0, "%s[%s]", prefix, key->key->val);
318 } else {
319 spprintf(&new_key, 0, "%s[%lu]", prefix, key->h);
320 }
321 } else if (key->key) {
322 new_key = estrdup(key->key->val);
323 } else {
324 new_key = estrdup("");
325 }
326
327 return new_key;
328 }
329
330 static ZEND_RESULT_CODE add_recursive_field_value(php_http_message_body_t *body, const char *name, zval *value)
331 {
332 zend_string *zs = zval_get_string(value);
333 ZEND_RESULT_CODE rc = php_http_message_body_add_form_field(body, name, zs->val, zs->len);
334 zend_string_release(zs);
335 return rc;
336 }
337
338 static ZEND_RESULT_CODE add_recursive_fields(php_http_message_body_t *body, const char *name, HashTable *fields)
339 {
340 zval *val;
341 php_http_arrkey_t key;
342
343 if (!ZEND_HASH_GET_APPLY_COUNT(fields)) {
344 ZEND_HASH_INC_APPLY_COUNT(fields);
345 ZEND_HASH_FOREACH_KEY_VAL_IND(fields, key.h, key.key, val)
346 {
347 char *str = format_key(&key, name);
348
349 if (Z_TYPE_P(val) != IS_ARRAY && Z_TYPE_P(val) != IS_OBJECT) {
350 if (SUCCESS != add_recursive_field_value(body, str, val)) {
351 efree(str);
352 ZEND_HASH_DEC_APPLY_COUNT(fields);
353 return FAILURE;
354 }
355 } else if (SUCCESS != add_recursive_fields(body, str, HASH_OF(val))) {
356 efree(str);
357 ZEND_HASH_DEC_APPLY_COUNT(fields);
358 return FAILURE;
359 }
360 efree(str);
361 }
362 ZEND_HASH_FOREACH_END();
363 ZEND_HASH_DEC_APPLY_COUNT(fields);
364 }
365
366 return SUCCESS;
367 }
368
369 static ZEND_RESULT_CODE add_recursive_files(php_http_message_body_t *body, const char *name, HashTable *files)
370 {
371 zval *zdata = NULL, *zfile, *zname, *ztype;
372
373 /* single entry */
374 if (!(zname = zend_hash_str_find(files, ZEND_STRL("name")))
375 || !(ztype = zend_hash_str_find(files, ZEND_STRL("type")))
376 || !(zfile = zend_hash_str_find(files, ZEND_STRL("file")))
377 ) {
378 zval *val;
379 php_http_arrkey_t key;
380
381 if (!ZEND_HASH_GET_APPLY_COUNT(files)) {
382 ZEND_HASH_INC_APPLY_COUNT(files);
383 ZEND_HASH_FOREACH_KEY_VAL_IND(files, key.h, key.key, val)
384 {
385 if (Z_TYPE_P(val) == IS_ARRAY || Z_TYPE_P(val) == IS_OBJECT) {
386 char *str = format_key(&key, name);
387
388 if (SUCCESS != add_recursive_files(body, str, HASH_OF(val))) {
389 efree(str);
390 ZEND_HASH_DEC_APPLY_COUNT(files);
391 return FAILURE;
392 }
393 efree(str);
394 }
395 }
396 ZEND_HASH_FOREACH_END();
397 ZEND_HASH_DEC_APPLY_COUNT(files);
398 }
399 return SUCCESS;
400 } else {
401 /* stream entry */
402 php_stream *stream;
403 zend_string *zfc = zval_get_string(zfile);
404
405 if ((zdata = zend_hash_str_find(files, ZEND_STRL("data")))) {
406 if (Z_TYPE_P(zdata) == IS_RESOURCE) {
407 php_stream_from_zval_no_verify(stream, zdata);
408 } else {
409 zend_string *tmp = zval_get_string(zdata);
410
411 stream = php_stream_memory_open(TEMP_STREAM_READONLY, tmp->val, tmp->len);
412 zend_string_release(tmp);
413 }
414 } else {
415 stream = php_stream_open_wrapper(zfc->val, "r", REPORT_ERRORS|USE_PATH, NULL);
416 }
417
418 if (!stream) {
419 zend_string_release(zfc);
420 return FAILURE;
421 } else {
422 zend_string *znc = zval_get_string(zname), *ztc = zval_get_string(ztype);
423 php_http_arrkey_t arrkey = {0, znc};
424 char *key = format_key(&arrkey, name);
425 ZEND_RESULT_CODE ret = php_http_message_body_add_form_file(body, key, ztc->val, zfc->val, stream);
426
427 efree(key);
428 zend_string_release(znc);
429 zend_string_release(ztc);
430 zend_string_release(zfc);
431 if (!zdata || Z_TYPE_P(zdata) != IS_RESOURCE) {
432 php_stream_close(stream);
433 }
434 return ret;
435 }
436
437 }
438 }
439
440 struct splitbody_arg {
441 php_http_buffer_t buf;
442 php_http_message_parser_t *parser;
443 char *boundary_str;
444 size_t boundary_len;
445 size_t consumed;
446 };
447
448 static size_t splitbody(void *opaque, char *buf, size_t len)
449 {
450 struct splitbody_arg *arg = opaque;
451 const char *boundary = NULL;
452 size_t consumed = 0;
453 int first_boundary;
454
455 do {
456 first_boundary = !(consumed || arg->consumed);
457
458 if ((boundary = php_http_locate_str(buf, len, arg->boundary_str + first_boundary, arg->boundary_len - first_boundary))) {
459 size_t real_boundary_len = arg->boundary_len - 1, cut;
460 const char *real_boundary = boundary + !first_boundary;
461 int eol_len = 0;
462
463 if (buf + len <= real_boundary + real_boundary_len) {
464 /* if we just have enough data for the boundary, it's just a byte too less */
465 arg->consumed += consumed;
466 return consumed;
467 }
468
469 if (!first_boundary) {
470 /* this is not the first boundary, read rest of this message */
471 php_http_buffer_append(&arg->buf, buf, real_boundary - buf);
472 php_http_message_parser_parse(arg->parser, &arg->buf, 0, &arg->parser->message);
473 }
474
475 /* move after the boundary */
476 cut = real_boundary - buf + real_boundary_len;
477 buf += cut;
478 len -= cut;
479 consumed += cut;
480
481 if (buf == php_http_locate_bin_eol(buf, len, &eol_len)) {
482 /* skip CRLF */
483 buf += eol_len;
484 len -= eol_len;
485 consumed += eol_len;
486
487 if (!first_boundary) {
488 /* advance messages */
489 php_http_message_t *msg;
490
491 msg = php_http_message_init(NULL, 0, NULL);
492 msg->parent = arg->parser->message;
493 arg->parser->message = msg;
494 }
495 } else {
496 /* is this the last boundary? */
497 if (*buf == '-') {
498 /* ignore the rest */
499 consumed += len;
500 len = 0;
501 } else {
502 /* let this be garbage */
503 php_error_docref(NULL, E_WARNING, "Malformed multipart boundary at pos %zu", consumed);
504 return -1;
505 }
506 }
507 }
508 } while (boundary && len);
509
510 /* let there be room for the next boundary */
511 if (len > arg->boundary_len) {
512 consumed += len - arg->boundary_len;
513 php_http_buffer_append(&arg->buf, buf, len - arg->boundary_len);
514 php_http_message_parser_parse(arg->parser, &arg->buf, 0, &arg->parser->message);
515 }
516
517 arg->consumed += consumed;
518 return consumed;
519 }
520
521 php_http_message_t *php_http_message_body_split(php_http_message_body_t *body, const char *boundary)
522 {
523 php_stream *s = php_http_message_body_stream(body);
524 php_http_buffer_t *tmp = NULL;
525 php_http_message_t *msg = NULL;
526 struct splitbody_arg arg;
527
528 php_http_buffer_init(&arg.buf);
529 arg.parser = php_http_message_parser_init(NULL);
530 arg.boundary_len = spprintf(&arg.boundary_str, 0, "\n--%s", boundary);
531 arg.consumed = 0;
532
533 php_stream_rewind(s);
534 while (!php_stream_eof(s)) {
535 php_http_buffer_passthru(&tmp, 0x1000, (php_http_buffer_pass_func_t) _php_stream_read, s, splitbody, &arg);
536 }
537
538 msg = arg.parser->message;
539 arg.parser->message = NULL;
540
541 php_http_buffer_free(&tmp);
542 php_http_message_parser_free(&arg.parser);
543 php_http_buffer_dtor(&arg.buf);
544 PTR_FREE(arg.boundary_str);
545
546 return msg;
547 }
548
549 static zend_object_handlers php_http_message_body_object_handlers;
550
551 zend_object *php_http_message_body_object_new(zend_class_entry *ce)
552 {
553 return &php_http_message_body_object_new_ex(ce, NULL)->zo;
554 }
555
556 php_http_message_body_object_t *php_http_message_body_object_new_ex(zend_class_entry *ce, php_http_message_body_t *body)
557 {
558 php_http_message_body_object_t *o;
559
560 o = ecalloc(1, sizeof(*o) + zend_object_properties_size(ce));
561 zend_object_std_init(&o->zo, php_http_message_body_class_entry);
562 object_properties_init(&o->zo, ce);
563
564 if (body) {
565 o->body = body;
566 }
567
568 o->zo.handlers = &php_http_message_body_object_handlers;
569
570 return o;
571 }
572
573 zend_object *php_http_message_body_object_clone(zval *object)
574 {
575 php_http_message_body_object_t *new_obj = NULL;
576 php_http_message_body_object_t *old_obj = PHP_HTTP_OBJ(NULL, object);
577 php_http_message_body_t *body = php_http_message_body_copy(old_obj->body, NULL);
578
579 new_obj = php_http_message_body_object_new_ex(old_obj->zo.ce, body);
580 zend_objects_clone_members(&new_obj->zo, &old_obj->zo);
581
582 return &new_obj->zo;
583 }
584
585 void php_http_message_body_object_free(zend_object *object)
586 {
587 php_http_message_body_object_t *obj = PHP_HTTP_OBJ(object, NULL);
588
589 php_http_message_body_free(&obj->body);
590 zend_object_std_dtor(object);
591 }
592
593 #define PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj) \
594 do { \
595 if (!obj->body) { \
596 obj->body = php_http_message_body_init(NULL, NULL); \
597 } \
598 } while(0)
599
600 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody___construct, 0, 0, 0)
601 ZEND_ARG_INFO(0, stream)
602 ZEND_END_ARG_INFO();
603 PHP_METHOD(HttpMessageBody, __construct)
604 {
605 php_http_message_body_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
606 zval *zstream = NULL;
607 php_stream *stream;
608
609 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|r!", &zstream), invalid_arg, return);
610
611 if (zstream) {
612 php_http_expect(php_stream_from_zval_no_verify(stream, zstream), unexpected_val, return);
613
614 if (obj->body) {
615 php_http_message_body_free(&obj->body);
616 }
617 obj->body = php_http_message_body_init(NULL, stream);
618 }
619 }
620
621 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody___toString, 0, 0, 0)
622 ZEND_END_ARG_INFO();
623 PHP_METHOD(HttpMessageBody, __toString)
624 {
625 if (SUCCESS == zend_parse_parameters_none()) {
626 php_http_message_body_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
627 zend_string *zs;
628
629 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
630
631 zs = php_http_message_body_to_string(obj->body, 0, 0);
632 if (zs) {
633 RETURN_STR(zs);
634 }
635 }
636 RETURN_EMPTY_STRING();
637 }
638
639 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_unserialize, 0, 0, 1)
640 ZEND_ARG_INFO(0, serialized)
641 ZEND_END_ARG_INFO();
642 PHP_METHOD(HttpMessageBody, unserialize)
643 {
644 char *us_str;
645 size_t us_len;
646
647 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "s", &us_str, &us_len)) {
648 php_http_message_body_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
649 php_stream *s = php_stream_memory_open(0, us_str, us_len);
650
651 obj->body = php_http_message_body_init(NULL, s);
652 }
653 }
654
655 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_toStream, 0, 0, 1)
656 ZEND_ARG_INFO(0, stream)
657 ZEND_ARG_INFO(0, offset)
658 ZEND_ARG_INFO(0, maxlen)
659 ZEND_END_ARG_INFO();
660 PHP_METHOD(HttpMessageBody, toStream)
661 {
662 zval *zstream;
663 zend_long offset = 0, forlen = 0;
664
665 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "r|ll", &zstream, &offset, &forlen)) {
666 php_stream *stream;
667 php_http_message_body_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
668
669 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
670
671 php_stream_from_zval(stream, zstream);
672 php_http_message_body_to_stream(obj->body, stream, offset, forlen);
673 RETURN_ZVAL(getThis(), 1, 0);
674 }
675 }
676
677 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_toCallback, 0, 0, 1)
678 ZEND_ARG_INFO(0, callback)
679 ZEND_ARG_INFO(0, offset)
680 ZEND_ARG_INFO(0, maxlen)
681 ZEND_END_ARG_INFO();
682 PHP_METHOD(HttpMessageBody, toCallback)
683 {
684 php_http_pass_fcall_arg_t fcd;
685 zend_long offset = 0, forlen = 0;
686
687 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "f|ll", &fcd.fci, &fcd.fcc, &offset, &forlen)) {
688 php_http_message_body_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
689
690 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
691
692 ZVAL_COPY(&fcd.fcz, getThis());
693 php_http_message_body_to_callback(obj->body, php_http_pass_fcall_callback, &fcd, offset, forlen);
694 zend_fcall_info_args_clear(&fcd.fci, 1);
695 zval_ptr_dtor(&fcd.fcz);
696 RETURN_ZVAL_FAST(getThis());
697 }
698 }
699
700 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_getResource, 0, 0, 0)
701 ZEND_END_ARG_INFO();
702 PHP_METHOD(HttpMessageBody, getResource)
703 {
704 if (SUCCESS == zend_parse_parameters_none()) {
705 php_http_message_body_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
706
707 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
708
709 ++GC_REFCOUNT(obj->body->res);
710 RETVAL_RES(obj->body->res);
711 }
712 }
713
714 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_getBoundary, 0, 0, 0)
715 ZEND_END_ARG_INFO();
716 PHP_METHOD(HttpMessageBody, getBoundary)
717 {
718 if (SUCCESS == zend_parse_parameters_none()) {
719 php_http_message_body_object_t * obj = PHP_HTTP_OBJ(NULL, getThis());
720
721 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
722
723 if (obj->body->boundary) {
724 RETURN_STRING(obj->body->boundary);
725 }
726 }
727 }
728
729 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_append, 0, 0, 1)
730 ZEND_ARG_INFO(0, string)
731 ZEND_END_ARG_INFO();
732 PHP_METHOD(HttpMessageBody, append)
733 {
734 char *str;
735 size_t len;
736 php_http_message_body_object_t *obj;
737
738 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "s", &str, &len), invalid_arg, return);
739
740 obj = PHP_HTTP_OBJ(NULL, getThis());
741 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
742
743 php_http_expect(len == php_http_message_body_append(obj->body, str, len), runtime, return);
744
745 RETURN_ZVAL_FAST(getThis());
746 }
747
748 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_addForm, 0, 0, 0)
749 ZEND_ARG_ARRAY_INFO(0, fields, 1)
750 ZEND_ARG_ARRAY_INFO(0, files, 1)
751 ZEND_END_ARG_INFO();
752 PHP_METHOD(HttpMessageBody, addForm)
753 {
754 HashTable *fields = NULL, *files = NULL;
755 php_http_message_body_object_t *obj;
756
757 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|h!h!", &fields, &files), invalid_arg, return);
758
759 obj = PHP_HTTP_OBJ(NULL, getThis());
760 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
761
762 php_http_expect(SUCCESS == php_http_message_body_add_form(obj->body, fields, files), runtime, return);
763
764 RETURN_ZVAL_FAST(getThis());
765 }
766
767 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_addPart, 0, 0, 1)
768 ZEND_ARG_OBJ_INFO(0, message, http\\Message, 0)
769 ZEND_END_ARG_INFO();
770 PHP_METHOD(HttpMessageBody, addPart)
771 {
772 zval *zobj;
773 php_http_message_body_object_t *obj;
774 php_http_message_object_t *mobj;
775 zend_error_handling zeh;
776
777 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "O", &zobj, php_http_message_class_entry), invalid_arg, return);
778
779 obj = PHP_HTTP_OBJ(NULL, getThis());
780 mobj = PHP_HTTP_OBJ(NULL, zobj);
781
782 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
783
784 zend_replace_error_handling(EH_THROW, php_http_exception_runtime_class_entry, &zeh);
785 php_http_message_body_add_part(obj->body, mobj->message);
786 zend_restore_error_handling(&zeh);
787
788 if (!EG(exception)) {
789 RETURN_ZVAL_FAST(getThis());
790 }
791 }
792
793 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_etag, 0, 0, 0)
794 ZEND_END_ARG_INFO();
795 PHP_METHOD(HttpMessageBody, etag)
796 {
797 if (SUCCESS == zend_parse_parameters_none()) {
798 php_http_message_body_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
799 char *etag;
800
801 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
802
803 if ((etag = php_http_message_body_etag(obj->body))) {
804 RETURN_STR(php_http_cs2zs(etag, strlen(etag)));
805 } else {
806 RETURN_FALSE;
807 }
808 }
809 }
810
811 ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessageBody_stat, 0, 0, 0)
812 ZEND_ARG_INFO(0, field)
813 ZEND_END_ARG_INFO();
814 PHP_METHOD(HttpMessageBody, stat)
815 {
816 char *field_str = NULL;
817 size_t field_len = 0;
818
819 if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|s", &field_str, &field_len)) {
820 php_http_message_body_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
821 const php_stream_statbuf *sb;
822
823 PHP_HTTP_MESSAGE_BODY_OBJECT_INIT(obj);
824
825 if ((sb = php_http_message_body_stat(obj->body))) {
826 if (field_str && field_len) {
827 switch (*field_str) {
828 case 's':
829 case 'S':
830 RETURN_LONG(sb->sb.st_size);
831 break;
832 case 'a':
833 case 'A':
834 RETURN_LONG(sb->sb.st_atime);
835 break;
836 case 'm':
837 case 'M':
838 RETURN_LONG(sb->sb.st_mtime);
839 break;
840 case 'c':
841 case 'C':
842 RETURN_LONG(sb->sb.st_ctime);
843 break;
844 default:
845 php_error_docref(NULL, E_WARNING, "Unknown stat field: '%s' (should be one of [s]ize, [a]time, [m]time or [c]time)", field_str);
846 break;
847 }
848 } else {
849 object_init(return_value);
850 add_property_long_ex(return_value, ZEND_STRL("size"), sb->sb.st_size);
851 add_property_long_ex(return_value, ZEND_STRL("atime"), sb->sb.st_atime);
852 add_property_long_ex(return_value, ZEND_STRL("mtime"), sb->sb.st_mtime);
853 add_property_long_ex(return_value, ZEND_STRL("ctime"), sb->sb.st_ctime);
854 }
855 }
856 }
857 }
858
859 static zend_function_entry php_http_message_body_methods[] = {
860 PHP_ME(HttpMessageBody, __construct, ai_HttpMessageBody___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
861 PHP_ME(HttpMessageBody, __toString, ai_HttpMessageBody___toString, ZEND_ACC_PUBLIC)
862 PHP_MALIAS(HttpMessageBody, toString, __toString, ai_HttpMessageBody___toString, ZEND_ACC_PUBLIC)
863 PHP_MALIAS(HttpMessageBody, serialize, __toString, ai_HttpMessageBody___toString, ZEND_ACC_PUBLIC)
864 PHP_ME(HttpMessageBody, unserialize, ai_HttpMessageBody_unserialize, ZEND_ACC_PUBLIC)
865 PHP_ME(HttpMessageBody, toStream, ai_HttpMessageBody_toStream, ZEND_ACC_PUBLIC)
866 PHP_ME(HttpMessageBody, toCallback, ai_HttpMessageBody_toCallback, ZEND_ACC_PUBLIC)
867 PHP_ME(HttpMessageBody, getResource, ai_HttpMessageBody_getResource, ZEND_ACC_PUBLIC)
868 PHP_ME(HttpMessageBody, getBoundary, ai_HttpMessageBody_getBoundary, ZEND_ACC_PUBLIC)
869 PHP_ME(HttpMessageBody, append, ai_HttpMessageBody_append, ZEND_ACC_PUBLIC)
870 PHP_ME(HttpMessageBody, addForm, ai_HttpMessageBody_addForm, ZEND_ACC_PUBLIC)
871 PHP_ME(HttpMessageBody, addPart, ai_HttpMessageBody_addPart, ZEND_ACC_PUBLIC)
872 PHP_ME(HttpMessageBody, etag, ai_HttpMessageBody_etag, ZEND_ACC_PUBLIC)
873 PHP_ME(HttpMessageBody, stat, ai_HttpMessageBody_stat, ZEND_ACC_PUBLIC)
874 EMPTY_FUNCTION_ENTRY
875 };
876
877 zend_class_entry *php_http_message_body_class_entry;
878
879 PHP_MINIT_FUNCTION(http_message_body)
880 {
881 zend_class_entry ce = {0};
882
883 INIT_NS_CLASS_ENTRY(ce, "http\\Message", "Body", php_http_message_body_methods);
884 php_http_message_body_class_entry = zend_register_internal_class(&ce);
885 php_http_message_body_class_entry->create_object = php_http_message_body_object_new;
886 memcpy(&php_http_message_body_object_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers));
887 php_http_message_body_object_handlers.offset = XtOffsetOf(php_http_message_body_object_t, zo);
888 php_http_message_body_object_handlers.clone_obj = php_http_message_body_object_clone;
889 php_http_message_body_object_handlers.free_obj = php_http_message_body_object_free;
890 zend_class_implements(php_http_message_body_class_entry, 1, zend_ce_serializable);
891
892 return SUCCESS;
893 }
894
895 /*
896 * Local variables:
897 * tab-width: 4
898 * c-basic-offset: 4
899 * End:
900 * vim600: noet sw=4 ts=4 fdm=marker
901 * vim<600: noet sw=4 ts=4
902 */