Line | Count | Source (jump to first uncovered line) |
1 | | /** |
2 | | * uri.c: set of generic URI related routines |
3 | | * |
4 | | * Reference: RFCs 3986, 2732 and 2373 |
5 | | * |
6 | | * See Copyright for the status of this software. |
7 | | * |
8 | | * daniel@veillard.com |
9 | | */ |
10 | | |
11 | | #define IN_LIBXML |
12 | | #include "libxml.h" |
13 | | |
14 | | #include <limits.h> |
15 | | #include <string.h> |
16 | | |
17 | | #include <libxml/xmlmemory.h> |
18 | | #include <libxml/uri.h> |
19 | | #include <libxml/globals.h> |
20 | | #include <libxml/xmlerror.h> |
21 | | |
22 | | #include "private/error.h" |
23 | | |
24 | | /** |
25 | | * MAX_URI_LENGTH: |
26 | | * |
27 | | * The definition of the URI regexp in the above RFC has no size limit |
28 | | * In practice they are usually relatively short except for the |
29 | | * data URI scheme as defined in RFC 2397. Even for data URI the usual |
30 | | * maximum size before hitting random practical limits is around 64 KB |
31 | | * and 4KB is usually a maximum admitted limit for proper operations. |
32 | | * The value below is more a security limit than anything else and |
33 | | * really should never be hit by 'normal' operations |
34 | | * Set to 1 MByte in 2012, this is only enforced on output |
35 | | */ |
36 | 533k | #define MAX_URI_LENGTH 1024 * 1024 |
37 | | |
38 | | static void |
39 | | xmlURIErrMemory(const char *extra) |
40 | 0 | { |
41 | 0 | if (extra) |
42 | 0 | __xmlRaiseError(NULL, NULL, NULL, |
43 | 0 | NULL, NULL, XML_FROM_URI, |
44 | 0 | XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, |
45 | 0 | extra, NULL, NULL, 0, 0, |
46 | 0 | "Memory allocation failed : %s\n", extra); |
47 | 0 | else |
48 | 0 | __xmlRaiseError(NULL, NULL, NULL, |
49 | 0 | NULL, NULL, XML_FROM_URI, |
50 | 0 | XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, |
51 | 0 | NULL, NULL, NULL, 0, 0, |
52 | 0 | "Memory allocation failed\n"); |
53 | 0 | } |
54 | | |
55 | | static void xmlCleanURI(xmlURIPtr uri); |
56 | | |
57 | | /* |
58 | | * Old rule from 2396 used in legacy handling code |
59 | | * alpha = lowalpha | upalpha |
60 | | */ |
61 | 485M | #define IS_ALPHA(x) (IS_LOWALPHA(x) || IS_UPALPHA(x)) |
62 | | |
63 | | |
64 | | /* |
65 | | * lowalpha = "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | |
66 | | * "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | |
67 | | * "u" | "v" | "w" | "x" | "y" | "z" |
68 | | */ |
69 | | |
70 | 485M | #define IS_LOWALPHA(x) (((x) >= 'a') && ((x) <= 'z')) |
71 | | |
72 | | /* |
73 | | * upalpha = "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | |
74 | | * "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | |
75 | | * "U" | "V" | "W" | "X" | "Y" | "Z" |
76 | | */ |
77 | 144M | #define IS_UPALPHA(x) (((x) >= 'A') && ((x) <= 'Z')) |
78 | | |
79 | | #ifdef IS_DIGIT |
80 | | #undef IS_DIGIT |
81 | | #endif |
82 | | /* |
83 | | * digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" |
84 | | */ |
85 | 129M | #define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9')) |
86 | | |
87 | | /* |
88 | | * alphanum = alpha | digit |
89 | | */ |
90 | | |
91 | 485M | #define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x)) |
92 | | |
93 | | /* |
94 | | * mark = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")" |
95 | | */ |
96 | | |
97 | 110M | #define IS_MARK(x) (((x) == '-') || ((x) == '_') || ((x) == '.') || \ |
98 | 110M | ((x) == '!') || ((x) == '~') || ((x) == '*') || ((x) == '\'') || \ |
99 | 110M | ((x) == '(') || ((x) == ')')) |
100 | | |
101 | | /* |
102 | | * unwise = "{" | "}" | "|" | "\" | "^" | "`" |
103 | | */ |
104 | | |
105 | | #define IS_UNWISE(p) \ |
106 | 742k | (((*(p) == '{')) || ((*(p) == '}')) || ((*(p) == '|')) || \ |
107 | 742k | ((*(p) == '\\')) || ((*(p) == '^')) || ((*(p) == '[')) || \ |
108 | 742k | ((*(p) == ']')) || ((*(p) == '`'))) |
109 | | /* |
110 | | * reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | "," | |
111 | | * "[" | "]" |
112 | | */ |
113 | | |
114 | 2.57M | #define IS_RESERVED(x) (((x) == ';') || ((x) == '/') || ((x) == '?') || \ |
115 | 2.57M | ((x) == ':') || ((x) == '@') || ((x) == '&') || ((x) == '=') || \ |
116 | 2.57M | ((x) == '+') || ((x) == '$') || ((x) == ',') || ((x) == '[') || \ |
117 | 2.57M | ((x) == ']')) |
118 | | |
119 | | /* |
120 | | * unreserved = alphanum | mark |
121 | | */ |
122 | | |
123 | 242M | #define IS_UNRESERVED(x) (IS_ALPHANUM(x) || IS_MARK(x)) |
124 | | |
125 | | /* |
126 | | * Skip to next pointer char, handle escaped sequences |
127 | | */ |
128 | | |
129 | 409M | #define NEXT(p) ((*p == '%')? p += 3 : p++) |
130 | | |
131 | | /* |
132 | | * Productions from the spec. |
133 | | * |
134 | | * authority = server | reg_name |
135 | | * reg_name = 1*( unreserved | escaped | "$" | "," | |
136 | | * ";" | ":" | "@" | "&" | "=" | "+" ) |
137 | | * |
138 | | * path = [ abs_path | opaque_part ] |
139 | | */ |
140 | | |
141 | 14.2M | #define STRNDUP(s, n) (char *) xmlStrndup((const xmlChar *)(s), (n)) |
142 | | |
143 | | /************************************************************************ |
144 | | * * |
145 | | * RFC 3986 parser * |
146 | | * * |
147 | | ************************************************************************/ |
148 | | |
149 | 598M | #define ISA_DIGIT(p) ((*(p) >= '0') && (*(p) <= '9')) |
150 | 643M | #define ISA_ALPHA(p) (((*(p) >= 'a') && (*(p) <= 'z')) || \ |
151 | 643M | ((*(p) >= 'A') && (*(p) <= 'Z'))) |
152 | | #define ISA_HEXDIG(p) \ |
153 | 146M | (ISA_DIGIT(p) || ((*(p) >= 'a') && (*(p) <= 'f')) || \ |
154 | 146M | ((*(p) >= 'A') && (*(p) <= 'F'))) |
155 | | |
156 | | /* |
157 | | * sub-delims = "!" / "$" / "&" / "'" / "(" / ")" |
158 | | * / "*" / "+" / "," / ";" / "=" |
159 | | */ |
160 | | #define ISA_SUB_DELIM(p) \ |
161 | 483M | (((*(p) == '!')) || ((*(p) == '$')) || ((*(p) == '&')) || \ |
162 | 51.5M | ((*(p) == '(')) || ((*(p) == ')')) || ((*(p) == '*')) || \ |
163 | 51.5M | ((*(p) == '+')) || ((*(p) == ',')) || ((*(p) == ';')) || \ |
164 | 51.5M | ((*(p) == '=')) || ((*(p) == '\''))) |
165 | | |
166 | | /* |
167 | | * gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@" |
168 | | */ |
169 | | #define ISA_GEN_DELIM(p) \ |
170 | | (((*(p) == ':')) || ((*(p) == '/')) || ((*(p) == '?')) || \ |
171 | | ((*(p) == '#')) || ((*(p) == '[')) || ((*(p) == ']')) || \ |
172 | | ((*(p) == '@'))) |
173 | | |
174 | | /* |
175 | | * reserved = gen-delims / sub-delims |
176 | | */ |
177 | | #define ISA_RESERVED(p) (ISA_GEN_DELIM(p) || (ISA_SUB_DELIM(p))) |
178 | | |
179 | | /* |
180 | | * unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" |
181 | | */ |
182 | | #define ISA_UNRESERVED(p) \ |
183 | 903M | ((ISA_ALPHA(p)) || (ISA_DIGIT(p)) || ((*(p) == '-')) || \ |
184 | 451M | ((*(p) == '.')) || ((*(p) == '_')) || ((*(p) == '~'))) |
185 | | |
186 | | /* |
187 | | * pct-encoded = "%" HEXDIG HEXDIG |
188 | | */ |
189 | | #define ISA_PCT_ENCODED(p) \ |
190 | 576M | ((*(p) == '%') && (ISA_HEXDIG(p + 1)) && (ISA_HEXDIG(p + 2))) |
191 | | |
192 | | /* |
193 | | * pchar = unreserved / pct-encoded / sub-delims / ":" / "@" |
194 | | */ |
195 | | #define ISA_PCHAR(p) \ |
196 | 713M | (ISA_UNRESERVED(p) || ISA_PCT_ENCODED(p) || ISA_SUB_DELIM(p) || \ |
197 | 405M | ((*(p) == ':')) || ((*(p) == '@'))) |
198 | | |
199 | | /** |
200 | | * xmlParse3986Scheme: |
201 | | * @uri: pointer to an URI structure |
202 | | * @str: pointer to the string to analyze |
203 | | * |
204 | | * Parse an URI scheme |
205 | | * |
206 | | * ALPHA *( ALPHA / DIGIT / "+" / "-" / "." ) |
207 | | * |
208 | | * Returns 0 or the error code |
209 | | */ |
210 | | static int |
211 | 16.2M | xmlParse3986Scheme(xmlURIPtr uri, const char **str) { |
212 | 16.2M | const char *cur; |
213 | | |
214 | 16.2M | if (str == NULL) |
215 | 0 | return(-1); |
216 | | |
217 | 16.2M | cur = *str; |
218 | 16.2M | if (!ISA_ALPHA(cur)) |
219 | 2.22M | return(2); |
220 | 14.0M | cur++; |
221 | 88.0M | while (ISA_ALPHA(cur) || ISA_DIGIT(cur) || |
222 | 88.0M | (*cur == '+') || (*cur == '-') || (*cur == '.')) cur++; |
223 | 14.0M | if (uri != NULL) { |
224 | 14.0M | if (uri->scheme != NULL) xmlFree(uri->scheme); |
225 | 14.0M | uri->scheme = STRNDUP(*str, cur - *str); |
226 | 14.0M | } |
227 | 14.0M | *str = cur; |
228 | 14.0M | return(0); |
229 | 16.2M | } |
230 | | |
231 | | /** |
232 | | * xmlParse3986Fragment: |
233 | | * @uri: pointer to an URI structure |
234 | | * @str: pointer to the string to analyze |
235 | | * |
236 | | * Parse the query part of an URI |
237 | | * |
238 | | * fragment = *( pchar / "/" / "?" ) |
239 | | * NOTE: the strict syntax as defined by 3986 does not allow '[' and ']' |
240 | | * in the fragment identifier but this is used very broadly for |
241 | | * xpointer scheme selection, so we are allowing it here to not break |
242 | | * for example all the DocBook processing chains. |
243 | | * |
244 | | * Returns 0 or the error code |
245 | | */ |
246 | | static int |
247 | | xmlParse3986Fragment(xmlURIPtr uri, const char **str) |
248 | 958k | { |
249 | 958k | const char *cur; |
250 | | |
251 | 958k | if (str == NULL) |
252 | 0 | return (-1); |
253 | | |
254 | 958k | cur = *str; |
255 | | |
256 | 48.1M | while ((ISA_PCHAR(cur)) || (*cur == '/') || (*cur == '?') || |
257 | 48.1M | (*cur == '[') || (*cur == ']') || |
258 | 48.1M | ((uri != NULL) && (uri->cleanup & 1) && (IS_UNWISE(cur)))) |
259 | 47.2M | NEXT(cur); |
260 | 958k | if (uri != NULL) { |
261 | 958k | if (uri->fragment != NULL) |
262 | 0 | xmlFree(uri->fragment); |
263 | 958k | if (uri->cleanup & 2) |
264 | 0 | uri->fragment = STRNDUP(*str, cur - *str); |
265 | 958k | else |
266 | 958k | uri->fragment = xmlURIUnescapeString(*str, cur - *str, NULL); |
267 | 958k | } |
268 | 958k | *str = cur; |
269 | 958k | return (0); |
270 | 958k | } |
271 | | |
272 | | /** |
273 | | * xmlParse3986Query: |
274 | | * @uri: pointer to an URI structure |
275 | | * @str: pointer to the string to analyze |
276 | | * |
277 | | * Parse the query part of an URI |
278 | | * |
279 | | * query = *uric |
280 | | * |
281 | | * Returns 0 or the error code |
282 | | */ |
283 | | static int |
284 | | xmlParse3986Query(xmlURIPtr uri, const char **str) |
285 | 154k | { |
286 | 154k | const char *cur; |
287 | | |
288 | 154k | if (str == NULL) |
289 | 0 | return (-1); |
290 | | |
291 | 154k | cur = *str; |
292 | | |
293 | 8.67M | while ((ISA_PCHAR(cur)) || (*cur == '/') || (*cur == '?') || |
294 | 8.67M | ((uri != NULL) && (uri->cleanup & 1) && (IS_UNWISE(cur)))) |
295 | 8.52M | NEXT(cur); |
296 | 154k | if (uri != NULL) { |
297 | 154k | if (uri->query != NULL) |
298 | 0 | xmlFree(uri->query); |
299 | 154k | if (uri->cleanup & 2) |
300 | 0 | uri->query = STRNDUP(*str, cur - *str); |
301 | 154k | else |
302 | 154k | uri->query = xmlURIUnescapeString(*str, cur - *str, NULL); |
303 | | |
304 | | /* Save the raw bytes of the query as well. |
305 | | * See: http://mail.gnome.org/archives/xml/2007-April/thread.html#00114 |
306 | | */ |
307 | 154k | if (uri->query_raw != NULL) |
308 | 0 | xmlFree (uri->query_raw); |
309 | 154k | uri->query_raw = STRNDUP (*str, cur - *str); |
310 | 154k | } |
311 | 154k | *str = cur; |
312 | 154k | return (0); |
313 | 154k | } |
314 | | |
315 | | /** |
316 | | * xmlParse3986Port: |
317 | | * @uri: pointer to an URI structure |
318 | | * @str: the string to analyze |
319 | | * |
320 | | * Parse a port part and fills in the appropriate fields |
321 | | * of the @uri structure |
322 | | * |
323 | | * port = *DIGIT |
324 | | * |
325 | | * Returns 0 or the error code |
326 | | */ |
327 | | static int |
328 | | xmlParse3986Port(xmlURIPtr uri, const char **str) |
329 | 18.1k | { |
330 | 18.1k | const char *cur = *str; |
331 | 18.1k | int port = 0; |
332 | | |
333 | 18.1k | if (ISA_DIGIT(cur)) { |
334 | 42.0k | while (ISA_DIGIT(cur)) { |
335 | 35.8k | int digit = *cur - '0'; |
336 | | |
337 | 35.8k | if (port > INT_MAX / 10) |
338 | 660 | return(1); |
339 | 35.2k | port *= 10; |
340 | 35.2k | if (port > INT_MAX - digit) |
341 | 0 | return(1); |
342 | 35.2k | port += digit; |
343 | | |
344 | 35.2k | cur++; |
345 | 35.2k | } |
346 | 6.11k | if (uri != NULL) |
347 | 6.11k | uri->port = port; |
348 | 6.11k | *str = cur; |
349 | 6.11k | return(0); |
350 | 6.77k | } |
351 | 11.3k | return(1); |
352 | 18.1k | } |
353 | | |
354 | | /** |
355 | | * xmlParse3986Userinfo: |
356 | | * @uri: pointer to an URI structure |
357 | | * @str: the string to analyze |
358 | | * |
359 | | * Parse an user information part and fills in the appropriate fields |
360 | | * of the @uri structure |
361 | | * |
362 | | * userinfo = *( unreserved / pct-encoded / sub-delims / ":" ) |
363 | | * |
364 | | * Returns 0 or the error code |
365 | | */ |
366 | | static int |
367 | | xmlParse3986Userinfo(xmlURIPtr uri, const char **str) |
368 | 811k | { |
369 | 811k | const char *cur; |
370 | | |
371 | 811k | cur = *str; |
372 | 26.1M | while (ISA_UNRESERVED(cur) || ISA_PCT_ENCODED(cur) || |
373 | 26.1M | ISA_SUB_DELIM(cur) || (*cur == ':')) |
374 | 25.3M | NEXT(cur); |
375 | 811k | if (*cur == '@') { |
376 | 62.0k | if (uri != NULL) { |
377 | 62.0k | if (uri->user != NULL) xmlFree(uri->user); |
378 | 62.0k | if (uri->cleanup & 2) |
379 | 0 | uri->user = STRNDUP(*str, cur - *str); |
380 | 62.0k | else |
381 | 62.0k | uri->user = xmlURIUnescapeString(*str, cur - *str, NULL); |
382 | 62.0k | } |
383 | 62.0k | *str = cur; |
384 | 62.0k | return(0); |
385 | 62.0k | } |
386 | 749k | return(1); |
387 | 811k | } |
388 | | |
389 | | /** |
390 | | * xmlParse3986DecOctet: |
391 | | * @str: the string to analyze |
392 | | * |
393 | | * dec-octet = DIGIT ; 0-9 |
394 | | * / %x31-39 DIGIT ; 10-99 |
395 | | * / "1" 2DIGIT ; 100-199 |
396 | | * / "2" %x30-34 DIGIT ; 200-249 |
397 | | * / "25" %x30-35 ; 250-255 |
398 | | * |
399 | | * Skip a dec-octet. |
400 | | * |
401 | | * Returns 0 if found and skipped, 1 otherwise |
402 | | */ |
403 | | static int |
404 | 34.1k | xmlParse3986DecOctet(const char **str) { |
405 | 34.1k | const char *cur = *str; |
406 | | |
407 | 34.1k | if (!(ISA_DIGIT(cur))) |
408 | 5.22k | return(1); |
409 | 28.8k | if (!ISA_DIGIT(cur+1)) |
410 | 16.8k | cur++; |
411 | 11.9k | else if ((*cur != '0') && (ISA_DIGIT(cur + 1)) && (!ISA_DIGIT(cur+2))) |
412 | 2.64k | cur += 2; |
413 | 9.35k | else if ((*cur == '1') && (ISA_DIGIT(cur + 1)) && (ISA_DIGIT(cur + 2))) |
414 | 711 | cur += 3; |
415 | 8.64k | else if ((*cur == '2') && (*(cur + 1) >= '0') && |
416 | 8.64k | (*(cur + 1) <= '4') && (ISA_DIGIT(cur + 2))) |
417 | 2.93k | cur += 3; |
418 | 5.71k | else if ((*cur == '2') && (*(cur + 1) == '5') && |
419 | 5.71k | (*(cur + 2) >= '0') && (*(cur + 1) <= '5')) |
420 | 18 | cur += 3; |
421 | 5.69k | else |
422 | 5.69k | return(1); |
423 | 23.1k | *str = cur; |
424 | 23.1k | return(0); |
425 | 28.8k | } |
426 | | /** |
427 | | * xmlParse3986Host: |
428 | | * @uri: pointer to an URI structure |
429 | | * @str: the string to analyze |
430 | | * |
431 | | * Parse an host part and fills in the appropriate fields |
432 | | * of the @uri structure |
433 | | * |
434 | | * host = IP-literal / IPv4address / reg-name |
435 | | * IP-literal = "[" ( IPv6address / IPvFuture ) "]" |
436 | | * IPv4address = dec-octet "." dec-octet "." dec-octet "." dec-octet |
437 | | * reg-name = *( unreserved / pct-encoded / sub-delims ) |
438 | | * |
439 | | * Returns 0 or the error code |
440 | | */ |
441 | | static int |
442 | | xmlParse3986Host(xmlURIPtr uri, const char **str) |
443 | 811k | { |
444 | 811k | const char *cur = *str; |
445 | 811k | const char *host; |
446 | | |
447 | 811k | host = cur; |
448 | | /* |
449 | | * IPv6 and future addressing scheme are enclosed between brackets |
450 | | */ |
451 | 811k | if (*cur == '[') { |
452 | 1.17k | cur++; |
453 | 227k | while ((*cur != ']') && (*cur != 0)) |
454 | 226k | cur++; |
455 | 1.17k | if (*cur != ']') |
456 | 1.12k | return(1); |
457 | 58 | cur++; |
458 | 58 | goto found; |
459 | 1.17k | } |
460 | | /* |
461 | | * try to parse an IPv4 |
462 | | */ |
463 | 810k | if (ISA_DIGIT(cur)) { |
464 | 26.8k | if (xmlParse3986DecOctet(&cur) != 0) |
465 | 5.61k | goto not_ipv4; |
466 | 21.2k | if (*cur != '.') |
467 | 14.6k | goto not_ipv4; |
468 | 6.62k | cur++; |
469 | 6.62k | if (xmlParse3986DecOctet(&cur) != 0) |
470 | 4.66k | goto not_ipv4; |
471 | 1.96k | if (*cur != '.') |
472 | 1.33k | goto not_ipv4; |
473 | 633 | if (xmlParse3986DecOctet(&cur) != 0) |
474 | 633 | goto not_ipv4; |
475 | 0 | if (*cur != '.') |
476 | 0 | goto not_ipv4; |
477 | 0 | if (xmlParse3986DecOctet(&cur) != 0) |
478 | 0 | goto not_ipv4; |
479 | 0 | goto found; |
480 | 26.8k | not_ipv4: |
481 | 26.8k | cur = *str; |
482 | 26.8k | } |
483 | | /* |
484 | | * then this should be a hostname which can be empty |
485 | | */ |
486 | 19.3M | while (ISA_UNRESERVED(cur) || ISA_PCT_ENCODED(cur) || ISA_SUB_DELIM(cur)) |
487 | 18.5M | NEXT(cur); |
488 | 810k | found: |
489 | 810k | if (uri != NULL) { |
490 | 810k | if (uri->authority != NULL) xmlFree(uri->authority); |
491 | 810k | uri->authority = NULL; |
492 | 810k | if (uri->server != NULL) xmlFree(uri->server); |
493 | 810k | if (cur != host) { |
494 | 740k | if (uri->cleanup & 2) |
495 | 0 | uri->server = STRNDUP(host, cur - host); |
496 | 740k | else |
497 | 740k | uri->server = xmlURIUnescapeString(host, cur - host, NULL); |
498 | 740k | } else |
499 | 69.7k | uri->server = NULL; |
500 | 810k | } |
501 | 810k | *str = cur; |
502 | 810k | return(0); |
503 | 810k | } |
504 | | |
505 | | /** |
506 | | * xmlParse3986Authority: |
507 | | * @uri: pointer to an URI structure |
508 | | * @str: the string to analyze |
509 | | * |
510 | | * Parse an authority part and fills in the appropriate fields |
511 | | * of the @uri structure |
512 | | * |
513 | | * authority = [ userinfo "@" ] host [ ":" port ] |
514 | | * |
515 | | * Returns 0 or the error code |
516 | | */ |
517 | | static int |
518 | | xmlParse3986Authority(xmlURIPtr uri, const char **str) |
519 | 811k | { |
520 | 811k | const char *cur; |
521 | 811k | int ret; |
522 | | |
523 | 811k | cur = *str; |
524 | | /* |
525 | | * try to parse an userinfo and check for the trailing @ |
526 | | */ |
527 | 811k | ret = xmlParse3986Userinfo(uri, &cur); |
528 | 811k | if ((ret != 0) || (*cur != '@')) |
529 | 749k | cur = *str; |
530 | 62.0k | else |
531 | 62.0k | cur++; |
532 | 811k | ret = xmlParse3986Host(uri, &cur); |
533 | 811k | if (ret != 0) return(ret); |
534 | 810k | if (*cur == ':') { |
535 | 18.1k | cur++; |
536 | 18.1k | ret = xmlParse3986Port(uri, &cur); |
537 | 18.1k | if (ret != 0) return(ret); |
538 | 18.1k | } |
539 | 798k | *str = cur; |
540 | 798k | return(0); |
541 | 810k | } |
542 | | |
543 | | /** |
544 | | * xmlParse3986Segment: |
545 | | * @str: the string to analyze |
546 | | * @forbid: an optional forbidden character |
547 | | * @empty: allow an empty segment |
548 | | * |
549 | | * Parse a segment and fills in the appropriate fields |
550 | | * of the @uri structure |
551 | | * |
552 | | * segment = *pchar |
553 | | * segment-nz = 1*pchar |
554 | | * segment-nz-nc = 1*( unreserved / pct-encoded / sub-delims / "@" ) |
555 | | * ; non-zero-length segment without any colon ":" |
556 | | * |
557 | | * Returns 0 or the error code |
558 | | */ |
559 | | static int |
560 | | xmlParse3986Segment(const char **str, char forbid, int empty) |
561 | 25.5M | { |
562 | 25.5M | const char *cur; |
563 | | |
564 | 25.5M | cur = *str; |
565 | 25.5M | if (!ISA_PCHAR(cur)) { |
566 | 6.89M | if (empty) |
567 | 6.87M | return(0); |
568 | 16.5k | return(1); |
569 | 6.89M | } |
570 | 307M | while (ISA_PCHAR(cur) && (*cur != forbid)) |
571 | 289M | NEXT(cur); |
572 | 18.7M | *str = cur; |
573 | 18.7M | return (0); |
574 | 25.5M | } |
575 | | |
576 | | /** |
577 | | * xmlParse3986PathAbEmpty: |
578 | | * @uri: pointer to an URI structure |
579 | | * @str: the string to analyze |
580 | | * |
581 | | * Parse an path absolute or empty and fills in the appropriate fields |
582 | | * of the @uri structure |
583 | | * |
584 | | * path-abempty = *( "/" segment ) |
585 | | * |
586 | | * Returns 0 or the error code |
587 | | */ |
588 | | static int |
589 | | xmlParse3986PathAbEmpty(xmlURIPtr uri, const char **str) |
590 | 798k | { |
591 | 798k | const char *cur; |
592 | 798k | int ret; |
593 | | |
594 | 798k | cur = *str; |
595 | | |
596 | 6.74M | while (*cur == '/') { |
597 | 5.94M | cur++; |
598 | 5.94M | ret = xmlParse3986Segment(&cur, 0, 1); |
599 | 5.94M | if (ret != 0) return(ret); |
600 | 5.94M | } |
601 | 798k | if (uri != NULL) { |
602 | 798k | if (uri->path != NULL) xmlFree(uri->path); |
603 | 798k | if (*str != cur) { |
604 | 538k | if (uri->cleanup & 2) |
605 | 0 | uri->path = STRNDUP(*str, cur - *str); |
606 | 538k | else |
607 | 538k | uri->path = xmlURIUnescapeString(*str, cur - *str, NULL); |
608 | 538k | } else { |
609 | 259k | uri->path = NULL; |
610 | 259k | } |
611 | 798k | } |
612 | 798k | *str = cur; |
613 | 798k | return (0); |
614 | 798k | } |
615 | | |
616 | | /** |
617 | | * xmlParse3986PathAbsolute: |
618 | | * @uri: pointer to an URI structure |
619 | | * @str: the string to analyze |
620 | | * |
621 | | * Parse an path absolute and fills in the appropriate fields |
622 | | * of the @uri structure |
623 | | * |
624 | | * path-absolute = "/" [ segment-nz *( "/" segment ) ] |
625 | | * |
626 | | * Returns 0 or the error code |
627 | | */ |
628 | | static int |
629 | | xmlParse3986PathAbsolute(xmlURIPtr uri, const char **str) |
630 | 91.7k | { |
631 | 91.7k | const char *cur; |
632 | 91.7k | int ret; |
633 | | |
634 | 91.7k | cur = *str; |
635 | | |
636 | 91.7k | if (*cur != '/') |
637 | 0 | return(1); |
638 | 91.7k | cur++; |
639 | 91.7k | ret = xmlParse3986Segment(&cur, 0, 0); |
640 | 91.7k | if (ret == 0) { |
641 | 143k | while (*cur == '/') { |
642 | 67.9k | cur++; |
643 | 67.9k | ret = xmlParse3986Segment(&cur, 0, 1); |
644 | 67.9k | if (ret != 0) return(ret); |
645 | 67.9k | } |
646 | 75.2k | } |
647 | 91.7k | if (uri != NULL) { |
648 | 91.7k | if (uri->path != NULL) xmlFree(uri->path); |
649 | 91.7k | if (cur != *str) { |
650 | 91.7k | if (uri->cleanup & 2) |
651 | 0 | uri->path = STRNDUP(*str, cur - *str); |
652 | 91.7k | else |
653 | 91.7k | uri->path = xmlURIUnescapeString(*str, cur - *str, NULL); |
654 | 91.7k | } else { |
655 | 0 | uri->path = NULL; |
656 | 0 | } |
657 | 91.7k | } |
658 | 91.7k | *str = cur; |
659 | 91.7k | return (0); |
660 | 91.7k | } |
661 | | |
662 | | /** |
663 | | * xmlParse3986PathRootless: |
664 | | * @uri: pointer to an URI structure |
665 | | * @str: the string to analyze |
666 | | * |
667 | | * Parse an path without root and fills in the appropriate fields |
668 | | * of the @uri structure |
669 | | * |
670 | | * path-rootless = segment-nz *( "/" segment ) |
671 | | * |
672 | | * Returns 0 or the error code |
673 | | */ |
674 | | static int |
675 | | xmlParse3986PathRootless(xmlURIPtr uri, const char **str) |
676 | 319k | { |
677 | 319k | const char *cur; |
678 | 319k | int ret; |
679 | | |
680 | 319k | cur = *str; |
681 | | |
682 | 319k | ret = xmlParse3986Segment(&cur, 0, 0); |
683 | 319k | if (ret != 0) return(ret); |
684 | 967k | while (*cur == '/') { |
685 | 647k | cur++; |
686 | 647k | ret = xmlParse3986Segment(&cur, 0, 1); |
687 | 647k | if (ret != 0) return(ret); |
688 | 647k | } |
689 | 319k | if (uri != NULL) { |
690 | 319k | if (uri->path != NULL) xmlFree(uri->path); |
691 | 319k | if (cur != *str) { |
692 | 319k | if (uri->cleanup & 2) |
693 | 0 | uri->path = STRNDUP(*str, cur - *str); |
694 | 319k | else |
695 | 319k | uri->path = xmlURIUnescapeString(*str, cur - *str, NULL); |
696 | 319k | } else { |
697 | 0 | uri->path = NULL; |
698 | 0 | } |
699 | 319k | } |
700 | 319k | *str = cur; |
701 | 319k | return (0); |
702 | 319k | } |
703 | | |
704 | | /** |
705 | | * xmlParse3986PathNoScheme: |
706 | | * @uri: pointer to an URI structure |
707 | | * @str: the string to analyze |
708 | | * |
709 | | * Parse an path which is not a scheme and fills in the appropriate fields |
710 | | * of the @uri structure |
711 | | * |
712 | | * path-noscheme = segment-nz-nc *( "/" segment ) |
713 | | * |
714 | | * Returns 0 or the error code |
715 | | */ |
716 | | static int |
717 | | xmlParse3986PathNoScheme(xmlURIPtr uri, const char **str) |
718 | 14.3M | { |
719 | 14.3M | const char *cur; |
720 | 14.3M | int ret; |
721 | | |
722 | 14.3M | cur = *str; |
723 | | |
724 | 14.3M | ret = xmlParse3986Segment(&cur, ':', 0); |
725 | 14.3M | if (ret != 0) return(ret); |
726 | 18.5M | while (*cur == '/') { |
727 | 4.13M | cur++; |
728 | 4.13M | ret = xmlParse3986Segment(&cur, 0, 1); |
729 | 4.13M | if (ret != 0) return(ret); |
730 | 4.13M | } |
731 | 14.3M | if (uri != NULL) { |
732 | 14.3M | if (uri->path != NULL) xmlFree(uri->path); |
733 | 14.3M | if (cur != *str) { |
734 | 14.3M | if (uri->cleanup & 2) |
735 | 0 | uri->path = STRNDUP(*str, cur - *str); |
736 | 14.3M | else |
737 | 14.3M | uri->path = xmlURIUnescapeString(*str, cur - *str, NULL); |
738 | 14.3M | } else { |
739 | 6.31k | uri->path = NULL; |
740 | 6.31k | } |
741 | 14.3M | } |
742 | 14.3M | *str = cur; |
743 | 14.3M | return (0); |
744 | 14.3M | } |
745 | | |
746 | | /** |
747 | | * xmlParse3986HierPart: |
748 | | * @uri: pointer to an URI structure |
749 | | * @str: the string to analyze |
750 | | * |
751 | | * Parse an hierarchical part and fills in the appropriate fields |
752 | | * of the @uri structure |
753 | | * |
754 | | * hier-part = "//" authority path-abempty |
755 | | * / path-absolute |
756 | | * / path-rootless |
757 | | * / path-empty |
758 | | * |
759 | | * Returns 0 or the error code |
760 | | */ |
761 | | static int |
762 | | xmlParse3986HierPart(xmlURIPtr uri, const char **str) |
763 | 1.15M | { |
764 | 1.15M | const char *cur; |
765 | 1.15M | int ret; |
766 | | |
767 | 1.15M | cur = *str; |
768 | | |
769 | 1.15M | if ((*cur == '/') && (*(cur + 1) == '/')) { |
770 | 786k | cur += 2; |
771 | 786k | ret = xmlParse3986Authority(uri, &cur); |
772 | 786k | if (ret != 0) return(ret); |
773 | 773k | if (uri->server == NULL) |
774 | 56.2k | uri->port = -1; |
775 | 773k | ret = xmlParse3986PathAbEmpty(uri, &cur); |
776 | 773k | if (ret != 0) return(ret); |
777 | 773k | *str = cur; |
778 | 773k | return(0); |
779 | 773k | } else if (*cur == '/') { |
780 | 23.6k | ret = xmlParse3986PathAbsolute(uri, &cur); |
781 | 23.6k | if (ret != 0) return(ret); |
782 | 348k | } else if (ISA_PCHAR(cur)) { |
783 | 319k | ret = xmlParse3986PathRootless(uri, &cur); |
784 | 319k | if (ret != 0) return(ret); |
785 | 319k | } else { |
786 | | /* path-empty is effectively empty */ |
787 | 28.8k | if (uri != NULL) { |
788 | 28.8k | if (uri->path != NULL) xmlFree(uri->path); |
789 | 28.8k | uri->path = NULL; |
790 | 28.8k | } |
791 | 28.8k | } |
792 | 372k | *str = cur; |
793 | 372k | return (0); |
794 | 1.15M | } |
795 | | |
796 | | /** |
797 | | * xmlParse3986RelativeRef: |
798 | | * @uri: pointer to an URI structure |
799 | | * @str: the string to analyze |
800 | | * |
801 | | * Parse an URI string and fills in the appropriate fields |
802 | | * of the @uri structure |
803 | | * |
804 | | * relative-ref = relative-part [ "?" query ] [ "#" fragment ] |
805 | | * relative-part = "//" authority path-abempty |
806 | | * / path-absolute |
807 | | * / path-noscheme |
808 | | * / path-empty |
809 | | * |
810 | | * Returns 0 or the error code |
811 | | */ |
812 | | static int |
813 | 15.3M | xmlParse3986RelativeRef(xmlURIPtr uri, const char *str) { |
814 | 15.3M | int ret; |
815 | | |
816 | 15.3M | if ((*str == '/') && (*(str + 1) == '/')) { |
817 | 24.9k | str += 2; |
818 | 24.9k | ret = xmlParse3986Authority(uri, &str); |
819 | 24.9k | if (ret != 0) return(ret); |
820 | 24.5k | ret = xmlParse3986PathAbEmpty(uri, &str); |
821 | 24.5k | if (ret != 0) return(ret); |
822 | 15.3M | } else if (*str == '/') { |
823 | 68.1k | ret = xmlParse3986PathAbsolute(uri, &str); |
824 | 68.1k | if (ret != 0) return(ret); |
825 | 15.2M | } else if (ISA_PCHAR(str)) { |
826 | 14.3M | ret = xmlParse3986PathNoScheme(uri, &str); |
827 | 14.3M | if (ret != 0) return(ret); |
828 | 14.3M | } else { |
829 | | /* path-empty is effectively empty */ |
830 | 853k | if (uri != NULL) { |
831 | 853k | if (uri->path != NULL) xmlFree(uri->path); |
832 | 853k | uri->path = NULL; |
833 | 853k | } |
834 | 853k | } |
835 | | |
836 | 15.3M | if (*str == '?') { |
837 | 124k | str++; |
838 | 124k | ret = xmlParse3986Query(uri, &str); |
839 | 124k | if (ret != 0) return(ret); |
840 | 124k | } |
841 | 15.3M | if (*str == '#') { |
842 | 878k | str++; |
843 | 878k | ret = xmlParse3986Fragment(uri, &str); |
844 | 878k | if (ret != 0) return(ret); |
845 | 878k | } |
846 | 15.3M | if (*str != 0) { |
847 | 1.06M | xmlCleanURI(uri); |
848 | 1.06M | return(1); |
849 | 1.06M | } |
850 | 14.2M | return(0); |
851 | 15.3M | } |
852 | | |
853 | | |
854 | | /** |
855 | | * xmlParse3986URI: |
856 | | * @uri: pointer to an URI structure |
857 | | * @str: the string to analyze |
858 | | * |
859 | | * Parse an URI string and fills in the appropriate fields |
860 | | * of the @uri structure |
861 | | * |
862 | | * scheme ":" hier-part [ "?" query ] [ "#" fragment ] |
863 | | * |
864 | | * Returns 0 or the error code |
865 | | */ |
866 | | static int |
867 | 16.2M | xmlParse3986URI(xmlURIPtr uri, const char *str) { |
868 | 16.2M | int ret; |
869 | | |
870 | 16.2M | ret = xmlParse3986Scheme(uri, &str); |
871 | 16.2M | if (ret != 0) return(ret); |
872 | 14.0M | if (*str != ':') { |
873 | 12.8M | return(1); |
874 | 12.8M | } |
875 | 1.15M | str++; |
876 | 1.15M | ret = xmlParse3986HierPart(uri, &str); |
877 | 1.15M | if (ret != 0) return(ret); |
878 | 1.14M | if (*str == '?') { |
879 | 30.5k | str++; |
880 | 30.5k | ret = xmlParse3986Query(uri, &str); |
881 | 30.5k | if (ret != 0) return(ret); |
882 | 30.5k | } |
883 | 1.14M | if (*str == '#') { |
884 | 79.5k | str++; |
885 | 79.5k | ret = xmlParse3986Fragment(uri, &str); |
886 | 79.5k | if (ret != 0) return(ret); |
887 | 79.5k | } |
888 | 1.14M | if (*str != 0) { |
889 | 205k | xmlCleanURI(uri); |
890 | 205k | return(1); |
891 | 205k | } |
892 | 940k | return(0); |
893 | 1.14M | } |
894 | | |
895 | | /** |
896 | | * xmlParse3986URIReference: |
897 | | * @uri: pointer to an URI structure |
898 | | * @str: the string to analyze |
899 | | * |
900 | | * Parse an URI reference string and fills in the appropriate fields |
901 | | * of the @uri structure |
902 | | * |
903 | | * URI-reference = URI / relative-ref |
904 | | * |
905 | | * Returns 0 or the error code |
906 | | */ |
907 | | static int |
908 | 16.2M | xmlParse3986URIReference(xmlURIPtr uri, const char *str) { |
909 | 16.2M | int ret; |
910 | | |
911 | 16.2M | if (str == NULL) |
912 | 0 | return(-1); |
913 | 16.2M | xmlCleanURI(uri); |
914 | | |
915 | | /* |
916 | | * Try first to parse absolute refs, then fallback to relative if |
917 | | * it fails. |
918 | | */ |
919 | 16.2M | ret = xmlParse3986URI(uri, str); |
920 | 16.2M | if (ret != 0) { |
921 | 15.3M | xmlCleanURI(uri); |
922 | 15.3M | ret = xmlParse3986RelativeRef(uri, str); |
923 | 15.3M | if (ret != 0) { |
924 | 1.06M | xmlCleanURI(uri); |
925 | 1.06M | return(ret); |
926 | 1.06M | } |
927 | 15.3M | } |
928 | 15.2M | return(0); |
929 | 16.2M | } |
930 | | |
931 | | /** |
932 | | * xmlParseURI: |
933 | | * @str: the URI string to analyze |
934 | | * |
935 | | * Parse an URI based on RFC 3986 |
936 | | * |
937 | | * URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ] |
938 | | * |
939 | | * Returns a newly built xmlURIPtr or NULL in case of error |
940 | | */ |
941 | | xmlURIPtr |
942 | 9.25M | xmlParseURI(const char *str) { |
943 | 9.25M | xmlURIPtr uri; |
944 | 9.25M | int ret; |
945 | | |
946 | 9.25M | if (str == NULL) |
947 | 0 | return(NULL); |
948 | 9.25M | uri = xmlCreateURI(); |
949 | 9.25M | if (uri != NULL) { |
950 | 9.25M | ret = xmlParse3986URIReference(uri, str); |
951 | 9.25M | if (ret) { |
952 | 848k | xmlFreeURI(uri); |
953 | 848k | return(NULL); |
954 | 848k | } |
955 | 9.25M | } |
956 | 8.40M | return(uri); |
957 | 9.25M | } |
958 | | |
959 | | /** |
960 | | * xmlParseURIReference: |
961 | | * @uri: pointer to an URI structure |
962 | | * @str: the string to analyze |
963 | | * |
964 | | * Parse an URI reference string based on RFC 3986 and fills in the |
965 | | * appropriate fields of the @uri structure |
966 | | * |
967 | | * URI-reference = URI / relative-ref |
968 | | * |
969 | | * Returns 0 or the error code |
970 | | */ |
971 | | int |
972 | 7.01M | xmlParseURIReference(xmlURIPtr uri, const char *str) { |
973 | 7.01M | return(xmlParse3986URIReference(uri, str)); |
974 | 7.01M | } |
975 | | |
976 | | /** |
977 | | * xmlParseURIRaw: |
978 | | * @str: the URI string to analyze |
979 | | * @raw: if 1 unescaping of URI pieces are disabled |
980 | | * |
981 | | * Parse an URI but allows to keep intact the original fragments. |
982 | | * |
983 | | * URI-reference = URI / relative-ref |
984 | | * |
985 | | * Returns a newly built xmlURIPtr or NULL in case of error |
986 | | */ |
987 | | xmlURIPtr |
988 | 0 | xmlParseURIRaw(const char *str, int raw) { |
989 | 0 | xmlURIPtr uri; |
990 | 0 | int ret; |
991 | |
|
992 | 0 | if (str == NULL) |
993 | 0 | return(NULL); |
994 | 0 | uri = xmlCreateURI(); |
995 | 0 | if (uri != NULL) { |
996 | 0 | if (raw) { |
997 | 0 | uri->cleanup |= 2; |
998 | 0 | } |
999 | 0 | ret = xmlParseURIReference(uri, str); |
1000 | 0 | if (ret) { |
1001 | 0 | xmlFreeURI(uri); |
1002 | 0 | return(NULL); |
1003 | 0 | } |
1004 | 0 | } |
1005 | 0 | return(uri); |
1006 | 0 | } |
1007 | | |
1008 | | /************************************************************************ |
1009 | | * * |
1010 | | * Generic URI structure functions * |
1011 | | * * |
1012 | | ************************************************************************/ |
1013 | | |
1014 | | /** |
1015 | | * xmlCreateURI: |
1016 | | * |
1017 | | * Simply creates an empty xmlURI |
1018 | | * |
1019 | | * Returns the new structure or NULL in case of error |
1020 | | */ |
1021 | | xmlURIPtr |
1022 | 17.1M | xmlCreateURI(void) { |
1023 | 17.1M | xmlURIPtr ret; |
1024 | | |
1025 | 17.1M | ret = (xmlURIPtr) xmlMalloc(sizeof(xmlURI)); |
1026 | 17.1M | if (ret == NULL) { |
1027 | 0 | xmlURIErrMemory("creating URI structure\n"); |
1028 | 0 | return(NULL); |
1029 | 0 | } |
1030 | 17.1M | memset(ret, 0, sizeof(xmlURI)); |
1031 | 17.1M | return(ret); |
1032 | 17.1M | } |
1033 | | |
1034 | | /** |
1035 | | * xmlSaveUriRealloc: |
1036 | | * |
1037 | | * Function to handle properly a reallocation when saving an URI |
1038 | | * Also imposes some limit on the length of an URI string output |
1039 | | */ |
1040 | | static xmlChar * |
1041 | 533k | xmlSaveUriRealloc(xmlChar *ret, int *max) { |
1042 | 533k | xmlChar *temp; |
1043 | 533k | int tmp; |
1044 | | |
1045 | 533k | if (*max > MAX_URI_LENGTH) { |
1046 | 0 | xmlURIErrMemory("reaching arbitrary MAX_URI_LENGTH limit\n"); |
1047 | 0 | return(NULL); |
1048 | 0 | } |
1049 | 533k | tmp = *max * 2; |
1050 | 533k | temp = (xmlChar *) xmlRealloc(ret, (tmp + 1)); |
1051 | 533k | if (temp == NULL) { |
1052 | 0 | xmlURIErrMemory("saving URI\n"); |
1053 | 0 | return(NULL); |
1054 | 0 | } |
1055 | 533k | *max = tmp; |
1056 | 533k | return(temp); |
1057 | 533k | } |
1058 | | |
1059 | | /** |
1060 | | * xmlSaveUri: |
1061 | | * @uri: pointer to an xmlURI |
1062 | | * |
1063 | | * Save the URI as an escaped string |
1064 | | * |
1065 | | * Returns a new string (to be deallocated by caller) |
1066 | | */ |
1067 | | xmlChar * |
1068 | 7.13M | xmlSaveUri(xmlURIPtr uri) { |
1069 | 7.13M | xmlChar *ret = NULL; |
1070 | 7.13M | xmlChar *temp; |
1071 | 7.13M | const char *p; |
1072 | 7.13M | int len; |
1073 | 7.13M | int max; |
1074 | | |
1075 | 7.13M | if (uri == NULL) return(NULL); |
1076 | | |
1077 | | |
1078 | 7.13M | max = 80; |
1079 | 7.13M | ret = (xmlChar *) xmlMallocAtomic(max + 1); |
1080 | 7.13M | if (ret == NULL) { |
1081 | 0 | xmlURIErrMemory("saving URI\n"); |
1082 | 0 | return(NULL); |
1083 | 0 | } |
1084 | 7.13M | len = 0; |
1085 | | |
1086 | 7.13M | if (uri->scheme != NULL) { |
1087 | 216k | p = uri->scheme; |
1088 | 2.31M | while (*p != 0) { |
1089 | 2.09M | if (len >= max) { |
1090 | 4.91k | temp = xmlSaveUriRealloc(ret, &max); |
1091 | 4.91k | if (temp == NULL) goto mem_error; |
1092 | 4.91k | ret = temp; |
1093 | 4.91k | } |
1094 | 2.09M | ret[len++] = *p++; |
1095 | 2.09M | } |
1096 | 216k | if (len >= max) { |
1097 | 136 | temp = xmlSaveUriRealloc(ret, &max); |
1098 | 136 | if (temp == NULL) goto mem_error; |
1099 | 136 | ret = temp; |
1100 | 136 | } |
1101 | 216k | ret[len++] = ':'; |
1102 | 216k | } |
1103 | 7.13M | if (uri->opaque != NULL) { |
1104 | 0 | p = uri->opaque; |
1105 | 0 | while (*p != 0) { |
1106 | 0 | if (len + 3 >= max) { |
1107 | 0 | temp = xmlSaveUriRealloc(ret, &max); |
1108 | 0 | if (temp == NULL) goto mem_error; |
1109 | 0 | ret = temp; |
1110 | 0 | } |
1111 | 0 | if (IS_RESERVED(*(p)) || IS_UNRESERVED(*(p))) |
1112 | 0 | ret[len++] = *p++; |
1113 | 0 | else { |
1114 | 0 | int val = *(unsigned char *)p++; |
1115 | 0 | int hi = val / 0x10, lo = val % 0x10; |
1116 | 0 | ret[len++] = '%'; |
1117 | 0 | ret[len++] = hi + (hi > 9? 'A'-10 : '0'); |
1118 | 0 | ret[len++] = lo + (lo > 9? 'A'-10 : '0'); |
1119 | 0 | } |
1120 | 0 | } |
1121 | 7.13M | } else { |
1122 | 7.13M | if ((uri->server != NULL) || (uri->port == -1)) { |
1123 | 71.2k | if (len + 3 >= max) { |
1124 | 368 | temp = xmlSaveUriRealloc(ret, &max); |
1125 | 368 | if (temp == NULL) goto mem_error; |
1126 | 368 | ret = temp; |
1127 | 368 | } |
1128 | 71.2k | ret[len++] = '/'; |
1129 | 71.2k | ret[len++] = '/'; |
1130 | 71.2k | if (uri->user != NULL) { |
1131 | 24.2k | p = uri->user; |
1132 | 7.52M | while (*p != 0) { |
1133 | 7.50M | if (len + 3 >= max) { |
1134 | 11.2k | temp = xmlSaveUriRealloc(ret, &max); |
1135 | 11.2k | if (temp == NULL) goto mem_error; |
1136 | 11.2k | ret = temp; |
1137 | 11.2k | } |
1138 | 7.50M | if ((IS_UNRESERVED(*(p))) || |
1139 | 7.50M | ((*(p) == ';')) || ((*(p) == ':')) || |
1140 | 7.50M | ((*(p) == '&')) || ((*(p) == '=')) || |
1141 | 7.50M | ((*(p) == '+')) || ((*(p) == '$')) || |
1142 | 7.50M | ((*(p) == ','))) |
1143 | 5.64M | ret[len++] = *p++; |
1144 | 1.85M | else { |
1145 | 1.85M | int val = *(unsigned char *)p++; |
1146 | 1.85M | int hi = val / 0x10, lo = val % 0x10; |
1147 | 1.85M | ret[len++] = '%'; |
1148 | 1.85M | ret[len++] = hi + (hi > 9? 'A'-10 : '0'); |
1149 | 1.85M | ret[len++] = lo + (lo > 9? 'A'-10 : '0'); |
1150 | 1.85M | } |
1151 | 7.50M | } |
1152 | 24.2k | if (len + 3 >= max) { |
1153 | 927 | temp = xmlSaveUriRealloc(ret, &max); |
1154 | 927 | if (temp == NULL) goto mem_error; |
1155 | 927 | ret = temp; |
1156 | 927 | } |
1157 | 24.2k | ret[len++] = '@'; |
1158 | 24.2k | } |
1159 | 71.2k | if (uri->server != NULL) { |
1160 | 51.5k | p = uri->server; |
1161 | 4.00M | while (*p != 0) { |
1162 | 3.95M | if (len >= max) { |
1163 | 5.88k | temp = xmlSaveUriRealloc(ret, &max); |
1164 | 5.88k | if (temp == NULL) goto mem_error; |
1165 | 5.88k | ret = temp; |
1166 | 5.88k | } |
1167 | 3.95M | ret[len++] = *p++; |
1168 | 3.95M | } |
1169 | 51.5k | if (uri->port > 0) { |
1170 | 2.72k | if (len + 10 >= max) { |
1171 | 477 | temp = xmlSaveUriRealloc(ret, &max); |
1172 | 477 | if (temp == NULL) goto mem_error; |
1173 | 477 | ret = temp; |
1174 | 477 | } |
1175 | 2.72k | len += snprintf((char *) &ret[len], max - len, ":%d", uri->port); |
1176 | 2.72k | } |
1177 | 51.5k | } |
1178 | 7.06M | } else if (uri->authority != NULL) { |
1179 | 0 | if (len + 3 >= max) { |
1180 | 0 | temp = xmlSaveUriRealloc(ret, &max); |
1181 | 0 | if (temp == NULL) goto mem_error; |
1182 | 0 | ret = temp; |
1183 | 0 | } |
1184 | 0 | ret[len++] = '/'; |
1185 | 0 | ret[len++] = '/'; |
1186 | 0 | p = uri->authority; |
1187 | 0 | while (*p != 0) { |
1188 | 0 | if (len + 3 >= max) { |
1189 | 0 | temp = xmlSaveUriRealloc(ret, &max); |
1190 | 0 | if (temp == NULL) goto mem_error; |
1191 | 0 | ret = temp; |
1192 | 0 | } |
1193 | 0 | if ((IS_UNRESERVED(*(p))) || |
1194 | 0 | ((*(p) == '$')) || ((*(p) == ',')) || ((*(p) == ';')) || |
1195 | 0 | ((*(p) == ':')) || ((*(p) == '@')) || ((*(p) == '&')) || |
1196 | 0 | ((*(p) == '=')) || ((*(p) == '+'))) |
1197 | 0 | ret[len++] = *p++; |
1198 | 0 | else { |
1199 | 0 | int val = *(unsigned char *)p++; |
1200 | 0 | int hi = val / 0x10, lo = val % 0x10; |
1201 | 0 | ret[len++] = '%'; |
1202 | 0 | ret[len++] = hi + (hi > 9? 'A'-10 : '0'); |
1203 | 0 | ret[len++] = lo + (lo > 9? 'A'-10 : '0'); |
1204 | 0 | } |
1205 | 0 | } |
1206 | 7.06M | } else if (uri->scheme != NULL) { |
1207 | 153k | if (len + 3 >= max) { |
1208 | 855 | temp = xmlSaveUriRealloc(ret, &max); |
1209 | 855 | if (temp == NULL) goto mem_error; |
1210 | 855 | ret = temp; |
1211 | 855 | } |
1212 | 153k | } |
1213 | 7.13M | if (uri->path != NULL) { |
1214 | 6.96M | p = uri->path; |
1215 | | /* |
1216 | | * the colon in file:///d: should not be escaped or |
1217 | | * Windows accesses fail later. |
1218 | | */ |
1219 | 6.96M | if ((uri->scheme != NULL) && |
1220 | 6.96M | (p[0] == '/') && |
1221 | 6.96M | (((p[1] >= 'a') && (p[1] <= 'z')) || |
1222 | 35.3k | ((p[1] >= 'A') && (p[1] <= 'Z'))) && |
1223 | 6.96M | (p[2] == ':') && |
1224 | 6.96M | (xmlStrEqual(BAD_CAST uri->scheme, BAD_CAST "file"))) { |
1225 | 0 | if (len + 3 >= max) { |
1226 | 0 | temp = xmlSaveUriRealloc(ret, &max); |
1227 | 0 | if (temp == NULL) goto mem_error; |
1228 | 0 | ret = temp; |
1229 | 0 | } |
1230 | 0 | ret[len++] = *p++; |
1231 | 0 | ret[len++] = *p++; |
1232 | 0 | ret[len++] = *p++; |
1233 | 0 | } |
1234 | 188M | while (*p != 0) { |
1235 | 181M | if (len + 3 >= max) { |
1236 | 389k | temp = xmlSaveUriRealloc(ret, &max); |
1237 | 389k | if (temp == NULL) goto mem_error; |
1238 | 389k | ret = temp; |
1239 | 389k | } |
1240 | 181M | if ((IS_UNRESERVED(*(p))) || ((*(p) == '/')) || |
1241 | 181M | ((*(p) == ';')) || ((*(p) == '@')) || ((*(p) == '&')) || |
1242 | 181M | ((*(p) == '=')) || ((*(p) == '+')) || ((*(p) == '$')) || |
1243 | 181M | ((*(p) == ','))) |
1244 | 122M | ret[len++] = *p++; |
1245 | 58.3M | else { |
1246 | 58.3M | int val = *(unsigned char *)p++; |
1247 | 58.3M | int hi = val / 0x10, lo = val % 0x10; |
1248 | 58.3M | ret[len++] = '%'; |
1249 | 58.3M | ret[len++] = hi + (hi > 9? 'A'-10 : '0'); |
1250 | 58.3M | ret[len++] = lo + (lo > 9? 'A'-10 : '0'); |
1251 | 58.3M | } |
1252 | 181M | } |
1253 | 6.96M | } |
1254 | 7.13M | if (uri->query_raw != NULL) { |
1255 | 57.5k | if (len + 1 >= max) { |
1256 | 624 | temp = xmlSaveUriRealloc(ret, &max); |
1257 | 624 | if (temp == NULL) goto mem_error; |
1258 | 624 | ret = temp; |
1259 | 624 | } |
1260 | 57.5k | ret[len++] = '?'; |
1261 | 57.5k | p = uri->query_raw; |
1262 | 3.13M | while (*p != 0) { |
1263 | 3.08M | if (len + 1 >= max) { |
1264 | 5.79k | temp = xmlSaveUriRealloc(ret, &max); |
1265 | 5.79k | if (temp == NULL) goto mem_error; |
1266 | 5.79k | ret = temp; |
1267 | 5.79k | } |
1268 | 3.08M | ret[len++] = *p++; |
1269 | 3.08M | } |
1270 | 7.07M | } else if (uri->query != NULL) { |
1271 | 0 | if (len + 3 >= max) { |
1272 | 0 | temp = xmlSaveUriRealloc(ret, &max); |
1273 | 0 | if (temp == NULL) goto mem_error; |
1274 | 0 | ret = temp; |
1275 | 0 | } |
1276 | 0 | ret[len++] = '?'; |
1277 | 0 | p = uri->query; |
1278 | 0 | while (*p != 0) { |
1279 | 0 | if (len + 3 >= max) { |
1280 | 0 | temp = xmlSaveUriRealloc(ret, &max); |
1281 | 0 | if (temp == NULL) goto mem_error; |
1282 | 0 | ret = temp; |
1283 | 0 | } |
1284 | 0 | if ((IS_UNRESERVED(*(p))) || (IS_RESERVED(*(p)))) |
1285 | 0 | ret[len++] = *p++; |
1286 | 0 | else { |
1287 | 0 | int val = *(unsigned char *)p++; |
1288 | 0 | int hi = val / 0x10, lo = val % 0x10; |
1289 | 0 | ret[len++] = '%'; |
1290 | 0 | ret[len++] = hi + (hi > 9? 'A'-10 : '0'); |
1291 | 0 | ret[len++] = lo + (lo > 9? 'A'-10 : '0'); |
1292 | 0 | } |
1293 | 0 | } |
1294 | 0 | } |
1295 | 7.13M | } |
1296 | 7.13M | if (uri->fragment != NULL) { |
1297 | 296k | if (len + 3 >= max) { |
1298 | 2.39k | temp = xmlSaveUriRealloc(ret, &max); |
1299 | 2.39k | if (temp == NULL) goto mem_error; |
1300 | 2.39k | ret = temp; |
1301 | 2.39k | } |
1302 | 296k | ret[len++] = '#'; |
1303 | 296k | p = uri->fragment; |
1304 | 17.1M | while (*p != 0) { |
1305 | 16.8M | if (len + 3 >= max) { |
1306 | 57.6k | temp = xmlSaveUriRealloc(ret, &max); |
1307 | 57.6k | if (temp == NULL) goto mem_error; |
1308 | 57.6k | ret = temp; |
1309 | 57.6k | } |
1310 | 16.8M | if ((IS_UNRESERVED(*(p))) || (IS_RESERVED(*(p)))) |
1311 | 16.3M | ret[len++] = *p++; |
1312 | 472k | else { |
1313 | 472k | int val = *(unsigned char *)p++; |
1314 | 472k | int hi = val / 0x10, lo = val % 0x10; |
1315 | 472k | ret[len++] = '%'; |
1316 | 472k | ret[len++] = hi + (hi > 9? 'A'-10 : '0'); |
1317 | 472k | ret[len++] = lo + (lo > 9? 'A'-10 : '0'); |
1318 | 472k | } |
1319 | 16.8M | } |
1320 | 296k | } |
1321 | 7.13M | if (len >= max) { |
1322 | 304 | temp = xmlSaveUriRealloc(ret, &max); |
1323 | 304 | if (temp == NULL) goto mem_error; |
1324 | 304 | ret = temp; |
1325 | 304 | } |
1326 | 7.13M | ret[len] = 0; |
1327 | 7.13M | return(ret); |
1328 | | |
1329 | 0 | mem_error: |
1330 | 0 | xmlFree(ret); |
1331 | 0 | return(NULL); |
1332 | 7.13M | } |
1333 | | |
1334 | | /** |
1335 | | * xmlPrintURI: |
1336 | | * @stream: a FILE* for the output |
1337 | | * @uri: pointer to an xmlURI |
1338 | | * |
1339 | | * Prints the URI in the stream @stream. |
1340 | | */ |
1341 | | void |
1342 | 0 | xmlPrintURI(FILE *stream, xmlURIPtr uri) { |
1343 | 0 | xmlChar *out; |
1344 | |
|
1345 | 0 | out = xmlSaveUri(uri); |
1346 | 0 | if (out != NULL) { |
1347 | 0 | fprintf(stream, "%s", (char *) out); |
1348 | 0 | xmlFree(out); |
1349 | 0 | } |
1350 | 0 | } |
1351 | | |
1352 | | /** |
1353 | | * xmlCleanURI: |
1354 | | * @uri: pointer to an xmlURI |
1355 | | * |
1356 | | * Make sure the xmlURI struct is free of content |
1357 | | */ |
1358 | | static void |
1359 | 33.9M | xmlCleanURI(xmlURIPtr uri) { |
1360 | 33.9M | if (uri == NULL) return; |
1361 | | |
1362 | 33.9M | if (uri->scheme != NULL) xmlFree(uri->scheme); |
1363 | 33.9M | uri->scheme = NULL; |
1364 | 33.9M | if (uri->server != NULL) xmlFree(uri->server); |
1365 | 33.9M | uri->server = NULL; |
1366 | 33.9M | if (uri->user != NULL) xmlFree(uri->user); |
1367 | 33.9M | uri->user = NULL; |
1368 | 33.9M | if (uri->path != NULL) xmlFree(uri->path); |
1369 | 33.9M | uri->path = NULL; |
1370 | 33.9M | if (uri->fragment != NULL) xmlFree(uri->fragment); |
1371 | 33.9M | uri->fragment = NULL; |
1372 | 33.9M | if (uri->opaque != NULL) xmlFree(uri->opaque); |
1373 | 33.9M | uri->opaque = NULL; |
1374 | 33.9M | if (uri->authority != NULL) xmlFree(uri->authority); |
1375 | 33.9M | uri->authority = NULL; |
1376 | 33.9M | if (uri->query != NULL) xmlFree(uri->query); |
1377 | 33.9M | uri->query = NULL; |
1378 | 33.9M | if (uri->query_raw != NULL) xmlFree(uri->query_raw); |
1379 | 33.9M | uri->query_raw = NULL; |
1380 | 33.9M | } |
1381 | | |
1382 | | /** |
1383 | | * xmlFreeURI: |
1384 | | * @uri: pointer to an xmlURI |
1385 | | * |
1386 | | * Free up the xmlURI struct |
1387 | | */ |
1388 | | void |
1389 | 17.1M | xmlFreeURI(xmlURIPtr uri) { |
1390 | 17.1M | if (uri == NULL) return; |
1391 | | |
1392 | 17.1M | if (uri->scheme != NULL) xmlFree(uri->scheme); |
1393 | 17.1M | if (uri->server != NULL) xmlFree(uri->server); |
1394 | 17.1M | if (uri->user != NULL) xmlFree(uri->user); |
1395 | 17.1M | if (uri->path != NULL) xmlFree(uri->path); |
1396 | 17.1M | if (uri->fragment != NULL) xmlFree(uri->fragment); |
1397 | 17.1M | if (uri->opaque != NULL) xmlFree(uri->opaque); |
1398 | 17.1M | if (uri->authority != NULL) xmlFree(uri->authority); |
1399 | 17.1M | if (uri->query != NULL) xmlFree(uri->query); |
1400 | 17.1M | if (uri->query_raw != NULL) xmlFree(uri->query_raw); |
1401 | 17.1M | xmlFree(uri); |
1402 | 17.1M | } |
1403 | | |
1404 | | /************************************************************************ |
1405 | | * * |
1406 | | * Helper functions * |
1407 | | * * |
1408 | | ************************************************************************/ |
1409 | | |
1410 | | /** |
1411 | | * xmlNormalizeURIPath: |
1412 | | * @path: pointer to the path string |
1413 | | * |
1414 | | * Applies the 5 normalization steps to a path string--that is, RFC 2396 |
1415 | | * Section 5.2, steps 6.c through 6.g. |
1416 | | * |
1417 | | * Normalization occurs directly on the string, no new allocation is done |
1418 | | * |
1419 | | * Returns 0 or an error code |
1420 | | */ |
1421 | | int |
1422 | 625k | xmlNormalizeURIPath(char *path) { |
1423 | 625k | char *cur, *out; |
1424 | | |
1425 | 625k | if (path == NULL) |
1426 | 0 | return(-1); |
1427 | | |
1428 | | /* Skip all initial "/" chars. We want to get to the beginning of the |
1429 | | * first non-empty segment. |
1430 | | */ |
1431 | 625k | cur = path; |
1432 | 736k | while (cur[0] == '/') |
1433 | 110k | ++cur; |
1434 | 625k | if (cur[0] == '\0') |
1435 | 0 | return(0); |
1436 | | |
1437 | | /* Keep everything we've seen so far. */ |
1438 | 625k | out = cur; |
1439 | | |
1440 | | /* |
1441 | | * Analyze each segment in sequence for cases (c) and (d). |
1442 | | */ |
1443 | 1.33M | while (cur[0] != '\0') { |
1444 | | /* |
1445 | | * c) All occurrences of "./", where "." is a complete path segment, |
1446 | | * are removed from the buffer string. |
1447 | | */ |
1448 | 1.33M | if ((cur[0] == '.') && (cur[1] == '/')) { |
1449 | 4.26k | cur += 2; |
1450 | | /* '//' normalization should be done at this point too */ |
1451 | 25.9k | while (cur[0] == '/') |
1452 | 21.6k | cur++; |
1453 | 4.26k | continue; |
1454 | 4.26k | } |
1455 | | |
1456 | | /* |
1457 | | * d) If the buffer string ends with "." as a complete path segment, |
1458 | | * that "." is removed. |
1459 | | */ |
1460 | 1.32M | if ((cur[0] == '.') && (cur[1] == '\0')) |
1461 | 10.6k | break; |
1462 | | |
1463 | | /* Otherwise keep the segment. */ |
1464 | 18.8M | while (cur[0] != '/') { |
1465 | 18.1M | if (cur[0] == '\0') |
1466 | 610k | goto done_cd; |
1467 | 17.5M | (out++)[0] = (cur++)[0]; |
1468 | 17.5M | } |
1469 | | /* normalize // */ |
1470 | 1.59M | while ((cur[0] == '/') && (cur[1] == '/')) |
1471 | 885k | cur++; |
1472 | | |
1473 | 705k | (out++)[0] = (cur++)[0]; |
1474 | 705k | } |
1475 | 625k | done_cd: |
1476 | 625k | out[0] = '\0'; |
1477 | | |
1478 | | /* Reset to the beginning of the first segment for the next sequence. */ |
1479 | 625k | cur = path; |
1480 | 736k | while (cur[0] == '/') |
1481 | 110k | ++cur; |
1482 | 625k | if (cur[0] == '\0') |
1483 | 9.26k | return(0); |
1484 | | |
1485 | | /* |
1486 | | * Analyze each segment in sequence for cases (e) and (f). |
1487 | | * |
1488 | | * e) All occurrences of "<segment>/../", where <segment> is a |
1489 | | * complete path segment not equal to "..", are removed from the |
1490 | | * buffer string. Removal of these path segments is performed |
1491 | | * iteratively, removing the leftmost matching pattern on each |
1492 | | * iteration, until no matching pattern remains. |
1493 | | * |
1494 | | * f) If the buffer string ends with "<segment>/..", where <segment> |
1495 | | * is a complete path segment not equal to "..", that |
1496 | | * "<segment>/.." is removed. |
1497 | | * |
1498 | | * To satisfy the "iterative" clause in (e), we need to collapse the |
1499 | | * string every time we find something that needs to be removed. Thus, |
1500 | | * we don't need to keep two pointers into the string: we only need a |
1501 | | * "current position" pointer. |
1502 | | */ |
1503 | 1.31M | while (1) { |
1504 | 1.31M | char *segp, *tmp; |
1505 | | |
1506 | | /* At the beginning of each iteration of this loop, "cur" points to |
1507 | | * the first character of the segment we want to examine. |
1508 | | */ |
1509 | | |
1510 | | /* Find the end of the current segment. */ |
1511 | 1.31M | segp = cur; |
1512 | 19.0M | while ((segp[0] != '/') && (segp[0] != '\0')) |
1513 | 17.6M | ++segp; |
1514 | | |
1515 | | /* If this is the last segment, we're done (we need at least two |
1516 | | * segments to meet the criteria for the (e) and (f) cases). |
1517 | | */ |
1518 | 1.31M | if (segp[0] == '\0') |
1519 | 614k | break; |
1520 | | |
1521 | | /* If the first segment is "..", or if the next segment _isn't_ "..", |
1522 | | * keep this segment and try the next one. |
1523 | | */ |
1524 | 702k | ++segp; |
1525 | 702k | if (((cur[0] == '.') && (cur[1] == '.') && (segp == cur+3)) |
1526 | 702k | || ((segp[0] != '.') || (segp[1] != '.') |
1527 | 692k | || ((segp[2] != '/') && (segp[2] != '\0')))) { |
1528 | 692k | cur = segp; |
1529 | 692k | continue; |
1530 | 692k | } |
1531 | | |
1532 | | /* If we get here, remove this segment and the next one and back up |
1533 | | * to the previous segment (if there is one), to implement the |
1534 | | * "iteratively" clause. It's pretty much impossible to back up |
1535 | | * while maintaining two pointers into the buffer, so just compact |
1536 | | * the whole buffer now. |
1537 | | */ |
1538 | | |
1539 | | /* If this is the end of the buffer, we're done. */ |
1540 | 9.67k | if (segp[2] == '\0') { |
1541 | 1.80k | cur[0] = '\0'; |
1542 | 1.80k | break; |
1543 | 1.80k | } |
1544 | | /* Valgrind complained, strcpy(cur, segp + 3); */ |
1545 | | /* string will overlap, do not use strcpy */ |
1546 | 7.87k | tmp = cur; |
1547 | 7.87k | segp += 3; |
1548 | 186k | while ((*tmp++ = *segp++) != 0) |
1549 | 178k | ; |
1550 | | |
1551 | | /* If there are no previous segments, then keep going from here. */ |
1552 | 7.87k | segp = cur; |
1553 | 16.8k | while ((segp > path) && ((--segp)[0] == '/')) |
1554 | 8.93k | ; |
1555 | 7.87k | if (segp == path) |
1556 | 3.00k | continue; |
1557 | | |
1558 | | /* "segp" is pointing to the end of a previous segment; find it's |
1559 | | * start. We need to back up to the previous segment and start |
1560 | | * over with that to handle things like "foo/bar/../..". If we |
1561 | | * don't do this, then on the first pass we'll remove the "bar/..", |
1562 | | * but be pointing at the second ".." so we won't realize we can also |
1563 | | * remove the "foo/..". |
1564 | | */ |
1565 | 4.87k | cur = segp; |
1566 | 164k | while ((cur > path) && (cur[-1] != '/')) |
1567 | 159k | --cur; |
1568 | 4.87k | } |
1569 | 616k | out[0] = '\0'; |
1570 | | |
1571 | | /* |
1572 | | * g) If the resulting buffer string still begins with one or more |
1573 | | * complete path segments of "..", then the reference is |
1574 | | * considered to be in error. Implementations may handle this |
1575 | | * error by retaining these components in the resolved path (i.e., |
1576 | | * treating them as part of the final URI), by removing them from |
1577 | | * the resolved path (i.e., discarding relative levels above the |
1578 | | * root), or by avoiding traversal of the reference. |
1579 | | * |
1580 | | * We discard them from the final path. |
1581 | | */ |
1582 | 616k | if (path[0] == '/') { |
1583 | 37.6k | cur = path; |
1584 | 40.2k | while ((cur[0] == '/') && (cur[1] == '.') && (cur[2] == '.') |
1585 | 40.2k | && ((cur[3] == '/') || (cur[3] == '\0'))) |
1586 | 2.62k | cur += 3; |
1587 | | |
1588 | 37.6k | if (cur != path) { |
1589 | 2.60k | out = path; |
1590 | 33.0k | while (cur[0] != '\0') |
1591 | 30.4k | (out++)[0] = (cur++)[0]; |
1592 | 2.60k | out[0] = 0; |
1593 | 2.60k | } |
1594 | 37.6k | } |
1595 | | |
1596 | 616k | return(0); |
1597 | 625k | } |
1598 | | |
1599 | 143M | static int is_hex(char c) { |
1600 | 143M | if (((c >= '0') && (c <= '9')) || |
1601 | 143M | ((c >= 'a') && (c <= 'f')) || |
1602 | 143M | ((c >= 'A') && (c <= 'F'))) |
1603 | 143M | return(1); |
1604 | 19.7k | return(0); |
1605 | 143M | } |
1606 | | |
1607 | | /** |
1608 | | * xmlURIUnescapeString: |
1609 | | * @str: the string to unescape |
1610 | | * @len: the length in bytes to unescape (or <= 0 to indicate full string) |
1611 | | * @target: optional destination buffer |
1612 | | * |
1613 | | * Unescaping routine, but does not check that the string is an URI. The |
1614 | | * output is a direct unsigned char translation of %XX values (no encoding) |
1615 | | * Note that the length of the result can only be smaller or same size as |
1616 | | * the input string. |
1617 | | * |
1618 | | * Returns a copy of the string, but unescaped, will return NULL only in case |
1619 | | * of error |
1620 | | */ |
1621 | | char * |
1622 | 17.2M | xmlURIUnescapeString(const char *str, int len, char *target) { |
1623 | 17.2M | char *ret, *out; |
1624 | 17.2M | const char *in; |
1625 | | |
1626 | 17.2M | if (str == NULL) |
1627 | 0 | return(NULL); |
1628 | 17.2M | if (len <= 0) len = strlen(str); |
1629 | 17.2M | if (len < 0) return(NULL); |
1630 | | |
1631 | 17.2M | if (target == NULL) { |
1632 | 17.2M | ret = (char *) xmlMallocAtomic(len + 1); |
1633 | 17.2M | if (ret == NULL) { |
1634 | 0 | xmlURIErrMemory("unescaping URI value\n"); |
1635 | 0 | return(NULL); |
1636 | 0 | } |
1637 | 17.2M | } else |
1638 | 0 | ret = target; |
1639 | 17.2M | in = str; |
1640 | 17.2M | out = ret; |
1641 | 414M | while(len > 0) { |
1642 | 397M | if ((len > 2) && (*in == '%') && (is_hex(in[1])) && (is_hex(in[2]))) { |
1643 | 71.6M | int c = 0; |
1644 | 71.6M | in++; |
1645 | 71.6M | if ((*in >= '0') && (*in <= '9')) |
1646 | 49.2M | c = (*in - '0'); |
1647 | 22.4M | else if ((*in >= 'a') && (*in <= 'f')) |
1648 | 50.3k | c = (*in - 'a') + 10; |
1649 | 22.3M | else if ((*in >= 'A') && (*in <= 'F')) |
1650 | 22.3M | c = (*in - 'A') + 10; |
1651 | 71.6M | in++; |
1652 | 71.6M | if ((*in >= '0') && (*in <= '9')) |
1653 | 37.2M | c = c * 16 + (*in - '0'); |
1654 | 34.3M | else if ((*in >= 'a') && (*in <= 'f')) |
1655 | 51.5k | c = c * 16 + (*in - 'a') + 10; |
1656 | 34.3M | else if ((*in >= 'A') && (*in <= 'F')) |
1657 | 34.3M | c = c * 16 + (*in - 'A') + 10; |
1658 | 71.6M | in++; |
1659 | 71.6M | len -= 3; |
1660 | | /* Explicit sign change */ |
1661 | 71.6M | *out++ = (char) c; |
1662 | 326M | } else { |
1663 | 326M | *out++ = *in++; |
1664 | 326M | len--; |
1665 | 326M | } |
1666 | 397M | } |
1667 | 17.2M | *out = 0; |
1668 | 17.2M | return(ret); |
1669 | 17.2M | } |
1670 | | |
1671 | | /** |
1672 | | * xmlURIEscapeStr: |
1673 | | * @str: string to escape |
1674 | | * @list: exception list string of chars not to escape |
1675 | | * |
1676 | | * This routine escapes a string to hex, ignoring reserved characters (a-z) |
1677 | | * and the characters in the exception list. |
1678 | | * |
1679 | | * Returns a new escaped string or NULL in case of error. |
1680 | | */ |
1681 | | xmlChar * |
1682 | 291k | xmlURIEscapeStr(const xmlChar *str, const xmlChar *list) { |
1683 | 291k | xmlChar *ret, ch; |
1684 | 291k | xmlChar *temp; |
1685 | 291k | const xmlChar *in; |
1686 | 291k | int len, out; |
1687 | | |
1688 | 291k | if (str == NULL) |
1689 | 0 | return(NULL); |
1690 | 291k | if (str[0] == 0) |
1691 | 2.22k | return(xmlStrdup(str)); |
1692 | 288k | len = xmlStrlen(str); |
1693 | 288k | if (!(len > 0)) return(NULL); |
1694 | | |
1695 | 288k | len += 20; |
1696 | 288k | ret = (xmlChar *) xmlMallocAtomic(len); |
1697 | 288k | if (ret == NULL) { |
1698 | 0 | xmlURIErrMemory("escaping URI value\n"); |
1699 | 0 | return(NULL); |
1700 | 0 | } |
1701 | 288k | in = (const xmlChar *) str; |
1702 | 288k | out = 0; |
1703 | 37.5M | while(*in != 0) { |
1704 | 37.2M | if (len - out <= 3) { |
1705 | 52.8k | temp = xmlSaveUriRealloc(ret, &len); |
1706 | 52.8k | if (temp == NULL) { |
1707 | 0 | xmlURIErrMemory("escaping URI value\n"); |
1708 | 0 | xmlFree(ret); |
1709 | 0 | return(NULL); |
1710 | 0 | } |
1711 | 52.8k | ret = temp; |
1712 | 52.8k | } |
1713 | | |
1714 | 37.2M | ch = *in; |
1715 | | |
1716 | 37.2M | if ((ch != '@') && (!IS_UNRESERVED(ch)) && (!xmlStrchr(list, ch))) { |
1717 | 10.1M | unsigned char val; |
1718 | 10.1M | ret[out++] = '%'; |
1719 | 10.1M | val = ch >> 4; |
1720 | 10.1M | if (val <= 9) |
1721 | 7.36M | ret[out++] = '0' + val; |
1722 | 2.73M | else |
1723 | 2.73M | ret[out++] = 'A' + val - 0xA; |
1724 | 10.1M | val = ch & 0xF; |
1725 | 10.1M | if (val <= 9) |
1726 | 5.93M | ret[out++] = '0' + val; |
1727 | 4.16M | else |
1728 | 4.16M | ret[out++] = 'A' + val - 0xA; |
1729 | 10.1M | in++; |
1730 | 27.1M | } else { |
1731 | 27.1M | ret[out++] = *in++; |
1732 | 27.1M | } |
1733 | | |
1734 | 37.2M | } |
1735 | 288k | ret[out] = 0; |
1736 | 288k | return(ret); |
1737 | 288k | } |
1738 | | |
1739 | | /** |
1740 | | * xmlURIEscape: |
1741 | | * @str: the string of the URI to escape |
1742 | | * |
1743 | | * Escaping routine, does not do validity checks ! |
1744 | | * It will try to escape the chars needing this, but this is heuristic |
1745 | | * based it's impossible to be sure. |
1746 | | * |
1747 | | * Returns an copy of the string, but escaped |
1748 | | * |
1749 | | * 25 May 2001 |
1750 | | * Uses xmlParseURI and xmlURIEscapeStr to try to escape correctly |
1751 | | * according to RFC2396. |
1752 | | * - Carl Douglas |
1753 | | */ |
1754 | | xmlChar * |
1755 | | xmlURIEscape(const xmlChar * str) |
1756 | 268k | { |
1757 | 268k | xmlChar *ret, *segment = NULL; |
1758 | 268k | xmlURIPtr uri; |
1759 | 268k | int ret2; |
1760 | | |
1761 | 268k | if (str == NULL) |
1762 | 7.62k | return (NULL); |
1763 | | |
1764 | 260k | uri = xmlCreateURI(); |
1765 | 260k | if (uri != NULL) { |
1766 | | /* |
1767 | | * Allow escaping errors in the unescaped form |
1768 | | */ |
1769 | 260k | uri->cleanup = 1; |
1770 | 260k | ret2 = xmlParseURIReference(uri, (const char *)str); |
1771 | 260k | if (ret2) { |
1772 | 37.3k | xmlFreeURI(uri); |
1773 | 37.3k | return (NULL); |
1774 | 37.3k | } |
1775 | 260k | } |
1776 | | |
1777 | 223k | if (!uri) |
1778 | 0 | return NULL; |
1779 | | |
1780 | 223k | ret = NULL; |
1781 | | |
1782 | 245k | #define NULLCHK(p) if(!p) { \ |
1783 | 0 | xmlURIErrMemory("escaping URI value\n"); \ |
1784 | 0 | xmlFreeURI(uri); \ |
1785 | 0 | xmlFree(ret); \ |
1786 | 0 | return NULL; } \ |
1787 | 223k | |
1788 | 223k | if (uri->scheme) { |
1789 | 14.4k | segment = xmlURIEscapeStr(BAD_CAST uri->scheme, BAD_CAST "+-."); |
1790 | 14.4k | NULLCHK(segment) |
1791 | 14.4k | ret = xmlStrcat(ret, segment); |
1792 | 14.4k | ret = xmlStrcat(ret, BAD_CAST ":"); |
1793 | 14.4k | xmlFree(segment); |
1794 | 14.4k | } |
1795 | | |
1796 | 223k | if (uri->authority) { |
1797 | 0 | segment = |
1798 | 0 | xmlURIEscapeStr(BAD_CAST uri->authority, BAD_CAST "/?;:@"); |
1799 | 0 | NULLCHK(segment) |
1800 | 0 | ret = xmlStrcat(ret, BAD_CAST "//"); |
1801 | 0 | ret = xmlStrcat(ret, segment); |
1802 | 0 | xmlFree(segment); |
1803 | 0 | } |
1804 | | |
1805 | 223k | if (uri->user) { |
1806 | 2.56k | segment = xmlURIEscapeStr(BAD_CAST uri->user, BAD_CAST ";:&=+$,"); |
1807 | 2.56k | NULLCHK(segment) |
1808 | 2.56k | ret = xmlStrcat(ret,BAD_CAST "//"); |
1809 | 2.56k | ret = xmlStrcat(ret, segment); |
1810 | 2.56k | ret = xmlStrcat(ret, BAD_CAST "@"); |
1811 | 2.56k | xmlFree(segment); |
1812 | 2.56k | } |
1813 | | |
1814 | 223k | if (uri->server) { |
1815 | 4.22k | segment = xmlURIEscapeStr(BAD_CAST uri->server, BAD_CAST "/?;:@"); |
1816 | 4.22k | NULLCHK(segment) |
1817 | 4.22k | if (uri->user == NULL) |
1818 | 2.35k | ret = xmlStrcat(ret, BAD_CAST "//"); |
1819 | 4.22k | ret = xmlStrcat(ret, segment); |
1820 | 4.22k | xmlFree(segment); |
1821 | 4.22k | } |
1822 | | |
1823 | 223k | if (uri->port) { |
1824 | 1.99k | xmlChar port[10]; |
1825 | | |
1826 | 1.99k | snprintf((char *) port, 10, "%d", uri->port); |
1827 | 1.99k | ret = xmlStrcat(ret, BAD_CAST ":"); |
1828 | 1.99k | ret = xmlStrcat(ret, port); |
1829 | 1.99k | } |
1830 | | |
1831 | 223k | if (uri->path) { |
1832 | 126k | segment = |
1833 | 126k | xmlURIEscapeStr(BAD_CAST uri->path, BAD_CAST ":@&=+$,/?;"); |
1834 | 126k | NULLCHK(segment) |
1835 | 126k | ret = xmlStrcat(ret, segment); |
1836 | 126k | xmlFree(segment); |
1837 | 126k | } |
1838 | | |
1839 | 223k | if (uri->query_raw) { |
1840 | 16.5k | ret = xmlStrcat(ret, BAD_CAST "?"); |
1841 | 16.5k | ret = xmlStrcat(ret, BAD_CAST uri->query_raw); |
1842 | 16.5k | } |
1843 | 206k | else if (uri->query) { |
1844 | 0 | segment = |
1845 | 0 | xmlURIEscapeStr(BAD_CAST uri->query, BAD_CAST ";/?:@&=+,$"); |
1846 | 0 | NULLCHK(segment) |
1847 | 0 | ret = xmlStrcat(ret, BAD_CAST "?"); |
1848 | 0 | ret = xmlStrcat(ret, segment); |
1849 | 0 | xmlFree(segment); |
1850 | 0 | } |
1851 | | |
1852 | 223k | if (uri->opaque) { |
1853 | 0 | segment = xmlURIEscapeStr(BAD_CAST uri->opaque, BAD_CAST ""); |
1854 | 0 | NULLCHK(segment) |
1855 | 0 | ret = xmlStrcat(ret, segment); |
1856 | 0 | xmlFree(segment); |
1857 | 0 | } |
1858 | | |
1859 | 223k | if (uri->fragment) { |
1860 | 98.0k | segment = xmlURIEscapeStr(BAD_CAST uri->fragment, BAD_CAST "#"); |
1861 | 98.0k | NULLCHK(segment) |
1862 | 98.0k | ret = xmlStrcat(ret, BAD_CAST "#"); |
1863 | 98.0k | ret = xmlStrcat(ret, segment); |
1864 | 98.0k | xmlFree(segment); |
1865 | 98.0k | } |
1866 | | |
1867 | 223k | xmlFreeURI(uri); |
1868 | 223k | #undef NULLCHK |
1869 | | |
1870 | 223k | return (ret); |
1871 | 223k | } |
1872 | | |
1873 | | /************************************************************************ |
1874 | | * * |
1875 | | * Public functions * |
1876 | | * * |
1877 | | ************************************************************************/ |
1878 | | |
1879 | | /** |
1880 | | * xmlBuildURI: |
1881 | | * @URI: the URI instance found in the document |
1882 | | * @base: the base value |
1883 | | * |
1884 | | * Computes he final URI of the reference done by checking that |
1885 | | * the given URI is valid, and building the final URI using the |
1886 | | * base URI. This is processed according to section 5.2 of the |
1887 | | * RFC 2396 |
1888 | | * |
1889 | | * 5.2. Resolving Relative References to Absolute Form |
1890 | | * |
1891 | | * Returns a new URI string (to be freed by the caller) or NULL in case |
1892 | | * of error. |
1893 | | */ |
1894 | | xmlChar * |
1895 | 5.99M | xmlBuildURI(const xmlChar *URI, const xmlChar *base) { |
1896 | 5.99M | xmlChar *val = NULL; |
1897 | 5.99M | int ret, len, indx, cur, out; |
1898 | 5.99M | xmlURIPtr ref = NULL; |
1899 | 5.99M | xmlURIPtr bas = NULL; |
1900 | 5.99M | xmlURIPtr res = NULL; |
1901 | | |
1902 | | /* |
1903 | | * 1) The URI reference is parsed into the potential four components and |
1904 | | * fragment identifier, as described in Section 4.3. |
1905 | | * |
1906 | | * NOTE that a completely empty URI is treated by modern browsers |
1907 | | * as a reference to "." rather than as a synonym for the current |
1908 | | * URI. Should we do that here? |
1909 | | */ |
1910 | 5.99M | if (URI == NULL) |
1911 | 112k | ret = -1; |
1912 | 5.88M | else { |
1913 | 5.88M | if (*URI) { |
1914 | 5.48M | ref = xmlCreateURI(); |
1915 | 5.48M | if (ref == NULL) |
1916 | 0 | goto done; |
1917 | 5.48M | ret = xmlParseURIReference(ref, (const char *) URI); |
1918 | 5.48M | } |
1919 | 401k | else |
1920 | 401k | ret = 0; |
1921 | 5.88M | } |
1922 | 5.99M | if (ret != 0) |
1923 | 257k | goto done; |
1924 | 5.74M | if ((ref != NULL) && (ref->scheme != NULL)) { |
1925 | | /* |
1926 | | * The URI is absolute don't modify. |
1927 | | */ |
1928 | 30.3k | val = xmlStrdup(URI); |
1929 | 30.3k | goto done; |
1930 | 30.3k | } |
1931 | 5.71M | if (base == NULL) |
1932 | 4.43M | ret = -1; |
1933 | 1.27M | else { |
1934 | 1.27M | bas = xmlCreateURI(); |
1935 | 1.27M | if (bas == NULL) |
1936 | 0 | goto done; |
1937 | 1.27M | ret = xmlParseURIReference(bas, (const char *) base); |
1938 | 1.27M | } |
1939 | 5.71M | if (ret != 0) { |
1940 | 4.47M | if (ref) |
1941 | 4.47M | val = xmlSaveUri(ref); |
1942 | 4.47M | goto done; |
1943 | 4.47M | } |
1944 | 1.23M | if (ref == NULL) { |
1945 | | /* |
1946 | | * the base fragment must be ignored |
1947 | | */ |
1948 | 398k | if (bas->fragment != NULL) { |
1949 | 18.9k | xmlFree(bas->fragment); |
1950 | 18.9k | bas->fragment = NULL; |
1951 | 18.9k | } |
1952 | 398k | val = xmlSaveUri(bas); |
1953 | 398k | goto done; |
1954 | 398k | } |
1955 | | |
1956 | | /* |
1957 | | * 2) If the path component is empty and the scheme, authority, and |
1958 | | * query components are undefined, then it is a reference to the |
1959 | | * current document and we are done. Otherwise, the reference URI's |
1960 | | * query and fragment components are defined as found (or not found) |
1961 | | * within the URI reference and not inherited from the base URI. |
1962 | | * |
1963 | | * NOTE that in modern browsers, the parsing differs from the above |
1964 | | * in the following aspect: the query component is allowed to be |
1965 | | * defined while still treating this as a reference to the current |
1966 | | * document. |
1967 | | */ |
1968 | 838k | res = xmlCreateURI(); |
1969 | 838k | if (res == NULL) |
1970 | 0 | goto done; |
1971 | 838k | if ((ref->scheme == NULL) && (ref->path == NULL) && |
1972 | 838k | ((ref->authority == NULL) && (ref->server == NULL))) { |
1973 | 210k | if (bas->scheme != NULL) |
1974 | 35.4k | res->scheme = xmlMemStrdup(bas->scheme); |
1975 | 210k | if (bas->authority != NULL) |
1976 | 0 | res->authority = xmlMemStrdup(bas->authority); |
1977 | 210k | else if ((bas->server != NULL) || (bas->port == -1)) { |
1978 | 7.95k | if (bas->server != NULL) |
1979 | 6.08k | res->server = xmlMemStrdup(bas->server); |
1980 | 7.95k | if (bas->user != NULL) |
1981 | 4.01k | res->user = xmlMemStrdup(bas->user); |
1982 | 7.95k | res->port = bas->port; |
1983 | 7.95k | } |
1984 | 210k | if (bas->path != NULL) |
1985 | 190k | res->path = xmlMemStrdup(bas->path); |
1986 | 210k | if (ref->query_raw != NULL) |
1987 | 2.69k | res->query_raw = xmlMemStrdup (ref->query_raw); |
1988 | 207k | else if (ref->query != NULL) |
1989 | 0 | res->query = xmlMemStrdup(ref->query); |
1990 | 207k | else if (bas->query_raw != NULL) |
1991 | 19.8k | res->query_raw = xmlMemStrdup(bas->query_raw); |
1992 | 187k | else if (bas->query != NULL) |
1993 | 0 | res->query = xmlMemStrdup(bas->query); |
1994 | 210k | if (ref->fragment != NULL) |
1995 | 208k | res->fragment = xmlMemStrdup(ref->fragment); |
1996 | 210k | goto step_7; |
1997 | 210k | } |
1998 | | |
1999 | | /* |
2000 | | * 3) If the scheme component is defined, indicating that the reference |
2001 | | * starts with a scheme name, then the reference is interpreted as an |
2002 | | * absolute URI and we are done. Otherwise, the reference URI's |
2003 | | * scheme is inherited from the base URI's scheme component. |
2004 | | */ |
2005 | 628k | if (ref->scheme != NULL) { |
2006 | 0 | val = xmlSaveUri(ref); |
2007 | 0 | goto done; |
2008 | 0 | } |
2009 | 628k | if (bas->scheme != NULL) |
2010 | 61.4k | res->scheme = xmlMemStrdup(bas->scheme); |
2011 | | |
2012 | 628k | if (ref->query_raw != NULL) |
2013 | 1.88k | res->query_raw = xmlMemStrdup(ref->query_raw); |
2014 | 626k | else if (ref->query != NULL) |
2015 | 0 | res->query = xmlMemStrdup(ref->query); |
2016 | 628k | if (ref->fragment != NULL) |
2017 | 52.7k | res->fragment = xmlMemStrdup(ref->fragment); |
2018 | | |
2019 | | /* |
2020 | | * 4) If the authority component is defined, then the reference is a |
2021 | | * network-path and we skip to step 7. Otherwise, the reference |
2022 | | * URI's authority is inherited from the base URI's authority |
2023 | | * component, which will also be undefined if the URI scheme does not |
2024 | | * use an authority component. |
2025 | | */ |
2026 | 628k | if ((ref->authority != NULL) || (ref->server != NULL)) { |
2027 | 987 | if (ref->authority != NULL) |
2028 | 0 | res->authority = xmlMemStrdup(ref->authority); |
2029 | 987 | else { |
2030 | 987 | res->server = xmlMemStrdup(ref->server); |
2031 | 987 | if (ref->user != NULL) |
2032 | 407 | res->user = xmlMemStrdup(ref->user); |
2033 | 987 | res->port = ref->port; |
2034 | 987 | } |
2035 | 987 | if (ref->path != NULL) |
2036 | 386 | res->path = xmlMemStrdup(ref->path); |
2037 | 987 | goto step_7; |
2038 | 987 | } |
2039 | 627k | if (bas->authority != NULL) |
2040 | 0 | res->authority = xmlMemStrdup(bas->authority); |
2041 | 627k | else if ((bas->server != NULL) || (bas->port == -1)) { |
2042 | 24.5k | if (bas->server != NULL) |
2043 | 18.8k | res->server = xmlMemStrdup(bas->server); |
2044 | 24.5k | if (bas->user != NULL) |
2045 | 7.69k | res->user = xmlMemStrdup(bas->user); |
2046 | 24.5k | res->port = bas->port; |
2047 | 24.5k | } |
2048 | | |
2049 | | /* |
2050 | | * 5) If the path component begins with a slash character ("/"), then |
2051 | | * the reference is an absolute-path and we skip to step 7. |
2052 | | */ |
2053 | 627k | if ((ref->path != NULL) && (ref->path[0] == '/')) { |
2054 | 1.27k | res->path = xmlMemStrdup(ref->path); |
2055 | 1.27k | goto step_7; |
2056 | 1.27k | } |
2057 | | |
2058 | | |
2059 | | /* |
2060 | | * 6) If this step is reached, then we are resolving a relative-path |
2061 | | * reference. The relative path needs to be merged with the base |
2062 | | * URI's path. Although there are many ways to do this, we will |
2063 | | * describe a simple method using a separate string buffer. |
2064 | | * |
2065 | | * Allocate a buffer large enough for the result string. |
2066 | | */ |
2067 | 625k | len = 2; /* extra / and 0 */ |
2068 | 625k | if (ref->path != NULL) |
2069 | 625k | len += strlen(ref->path); |
2070 | 625k | if (bas->path != NULL) |
2071 | 564k | len += strlen(bas->path); |
2072 | 625k | res->path = (char *) xmlMallocAtomic(len); |
2073 | 625k | if (res->path == NULL) { |
2074 | 0 | xmlURIErrMemory("resolving URI against base\n"); |
2075 | 0 | goto done; |
2076 | 0 | } |
2077 | 625k | res->path[0] = 0; |
2078 | | |
2079 | | /* |
2080 | | * a) All but the last segment of the base URI's path component is |
2081 | | * copied to the buffer. In other words, any characters after the |
2082 | | * last (right-most) slash character, if any, are excluded. |
2083 | | */ |
2084 | 625k | cur = 0; |
2085 | 625k | out = 0; |
2086 | 625k | if (bas->path != NULL) { |
2087 | 1.79M | while (bas->path[cur] != 0) { |
2088 | 21.8M | while ((bas->path[cur] != 0) && (bas->path[cur] != '/')) |
2089 | 20.0M | cur++; |
2090 | 1.77M | if (bas->path[cur] == 0) |
2091 | 551k | break; |
2092 | | |
2093 | 1.22M | cur++; |
2094 | 13.0M | while (out < cur) { |
2095 | 11.8M | res->path[out] = bas->path[out]; |
2096 | 11.8M | out++; |
2097 | 11.8M | } |
2098 | 1.22M | } |
2099 | 564k | } |
2100 | 625k | res->path[out] = 0; |
2101 | | |
2102 | | /* |
2103 | | * b) The reference's path component is appended to the buffer |
2104 | | * string. |
2105 | | */ |
2106 | 625k | if (ref->path != NULL && ref->path[0] != 0) { |
2107 | 625k | indx = 0; |
2108 | | /* |
2109 | | * Ensure the path includes a '/' |
2110 | | */ |
2111 | 625k | if ((out == 0) && (bas->server != NULL)) |
2112 | 15.6k | res->path[out++] = '/'; |
2113 | 8.06M | while (ref->path[indx] != 0) { |
2114 | 7.44M | res->path[out++] = ref->path[indx++]; |
2115 | 7.44M | } |
2116 | 625k | } |
2117 | 625k | res->path[out] = 0; |
2118 | | |
2119 | | /* |
2120 | | * Steps c) to h) are really path normalization steps |
2121 | | */ |
2122 | 625k | xmlNormalizeURIPath(res->path); |
2123 | | |
2124 | 838k | step_7: |
2125 | | |
2126 | | /* |
2127 | | * 7) The resulting URI components, including any inherited from the |
2128 | | * base URI, are recombined to give the absolute form of the URI |
2129 | | * reference. |
2130 | | */ |
2131 | 838k | val = xmlSaveUri(res); |
2132 | | |
2133 | 5.99M | done: |
2134 | 5.99M | if (ref != NULL) |
2135 | 5.48M | xmlFreeURI(ref); |
2136 | 5.99M | if (bas != NULL) |
2137 | 1.27M | xmlFreeURI(bas); |
2138 | 5.99M | if (res != NULL) |
2139 | 838k | xmlFreeURI(res); |
2140 | 5.99M | return(val); |
2141 | 838k | } |
2142 | | |
2143 | | /** |
2144 | | * xmlBuildRelativeURI: |
2145 | | * @URI: the URI reference under consideration |
2146 | | * @base: the base value |
2147 | | * |
2148 | | * Expresses the URI of the reference in terms relative to the |
2149 | | * base. Some examples of this operation include: |
2150 | | * base = "http://site1.com/docs/book1.html" |
2151 | | * URI input URI returned |
2152 | | * docs/pic1.gif pic1.gif |
2153 | | * docs/img/pic1.gif img/pic1.gif |
2154 | | * img/pic1.gif ../img/pic1.gif |
2155 | | * http://site1.com/docs/pic1.gif pic1.gif |
2156 | | * http://site2.com/docs/pic1.gif http://site2.com/docs/pic1.gif |
2157 | | * |
2158 | | * base = "docs/book1.html" |
2159 | | * URI input URI returned |
2160 | | * docs/pic1.gif pic1.gif |
2161 | | * docs/img/pic1.gif img/pic1.gif |
2162 | | * img/pic1.gif ../img/pic1.gif |
2163 | | * http://site1.com/docs/pic1.gif http://site1.com/docs/pic1.gif |
2164 | | * |
2165 | | * |
2166 | | * Note: if the URI reference is really weird or complicated, it may be |
2167 | | * worthwhile to first convert it into a "nice" one by calling |
2168 | | * xmlBuildURI (using 'base') before calling this routine, |
2169 | | * since this routine (for reasonable efficiency) assumes URI has |
2170 | | * already been through some validation. |
2171 | | * |
2172 | | * Returns a new URI string (to be freed by the caller) or NULL in case |
2173 | | * error. |
2174 | | */ |
2175 | | xmlChar * |
2176 | | xmlBuildRelativeURI (const xmlChar * URI, const xmlChar * base) |
2177 | 1.37k | { |
2178 | 1.37k | xmlChar *val = NULL; |
2179 | 1.37k | int ret; |
2180 | 1.37k | int ix; |
2181 | 1.37k | int nbslash = 0; |
2182 | 1.37k | int len; |
2183 | 1.37k | xmlURIPtr ref = NULL; |
2184 | 1.37k | xmlURIPtr bas = NULL; |
2185 | 1.37k | xmlChar *bptr, *uptr, *vptr; |
2186 | 1.37k | int remove_path = 0; |
2187 | | |
2188 | 1.37k | if ((URI == NULL) || (*URI == 0)) |
2189 | 0 | return NULL; |
2190 | | |
2191 | | /* |
2192 | | * First parse URI into a standard form |
2193 | | */ |
2194 | 1.37k | ref = xmlCreateURI (); |
2195 | 1.37k | if (ref == NULL) |
2196 | 0 | return NULL; |
2197 | | /* If URI not already in "relative" form */ |
2198 | 1.37k | if (URI[0] != '.') { |
2199 | 0 | ret = xmlParseURIReference (ref, (const char *) URI); |
2200 | 0 | if (ret != 0) |
2201 | 0 | goto done; /* Error in URI, return NULL */ |
2202 | 0 | } else |
2203 | 1.37k | ref->path = (char *)xmlStrdup(URI); |
2204 | | |
2205 | | /* |
2206 | | * Next parse base into the same standard form |
2207 | | */ |
2208 | 1.37k | if ((base == NULL) || (*base == 0)) { |
2209 | 736 | val = xmlStrdup (URI); |
2210 | 736 | goto done; |
2211 | 736 | } |
2212 | 637 | bas = xmlCreateURI (); |
2213 | 637 | if (bas == NULL) |
2214 | 0 | goto done; |
2215 | 637 | if (base[0] != '.') { |
2216 | 616 | ret = xmlParseURIReference (bas, (const char *) base); |
2217 | 616 | if (ret != 0) |
2218 | 0 | goto done; /* Error in base, return NULL */ |
2219 | 616 | } else |
2220 | 21 | bas->path = (char *)xmlStrdup(base); |
2221 | | |
2222 | | /* |
2223 | | * If the scheme / server on the URI differs from the base, |
2224 | | * just return the URI |
2225 | | */ |
2226 | 637 | if ((ref->scheme != NULL) && |
2227 | 637 | ((bas->scheme == NULL) || |
2228 | 0 | (xmlStrcmp ((xmlChar *)bas->scheme, (xmlChar *)ref->scheme)) || |
2229 | 0 | (xmlStrcmp ((xmlChar *)bas->server, (xmlChar *)ref->server)))) { |
2230 | 0 | val = xmlStrdup (URI); |
2231 | 0 | goto done; |
2232 | 0 | } |
2233 | 637 | if (xmlStrEqual((xmlChar *)bas->path, (xmlChar *)ref->path)) { |
2234 | 0 | val = xmlStrdup(BAD_CAST ""); |
2235 | 0 | goto done; |
2236 | 0 | } |
2237 | 637 | if (bas->path == NULL) { |
2238 | 0 | val = xmlStrdup((xmlChar *)ref->path); |
2239 | 0 | goto done; |
2240 | 0 | } |
2241 | 637 | if (ref->path == NULL) { |
2242 | 0 | ref->path = (char *) "/"; |
2243 | 0 | remove_path = 1; |
2244 | 0 | } |
2245 | | |
2246 | | /* |
2247 | | * At this point (at last!) we can compare the two paths |
2248 | | * |
2249 | | * First we take care of the special case where either of the |
2250 | | * two path components may be missing (bug 316224) |
2251 | | */ |
2252 | 637 | bptr = (xmlChar *)bas->path; |
2253 | 637 | { |
2254 | 637 | xmlChar *rptr = (xmlChar *) ref->path; |
2255 | 637 | int pos = 0; |
2256 | | |
2257 | | /* |
2258 | | * Next we compare the two strings and find where they first differ |
2259 | | */ |
2260 | 637 | if ((*rptr == '.') && (rptr[1] == '/')) |
2261 | 0 | rptr += 2; |
2262 | 637 | if ((*bptr == '.') && (bptr[1] == '/')) |
2263 | 0 | bptr += 2; |
2264 | 637 | else if ((*bptr == '/') && (*rptr != '/')) |
2265 | 0 | bptr++; |
2266 | 663 | while ((bptr[pos] == rptr[pos]) && (bptr[pos] != 0)) |
2267 | 26 | pos++; |
2268 | | |
2269 | 637 | if (bptr[pos] == rptr[pos]) { |
2270 | 0 | val = xmlStrdup(BAD_CAST ""); |
2271 | 0 | goto done; /* (I can't imagine why anyone would do this) */ |
2272 | 0 | } |
2273 | | |
2274 | | /* |
2275 | | * In URI, "back up" to the last '/' encountered. This will be the |
2276 | | * beginning of the "unique" suffix of URI |
2277 | | */ |
2278 | 637 | ix = pos; |
2279 | 663 | for (; ix > 0; ix--) { |
2280 | 26 | if (rptr[ix - 1] == '/') |
2281 | 0 | break; |
2282 | 26 | } |
2283 | 637 | uptr = (xmlChar *)&rptr[ix]; |
2284 | | |
2285 | | /* |
2286 | | * In base, count the number of '/' from the differing point |
2287 | | */ |
2288 | 48.5k | for (; bptr[ix] != 0; ix++) { |
2289 | 47.9k | if (bptr[ix] == '/') |
2290 | 98 | nbslash++; |
2291 | 47.9k | } |
2292 | | |
2293 | | /* |
2294 | | * e.g: URI="foo/" base="foo/bar" -> "./" |
2295 | | */ |
2296 | 637 | if (nbslash == 0 && !uptr[0]) { |
2297 | 0 | val = xmlStrdup(BAD_CAST "./"); |
2298 | 0 | goto done; |
2299 | 0 | } |
2300 | | |
2301 | 637 | len = xmlStrlen (uptr) + 1; |
2302 | 637 | } |
2303 | | |
2304 | 637 | if (nbslash == 0) { |
2305 | 630 | if (uptr != NULL) |
2306 | | /* exception characters from xmlSaveUri */ |
2307 | 630 | val = xmlURIEscapeStr(uptr, BAD_CAST "/;&=+$,"); |
2308 | 630 | goto done; |
2309 | 630 | } |
2310 | | |
2311 | | /* |
2312 | | * Allocate just enough space for the returned string - |
2313 | | * length of the remainder of the URI, plus enough space |
2314 | | * for the "../" groups, plus one for the terminator |
2315 | | */ |
2316 | 7 | val = (xmlChar *) xmlMalloc (len + 3 * nbslash); |
2317 | 7 | if (val == NULL) { |
2318 | 0 | xmlURIErrMemory("building relative URI\n"); |
2319 | 0 | goto done; |
2320 | 0 | } |
2321 | 7 | vptr = val; |
2322 | | /* |
2323 | | * Put in as many "../" as needed |
2324 | | */ |
2325 | 105 | for (; nbslash>0; nbslash--) { |
2326 | 98 | *vptr++ = '.'; |
2327 | 98 | *vptr++ = '.'; |
2328 | 98 | *vptr++ = '/'; |
2329 | 98 | } |
2330 | | /* |
2331 | | * Finish up with the end of the URI |
2332 | | */ |
2333 | 7 | if (uptr != NULL) { |
2334 | 7 | if ((vptr > val) && (len > 0) && |
2335 | 7 | (uptr[0] == '/') && (vptr[-1] == '/')) { |
2336 | 0 | memcpy (vptr, uptr + 1, len - 1); |
2337 | 0 | vptr[len - 2] = 0; |
2338 | 7 | } else { |
2339 | 7 | memcpy (vptr, uptr, len); |
2340 | 7 | vptr[len - 1] = 0; |
2341 | 7 | } |
2342 | 7 | } else { |
2343 | 0 | vptr[len - 1] = 0; |
2344 | 0 | } |
2345 | | |
2346 | | /* escape the freshly-built path */ |
2347 | 7 | vptr = val; |
2348 | | /* exception characters from xmlSaveUri */ |
2349 | 7 | val = xmlURIEscapeStr(vptr, BAD_CAST "/;&=+$,"); |
2350 | 7 | xmlFree(vptr); |
2351 | | |
2352 | 1.37k | done: |
2353 | | /* |
2354 | | * Free the working variables |
2355 | | */ |
2356 | 1.37k | if (remove_path != 0) |
2357 | 0 | ref->path = NULL; |
2358 | 1.37k | if (ref != NULL) |
2359 | 1.37k | xmlFreeURI (ref); |
2360 | 1.37k | if (bas != NULL) |
2361 | 637 | xmlFreeURI (bas); |
2362 | | |
2363 | 1.37k | return val; |
2364 | 7 | } |
2365 | | |
2366 | | /** |
2367 | | * xmlCanonicPath: |
2368 | | * @path: the resource locator in a filesystem notation |
2369 | | * |
2370 | | * Constructs a canonic path from the specified path. |
2371 | | * |
2372 | | * Returns a new canonic path, or a duplicate of the path parameter if the |
2373 | | * construction fails. The caller is responsible for freeing the memory occupied |
2374 | | * by the returned string. If there is insufficient memory available, or the |
2375 | | * argument is NULL, the function returns NULL. |
2376 | | */ |
2377 | | #define IS_WINDOWS_PATH(p) \ |
2378 | | ((p != NULL) && \ |
2379 | | (((p[0] >= 'a') && (p[0] <= 'z')) || \ |
2380 | | ((p[0] >= 'A') && (p[0] <= 'Z'))) && \ |
2381 | | (p[1] == ':') && ((p[2] == '/') || (p[2] == '\\'))) |
2382 | | xmlChar * |
2383 | | xmlCanonicPath(const xmlChar *path) |
2384 | 5.62M | { |
2385 | | /* |
2386 | | * For Windows implementations, additional work needs to be done to |
2387 | | * replace backslashes in pathnames with "forward slashes" |
2388 | | */ |
2389 | | #if defined(_WIN32) |
2390 | | int len = 0; |
2391 | | char *p = NULL; |
2392 | | #endif |
2393 | 5.62M | xmlURIPtr uri; |
2394 | 5.62M | xmlChar *ret; |
2395 | 5.62M | const xmlChar *absuri; |
2396 | | |
2397 | 5.62M | if (path == NULL) |
2398 | 0 | return(NULL); |
2399 | | |
2400 | | #if defined(_WIN32) |
2401 | | /* |
2402 | | * We must not change the backslashes to slashes if the the path |
2403 | | * starts with \\?\ |
2404 | | * Those paths can be up to 32k characters long. |
2405 | | * Was added specifically for OpenOffice, those paths can't be converted |
2406 | | * to URIs anyway. |
2407 | | */ |
2408 | | if ((path[0] == '\\') && (path[1] == '\\') && (path[2] == '?') && |
2409 | | (path[3] == '\\') ) |
2410 | | return xmlStrdup((const xmlChar *) path); |
2411 | | #endif |
2412 | | |
2413 | | /* sanitize filename starting with // so it can be used as URI */ |
2414 | 5.62M | if ((path[0] == '/') && (path[1] == '/') && (path[2] != '/')) |
2415 | 5.24k | path++; |
2416 | | |
2417 | 5.62M | if ((uri = xmlParseURI((const char *) path)) != NULL) { |
2418 | 5.22M | xmlFreeURI(uri); |
2419 | 5.22M | return xmlStrdup(path); |
2420 | 5.22M | } |
2421 | | |
2422 | | /* Check if this is an "absolute uri" */ |
2423 | 402k | absuri = xmlStrstr(path, BAD_CAST "://"); |
2424 | 402k | if (absuri != NULL) { |
2425 | 55.4k | int l, j; |
2426 | 55.4k | unsigned char c; |
2427 | 55.4k | xmlChar *escURI; |
2428 | | |
2429 | | /* |
2430 | | * this looks like an URI where some parts have not been |
2431 | | * escaped leading to a parsing problem. Check that the first |
2432 | | * part matches a protocol. |
2433 | | */ |
2434 | 55.4k | l = absuri - path; |
2435 | | /* Bypass if first part (part before the '://') is > 20 chars */ |
2436 | 55.4k | if ((l <= 0) || (l > 20)) |
2437 | 7.49k | goto path_processing; |
2438 | | /* Bypass if any non-alpha characters are present in first part */ |
2439 | 200k | for (j = 0;j < l;j++) { |
2440 | 156k | c = path[j]; |
2441 | 156k | if (!(((c >= 'a') && (c <= 'z')) || ((c >= 'A') && (c <= 'Z')))) |
2442 | 3.51k | goto path_processing; |
2443 | 156k | } |
2444 | | |
2445 | | /* Escape all except the characters specified in the supplied path */ |
2446 | 44.4k | escURI = xmlURIEscapeStr(path, BAD_CAST ":/?_.#&;="); |
2447 | 44.4k | if (escURI != NULL) { |
2448 | | /* Try parsing the escaped path */ |
2449 | 44.4k | uri = xmlParseURI((const char *) escURI); |
2450 | | /* If successful, return the escaped string */ |
2451 | 44.4k | if (uri != NULL) { |
2452 | 36.2k | xmlFreeURI(uri); |
2453 | 36.2k | return escURI; |
2454 | 36.2k | } |
2455 | 8.17k | xmlFree(escURI); |
2456 | 8.17k | } |
2457 | 44.4k | } |
2458 | | |
2459 | 365k | path_processing: |
2460 | | /* For Windows implementations, replace backslashes with 'forward slashes' */ |
2461 | | #if defined(_WIN32) |
2462 | | /* |
2463 | | * Create a URI structure |
2464 | | */ |
2465 | | uri = xmlCreateURI(); |
2466 | | if (uri == NULL) { /* Guard against 'out of memory' */ |
2467 | | return(NULL); |
2468 | | } |
2469 | | |
2470 | | len = xmlStrlen(path); |
2471 | | if ((len > 2) && IS_WINDOWS_PATH(path)) { |
2472 | | /* make the scheme 'file' */ |
2473 | | uri->scheme = (char *) xmlStrdup(BAD_CAST "file"); |
2474 | | /* allocate space for leading '/' + path + string terminator */ |
2475 | | uri->path = xmlMallocAtomic(len + 2); |
2476 | | if (uri->path == NULL) { |
2477 | | xmlFreeURI(uri); /* Guard against 'out of memory' */ |
2478 | | return(NULL); |
2479 | | } |
2480 | | /* Put in leading '/' plus path */ |
2481 | | uri->path[0] = '/'; |
2482 | | p = uri->path + 1; |
2483 | | strncpy(p, (char *) path, len + 1); |
2484 | | } else { |
2485 | | uri->path = (char *) xmlStrdup(path); |
2486 | | if (uri->path == NULL) { |
2487 | | xmlFreeURI(uri); |
2488 | | return(NULL); |
2489 | | } |
2490 | | p = uri->path; |
2491 | | } |
2492 | | /* Now change all occurrences of '\' to '/' */ |
2493 | | while (*p != '\0') { |
2494 | | if (*p == '\\') |
2495 | | *p = '/'; |
2496 | | p++; |
2497 | | } |
2498 | | |
2499 | | if (uri->scheme == NULL) { |
2500 | | ret = xmlStrdup((const xmlChar *) uri->path); |
2501 | | } else { |
2502 | | ret = xmlSaveUri(uri); |
2503 | | } |
2504 | | |
2505 | | xmlFreeURI(uri); |
2506 | | #else |
2507 | 365k | ret = xmlStrdup((const xmlChar *) path); |
2508 | 365k | #endif |
2509 | 365k | return(ret); |
2510 | 402k | } |
2511 | | |
2512 | | /** |
2513 | | * xmlPathToURI: |
2514 | | * @path: the resource locator in a filesystem notation |
2515 | | * |
2516 | | * Constructs an URI expressing the existing path |
2517 | | * |
2518 | | * Returns a new URI, or a duplicate of the path parameter if the |
2519 | | * construction fails. The caller is responsible for freeing the memory |
2520 | | * occupied by the returned string. If there is insufficient memory available, |
2521 | | * or the argument is NULL, the function returns NULL. |
2522 | | */ |
2523 | | xmlChar * |
2524 | | xmlPathToURI(const xmlChar *path) |
2525 | 751k | { |
2526 | 751k | xmlURIPtr uri; |
2527 | 751k | xmlURI temp; |
2528 | 751k | xmlChar *ret, *cal; |
2529 | | |
2530 | 751k | if (path == NULL) |
2531 | 0 | return(NULL); |
2532 | | |
2533 | 751k | if ((uri = xmlParseURI((const char *) path)) != NULL) { |
2534 | 497k | xmlFreeURI(uri); |
2535 | 497k | return xmlStrdup(path); |
2536 | 497k | } |
2537 | 253k | cal = xmlCanonicPath(path); |
2538 | 253k | if (cal == NULL) |
2539 | 0 | return(NULL); |
2540 | | #if defined(_WIN32) |
2541 | | /* xmlCanonicPath can return an URI on Windows (is that the intended behaviour?) |
2542 | | If 'cal' is a valid URI already then we are done here, as continuing would make |
2543 | | it invalid. */ |
2544 | | if ((uri = xmlParseURI((const char *) cal)) != NULL) { |
2545 | | xmlFreeURI(uri); |
2546 | | return cal; |
2547 | | } |
2548 | | /* 'cal' can contain a relative path with backslashes. If that is processed |
2549 | | by xmlSaveURI, they will be escaped and the external entity loader machinery |
2550 | | will fail. So convert them to slashes. Misuse 'ret' for walking. */ |
2551 | | ret = cal; |
2552 | | while (*ret != '\0') { |
2553 | | if (*ret == '\\') |
2554 | | *ret = '/'; |
2555 | | ret++; |
2556 | | } |
2557 | | #endif |
2558 | 253k | memset(&temp, 0, sizeof(temp)); |
2559 | 253k | temp.path = (char *) cal; |
2560 | 253k | ret = xmlSaveUri(&temp); |
2561 | 253k | xmlFree(cal); |
2562 | 253k | return(ret); |
2563 | 253k | } |