fix warnings
[m6w6/ext-http] / src / php_http_url.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 #if PHP_HTTP_HAVE_IDN2
16 # include <idn2.h>
17 #elif PHP_HTTP_HAVE_IDN
18 # include <idna.h>
19 #endif
20
21 #ifdef PHP_HTTP_HAVE_WCHAR
22 # include <wchar.h>
23 # include <wctype.h>
24 #endif
25
26 #ifdef HAVE_ARPA_INET_H
27 # include <arpa/inet.h>
28 #endif
29
30 #include "php_http_utf8.h"
31
32 static inline char *localhostname(void)
33 {
34 char hostname[1024] = {0};
35
36 #ifdef PHP_WIN32
37 if (SUCCESS == gethostname(hostname, lenof(hostname))) {
38 return estrdup(hostname);
39 }
40 #elif defined(HAVE_GETHOSTNAME)
41 if (SUCCESS == gethostname(hostname, lenof(hostname))) {
42 # if defined(HAVE_GETDOMAINNAME)
43 size_t hlen = strlen(hostname);
44 if (hlen <= lenof(hostname) - lenof("(none)")) {
45 hostname[hlen++] = '.';
46 if (SUCCESS == getdomainname(&hostname[hlen], lenof(hostname) - hlen)) {
47 if (!strcmp(&hostname[hlen], "(none)")) {
48 hostname[hlen - 1] = '\0';
49 }
50 return estrdup(hostname);
51 }
52 }
53 # endif
54 if (strcmp(hostname, "(none)")) {
55 return estrdup(hostname);
56 }
57 }
58 #endif
59 return estrndup("localhost", lenof("localhost"));
60 }
61
62 #define url(buf) ((php_http_url_t *) (buf).data)
63
64 static php_http_url_t *php_http_url_from_env(void)
65 {
66 zval *https, *zhost, *zport;
67 long port;
68 php_http_buffer_t buf;
69
70 php_http_buffer_init_ex(&buf, MAX(PHP_HTTP_BUFFER_DEFAULT_SIZE, sizeof(php_http_url_t)<<2), PHP_HTTP_BUFFER_INIT_PREALLOC);
71 php_http_buffer_account(&buf, sizeof(php_http_url_t));
72 memset(buf.data, 0, buf.used);
73
74 /* scheme */
75 url(buf)->scheme = &buf.data[buf.used];
76 https = php_http_env_get_server_var(ZEND_STRL("HTTPS"), 1);
77 if (https && !strcasecmp(Z_STRVAL_P(https), "ON")) {
78 php_http_buffer_append(&buf, "https", sizeof("https"));
79 } else {
80 php_http_buffer_append(&buf, "http", sizeof("http"));
81 }
82
83 /* host */
84 url(buf)->host = &buf.data[buf.used];
85 if ((((zhost = php_http_env_get_server_var(ZEND_STRL("HTTP_HOST"), 1)) ||
86 (zhost = php_http_env_get_server_var(ZEND_STRL("SERVER_NAME"), 1)) ||
87 (zhost = php_http_env_get_server_var(ZEND_STRL("SERVER_ADDR"), 1)))) && Z_STRLEN_P(zhost)) {
88 size_t stop_at = strspn(Z_STRVAL_P(zhost), "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-.");
89
90 php_http_buffer_append(&buf, Z_STRVAL_P(zhost), stop_at);
91 php_http_buffer_append(&buf, "", 1);
92 } else {
93 char *host_str = localhostname();
94
95 php_http_buffer_append(&buf, host_str, strlen(host_str) + 1);
96 efree(host_str);
97 }
98
99 /* port */
100 zport = php_http_env_get_server_var(ZEND_STRL("SERVER_PORT"), 1);
101 if (zport && IS_LONG == is_numeric_string(Z_STRVAL_P(zport), Z_STRLEN_P(zport), &port, NULL, 0)) {
102 url(buf)->port = port;
103 }
104
105 /* path */
106 if (SG(request_info).request_uri && SG(request_info).request_uri[0]) {
107 const char *q = strchr(SG(request_info).request_uri, '?');
108
109 url(buf)->path = &buf.data[buf.used];
110
111 if (q) {
112 php_http_buffer_append(&buf, SG(request_info).request_uri, q - SG(request_info).request_uri);
113 php_http_buffer_append(&buf, "", 1);
114 } else {
115 php_http_buffer_append(&buf, SG(request_info).request_uri, strlen(SG(request_info).request_uri) + 1);
116 }
117 }
118
119 /* query */
120 if (SG(request_info).query_string && SG(request_info).query_string[0]) {
121 url(buf)->query = &buf.data[buf.used];
122 php_http_buffer_append(&buf, SG(request_info).query_string, strlen(SG(request_info).query_string) + 1);
123 }
124
125 return url(buf);
126 }
127
128 #define url_isset(u,n) \
129 ((u)&&(u)->n)
130 #define url_append(buf, append) do { \
131 char *_ptr = (buf)->data; \
132 php_http_url_t *_url = (php_http_url_t *) _ptr, _mem = *_url; \
133 append; \
134 /* relocate */ \
135 if (_ptr != (buf)->data) { \
136 ptrdiff_t diff = (buf)->data - _ptr; \
137 _url = (php_http_url_t *) (buf)->data; \
138 if (_mem.scheme) _url->scheme += diff; \
139 if (_mem.user) _url->user += diff; \
140 if (_mem.pass) _url->pass += diff; \
141 if (_mem.host) _url->host += diff; \
142 if (_mem.path) _url->path += diff; \
143 if (_mem.query) _url->query += diff; \
144 if (_mem.fragment) _url->fragment += diff; \
145 } \
146 } while (0)
147 #define url_copy(n) do { \
148 if (url_isset(new_url, n)) { \
149 url(buf)->n = &buf.data[buf.used]; \
150 url_append(&buf, php_http_buffer_append(&buf, new_url->n, strlen(new_url->n) + 1)); \
151 } else if (url_isset(old_url, n)) { \
152 url(buf)->n = &buf.data[buf.used]; \
153 url_append(&buf, php_http_buffer_append(&buf, old_url->n, strlen(old_url->n) + 1)); \
154 } \
155 } while (0)
156
157 php_http_url_t *php_http_url_mod(const php_http_url_t *old_url, const php_http_url_t *new_url, unsigned flags)
158 {
159 php_http_url_t *tmp_url = NULL;
160 php_http_buffer_t buf;
161
162 php_http_buffer_init_ex(&buf, MAX(PHP_HTTP_BUFFER_DEFAULT_SIZE, sizeof(php_http_url_t)<<2), PHP_HTTP_BUFFER_INIT_PREALLOC);
163 php_http_buffer_account(&buf, sizeof(php_http_url_t));
164 memset(buf.data, 0, buf.used);
165
166 /* set from env if requested */
167 if (flags & PHP_HTTP_URL_FROM_ENV) {
168 php_http_url_t *env_url = php_http_url_from_env();
169
170 old_url = tmp_url = php_http_url_mod(env_url, old_url, flags ^ PHP_HTTP_URL_FROM_ENV);
171 php_http_url_free(&env_url);
172 }
173
174 url_copy(scheme);
175
176 if (!(flags & PHP_HTTP_URL_STRIP_USER)) {
177 url_copy(user);
178 }
179
180 if (!(flags & PHP_HTTP_URL_STRIP_PASS)) {
181 url_copy(pass);
182 }
183
184 url_copy(host);
185
186 if (!(flags & PHP_HTTP_URL_STRIP_PORT)) {
187 url(buf)->port = url_isset(new_url, port) ? new_url->port : ((old_url) ? old_url->port : 0);
188 }
189
190 if (!(flags & PHP_HTTP_URL_STRIP_PATH)) {
191 if ((flags & PHP_HTTP_URL_JOIN_PATH) && url_isset(old_url, path) && url_isset(new_url, path) && *new_url->path != '/') {
192 size_t old_path_len = strlen(old_url->path), new_path_len = strlen(new_url->path);
193 char *path = ecalloc(1, old_path_len + new_path_len + 1 + 1);
194
195 strcat(path, old_url->path);
196 if (path[old_path_len - 1] != '/') {
197 php_dirname(path, old_path_len);
198 strcat(path, "/");
199 }
200 strcat(path, new_url->path);
201
202 url(buf)->path = &buf.data[buf.used];
203 if (path[0] != '/') {
204 url_append(&buf, php_http_buffer_append(&buf, "/", 1));
205 }
206 url_append(&buf, php_http_buffer_append(&buf, path, strlen(path) + 1));
207 efree(path);
208 } else {
209 const char *path = NULL;
210
211 if (url_isset(new_url, path)) {
212 path = new_url->path;
213 } else if (url_isset(old_url, path)) {
214 path = old_url->path;
215 }
216
217 if (path) {
218 url(buf)->path = &buf.data[buf.used];
219
220 url_append(&buf, php_http_buffer_append(&buf, path, strlen(path) + 1));
221 }
222
223
224 }
225 }
226
227 if (!(flags & PHP_HTTP_URL_STRIP_QUERY)) {
228 if ((flags & PHP_HTTP_URL_JOIN_QUERY) && url_isset(new_url, query) && url_isset(old_url, query)) {
229 zval qarr, qstr;
230
231 array_init(&qarr);
232
233 ZVAL_STRING(&qstr, old_url->query);
234 php_http_querystring_update(&qarr, &qstr, NULL);
235 zval_ptr_dtor(&qstr);
236 ZVAL_STRING(&qstr, new_url->query);
237 php_http_querystring_update(&qarr, &qstr, NULL);
238 zval_ptr_dtor(&qstr);
239
240 ZVAL_NULL(&qstr);
241 php_http_querystring_update(&qarr, NULL, &qstr);
242
243 url(buf)->query = &buf.data[buf.used];
244 url_append(&buf, php_http_buffer_append(&buf, Z_STRVAL(qstr), Z_STRLEN(qstr) + 1));
245
246 zval_dtor(&qstr);
247 zval_dtor(&qarr);
248 } else {
249 url_copy(query);
250 }
251 }
252
253 if (!(flags & PHP_HTTP_URL_STRIP_FRAGMENT)) {
254 url_copy(fragment);
255 }
256
257 /* done with copy & combine & strip */
258
259 if (flags & PHP_HTTP_URL_FROM_ENV) {
260 /* free old_url we tainted above */
261 php_http_url_free(&tmp_url);
262 }
263
264 /* replace directory references if path is not a single slash */
265 if ((flags & PHP_HTTP_URL_SANITIZE_PATH)
266 && url(buf)->path[0] && url(buf)->path[1]) {
267 char *ptr, *end = url(buf)->path + strlen(url(buf)->path) + 1;
268
269 for (ptr = strchr(url(buf)->path, '/'); ptr; ptr = strchr(ptr, '/')) {
270 switch (ptr[1]) {
271 case '/':
272 memmove(&ptr[1], &ptr[2], end - &ptr[2]);
273 break;
274
275 case '.':
276 switch (ptr[2]) {
277 case '\0':
278 ptr[1] = '\0';
279 break;
280
281 case '/':
282 memmove(&ptr[1], &ptr[3], end - &ptr[3]);
283 break;
284
285 case '.':
286 if (ptr[3] == '/') {
287 char *pos = &ptr[4];
288 while (ptr != url(buf)->path) {
289 if (*--ptr == '/') {
290 break;
291 }
292 }
293 memmove(&ptr[1], pos, end - pos);
294 break;
295 } else if (!ptr[3]) {
296 /* .. at the end */
297 ptr[1] = '\0';
298 }
299 /* no break */
300
301 default:
302 /* something else */
303 ++ptr;
304 break;
305 }
306 break;
307
308 default:
309 ++ptr;
310 break;
311 }
312 }
313 }
314 /* unset default ports */
315 if (url(buf)->port) {
316 if ( ((url(buf)->port == 80) && url(buf)->scheme && !strcmp(url(buf)->scheme, "http"))
317 || ((url(buf)->port ==443) && url(buf)->scheme && !strcmp(url(buf)->scheme, "https"))
318 ) {
319 url(buf)->port = 0;
320 }
321 }
322
323 return url(buf);
324 }
325
326 char *php_http_url_to_string(const php_http_url_t *url, char **url_str, size_t *url_len, zend_bool persistent)
327 {
328 php_http_buffer_t buf;
329
330 php_http_buffer_init_ex(&buf, PHP_HTTP_BUFFER_DEFAULT_SIZE, persistent ?
331 PHP_HTTP_BUFFER_INIT_PERSISTENT : 0);
332
333 if (url->scheme && *url->scheme) {
334 php_http_buffer_appendl(&buf, url->scheme);
335 php_http_buffer_appends(&buf, "://");
336 } else if ((url->user && *url->user) || (url->host && *url->host)) {
337 php_http_buffer_appends(&buf, "//");
338 }
339
340 if (url->user && *url->user) {
341 php_http_buffer_appendl(&buf, url->user);
342 if (url->pass && *url->pass) {
343 php_http_buffer_appends(&buf, ":");
344 php_http_buffer_appendl(&buf, url->pass);
345 }
346 php_http_buffer_appends(&buf, "@");
347 }
348
349 if (url->host && *url->host) {
350 php_http_buffer_appendl(&buf, url->host);
351 if (url->port) {
352 php_http_buffer_appendf(&buf, ":%hu", url->port);
353 }
354 }
355
356 if (url->path && *url->path) {
357 if (*url->path != '/') {
358 php_http_buffer_appends(&buf, "/");
359 }
360 php_http_buffer_appendl(&buf, url->path);
361 } else if (buf.used) {
362 php_http_buffer_appends(&buf, "/");
363 }
364
365 if (url->query && *url->query) {
366 php_http_buffer_appends(&buf, "?");
367 php_http_buffer_appendl(&buf, url->query);
368 }
369
370 if (url->fragment && *url->fragment) {
371 php_http_buffer_appends(&buf, "#");
372 php_http_buffer_appendl(&buf, url->fragment);
373 }
374
375 php_http_buffer_shrink(&buf);
376 php_http_buffer_fix(&buf);
377
378 if (url_len) {
379 *url_len = buf.used;
380 }
381
382 if (url_str) {
383 *url_str = buf.data;
384 }
385
386 return buf.data;
387 }
388
389 char *php_http_url_authority_to_string(const php_http_url_t *url, char **url_str, size_t *url_len)
390 {
391 php_http_buffer_t buf;
392
393 php_http_buffer_init(&buf);
394
395 if (url->user && *url->user) {
396 php_http_buffer_appendl(&buf, url->user);
397 if (url->pass && *url->pass) {
398 php_http_buffer_appends(&buf, ":");
399 php_http_buffer_appendl(&buf, url->pass);
400 }
401 php_http_buffer_appends(&buf, "@");
402 }
403
404 if (url->host && *url->host) {
405 php_http_buffer_appendl(&buf, url->host);
406 if (url->port) {
407 php_http_buffer_appendf(&buf, ":%hu", url->port);
408 }
409 }
410
411 php_http_buffer_shrink(&buf);
412 php_http_buffer_fix(&buf);
413
414 if (url_len) {
415 *url_len = buf.used;
416 }
417
418 if (url_str) {
419 *url_str = buf.data;
420 }
421
422 return buf.data;
423 }
424
425 php_http_url_t *php_http_url_from_zval(zval *value, unsigned flags)
426 {
427 zend_string *zs;
428 php_http_url_t *purl;
429
430 switch (Z_TYPE_P(value)) {
431 case IS_ARRAY:
432 case IS_OBJECT:
433 purl = php_http_url_from_struct(HASH_OF(value));
434 break;
435
436 default:
437 zs = zval_get_string(value);
438 purl = php_http_url_parse(zs->val, zs->len, flags);
439 zend_string_release(zs);
440 }
441
442 return purl;
443 }
444
445 php_http_url_t *php_http_url_from_struct(HashTable *ht)
446 {
447 zval *e;
448 php_http_buffer_t buf;
449
450 php_http_buffer_init_ex(&buf, MAX(PHP_HTTP_BUFFER_DEFAULT_SIZE, sizeof(php_http_url_t)<<2), PHP_HTTP_BUFFER_INIT_PREALLOC);
451 php_http_buffer_account(&buf, sizeof(php_http_url_t));
452 memset(buf.data, 0, buf.used);
453
454 if ((e = zend_hash_str_find_ind(ht, ZEND_STRL("scheme")))) {
455 zend_string *zs = zval_get_string(e);
456 url(buf)->scheme = &buf.data[buf.used];
457 url_append(&buf, php_http_buffer_append(&buf, zs->val, zs->len + 1));
458 zend_string_release(zs);
459 }
460 if ((e = zend_hash_str_find_ind(ht, ZEND_STRL("user")))) {
461 zend_string *zs = zval_get_string(e);
462 url(buf)->user = &buf.data[buf.used];
463 url_append(&buf, php_http_buffer_append(&buf, zs->val, zs->len + 1));
464 zend_string_release(zs);
465 }
466 if ((e = zend_hash_str_find_ind(ht, ZEND_STRL("pass")))) {
467 zend_string *zs = zval_get_string(e);
468 url(buf)->pass = &buf.data[buf.used];
469 url_append(&buf, php_http_buffer_append(&buf, zs->val, zs->len + 1));
470 zend_string_release(zs);
471 }
472 if ((e = zend_hash_str_find_ind(ht, ZEND_STRL("host")))) {
473 zend_string *zs = zval_get_string(e);
474 url(buf)->host = &buf.data[buf.used];
475 url_append(&buf, php_http_buffer_append(&buf, zs->val, zs->len + 1));
476 zend_string_release(zs);
477 }
478 if ((e = zend_hash_str_find_ind(ht, ZEND_STRL("port")))) {
479 url(buf)->port = (unsigned short) zval_get_long(e);
480 }
481 if ((e = zend_hash_str_find_ind(ht, ZEND_STRL("path")))) {
482 zend_string *zs = zval_get_string(e);
483 url(buf)->path = &buf.data[buf.used];
484 url_append(&buf, php_http_buffer_append(&buf, zs->val, zs->len + 1));
485 zend_string_release(zs);
486 }
487 if ((e = zend_hash_str_find_ind(ht, ZEND_STRL("query")))) {
488 zend_string *zs = zval_get_string(e);
489 url(buf)->query = &buf.data[buf.used];
490 url_append(&buf, php_http_buffer_append(&buf, zs->val, zs->len + 1));
491 zend_string_release(zs);
492 }
493 if ((e = zend_hash_str_find_ind(ht, ZEND_STRL("fragment")))) {
494 zend_string *zs = zval_get_string(e);
495 url(buf)->fragment = &buf.data[buf.used];
496 url_append(&buf, php_http_buffer_append(&buf, zs->val, zs->len + 1));
497 zend_string_release(zs);
498 }
499
500 return url(buf);
501 }
502
503 HashTable *php_http_url_to_struct(const php_http_url_t *url, zval *strct)
504 {
505 HashTable *ht;
506 zval tmp;
507
508 if (strct) {
509 switch (Z_TYPE_P(strct)) {
510 default:
511 zval_dtor(strct);
512 array_init(strct);
513 /* no break */
514 case IS_ARRAY:
515 case IS_OBJECT:
516 ht = HASH_OF(strct);
517 break;
518 }
519 } else {
520 ALLOC_HASHTABLE(ht);
521 zend_hash_init(ht, 8, NULL, ZVAL_PTR_DTOR, 0);
522 }
523
524 #define url_struct_add(part) \
525 if (Z_TYPE_P(strct) == IS_ARRAY) { \
526 zend_hash_str_update(Z_ARRVAL_P(strct), part, lenof(part), &tmp); \
527 } else { \
528 zend_update_property(Z_OBJCE_P(strct), strct, part, lenof(part), &tmp); \
529 zval_ptr_dtor(&tmp); \
530 }
531
532 if (url) {
533 if (url->scheme) {
534 ZVAL_STRING(&tmp, url->scheme);
535 url_struct_add("scheme");
536 }
537 if (url->user) {
538 ZVAL_STRING(&tmp, url->user);
539 url_struct_add("user");
540 }
541 if (url->pass) {
542 ZVAL_STRING(&tmp, url->pass);
543 url_struct_add("pass");
544 }
545 if (url->host) {
546 ZVAL_STRING(&tmp, url->host);
547 url_struct_add("host");
548 }
549 if (url->port) {
550 ZVAL_LONG(&tmp, url->port);
551 url_struct_add("port");
552 }
553 if (url->path) {
554 ZVAL_STRING(&tmp, url->path);
555 url_struct_add("path");
556 }
557 if (url->query) {
558 ZVAL_STRING(&tmp, url->query);
559 url_struct_add("query");
560 }
561 if (url->fragment) {
562 ZVAL_STRING(&tmp, url->fragment);
563 url_struct_add("fragment");
564 }
565 }
566
567 return ht;
568 }
569
570 ZEND_RESULT_CODE php_http_url_encode_hash(HashTable *hash, const char *pre_encoded_str, size_t pre_encoded_len, char **encoded_str, size_t *encoded_len)
571 {
572 const char *arg_sep_str = "&";
573 size_t arg_sep_len = 1;
574 php_http_buffer_t *qstr = php_http_buffer_new();
575
576 php_http_url_argsep(&arg_sep_str, &arg_sep_len);
577
578 if (SUCCESS != php_http_url_encode_hash_ex(hash, qstr, arg_sep_str, arg_sep_len, "=", 1, pre_encoded_str, pre_encoded_len)) {
579 php_http_buffer_free(&qstr);
580 return FAILURE;
581 }
582
583 php_http_buffer_data(qstr, encoded_str, encoded_len);
584 php_http_buffer_free(&qstr);
585
586 return SUCCESS;
587 }
588
589 ZEND_RESULT_CODE php_http_url_encode_hash_ex(HashTable *hash, php_http_buffer_t *qstr, const char *arg_sep_str, size_t arg_sep_len, const char *val_sep_str, size_t val_sep_len, const char *pre_encoded_str, size_t pre_encoded_len)
590 {
591 if (pre_encoded_len && pre_encoded_str) {
592 php_http_buffer_append(qstr, pre_encoded_str, pre_encoded_len);
593 }
594
595 if (!php_http_params_to_string(qstr, hash, arg_sep_str, arg_sep_len, "", 0, val_sep_str, val_sep_len, PHP_HTTP_PARAMS_QUERY)) {
596 return FAILURE;
597 }
598
599 return SUCCESS;
600 }
601
602 struct parse_state {
603 php_http_url_t url;
604 const char *ptr;
605 const char *end;
606 size_t maxlen;
607 off_t offset;
608 unsigned flags;
609 char buffer[1]; /* last member */
610 };
611
612 void php_http_url_free(php_http_url_t **url)
613 {
614 if (*url) {
615 efree(*url);
616 *url = NULL;
617 }
618 }
619
620 php_http_url_t *php_http_url_copy(const php_http_url_t *url, zend_bool persistent)
621 {
622 php_http_url_t *cpy;
623 const char *end = NULL, *url_ptr = (const char *) url;
624 char *cpy_ptr;
625
626 end = MAX(url->scheme, end);
627 end = MAX(url->pass, end);
628 end = MAX(url->user, end);
629 end = MAX(url->host, end);
630 end = MAX(url->path, end);
631 end = MAX(url->query, end);
632 end = MAX(url->fragment, end);
633
634 if (end) {
635 end += strlen(end) + 1;
636 cpy_ptr = pecalloc(1, end - url_ptr, persistent);
637 cpy = (php_http_url_t *) cpy_ptr;
638
639 memcpy(cpy_ptr + sizeof(*cpy), url_ptr + sizeof(*url), end - url_ptr - sizeof(*url));
640
641 cpy->scheme = url->scheme ? cpy_ptr + (url->scheme - url_ptr) : NULL;
642 cpy->pass = url->pass ? cpy_ptr + (url->pass - url_ptr) : NULL;
643 cpy->user = url->user ? cpy_ptr + (url->user - url_ptr) : NULL;
644 cpy->host = url->host ? cpy_ptr + (url->host - url_ptr) : NULL;
645 cpy->path = url->path ? cpy_ptr + (url->path - url_ptr) : NULL;
646 cpy->query = url->query ? cpy_ptr + (url->query - url_ptr) : NULL;
647 cpy->fragment = url->fragment ? cpy_ptr + (url->fragment - url_ptr) : NULL;
648 } else {
649 cpy = ecalloc(1, sizeof(*url));
650 }
651
652 cpy->port = url->port;
653
654 return cpy;
655 }
656
657 static size_t parse_mb_utf8(unsigned *wc, const char *ptr, const char *end)
658 {
659 unsigned wchar;
660 size_t consumed = utf8towc(&wchar, (const unsigned char *) ptr, end - ptr);
661
662 if (!consumed || consumed == (size_t) -1) {
663 return 0;
664 }
665
666 if (wc) {
667 *wc = wchar;
668 }
669 return consumed;
670 }
671
672 #ifdef PHP_HTTP_HAVE_WCHAR
673 static size_t parse_mb_loc(unsigned *wc, const char *ptr, const char *end)
674 {
675 wchar_t wchar;
676 size_t consumed = 0;
677 #if defined(HAVE_MBRTOWC)
678 mbstate_t ps;
679
680 memset(&ps, 0, sizeof(ps));
681 consumed = mbrtowc(&wchar, ptr, end - ptr, &ps);
682 #elif defined(HAVE_MBTOWC)
683 consumed = mbtowc(&wchar, ptr, end - ptr);
684 #endif
685
686 if (!consumed || consumed == (size_t) -1) {
687 return 0;
688 }
689
690 if (wc) {
691 *wc = wchar;
692 }
693 return consumed;
694 }
695 #endif
696
697 typedef enum parse_mb_what {
698 PARSE_SCHEME,
699 PARSE_USERINFO,
700 PARSE_HOSTINFO,
701 PARSE_PATH,
702 PARSE_QUERY,
703 PARSE_FRAGMENT
704 } parse_mb_what_t;
705
706 static const char * const parse_what[] = {
707 "scheme",
708 "userinfo",
709 "hostinfo",
710 "path",
711 "query",
712 "fragment"
713 };
714
715 static const char parse_xdigits[] = "0123456789ABCDEF";
716
717 static size_t parse_mb(struct parse_state *state, parse_mb_what_t what, const char *ptr, const char *end, const char *begin, zend_bool silent)
718 {
719 unsigned wchar;
720 size_t consumed = 0;
721
722 if (state->flags & PHP_HTTP_URL_PARSE_MBUTF8) {
723 consumed = parse_mb_utf8(&wchar, ptr, end);
724 }
725 #ifdef PHP_HTTP_HAVE_WCHAR
726 else if (state->flags & PHP_HTTP_URL_PARSE_MBLOC) {
727 consumed = parse_mb_loc(&wchar, ptr, end);
728 }
729 #endif
730
731 while (consumed) {
732 if (!(state->flags & PHP_HTTP_URL_PARSE_TOPCT) || what == PARSE_HOSTINFO || what == PARSE_SCHEME) {
733 if (what == PARSE_HOSTINFO && (state->flags & PHP_HTTP_URL_PARSE_TOIDN)) {
734 /* idna */
735 } else if (state->flags & PHP_HTTP_URL_PARSE_MBUTF8) {
736 if (!isualnum(wchar)) {
737 break;
738 }
739 #ifdef PHP_HTTP_HAVE_WCHAR
740 } else if (state->flags & PHP_HTTP_URL_PARSE_MBLOC) {
741 if (!iswalnum(wchar)) {
742 break;
743 }
744 #endif
745 }
746 PHP_HTTP_DUFF(consumed, state->buffer[state->offset++] = *ptr++);
747 } else {
748 int i = 0;
749
750 PHP_HTTP_DUFF(consumed,
751 state->buffer[state->offset++] = '%';
752 state->buffer[state->offset++] = parse_xdigits[((unsigned char) ptr[i]) >> 4];
753 state->buffer[state->offset++] = parse_xdigits[((unsigned char) ptr[i]) & 0xf];
754 ++i;
755 );
756 }
757
758 return consumed;
759 }
760
761 if (!silent) {
762 if (consumed) {
763 php_error_docref(NULL, E_WARNING,
764 "Failed to parse %s; unexpected multibyte sequence 0x%x at pos %u in '%s'",
765 parse_what[what], wchar, (unsigned) (ptr - begin), begin);
766 } else {
767 php_error_docref(NULL, E_WARNING,
768 "Failed to parse %s; unexpected byte 0x%02x at pos %u in '%s'",
769 parse_what[what], (unsigned char) *ptr, (unsigned) (ptr - begin), begin);
770 }
771 }
772
773 return 0;
774 }
775
776 static ZEND_RESULT_CODE parse_userinfo(struct parse_state *state, const char *ptr)
777 {
778 size_t mb;
779 const char *password = NULL, *end = state->ptr, *tmp = ptr;
780
781 state->url.user = &state->buffer[state->offset];
782
783 do {
784 switch (*ptr) {
785 case ':':
786 if (password) {
787 php_error_docref(NULL, E_WARNING,
788 "Failed to parse password; duplicate ':' at pos %u in '%s'",
789 (unsigned) (ptr - tmp), tmp);
790 return FAILURE;
791 }
792 password = ptr + 1;
793 state->buffer[state->offset++] = 0;
794 state->url.pass = &state->buffer[state->offset];
795 break;
796
797 case '%':
798 if (ptr[1] != '%' && (end - ptr <= 2 || !isxdigit(*(ptr+1)) || !isxdigit(*(ptr+2)))) {
799 php_error_docref(NULL, E_WARNING,
800 "Failed to parse userinfo; invalid percent encoding at pos %u in '%s'",
801 (unsigned) (ptr - tmp), tmp);
802 return FAILURE;
803 }
804 state->buffer[state->offset++] = *ptr++;
805 state->buffer[state->offset++] = *ptr++;
806 state->buffer[state->offset++] = *ptr;
807 break;
808
809 case '!': case '$': case '&': case '\'': case '(': case ')': case '*':
810 case '+': case ',': case ';': case '=': /* sub-delims */
811 case '-': case '.': case '_': case '~': /* unreserved */
812 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
813 case 'H': case 'I': case 'J': case 'K': case 'L': case 'M': case 'N':
814 case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
815 case 'V': case 'W': case 'X': case 'Y': case 'Z':
816 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
817 case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
818 case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
819 case 'v': case 'w': case 'x': case 'y': case 'z':
820 case '0': case '1': case '2': case '3': case '4': case '5': case '6':
821 case '7': case '8': case '9':
822 /* allowed */
823 state->buffer[state->offset++] = *ptr;
824 break;
825
826 default:
827 if (!(mb = parse_mb(state, PARSE_USERINFO, ptr, end, tmp, 0))) {
828 return FAILURE;
829 }
830 ptr += mb - 1;
831 }
832 } while(++ptr != end);
833
834
835 state->buffer[state->offset++] = 0;
836
837 return SUCCESS;
838 }
839
840 #if defined(PHP_WIN32) || defined(HAVE_UIDNA_IDNTOASCII)
841 typedef size_t (*parse_mb_func)(unsigned *wc, const char *ptr, const char *end);
842 static ZEND_RESULT_CODE to_utf16(parse_mb_func fn, const char *u8, uint16_t **u16, size_t *len)
843 {
844 size_t offset = 0, u8_len = strlen(u8);
845
846 *u16 = ecalloc(4 * sizeof(uint16_t), u8_len + 1);
847 *len = 0;
848
849 while (offset < u8_len) {
850 unsigned wc;
851 uint16_t buf[2], *ptr = buf;
852 size_t consumed = fn(&wc, &u8[offset], &u8[u8_len]);
853
854 if (!consumed) {
855 efree(*u16);
856 php_error_docref(NULL, E_WARNING, "Failed to parse UTF-8 at pos %zu of '%s'", offset, u8);
857 return FAILURE;
858 } else {
859 offset += consumed;
860 }
861
862 switch (wctoutf16(buf, wc)) {
863 case 2:
864 (*u16)[(*len)++] = *ptr++;
865 /* no break */
866 case 1:
867 (*u16)[(*len)++] = *ptr++;
868 break;
869 case 0:
870 default:
871 efree(*u16);
872 php_error_docref(NULL, E_WARNING, "Failed to convert UTF-32 'U+%X' to UTF-16", wc);
873 return FAILURE;
874 }
875 }
876
877 return SUCCESS;
878 }
879 #endif
880
881 #ifndef MAXHOSTNAMELEN
882 # define MAXHOSTNAMELEN 256
883 #endif
884
885 #if PHP_HTTP_HAVE_IDN2
886 static ZEND_RESULT_CODE parse_idn2(struct parse_state *state, size_t prev_len)
887 {
888 char *idn = NULL;
889 int rv = -1;
890
891 if (state->flags & PHP_HTTP_URL_PARSE_MBUTF8) {
892 rv = idn2_lookup_u8((const unsigned char *) state->url.host, (unsigned char **) &idn, IDN2_NFC_INPUT);
893 }
894 # ifdef PHP_HTTP_HAVE_WCHAR
895 else if (state->flags & PHP_HTTP_URL_PARSE_MBLOC) {
896 rv = idn2_lookup_ul(state->url.host, &idn, 0);
897 }
898 # endif
899 if (rv != IDN2_OK) {
900 php_error_docref(NULL, E_WARNING, "Failed to parse IDN; %s", idn2_strerror(rv));
901 return FAILURE;
902 } else {
903 size_t idnlen = strlen(idn);
904 memcpy(state->url.host, idn, idnlen + 1);
905 free(idn);
906 state->offset += idnlen - prev_len;
907 return SUCCESS;
908 }
909 }
910 #elif PHP_HTTP_HAVE_IDN
911 static ZEND_RESULT_CODE parse_idn(struct parse_state *state, size_t prev_len)
912 {
913 char *idn = NULL;
914 int rv = -1;
915
916 if (state->flags & PHP_HTTP_URL_PARSE_MBUTF8) {
917 rv = idna_to_ascii_8z(state->url.host, &idn, IDNA_ALLOW_UNASSIGNED|IDNA_USE_STD3_ASCII_RULES);
918 }
919 # ifdef PHP_HTTP_HAVE_WCHAR
920 else if (state->flags & PHP_HTTP_URL_PARSE_MBLOC) {
921 rv = idna_to_ascii_lz(state->url.host, &idn, IDNA_ALLOW_UNASSIGNED|IDNA_USE_STD3_ASCII_RULES);
922 }
923 # endif
924 if (rv != IDNA_SUCCESS) {
925 php_error_docref(NULL, E_WARNING, "Failed to parse IDN; %s", idna_strerror(rv));
926 return FAILURE;
927 } else {
928 size_t idnlen = strlen(idn);
929 memcpy(state->url.host, idn, idnlen + 1);
930 free(idn);
931 state->offset += idnlen - prev_len;
932 return SUCCESS;
933 }
934 }
935 #endif
936
937 #ifdef HAVE_UIDNA_IDNTOASCII
938 # if HAVE_UNICODE_UIDNA_H
939 # include <unicode/uidna.h>
940 # else
941 typedef uint16_t UChar;
942 typedef enum { U_ZERO_ERROR = 0 } UErrorCode;
943 int32_t uidna_IDNToASCII(const UChar *src, int32_t srcLength, UChar *dest, int32_t destCapacity, int32_t options, void *parseError, UErrorCode *status);
944 # endif
945 static ZEND_RESULT_CODE parse_uidn(struct parse_state *state)
946 {
947 char *host_ptr;
948 uint16_t *uhost_str, ahost_str[MAXHOSTNAMELEN], *ahost_ptr;
949 size_t uhost_len, ahost_len;
950 UErrorCode error = U_ZERO_ERROR;
951
952 if (state->flags & PHP_HTTP_URL_PARSE_MBUTF8) {
953 if (SUCCESS != to_utf16(parse_mb_utf8, state->url.host, &uhost_str, &uhost_len)) {
954 return FAILURE;
955 }
956 #ifdef PHP_HTTP_HAVE_WCHAR
957 } else if (state->flags & PHP_HTTP_URL_PARSE_MBLOC) {
958 if (SUCCESS != to_utf16(parse_mb_loc, state->url.host, &uhost_str, &uhost_len)) {
959 return FAILURE;
960 }
961 #endif
962 } else {
963 php_error_docref(NULL, E_WARNING, "Failed to parse IDN; codepage not specified");
964 return FAILURE;
965 }
966
967 ahost_len = uidna_IDNToASCII(uhost_str, uhost_len, ahost_str, MAXHOSTNAMELEN, 3, NULL, &error);
968 efree(uhost_str);
969
970 if (error != U_ZERO_ERROR) {
971 php_error_docref(NULL, E_WARNING, "Failed to parse IDN; ICU error %d", error);
972 return FAILURE;
973 }
974
975 host_ptr = state->url.host;
976 ahost_ptr = ahost_str;
977 PHP_HTTP_DUFF(ahost_len, *host_ptr++ = *ahost_ptr++);
978
979 *host_ptr = '\0';
980 state->offset += host_ptr - state->url.host;
981
982 return SUCCESS;
983 }
984 #endif
985
986 #if 0 && defined(PHP_WIN32)
987 static ZEND_RESULT_CODE parse_widn(struct parse_state *state)
988 {
989 char *host_ptr;
990 uint16_t *uhost_str, ahost_str[MAXHOSTNAMELEN], *ahost_ptr;
991 size_t uhost_len;
992
993 if (state->flags & PHP_HTTP_URL_PARSE_MBUTF8) {
994 if (SUCCESS != to_utf16(parse_mb_utf8, state->url.host, &uhost_str, &uhost_len)) {
995 php_error_docref(NULL, E_WARNING, "Failed to parse IDN");
996 return FAILURE;
997 }
998 #ifdef PHP_HTTP_HAVE_WCHAR
999 } else if (state->flags & PHP_HTTP_URL_PARSE_MBLOC) {
1000 if (SUCCESS != to_utf16(parse_mb_loc, state->url.host, &uhost_str, &uhost_len)) {
1001 php_error_docref(NULL, E_WARNING, "Failed to parse IDN");
1002 return FAILURE;
1003 }
1004 #endif
1005 } else {
1006 php_error_docref(NULL, E_WARNING, "Failed to parse IDN");
1007 return FAILURE;
1008 }
1009
1010 if (!IdnToAscii(IDN_ALLOW_UNASSIGNED|IDN_USE_STD3_ASCII_RULES, uhost_str, uhost_len, ahost_str, MAXHOSTNAMELEN)) {
1011 efree(uhost_str);
1012 php_error_docref(NULL, E_WARNING, "Failed to parse IDN");
1013 return FAILURE;
1014 }
1015
1016 efree(uhost_str);
1017 host_ptr = state->url.host;
1018 ahost_ptr = ahost_str;
1019 PHP_HTTP_DUFF(wcslen(ahost_str), *host_ptr++ = *ahost_ptr++);
1020 efree(ahost_str);
1021
1022 *host_ptr = '\0';
1023 state->offset += host_ptr - state->url.host;
1024
1025 return SUCCESS;
1026 }
1027 #endif
1028
1029 #ifdef HAVE_INET_PTON
1030 static const char *parse_ip6(struct parse_state *state, const char *ptr)
1031 {
1032 const char *error = NULL, *end = state->ptr, *tmp = memchr(ptr, ']', end - ptr);
1033
1034 if (tmp) {
1035 size_t addrlen = tmp - ptr + 1;
1036 char buf[16], *addr = estrndup(ptr + 1, addrlen - 2);
1037 int rv = inet_pton(AF_INET6, addr, buf);
1038
1039 if (rv == 1) {
1040 state->buffer[state->offset] = '[';
1041 state->url.host = &state->buffer[state->offset];
1042 inet_ntop(AF_INET6, buf, state->url.host + 1, state->maxlen - state->offset);
1043 state->offset += strlen(state->url.host);
1044 state->buffer[state->offset++] = ']';
1045 state->buffer[state->offset++] = 0;
1046 ptr = tmp + 1;
1047 } else if (rv == -1) {
1048 error = strerror(errno);
1049 } else {
1050 error = "unexpected '['";
1051 }
1052 efree(addr);
1053 } else {
1054 error = "expected ']'";
1055 }
1056
1057 if (error) {
1058 php_error_docref(NULL, E_WARNING, "Failed to parse hostinfo; %s", error);
1059 return NULL;
1060 }
1061
1062 return ptr;
1063 }
1064 #endif
1065
1066 static ZEND_RESULT_CODE parse_hostinfo(struct parse_state *state, const char *ptr)
1067 {
1068 size_t mb, len;
1069 const char *end = state->ptr, *tmp = ptr, *port = NULL, *label = NULL;
1070
1071 #ifdef HAVE_INET_PTON
1072 if (*ptr == '[' && !(ptr = parse_ip6(state, ptr))) {
1073 return FAILURE;
1074 }
1075 #endif
1076
1077 if (ptr != end) do {
1078 switch (*ptr) {
1079 case ':':
1080 if (port) {
1081 php_error_docref(NULL, E_WARNING,
1082 "Failed to parse port; unexpected ':' at pos %u in '%s'",
1083 (unsigned) (ptr - tmp), tmp);
1084 return FAILURE;
1085 }
1086 port = ptr + 1;
1087 break;
1088
1089 case '%':
1090 if (ptr[1] != '%' && (end - ptr <= 2 || !isxdigit(*(ptr+1)) || !isxdigit(*(ptr+2)))) {
1091 php_error_docref(NULL, E_WARNING,
1092 "Failed to parse hostinfo; invalid percent encoding at pos %u in '%s'",
1093 (unsigned) (ptr - tmp), tmp);
1094 return FAILURE;
1095 }
1096 state->buffer[state->offset++] = *ptr++;
1097 state->buffer[state->offset++] = *ptr++;
1098 state->buffer[state->offset++] = *ptr;
1099 break;
1100
1101 case '!': case '$': case '&': case '\'': case '(': case ')': case '*':
1102 case '+': case ',': case ';': case '=': /* sub-delims */
1103 case '-': case '.': case '_': case '~': /* unreserved */
1104 if (port || !label) {
1105 /* sort of a compromise, just ensure we don't end up
1106 * with a dot at the beginning or two consecutive dots
1107 */
1108 php_error_docref(NULL, E_WARNING,
1109 "Failed to parse %s; unexpected '%c' at pos %u in '%s'",
1110 port ? "port" : "host",
1111 (unsigned char) *ptr, (unsigned) (ptr - tmp), tmp);
1112 return FAILURE;
1113 }
1114 state->buffer[state->offset++] = *ptr;
1115 label = NULL;
1116 break;
1117
1118 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
1119 case 'H': case 'I': case 'J': case 'K': case 'L': case 'M': case 'N':
1120 case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
1121 case 'V': case 'W': case 'X': case 'Y': case 'Z':
1122 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
1123 case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
1124 case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
1125 case 'v': case 'w': case 'x': case 'y': case 'z':
1126 if (port) {
1127 php_error_docref(NULL, E_WARNING,
1128 "Failed to parse port; unexpected char '%c' at pos %u in '%s'",
1129 (unsigned char) *ptr, (unsigned) (ptr - tmp), tmp);
1130 return FAILURE;
1131 }
1132 /* no break */
1133 case '0': case '1': case '2': case '3': case '4': case '5': case '6':
1134 case '7': case '8': case '9':
1135 /* allowed */
1136 if (port) {
1137 state->url.port *= 10;
1138 state->url.port += *ptr - '0';
1139 } else {
1140 label = ptr;
1141 state->buffer[state->offset++] = *ptr;
1142 }
1143 break;
1144
1145 default:
1146 if (ptr == end) {
1147 break;
1148 } else if (port) {
1149 php_error_docref(NULL, E_WARNING,
1150 "Failed to parse port; unexpected byte 0x%02x at pos %u in '%s'",
1151 (unsigned char) *ptr, (unsigned) (ptr - tmp), tmp);
1152 return FAILURE;
1153 } else if (!(mb = parse_mb(state, PARSE_HOSTINFO, ptr, end, tmp, 0))) {
1154 return FAILURE;
1155 }
1156 label = ptr;
1157 ptr += mb - 1;
1158 }
1159 } while (++ptr != end);
1160
1161 if (!state->url.host) {
1162 len = (port ? port - tmp - 1 : end - tmp);
1163 state->url.host = &state->buffer[state->offset - len];
1164 state->buffer[state->offset++] = 0;
1165 }
1166
1167 if (state->flags & PHP_HTTP_URL_PARSE_TOIDN) {
1168 #if PHP_HTTP_HAVE_IDN2
1169 return parse_idn2(state, len);
1170 #elif PHP_HTTP_HAVE_IDN
1171 return parse_idn(state, len);
1172 #endif
1173 #ifdef HAVE_UIDNA_IDNTOASCII
1174 return parse_uidn(state);
1175 #endif
1176 #if 0 && defined(PHP_WIN32)
1177 return parse_widn(state);
1178 #endif
1179 }
1180
1181 return SUCCESS;
1182 }
1183
1184 static const char *parse_authority(struct parse_state *state)
1185 {
1186 const char *tmp = state->ptr, *host = NULL;
1187
1188 do {
1189 switch (*state->ptr) {
1190 case '@':
1191 /* userinfo delimiter */
1192 if (host) {
1193 php_error_docref(NULL, E_WARNING,
1194 "Failed to parse userinfo; unexpected '@'");
1195 return NULL;
1196 }
1197 host = state->ptr + 1;
1198 if (tmp != state->ptr && SUCCESS != parse_userinfo(state, tmp)) {
1199 return NULL;
1200 }
1201 tmp = state->ptr + 1;
1202 break;
1203
1204 case '/':
1205 case '?':
1206 case '#':
1207 case '\0':
1208 EOD:
1209 /* host delimiter */
1210 if (tmp != state->ptr && SUCCESS != parse_hostinfo(state, tmp)) {
1211 return NULL;
1212 }
1213 return state->ptr;
1214 }
1215 } while (++state->ptr <= state->end);
1216
1217 --state->ptr;
1218 goto EOD;
1219 }
1220
1221 static const char *parse_path(struct parse_state *state)
1222 {
1223 size_t mb;
1224 const char *tmp;
1225
1226 /* is there actually a path to parse? */
1227 if (!*state->ptr) {
1228 return state->ptr;
1229 }
1230 tmp = state->ptr;
1231 state->url.path = &state->buffer[state->offset];
1232
1233 do {
1234 switch (*state->ptr) {
1235 case '#':
1236 case '?':
1237 goto done;
1238
1239 case '%':
1240 if (state->ptr[1] != '%' && (state->end - state->ptr <= 2 || !isxdigit(*(state->ptr+1)) || !isxdigit(*(state->ptr+2)))) {
1241 php_error_docref(NULL, E_WARNING,
1242 "Failed to parse path; invalid percent encoding at pos %u in '%s'",
1243 (unsigned) (state->ptr - tmp), tmp);
1244 return NULL;
1245 }
1246 state->buffer[state->offset++] = *state->ptr++;
1247 state->buffer[state->offset++] = *state->ptr++;
1248 state->buffer[state->offset++] = *state->ptr;
1249 break;
1250
1251 case '/': /* yeah, well */
1252 case '!': case '$': case '&': case '\'': case '(': case ')': case '*':
1253 case '+': case ',': case ';': case '=': /* sub-delims */
1254 case '-': case '.': case '_': case '~': /* unreserved */
1255 case ':': case '@': /* pchar */
1256 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
1257 case 'H': case 'I': case 'J': case 'K': case 'L': case 'M': case 'N':
1258 case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
1259 case 'V': case 'W': case 'X': case 'Y': case 'Z':
1260 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
1261 case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
1262 case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
1263 case 'v': case 'w': case 'x': case 'y': case 'z':
1264 case '0': case '1': case '2': case '3': case '4': case '5': case '6':
1265 case '7': case '8': case '9':
1266 /* allowed */
1267 state->buffer[state->offset++] = *state->ptr;
1268 break;
1269
1270 default:
1271 if (!(mb = parse_mb(state, PARSE_PATH, state->ptr, state->end, tmp, 0))) {
1272 return NULL;
1273 }
1274 state->ptr += mb - 1;
1275 }
1276 } while (++state->ptr < state->end);
1277
1278 done:
1279 /* did we have any path component ? */
1280 if (tmp != state->ptr) {
1281 state->buffer[state->offset++] = 0;
1282 } else {
1283 state->url.path = NULL;
1284 }
1285 return state->ptr;
1286 }
1287
1288 static const char *parse_query(struct parse_state *state)
1289 {
1290 size_t mb;
1291 const char *tmp = state->ptr + !!*state->ptr;
1292
1293 /* is there actually a query to parse? */
1294 if (*state->ptr != '?') {
1295 return state->ptr;
1296 }
1297
1298 /* skip initial '?' */
1299 tmp = ++state->ptr;
1300 state->url.query = &state->buffer[state->offset];
1301
1302 while (state->ptr < state->end) {
1303 switch (*state->ptr) {
1304 case '#':
1305 goto done;
1306
1307 case '%':
1308 if (state->ptr[1] != '%' && (state->end - state->ptr <= 2 || !isxdigit(*(state->ptr+1)) || !isxdigit(*(state->ptr+2)))) {
1309 php_error_docref(NULL, E_WARNING,
1310 "Failed to parse query; invalid percent encoding at pos %u in '%s'",
1311 (unsigned) (state->ptr - tmp), tmp);
1312 return NULL;
1313 }
1314 state->buffer[state->offset++] = *state->ptr++;
1315 state->buffer[state->offset++] = *state->ptr++;
1316 state->buffer[state->offset++] = *state->ptr;
1317 break;
1318
1319 /* RFC1738 unsafe */
1320 case '{': case '}':
1321 case '<': case '>':
1322 case '[': case ']':
1323 case '|': case '\\': case '^': case '`': case '"': case ' ':
1324 if (state->flags & PHP_HTTP_URL_PARSE_TOPCT) {
1325 state->buffer[state->offset++] = '%';
1326 state->buffer[state->offset++] = parse_xdigits[((unsigned char) *state->ptr) >> 4];
1327 state->buffer[state->offset++] = parse_xdigits[((unsigned char) *state->ptr) & 0xf];
1328 break;
1329 }
1330 /* no break */
1331
1332 case '?': case '/': /* yeah, well */
1333 case '!': case '$': case '&': case '\'': case '(': case ')': case '*':
1334 case '+': case ',': case ';': case '=': /* sub-delims */
1335 case '-': case '.': case '_': case '~': /* unreserved */
1336 case ':': case '@': /* pchar */
1337 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
1338 case 'H': case 'I': case 'J': case 'K': case 'L': case 'M': case 'N':
1339 case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
1340 case 'V': case 'W': case 'X': case 'Y': case 'Z':
1341 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
1342 case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
1343 case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
1344 case 'v': case 'w': case 'x': case 'y': case 'z':
1345 case '0': case '1': case '2': case '3': case '4': case '5': case '6':
1346 case '7': case '8': case '9':
1347 /* allowed */
1348 state->buffer[state->offset++] = *state->ptr;
1349 break;
1350
1351 default:
1352 if (!(mb = parse_mb(state, PARSE_QUERY, state->ptr, state->end, tmp, 0))) {
1353 return NULL;
1354 }
1355 state->ptr += mb - 1;
1356 }
1357
1358 ++state->ptr;
1359 }
1360
1361 done:
1362 state->buffer[state->offset++] = 0;
1363 return state->ptr;
1364 }
1365
1366 static const char *parse_fragment(struct parse_state *state)
1367 {
1368 size_t mb;
1369 const char *tmp;
1370
1371 /* is there actually a fragment to parse? */
1372 if (*state->ptr != '#') {
1373 return state->ptr;
1374 }
1375
1376 /* skip initial '#' */
1377 tmp = ++state->ptr;
1378 state->url.fragment = &state->buffer[state->offset];
1379
1380 do {
1381 switch (*state->ptr) {
1382 case '%':
1383 if (state->ptr[1] != '%' && (state->end - state->ptr <= 2 || !isxdigit(*(state->ptr+1)) || !isxdigit(*(state->ptr+2)))) {
1384 php_error_docref(NULL, E_WARNING,
1385 "Failed to parse fragment; invalid percent encoding at pos %u in '%s'",
1386 (unsigned) (state->ptr - tmp), tmp);
1387 return NULL;
1388 }
1389 state->buffer[state->offset++] = *state->ptr++;
1390 state->buffer[state->offset++] = *state->ptr++;
1391 state->buffer[state->offset++] = *state->ptr;
1392 break;
1393
1394 /* RFC1738 unsafe */
1395 case '{': case '}':
1396 case '<': case '>':
1397 case '[': case ']':
1398 case '|': case '\\': case '^': case '`': case '"': case ' ':
1399 if (state->flags & PHP_HTTP_URL_PARSE_TOPCT) {
1400 state->buffer[state->offset++] = '%';
1401 state->buffer[state->offset++] = parse_xdigits[((unsigned char) *state->ptr) >> 4];
1402 state->buffer[state->offset++] = parse_xdigits[((unsigned char) *state->ptr) & 0xf];
1403 break;
1404 }
1405 /* no break */
1406
1407 case '?': case '/':
1408 case '!': case '$': case '&': case '\'': case '(': case ')': case '*':
1409 case '+': case ',': case ';': case '=': /* sub-delims */
1410 case '-': case '.': case '_': case '~': /* unreserved */
1411 case ':': case '@': /* pchar */
1412 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
1413 case 'H': case 'I': case 'J': case 'K': case 'L': case 'M': case 'N':
1414 case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
1415 case 'V': case 'W': case 'X': case 'Y': case 'Z':
1416 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
1417 case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
1418 case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
1419 case 'v': case 'w': case 'x': case 'y': case 'z':
1420 case '0': case '1': case '2': case '3': case '4': case '5': case '6':
1421 case '7': case '8': case '9':
1422 /* allowed */
1423 state->buffer[state->offset++] = *state->ptr;
1424 break;
1425
1426 default:
1427 if (!(mb = parse_mb(state, PARSE_FRAGMENT, state->ptr, state->end, tmp, 0))) {
1428 return NULL;
1429 }
1430 state->ptr += mb - 1;
1431 }
1432 } while (++state->ptr < state->end);
1433
1434 state->buffer[state->offset++] = 0;
1435 return state->ptr;
1436 }
1437
1438 static const char *parse_hier(struct parse_state *state)
1439 {
1440 if (*state->ptr == '/') {
1441 if (state->end - state->ptr > 1) {
1442 if (*(state->ptr + 1) == '/') {
1443 state->ptr += 2;
1444 if (!(state->ptr = parse_authority(state))) {
1445 return NULL;
1446 }
1447 }
1448 }
1449 }
1450 return parse_path(state);
1451 }
1452
1453 static const char *parse_scheme(struct parse_state *state)
1454 {
1455 size_t mb;
1456 const char *tmp = state->ptr;
1457
1458 do {
1459 switch (*state->ptr) {
1460 case ':':
1461 /* scheme delimiter */
1462 state->url.scheme = &state->buffer[0];
1463 state->buffer[state->offset++] = 0;
1464 return ++state->ptr;
1465
1466 case '0': case '1': case '2': case '3': case '4': case '5': case '6':
1467 case '7': case '8': case '9':
1468 case '+': case '-': case '.':
1469 if (state->ptr == tmp) {
1470 return tmp;
1471 }
1472 /* no break */
1473 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G':
1474 case 'H': case 'I': case 'J': case 'K': case 'L': case 'M': case 'N':
1475 case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U':
1476 case 'V': case 'W': case 'X': case 'Y': case 'Z':
1477 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
1478 case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n':
1479 case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u':
1480 case 'v': case 'w': case 'x': case 'y': case 'z':
1481 /* scheme part */
1482 state->buffer[state->offset++] = *state->ptr;
1483 break;
1484
1485 default:
1486 if (!(mb = parse_mb(state, PARSE_SCHEME, state->ptr, state->end, tmp, 1))) {
1487 /* soft fail; parse path next */
1488 return tmp;
1489 }
1490 state->ptr += mb - 1;
1491 }
1492 } while (++state->ptr != state->end);
1493
1494 return state->ptr = tmp;
1495 }
1496
1497 php_http_url_t *php_http_url_parse(const char *str, size_t len, unsigned flags)
1498 {
1499 size_t maxlen = 3 * len;
1500 struct parse_state *state = ecalloc(1, sizeof(*state) + maxlen);
1501
1502 state->end = str + len;
1503 state->ptr = str;
1504 state->flags = flags;
1505 state->maxlen = maxlen;
1506
1507 if (!parse_scheme(state)) {
1508 php_error_docref(NULL, E_WARNING, "Failed to parse URL scheme: '%s'", state->ptr);
1509 efree(state);
1510 return NULL;
1511 }
1512
1513 if (!parse_hier(state)) {
1514 efree(state);
1515 return NULL;
1516 }
1517
1518 if (!parse_query(state)) {
1519 php_error_docref(NULL, E_WARNING, "Failed to parse URL query: '%s'", state->ptr);
1520 efree(state);
1521 return NULL;
1522 }
1523
1524 if (!parse_fragment(state)) {
1525 php_error_docref(NULL, E_WARNING, "Failed to parse URL fragment: '%s'", state->ptr);
1526 efree(state);
1527 return NULL;
1528 }
1529
1530 return (php_http_url_t *) state;
1531 }
1532
1533 php_http_url_t *php_http_url_parse_authority(const char *str, size_t len, unsigned flags)
1534 {
1535 size_t maxlen = 3 * len;
1536 struct parse_state *state = ecalloc(1, sizeof(*state) + maxlen);
1537
1538 state->end = str + len;
1539 state->ptr = str;
1540 state->flags = flags;
1541 state->maxlen = maxlen;
1542
1543 if (!(state->ptr = parse_authority(state))) {
1544 efree(state);
1545 return NULL;
1546 }
1547
1548 if (state->ptr != state->end) {
1549 php_error_docref(NULL, E_WARNING,
1550 "Failed to parse URL authority, unexpected character at pos %u in '%s'",
1551 (unsigned) (state->ptr - str), str);
1552 efree(state);
1553 return NULL;
1554 }
1555
1556 return (php_http_url_t *) state;
1557 }
1558
1559 ZEND_BEGIN_ARG_INFO_EX(ai_HttpUrl___construct, 0, 0, 0)
1560 ZEND_ARG_INFO(0, old_url)
1561 ZEND_ARG_INFO(0, new_url)
1562 ZEND_ARG_INFO(0, flags)
1563 ZEND_END_ARG_INFO();
1564 PHP_METHOD(HttpUrl, __construct)
1565 {
1566 zval *new_url = NULL, *old_url = NULL;
1567 zend_long flags = PHP_HTTP_URL_FROM_ENV;
1568 zend_error_handling zeh;
1569
1570 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|z!z!l", &old_url, &new_url, &flags), invalid_arg, return);
1571
1572 zend_replace_error_handling(EH_THROW, php_http_exception_bad_url_class_entry, &zeh);
1573 {
1574 php_http_url_t *res_purl, *new_purl = NULL, *old_purl = NULL;
1575
1576 if (new_url) {
1577 new_purl = php_http_url_from_zval(new_url, flags);
1578 if (!new_purl) {
1579 zend_restore_error_handling(&zeh);
1580 return;
1581 }
1582 }
1583 if (old_url) {
1584 old_purl = php_http_url_from_zval(old_url, flags);
1585 if (!old_purl) {
1586 if (new_purl) {
1587 php_http_url_free(&new_purl);
1588 }
1589 zend_restore_error_handling(&zeh);
1590 return;
1591 }
1592 }
1593
1594 res_purl = php_http_url_mod(old_purl, new_purl, flags);
1595 php_http_url_to_struct(res_purl, getThis());
1596
1597 php_http_url_free(&res_purl);
1598 if (old_purl) {
1599 php_http_url_free(&old_purl);
1600 }
1601 if (new_purl) {
1602 php_http_url_free(&new_purl);
1603 }
1604 }
1605 zend_restore_error_handling(&zeh);
1606 }
1607
1608 ZEND_BEGIN_ARG_INFO_EX(ai_HttpUrl_mod, 0, 0, 1)
1609 ZEND_ARG_INFO(0, more_url_parts)
1610 ZEND_ARG_INFO(0, flags)
1611 ZEND_END_ARG_INFO();
1612 PHP_METHOD(HttpUrl, mod)
1613 {
1614 zval *new_url = NULL;
1615 zend_long flags = PHP_HTTP_URL_JOIN_PATH | PHP_HTTP_URL_JOIN_QUERY | PHP_HTTP_URL_SANITIZE_PATH;
1616 zend_error_handling zeh;
1617
1618 php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "z!|l", &new_url, &flags), invalid_arg, return);
1619
1620 zend_replace_error_handling(EH_THROW, php_http_exception_bad_url_class_entry, &zeh);
1621 {
1622 php_http_url_t *new_purl = NULL, *old_purl = NULL;
1623
1624 if (new_url) {
1625 new_purl = php_http_url_from_zval(new_url, flags);
1626 if (!new_purl) {
1627 zend_restore_error_handling(&zeh);
1628 return;
1629 }
1630 }
1631
1632 if ((old_purl = php_http_url_from_struct(HASH_OF(getThis())))) {
1633 php_http_url_t *res_purl;
1634
1635 ZVAL_OBJ(return_value, zend_objects_clone_obj(getThis()));
1636
1637 res_purl = php_http_url_mod(old_purl, new_purl, flags);
1638 php_http_url_to_struct(res_purl, return_value);
1639
1640 php_http_url_free(&res_purl);
1641 php_http_url_free(&old_purl);
1642 }
1643 if (new_purl) {
1644 php_http_url_free(&new_purl);
1645 }
1646 }
1647 zend_restore_error_handling(&zeh);
1648 }
1649
1650 ZEND_BEGIN_ARG_INFO_EX(ai_HttpUrl_toString, 0, 0, 0)
1651 ZEND_END_ARG_INFO();
1652 PHP_METHOD(HttpUrl, toString)
1653 {
1654 if (SUCCESS == zend_parse_parameters_none()) {
1655 php_http_url_t *purl;
1656
1657 if ((purl = php_http_url_from_struct(HASH_OF(getThis())))) {
1658 char *str;
1659 size_t len;
1660
1661 php_http_url_to_string(purl, &str, &len, 0);
1662 php_http_url_free(&purl);
1663 RETURN_STR(php_http_cs2zs(str, len));
1664 }
1665 }
1666 RETURN_EMPTY_STRING();
1667 }
1668
1669 ZEND_BEGIN_ARG_INFO_EX(ai_HttpUrl_toArray, 0, 0, 0)
1670 ZEND_END_ARG_INFO();
1671 PHP_METHOD(HttpUrl, toArray)
1672 {
1673 php_http_url_t *purl;
1674
1675 if (SUCCESS != zend_parse_parameters_none()) {
1676 return;
1677 }
1678
1679 /* strip any non-URL properties */
1680 purl = php_http_url_from_struct(HASH_OF(getThis()));
1681 php_http_url_to_struct(purl, return_value);
1682 php_http_url_free(&purl);
1683 }
1684
1685 static zend_function_entry php_http_url_methods[] = {
1686 PHP_ME(HttpUrl, __construct, ai_HttpUrl___construct, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
1687 PHP_ME(HttpUrl, mod, ai_HttpUrl_mod, ZEND_ACC_PUBLIC)
1688 PHP_ME(HttpUrl, toString, ai_HttpUrl_toString, ZEND_ACC_PUBLIC)
1689 ZEND_MALIAS(HttpUrl, __toString, toString, ai_HttpUrl_toString, ZEND_ACC_PUBLIC)
1690 PHP_ME(HttpUrl, toArray, ai_HttpUrl_toArray, ZEND_ACC_PUBLIC)
1691 EMPTY_FUNCTION_ENTRY
1692 };
1693
1694 zend_class_entry *php_http_url_class_entry;
1695
1696 PHP_MINIT_FUNCTION(http_url)
1697 {
1698 zend_class_entry ce = {0};
1699
1700 INIT_NS_CLASS_ENTRY(ce, "http", "Url", php_http_url_methods);
1701 php_http_url_class_entry = zend_register_internal_class(&ce);
1702
1703 zend_declare_property_null(php_http_url_class_entry, ZEND_STRL("scheme"), ZEND_ACC_PUBLIC);
1704 zend_declare_property_null(php_http_url_class_entry, ZEND_STRL("user"), ZEND_ACC_PUBLIC);
1705 zend_declare_property_null(php_http_url_class_entry, ZEND_STRL("pass"), ZEND_ACC_PUBLIC);
1706 zend_declare_property_null(php_http_url_class_entry, ZEND_STRL("host"), ZEND_ACC_PUBLIC);
1707 zend_declare_property_null(php_http_url_class_entry, ZEND_STRL("port"), ZEND_ACC_PUBLIC);
1708 zend_declare_property_null(php_http_url_class_entry, ZEND_STRL("path"), ZEND_ACC_PUBLIC);
1709 zend_declare_property_null(php_http_url_class_entry, ZEND_STRL("query"), ZEND_ACC_PUBLIC);
1710 zend_declare_property_null(php_http_url_class_entry, ZEND_STRL("fragment"), ZEND_ACC_PUBLIC);
1711
1712 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("REPLACE"), PHP_HTTP_URL_REPLACE);
1713 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("JOIN_PATH"), PHP_HTTP_URL_JOIN_PATH);
1714 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("JOIN_QUERY"), PHP_HTTP_URL_JOIN_QUERY);
1715 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("STRIP_USER"), PHP_HTTP_URL_STRIP_USER);
1716 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("STRIP_PASS"), PHP_HTTP_URL_STRIP_PASS);
1717 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("STRIP_AUTH"), PHP_HTTP_URL_STRIP_AUTH);
1718 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("STRIP_PORT"), PHP_HTTP_URL_STRIP_PORT);
1719 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("STRIP_PATH"), PHP_HTTP_URL_STRIP_PATH);
1720 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("STRIP_QUERY"), PHP_HTTP_URL_STRIP_QUERY);
1721 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("STRIP_FRAGMENT"), PHP_HTTP_URL_STRIP_FRAGMENT);
1722 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("STRIP_ALL"), PHP_HTTP_URL_STRIP_ALL);
1723 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("FROM_ENV"), PHP_HTTP_URL_FROM_ENV);
1724 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("SANITIZE_PATH"), PHP_HTTP_URL_SANITIZE_PATH);
1725
1726 #ifdef PHP_HTTP_HAVE_WCHAR
1727 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("PARSE_MBLOC"), PHP_HTTP_URL_PARSE_MBLOC);
1728 #endif
1729 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("PARSE_MBUTF8"), PHP_HTTP_URL_PARSE_MBUTF8);
1730 #if defined(PHP_HTTP_HAVE_IDN2) || defined(PHP_HTTP_HAVE_IDN) || defined(HAVE_UIDNA_IDNTOASCII)
1731 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("PARSE_TOIDN"), PHP_HTTP_URL_PARSE_TOIDN);
1732 #endif
1733 zend_declare_class_constant_long(php_http_url_class_entry, ZEND_STRL("PARSE_TOPCT"), PHP_HTTP_URL_PARSE_TOPCT);
1734
1735 return SUCCESS;
1736 }
1737
1738
1739 /*
1740 * Local variables:
1741 * tab-width: 4
1742 * c-basic-offset: 4
1743 * End:
1744 * vim600: noet sw=4 ts=4 fdm=marker
1745 * vim<600: noet sw=4 ts=4
1746 */
1747