Coverage Report

Created: 2026-06-10 06:22

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libxml2/uri.c
Line
Count
Source
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
 * Author: Daniel Veillard
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/xmlerror.h>
20
21
#include "private/error.h"
22
#include "private/memory.h"
23
24
/**
25
 * The definition of the URI regexp in the above RFC has no size limit
26
 * In practice they are usually relatively short except for the
27
 * data URI scheme as defined in RFC 2397. Even for data URI the usual
28
 * maximum size before hitting random practical limits is around 64 KB
29
 * and 4KB is usually a maximum admitted limit for proper operations.
30
 * The value below is more a security limit than anything else and
31
 * really should never be hit by 'normal' operations
32
 * Set to 1 MByte in 2012, this is only enforced on output
33
 */
34
19.2k
#define MAX_URI_LENGTH 1024 * 1024
35
36
274k
#define PORT_EMPTY           0
37
4.62k
#define PORT_EMPTY_SERVER   -1
38
39
static void xmlCleanURI(xmlURIPtr uri);
40
41
/*
42
 * Old rule from 2396 used in legacy handling code
43
 * alpha    = lowalpha | upalpha
44
 */
45
51.5M
#define IS_ALPHA(x) (IS_LOWALPHA(x) || IS_UPALPHA(x))
46
47
48
/*
49
 * lowalpha = "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" |
50
 *            "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" |
51
 *            "u" | "v" | "w" | "x" | "y" | "z"
52
 */
53
51.5M
#define IS_LOWALPHA(x) (((x) >= 'a') && ((x) <= 'z'))
54
55
/*
56
 * upalpha = "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" |
57
 *           "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" |
58
 *           "U" | "V" | "W" | "X" | "Y" | "Z"
59
 */
60
25.5M
#define IS_UPALPHA(x) (((x) >= 'A') && ((x) <= 'Z'))
61
62
#ifdef IS_DIGIT
63
#undef IS_DIGIT
64
#endif
65
/*
66
 * digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"
67
 */
68
15.2M
#define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9'))
69
70
/*
71
 * alphanum = alpha | digit
72
 */
73
51.5M
#define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x))
74
75
/*
76
 * mark = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")"
77
 */
78
79
14.1M
#define IS_MARK(x) (((x) == '-') || ((x) == '_') || ((x) == '.') ||     \
80
14.1M
    ((x) == '!') || ((x) == '~') || ((x) == '*') || ((x) == '\'') ||    \
81
14.1M
    ((x) == '(') || ((x) == ')'))
82
83
/*
84
 * unwise = "{" | "}" | "|" | "\" | "^" | "`"
85
 */
86
#define IS_UNWISE(p)                                                    \
87
0
      (((*(p) == '{')) || ((*(p) == '}')) || ((*(p) == '|')) ||         \
88
0
       ((*(p) == '\\')) || ((*(p) == '^')) || ((*(p) == '[')) ||        \
89
0
       ((*(p) == ']')) || ((*(p) == '`')))
90
91
/*
92
 * reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | "," |
93
 *            "[" | "]"
94
 */
95
248k
#define IS_RESERVED(x) (((x) == ';') || ((x) == '/') || ((x) == '?') || \
96
248k
        ((x) == ':') || ((x) == '@') || ((x) == '&') || ((x) == '=') || \
97
248k
        ((x) == '+') || ((x) == '$') || ((x) == ',') || ((x) == '[') || \
98
248k
        ((x) == ']'))
99
100
/*
101
 * unreserved = alphanum | mark
102
 */
103
25.7M
#define IS_UNRESERVED(x) (IS_ALPHANUM(x) || IS_MARK(x))
104
105
/*
106
 * Skip to next pointer char, handle escaped sequences
107
 */
108
3.90M
#define NEXT(p) ((*p == '%')? p += 3 : p++)
109
110
/*
111
 * Productions from the spec.
112
 *
113
 *    authority     = server | reg_name
114
 *    reg_name      = 1*( unreserved | escaped | "$" | "," |
115
 *                        ";" | ":" | "@" | "&" | "=" | "+" )
116
 *
117
 * path          = [ abs_path | opaque_part ]
118
 */
119
144k
#define STRNDUP(s, n) (char *) xmlStrndup((const xmlChar *)(s), (n))
120
121
/************************************************************************
122
 *                  *
123
 *                         RFC 3986 parser        *
124
 *                  *
125
 ************************************************************************/
126
127
6.52M
#define ISA_DIGIT(p) ((*(p) >= '0') && (*(p) <= '9'))
128
5.50M
#define ISA_ALPHA(p) (((*(p) >= 'a') && (*(p) <= 'z')) ||   \
129
5.50M
                      ((*(p) >= 'A') && (*(p) <= 'Z')))
130
#define ISA_HEXDIG(p)             \
131
1.33M
       (ISA_DIGIT(p) || ((*(p) >= 'a') && (*(p) <= 'f')) ||   \
132
1.33M
        ((*(p) >= 'A') && (*(p) <= 'F')))
133
134
/*
135
 *    sub-delims    = "!" / "$" / "&" / "'" / "(" / ")"
136
 *                     / "*" / "+" / "," / ";" / "="
137
 */
138
#define ISA_SUB_DELIM(p)            \
139
5.05M
      (((*(p) == '!')) || ((*(p) == '$')) || ((*(p) == '&')) ||   \
140
1.27M
       ((*(p) == '(')) || ((*(p) == ')')) || ((*(p) == '*')) ||   \
141
1.27M
       ((*(p) == '+')) || ((*(p) == ',')) || ((*(p) == ';')) ||   \
142
1.27M
       ((*(p) == '=')) || ((*(p) == '\'')))
143
144
/*
145
 *    gen-delims    = ":" / "/" / "?" / "\#" / "[" / "]" / "@"
146
 */
147
#define ISA_GEN_DELIM(p)            \
148
      (((*(p) == ':')) || ((*(p) == '/')) || ((*(p) == '?')) ||         \
149
       ((*(p) == '#')) || ((*(p) == '[')) || ((*(p) == ']')) ||         \
150
       ((*(p) == '@')))
151
152
/*
153
 *    reserved      = gen-delims / sub-delims
154
 */
155
#define ISA_RESERVED(p) (ISA_GEN_DELIM(p) || (ISA_SUB_DELIM(p)))
156
157
/*
158
 *    unreserved    = ALPHA / DIGIT / "-" / "." / "_" / "~"
159
 */
160
#define ISA_STRICTLY_UNRESERVED(p)          \
161
4.14M
      ((ISA_ALPHA(p)) || (ISA_DIGIT(p)) || ((*(p) == '-')) ||   \
162
4.14M
       ((*(p) == '.')) || ((*(p) == '_')) || ((*(p) == '~')))
163
164
/*
165
 *    pct-encoded   = "%" HEXDIG HEXDIG
166
 */
167
#define ISA_PCT_ENCODED(p)            \
168
6.08M
     ((*(p) == '%') && (ISA_HEXDIG(p + 1)) && (ISA_HEXDIG(p + 2)))
169
170
/*
171
 *    pchar         = unreserved / pct-encoded / sub-delims / ":" / "@"
172
 */
173
#define ISA_PCHAR(u, p)             \
174
4.87M
     (ISA_UNRESERVED(u, p) || ISA_PCT_ENCODED(p) || ISA_SUB_DELIM(p) ||  \
175
3.02M
      ((*(p) == ':')) || ((*(p) == '@')))
176
177
/*
178
 * From https://www.w3.org/TR/leiri/
179
 *
180
 * " " / "<" / ">" / '"' / "{" / "}" / "|"
181
 * / "\" / "^" / "`" / %x0-1F / %x7F-D7FF
182
 * / %xE000-FFFD / %x10000-10FFFF
183
 */
184
#define ISA_UCSCHAR(p) \
185
0
    ((*(p) <= 0x20) || (*(p) >= 0x7F) || (*(p) == '<') || (*(p) == '>') || \
186
0
     (*(p) == '"')  || (*(p) == '{')  || (*(p) == '}') || (*(p) == '|') || \
187
0
     (*(p) == '\\') || (*(p) == '^')  || (*(p) == '`'))
188
189
8.29M
#define ISA_UNRESERVED(u, p) (xmlIsUnreserved(u, p))
190
191
1.93M
#define XML_URI_ALLOW_UNWISE    1
192
223k
#define XML_URI_NO_UNESCAPE     2
193
1.93M
#define XML_URI_ALLOW_UCSCHAR   4
194
195
static int
196
4.14M
xmlIsUnreserved(xmlURIPtr uri, const char *cur) {
197
4.14M
    if (uri == NULL)
198
0
        return(0);
199
200
4.14M
    if (ISA_STRICTLY_UNRESERVED(cur))
201
2.21M
        return(1);
202
203
1.93M
    if (uri->cleanup & XML_URI_ALLOW_UNWISE) {
204
0
        if (IS_UNWISE(cur))
205
0
            return(1);
206
1.93M
    } else if (uri->cleanup & XML_URI_ALLOW_UCSCHAR) {
207
0
        if (ISA_UCSCHAR(cur))
208
0
            return(1);
209
0
    }
210
211
1.93M
    return(0);
212
1.93M
}
213
214
/**
215
 * Parse an URI scheme
216
 *
217
 * ALPHA *( ALPHA / DIGIT / "+" / "-" / "." )
218
 *
219
 * @param uri  pointer to an URI structure
220
 * @param str  pointer to the string to analyze
221
 * @returns 0 or the error code
222
 */
223
static int
224
187k
xmlParse3986Scheme(xmlURIPtr uri, const char **str) {
225
187k
    const char *cur;
226
227
187k
    cur = *str;
228
187k
    if (!ISA_ALPHA(cur))
229
58.1k
  return(1);
230
129k
    cur++;
231
232
#if defined(LIBXML_WINPATH_ENABLED)
233
    /*
234
     * Don't treat Windows drive letters as scheme.
235
     */
236
    if (*cur == ':')
237
        return(1);
238
#endif
239
240
584k
    while (ISA_ALPHA(cur) || ISA_DIGIT(cur) ||
241
455k
           (*cur == '+') || (*cur == '-') || (*cur == '.')) cur++;
242
129k
    if (uri != NULL) {
243
129k
  if (uri->scheme != NULL) xmlFree(uri->scheme);
244
129k
  uri->scheme = STRNDUP(*str, cur - *str);
245
129k
        if (uri->scheme == NULL)
246
10
            return(-1);
247
129k
    }
248
129k
    *str = cur;
249
129k
    return(0);
250
129k
}
251
252
/**
253
 * Parse the query part of an URI
254
 *
255
 * fragment      = *( pchar / "/" / "?" )
256
 * NOTE: the strict syntax as defined by 3986 does not allow '[' and ']'
257
 *       in the fragment identifier but this is used very broadly for
258
 *       xpointer scheme selection, so we are allowing it here to not break
259
 *       for example all the DocBook processing chains.
260
 *
261
 * @param uri  pointer to an URI structure
262
 * @param str  pointer to the string to analyze
263
 * @returns 0 or the error code
264
 */
265
static int
266
xmlParse3986Fragment(xmlURIPtr uri, const char **str)
267
15.2k
{
268
15.2k
    const char *cur;
269
270
15.2k
    cur = *str;
271
272
413k
    while ((ISA_PCHAR(uri, cur)) || (*cur == '/') || (*cur == '?') ||
273
17.1k
           (*cur == '[') || (*cur == ']'))
274
398k
        NEXT(cur);
275
15.2k
    if (uri != NULL) {
276
15.2k
        if (uri->fragment != NULL)
277
0
            xmlFree(uri->fragment);
278
15.2k
  if (uri->cleanup & XML_URI_NO_UNESCAPE)
279
0
      uri->fragment = STRNDUP(*str, cur - *str);
280
15.2k
  else
281
15.2k
      uri->fragment = xmlURIUnescapeString(*str, cur - *str, NULL);
282
15.2k
        if (uri->fragment == NULL)
283
5
            return (-1);
284
15.2k
    }
285
15.2k
    *str = cur;
286
15.2k
    return (0);
287
15.2k
}
288
289
/**
290
 * Parse the query part of an URI
291
 *
292
 * query = *uric
293
 *
294
 * @param uri  pointer to an URI structure
295
 * @param str  pointer to the string to analyze
296
 * @returns 0 or the error code
297
 */
298
static int
299
xmlParse3986Query(xmlURIPtr uri, const char **str)
300
15.2k
{
301
15.2k
    const char *cur;
302
303
15.2k
    cur = *str;
304
305
605k
    while ((ISA_PCHAR(uri, cur)) || (*cur == '/') || (*cur == '?'))
306
589k
        NEXT(cur);
307
15.2k
    if (uri != NULL) {
308
15.2k
        if (uri->query != NULL)
309
0
            xmlFree(uri->query);
310
15.2k
  if (uri->cleanup & XML_URI_NO_UNESCAPE)
311
0
      uri->query = STRNDUP(*str, cur - *str);
312
15.2k
  else
313
15.2k
      uri->query = xmlURIUnescapeString(*str, cur - *str, NULL);
314
15.2k
        if (uri->query == NULL)
315
3
            return (-1);
316
317
  /* Save the raw bytes of the query as well.
318
   * See: http://mail.gnome.org/archives/xml/2007-April/thread.html#00114
319
   */
320
15.2k
  if (uri->query_raw != NULL)
321
0
      xmlFree (uri->query_raw);
322
15.2k
  uri->query_raw = STRNDUP (*str, cur - *str);
323
15.2k
        if (uri->query_raw == NULL)
324
6
            return (-1);
325
15.2k
    }
326
15.2k
    *str = cur;
327
15.2k
    return (0);
328
15.2k
}
329
330
/**
331
 * Parse a port part and fills in the appropriate fields
332
 * of the `uri` structure
333
 *
334
 * port          = *DIGIT
335
 *
336
 * @param uri  pointer to an URI structure
337
 * @param str  the string to analyze
338
 * @returns 0 or the error code
339
 */
340
static int
341
xmlParse3986Port(xmlURIPtr uri, const char **str)
342
2.98k
{
343
2.98k
    const char *cur = *str;
344
2.98k
    int port = 0;
345
346
2.98k
    if (ISA_DIGIT(cur)) {
347
19.1k
  while (ISA_DIGIT(cur)) {
348
17.0k
            int digit = *cur - '0';
349
350
17.0k
            if (port > INT_MAX / 10)
351
339
                return(1);
352
16.7k
            port *= 10;
353
16.7k
            if (port > INT_MAX - digit)
354
66
                return(1);
355
16.6k
      port += digit;
356
357
16.6k
      cur++;
358
16.6k
  }
359
2.04k
  if (uri != NULL)
360
2.04k
      uri->port = port;
361
2.04k
  *str = cur;
362
2.04k
  return(0);
363
2.45k
    }
364
528
    return(1);
365
2.98k
}
366
367
/**
368
 * Parse an user information part and fills in the appropriate fields
369
 * of the `uri` structure
370
 *
371
 * userinfo      = *( unreserved / pct-encoded / sub-delims / ":" )
372
 *
373
 * @param uri  pointer to an URI structure
374
 * @param str  the string to analyze
375
 * @returns 0 or the error code
376
 */
377
static int
378
xmlParse3986Userinfo(xmlURIPtr uri, const char **str)
379
44.7k
{
380
44.7k
    const char *cur;
381
382
44.7k
    cur = *str;
383
755k
    while (ISA_UNRESERVED(uri, cur) || ISA_PCT_ENCODED(cur) ||
384
80.5k
           ISA_SUB_DELIM(cur) || (*cur == ':'))
385
710k
  NEXT(cur);
386
44.7k
    if (*cur == '@') {
387
6.46k
  if (uri != NULL) {
388
6.46k
      if (uri->user != NULL) xmlFree(uri->user);
389
6.46k
      if (uri->cleanup & XML_URI_NO_UNESCAPE)
390
0
    uri->user = STRNDUP(*str, cur - *str);
391
6.46k
      else
392
6.46k
    uri->user = xmlURIUnescapeString(*str, cur - *str, NULL);
393
6.46k
            if (uri->user == NULL)
394
2
                return(-1);
395
6.46k
  }
396
6.46k
  *str = cur;
397
6.46k
  return(0);
398
6.46k
    }
399
38.3k
    return(1);
400
44.7k
}
401
402
/**
403
 *    dec-octet     = DIGIT                 ; 0-9
404
 *                  / %x31-39 DIGIT         ; 10-99
405
 *                  / "1" 2DIGIT            ; 100-199
406
 *                  / "2" %x30-34 DIGIT     ; 200-249
407
 *                  / "25" %x30-35          ; 250-255
408
 *
409
 * Skip a dec-octet.
410
 *
411
 * @param str  the string to analyze
412
 * @returns 0 if found and skipped, 1 otherwise
413
 */
414
static int
415
18.2k
xmlParse3986DecOctet(const char **str) {
416
18.2k
    const char *cur = *str;
417
418
18.2k
    if (!(ISA_DIGIT(cur)))
419
1.55k
        return(1);
420
16.6k
    if (!ISA_DIGIT(cur+1))
421
8.82k
  cur++;
422
7.85k
    else if ((*cur != '0') && (ISA_DIGIT(cur + 1)) && (!ISA_DIGIT(cur+2)))
423
1.72k
  cur += 2;
424
6.13k
    else if ((*cur == '1') && (ISA_DIGIT(cur + 1)) && (ISA_DIGIT(cur + 2)))
425
1.84k
  cur += 3;
426
4.28k
    else if ((*cur == '2') && (*(cur + 1) >= '0') &&
427
2.02k
       (*(cur + 1) <= '4') && (ISA_DIGIT(cur + 2)))
428
671
  cur += 3;
429
3.61k
    else if ((*cur == '2') && (*(cur + 1) == '5') &&
430
806
       (*(cur + 2) >= '0') && (*(cur + 1) <= '5'))
431
806
  cur += 3;
432
2.81k
    else
433
2.81k
        return(1);
434
13.8k
    *str = cur;
435
13.8k
    return(0);
436
16.6k
}
437
/**
438
 * Parse an host part and fills in the appropriate fields
439
 * of the `uri` structure
440
 *
441
 * host          = IP-literal / IPv4address / reg-name
442
 * IP-literal    = "[" ( IPv6address / IPvFuture  ) "]"
443
 * IPv4address   = dec-octet "." dec-octet "." dec-octet "." dec-octet
444
 * reg-name      = *( unreserved / pct-encoded / sub-delims )
445
 *
446
 * @param uri  pointer to an URI structure
447
 * @param str  the string to analyze
448
 * @returns 0 or the error code
449
 */
450
static int
451
xmlParse3986Host(xmlURIPtr uri, const char **str)
452
44.7k
{
453
44.7k
    const char *cur = *str;
454
44.7k
    const char *host;
455
456
44.7k
    host = cur;
457
    /*
458
     * IPv6 and future addressing scheme are enclosed between brackets
459
     */
460
44.7k
    if (*cur == '[') {
461
1.79k
        cur++;
462
135M
  while ((*cur != ']') && (*cur != 0))
463
135M
      cur++;
464
1.79k
  if (*cur != ']')
465
474
      return(1);
466
1.32k
  cur++;
467
1.32k
  goto found;
468
1.79k
    }
469
    /*
470
     * try to parse an IPv4
471
     */
472
42.9k
    if (ISA_DIGIT(cur)) {
473
12.4k
        if (xmlParse3986DecOctet(&cur) != 0)
474
2.07k
      goto not_ipv4;
475
10.3k
  if (*cur != '.')
476
5.30k
      goto not_ipv4;
477
5.07k
  cur++;
478
5.07k
        if (xmlParse3986DecOctet(&cur) != 0)
479
1.58k
      goto not_ipv4;
480
3.49k
  if (*cur != '.')
481
2.77k
      goto not_ipv4;
482
714
        if (xmlParse3986DecOctet(&cur) != 0)
483
714
      goto not_ipv4;
484
0
  if (*cur != '.')
485
0
      goto not_ipv4;
486
0
        if (xmlParse3986DecOctet(&cur) != 0)
487
0
      goto not_ipv4;
488
0
  goto found;
489
12.4k
not_ipv4:
490
12.4k
        cur = *str;
491
12.4k
    }
492
    /*
493
     * then this should be a hostname which can be empty
494
     */
495
370k
    while (ISA_UNRESERVED(uri, cur) ||
496
107k
           ISA_PCT_ENCODED(cur) || ISA_SUB_DELIM(cur))
497
327k
        NEXT(cur);
498
44.3k
found:
499
44.3k
    if (uri != NULL) {
500
44.3k
  if (uri->authority != NULL) xmlFree(uri->authority);
501
44.3k
  uri->authority = NULL;
502
44.3k
  if (uri->server != NULL) xmlFree(uri->server);
503
44.3k
  if (cur != host) {
504
37.8k
      if (uri->cleanup & XML_URI_NO_UNESCAPE)
505
0
    uri->server = STRNDUP(host, cur - host);
506
37.8k
      else
507
37.8k
    uri->server = xmlURIUnescapeString(host, cur - host, NULL);
508
37.8k
            if (uri->server == NULL)
509
5
                return(-1);
510
37.8k
  } else
511
6.49k
      uri->server = NULL;
512
44.3k
    }
513
44.3k
    *str = cur;
514
44.3k
    return(0);
515
44.3k
}
516
517
/**
518
 * Parse an authority part and fills in the appropriate fields
519
 * of the `uri` structure
520
 *
521
 * authority     = [ userinfo "@" ] host [ ":" port ]
522
 *
523
 * @param uri  pointer to an URI structure
524
 * @param str  the string to analyze
525
 * @returns 0 or the error code
526
 */
527
static int
528
xmlParse3986Authority(xmlURIPtr uri, const char **str)
529
44.7k
{
530
44.7k
    const char *cur;
531
44.7k
    int ret;
532
533
44.7k
    cur = *str;
534
    /*
535
     * try to parse an userinfo and check for the trailing @
536
     */
537
44.7k
    ret = xmlParse3986Userinfo(uri, &cur);
538
44.7k
    if (ret < 0)
539
2
        return(ret);
540
44.7k
    if ((ret != 0) || (*cur != '@'))
541
38.3k
        cur = *str;
542
6.46k
    else
543
6.46k
        cur++;
544
44.7k
    ret = xmlParse3986Host(uri, &cur);
545
44.7k
    if (ret != 0) return(ret);
546
44.3k
    if (*cur == ':') {
547
2.98k
        cur++;
548
2.98k
        ret = xmlParse3986Port(uri, &cur);
549
2.98k
  if (ret != 0) return(ret);
550
2.98k
    }
551
43.3k
    *str = cur;
552
43.3k
    return(0);
553
44.3k
}
554
555
/**
556
 * Parse a segment and fills in the appropriate fields
557
 * of the `uri` structure
558
 *
559
 * segment       = *pchar
560
 * segment-nz    = 1*pchar
561
 * segment-nz-nc = 1*( unreserved / pct-encoded / sub-delims / "@" )
562
 *               ; non-zero-length segment without any colon ":"
563
 *
564
 * @param uri  the URI
565
 * @param str  the string to analyze
566
 * @param forbid  an optional forbidden character
567
 * @param empty  allow an empty segment
568
 * @returns 0 or the error code
569
 */
570
static int
571
xmlParse3986Segment(xmlURIPtr uri, const char **str, char forbid, int empty)
572
224k
{
573
224k
    const char *cur;
574
575
224k
    cur = *str;
576
224k
    if (!ISA_PCHAR(uri, cur) || (*cur == forbid)) {
577
21.8k
        if (empty)
578
19.1k
      return(0);
579
2.68k
  return(1);
580
21.8k
    }
581
202k
    NEXT(cur);
582
583
#if defined(LIBXML_WINPATH_ENABLED)
584
    /*
585
     * Allow Windows drive letters.
586
     */
587
    if ((forbid == ':') && (*cur == forbid))
588
        NEXT(cur);
589
#endif
590
591
1.63M
    while (ISA_PCHAR(uri, cur) && (*cur != forbid))
592
1.42M
        NEXT(cur);
593
202k
    *str = cur;
594
202k
    return (0);
595
224k
}
596
597
/**
598
 * Parse an path absolute or empty and fills in the appropriate fields
599
 * of the `uri` structure
600
 *
601
 * path-abempty  = *( "/" segment )
602
 *
603
 * @param uri  pointer to an URI structure
604
 * @param str  the string to analyze
605
 * @returns 0 or the error code
606
 */
607
static int
608
xmlParse3986PathAbEmpty(xmlURIPtr uri, const char **str)
609
43.3k
{
610
43.3k
    const char *cur;
611
43.3k
    int ret;
612
613
43.3k
    cur = *str;
614
615
85.5k
    while (*cur == '/') {
616
42.1k
        cur++;
617
42.1k
  ret = xmlParse3986Segment(uri, &cur, 0, 1);
618
42.1k
  if (ret != 0) return(ret);
619
42.1k
    }
620
43.3k
    if (uri != NULL) {
621
43.3k
  if (uri->path != NULL) xmlFree(uri->path);
622
43.3k
        if (*str != cur) {
623
22.8k
            if (uri->cleanup & XML_URI_NO_UNESCAPE)
624
0
                uri->path = STRNDUP(*str, cur - *str);
625
22.8k
            else
626
22.8k
                uri->path = xmlURIUnescapeString(*str, cur - *str, NULL);
627
22.8k
            if (uri->path == NULL)
628
5
                return (-1);
629
22.8k
        } else {
630
20.5k
            uri->path = NULL;
631
20.5k
        }
632
43.3k
    }
633
43.3k
    *str = cur;
634
43.3k
    return (0);
635
43.3k
}
636
637
/**
638
 * Parse an path absolute and fills in the appropriate fields
639
 * of the `uri` structure
640
 *
641
 * path-absolute = "/" [ segment-nz *( "/" segment ) ]
642
 *
643
 * @param uri  pointer to an URI structure
644
 * @param str  the string to analyze
645
 * @returns 0 or the error code
646
 */
647
static int
648
xmlParse3986PathAbsolute(xmlURIPtr uri, const char **str)
649
2.98k
{
650
2.98k
    const char *cur;
651
2.98k
    int ret;
652
653
2.98k
    cur = *str;
654
655
2.98k
    if (*cur != '/')
656
0
        return(1);
657
2.98k
    cur++;
658
2.98k
    ret = xmlParse3986Segment(uri, &cur, 0, 0);
659
2.98k
    if (ret == 0) {
660
2.61k
  while (*cur == '/') {
661
1.69k
      cur++;
662
1.69k
      ret = xmlParse3986Segment(uri, &cur, 0, 1);
663
1.69k
      if (ret != 0) return(ret);
664
1.69k
  }
665
926
    }
666
2.98k
    if (uri != NULL) {
667
2.98k
  if (uri->path != NULL) xmlFree(uri->path);
668
2.98k
        if (cur != *str) {
669
2.98k
            if (uri->cleanup & XML_URI_NO_UNESCAPE)
670
0
                uri->path = STRNDUP(*str, cur - *str);
671
2.98k
            else
672
2.98k
                uri->path = xmlURIUnescapeString(*str, cur - *str, NULL);
673
2.98k
            if (uri->path == NULL)
674
4
                return (-1);
675
2.98k
        } else {
676
0
            uri->path = NULL;
677
0
        }
678
2.98k
    }
679
2.98k
    *str = cur;
680
2.98k
    return (0);
681
2.98k
}
682
683
/**
684
 * Parse an path without root and fills in the appropriate fields
685
 * of the `uri` structure
686
 *
687
 * path-rootless = segment-nz *( "/" segment )
688
 *
689
 * @param uri  pointer to an URI structure
690
 * @param str  the string to analyze
691
 * @returns 0 or the error code
692
 */
693
static int
694
xmlParse3986PathRootless(xmlURIPtr uri, const char **str)
695
31.3k
{
696
31.3k
    const char *cur;
697
31.3k
    int ret;
698
699
31.3k
    cur = *str;
700
701
31.3k
    ret = xmlParse3986Segment(uri, &cur, 0, 0);
702
31.3k
    if (ret != 0) return(ret);
703
40.9k
    while (*cur == '/') {
704
9.55k
        cur++;
705
9.55k
  ret = xmlParse3986Segment(uri, &cur, 0, 1);
706
9.55k
  if (ret != 0) return(ret);
707
9.55k
    }
708
31.3k
    if (uri != NULL) {
709
31.3k
  if (uri->path != NULL) xmlFree(uri->path);
710
31.3k
        if (cur != *str) {
711
31.3k
            if (uri->cleanup & XML_URI_NO_UNESCAPE)
712
0
                uri->path = STRNDUP(*str, cur - *str);
713
31.3k
            else
714
31.3k
                uri->path = xmlURIUnescapeString(*str, cur - *str, NULL);
715
31.3k
            if (uri->path == NULL)
716
4
                return (-1);
717
31.3k
        } else {
718
0
            uri->path = NULL;
719
0
        }
720
31.3k
    }
721
31.3k
    *str = cur;
722
31.3k
    return (0);
723
31.3k
}
724
725
/**
726
 * Parse an path which is not a scheme and fills in the appropriate fields
727
 * of the `uri` structure
728
 *
729
 * path-noscheme = segment-nz-nc *( "/" segment )
730
 *
731
 * @param uri  pointer to an URI structure
732
 * @param str  the string to analyze
733
 * @returns 0 or the error code
734
 */
735
static int
736
xmlParse3986PathNoScheme(xmlURIPtr uri, const char **str)
737
92.2k
{
738
92.2k
    const char *cur;
739
92.2k
    int ret;
740
741
92.2k
    cur = *str;
742
743
92.2k
    ret = xmlParse3986Segment(uri, &cur, ':', 0);
744
92.2k
    if (ret != 0) return(ret);
745
136k
    while (*cur == '/') {
746
44.3k
        cur++;
747
44.3k
  ret = xmlParse3986Segment(uri, &cur, 0, 1);
748
44.3k
  if (ret != 0) return(ret);
749
44.3k
    }
750
91.6k
    if (uri != NULL) {
751
91.6k
  if (uri->path != NULL) xmlFree(uri->path);
752
91.6k
        if (cur != *str) {
753
91.6k
            if (uri->cleanup & XML_URI_NO_UNESCAPE)
754
0
                uri->path = STRNDUP(*str, cur - *str);
755
91.6k
            else
756
91.6k
                uri->path = xmlURIUnescapeString(*str, cur - *str, NULL);
757
91.6k
            if (uri->path == NULL)
758
8
                return (-1);
759
91.6k
        } else {
760
0
            uri->path = NULL;
761
0
        }
762
91.6k
    }
763
91.6k
    *str = cur;
764
91.6k
    return (0);
765
91.6k
}
766
767
/**
768
 * Parse an hierarchical part and fills in the appropriate fields
769
 * of the `uri` structure
770
 *
771
 * hier-part     = "//" authority path-abempty
772
 *                / path-absolute
773
 *                / path-rootless
774
 *                / path-empty
775
 *
776
 * @param uri  pointer to an URI structure
777
 * @param str  the string to analyze
778
 * @returns 0 or the error code
779
 */
780
static int
781
xmlParse3986HierPart(xmlURIPtr uri, const char **str)
782
74.2k
{
783
74.2k
    const char *cur;
784
74.2k
    int ret;
785
786
74.2k
    cur = *str;
787
788
74.2k
    if ((*cur == '/') && (*(cur + 1) == '/')) {
789
40.3k
        cur += 2;
790
40.3k
  ret = xmlParse3986Authority(uri, &cur);
791
40.3k
  if (ret != 0) return(ret);
792
        /*
793
         * An empty server is marked with a special URI value.
794
         */
795
39.6k
  if ((uri->server == NULL) && (uri->port == PORT_EMPTY))
796
4.62k
      uri->port = PORT_EMPTY_SERVER;
797
39.6k
  ret = xmlParse3986PathAbEmpty(uri, &cur);
798
39.6k
  if (ret != 0) return(ret);
799
39.6k
  *str = cur;
800
39.6k
  return(0);
801
39.6k
    } else if (*cur == '/') {
802
464
        ret = xmlParse3986PathAbsolute(uri, &cur);
803
464
  if (ret != 0) return(ret);
804
33.4k
    } else if (ISA_PCHAR(uri, cur)) {
805
31.3k
        ret = xmlParse3986PathRootless(uri, &cur);
806
31.3k
  if (ret != 0) return(ret);
807
31.3k
    } else {
808
  /* path-empty is effectively empty */
809
2.02k
  if (uri != NULL) {
810
2.02k
      if (uri->path != NULL) xmlFree(uri->path);
811
2.02k
      uri->path = NULL;
812
2.02k
  }
813
2.02k
    }
814
33.8k
    *str = cur;
815
33.8k
    return (0);
816
74.2k
}
817
818
/**
819
 * Parse an URI string and fills in the appropriate fields
820
 * of the `uri` structure
821
 *
822
 * relative-ref  = relative-part [ "?" query ] [ "\#" fragment ]
823
 * relative-part = "//" authority path-abempty
824
 *               / path-absolute
825
 *               / path-noscheme
826
 *               / path-empty
827
 *
828
 * @param uri  pointer to an URI structure
829
 * @param str  the string to analyze
830
 * @returns 0 or the error code
831
 */
832
static int
833
122k
xmlParse3986RelativeRef(xmlURIPtr uri, const char *str) {
834
122k
    int ret;
835
836
122k
    if ((*str == '/') && (*(str + 1) == '/')) {
837
4.44k
        str += 2;
838
4.44k
  ret = xmlParse3986Authority(uri, &str);
839
4.44k
  if (ret != 0) return(ret);
840
3.75k
  ret = xmlParse3986PathAbEmpty(uri, &str);
841
3.75k
  if (ret != 0) return(ret);
842
118k
    } else if (*str == '/') {
843
2.52k
  ret = xmlParse3986PathAbsolute(uri, &str);
844
2.52k
  if (ret != 0) return(ret);
845
115k
    } else if (ISA_PCHAR(uri, str)) {
846
92.2k
        ret = xmlParse3986PathNoScheme(uri, &str);
847
92.2k
  if (ret != 0) return(ret);
848
92.2k
    } else {
849
  /* path-empty is effectively empty */
850
23.6k
  if (uri != NULL) {
851
23.6k
      if (uri->path != NULL) xmlFree(uri->path);
852
23.6k
      uri->path = NULL;
853
23.6k
  }
854
23.6k
    }
855
856
121k
    if (*str == '?') {
857
9.77k
  str++;
858
9.77k
  ret = xmlParse3986Query(uri, &str);
859
9.77k
  if (ret != 0) return(ret);
860
9.77k
    }
861
121k
    if (*str == '#') {
862
9.25k
  str++;
863
9.25k
  ret = xmlParse3986Fragment(uri, &str);
864
9.25k
  if (ret != 0) return(ret);
865
9.25k
    }
866
121k
    if (*str != 0) {
867
37.0k
  xmlCleanURI(uri);
868
37.0k
  return(1);
869
37.0k
    }
870
84.4k
    return(0);
871
121k
}
872
873
874
/**
875
 * Parse an URI string and fills in the appropriate fields
876
 * of the `uri` structure
877
 *
878
 * scheme ":" hier-part [ "?" query ] [ "\#" fragment ]
879
 *
880
 * @param uri  pointer to an URI structure
881
 * @param str  the string to analyze
882
 * @returns 0 or the error code
883
 */
884
static int
885
187k
xmlParse3986URI(xmlURIPtr uri, const char *str) {
886
187k
    int ret;
887
888
187k
    ret = xmlParse3986Scheme(uri, &str);
889
187k
    if (ret != 0) return(ret);
890
129k
    if (*str != ':') {
891
55.1k
  return(1);
892
55.1k
    }
893
74.2k
    str++;
894
74.2k
    ret = xmlParse3986HierPart(uri, &str);
895
74.2k
    if (ret != 0) return(ret);
896
73.4k
    if (*str == '?') {
897
5.48k
  str++;
898
5.48k
  ret = xmlParse3986Query(uri, &str);
899
5.48k
  if (ret != 0) return(ret);
900
5.48k
    }
901
73.4k
    if (*str == '#') {
902
5.96k
  str++;
903
5.96k
  ret = xmlParse3986Fragment(uri, &str);
904
5.96k
  if (ret != 0) return(ret);
905
5.96k
    }
906
73.4k
    if (*str != 0) {
907
8.88k
  xmlCleanURI(uri);
908
8.88k
  return(1);
909
8.88k
    }
910
64.5k
    return(0);
911
73.4k
}
912
913
/**
914
 * Parse an URI reference string and fills in the appropriate fields
915
 * of the `uri` structure
916
 *
917
 * URI-reference = URI / relative-ref
918
 *
919
 * @param uri  pointer to an URI structure
920
 * @param str  the string to analyze
921
 * @returns 0 or the error code
922
 */
923
static int
924
187k
xmlParse3986URIReference(xmlURIPtr uri, const char *str) {
925
187k
    int ret;
926
927
187k
    if (str == NULL)
928
0
  return(-1);
929
187k
    xmlCleanURI(uri);
930
931
    /*
932
     * Try first to parse absolute refs, then fallback to relative if
933
     * it fails.
934
     */
935
187k
    ret = xmlParse3986URI(uri, str);
936
187k
    if (ret < 0)
937
27
        return(ret);
938
187k
    if (ret != 0) {
939
122k
  xmlCleanURI(uri);
940
122k
        ret = xmlParse3986RelativeRef(uri, str);
941
122k
  if (ret != 0) {
942
38.4k
      xmlCleanURI(uri);
943
38.4k
      return(ret);
944
38.4k
  }
945
122k
    }
946
149k
    return(0);
947
187k
}
948
949
/**
950
 * Parse an URI based on RFC 3986
951
 *
952
 * URI-reference = [ absoluteURI | relativeURI ] [ "\#" fragment ]
953
 *
954
 * @since 2.13.0
955
 *
956
 * @param str  the URI string to analyze
957
 * @param uriOut  optional pointer to parsed URI
958
 * @returns 0 on success, an error code (typically 1) if the URI is invalid
959
 * or -1 if a memory allocation failed.
960
 */
961
int
962
171k
xmlParseURISafe(const char *str, xmlURI **uriOut) {
963
171k
    xmlURIPtr uri;
964
171k
    int ret;
965
966
171k
    if (uriOut == NULL)
967
0
        return(1);
968
171k
    *uriOut = NULL;
969
171k
    if (str == NULL)
970
0
  return(1);
971
972
171k
    uri = xmlCreateURI();
973
171k
    if (uri == NULL)
974
26
        return(-1);
975
976
171k
    ret = xmlParse3986URIReference(uri, str);
977
171k
    if (ret) {
978
33.4k
        xmlFreeURI(uri);
979
33.4k
        return(ret);
980
33.4k
    }
981
982
138k
    *uriOut = uri;
983
138k
    return(0);
984
171k
}
985
986
/**
987
 * Parse an URI based on RFC 3986
988
 *
989
 * URI-reference = [ absoluteURI | relativeURI ] [ "\#" fragment ]
990
 *
991
 * @param str  the URI string to analyze
992
 * @returns a newly built xmlURI or NULL in case of error
993
 */
994
xmlURI *
995
0
xmlParseURI(const char *str) {
996
0
    xmlURIPtr uri;
997
0
    xmlParseURISafe(str, &uri);
998
0
    return(uri);
999
0
}
1000
1001
/**
1002
 * Parse an URI reference string based on RFC 3986 and fills in the
1003
 * appropriate fields of the `uri` structure
1004
 *
1005
 * URI-reference = URI / relative-ref
1006
 *
1007
 * @param uri  pointer to an URI structure
1008
 * @param str  the string to analyze
1009
 * @returns 0 or the error code
1010
 */
1011
int
1012
15.8k
xmlParseURIReference(xmlURI *uri, const char *str) {
1013
15.8k
    return(xmlParse3986URIReference(uri, str));
1014
15.8k
}
1015
1016
/**
1017
 * Parse an URI but allows to keep intact the original fragments.
1018
 *
1019
 * URI-reference = URI / relative-ref
1020
 *
1021
 * @param str  the URI string to analyze
1022
 * @param raw  if 1 unescaping of URI pieces are disabled
1023
 * @returns a newly built xmlURI or NULL in case of error
1024
 */
1025
xmlURI *
1026
0
xmlParseURIRaw(const char *str, int raw) {
1027
0
    xmlURIPtr uri;
1028
0
    int ret;
1029
1030
0
    if (str == NULL)
1031
0
  return(NULL);
1032
0
    uri = xmlCreateURI();
1033
0
    if (uri != NULL) {
1034
0
        if (raw) {
1035
0
      uri->cleanup |= XML_URI_NO_UNESCAPE;
1036
0
  }
1037
0
  ret = xmlParseURIReference(uri, str);
1038
0
        if (ret) {
1039
0
      xmlFreeURI(uri);
1040
0
      return(NULL);
1041
0
  }
1042
0
    }
1043
0
    return(uri);
1044
0
}
1045
1046
/************************************************************************
1047
 *                  *
1048
 *      Generic URI structure functions     *
1049
 *                  *
1050
 ************************************************************************/
1051
1052
/**
1053
 * Simply creates an empty xmlURI
1054
 *
1055
 * @returns the new structure or NULL in case of error
1056
 */
1057
xmlURI *
1058
211k
xmlCreateURI(void) {
1059
211k
    xmlURIPtr ret;
1060
1061
211k
    ret = (xmlURIPtr) xmlMalloc(sizeof(xmlURI));
1062
211k
    if (ret == NULL)
1063
33
  return(NULL);
1064
210k
    memset(ret, 0, sizeof(xmlURI));
1065
210k
    ret->port = PORT_EMPTY;
1066
210k
    return(ret);
1067
211k
}
1068
1069
/**
1070
 * Function to handle properly a reallocation when saving an URI
1071
 * Also imposes some limit on the length of an URI string output
1072
 */
1073
static xmlChar *
1074
19.2k
xmlSaveUriRealloc(xmlChar *ret, int *max) {
1075
19.2k
    xmlChar *temp;
1076
19.2k
    int newSize;
1077
1078
19.2k
    newSize = xmlGrowCapacity(*max, 1, 80, MAX_URI_LENGTH);
1079
19.2k
    if (newSize < 0)
1080
0
        return(NULL);
1081
19.2k
    temp = xmlRealloc(ret, newSize + 1);
1082
19.2k
    if (temp == NULL)
1083
15
        return(NULL);
1084
19.2k
    *max = newSize;
1085
19.2k
    return(temp);
1086
19.2k
}
1087
1088
/**
1089
 * Save the URI as an escaped string
1090
 *
1091
 * @param uri  pointer to an xmlURI
1092
 * @returns a new string (to be deallocated by caller)
1093
 */
1094
xmlChar *
1095
46.8k
xmlSaveUri(xmlURI *uri) {
1096
46.8k
    xmlChar *ret = NULL;
1097
46.8k
    xmlChar *temp;
1098
46.8k
    const char *p;
1099
46.8k
    int len;
1100
46.8k
    int max;
1101
1102
46.8k
    if (uri == NULL) return(NULL);
1103
1104
1105
46.8k
    max = 80;
1106
46.8k
    ret = xmlMalloc(max + 1);
1107
46.8k
    if (ret == NULL)
1108
9
  return(NULL);
1109
46.8k
    len = 0;
1110
1111
46.8k
    if (uri->scheme != NULL) {
1112
14.1k
  p = uri->scheme;
1113
129k
  while (*p != 0) {
1114
115k
      if (len >= max) {
1115
273
                temp = xmlSaveUriRealloc(ret, &max);
1116
273
                if (temp == NULL) goto mem_error;
1117
272
    ret = temp;
1118
272
      }
1119
115k
      ret[len++] = *p++;
1120
115k
  }
1121
14.1k
  if (len >= max) {
1122
172
            temp = xmlSaveUriRealloc(ret, &max);
1123
172
            if (temp == NULL) goto mem_error;
1124
172
            ret = temp;
1125
172
  }
1126
14.1k
  ret[len++] = ':';
1127
14.1k
    }
1128
46.8k
    if (uri->opaque != NULL) {
1129
0
  p = uri->opaque;
1130
0
  while (*p != 0) {
1131
0
      if (len + 3 >= max) {
1132
0
                temp = xmlSaveUriRealloc(ret, &max);
1133
0
                if (temp == NULL) goto mem_error;
1134
0
                ret = temp;
1135
0
      }
1136
0
      if (IS_RESERVED(*(p)) || IS_UNRESERVED(*(p)))
1137
0
    ret[len++] = *p++;
1138
0
      else {
1139
0
    int val = *(unsigned char *)p++;
1140
0
    int hi = val / 0x10, lo = val % 0x10;
1141
0
    ret[len++] = '%';
1142
0
    ret[len++] = hi + (hi > 9? 'A'-10 : '0');
1143
0
    ret[len++] = lo + (lo > 9? 'A'-10 : '0');
1144
0
      }
1145
0
  }
1146
46.8k
    } else {
1147
46.8k
  if ((uri->server != NULL) || (uri->port != PORT_EMPTY)) {
1148
12.2k
      if (len + 3 >= max) {
1149
224
                temp = xmlSaveUriRealloc(ret, &max);
1150
224
                if (temp == NULL) goto mem_error;
1151
224
                ret = temp;
1152
224
      }
1153
12.2k
      ret[len++] = '/';
1154
12.2k
      ret[len++] = '/';
1155
12.2k
      if (uri->user != NULL) {
1156
3.72k
    p = uri->user;
1157
3.37M
    while (*p != 0) {
1158
3.36M
        if (len + 3 >= max) {
1159
2.19k
                        temp = xmlSaveUriRealloc(ret, &max);
1160
2.19k
                        if (temp == NULL) goto mem_error;
1161
2.19k
                        ret = temp;
1162
2.19k
        }
1163
3.36M
        if ((IS_UNRESERVED(*(p))) ||
1164
3.31M
      ((*(p) == ';')) || ((*(p) == ':')) ||
1165
3.30M
      ((*(p) == '&')) || ((*(p) == '=')) ||
1166
3.30M
      ((*(p) == '+')) || ((*(p) == '$')) ||
1167
3.30M
      ((*(p) == ',')))
1168
65.0k
      ret[len++] = *p++;
1169
3.30M
        else {
1170
3.30M
      int val = *(unsigned char *)p++;
1171
3.30M
      int hi = val / 0x10, lo = val % 0x10;
1172
3.30M
      ret[len++] = '%';
1173
3.30M
      ret[len++] = hi + (hi > 9? 'A'-10 : '0');
1174
3.30M
      ret[len++] = lo + (lo > 9? 'A'-10 : '0');
1175
3.30M
        }
1176
3.36M
    }
1177
3.72k
    if (len + 3 >= max) {
1178
247
                    temp = xmlSaveUriRealloc(ret, &max);
1179
247
                    if (temp == NULL) goto mem_error;
1180
246
                    ret = temp;
1181
246
    }
1182
3.72k
    ret[len++] = '@';
1183
3.72k
      }
1184
12.2k
      if (uri->server != NULL) {
1185
10.4k
    p = uri->server;
1186
66.8M
    while (*p != 0) {
1187
66.8M
        if (len >= max) {
1188
3.54k
      temp = xmlSaveUriRealloc(ret, &max);
1189
3.54k
      if (temp == NULL) goto mem_error;
1190
3.54k
      ret = temp;
1191
3.54k
        }
1192
                    /* TODO: escaping? */
1193
66.8M
        ret[len++] = (xmlChar) *p++;
1194
66.8M
    }
1195
10.4k
      }
1196
12.2k
            if (uri->port > 0) {
1197
810
                if (len + 10 >= max) {
1198
211
                    temp = xmlSaveUriRealloc(ret, &max);
1199
211
                    if (temp == NULL) goto mem_error;
1200
210
                    ret = temp;
1201
210
                }
1202
809
                len += snprintf((char *) &ret[len], max - len, ":%d", uri->port);
1203
809
            }
1204
34.6k
  } else if (uri->authority != NULL) {
1205
0
      if (len + 3 >= max) {
1206
0
                temp = xmlSaveUriRealloc(ret, &max);
1207
0
                if (temp == NULL) goto mem_error;
1208
0
                ret = temp;
1209
0
      }
1210
0
      ret[len++] = '/';
1211
0
      ret[len++] = '/';
1212
0
      p = uri->authority;
1213
0
      while (*p != 0) {
1214
0
    if (len + 3 >= max) {
1215
0
                    temp = xmlSaveUriRealloc(ret, &max);
1216
0
                    if (temp == NULL) goto mem_error;
1217
0
                    ret = temp;
1218
0
    }
1219
0
    if ((IS_UNRESERVED(*(p))) ||
1220
0
                    ((*(p) == '$')) || ((*(p) == ',')) || ((*(p) == ';')) ||
1221
0
                    ((*(p) == ':')) || ((*(p) == '@')) || ((*(p) == '&')) ||
1222
0
                    ((*(p) == '=')) || ((*(p) == '+')))
1223
0
        ret[len++] = *p++;
1224
0
    else {
1225
0
        int val = *(unsigned char *)p++;
1226
0
        int hi = val / 0x10, lo = val % 0x10;
1227
0
        ret[len++] = '%';
1228
0
        ret[len++] = hi + (hi > 9? 'A'-10 : '0');
1229
0
        ret[len++] = lo + (lo > 9? 'A'-10 : '0');
1230
0
    }
1231
0
      }
1232
34.6k
  } else if (uri->scheme != NULL) {
1233
2.91k
      if (len + 3 >= max) {
1234
222
                temp = xmlSaveUriRealloc(ret, &max);
1235
222
                if (temp == NULL) goto mem_error;
1236
221
                ret = temp;
1237
221
      }
1238
2.91k
  }
1239
46.8k
  if (uri->path != NULL) {
1240
26.9k
      p = uri->path;
1241
      /*
1242
       * the colon in file:///d: should not be escaped or
1243
       * Windows accesses fail later.
1244
       */
1245
26.9k
      if ((uri->scheme != NULL) &&
1246
9.86k
    (p[0] == '/') &&
1247
7.23k
    (((p[1] >= 'a') && (p[1] <= 'z')) ||
1248
5.36k
     ((p[1] >= 'A') && (p[1] <= 'Z'))) &&
1249
3.47k
    (p[2] == ':') &&
1250
450
          (xmlStrEqual(BAD_CAST uri->scheme, BAD_CAST "file"))) {
1251
233
    if (len + 3 >= max) {
1252
160
                    temp = xmlSaveUriRealloc(ret, &max);
1253
160
                    if (temp == NULL) goto mem_error;
1254
159
                    ret = temp;
1255
159
    }
1256
232
    ret[len++] = *p++;
1257
232
    ret[len++] = *p++;
1258
232
    ret[len++] = *p++;
1259
232
      }
1260
1.55M
      while (*p != 0) {
1261
1.53M
    if (len + 3 >= max) {
1262
10.6k
                    temp = xmlSaveUriRealloc(ret, &max);
1263
10.6k
                    if (temp == NULL) goto mem_error;
1264
10.6k
                    ret = temp;
1265
10.6k
    }
1266
1.53M
    if ((IS_UNRESERVED(*(p))) || ((*(p) == '/')) ||
1267
257k
                    ((*(p) == ';')) || ((*(p) == '@')) || ((*(p) == '&')) ||
1268
245k
              ((*(p) == '=')) || ((*(p) == '+')) || ((*(p) == '$')) ||
1269
240k
              ((*(p) == ',')))
1270
1.29M
        ret[len++] = *p++;
1271
238k
    else {
1272
238k
        int val = *(unsigned char *)p++;
1273
238k
        int hi = val / 0x10, lo = val % 0x10;
1274
238k
        ret[len++] = '%';
1275
238k
        ret[len++] = hi + (hi > 9? 'A'-10 : '0');
1276
238k
        ret[len++] = lo + (lo > 9? 'A'-10 : '0');
1277
238k
    }
1278
1.53M
      }
1279
26.9k
  }
1280
46.8k
  if (uri->query_raw != NULL) {
1281
6.49k
      if (len + 1 >= max) {
1282
248
                temp = xmlSaveUriRealloc(ret, &max);
1283
248
                if (temp == NULL) goto mem_error;
1284
247
                ret = temp;
1285
247
      }
1286
6.49k
      ret[len++] = '?';
1287
6.49k
      p = uri->query_raw;
1288
525k
      while (*p != 0) {
1289
518k
    if (len + 1 >= max) {
1290
190
                    temp = xmlSaveUriRealloc(ret, &max);
1291
190
                    if (temp == NULL) goto mem_error;
1292
189
                    ret = temp;
1293
189
    }
1294
518k
    ret[len++] = *p++;
1295
518k
      }
1296
40.3k
  } else if (uri->query != NULL) {
1297
0
      if (len + 3 >= max) {
1298
0
                temp = xmlSaveUriRealloc(ret, &max);
1299
0
                if (temp == NULL) goto mem_error;
1300
0
                ret = temp;
1301
0
      }
1302
0
      ret[len++] = '?';
1303
0
      p = uri->query;
1304
0
      while (*p != 0) {
1305
0
    if (len + 3 >= max) {
1306
0
                    temp = xmlSaveUriRealloc(ret, &max);
1307
0
                    if (temp == NULL) goto mem_error;
1308
0
                    ret = temp;
1309
0
    }
1310
0
    if ((IS_UNRESERVED(*(p))) || (IS_RESERVED(*(p))))
1311
0
        ret[len++] = *p++;
1312
0
    else {
1313
0
        int val = *(unsigned char *)p++;
1314
0
        int hi = val / 0x10, lo = val % 0x10;
1315
0
        ret[len++] = '%';
1316
0
        ret[len++] = hi + (hi > 9? 'A'-10 : '0');
1317
0
        ret[len++] = lo + (lo > 9? 'A'-10 : '0');
1318
0
    }
1319
0
      }
1320
0
  }
1321
46.8k
    }
1322
46.8k
    if (uri->fragment != NULL) {
1323
5.41k
  if (len + 3 >= max) {
1324
102
            temp = xmlSaveUriRealloc(ret, &max);
1325
102
            if (temp == NULL) goto mem_error;
1326
102
            ret = temp;
1327
102
  }
1328
5.41k
  ret[len++] = '#';
1329
5.41k
  p = uri->fragment;
1330
299k
  while (*p != 0) {
1331
293k
      if (len + 3 >= max) {
1332
584
                temp = xmlSaveUriRealloc(ret, &max);
1333
584
                if (temp == NULL) goto mem_error;
1334
583
                ret = temp;
1335
583
      }
1336
293k
      if ((IS_UNRESERVED(*(p))) || (IS_RESERVED(*(p))))
1337
285k
    ret[len++] = *p++;
1338
7.82k
      else {
1339
7.82k
    int val = *(unsigned char *)p++;
1340
7.82k
    int hi = val / 0x10, lo = val % 0x10;
1341
7.82k
    ret[len++] = '%';
1342
7.82k
    ret[len++] = hi + (hi > 9? 'A'-10 : '0');
1343
7.82k
    ret[len++] = lo + (lo > 9? 'A'-10 : '0');
1344
7.82k
      }
1345
293k
  }
1346
5.41k
    }
1347
46.8k
    if (len >= max) {
1348
224
        temp = xmlSaveUriRealloc(ret, &max);
1349
224
        if (temp == NULL) goto mem_error;
1350
222
        ret = temp;
1351
222
    }
1352
46.8k
    ret[len] = 0;
1353
46.8k
    return(ret);
1354
1355
15
mem_error:
1356
15
    xmlFree(ret);
1357
15
    return(NULL);
1358
46.8k
}
1359
1360
/**
1361
 * Prints the URI in the stream `stream`.
1362
 *
1363
 * @param stream  a FILE* for the output
1364
 * @param uri  pointer to an xmlURI
1365
 */
1366
void
1367
0
xmlPrintURI(FILE *stream, xmlURI *uri) {
1368
0
    xmlChar *out;
1369
1370
0
    out = xmlSaveUri(uri);
1371
0
    if (out != NULL) {
1372
0
  fprintf(stream, "%s", (char *) out);
1373
0
  xmlFree(out);
1374
0
    }
1375
0
}
1376
1377
/**
1378
 * Make sure the xmlURI struct is free of content
1379
 *
1380
 * @param uri  pointer to an xmlURI
1381
 */
1382
static void
1383
394k
xmlCleanURI(xmlURIPtr uri) {
1384
394k
    if (uri == NULL) return;
1385
1386
394k
    if (uri->scheme != NULL) xmlFree(uri->scheme);
1387
394k
    uri->scheme = NULL;
1388
394k
    if (uri->server != NULL) xmlFree(uri->server);
1389
394k
    uri->server = NULL;
1390
394k
    if (uri->user != NULL) xmlFree(uri->user);
1391
394k
    uri->user = NULL;
1392
394k
    if (uri->path != NULL) xmlFree(uri->path);
1393
394k
    uri->path = NULL;
1394
394k
    if (uri->fragment != NULL) xmlFree(uri->fragment);
1395
394k
    uri->fragment = NULL;
1396
394k
    if (uri->opaque != NULL) xmlFree(uri->opaque);
1397
394k
    uri->opaque = NULL;
1398
394k
    if (uri->authority != NULL) xmlFree(uri->authority);
1399
394k
    uri->authority = NULL;
1400
394k
    if (uri->query != NULL) xmlFree(uri->query);
1401
394k
    uri->query = NULL;
1402
394k
    if (uri->query_raw != NULL) xmlFree(uri->query_raw);
1403
394k
    uri->query_raw = NULL;
1404
394k
}
1405
1406
/**
1407
 * Free up the xmlURI struct
1408
 *
1409
 * @param uri  pointer to an xmlURI
1410
 */
1411
void
1412
234k
xmlFreeURI(xmlURI *uri) {
1413
234k
    if (uri == NULL) return;
1414
1415
210k
    if (uri->scheme != NULL) xmlFree(uri->scheme);
1416
210k
    if (uri->server != NULL) xmlFree(uri->server);
1417
210k
    if (uri->user != NULL) xmlFree(uri->user);
1418
210k
    if (uri->path != NULL) xmlFree(uri->path);
1419
210k
    if (uri->fragment != NULL) xmlFree(uri->fragment);
1420
210k
    if (uri->opaque != NULL) xmlFree(uri->opaque);
1421
210k
    if (uri->authority != NULL) xmlFree(uri->authority);
1422
210k
    if (uri->query != NULL) xmlFree(uri->query);
1423
210k
    if (uri->query_raw != NULL) xmlFree(uri->query_raw);
1424
210k
    xmlFree(uri);
1425
210k
}
1426
1427
/************************************************************************
1428
 *                  *
1429
 *      Helper functions        *
1430
 *                  *
1431
 ************************************************************************/
1432
1433
static int
1434
394M
xmlIsPathSeparator(int c, int isFile) {
1435
394M
    (void) isFile;
1436
1437
394M
    if (c == '/')
1438
76.5k
        return(1);
1439
1440
#if defined(LIBXML_WINPATH_ENABLED)
1441
    if (isFile && (c == '\\'))
1442
        return(1);
1443
#endif
1444
1445
394M
    return(0);
1446
394M
}
1447
1448
/**
1449
 * Normalize a filesystem path or URI.
1450
 *
1451
 * @param path  pointer to the path string
1452
 * @param isFile  true for filesystem paths, false for URIs
1453
 * @returns 0 or an error code
1454
 */
1455
static int
1456
40.8k
xmlNormalizePath(char *path, int isFile) {
1457
40.8k
    char *cur, *out;
1458
40.8k
    int numSeg = 0;
1459
1460
40.8k
    if (path == NULL)
1461
12.0k
  return(-1);
1462
1463
28.7k
    cur = path;
1464
28.7k
    out = path;
1465
1466
28.7k
    if (*cur == 0)
1467
501
        return(0);
1468
1469
28.2k
    if (xmlIsPathSeparator(*cur, isFile)) {
1470
10.8k
        cur++;
1471
10.8k
        *out++ = '/';
1472
10.8k
    }
1473
1474
98.1k
    while (*cur != 0) {
1475
        /*
1476
         * At this point, out is either empty or ends with a separator.
1477
         * Collapse multiple separators first.
1478
         */
1479
78.0k
        while (xmlIsPathSeparator(*cur, isFile)) {
1480
#if defined(LIBXML_WINPATH_ENABLED)
1481
            /* Allow two separators at start of path */
1482
            if ((isFile) && (out == path + 1))
1483
                *out++ = '/';
1484
#endif
1485
7.31k
            cur++;
1486
7.31k
        }
1487
1488
70.7k
        if (*cur == '.') {
1489
8.63k
            if (cur[1] == 0) {
1490
                /* Ignore "." at end of path */
1491
428
                break;
1492
8.20k
            } else if (xmlIsPathSeparator(cur[1], isFile)) {
1493
                /* Skip "./" */
1494
1.67k
                cur += 2;
1495
1.67k
                continue;
1496
6.53k
            } else if ((cur[1] == '.') &&
1497
4.93k
                       ((cur[2] == 0) || xmlIsPathSeparator(cur[2], isFile))) {
1498
4.39k
                if (numSeg > 0) {
1499
                    /* Handle ".." by removing last segment */
1500
6.92k
                    do {
1501
6.92k
                        out--;
1502
6.92k
                    } while ((out > path) &&
1503
6.18k
                             !xmlIsPathSeparator(out[-1], isFile));
1504
1.24k
                    numSeg--;
1505
1506
1.24k
                    if (cur[2] == 0)
1507
415
                        break;
1508
827
                    cur += 3;
1509
827
                    continue;
1510
3.14k
                } else if (out[0] == '/') {
1511
                    /* Ignore extraneous ".." in absolute paths */
1512
282
                    if (cur[2] == 0)
1513
65
                        break;
1514
217
                    cur += 3;
1515
217
                    continue;
1516
2.86k
                } else {
1517
                    /* Keep "../" at start of relative path */
1518
2.86k
                    numSeg--;
1519
2.86k
                }
1520
4.39k
            }
1521
8.63k
        }
1522
1523
        /* Copy segment */
1524
391M
        while ((*cur != 0) && !xmlIsPathSeparator(*cur, isFile)) {
1525
391M
            *out++ = *cur++;
1526
391M
        }
1527
1528
        /* Copy separator */
1529
67.1k
        if (*cur != 0) {
1530
45.8k
            cur++;
1531
45.8k
            *out++ = '/';
1532
45.8k
        }
1533
1534
67.1k
        numSeg++;
1535
67.1k
    }
1536
1537
    /* Keep "." if output is empty and it's a file */
1538
28.2k
    if ((isFile) && (out <= path))
1539
402
        *out++ = '.';
1540
28.2k
    *out = 0;
1541
1542
28.2k
    return(0);
1543
28.7k
}
1544
1545
/**
1546
 * Applies the 5 normalization steps to a path string--that is, RFC 2396
1547
 * Section 5.2, steps 6.c through 6.g.
1548
 *
1549
 * Normalization occurs directly on the string, no new allocation is done
1550
 *
1551
 * @param path  pointer to the path string
1552
 * @returns 0 or an error code
1553
 */
1554
int
1555
10.0k
xmlNormalizeURIPath(char *path) {
1556
10.0k
    return(xmlNormalizePath(path, 0));
1557
10.0k
}
1558
1559
9.10M
static int is_hex(char c) {
1560
9.10M
    if (((c >= '0') && (c <= '9')) ||
1561
8.71M
        ((c >= 'a') && (c <= 'f')) ||
1562
8.70M
        ((c >= 'A') && (c <= 'F')))
1563
9.10M
  return(1);
1564
4.11k
    return(0);
1565
9.10M
}
1566
1567
/**
1568
 * Unescaping routine, but does not check that the string is an URI. The
1569
 * output is a direct unsigned char translation of %XX values (no encoding)
1570
 * Note that the length of the result can only be smaller or same size as
1571
 * the input string.
1572
 *
1573
 * @param str  the string to unescape
1574
 * @param len  the length in bytes to unescape (or <= 0 to indicate full string)
1575
 * @param target  optional destination buffer
1576
 * @returns a copy of the string, but unescaped, will return NULL only in case
1577
 * of error
1578
 */
1579
char *
1580
238k
xmlURIUnescapeString(const char *str, int len, char *target) {
1581
238k
    char *ret, *out;
1582
238k
    const char *in;
1583
1584
238k
    if (str == NULL)
1585
0
  return(NULL);
1586
238k
    if (len <= 0) len = strlen(str);
1587
238k
    if (len < 0) return(NULL);
1588
1589
238k
    if (target == NULL) {
1590
238k
  ret = xmlMalloc(len + 1);
1591
238k
  if (ret == NULL)
1592
42
      return(NULL);
1593
238k
    } else
1594
0
  ret = target;
1595
238k
    in = str;
1596
238k
    out = ret;
1597
135M
    while(len > 0) {
1598
135M
  if ((len > 2) && (*in == '%') && (is_hex(in[1])) && (is_hex(in[2]))) {
1599
4.55M
            int c = 0;
1600
4.55M
      in++;
1601
4.55M
      if ((*in >= '0') && (*in <= '9'))
1602
207k
          c = (*in - '0');
1603
4.34M
      else if ((*in >= 'a') && (*in <= 'f'))
1604
6.05k
          c = (*in - 'a') + 10;
1605
4.33M
      else if ((*in >= 'A') && (*in <= 'F'))
1606
4.33M
          c = (*in - 'A') + 10;
1607
4.55M
      in++;
1608
4.55M
      if ((*in >= '0') && (*in <= '9'))
1609
185k
          c = c * 16 + (*in - '0');
1610
4.36M
      else if ((*in >= 'a') && (*in <= 'f'))
1611
6.10k
          c = c * 16 + (*in - 'a') + 10;
1612
4.36M
      else if ((*in >= 'A') && (*in <= 'F'))
1613
4.36M
          c = c * 16 + (*in - 'A') + 10;
1614
4.55M
      in++;
1615
4.55M
      len -= 3;
1616
            /* Explicit sign change */
1617
4.55M
      *out++ = (char) c;
1618
130M
  } else {
1619
130M
      *out++ = *in++;
1620
130M
      len--;
1621
130M
  }
1622
135M
    }
1623
238k
    *out = 0;
1624
238k
    return(ret);
1625
238k
}
1626
1627
/**
1628
 * This routine escapes a string to hex, ignoring unreserved characters
1629
 * a-z, A-Z, 0-9, "-._~", a few sub-delims "!*'()", the gen-delim "@"
1630
 * (why?) and the characters in the exception list.
1631
 *
1632
 * @param str  string to escape
1633
 * @param list  exception list string of chars not to escape
1634
 * @returns a new escaped string or NULL in case of error.
1635
 */
1636
xmlChar *
1637
12.3k
xmlURIEscapeStr(const xmlChar *str, const xmlChar *list) {
1638
12.3k
    xmlChar *ret, ch;
1639
12.3k
    const xmlChar *in;
1640
12.3k
    int len, out;
1641
1642
12.3k
    if (str == NULL)
1643
0
  return(NULL);
1644
12.3k
    if (str[0] == 0)
1645
231
  return(xmlStrdup(str));
1646
12.0k
    len = xmlStrlen(str);
1647
12.0k
    if (len == 0)
1648
0
        return(NULL);
1649
1650
12.0k
    len += 20;
1651
12.0k
    ret = xmlMalloc(len);
1652
12.0k
    if (ret == NULL)
1653
5
  return(NULL);
1654
12.0k
    in = (const xmlChar *) str;
1655
12.0k
    out = 0;
1656
20.5M
    while(*in != 0) {
1657
20.5M
  if (len - out <= 3) {
1658
1.09k
            xmlChar *temp;
1659
1.09k
            int newSize;
1660
1661
1.09k
            newSize = xmlGrowCapacity(len, 1, 1, XML_MAX_ITEMS);
1662
1.09k
            if (newSize < 0) {
1663
0
    xmlFree(ret);
1664
0
                return(NULL);
1665
0
            }
1666
1.09k
            temp = xmlRealloc(ret, newSize);
1667
1.09k
      if (temp == NULL) {
1668
5
    xmlFree(ret);
1669
5
    return(NULL);
1670
5
      }
1671
1.08k
      ret = temp;
1672
1.08k
            len = newSize;
1673
1.08k
  }
1674
1675
20.5M
  ch = *in;
1676
1677
20.5M
  if ((ch != '@') && (!IS_UNRESERVED(ch)) && (!xmlStrchr(list, ch))) {
1678
5.07M
      unsigned char val;
1679
5.07M
      ret[out++] = '%';
1680
5.07M
      val = ch >> 4;
1681
5.07M
      if (val <= 9)
1682
14.1k
    ret[out++] = '0' + val;
1683
5.05M
      else
1684
5.05M
    ret[out++] = 'A' + val - 0xA;
1685
5.07M
      val = ch & 0xF;
1686
5.07M
      if (val <= 9)
1687
9.82k
    ret[out++] = '0' + val;
1688
5.06M
      else
1689
5.06M
    ret[out++] = 'A' + val - 0xA;
1690
5.07M
      in++;
1691
15.4M
  } else {
1692
15.4M
      ret[out++] = *in++;
1693
15.4M
  }
1694
1695
20.5M
    }
1696
12.0k
    ret[out] = 0;
1697
12.0k
    return(ret);
1698
12.0k
}
1699
1700
/**
1701
 * Escaping routine, does not do validity checks !
1702
 * It will try to escape the chars needing this, but this is heuristic
1703
 * based it's impossible to be sure.
1704
 *
1705
 * 25 May 2001
1706
 * Uses #xmlParseURI and #xmlURIEscapeStr to try to escape correctly
1707
 * according to RFC2396.
1708
 *   - Carl Douglas
1709
 * @param str  the string of the URI to escape
1710
 * @returns an copy of the string, but escaped
1711
 */
1712
xmlChar *
1713
xmlURIEscape(const xmlChar * str)
1714
0
{
1715
0
    xmlChar *ret, *segment = NULL;
1716
0
    xmlURIPtr uri;
1717
0
    int ret2;
1718
1719
0
    if (str == NULL)
1720
0
        return (NULL);
1721
1722
0
    uri = xmlCreateURI();
1723
0
    if (uri != NULL) {
1724
  /*
1725
   * Allow escaping errors in the unescaped form
1726
   */
1727
0
        uri->cleanup = XML_URI_ALLOW_UNWISE;
1728
0
        ret2 = xmlParseURIReference(uri, (const char *)str);
1729
0
        if (ret2) {
1730
0
            xmlFreeURI(uri);
1731
0
            return (NULL);
1732
0
        }
1733
0
    }
1734
1735
0
    if (!uri)
1736
0
        return NULL;
1737
1738
0
    ret = NULL;
1739
1740
0
#define NULLCHK(p) if(!p) { \
1741
0
         xmlFreeURI(uri); \
1742
0
         xmlFree(ret); \
1743
0
         return NULL; } \
1744
0
1745
0
    if (uri->scheme) {
1746
0
        segment = xmlURIEscapeStr(BAD_CAST uri->scheme, BAD_CAST "+-.");
1747
0
        NULLCHK(segment)
1748
0
        ret = xmlStrcat(ret, segment);
1749
0
        ret = xmlStrcat(ret, BAD_CAST ":");
1750
0
        xmlFree(segment);
1751
0
    }
1752
1753
0
    if (uri->authority) {
1754
0
        segment =
1755
0
            xmlURIEscapeStr(BAD_CAST uri->authority, BAD_CAST "/?;:@");
1756
0
        NULLCHK(segment)
1757
0
        ret = xmlStrcat(ret, BAD_CAST "//");
1758
0
        ret = xmlStrcat(ret, segment);
1759
0
        xmlFree(segment);
1760
0
    }
1761
1762
0
    if (uri->user) {
1763
0
        segment = xmlURIEscapeStr(BAD_CAST uri->user, BAD_CAST ";:&=+$,");
1764
0
        NULLCHK(segment)
1765
0
        ret = xmlStrcat(ret,BAD_CAST "//");
1766
0
        ret = xmlStrcat(ret, segment);
1767
0
        ret = xmlStrcat(ret, BAD_CAST "@");
1768
0
        xmlFree(segment);
1769
0
    }
1770
1771
0
    if (uri->server) {
1772
0
        segment = xmlURIEscapeStr(BAD_CAST uri->server, BAD_CAST "/?;:@");
1773
0
        NULLCHK(segment)
1774
0
        if (uri->user == NULL)
1775
0
            ret = xmlStrcat(ret, BAD_CAST "//");
1776
0
        ret = xmlStrcat(ret, segment);
1777
0
        xmlFree(segment);
1778
0
    }
1779
1780
0
    if (uri->port > 0) {
1781
0
        xmlChar port[11];
1782
1783
0
        snprintf((char *) port, 11, "%d", uri->port);
1784
0
        ret = xmlStrcat(ret, BAD_CAST ":");
1785
0
        ret = xmlStrcat(ret, port);
1786
0
    }
1787
1788
0
    if (uri->path) {
1789
0
        segment =
1790
0
            xmlURIEscapeStr(BAD_CAST uri->path, BAD_CAST ":@&=+$,/?;");
1791
0
        NULLCHK(segment)
1792
0
        ret = xmlStrcat(ret, segment);
1793
0
        xmlFree(segment);
1794
0
    }
1795
1796
0
    if (uri->query_raw) {
1797
0
        ret = xmlStrcat(ret, BAD_CAST "?");
1798
0
        ret = xmlStrcat(ret, BAD_CAST uri->query_raw);
1799
0
    }
1800
0
    else if (uri->query) {
1801
0
        segment =
1802
0
            xmlURIEscapeStr(BAD_CAST uri->query, BAD_CAST ";/?:@&=+,$");
1803
0
        NULLCHK(segment)
1804
0
        ret = xmlStrcat(ret, BAD_CAST "?");
1805
0
        ret = xmlStrcat(ret, segment);
1806
0
        xmlFree(segment);
1807
0
    }
1808
1809
0
    if (uri->opaque) {
1810
0
        segment = xmlURIEscapeStr(BAD_CAST uri->opaque, BAD_CAST "");
1811
0
        NULLCHK(segment)
1812
0
        ret = xmlStrcat(ret, segment);
1813
0
        xmlFree(segment);
1814
0
    }
1815
1816
0
    if (uri->fragment) {
1817
0
        segment = xmlURIEscapeStr(BAD_CAST uri->fragment, BAD_CAST "#");
1818
0
        NULLCHK(segment)
1819
0
        ret = xmlStrcat(ret, BAD_CAST "#");
1820
0
        ret = xmlStrcat(ret, segment);
1821
0
        xmlFree(segment);
1822
0
    }
1823
1824
0
    xmlFreeURI(uri);
1825
0
#undef NULLCHK
1826
1827
0
    return (ret);
1828
0
}
1829
1830
/************************************************************************
1831
 *                  *
1832
 *      Public functions        *
1833
 *                  *
1834
 ************************************************************************/
1835
1836
static int
1837
20.7k
xmlIsAbsolutePath(const xmlChar *path) {
1838
20.7k
    int c = path[0];
1839
1840
20.7k
    if (xmlIsPathSeparator(c, 1))
1841
1.89k
        return(1);
1842
1843
#if defined(LIBXML_WINPATH_ENABLED)
1844
    if ((((c >= 'A') && (c <= 'Z')) ||
1845
         ((c >= 'a') && (c <= 'z'))) &&
1846
        (path[1] == ':'))
1847
        return(1);
1848
#endif
1849
1850
18.8k
    return(0);
1851
20.7k
}
1852
1853
/**
1854
 * Resolves a filesystem path from a base path.
1855
 *
1856
 * @param escRef  the filesystem path
1857
 * @param base  the base value
1858
 * @param out  pointer to result URI
1859
 * @returns 0 on success, -1 if a memory allocation failed or an error
1860
 * code if URI or base are invalid.
1861
 */
1862
static int
1863
17.7k
xmlResolvePath(const xmlChar *escRef, const xmlChar *base, xmlChar **out) {
1864
17.7k
    const xmlChar *fragment;
1865
17.7k
    xmlChar *tmp = NULL;
1866
17.7k
    xmlChar *ref = NULL;
1867
17.7k
    xmlChar *result = NULL;
1868
17.7k
    int ret = -1;
1869
17.7k
    int i;
1870
1871
17.7k
    if (out == NULL)
1872
0
        return(1);
1873
17.7k
    *out = NULL;
1874
1875
17.7k
    if ((escRef == NULL) || (escRef[0] == 0)) {
1876
3.21k
        if ((base == NULL) || (base[0] == 0))
1877
513
            return(1);
1878
2.69k
        ref = xmlStrdup(base);
1879
2.69k
        if (ref == NULL)
1880
1
            goto err_memory;
1881
2.69k
        *out = ref;
1882
2.69k
        return(0);
1883
2.69k
    }
1884
1885
    /*
1886
     * If a URI is resolved, we can assume it is a valid URI and not
1887
     * a filesystem path. This means we have to unescape the part
1888
     * before the fragment.
1889
     */
1890
14.5k
    fragment = xmlStrchr(escRef, '#');
1891
14.5k
    if (fragment != NULL) {
1892
1.85k
        tmp = xmlStrndup(escRef, fragment - escRef);
1893
1.85k
        if (tmp == NULL)
1894
1
            goto err_memory;
1895
1.84k
        escRef = tmp;
1896
1.84k
    }
1897
1898
14.5k
    ref = (xmlChar *) xmlURIUnescapeString((char *) escRef, -1, NULL);
1899
14.5k
    if (ref == NULL)
1900
6
        goto err_memory;
1901
1902
14.5k
    if ((base == NULL) || (base[0] == 0))
1903
2.19k
        goto done;
1904
1905
12.3k
    if (xmlIsAbsolutePath(ref))
1906
739
        goto done;
1907
1908
    /*
1909
     * Remove last segment from base
1910
     */
1911
11.6k
    i = xmlStrlen(base);
1912
3.09M
    while ((i > 0) && !xmlIsPathSeparator(base[i-1], 1))
1913
3.07M
        i--;
1914
1915
    /*
1916
     * Concatenate base and ref
1917
     */
1918
11.6k
    if (i > 0) {
1919
4.69k
        int refLen = xmlStrlen(ref);
1920
1921
4.69k
        result = xmlMalloc(i + refLen + 1);
1922
4.69k
        if (result == NULL)
1923
2
            goto err_memory;
1924
1925
4.69k
        memcpy(result, base, i);
1926
4.69k
        memcpy(result + i, ref, refLen + 1);
1927
4.69k
    }
1928
1929
    /*
1930
     * Normalize
1931
     */
1932
11.6k
    xmlNormalizePath((char *) result, 1);
1933
1934
14.5k
done:
1935
14.5k
    if (result == NULL) {
1936
9.88k
        result = ref;
1937
9.88k
        ref = NULL;
1938
9.88k
    }
1939
1940
14.5k
    if (fragment != NULL) {
1941
1.84k
        result = xmlStrcat(result, fragment);
1942
1.84k
        if (result == NULL)
1943
0
            goto err_memory;
1944
1.84k
    }
1945
1946
14.5k
    *out = result;
1947
14.5k
    ret = 0;
1948
1949
14.5k
err_memory:
1950
14.5k
    xmlFree(tmp);
1951
14.5k
    xmlFree(ref);
1952
14.5k
    return(ret);
1953
14.5k
}
1954
1955
/**
1956
 * Computes he final URI of the reference done by checking that
1957
 * the given URI is valid, and building the final URI using the
1958
 * base URI. This is processed according to section 5.2 of the
1959
 * RFC 2396
1960
 *
1961
 * 5.2. Resolving Relative References to Absolute Form
1962
 *
1963
 * @since 2.13.0
1964
 *
1965
 * @param URI  the URI instance found in the document
1966
 * @param base  the base value
1967
 * @param valPtr  pointer to result URI
1968
 * @returns 0 on success, -1 if a memory allocation failed or an error
1969
 * code if URI or base are invalid.
1970
 */
1971
int
1972
47.1k
xmlBuildURISafe(const xmlChar *URI, const xmlChar *base, xmlChar **valPtr) {
1973
47.1k
    xmlChar *val = NULL;
1974
47.1k
    int ret, len, indx, cur, out;
1975
47.1k
    xmlURIPtr ref = NULL;
1976
47.1k
    xmlURIPtr bas = NULL;
1977
47.1k
    xmlURIPtr res = NULL;
1978
1979
47.1k
    if (valPtr == NULL)
1980
0
        return(1);
1981
47.1k
    *valPtr = NULL;
1982
1983
47.1k
    if (URI == NULL)
1984
0
        return(1);
1985
1986
47.1k
    if (base == NULL) {
1987
393
        val = xmlStrdup(URI);
1988
393
        if (val == NULL)
1989
1
            return(-1);
1990
392
        *valPtr = val;
1991
392
        return(0);
1992
393
    }
1993
1994
    /*
1995
     * 1) The URI reference is parsed into the potential four components and
1996
     *    fragment identifier, as described in Section 4.3.
1997
     *
1998
     *    NOTE that a completely empty URI is treated by modern browsers
1999
     *    as a reference to "." rather than as a synonym for the current
2000
     *    URI.  Should we do that here?
2001
     */
2002
46.7k
    if (URI[0] != 0)
2003
41.8k
        ret = xmlParseURISafe((const char *) URI, &ref);
2004
4.92k
    else
2005
4.92k
        ret = 0;
2006
46.7k
    if (ret != 0)
2007
3.07k
  goto done;
2008
43.7k
    if ((ref != NULL) && (ref->scheme != NULL)) {
2009
  /*
2010
   * The URI is absolute don't modify.
2011
   */
2012
2.89k
  val = xmlStrdup(URI);
2013
2.89k
        if (val == NULL)
2014
3
            ret = -1;
2015
2.89k
  goto done;
2016
2.89k
    }
2017
2018
    /*
2019
     * If base has no scheme or authority, it is assumed to be a
2020
     * filesystem path.
2021
     */
2022
40.8k
    if (xmlStrstr(base, BAD_CAST "://") == NULL) {
2023
17.7k
        xmlFreeURI(ref);
2024
17.7k
        return(xmlResolvePath(URI, base, valPtr));
2025
17.7k
    }
2026
2027
#if defined(LIBXML_WINPATH_ENABLED)
2028
    /*
2029
     * Resolve paths with a Windows drive letter as filesystem path
2030
     * even if base has a scheme.
2031
     */
2032
    if ((ref != NULL) && (ref->path != NULL)) {
2033
        int c = ref->path[0];
2034
2035
        if ((((c >= 'A') && (c <= 'Z')) ||
2036
             ((c >= 'a') && (c <= 'z'))) &&
2037
            (ref->path[1] == ':')) {
2038
            xmlFreeURI(ref);
2039
            return(xmlResolvePath(URI, base, valPtr));
2040
        }
2041
    }
2042
#endif
2043
2044
23.0k
    ret = xmlParseURISafe((const char *) base, &bas);
2045
23.0k
    if (ret < 0)
2046
17
        goto done;
2047
23.0k
    if (ret != 0) {
2048
7.12k
  if (ref) {
2049
6.12k
            ret = 0;
2050
6.12k
      val = xmlSaveUri(ref);
2051
6.12k
            if (val == NULL)
2052
7
                ret = -1;
2053
6.12k
        }
2054
7.12k
  goto done;
2055
7.12k
    }
2056
15.8k
    if (ref == NULL) {
2057
  /*
2058
   * the base fragment must be ignored
2059
   */
2060
706
  if (bas->fragment != NULL) {
2061
134
      xmlFree(bas->fragment);
2062
134
      bas->fragment = NULL;
2063
134
  }
2064
706
  val = xmlSaveUri(bas);
2065
706
        if (val == NULL)
2066
2
            ret = -1;
2067
706
  goto done;
2068
706
    }
2069
2070
    /*
2071
     * 2) If the path component is empty and the scheme, authority, and
2072
     *    query components are undefined, then it is a reference to the
2073
     *    current document and we are done.  Otherwise, the reference URI's
2074
     *    query and fragment components are defined as found (or not found)
2075
     *    within the URI reference and not inherited from the base URI.
2076
     *
2077
     *    NOTE that in modern browsers, the parsing differs from the above
2078
     *    in the following aspect:  the query component is allowed to be
2079
     *    defined while still treating this as a reference to the current
2080
     *    document.
2081
     */
2082
15.1k
    ret = -1;
2083
15.1k
    res = xmlCreateURI();
2084
15.1k
    if (res == NULL)
2085
4
  goto done;
2086
15.1k
    if ((ref->scheme == NULL) && (ref->path == NULL) &&
2087
3.84k
  ((ref->authority == NULL) && (ref->server == NULL) &&
2088
3.18k
         (ref->port == PORT_EMPTY))) {
2089
3.00k
  if (bas->scheme != NULL) {
2090
2.57k
      res->scheme = xmlMemStrdup(bas->scheme);
2091
2.57k
            if (res->scheme == NULL)
2092
3
                goto done;
2093
2.57k
        }
2094
3.00k
  if (bas->authority != NULL) {
2095
0
      res->authority = xmlMemStrdup(bas->authority);
2096
0
            if (res->authority == NULL)
2097
0
                goto done;
2098
3.00k
        } else {
2099
3.00k
      if (bas->server != NULL) {
2100
1.60k
    res->server = xmlMemStrdup(bas->server);
2101
1.60k
                if (res->server == NULL)
2102
1
                    goto done;
2103
1.60k
            }
2104
3.00k
      if (bas->user != NULL) {
2105
1.18k
    res->user = xmlMemStrdup(bas->user);
2106
1.18k
                if (res->user == NULL)
2107
1
                    goto done;
2108
1.18k
            }
2109
3.00k
      res->port = bas->port;
2110
3.00k
  }
2111
3.00k
  if (bas->path != NULL) {
2112
1.70k
      res->path = xmlMemStrdup(bas->path);
2113
1.70k
            if (res->path == NULL)
2114
1
                goto done;
2115
1.70k
        }
2116
3.00k
  if (ref->query_raw != NULL) {
2117
2.03k
      res->query_raw = xmlMemStrdup (ref->query_raw);
2118
2.03k
            if (res->query_raw == NULL)
2119
2
                goto done;
2120
2.03k
        } else if (ref->query != NULL) {
2121
0
      res->query = xmlMemStrdup(ref->query);
2122
0
            if (res->query == NULL)
2123
0
                goto done;
2124
969
        } else if (bas->query_raw != NULL) {
2125
352
      res->query_raw = xmlMemStrdup(bas->query_raw);
2126
352
            if (res->query_raw == NULL)
2127
1
                goto done;
2128
617
        } else if (bas->query != NULL) {
2129
0
      res->query = xmlMemStrdup(bas->query);
2130
0
            if (res->query == NULL)
2131
0
                goto done;
2132
0
        }
2133
2.99k
  if (ref->fragment != NULL) {
2134
1.12k
      res->fragment = xmlMemStrdup(ref->fragment);
2135
1.12k
            if (res->fragment == NULL)
2136
1
                goto done;
2137
1.12k
        }
2138
2.99k
  goto step_7;
2139
2.99k
    }
2140
2141
    /*
2142
     * 3) If the scheme component is defined, indicating that the reference
2143
     *    starts with a scheme name, then the reference is interpreted as an
2144
     *    absolute URI and we are done.  Otherwise, the reference URI's
2145
     *    scheme is inherited from the base URI's scheme component.
2146
     */
2147
12.1k
    if (ref->scheme != NULL) {
2148
0
  val = xmlSaveUri(ref);
2149
0
        if (val != NULL)
2150
0
            ret = 0;
2151
0
  goto done;
2152
0
    }
2153
12.1k
    if (bas->scheme != NULL) {
2154
8.00k
  res->scheme = xmlMemStrdup(bas->scheme);
2155
8.00k
        if (res->scheme == NULL)
2156
5
            goto done;
2157
8.00k
    }
2158
2159
12.1k
    if (ref->query_raw != NULL) {
2160
2.32k
  res->query_raw = xmlMemStrdup(ref->query_raw);
2161
2.32k
        if (res->query_raw == NULL)
2162
1
            goto done;
2163
9.83k
    } else if (ref->query != NULL) {
2164
0
  res->query = xmlMemStrdup(ref->query);
2165
0
        if (res->query == NULL)
2166
0
            goto done;
2167
0
    }
2168
12.1k
    if (ref->fragment != NULL) {
2169
2.47k
  res->fragment = xmlMemStrdup(ref->fragment);
2170
2.47k
        if (res->fragment == NULL)
2171
1
            goto done;
2172
2.47k
    }
2173
2174
    /*
2175
     * 4) If the authority component is defined, then the reference is a
2176
     *    network-path and we skip to step 7.  Otherwise, the reference
2177
     *    URI's authority is inherited from the base URI's authority
2178
     *    component, which will also be undefined if the URI scheme does not
2179
     *    use an authority component.
2180
     */
2181
12.1k
    if ((ref->authority != NULL) || (ref->server != NULL) ||
2182
11.1k
         (ref->port != PORT_EMPTY)) {
2183
1.20k
  if (ref->authority != NULL) {
2184
0
      res->authority = xmlMemStrdup(ref->authority);
2185
0
            if (res->authority == NULL)
2186
0
                goto done;
2187
1.20k
        } else {
2188
1.20k
            if (ref->server != NULL) {
2189
1.02k
                res->server = xmlMemStrdup(ref->server);
2190
1.02k
                if (res->server == NULL)
2191
1
                    goto done;
2192
1.02k
            }
2193
1.20k
      if (ref->user != NULL) {
2194
456
    res->user = xmlMemStrdup(ref->user);
2195
456
                if (res->user == NULL)
2196
1
                    goto done;
2197
456
            }
2198
1.20k
            res->port = ref->port;
2199
1.20k
  }
2200
1.20k
  if (ref->path != NULL) {
2201
376
      res->path = xmlMemStrdup(ref->path);
2202
376
            if (res->path == NULL)
2203
1
                goto done;
2204
376
        }
2205
1.20k
  goto step_7;
2206
1.20k
    }
2207
10.9k
    if (bas->authority != NULL) {
2208
0
  res->authority = xmlMemStrdup(bas->authority);
2209
0
        if (res->authority == NULL)
2210
0
            goto done;
2211
10.9k
    } else if ((bas->server != NULL) || (bas->port != PORT_EMPTY)) {
2212
5.65k
  if (bas->server != NULL) {
2213
4.73k
      res->server = xmlMemStrdup(bas->server);
2214
4.73k
            if (res->server == NULL)
2215
1
                goto done;
2216
4.73k
        }
2217
5.65k
  if (bas->user != NULL) {
2218
987
      res->user = xmlMemStrdup(bas->user);
2219
987
            if (res->user == NULL)
2220
1
                goto done;
2221
987
        }
2222
5.65k
  res->port = bas->port;
2223
5.65k
    }
2224
2225
    /*
2226
     * 5) If the path component begins with a slash character ("/"), then
2227
     *    the reference is an absolute-path and we skip to step 7.
2228
     */
2229
10.9k
    if ((ref->path != NULL) && (ref->path[0] == '/')) {
2230
893
  res->path = xmlMemStrdup(ref->path);
2231
893
        if (res->path == NULL)
2232
1
            goto done;
2233
892
  goto step_7;
2234
893
    }
2235
2236
2237
    /*
2238
     * 6) If this step is reached, then we are resolving a relative-path
2239
     *    reference.  The relative path needs to be merged with the base
2240
     *    URI's path.  Although there are many ways to do this, we will
2241
     *    describe a simple method using a separate string buffer.
2242
     *
2243
     * Allocate a buffer large enough for the result string.
2244
     */
2245
10.0k
    len = 2; /* extra / and 0 */
2246
10.0k
    if (ref->path != NULL)
2247
10.0k
  len += strlen(ref->path);
2248
10.0k
    if (bas->path != NULL)
2249
5.54k
  len += strlen(bas->path);
2250
10.0k
    res->path = xmlMalloc(len);
2251
10.0k
    if (res->path == NULL)
2252
4
  goto done;
2253
10.0k
    res->path[0] = 0;
2254
2255
    /*
2256
     * a) All but the last segment of the base URI's path component is
2257
     *    copied to the buffer.  In other words, any characters after the
2258
     *    last (right-most) slash character, if any, are excluded.
2259
     */
2260
10.0k
    cur = 0;
2261
10.0k
    out = 0;
2262
10.0k
    if (bas->path != NULL) {
2263
16.2k
  while (bas->path[cur] != 0) {
2264
129k
      while ((bas->path[cur] != 0) && (bas->path[cur] != '/'))
2265
114k
    cur++;
2266
14.9k
      if (bas->path[cur] == 0)
2267
4.31k
    break;
2268
2269
10.6k
      cur++;
2270
117k
      while (out < cur) {
2271
106k
    res->path[out] = bas->path[out];
2272
106k
    out++;
2273
106k
      }
2274
10.6k
  }
2275
5.54k
    }
2276
10.0k
    res->path[out] = 0;
2277
2278
    /*
2279
     * b) The reference's path component is appended to the buffer
2280
     *    string.
2281
     */
2282
10.0k
    if (ref->path != NULL && ref->path[0] != 0) {
2283
9.54k
  indx = 0;
2284
  /*
2285
   * Ensure the path includes a '/'
2286
   */
2287
9.54k
  if ((out == 0) && ((bas->server != NULL) || bas->port != PORT_EMPTY))
2288
4.14k
      res->path[out++] = '/';
2289
752k
  while (ref->path[indx] != 0) {
2290
742k
      res->path[out++] = ref->path[indx++];
2291
742k
  }
2292
9.54k
    }
2293
10.0k
    res->path[out] = 0;
2294
2295
    /*
2296
     * Steps c) to h) are really path normalization steps
2297
     */
2298
10.0k
    xmlNormalizeURIPath(res->path);
2299
2300
15.1k
step_7:
2301
2302
    /*
2303
     * 7) The resulting URI components, including any inherited from the
2304
     *    base URI, are recombined to give the absolute form of the URI
2305
     *    reference.
2306
     */
2307
15.1k
    val = xmlSaveUri(res);
2308
15.1k
    if (val != NULL)
2309
15.1k
        ret = 0;
2310
2311
28.9k
done:
2312
28.9k
    if (ref != NULL)
2313
24.2k
  xmlFreeURI(ref);
2314
28.9k
    if (bas != NULL)
2315
15.8k
  xmlFreeURI(bas);
2316
28.9k
    if (res != NULL)
2317
15.1k
  xmlFreeURI(res);
2318
28.9k
    *valPtr = val;
2319
28.9k
    return(ret);
2320
15.1k
}
2321
2322
/**
2323
 * Computes he final URI of the reference done by checking that
2324
 * the given URI is valid, and building the final URI using the
2325
 * base URI. This is processed according to section 5.2 of the
2326
 * RFC 2396
2327
 *
2328
 * 5.2. Resolving Relative References to Absolute Form
2329
 *
2330
 * @param URI  the URI instance found in the document
2331
 * @param base  the base value
2332
 * @returns a new URI string (to be freed by the caller) or NULL in case
2333
 *         of error.
2334
 */
2335
xmlChar *
2336
0
xmlBuildURI(const xmlChar *URI, const xmlChar *base) {
2337
0
    xmlChar *out;
2338
2339
0
    xmlBuildURISafe(URI, base, &out);
2340
0
    return(out);
2341
0
}
2342
2343
static int
2344
24.1k
xmlParseUriOrPath(const char *str, xmlURIPtr *out, int *drive) {
2345
24.1k
    xmlURIPtr uri;
2346
24.1k
    char *buf = NULL;
2347
24.1k
    int ret;
2348
2349
24.1k
    *out = NULL;
2350
24.1k
    *drive = 0;
2351
2352
24.1k
    uri = xmlCreateURI();
2353
24.1k
    if (uri == NULL) {
2354
3
        ret = -1;
2355
3
  goto done;
2356
3
    }
2357
2358
24.1k
    if (xmlStrstr(BAD_CAST str, BAD_CAST "://") == NULL) {
2359
8.36k
        const char *path;
2360
8.36k
        size_t pathSize;
2361
8.36k
        int prependSlash = 0;
2362
2363
8.36k
        buf = xmlMemStrdup(str);
2364
8.36k
        if (buf == NULL) {
2365
2
            ret = -1;
2366
2
            goto done;
2367
2
        }
2368
8.35k
        xmlNormalizePath(buf, /* isFile */ 1);
2369
2370
8.35k
        path = buf;
2371
2372
8.35k
        if (xmlIsAbsolutePath(BAD_CAST buf)) {
2373
#if defined(LIBXML_WINPATH_ENABLED)
2374
            const char *server = NULL;
2375
            int isFileScheme = 0;
2376
#endif
2377
2378
#if defined(LIBXML_WINPATH_ENABLED)
2379
            if (strncmp(buf, "//?/UNC/", 8) == 0) {
2380
                server = buf + 8;
2381
                isFileScheme = 1;
2382
            } else if (strncmp(buf, "//?/", 4) == 0) {
2383
                path = buf + 3;
2384
                isFileScheme = 1;
2385
            } else if (strncmp(buf, "//", 2) == 0) {
2386
                server = buf + 2;
2387
                isFileScheme = 1;
2388
            }
2389
2390
            if (server != NULL) {
2391
                const char *end = strchr(server, '/');
2392
2393
                if (end == NULL) {
2394
                    uri->server = xmlMemStrdup(server);
2395
                    path = "/";
2396
                } else {
2397
                    uri->server = (char *) xmlStrndup(BAD_CAST server,
2398
                                                      end - server);
2399
                    path = end;
2400
                }
2401
                if (uri->server == NULL) {
2402
                    ret = -1;
2403
                    goto done;
2404
                }
2405
            }
2406
2407
            if ((((path[0] >= 'A') && (path[0] <= 'Z')) ||
2408
                 ((path[0] >= 'a') && (path[0] <= 'z'))) &&
2409
                (path[1] == ':')) {
2410
                prependSlash = 1;
2411
                isFileScheme = 1;
2412
            }
2413
2414
            if (isFileScheme) {
2415
                uri->scheme = xmlMemStrdup("file");
2416
                if (uri->scheme == NULL) {
2417
                    ret = -1;
2418
                    goto done;
2419
                }
2420
2421
                if (uri->server == NULL)
2422
                    uri->port = PORT_EMPTY_SERVER;
2423
            }
2424
#endif
2425
1.16k
        }
2426
2427
8.35k
        pathSize = strlen(path);
2428
8.35k
        uri->path = xmlMalloc(pathSize + prependSlash + 1);
2429
8.35k
        if (uri->path == NULL) {
2430
3
            ret = -1;
2431
3
            goto done;
2432
3
        }
2433
8.35k
        if (prependSlash) {
2434
0
            uri->path[0] = '/';
2435
0
            memcpy(uri->path + 1, path, pathSize + 1);
2436
8.35k
        } else {
2437
8.35k
            memcpy(uri->path, path, pathSize + 1);
2438
8.35k
        }
2439
15.8k
    } else {
2440
15.8k
  ret = xmlParseURIReference(uri, str);
2441
15.8k
  if (ret != 0)
2442
5.01k
      goto done;
2443
2444
10.7k
        xmlNormalizePath(uri->path, /* isFile */ 0);
2445
10.7k
    }
2446
2447
#if defined(LIBXML_WINPATH_ENABLED)
2448
    if ((uri->path[0] == '/') &&
2449
        (((uri->path[1] >= 'A') && (uri->path[1] <= 'Z')) ||
2450
         ((uri->path[1] >= 'a') && (uri->path[1] <= 'z'))) &&
2451
        (uri->path[2] == ':'))
2452
        *drive = uri->path[1];
2453
#endif
2454
2455
19.1k
    *out = uri;
2456
19.1k
    uri = NULL;
2457
19.1k
    ret = 0;
2458
2459
24.1k
done:
2460
24.1k
    xmlFreeURI(uri);
2461
24.1k
    xmlFree(buf);
2462
2463
24.1k
    return(ret);
2464
19.1k
}
2465
2466
/**
2467
 * Expresses the URI of the reference in terms relative to the
2468
 * base. Some examples of this operation include:
2469
 *
2470
 *     base = "http://site1.com/docs/book1.html"
2471
 *        URI input                        URI returned
2472
 *     http://site1.com/docs/pic1.gif   pic1.gif
2473
 *     http://site2.com/docs/pic1.gif   http://site2.com/docs/pic1.gif
2474
 *
2475
 *     base = "docs/book1.html"
2476
 *        URI input                        URI returned
2477
 *     docs/pic1.gif                    pic1.gif
2478
 *     docs/img/pic1.gif                img/pic1.gif
2479
 *     img/pic1.gif                     ../img/pic1.gif
2480
 *     http://site1.com/docs/pic1.gif   http://site1.com/docs/pic1.gif
2481
 *
2482
 * @since 2.13.0
2483
 *
2484
 * @param URI  the URI reference under consideration
2485
 * @param base  the base value
2486
 * @param valPtr  pointer to result URI
2487
 * @returns 0 on success, -1 if a memory allocation failed or an error
2488
 * code if URI or base are invalid.
2489
 */
2490
int
2491
xmlBuildRelativeURISafe(const xmlChar * URI, const xmlChar * base,
2492
                        xmlChar **valPtr)
2493
14.4k
{
2494
14.4k
    xmlChar *val = NULL;
2495
14.4k
    int ret = 0;
2496
14.4k
    size_t ix = 0;
2497
14.4k
    size_t nbslash = 0;
2498
14.4k
    size_t len = 0;
2499
14.4k
    xmlURIPtr ref = NULL;
2500
14.4k
    xmlURIPtr bas = NULL;
2501
14.4k
    const xmlChar *bptr, *uptr, *rptr;
2502
14.4k
    xmlChar *vptr;
2503
14.4k
    int remove_path = 0;
2504
14.4k
    int refDrive, baseDrive;
2505
2506
14.4k
    if (valPtr == NULL)
2507
0
        return(1);
2508
14.4k
    *valPtr = NULL;
2509
14.4k
    if ((URI == NULL) || (*URI == 0))
2510
429
  return(1);
2511
2512
13.9k
    ret = xmlParseUriOrPath((char *) URI, &ref, &refDrive);
2513
13.9k
    if (ret < 0)
2514
6
        goto done;
2515
13.9k
    if (ret != 0) {
2516
        /* Return URI if URI is invalid */
2517
3.29k
        ret = 0;
2518
3.29k
        val = xmlStrdup(URI);
2519
3.29k
        if (val == NULL)
2520
1
            ret = -1;
2521
3.29k
        goto done;
2522
3.29k
    }
2523
2524
    /* Return URI if base is empty */
2525
10.6k
    if ((base == NULL) || (*base == 0))
2526
504
        goto done;
2527
2528
10.1k
    ret = xmlParseUriOrPath((char *) base, &bas, &baseDrive);
2529
10.1k
    if (ret < 0)
2530
5
        goto done;
2531
10.1k
    if (ret != 0) {
2532
        /* Return URI if base is invalid */
2533
1.71k
        ret = 0;
2534
1.71k
        goto done;
2535
1.71k
    }
2536
2537
    /*
2538
     * If the scheme / server on the URI differs from the base,
2539
     * just return the URI
2540
     */
2541
8.46k
    if ((xmlStrcmp ((xmlChar *)bas->scheme, (xmlChar *)ref->scheme)) ||
2542
7.49k
  (xmlStrcmp ((xmlChar *)bas->server, (xmlChar *)ref->server)) ||
2543
7.21k
        (bas->port != ref->port) ||
2544
6.87k
        (baseDrive != refDrive)) {
2545
1.58k
  goto done;
2546
1.58k
    }
2547
6.87k
    if (xmlStrEqual((xmlChar *)bas->path, (xmlChar *)ref->path)) {
2548
514
  val = xmlStrdup(BAD_CAST "");
2549
514
        if (val == NULL)
2550
1
            ret = -1;
2551
514
  goto done;
2552
514
    }
2553
6.36k
    if (bas->path == NULL) {
2554
460
  val = xmlStrdup((xmlChar *)ref->path);
2555
460
        if (val == NULL) {
2556
1
            ret = -1;
2557
1
            goto done;
2558
1
        }
2559
459
  goto escape;
2560
460
    }
2561
5.90k
    if (ref->path == NULL) {
2562
1.43k
        ref->path = (char *) "/";
2563
1.43k
  remove_path = 1;
2564
1.43k
    }
2565
2566
5.90k
    bptr = (xmlChar *) bas->path;
2567
5.90k
    rptr = (xmlChar *) ref->path;
2568
2569
    /*
2570
     * Return URI if URI and base aren't both absolute or relative.
2571
     */
2572
5.90k
    if ((bptr[0] == '/') != (rptr[0] == '/'))
2573
1.41k
        goto done;
2574
2575
    /*
2576
     * At this point we can compare the two paths
2577
     */
2578
4.49k
    {
2579
4.49k
        size_t pos = 0;
2580
2581
        /*
2582
         * Next we compare the two strings and find where they first differ
2583
         */
2584
16.4k
  while ((bptr[pos] == rptr[pos]) && (bptr[pos] != 0))
2585
11.9k
      pos++;
2586
2587
4.49k
  if (bptr[pos] == rptr[pos]) {
2588
201
      val = xmlStrdup(BAD_CAST "");
2589
201
            if (val == NULL)
2590
1
                ret = -1;
2591
201
      goto done;    /* (I can't imagine why anyone would do this) */
2592
201
  }
2593
2594
  /*
2595
   * In URI, "back up" to the last '/' encountered.  This will be the
2596
   * beginning of the "unique" suffix of URI
2597
   */
2598
4.28k
  ix = pos;
2599
5.15k
  for (; ix > 0; ix--) {
2600
3.62k
      if (rptr[ix - 1] == '/')
2601
2.76k
    break;
2602
3.62k
  }
2603
4.28k
  uptr = (xmlChar *)&rptr[ix];
2604
2605
  /*
2606
   * In base, count the number of '/' from the differing point
2607
   */
2608
44.2k
  for (; bptr[ix] != 0; ix++) {
2609
39.9k
      if (bptr[ix] == '/')
2610
3.58k
    nbslash++;
2611
39.9k
  }
2612
2613
  /*
2614
   * e.g: URI="foo/" base="foo/bar" -> "./"
2615
   */
2616
4.28k
  if (nbslash == 0 && !uptr[0]) {
2617
982
      val = xmlStrdup(BAD_CAST "./");
2618
982
            if (val == NULL)
2619
2
                ret = -1;
2620
982
      goto done;
2621
982
  }
2622
2623
3.30k
  len = (size_t) xmlStrlen (uptr) + 1;
2624
3.30k
    }
2625
2626
3.30k
    if (nbslash == 0) {
2627
1.41k
  if (uptr != NULL) {
2628
      /* exception characters from xmlSaveUri */
2629
1.41k
      val = xmlURIEscapeStr(uptr, BAD_CAST "/;&=+$,");
2630
1.41k
            if (val == NULL)
2631
1
                ret = -1;
2632
1.41k
        }
2633
1.41k
  goto done;
2634
1.41k
    }
2635
2636
    /*
2637
     * Allocate just enough space for the returned string -
2638
     * length of the remainder of the URI, plus enough space
2639
     * for the "../" groups, plus one for the terminator
2640
     */
2641
1.89k
    if (len + 3 * nbslash > SIZE_MAX) {
2642
0
        ret = -1;
2643
0
        goto done;
2644
0
    }
2645
1.89k
    val = (xmlChar *) xmlMalloc (len + 3 * nbslash);
2646
1.89k
    if (val == NULL) {
2647
1
        ret = -1;
2648
1
  goto done;
2649
1
    }
2650
1.89k
    vptr = val;
2651
    /*
2652
     * Put in as many "../" as needed
2653
     */
2654
5.47k
    for (; nbslash>0; nbslash--) {
2655
3.58k
  *vptr++ = '.';
2656
3.58k
  *vptr++ = '.';
2657
3.58k
  *vptr++ = '/';
2658
3.58k
    }
2659
    /*
2660
     * Finish up with the end of the URI
2661
     */
2662
1.89k
    if (uptr != NULL) {
2663
1.89k
        if ((vptr > val) && (len > 0) &&
2664
1.89k
      (uptr[0] == '/') && (vptr[-1] == '/')) {
2665
0
      memcpy (vptr, uptr + 1, len - 1);
2666
0
      vptr[len - 2] = 0;
2667
1.89k
  } else {
2668
1.89k
      memcpy (vptr, uptr, len);
2669
1.89k
      vptr[len - 1] = 0;
2670
1.89k
  }
2671
1.89k
    } else {
2672
0
  vptr[len - 1] = 0;
2673
0
    }
2674
2675
2.35k
escape:
2676
    /* escape the freshly-built path */
2677
2.35k
    vptr = val;
2678
    /* exception characters from xmlSaveUri */
2679
2.35k
    val = xmlURIEscapeStr(vptr, BAD_CAST "/;&=+$,");
2680
2.35k
    if (val == NULL)
2681
2
        ret = -1;
2682
2.35k
    else
2683
2.35k
        ret = 0;
2684
2.35k
    xmlFree(vptr);
2685
2686
13.9k
done:
2687
13.9k
    if ((ret == 0) && (val == NULL)) {
2688
5.21k
        val = xmlSaveUri(ref);
2689
5.21k
        if (val == NULL)
2690
2
            ret = -1;
2691
5.21k
    }
2692
2693
    /*
2694
     * Free the working variables
2695
     */
2696
13.9k
    if (remove_path != 0)
2697
1.43k
        ref->path = NULL;
2698
13.9k
    if (ref != NULL)
2699
10.6k
  xmlFreeURI (ref);
2700
13.9k
    if (bas != NULL)
2701
8.46k
  xmlFreeURI (bas);
2702
13.9k
    if (ret != 0) {
2703
23
        xmlFree(val);
2704
23
        val = NULL;
2705
23
    }
2706
2707
13.9k
    *valPtr = val;
2708
13.9k
    return(ret);
2709
2.35k
}
2710
2711
/**
2712
 * See #xmlBuildRelativeURISafe.
2713
 *
2714
 * @param URI  the URI reference under consideration
2715
 * @param base  the base value
2716
 * @returns a new URI string (to be freed by the caller) or NULL in case
2717
 * error.
2718
 */
2719
xmlChar *
2720
xmlBuildRelativeURI(const xmlChar * URI, const xmlChar * base)
2721
0
{
2722
0
    xmlChar *val;
2723
2724
0
    xmlBuildRelativeURISafe(URI, base, &val);
2725
0
    return(val);
2726
0
}
2727
2728
/**
2729
 * Prepares a path.
2730
 *
2731
 * If the path contains the substring "://", it is considered a
2732
 * Legacy Extended IRI. Characters which aren't allowed in URIs are
2733
 * escaped.
2734
 *
2735
 * Otherwise, the path is considered a filesystem path which is
2736
 * copied without modification.
2737
 *
2738
 * The caller is responsible for freeing the memory occupied
2739
 * by the returned string. If there is insufficient memory available, or the
2740
 * argument is NULL, the function returns NULL.
2741
 *
2742
 * @param path  the resource locator in a filesystem notation
2743
 * @returns the escaped path.
2744
 */
2745
xmlChar *
2746
xmlCanonicPath(const xmlChar *path)
2747
39.6k
{
2748
39.6k
    xmlChar *ret;
2749
2750
39.6k
    if (path == NULL)
2751
0
  return(NULL);
2752
2753
    /* Check if this is an "absolute uri" */
2754
39.6k
    if (xmlStrstr(path, BAD_CAST "://") != NULL) {
2755
  /*
2756
         * Escape all characters except reserved, unreserved and the
2757
         * percent sign.
2758
         *
2759
         * xmlURIEscapeStr already keeps unreserved characters, so we
2760
         * pass gen-delims, sub-delims and "%" to ignore.
2761
         */
2762
8.54k
        ret = xmlURIEscapeStr(path, BAD_CAST ":/?#[]@!$&()*+,;='%");
2763
31.0k
    } else {
2764
31.0k
        ret = xmlStrdup((const xmlChar *) path);
2765
31.0k
    }
2766
2767
39.6k
    return(ret);
2768
39.6k
}
2769
2770
/**
2771
 * Constructs an URI expressing the existing path
2772
 *
2773
 * @param path  the resource locator in a filesystem notation
2774
 * @returns a new URI, or a duplicate of the path parameter if the
2775
 * construction fails. The caller is responsible for freeing the memory
2776
 * occupied by the returned string. If there is insufficient memory available,
2777
 * or the argument is NULL, the function returns NULL.
2778
 */
2779
xmlChar *
2780
xmlPathToURI(const xmlChar *path)
2781
39.6k
{
2782
39.6k
    return(xmlCanonicPath(path));
2783
39.6k
}