20dc30da8d2629770946254ce5282c62562d66b1
[m6w6/ext-http] / http_api.c
1 /*
2 +----------------------------------------------------------------------+
3 | PECL :: http |
4 +----------------------------------------------------------------------+
5 | This source file is subject to version 3.0 of the PHP license, that |
6 | is bundled with this package in the file LICENSE, and is available |
7 | through the world-wide-web at http://www.php.net/license/3_0.txt. |
8 | If you did not receive a copy of the PHP license and are unable to |
9 | obtain it through the world-wide-web, please send a note to |
10 | license@php.net so we can mail you a copy immediately. |
11 +----------------------------------------------------------------------+
12 | Copyright (c) 2004-2005 Michael Wallner <mike@php.net> |
13 +----------------------------------------------------------------------+
14 */
15
16 /* $Id$ */
17
18 #ifdef HAVE_CONFIG_H
19 # include "config.h"
20 #endif
21
22 #include <ctype.h>
23
24 #ifdef PHP_WIN32
25 # include <winsock2.h>
26 #elif defined(HAVE_NETDB_H)
27 # include <netdb.h>
28 #endif
29
30 #include "php.h"
31 #include "php_version.h"
32 #include "php_streams.h"
33 #include "php_output.h"
34 #include "snprintf.h"
35 #include "ext/standard/md5.h"
36 #include "ext/standard/url.h"
37 #include "ext/standard/base64.h"
38 #include "ext/standard/php_string.h"
39 #include "ext/standard/php_smart_str.h"
40 #include "ext/standard/php_lcg.h"
41
42 #include "SAPI.h"
43
44 #ifdef ZEND_ENGINE_2
45 # include "ext/standard/php_http.h"
46 #endif
47
48 #include "php_http.h"
49 #include "php_http_api.h"
50 #include "php_http_std_defs.h"
51
52 ZEND_DECLARE_MODULE_GLOBALS(http)
53
54 /* {{{ day/month names */
55 static const char *days[] = {
56 "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
57 };
58 static const char *wkdays[] = {
59 "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"
60 };
61 static const char *weekdays[] = {
62 "Monday", "Tuesday", "Wednesday",
63 "Thursday", "Friday", "Saturday", "Sunday"
64 };
65 static const char *months[] = {
66 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
67 "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"
68 };
69 enum assume_next {
70 DATE_MDAY,
71 DATE_YEAR,
72 DATE_TIME
73 };
74 static const struct time_zone {
75 const char *name;
76 const int offset;
77 } time_zones[] = {
78 {"GMT", 0}, /* Greenwich Mean */
79 {"UTC", 0}, /* Universal (Coordinated) */
80 {"WET", 0}, /* Western European */
81 {"BST", 0}, /* British Summer */
82 {"WAT", 60}, /* West Africa */
83 {"AST", 240}, /* Atlantic Standard */
84 {"ADT", 240}, /* Atlantic Daylight */
85 {"EST", 300}, /* Eastern Standard */
86 {"EDT", 300}, /* Eastern Daylight */
87 {"CST", 360}, /* Central Standard */
88 {"CDT", 360}, /* Central Daylight */
89 {"MST", 420}, /* Mountain Standard */
90 {"MDT", 420}, /* Mountain Daylight */
91 {"PST", 480}, /* Pacific Standard */
92 {"PDT", 480}, /* Pacific Daylight */
93 {"YST", 540}, /* Yukon Standard */
94 {"YDT", 540}, /* Yukon Daylight */
95 {"HST", 600}, /* Hawaii Standard */
96 {"HDT", 600}, /* Hawaii Daylight */
97 {"CAT", 600}, /* Central Alaska */
98 {"AHST", 600}, /* Alaska-Hawaii Standard */
99 {"NT", 660}, /* Nome */
100 {"IDLW", 720}, /* International Date Line West */
101 {"CET", -60}, /* Central European */
102 {"MET", -60}, /* Middle European */
103 {"MEWT", -60}, /* Middle European Winter */
104 {"MEST", -120}, /* Middle European Summer */
105 {"CEST", -120}, /* Central European Summer */
106 {"MESZ", -60}, /* Middle European Summer */
107 {"FWT", -60}, /* French Winter */
108 {"FST", -60}, /* French Summer */
109 {"EET", -120}, /* Eastern Europe, USSR Zone 1 */
110 {"WAST", -420}, /* West Australian Standard */
111 {"WADT", -420}, /* West Australian Daylight */
112 {"CCT", -480}, /* China Coast, USSR Zone 7 */
113 {"JST", -540}, /* Japan Standard, USSR Zone 8 */
114 {"EAST", -600}, /* Eastern Australian Standard */
115 {"EADT", -600}, /* Eastern Australian Daylight */
116 {"GST", -600}, /* Guam Standard, USSR Zone 9 */
117 {"NZT", -720}, /* New Zealand */
118 {"NZST", -720}, /* New Zealand Standard */
119 {"NZDT", -720}, /* New Zealand Daylight */
120 {"IDLE", -720}, /* International Date Line East */
121 };
122 /* }}} */
123
124 /* {{{ internals */
125
126 static int http_sort_q(const void *a, const void *b TSRMLS_DC);
127 #define http_send_chunk(d, b, e, m) _http_send_chunk((d), (b), (e), (m) TSRMLS_CC)
128 static STATUS _http_send_chunk(const void *data, const size_t begin, const size_t end, const http_send_mode mode TSRMLS_DC);
129
130 static int check_day(char *day, size_t len);
131 static int check_month(char *month);
132 static int check_tzone(char *tzone);
133
134 static int http_ob_stack_get(php_ob_buffer *, php_ob_buffer **);
135
136 /* {{{ static int http_sort_q(const void *, const void *) */
137 static int http_sort_q(const void *a, const void *b TSRMLS_DC)
138 {
139 Bucket *f, *s;
140 zval result, *first, *second;
141
142 f = *((Bucket **) a);
143 s = *((Bucket **) b);
144
145 first = *((zval **) f->pData);
146 second= *((zval **) s->pData);
147
148 if (numeric_compare_function(&result, first, second TSRMLS_CC) != SUCCESS) {
149 return 0;
150 }
151 return (Z_LVAL(result) > 0 ? -1 : (Z_LVAL(result) < 0 ? 1 : 0));
152 }
153 /* }}} */
154
155 /* {{{ static STATUS http_send_chunk(const void *, size_t, size_t,
156 http_send_mode) */
157 static STATUS _http_send_chunk(const void *data, const size_t begin,
158 const size_t end, const http_send_mode mode TSRMLS_DC)
159 {
160 long len = end - begin;
161
162 switch (mode)
163 {
164 case SEND_RSRC:
165 {
166 char *buf;
167 size_t read = 0;
168 php_stream *s = (php_stream *) data;
169
170 if (php_stream_seek(s, begin, SEEK_SET)) {
171 return FAILURE;
172 }
173
174 buf = (char *) ecalloc(1, HTTP_SENDBUF_SIZE);
175 /* read into buf and write out */
176 while ((len -= HTTP_SENDBUF_SIZE) >= 0) {
177 if (!(read = php_stream_read(s, buf, HTTP_SENDBUF_SIZE))) {
178 efree(buf);
179 return FAILURE;
180 }
181 if (read - php_body_write(buf, read TSRMLS_CC)) {
182 efree(buf);
183 return FAILURE;
184 }
185 /* ob_flush() && flush() */
186 php_end_ob_buffer(1, 1 TSRMLS_CC);
187 sapi_flush(TSRMLS_C);
188 }
189
190 /* read & write left over */
191 if (len) {
192 if (read = php_stream_read(s, buf, HTTP_SENDBUF_SIZE + len)) {
193 if (read - php_body_write(buf, read TSRMLS_CC)) {
194 efree(buf);
195 return FAILURE;
196 }
197 } else {
198 efree(buf);
199 return FAILURE;
200 }
201 /* ob_flush() & flush() */
202 php_end_ob_buffer(1, 1 TSRMLS_CC);
203 sapi_flush(TSRMLS_C);
204 }
205 efree(buf);
206 return SUCCESS;
207 }
208
209 case SEND_DATA:
210 {
211 char *s = (char *) data + begin;
212
213 while ((len -= HTTP_SENDBUF_SIZE) >= 0) {
214 if (HTTP_SENDBUF_SIZE - php_body_write(s, HTTP_SENDBUF_SIZE TSRMLS_CC)) {
215 return FAILURE;
216 }
217 s += HTTP_SENDBUF_SIZE;
218 /* ob_flush() & flush() */
219 php_end_ob_buffer(1, 1 TSRMLS_CC);
220 sapi_flush(TSRMLS_C);
221 }
222
223 /* write left over */
224 if (len) {
225 if (HTTP_SENDBUF_SIZE + len - php_body_write(s, HTTP_SENDBUF_SIZE + len TSRMLS_CC)) {
226 return FAILURE;
227 }
228 /* ob_flush() & flush() */
229 php_end_ob_buffer(1, 1 TSRMLS_CC);
230 sapi_flush(TSRMLS_C);
231 }
232 return SUCCESS;
233 }
234
235 default:
236 return FAILURE;
237 break;
238 }
239 }
240 /* }}} */
241
242 /* {{{ Day/Month/TZ checks for http_parse_date()
243 Originally by libcurl, Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al. */
244 static int check_day(char *day, size_t len)
245 {
246 int i;
247 const char * const *check = (len > 3) ? &weekdays[0] : &wkdays[0];
248 for (i = 0; i < 7; i++) {
249 if (!strcmp(day, check[0])) {
250 return i;
251 }
252 check++;
253 }
254 return -1;
255 }
256
257 static int check_month(char *month)
258 {
259 int i;
260 const char * const *check = &months[0];
261 for (i = 0; i < 12; i++) {
262 if (!strcmp(month, check[0])) {
263 return i;
264 }
265 check++;
266 }
267 return -1;
268 }
269
270 /* return the time zone offset between GMT and the input one, in number
271 of seconds or -1 if the timezone wasn't found/legal */
272
273 static int check_tzone(char *tzone)
274 {
275 int i;
276 const struct time_zone *check = time_zones;
277 for (i = 0; i < sizeof(time_zones) / sizeof(time_zones[0]); i++) {
278 if (!strcmp(tzone, check->name)) {
279 return check->offset * 60;
280 }
281 check++;
282 }
283 return -1;
284 }
285 /* }}} */
286
287 /* char *pretty_key(char *, int, int, int) */
288 char *pretty_key(char *key, int key_len, int uctitle, int xhyphen)
289 {
290 if (key && key_len) {
291 int i, wasalpha;
292 if (wasalpha = isalpha(key[0])) {
293 key[0] = uctitle ? toupper(key[0]) : tolower(key[0]);
294 }
295 for (i = 1; i < key_len; i++) {
296 if (isalpha(key[i])) {
297 key[i] = ((!wasalpha) && uctitle) ? toupper(key[i]) : tolower(key[i]);
298 wasalpha = 1;
299 } else {
300 if (xhyphen && (key[i] == '_')) {
301 key[i] = '-';
302 }
303 wasalpha = 0;
304 }
305 }
306 }
307 return key;
308 }
309 /* }}} */
310
311 /* {{{ static STATUS http_ob_stack_get(php_ob_buffer *, php_ob_buffer **) */
312 static STATUS http_ob_stack_get(php_ob_buffer *o, php_ob_buffer **s)
313 {
314 static int i = 0;
315 php_ob_buffer *b = emalloc(sizeof(php_ob_buffer));
316 b->handler_name = estrdup(o->handler_name);
317 b->buffer = estrndup(o->buffer, o->text_length);
318 b->text_length = o->text_length;
319 b->chunk_size = o->chunk_size;
320 b->erase = o->erase;
321 s[i++] = b;
322 return SUCCESS;
323 }
324 /* }}} */
325
326 /* }}} internals */
327
328 /* {{{ public API */
329
330 /* {{{ char *http_date(time_t) */
331 PHP_HTTP_API char *_http_date(time_t t TSRMLS_DC)
332 {
333 struct tm *gmtime, tmbuf;
334
335 if (gmtime = php_gmtime_r(&t, &tmbuf)) {
336 char *date = ecalloc(1, 31);
337 snprintf(date, 30,
338 "%s, %02d %s %04d %02d:%02d:%02d GMT",
339 days[gmtime->tm_wday], gmtime->tm_mday,
340 months[gmtime->tm_mon], gmtime->tm_year + 1900,
341 gmtime->tm_hour, gmtime->tm_min, gmtime->tm_sec
342 );
343 return date;
344 }
345
346 return NULL;
347 }
348 /* }}} */
349
350 /* {{{ time_t http_parse_date(char *)
351 Originally by libcurl, Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al. */
352 PHP_HTTP_API time_t _http_parse_date(const char *date)
353 {
354 time_t t = 0;
355 int tz_offset = -1, year = -1, month = -1, monthday = -1, weekday = -1,
356 hours = -1, minutes = -1, seconds = -1;
357 struct tm tm;
358 enum assume_next dignext = DATE_MDAY;
359 const char *indate = date;
360
361 int found = 0, part = 0; /* max 6 parts */
362
363 while (*date && (part < 6)) {
364 int found = 0;
365
366 while (*date && !isalnum(*date)) {
367 date++;
368 }
369
370 if (isalpha(*date)) {
371 /* a name coming up */
372 char buf[32] = "";
373 size_t len;
374 sscanf(date, "%31[A-Za-z]", buf);
375 len = strlen(buf);
376
377 if (weekday == -1) {
378 weekday = check_day(buf, len);
379 if (weekday != -1) {
380 found = 1;
381 }
382 }
383
384 if (!found && (month == -1)) {
385 month = check_month(buf);
386 if (month != -1) {
387 found = 1;
388 }
389 }
390
391 if (!found && (tz_offset == -1)) {
392 /* this just must be a time zone string */
393 tz_offset = check_tzone(buf);
394 if (tz_offset != -1) {
395 found = 1;
396 }
397 }
398
399 if (!found) {
400 return -1; /* bad string */
401 }
402 date += len;
403 }
404 else if (isdigit(*date)) {
405 /* a digit */
406 int val;
407 char *end;
408 if ((seconds == -1) &&
409 (3 == sscanf(date, "%02d:%02d:%02d", &hours, &minutes, &seconds))) {
410 /* time stamp! */
411 date += 8;
412 found = 1;
413 }
414 else {
415 val = (int) strtol(date, &end, 10);
416
417 if ((tz_offset == -1) && ((end - date) == 4) && (val < 1300) &&
418 (indate < date) && ((date[-1] == '+' || date[-1] == '-'))) {
419 /* four digits and a value less than 1300 and it is preceeded with
420 a plus or minus. This is a time zone indication. */
421 found = 1;
422 tz_offset = (val / 100 * 60 + val % 100) * 60;
423
424 /* the + and - prefix indicates the local time compared to GMT,
425 this we need ther reversed math to get what we want */
426 tz_offset = date[-1] == '+' ? -tz_offset : tz_offset;
427 }
428
429 if (((end - date) == 8) && (year == -1) && (month == -1) && (monthday == -1)) {
430 /* 8 digits, no year, month or day yet. This is YYYYMMDD */
431 found = 1;
432 year = val / 10000;
433 month = (val % 10000) / 100 - 1; /* month is 0 - 11 */
434 monthday = val % 100;
435 }
436
437 if (!found && (dignext == DATE_MDAY) && (monthday == -1)) {
438 if ((val > 0) && (val < 32)) {
439 monthday = val;
440 found = 1;
441 }
442 dignext = DATE_YEAR;
443 }
444
445 if (!found && (dignext == DATE_YEAR) && (year == -1)) {
446 year = val;
447 found = 1;
448 if (year < 1900) {
449 year += year > 70 ? 1900 : 2000;
450 }
451 if(monthday == -1) {
452 dignext = DATE_MDAY;
453 }
454 }
455
456 if (!found) {
457 return -1;
458 }
459
460 date = end;
461 }
462 }
463
464 part++;
465 }
466
467 if (-1 == seconds) {
468 seconds = minutes = hours = 0; /* no time, make it zero */
469 }
470
471 if ((-1 == monthday) || (-1 == month) || (-1 == year)) {
472 /* lacks vital info, fail */
473 return -1;
474 }
475
476 if (sizeof(time_t) < 5) {
477 /* 32 bit time_t can only hold dates to the beginning of 2038 */
478 if (year > 2037) {
479 return 0x7fffffff;
480 }
481 }
482
483 tm.tm_sec = seconds;
484 tm.tm_min = minutes;
485 tm.tm_hour = hours;
486 tm.tm_mday = monthday;
487 tm.tm_mon = month;
488 tm.tm_year = year - 1900;
489 tm.tm_wday = 0;
490 tm.tm_yday = 0;
491 tm.tm_isdst = 0;
492
493 t = mktime(&tm);
494
495 /* time zone adjust */
496 {
497 struct tm *gmt, keeptime2;
498 long delta;
499 time_t t2;
500
501 if(!(gmt = php_gmtime_r(&t, &keeptime2))) {
502 return -1; /* illegal date/time */
503 }
504
505 t2 = mktime(gmt);
506
507 /* Add the time zone diff (between the given timezone and GMT) and the
508 diff between the local time zone and GMT. */
509 delta = (tz_offset != -1 ? tz_offset : 0) + (t - t2);
510
511 if((delta > 0) && (t + delta < t)) {
512 return -1; /* time_t overflow */
513 }
514
515 t += delta;
516 }
517
518 return t;
519 }
520 /* }}} */
521
522 /* {{{ char *http_etag(void *, size_t, http_send_mode) */
523 PHP_HTTP_API char *_http_etag(const void *data_ptr, const size_t data_len,
524 const http_send_mode data_mode TSRMLS_DC)
525 {
526 char ssb_buf[128] = {0};
527 unsigned char digest[16];
528 PHP_MD5_CTX ctx;
529 char *new_etag = ecalloc(1, 33);
530
531 PHP_MD5Init(&ctx);
532
533 switch (data_mode)
534 {
535 case SEND_DATA:
536 PHP_MD5Update(&ctx, data_ptr, data_len);
537 break;
538
539 case SEND_RSRC:
540 if (!HTTP_G(ssb).sb.st_ino) {
541 if (php_stream_stat((php_stream *) data_ptr, &HTTP_G(ssb))) {
542 return NULL;
543 }
544 }
545 snprintf(ssb_buf, 127, "%ld=%ld=%ld",
546 HTTP_G(ssb).sb.st_mtime,
547 HTTP_G(ssb).sb.st_ino,
548 HTTP_G(ssb).sb.st_size
549 );
550 PHP_MD5Update(&ctx, ssb_buf, strlen(ssb_buf));
551 break;
552
553 default:
554 efree(new_etag);
555 return NULL;
556 break;
557 }
558
559 PHP_MD5Final(digest, &ctx);
560 make_digest(new_etag, digest);
561
562 return new_etag;
563 }
564 /* }}} */
565
566 /* {{{ time_t http_lmod(void *, http_send_mode) */
567 PHP_HTTP_API time_t _http_lmod(const void *data_ptr, const http_send_mode data_mode TSRMLS_DC)
568 {
569 switch (data_mode)
570 {
571 case SEND_DATA:
572 {
573 return time(NULL);
574 }
575
576 case SEND_RSRC:
577 {
578 if (!HTTP_G(ssb).sb.st_mtime) {
579 if (php_stream_stat((php_stream *) data_ptr, &HTTP_G(ssb))) {
580 return 0;
581 }
582 }
583 return HTTP_G(ssb).sb.st_mtime;
584 }
585
586 default:
587 {
588 if (!HTTP_G(ssb).sb.st_mtime) {
589 if(php_stream_stat_path(Z_STRVAL_P((zval *) data_ptr), &HTTP_G(ssb))) {
590 return 0;
591 }
592 }
593 return HTTP_G(ssb).sb.st_mtime;
594 }
595 }
596 }
597 /* }}} */
598
599 /* {{{ STATUS http_send_status_header(int, char *) */
600 PHP_HTTP_API STATUS _http_send_status_header(const int status, const char *header TSRMLS_DC)
601 {
602 sapi_header_line h = {(char *) header, strlen(header), status};
603 return sapi_header_op(SAPI_HEADER_REPLACE, &h TSRMLS_CC);
604 }
605 /* }}} */
606
607 /* {{{ zval *http_get_server_var_ex(char *, size_t) */
608 PHP_HTTP_API zval *_http_get_server_var_ex(const char *key, size_t key_size, zend_bool check TSRMLS_DC)
609 {
610 zval **var;
611 if (SUCCESS == zend_hash_find(HTTP_SERVER_VARS, (char *) key, key_size, (void **) &var)) {
612 if (check) {
613 return Z_STRVAL_PP(var) && Z_STRLEN_PP(var) ? *var : NULL;
614 } else {
615 return *var;
616 }
617 }
618 return NULL;
619 }
620 /* }}} */
621
622 /* {{{ void http_ob_etaghandler(char *, uint, char **, uint *, int) */
623 PHP_HTTP_API void _http_ob_etaghandler(char *output, uint output_len,
624 char **handled_output, uint *handled_output_len, int mode TSRMLS_DC)
625 {
626 char etag[33] = { 0 };
627 unsigned char digest[16];
628
629 if (mode & PHP_OUTPUT_HANDLER_START) {
630 PHP_MD5Init(&HTTP_G(etag_md5));
631 }
632
633 PHP_MD5Update(&HTTP_G(etag_md5), output, output_len);
634
635 if (mode & PHP_OUTPUT_HANDLER_END) {
636 PHP_MD5Final(digest, &HTTP_G(etag_md5));
637
638 /* just do that if desired */
639 if (HTTP_G(etag_started)) {
640 make_digest(etag, digest);
641
642 if (http_etag_match("HTTP_IF_NONE_MATCH", etag)) {
643 http_send_status(304);
644 zend_bailout();
645 } else {
646 http_send_etag(etag, 32);
647 }
648 }
649 }
650
651 *handled_output_len = output_len;
652 *handled_output = estrndup(output, output_len);
653 }
654 /* }}} */
655
656 /* {{{ STATUS http_start_ob_handler(php_output_handler_func_t, char *, uint, zend_bool) */
657 PHP_HTTP_API STATUS _http_start_ob_handler(php_output_handler_func_t handler_func,
658 char *handler_name, uint chunk_size, zend_bool erase TSRMLS_DC)
659 {
660 php_ob_buffer **stack;
661 int count, i;
662
663 if (count = OG(ob_nesting_level)) {
664 stack = ecalloc(count, sizeof(php_ob_buffer *));
665
666 if (count > 1) {
667 zend_stack_apply_with_argument(&OG(ob_buffers), ZEND_STACK_APPLY_BOTTOMUP,
668 (int (*)(void *elem, void *)) http_ob_stack_get, stack);
669 }
670
671 if (count > 0) {
672 http_ob_stack_get(&OG(active_ob_buffer), stack);
673 }
674
675 while (OG(ob_nesting_level)) {
676 php_end_ob_buffer(0, 0 TSRMLS_CC);
677 }
678 }
679
680 php_ob_set_internal_handler(handler_func, chunk_size, handler_name, erase TSRMLS_CC);
681
682 for (i = 0; i < count; i++) {
683 php_ob_buffer *s = stack[i];
684 if (strcmp(s->handler_name, "default output handler")) {
685 php_start_ob_buffer_named(s->handler_name, s->chunk_size, s->erase TSRMLS_CC);
686 }
687 php_body_write(s->buffer, s->text_length TSRMLS_CC);
688 efree(s->handler_name);
689 efree(s->buffer);
690 efree(s);
691 }
692 if (count) {
693 efree(stack);
694 }
695
696 return SUCCESS;
697 }
698 /* }}} */
699
700 /* {{{ int http_modified_match(char *, time_t) */
701 PHP_HTTP_API int _http_modified_match_ex(const char *entry, const time_t t,
702 const int enforce_presence TSRMLS_DC)
703 {
704 int retval;
705 zval *zmodified;
706 char *modified, *chr_ptr;
707
708 HTTP_GSC(zmodified, entry, !enforce_presence);
709
710 modified = estrndup(Z_STRVAL_P(zmodified), Z_STRLEN_P(zmodified));
711 if (chr_ptr = strrchr(modified, ';')) {
712 chr_ptr = 0;
713 }
714 retval = (t <= http_parse_date(modified));
715 efree(modified);
716 return retval;
717 }
718 /* }}} */
719
720 /* {{{ int http_etag_match(char *, char *) */
721 PHP_HTTP_API int _http_etag_match_ex(const char *entry, const char *etag,
722 const int enforce_presence TSRMLS_DC)
723 {
724 zval *zetag;
725 char *quoted_etag;
726 STATUS result;
727
728 HTTP_GSC(zetag, entry, !enforce_presence);
729
730 if (NULL != strchr(Z_STRVAL_P(zetag), '*')) {
731 return 1;
732 }
733
734 quoted_etag = (char *) emalloc(strlen(etag) + 3);
735 sprintf(quoted_etag, "\"%s\"", etag);
736
737 if (!strchr(Z_STRVAL_P(zetag), ',')) {
738 result = !strcmp(Z_STRVAL_P(zetag), quoted_etag);
739 } else {
740 result = (NULL != strstr(Z_STRVAL_P(zetag), quoted_etag));
741 }
742 efree(quoted_etag);
743 return result;
744 }
745 /* }}} */
746
747 /* {{{ STATUS http_send_last_modified(int) */
748 PHP_HTTP_API STATUS _http_send_last_modified(const time_t t TSRMLS_DC)
749 {
750 char *date = NULL;
751 if (date = http_date(t)) {
752 char modified[96] = "Last-Modified: ";
753 strcat(modified, date);
754 efree(date);
755
756 /* remember */
757 HTTP_G(lmod) = t;
758
759 return http_send_header(modified);
760 }
761 return FAILURE;
762 }
763 /* }}} */
764
765 /* {{{ static STATUS http_send_etag(char *, int) */
766 PHP_HTTP_API STATUS _http_send_etag(const char *etag,
767 const int etag_len TSRMLS_DC)
768 {
769 STATUS status;
770 char *etag_header;
771
772 if (!etag_len){
773 php_error_docref(NULL TSRMLS_CC,E_ERROR,
774 "Attempt to send empty ETag (previous: %s)\n", HTTP_G(etag));
775 return FAILURE;
776 }
777
778 /* remember */
779 if (HTTP_G(etag)) {
780 efree(HTTP_G(etag));
781 }
782 HTTP_G(etag) = estrdup(etag);
783
784 etag_header = ecalloc(1, sizeof("ETag: \"\"") + etag_len);
785 sprintf(etag_header, "ETag: \"%s\"", etag);
786 if (SUCCESS != (status = http_send_header(etag_header))) {
787 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Couldn't send '%s' header", etag_header);
788 }
789 efree(etag_header);
790 return status;
791 }
792 /* }}} */
793
794 /* {{{ STATUS http_send_cache_control(char *, size_t) */
795 PHP_HTTP_API STATUS _http_send_cache_control(const char *cache_control,
796 const size_t cc_len TSRMLS_DC)
797 {
798 STATUS status;
799 char *cc_header = ecalloc(1, sizeof("Cache-Control: ") + cc_len);
800
801 sprintf(cc_header, "Cache-Control: %s", cache_control);
802 if (SUCCESS != (status = http_send_header(cc_header))) {
803 php_error_docref(NULL TSRMLS_CC, E_NOTICE,
804 "Could not send '%s' header", cc_header);
805 }
806 efree(cc_header);
807 return status;
808 }
809 /* }}} */
810
811 /* {{{ STATUS http_send_content_type(char *, size_t) */
812 PHP_HTTP_API STATUS _http_send_content_type(const char *content_type,
813 const size_t ct_len TSRMLS_DC)
814 {
815 STATUS status;
816 char *ct_header;
817
818 if (!strchr(content_type, '/')) {
819 php_error_docref(NULL TSRMLS_CC, E_WARNING,
820 "Content-Type '%s' doesn't seem to consist of a primary and a secondary part",
821 content_type);
822 return FAILURE;
823 }
824
825 /* remember for multiple ranges */
826 if (HTTP_G(ctype)) {
827 efree(HTTP_G(ctype));
828 }
829 HTTP_G(ctype) = estrndup(content_type, ct_len);
830
831 ct_header = ecalloc(1, sizeof("Content-Type: ") + ct_len);
832 sprintf(ct_header, "Content-Type: %s", content_type);
833
834 if (SUCCESS != (status = http_send_header(ct_header))) {
835 php_error_docref(NULL TSRMLS_CC, E_WARNING,
836 "Couldn't send '%s' header", ct_header);
837 }
838 efree(ct_header);
839 return status;
840 }
841 /* }}} */
842
843 /* {{{ STATUS http_send_content_disposition(char *, size_t, zend_bool) */
844 PHP_HTTP_API STATUS _http_send_content_disposition(const char *filename,
845 const size_t f_len, const int send_inline TSRMLS_DC)
846 {
847 STATUS status;
848 char *cd_header;
849
850 if (send_inline) {
851 cd_header = ecalloc(1, sizeof("Content-Disposition: inline; filename=\"\"") + f_len);
852 sprintf(cd_header, "Content-Disposition: inline; filename=\"%s\"", filename);
853 } else {
854 cd_header = ecalloc(1, sizeof("Content-Disposition: attachment; filename=\"\"") + f_len);
855 sprintf(cd_header, "Content-Disposition: attachment; filename=\"%s\"", filename);
856 }
857
858 if (SUCCESS != (status = http_send_header(cd_header))) {
859 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Couldn't send '%s' header", cd_header);
860 }
861 efree(cd_header);
862 return status;
863 }
864 /* }}} */
865
866 /* {{{ STATUS http_cache_last_modified(time_t, time_t, char *, size_t) */
867 PHP_HTTP_API STATUS _http_cache_last_modified(const time_t last_modified,
868 const time_t send_modified, const char *cache_control, const size_t cc_len TSRMLS_DC)
869 {
870 if (cc_len) {
871 http_send_cache_control(cache_control, cc_len);
872 }
873
874 if (http_modified_match("HTTP_IF_MODIFIED_SINCE", last_modified)) {
875 if (SUCCESS == http_send_status(304)) {
876 zend_bailout();
877 } else {
878 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not send 304 Not Modified");
879 return FAILURE;
880 }
881 }
882 return http_send_last_modified(send_modified);
883 }
884 /* }}} */
885
886 /* {{{ STATUS http_cache_etag(char *, size_t, char *, size_t) */
887 PHP_HTTP_API STATUS _http_cache_etag(const char *etag, const size_t etag_len,
888 const char *cache_control, const size_t cc_len TSRMLS_DC)
889 {
890 if (cc_len) {
891 http_send_cache_control(cache_control, cc_len);
892 }
893
894 if (etag_len) {
895 http_send_etag(etag, etag_len);
896 if (http_etag_match("HTTP_IF_NONE_MATCH", etag)) {
897 if (SUCCESS == http_send_status(304)) {
898 zend_bailout();
899 } else {
900 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not send 304 Not Modified");
901 return FAILURE;
902 }
903 }
904 }
905
906 /* if no etag is given and we didn't already start ob_etaghandler -- start it */
907 if (!HTTP_G(etag_started)) {
908 if (SUCCESS == http_start_ob_handler(_http_ob_etaghandler, "ob_etaghandler", 4096, 1)) {
909 HTTP_G(etag_started) = 1;
910 return SUCCESS;
911 } else {
912 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not start ob_etaghandler");
913 return FAILURE;
914 }
915 }
916 return SUCCESS;
917 }
918 /* }}} */
919
920 /* {{{ char *http_absolute_uri(char *) */
921 PHP_HTTP_API char *_http_absolute_uri_ex(
922 const char *url, size_t url_len,
923 const char *proto, size_t proto_len,
924 const char *host, size_t host_len,
925 unsigned port TSRMLS_DC)
926 {
927 #if defined(PHP_WIN32) || defined(HAVE_NETDB_H)
928 struct servent *se;
929 #endif
930 php_url *purl, furl = {NULL};
931 size_t full_len = 0;
932 zval *zhost = NULL;
933 char *scheme = NULL, *URL = ecalloc(1, HTTP_URI_MAXLEN + 1);
934
935 if ((!url || !url_len) && (
936 (!(url = SG(request_info).request_uri)) ||
937 (!(url_len = strlen(SG(request_info).request_uri))))) {
938 php_error_docref(NULL TSRMLS_CC, E_WARNING,
939 "Cannot build an absolute URI if supplied URL and REQUEST_URI is empty");
940 return NULL;
941 }
942
943 if (!(purl = php_url_parse((char *) url))) {
944 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not parse supplied URL");
945 return NULL;
946 }
947
948 furl.user = purl->user;
949 furl.pass = purl->pass;
950 furl.path = purl->path;
951 furl.query = purl->query;
952 furl.fragment = purl->fragment;
953
954 if (proto && proto_len) {
955 furl.scheme = scheme = estrdup(proto);
956 } else if (purl->scheme) {
957 furl.scheme = purl->scheme;
958 #if defined(PHP_WIN32) || defined(HAVE_NETDB_H)
959 } else if (port && (se = getservbyport(port, "tcp"))) {
960 furl.scheme = (scheme = estrdup(se->s_name));
961 #endif
962 } else {
963 furl.scheme = "http";
964 }
965
966 if (port) {
967 furl.port = port;
968 } else if (purl->port) {
969 furl.port = purl->port;
970 } else if (strncmp(furl.scheme, "http", 4)) {
971 #if defined(PHP_WIN32) || defined(HAVE_NETDB_H)
972 if (se = getservbyname(furl.scheme, "tcp")) {
973 furl.port = se->s_port;
974 }
975 #endif
976 } else {
977 furl.port = (furl.scheme[4] == 's') ? 443 : 80;
978 }
979
980 if (host) {
981 furl.host = (char *) host;
982 } else if (purl->host) {
983 furl.host = purl->host;
984 } else if ( (zhost = http_get_server_var("HTTP_HOST")) ||
985 (zhost = http_get_server_var("SERVER_NAME"))) {
986 furl.host = Z_STRVAL_P(zhost);
987 } else {
988 furl.host = "localhost";
989 }
990
991 #define HTTP_URI_STRLCATS(URL, full_len, add_string) HTTP_URI_STRLCAT(URL, full_len, add_string, sizeof(add_string)-1)
992 #define HTTP_URI_STRLCATL(URL, full_len, add_string) HTTP_URI_STRLCAT(URL, full_len, add_string, strlen(add_string))
993 #define HTTP_URI_STRLCAT(URL, full_len, add_string, add_len) \
994 if ((full_len += add_len) > HTTP_URI_MAXLEN) { \
995 php_error_docref(NULL TSRMLS_CC, E_NOTICE, \
996 "Absolute URI would have exceeded max URI length (%d bytes) - " \
997 "tried to add %d bytes ('%s')", \
998 HTTP_URI_MAXLEN, add_len, add_string); \
999 if (scheme) { \
1000 efree(scheme); \
1001 } \
1002 php_url_free(purl); \
1003 return URL; \
1004 } else { \
1005 strcat(URL, add_string); \
1006 }
1007
1008 HTTP_URI_STRLCATL(URL, full_len, furl.scheme);
1009 HTTP_URI_STRLCATS(URL, full_len, "://");
1010
1011 if (furl.user) {
1012 HTTP_URI_STRLCATL(URL, full_len, furl.user);
1013 if (furl.pass) {
1014 HTTP_URI_STRLCATS(URL, full_len, ":");
1015 HTTP_URI_STRLCATL(URL, full_len, furl.pass);
1016 }
1017 HTTP_URI_STRLCATS(URL, full_len, "@");
1018 }
1019
1020 HTTP_URI_STRLCATL(URL, full_len, furl.host);
1021
1022 if ( (!strcmp(furl.scheme, "http") && (furl.port != 80)) ||
1023 (!strcmp(furl.scheme, "https") && (furl.port != 443))) {
1024 char port_string[8] = {0};
1025 snprintf(port_string, 7, ":%u", furl.port);
1026 HTTP_URI_STRLCATL(URL, full_len, port_string);
1027 }
1028
1029 if (furl.path) {
1030 if (furl.path[0] != '/') {
1031 HTTP_URI_STRLCATS(URL, full_len, "/");
1032 }
1033 HTTP_URI_STRLCATL(URL, full_len, furl.path);
1034 } else {
1035 HTTP_URI_STRLCATS(URL, full_len, "/");
1036 }
1037
1038 if (furl.query) {
1039 HTTP_URI_STRLCATS(URL, full_len, "?");
1040 HTTP_URI_STRLCATL(URL, full_len, furl.query);
1041 }
1042
1043 if (furl.fragment) {
1044 HTTP_URI_STRLCATS(URL, full_len, "#");
1045 HTTP_URI_STRLCATL(URL, full_len, furl.fragment);
1046 }
1047
1048 if (scheme) {
1049 efree(scheme);
1050 }
1051 php_url_free(purl);
1052
1053 return URL;
1054 }
1055 /* }}} */
1056
1057 /* {{{ char *http_negotiate_q(char *, HashTable *, char *) */
1058 PHP_HTTP_API char *_http_negotiate_q(const char *entry, const HashTable *supported, const char *def TSRMLS_DC)
1059 {
1060 zval *zaccept, zdelim, zarray, zentries, **zentry, **zsupp;
1061 char *q_ptr = NULL, *key = NULL;
1062 int i = 0, idx = 0;
1063 double qual;
1064
1065 HTTP_GSC(zaccept, entry, estrdup(def));
1066
1067 array_init(&zarray);
1068 array_init(&zentries);
1069
1070 Z_STRVAL(zdelim) = ",";
1071 Z_STRLEN(zdelim) = 1;
1072
1073 php_explode(&zdelim, zaccept, &zarray, -1);
1074
1075 FOREACH_HASH_VAL(Z_ARRVAL(zarray), zentry) {
1076 if (q_ptr = strrchr(Z_STRVAL_PP(zentry), ';')) {
1077 qual = strtod(q_ptr + 3, NULL);
1078 *q_ptr = 0;
1079 q_ptr = NULL;
1080 } else {
1081 qual = 1000.0 - i++;
1082 }
1083 FOREACH_HASH_VAL((HashTable *)supported, zsupp) {
1084 if (!strcasecmp(Z_STRVAL_PP(zsupp), Z_STRVAL_PP(zentry))) {
1085 add_assoc_double(&zentries, Z_STRVAL_PP(zsupp), qual);
1086 break;
1087 }
1088 }
1089 }
1090 zval_dtor(&zarray);
1091
1092 zend_hash_sort(Z_ARRVAL(zentries), zend_qsort, http_sort_q, 0 TSRMLS_CC);
1093
1094 FOREACH_HASH_KEY(Z_ARRVAL(zentries), key, idx) {
1095 if (key) {
1096 return estrdup(key);
1097 }
1098 }
1099
1100 return estrdup(def);
1101 }
1102 /* }}} */
1103
1104 /* {{{ http_range_status http_get_request_ranges(HashTable *ranges, size_t) */
1105 PHP_HTTP_API http_range_status _http_get_request_ranges(HashTable *ranges,
1106 const size_t length TSRMLS_DC)
1107 {
1108 zval *zrange;
1109 char *range, c;
1110 long begin = -1, end = -1, *ptr;
1111
1112 HTTP_GSC(zrange, "HTTP_RANGE", RANGE_NO);
1113 range = Z_STRVAL_P(zrange);
1114
1115 if (strncmp(range, "bytes=", sizeof("bytes=") - 1)) {
1116 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Range header misses bytes=");
1117 return RANGE_NO;
1118 }
1119
1120 ptr = &begin;
1121 range += sizeof("bytes=") - 1;
1122
1123 do {
1124 switch (c = *(range++))
1125 {
1126 case '0':
1127 *ptr *= 10;
1128 break;
1129
1130 case '1': case '2': case '3':
1131 case '4': case '5': case '6':
1132 case '7': case '8': case '9':
1133 /*
1134 * If the value of the pointer is already set (non-negative)
1135 * then multiply its value by ten and add the current value,
1136 * else initialise the pointers value with the current value
1137 * --
1138 * This let us recognize empty fields when validating the
1139 * ranges, i.e. a "-10" for begin and "12345" for the end
1140 * was the following range request: "Range: bytes=0-12345";
1141 * While a "-1" for begin and "12345" for the end would
1142 * have been: "Range: bytes=-12345".
1143 */
1144 if (*ptr > 0) {
1145 *ptr *= 10;
1146 *ptr += c - '0';
1147 } else {
1148 *ptr = c - '0';
1149 }
1150 break;
1151
1152 case '-':
1153 ptr = &end;
1154 break;
1155
1156 case ' ':
1157 /* IE - ignore for now */
1158 break;
1159
1160 case 0:
1161 case ',':
1162
1163 if (length) {
1164 /* validate ranges */
1165 switch (begin)
1166 {
1167 /* "0-12345" */
1168 case -10:
1169 if (length <= end) {
1170 return RANGE_ERR;
1171 }
1172 begin = 0;
1173 break;
1174
1175 /* "-12345" */
1176 case -1:
1177 if (length <= end) {
1178 return RANGE_ERR;
1179 }
1180 begin = length - end;
1181 end = length - 1;
1182 break;
1183
1184 /* "12345-(xxx)" */
1185 default:
1186 switch (end)
1187 {
1188 /* "12345-" */
1189 case -1:
1190 if (length <= begin) {
1191 return RANGE_ERR;
1192 }
1193 end = length - 1;
1194 break;
1195
1196 /* "12345-67890" */
1197 default:
1198 if ( (length <= begin) ||
1199 (length <= end) ||
1200 (end < begin)) {
1201 return RANGE_ERR;
1202 }
1203 break;
1204 }
1205 break;
1206 }
1207 }
1208 {
1209 zval *zentry;
1210 MAKE_STD_ZVAL(zentry);
1211 array_init(zentry);
1212 add_index_long(zentry, 0, begin);
1213 add_index_long(zentry, 1, end);
1214 zend_hash_next_index_insert(ranges, &zentry, sizeof(zval *), NULL);
1215
1216 begin = -1;
1217 end = -1;
1218 ptr = &begin;
1219 }
1220 break;
1221
1222 default:
1223 return RANGE_NO;
1224 break;
1225 }
1226 } while (c != 0);
1227
1228 return RANGE_OK;
1229 }
1230 /* }}} */
1231
1232 /* {{{ STATUS http_send_ranges(HashTable *, void *, size_t, http_send_mode) */
1233 PHP_HTTP_API STATUS _http_send_ranges(HashTable *ranges, const void *data, const size_t size, const http_send_mode mode TSRMLS_DC)
1234 {
1235 long **begin, **end;
1236 zval **zrange;
1237
1238 /* single range */
1239 if (zend_hash_num_elements(ranges) == 1) {
1240 char range_header[256] = {0};
1241
1242 if (SUCCESS != zend_hash_index_find(ranges, 0, (void **) &zrange) ||
1243 SUCCESS != zend_hash_index_find(Z_ARRVAL_PP(zrange), 0, (void **) &begin) ||
1244 SUCCESS != zend_hash_index_find(Z_ARRVAL_PP(zrange), 1, (void **) &end)) {
1245 return FAILURE;
1246 }
1247
1248 /* Send HTTP 206 Partial Content */
1249 http_send_status(206);
1250
1251 /* send content range header */
1252 snprintf(range_header, 255, "Content-Range: bytes %d-%d/%d", **begin, **end, size);
1253 http_send_header(range_header);
1254
1255 /* send requested chunk */
1256 return http_send_chunk(data, **begin, **end + 1, mode);
1257 }
1258
1259 /* multi range */
1260 else {
1261 char bound[23] = {0}, preface[1024] = {0},
1262 multi_header[68] = "Content-Type: multipart/byteranges; boundary=";
1263
1264 /* Send HTTP 206 Partial Content */
1265 http_send_status(206);
1266
1267 /* send multipart/byteranges header */
1268 snprintf(bound, 22, "--%d%0.9f", time(NULL), php_combined_lcg(TSRMLS_C));
1269 strncat(multi_header, bound + 2, 21);
1270 http_send_header(multi_header);
1271
1272 /* send each requested chunk */
1273 FOREACH_HASH_VAL(ranges, zrange) {
1274 if (SUCCESS != zend_hash_index_find(Z_ARRVAL_PP(zrange), 0, (void **) &begin) ||
1275 SUCCESS != zend_hash_index_find(Z_ARRVAL_PP(zrange), 1, (void **) &end)) {
1276 break;
1277 }
1278
1279 snprintf(preface, 1023,
1280 HTTP_CRLF "%s"
1281 HTTP_CRLF "Content-Type: %s"
1282 HTTP_CRLF "Content-Range: bytes %ld-%ld/%ld"
1283 HTTP_CRLF
1284 HTTP_CRLF,
1285
1286 bound,
1287 HTTP_G(ctype) ? HTTP_G(ctype) : "application/x-octetstream",
1288 **begin,
1289 **end,
1290 size
1291 );
1292
1293 php_body_write(preface, strlen(preface) TSRMLS_CC);
1294 http_send_chunk(data, **begin, **end + 1, mode);
1295 }
1296
1297 /* write boundary once more */
1298 php_body_write(HTTP_CRLF, sizeof(HTTP_CRLF) - 1 TSRMLS_CC);
1299 php_body_write(bound, strlen(bound) TSRMLS_CC);
1300 php_body_write("--", 2 TSRMLS_CC);
1301
1302 return SUCCESS;
1303 }
1304 }
1305 /* }}} */
1306
1307 /* {{{ STATUS http_send(void *, size_t, http_send_mode) */
1308 PHP_HTTP_API STATUS _http_send(const void *data_ptr, const size_t data_size,
1309 const http_send_mode data_mode TSRMLS_DC)
1310 {
1311 HashTable ranges;
1312 http_range_status range_status;
1313 int cache_etag = 0;
1314
1315 if (!data_ptr) {
1316 return FAILURE;
1317 }
1318 if (!data_size) {
1319 return SUCCESS;
1320 }
1321
1322 /* stop on-the-fly etag generation */
1323 if (cache_etag = HTTP_G(etag_started)) {
1324 /* interrupt */
1325 HTTP_G(etag_started) = 0;
1326 /* never ever use the output to compute the ETag if http_send() is used */
1327 php_end_ob_buffers(0 TSRMLS_CC);
1328 }
1329
1330 zend_hash_init(&ranges, 0, NULL, ZVAL_PTR_DTOR, 0);
1331 range_status = http_get_request_ranges(&ranges, data_size);
1332
1333 if (range_status == RANGE_ERR) {
1334 zend_hash_destroy(&ranges);
1335 http_send_status(416);
1336 return FAILURE;
1337 }
1338
1339 /* Range Request - only send ranges if entity hasn't changed */
1340 if ( range_status == RANGE_OK &&
1341 http_etag_match_ex("HTTP_IF_MATCH", HTTP_G(etag), 0) &&
1342 http_modified_match_ex("HTTP_IF_UNMODIFIED_SINCE", HTTP_G(lmod), 0)) {
1343 STATUS result = http_send_ranges(&ranges, data_ptr, data_size, data_mode);
1344 zend_hash_destroy(&ranges);
1345 return result;
1346 }
1347
1348 zend_hash_destroy(&ranges);
1349
1350 /* send 304 Not Modified if etag matches */
1351 if (cache_etag) {
1352 char *etag = NULL;
1353 int etag_match = 0;
1354
1355 if (!(etag = http_etag(data_ptr, data_size, data_mode))) {
1356 return FAILURE;
1357 }
1358
1359 http_send_etag(etag, 32);
1360 etag_match = http_etag_match("HTTP_IF_NONE_MATCH", etag);
1361 efree(etag);
1362
1363 if (etag_match) {
1364 return http_send_status(304);
1365 }
1366 }
1367
1368 /* send 304 Not Modified if last modified matches */
1369 if (http_modified_match("HTTP_IF_MODIFIED_SINCE", HTTP_G(lmod))) {
1370 return http_send_status(304);
1371 }
1372
1373 /* send full entity */
1374 return http_send_chunk(data_ptr, 0, data_size, data_mode);
1375 }
1376 /* }}} */
1377
1378 /* {{{ STATUS http_send_stream(php_stream *) */
1379 PHP_HTTP_API STATUS _http_send_stream_ex(php_stream *file,
1380 zend_bool close_stream TSRMLS_DC)
1381 {
1382 STATUS status;
1383
1384 if ((!file) || php_stream_stat(file, &HTTP_G(ssb))) {
1385 return FAILURE;
1386 }
1387
1388 status = http_send(file, HTTP_G(ssb).sb.st_size, SEND_RSRC);
1389
1390 if (close_stream) {
1391 php_stream_close(file);
1392 }
1393
1394 return status;
1395 }
1396 /* }}} */
1397
1398 /* {{{ STATUS http_chunked_decode(char *, size_t, char **, size_t *) */
1399 PHP_HTTP_API STATUS _http_chunked_decode(const char *encoded,
1400 const size_t encoded_len, char **decoded, size_t *decoded_len TSRMLS_DC)
1401 {
1402 const char *e_ptr;
1403 char *d_ptr;
1404
1405 *decoded_len = 0;
1406 *decoded = ecalloc(1, encoded_len);
1407 d_ptr = *decoded;
1408 e_ptr = encoded;
1409
1410 while (((e_ptr - encoded) - encoded_len) > 0) {
1411 char hex_len[9] = {0};
1412 size_t chunk_len = 0;
1413 int i = 0;
1414
1415 /* read in chunk size */
1416 while (isxdigit(*e_ptr)) {
1417 if (i == 9) {
1418 php_error_docref(NULL TSRMLS_CC, E_WARNING,
1419 "Chunk size is too long: 0x%s...", hex_len);
1420 efree(*decoded);
1421 return FAILURE;
1422 }
1423 hex_len[i++] = *e_ptr++;
1424 }
1425
1426 /* reached the end */
1427 if (!strcmp(hex_len, "0")) {
1428 break;
1429 }
1430
1431 /* new line */
1432 if (strncmp(e_ptr, HTTP_CRLF, 2)) {
1433 php_error_docref(NULL TSRMLS_CC, E_WARNING,
1434 "Invalid character (expected 0x0D 0x0A; got: %x %x)",
1435 *e_ptr, *(e_ptr + 1));
1436 efree(*decoded);
1437 return FAILURE;
1438 }
1439
1440 /* hex to long */
1441 {
1442 char *error = NULL;
1443 chunk_len = strtol(hex_len, &error, 16);
1444 if (error == hex_len) {
1445 php_error_docref(NULL TSRMLS_CC, E_WARNING,
1446 "Invalid chunk size string: '%s'", hex_len);
1447 efree(*decoded);
1448 return FAILURE;
1449 }
1450 }
1451
1452 memcpy(d_ptr, e_ptr += 2, chunk_len);
1453 d_ptr += chunk_len;
1454 e_ptr += chunk_len + 2;
1455 *decoded_len += chunk_len;
1456 }
1457
1458 return SUCCESS;
1459 }
1460 /* }}} */
1461
1462 /* {{{ STATUS http_split_response(zval *, zval *, zval *) */
1463 PHP_HTTP_API STATUS _http_split_response(zval *response, zval *headers, zval *body TSRMLS_DC)
1464 {
1465 char *b = NULL;
1466 size_t l = 0;
1467 STATUS status = http_split_response_ex(Z_STRVAL_P(response), Z_STRLEN_P(response), Z_ARRVAL_P(headers), &b, &l);
1468 ZVAL_STRINGL(body, b, l, 0);
1469 return status;
1470 }
1471 /* }}} */
1472
1473 /* {{{ STATUS http_split_response(char *, size_t, HashTable *, char **, size_t *) */
1474 PHP_HTTP_API STATUS _http_split_response_ex(char *response,
1475 size_t response_len, HashTable *headers, char **body, size_t *body_len TSRMLS_DC)
1476 {
1477 char *header = response, *real_body = NULL;
1478
1479 while (0 < (response_len - (response - header + 4))) {
1480 if ( (*response++ == '\r') &&
1481 (*response++ == '\n') &&
1482 (*response++ == '\r') &&
1483 (*response++ == '\n')) {
1484 real_body = response;
1485 break;
1486 }
1487 }
1488
1489 if (real_body && (*body_len = (response_len - (real_body - header)))) {
1490 *body = ecalloc(1, *body_len + 1);
1491 memcpy(*body, real_body, *body_len);
1492 }
1493
1494 return http_parse_headers_ex(header, real_body ? response_len - *body_len : response_len, headers, 1);
1495 }
1496 /* }}} */
1497
1498 /* {{{ STATUS http_parse_headers(char *, long, zval *) */
1499 PHP_HTTP_API STATUS _http_parse_headers_ex(char *header, int header_len,
1500 HashTable *headers, zend_bool prettify TSRMLS_DC)
1501 {
1502 char *colon = NULL, *line = NULL, *begin = header;
1503 zval array;
1504
1505 Z_ARRVAL(array) = headers;
1506
1507 if (header_len < 2) {
1508 return FAILURE;
1509 }
1510
1511 /* status code */
1512 if (!strncmp(header, "HTTP/1.", 7)) {
1513 char *end = strstr(header, HTTP_CRLF);
1514 add_assoc_stringl(&array, "Status",
1515 header + sizeof("HTTP/1.x ") - 1,
1516 end - (header + sizeof("HTTP/1.x ") - 1), 1);
1517 header = end + 2;
1518 }
1519
1520 line = header;
1521
1522 while (header_len >= (line - begin)) {
1523 int value_len = 0;
1524
1525 switch (*line++)
1526 {
1527 case 0:
1528 --value_len; /* we don't have CR so value length is one char less */
1529 case '\n':
1530 if (colon && ((!(*line - 1)) || ((*line != ' ') && (*line != '\t')))) {
1531
1532 /* skip empty key */
1533 if (header != colon) {
1534 char *key = estrndup(header, colon - header);
1535
1536 if (prettify) {
1537 key = pretty_key(key, colon - header, 1, 1);
1538 }
1539
1540 value_len += line - colon - 1;
1541
1542 /* skip leading ws */
1543 while (isspace(*(++colon))) --value_len;
1544 /* skip trailing ws */
1545 while (isspace(colon[value_len - 1])) --value_len;
1546
1547 if (value_len < 1) {
1548 /* hm, empty header? */
1549 add_assoc_stringl(&array, key, "", 0, 1);
1550 } else {
1551 add_assoc_stringl(&array, key, colon, value_len, 1);
1552 }
1553 efree(key);
1554 }
1555
1556 colon = NULL;
1557 value_len = 0;
1558 header += line - header;
1559 }
1560 break;
1561
1562 case ':':
1563 if (!colon) {
1564 colon = line - 1;
1565 }
1566 break;
1567 }
1568 }
1569 return SUCCESS;
1570 }
1571 /* }}} */
1572
1573 /* {{{ void http_get_request_headers_ex(HashTable *, zend_bool) */
1574 PHP_HTTP_API void _http_get_request_headers_ex(HashTable *headers, zend_bool prettify TSRMLS_DC)
1575 {
1576 char *key = NULL;
1577 long idx = 0;
1578 zval array;
1579
1580 Z_ARRVAL(array) = headers;
1581
1582 FOREACH_HASH_KEY(HTTP_SERVER_VARS, key, idx) {
1583 if (key && !strncmp(key, "HTTP_", 5)) {
1584 zval **header;
1585
1586 key += 5;
1587 if (prettify) {
1588 key = pretty_key(key, strlen(key), 1, 1);
1589 }
1590
1591 zend_hash_get_current_data(HTTP_SERVER_VARS, (void **) &header);
1592 add_assoc_stringl(&array, key, Z_STRVAL_PP(header), Z_STRLEN_PP(header), 1);
1593 key = NULL;
1594 }
1595 }
1596 }
1597 /* }}} */
1598
1599 /* {{{ STATUS http_urlencode_hash_ex(HashTable *, int, char **, size_t *) */
1600 PHP_HTTP_API STATUS _http_urlencode_hash_ex(HashTable *hash, int override_argsep,
1601 char *pre_encoded_data, size_t pre_encoded_len,
1602 char **encoded_data, size_t *encoded_len TSRMLS_DC)
1603 {
1604 smart_str qstr = {0};
1605
1606 if (override_argsep) {
1607 HTTP_URL_ARGSEP_OVERRIDE;
1608 }
1609
1610 if (pre_encoded_len && pre_encoded_data) {
1611 smart_str_appendl(&qstr, pre_encoded_data, pre_encoded_len);
1612 }
1613
1614 if (SUCCESS != php_url_encode_hash_ex(hash, &qstr, NULL, 0, NULL, 0, NULL, 0, NULL TSRMLS_CC)) {
1615 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Couldn't encode query data");
1616 if (qstr.c) {
1617 efree(qstr.c);
1618 }
1619 if (override_argsep) {
1620 HTTP_URL_ARGSEP_RESTORE;
1621 }
1622 return FAILURE;
1623 }
1624
1625 if (override_argsep) {
1626 HTTP_URL_ARGSEP_RESTORE;
1627 }
1628
1629 smart_str_0(&qstr);
1630
1631 *encoded_data = qstr.c;
1632 if (encoded_len) {
1633 *encoded_len = qstr.len;
1634 }
1635
1636 return SUCCESS;
1637 }
1638 /* }}} */
1639
1640 /* {{{ STATUS http_auth_header(char *, char*) */
1641 PHP_HTTP_API STATUS _http_auth_header(const char *type, const char *realm TSRMLS_DC)
1642 {
1643 char realm_header[1024] = {0};
1644 snprintf(realm_header, 1023, "WWW-Authenticate: %s realm=\"%s\"", type, realm);
1645 return http_send_status_header(401, realm_header);
1646 }
1647 /* }}} */
1648
1649 /* {{{ STATUS http_auth_credentials(char **, char **) */
1650 PHP_HTTP_API STATUS _http_auth_credentials(char **user, char **pass TSRMLS_DC)
1651 {
1652 if (strncmp(sapi_module.name, "isapi", 5)) {
1653 zval *zuser, *zpass;
1654
1655 HTTP_GSC(zuser, "PHP_AUTH_USER", FAILURE);
1656 HTTP_GSC(zpass, "PHP_AUTH_PW", FAILURE);
1657
1658 *user = estrndup(Z_STRVAL_P(zuser), Z_STRLEN_P(zuser));
1659 *pass = estrndup(Z_STRVAL_P(zpass), Z_STRLEN_P(zpass));
1660
1661 return SUCCESS;
1662 } else {
1663 zval *zauth = NULL;
1664 HTTP_GSC(zauth, "HTTP_AUTHORIZATION", FAILURE);
1665 {
1666 char *decoded, *colon;
1667 int decoded_len;
1668 decoded = php_base64_decode(Z_STRVAL_P(zauth), Z_STRLEN_P(zauth),
1669 &decoded_len);
1670
1671 if (colon = strchr(decoded + 6, ':')) {
1672 *user = estrndup(decoded + 6, colon - decoded - 6);
1673 *pass = estrndup(colon + 1, decoded + decoded_len - colon - 6 - 1);
1674
1675 return SUCCESS;
1676 } else {
1677 return FAILURE;
1678 }
1679 }
1680 }
1681 }
1682 /* }}} */
1683
1684 #ifndef ZEND_ENGINE_2
1685 /* {{{ php_url_encode_hash
1686 Author: Sara Golemon <pollita@php.net> */
1687 PHP_HTTP_API STATUS php_url_encode_hash_ex(HashTable *ht, smart_str *formstr,
1688 const char *num_prefix, int num_prefix_len,
1689 const char *key_prefix, int key_prefix_len,
1690 const char *key_suffix, int key_suffix_len,
1691 zval *type TSRMLS_DC)
1692 {
1693 char *arg_sep = NULL, *key = NULL, *ekey, *newprefix, *p;
1694 int arg_sep_len, key_len, ekey_len, key_type, newprefix_len;
1695 ulong idx;
1696 zval **zdata = NULL, *copyzval;
1697
1698 if (!ht) {
1699 return FAILURE;
1700 }
1701
1702 if (ht->nApplyCount > 0) {
1703 /* Prevent recursion */
1704 return SUCCESS;
1705 }
1706
1707 arg_sep = INI_STR("arg_separator.output");
1708 if (!arg_sep || !strlen(arg_sep)) {
1709 arg_sep = HTTP_URL_ARGSEP_DEFAULT;
1710 }
1711 arg_sep_len = strlen(arg_sep);
1712
1713 for (zend_hash_internal_pointer_reset(ht);
1714 (key_type = zend_hash_get_current_key_ex(ht, &key, &key_len, &idx, 0, NULL)) != HASH_KEY_NON_EXISTANT;
1715 zend_hash_move_forward(ht)
1716 ) {
1717 if (key_type == HASH_KEY_IS_STRING && key_len && key[key_len-1] == '\0') {
1718 /* We don't want that trailing NULL */
1719 key_len -= 1;
1720 }
1721
1722 #ifdef ZEND_ENGINE_2
1723 /* handling for private & protected object properties */
1724 if (key && *key == '\0' && type != NULL) {
1725 char *tmp;
1726
1727 zend_object *zobj = zend_objects_get_address(type TSRMLS_CC);
1728 if (zend_check_property_access(zobj, key TSRMLS_CC) != SUCCESS) {
1729 /* private or protected property access outside of the class */
1730 continue;
1731 }
1732 zend_unmangle_property_name(key, &tmp, &key);
1733 key_len = strlen(key);
1734 }
1735 #endif
1736
1737 if (zend_hash_get_current_data_ex(ht, (void **)&zdata, NULL) == FAILURE || !zdata || !(*zdata)) {
1738 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error traversing form data array.");
1739 return FAILURE;
1740 }
1741 if (Z_TYPE_PP(zdata) == IS_ARRAY || Z_TYPE_PP(zdata) == IS_OBJECT) {
1742 if (key_type == HASH_KEY_IS_STRING) {
1743 ekey = php_url_encode(key, key_len, &ekey_len);
1744 newprefix_len = key_suffix_len + ekey_len + key_prefix_len + 1;
1745 newprefix = emalloc(newprefix_len + 1);
1746 p = newprefix;
1747
1748 if (key_prefix) {
1749 memcpy(p, key_prefix, key_prefix_len);
1750 p += key_prefix_len;
1751 }
1752
1753 memcpy(p, ekey, ekey_len);
1754 p += ekey_len;
1755 efree(ekey);
1756
1757 if (key_suffix) {
1758 memcpy(p, key_suffix, key_suffix_len);
1759 p += key_suffix_len;
1760 }
1761
1762 *(p++) = '[';
1763 *p = '\0';
1764 } else {
1765 /* Is an integer key */
1766 ekey_len = spprintf(&ekey, 12, "%ld", idx);
1767 newprefix_len = key_prefix_len + num_prefix_len + ekey_len + key_suffix_len + 1;
1768 newprefix = emalloc(newprefix_len + 1);
1769 p = newprefix;
1770
1771 if (key_prefix) {
1772 memcpy(p, key_prefix, key_prefix_len);
1773 p += key_prefix_len;
1774 }
1775
1776 memcpy(p, num_prefix, num_prefix_len);
1777 p += num_prefix_len;
1778
1779 memcpy(p, ekey, ekey_len);
1780 p += ekey_len;
1781 efree(ekey);
1782
1783 if (key_suffix) {
1784 memcpy(p, key_suffix, key_suffix_len);
1785 p += key_suffix_len;
1786 }
1787 *(p++) = '[';
1788 *p = '\0';
1789 }
1790 ht->nApplyCount++;
1791 php_url_encode_hash_ex(HASH_OF(*zdata), formstr, NULL, 0, newprefix, newprefix_len, "]", 1, (Z_TYPE_PP(zdata) == IS_OBJECT ? *zdata : NULL) TSRMLS_CC);
1792 ht->nApplyCount--;
1793 efree(newprefix);
1794 } else if (Z_TYPE_PP(zdata) == IS_NULL || Z_TYPE_PP(zdata) == IS_RESOURCE) {
1795 /* Skip these types */
1796 continue;
1797 } else {
1798 if (formstr->len) {
1799 smart_str_appendl(formstr, arg_sep, arg_sep_len);
1800 }
1801 /* Simple key=value */
1802 smart_str_appendl(formstr, key_prefix, key_prefix_len);
1803 if (key_type == HASH_KEY_IS_STRING) {
1804 ekey = php_url_encode(key, key_len, &ekey_len);
1805 smart_str_appendl(formstr, ekey, ekey_len);
1806 efree(ekey);
1807 } else {
1808 /* Numeric key */
1809 if (num_prefix) {
1810 smart_str_appendl(formstr, num_prefix, num_prefix_len);
1811 }
1812 ekey_len = spprintf(&ekey, 12, "%ld", idx);
1813 smart_str_appendl(formstr, ekey, ekey_len);
1814 efree(ekey);
1815 }
1816 smart_str_appendl(formstr, key_suffix, key_suffix_len);
1817 smart_str_appendl(formstr, "=", 1);
1818 switch (Z_TYPE_PP(zdata)) {
1819 case IS_STRING:
1820 ekey = php_url_encode(Z_STRVAL_PP(zdata), Z_STRLEN_PP(zdata), &ekey_len);
1821 break;
1822 case IS_LONG:
1823 case IS_BOOL:
1824 ekey_len = spprintf(&ekey, 12, "%ld", Z_LVAL_PP(zdata));
1825 break;
1826 case IS_DOUBLE:
1827 ekey_len = spprintf(&ekey, 48, "%.*G", (int) EG(precision), Z_DVAL_PP(zdata));
1828 break;
1829 default:
1830 /* fall back on convert to string */
1831 MAKE_STD_ZVAL(copyzval);
1832 *copyzval = **zdata;
1833 zval_copy_ctor(copyzval);
1834 convert_to_string_ex(&copyzval);
1835 ekey = php_url_encode(Z_STRVAL_P(copyzval), Z_STRLEN_P(copyzval), &ekey_len);
1836 zval_ptr_dtor(&copyzval);
1837 }
1838 smart_str_appendl(formstr, ekey, ekey_len);
1839 efree(ekey);
1840 }
1841 }
1842
1843 return SUCCESS;
1844 }
1845 /* }}} */
1846 #endif /* !ZEND_ENDGINE_2 */
1847
1848 /* }}} public API */
1849
1850 /*
1851 * Local variables:
1852 * tab-width: 4
1853 * c-basic-offset: 4
1854 * End:
1855 * vim600: noet sw=4 ts=4 fdm=marker
1856 * vim<600: noet sw=4 ts=4
1857 */
1858