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