blob: ff72c6005f26c6b8d157f46a7e13258b54b97da3 [file] [log] [blame]
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301/**
2 * uri.c: set of generic URI related routines
3 *
4 * Reference: RFCs 3986, 2732 and 2373
5 *
6 * Copyright (C) 1998-2003 Daniel Veillard. All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
22 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 *
25 * Except as contained in this notice, the name of Daniel Veillard shall not
26 * be used in advertising or otherwise to promote the sale, use or other
27 * dealings in this Software without prior written authorization from him.
28 *
29 * daniel@veillard.com
30 *
31 **
32 *
33 * Copyright (C) 2007, 2009-2010 Red Hat, Inc.
34 *
35 * This library is free software; you can redistribute it and/or
36 * modify it under the terms of the GNU Lesser General Public
37 * License as published by the Free Software Foundation; either
38 * version 2.1 of the License, or (at your option) any later version.
39 *
40 * This library is distributed in the hope that it will be useful,
41 * but WITHOUT ANY WARRANTY; without even the implied warranty of
42 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
43 * Lesser General Public License for more details.
44 *
45 * You should have received a copy of the GNU Lesser General Public
46 * License along with this library; if not, write to the Free Software
47 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
48 *
49 * Authors:
50 * Richard W.M. Jones <rjones@redhat.com>
51 *
52 */
53
Peter Maydellaafd7582016-01-29 17:49:55 +000054#include "qemu/osdep.h"
Keno Fischer5c99fa32018-06-29 12:32:10 +020055#include "qemu/cutils.h"
Paolo Bonzinica0defb2012-09-24 14:42:02 +053056
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010057#include "qemu/uri.h"
Paolo Bonzinica0defb2012-09-24 14:42:02 +053058
59static void uri_clean(URI *uri);
60
61/*
62 * Old rule from 2396 used in legacy handling code
63 * alpha = lowalpha | upalpha
64 */
65#define IS_ALPHA(x) (IS_LOWALPHA(x) || IS_UPALPHA(x))
66
Paolo Bonzinica0defb2012-09-24 14:42:02 +053067/*
68 * lowalpha = "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" |
69 * "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" |
70 * "u" | "v" | "w" | "x" | "y" | "z"
71 */
72
73#define IS_LOWALPHA(x) (((x) >= 'a') && ((x) <= 'z'))
74
75/*
76 * upalpha = "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" |
77 * "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" |
78 * "U" | "V" | "W" | "X" | "Y" | "Z"
79 */
80#define IS_UPALPHA(x) (((x) >= 'A') && ((x) <= 'Z'))
81
82#ifdef IS_DIGIT
83#undef IS_DIGIT
84#endif
85/*
86 * digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"
87 */
88#define IS_DIGIT(x) (((x) >= '0') && ((x) <= '9'))
89
90/*
91 * alphanum = alpha | digit
92 */
93
94#define IS_ALPHANUM(x) (IS_ALPHA(x) || IS_DIGIT(x))
95
96/*
97 * mark = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")"
98 */
99
Su Hangbe95ada2018-02-25 12:35:56 +0800100#define IS_MARK(x) (((x) == '-') || ((x) == '_') || ((x) == '.') || \
101 ((x) == '!') || ((x) == '~') || ((x) == '*') || ((x) == '\'') || \
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530102 ((x) == '(') || ((x) == ')'))
103
104/*
105 * unwise = "{" | "}" | "|" | "\" | "^" | "`"
106 */
107
Su Hangbe95ada2018-02-25 12:35:56 +0800108#define IS_UNWISE(p) \
109 (((*(p) == '{')) || ((*(p) == '}')) || ((*(p) == '|')) || \
110 ((*(p) == '\\')) || ((*(p) == '^')) || ((*(p) == '[')) || \
111 ((*(p) == ']')) || ((*(p) == '`')))
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530112/*
113 * reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | "," |
114 * "[" | "]"
115 */
116
Su Hangbe95ada2018-02-25 12:35:56 +0800117#define IS_RESERVED(x) (((x) == ';') || ((x) == '/') || ((x) == '?') || \
118 ((x) == ':') || ((x) == '@') || ((x) == '&') || ((x) == '=') || \
119 ((x) == '+') || ((x) == '$') || ((x) == ',') || ((x) == '[') || \
120 ((x) == ']'))
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530121
122/*
123 * unreserved = alphanum | mark
124 */
125
126#define IS_UNRESERVED(x) (IS_ALPHANUM(x) || IS_MARK(x))
127
128/*
129 * Skip to next pointer char, handle escaped sequences
130 */
131
Su Hangbe95ada2018-02-25 12:35:56 +0800132#define NEXT(p) ((*p == '%') ? p += 3 : p++)
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530133
134/*
135 * Productions from the spec.
136 *
137 * authority = server | reg_name
138 * reg_name = 1*( unreserved | escaped | "$" | "," |
139 * ";" | ":" | "@" | "&" | "=" | "+" )
140 *
141 * path = [ abs_path | opaque_part ]
142 */
143
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530144/************************************************************************
Su Hangbe95ada2018-02-25 12:35:56 +0800145 * *
146 * RFC 3986 parser *
147 * *
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530148 ************************************************************************/
149
150#define ISA_DIGIT(p) ((*(p) >= '0') && (*(p) <= '9'))
Su Hangbe95ada2018-02-25 12:35:56 +0800151#define ISA_ALPHA(p) (((*(p) >= 'a') && (*(p) <= 'z')) || \
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530152 ((*(p) >= 'A') && (*(p) <= 'Z')))
Su Hangbe95ada2018-02-25 12:35:56 +0800153#define ISA_HEXDIG(p) \
154 (ISA_DIGIT(p) || ((*(p) >= 'a') && (*(p) <= 'f')) || \
155 ((*(p) >= 'A') && (*(p) <= 'F')))
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530156
157/*
158 * sub-delims = "!" / "$" / "&" / "'" / "(" / ")"
159 * / "*" / "+" / "," / ";" / "="
160 */
Su Hangbe95ada2018-02-25 12:35:56 +0800161#define ISA_SUB_DELIM(p) \
162 (((*(p) == '!')) || ((*(p) == '$')) || ((*(p) == '&')) || \
163 ((*(p) == '(')) || ((*(p) == ')')) || ((*(p) == '*')) || \
164 ((*(p) == '+')) || ((*(p) == ',')) || ((*(p) == ';')) || \
165 ((*(p) == '=')) || ((*(p) == '\'')))
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530166
167/*
168 * gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@"
169 */
Su Hangbe95ada2018-02-25 12:35:56 +0800170#define ISA_GEN_DELIM(p) \
171 (((*(p) == ':')) || ((*(p) == '/')) || ((*(p) == '?')) || \
172 ((*(p) == '#')) || ((*(p) == '[')) || ((*(p) == ']')) || \
173 ((*(p) == '@')))
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530174
175/*
176 * reserved = gen-delims / sub-delims
177 */
178#define ISA_RESERVED(p) (ISA_GEN_DELIM(p) || (ISA_SUB_DELIM(p)))
179
180/*
181 * unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
182 */
Su Hangbe95ada2018-02-25 12:35:56 +0800183#define ISA_UNRESERVED(p) \
184 ((ISA_ALPHA(p)) || (ISA_DIGIT(p)) || ((*(p) == '-')) || \
185 ((*(p) == '.')) || ((*(p) == '_')) || ((*(p) == '~')))
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530186
187/*
188 * pct-encoded = "%" HEXDIG HEXDIG
189 */
Su Hangbe95ada2018-02-25 12:35:56 +0800190#define ISA_PCT_ENCODED(p) \
191 ((*(p) == '%') && (ISA_HEXDIG(p + 1)) && (ISA_HEXDIG(p + 2)))
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530192
193/*
194 * pchar = unreserved / pct-encoded / sub-delims / ":" / "@"
195 */
Su Hangbe95ada2018-02-25 12:35:56 +0800196#define ISA_PCHAR(p) \
197 (ISA_UNRESERVED(p) || ISA_PCT_ENCODED(p) || ISA_SUB_DELIM(p) || \
198 ((*(p) == ':')) || ((*(p) == '@')))
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530199
200/**
201 * rfc3986_parse_scheme:
202 * @uri: pointer to an URI structure
203 * @str: pointer to the string to analyze
204 *
205 * Parse an URI scheme
206 *
207 * ALPHA *( ALPHA / DIGIT / "+" / "-" / "." )
208 *
209 * Returns 0 or the error code
210 */
Su Hangbe95ada2018-02-25 12:35:56 +0800211static int rfc3986_parse_scheme(URI *uri, const char **str)
212{
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530213 const char *cur;
214
Su Hanga1515162018-02-25 12:35:58 +0800215 if (str == NULL) {
Su Hang42fa2722018-02-25 12:35:57 +0800216 return -1;
Su Hanga1515162018-02-25 12:35:58 +0800217 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530218
219 cur = *str;
Su Hanga1515162018-02-25 12:35:58 +0800220 if (!ISA_ALPHA(cur)) {
Su Hang42fa2722018-02-25 12:35:57 +0800221 return 2;
Su Hanga1515162018-02-25 12:35:58 +0800222 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530223 cur++;
Su Hangbe95ada2018-02-25 12:35:56 +0800224 while (ISA_ALPHA(cur) || ISA_DIGIT(cur) || (*cur == '+') || (*cur == '-') ||
Su Hanga1515162018-02-25 12:35:58 +0800225 (*cur == '.')) {
Su Hangbe95ada2018-02-25 12:35:56 +0800226 cur++;
Su Hanga1515162018-02-25 12:35:58 +0800227 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530228 if (uri != NULL) {
Markus Armbruster44c22862014-12-04 15:00:01 +0100229 g_free(uri->scheme);
Su Hangbe95ada2018-02-25 12:35:56 +0800230 uri->scheme = g_strndup(*str, cur - *str);
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530231 }
232 *str = cur;
Su Hang42fa2722018-02-25 12:35:57 +0800233 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530234}
235
236/**
237 * rfc3986_parse_fragment:
238 * @uri: pointer to an URI structure
239 * @str: pointer to the string to analyze
240 *
241 * Parse the query part of an URI
242 *
243 * fragment = *( pchar / "/" / "?" )
244 * NOTE: the strict syntax as defined by 3986 does not allow '[' and ']'
245 * in the fragment identifier but this is used very broadly for
246 * xpointer scheme selection, so we are allowing it here to not break
247 * for example all the DocBook processing chains.
248 *
249 * Returns 0 or the error code
250 */
Su Hangbe95ada2018-02-25 12:35:56 +0800251static int rfc3986_parse_fragment(URI *uri, const char **str)
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530252{
253 const char *cur;
254
Su Hanga1515162018-02-25 12:35:58 +0800255 if (str == NULL) {
Su Hang42fa2722018-02-25 12:35:57 +0800256 return -1;
Su Hanga1515162018-02-25 12:35:58 +0800257 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530258
259 cur = *str;
260
261 while ((ISA_PCHAR(cur)) || (*cur == '/') || (*cur == '?') ||
262 (*cur == '[') || (*cur == ']') ||
Su Hanga1515162018-02-25 12:35:58 +0800263 ((uri != NULL) && (uri->cleanup & 1) && (IS_UNWISE(cur)))) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530264 NEXT(cur);
Su Hanga1515162018-02-25 12:35:58 +0800265 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530266 if (uri != NULL) {
Markus Armbruster44c22862014-12-04 15:00:01 +0100267 g_free(uri->fragment);
Su Hanga1515162018-02-25 12:35:58 +0800268 if (uri->cleanup & 2) {
Su Hangbe95ada2018-02-25 12:35:56 +0800269 uri->fragment = g_strndup(*str, cur - *str);
Su Hanga1515162018-02-25 12:35:58 +0800270 } else {
Su Hangbe95ada2018-02-25 12:35:56 +0800271 uri->fragment = uri_string_unescape(*str, cur - *str, NULL);
Su Hanga1515162018-02-25 12:35:58 +0800272 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530273 }
274 *str = cur;
Su Hang42fa2722018-02-25 12:35:57 +0800275 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530276}
277
278/**
279 * rfc3986_parse_query:
280 * @uri: pointer to an URI structure
281 * @str: pointer to the string to analyze
282 *
283 * Parse the query part of an URI
284 *
285 * query = *uric
286 *
287 * Returns 0 or the error code
288 */
Su Hangbe95ada2018-02-25 12:35:56 +0800289static int rfc3986_parse_query(URI *uri, const char **str)
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530290{
291 const char *cur;
292
Su Hanga1515162018-02-25 12:35:58 +0800293 if (str == NULL) {
Su Hang42fa2722018-02-25 12:35:57 +0800294 return -1;
Su Hanga1515162018-02-25 12:35:58 +0800295 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530296
297 cur = *str;
298
299 while ((ISA_PCHAR(cur)) || (*cur == '/') || (*cur == '?') ||
Su Hanga1515162018-02-25 12:35:58 +0800300 ((uri != NULL) && (uri->cleanup & 1) && (IS_UNWISE(cur)))) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530301 NEXT(cur);
Su Hanga1515162018-02-25 12:35:58 +0800302 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530303 if (uri != NULL) {
Markus Armbruster44c22862014-12-04 15:00:01 +0100304 g_free(uri->query);
Su Hangbe95ada2018-02-25 12:35:56 +0800305 uri->query = g_strndup(*str, cur - *str);
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530306 }
307 *str = cur;
Su Hang42fa2722018-02-25 12:35:57 +0800308 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530309}
310
311/**
312 * rfc3986_parse_port:
313 * @uri: pointer to an URI structure
314 * @str: the string to analyze
315 *
316 * Parse a port part and fills in the appropriate fields
317 * of the @uri structure
318 *
319 * port = *DIGIT
320 *
321 * Returns 0 or the error code
322 */
Su Hangbe95ada2018-02-25 12:35:56 +0800323static int rfc3986_parse_port(URI *uri, const char **str)
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530324{
325 const char *cur = *str;
Max Reitz2b212332015-02-25 13:08:14 -0500326 int port = 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530327
328 if (ISA_DIGIT(cur)) {
Max Reitz2b212332015-02-25 13:08:14 -0500329 while (ISA_DIGIT(cur)) {
330 port = port * 10 + (*cur - '0');
331 if (port > 65535) {
332 return 1;
333 }
334 cur++;
335 }
336 if (uri) {
337 uri->port = port;
338 }
339 *str = cur;
340 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530341 }
Max Reitz2b212332015-02-25 13:08:14 -0500342 return 1;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530343}
344
345/**
346 * rfc3986_parse_user_info:
347 * @uri: pointer to an URI structure
348 * @str: the string to analyze
349 *
Stefan Weil736a83f2016-11-19 20:22:07 +0100350 * Parse a user information part and fill in the appropriate fields
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530351 * of the @uri structure
352 *
353 * userinfo = *( unreserved / pct-encoded / sub-delims / ":" )
354 *
355 * Returns 0 or the error code
356 */
Su Hangbe95ada2018-02-25 12:35:56 +0800357static int rfc3986_parse_user_info(URI *uri, const char **str)
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530358{
359 const char *cur;
360
361 cur = *str;
Su Hangbe95ada2018-02-25 12:35:56 +0800362 while (ISA_UNRESERVED(cur) || ISA_PCT_ENCODED(cur) || ISA_SUB_DELIM(cur) ||
Su Hanga1515162018-02-25 12:35:58 +0800363 (*cur == ':')) {
Su Hangbe95ada2018-02-25 12:35:56 +0800364 NEXT(cur);
Su Hanga1515162018-02-25 12:35:58 +0800365 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530366 if (*cur == '@') {
Su Hangbe95ada2018-02-25 12:35:56 +0800367 if (uri != NULL) {
Markus Armbruster44c22862014-12-04 15:00:01 +0100368 g_free(uri->user);
Su Hanga1515162018-02-25 12:35:58 +0800369 if (uri->cleanup & 2) {
Su Hangbe95ada2018-02-25 12:35:56 +0800370 uri->user = g_strndup(*str, cur - *str);
Su Hanga1515162018-02-25 12:35:58 +0800371 } else {
Su Hangbe95ada2018-02-25 12:35:56 +0800372 uri->user = uri_string_unescape(*str, cur - *str, NULL);
Su Hanga1515162018-02-25 12:35:58 +0800373 }
Su Hangbe95ada2018-02-25 12:35:56 +0800374 }
375 *str = cur;
Su Hang42fa2722018-02-25 12:35:57 +0800376 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530377 }
Su Hang42fa2722018-02-25 12:35:57 +0800378 return 1;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530379}
380
381/**
382 * rfc3986_parse_dec_octet:
383 * @str: the string to analyze
384 *
385 * dec-octet = DIGIT ; 0-9
386 * / %x31-39 DIGIT ; 10-99
387 * / "1" 2DIGIT ; 100-199
388 * / "2" %x30-34 DIGIT ; 200-249
389 * / "25" %x30-35 ; 250-255
390 *
391 * Skip a dec-octet.
392 *
393 * Returns 0 if found and skipped, 1 otherwise
394 */
Su Hangbe95ada2018-02-25 12:35:56 +0800395static int rfc3986_parse_dec_octet(const char **str)
396{
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530397 const char *cur = *str;
398
Su Hanga1515162018-02-25 12:35:58 +0800399 if (!(ISA_DIGIT(cur))) {
Su Hang42fa2722018-02-25 12:35:57 +0800400 return 1;
Su Hanga1515162018-02-25 12:35:58 +0800401 }
402 if (!ISA_DIGIT(cur + 1)) {
Su Hangbe95ada2018-02-25 12:35:56 +0800403 cur++;
Su Hanga1515162018-02-25 12:35:58 +0800404 } else if ((*cur != '0') && (ISA_DIGIT(cur + 1)) && (!ISA_DIGIT(cur + 2))) {
Su Hangbe95ada2018-02-25 12:35:56 +0800405 cur += 2;
Su Hanga1515162018-02-25 12:35:58 +0800406 } else if ((*cur == '1') && (ISA_DIGIT(cur + 1)) && (ISA_DIGIT(cur + 2))) {
Su Hangbe95ada2018-02-25 12:35:56 +0800407 cur += 3;
Su Hanga1515162018-02-25 12:35:58 +0800408 } else if ((*cur == '2') && (*(cur + 1) >= '0') && (*(cur + 1) <= '4') &&
409 (ISA_DIGIT(cur + 2))) {
Su Hangbe95ada2018-02-25 12:35:56 +0800410 cur += 3;
Su Hanga1515162018-02-25 12:35:58 +0800411 } else if ((*cur == '2') && (*(cur + 1) == '5') && (*(cur + 2) >= '0') &&
412 (*(cur + 1) <= '5')) {
Su Hangbe95ada2018-02-25 12:35:56 +0800413 cur += 3;
Su Hanga1515162018-02-25 12:35:58 +0800414 } else {
Su Hang42fa2722018-02-25 12:35:57 +0800415 return 1;
Su Hanga1515162018-02-25 12:35:58 +0800416 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530417 *str = cur;
Su Hang42fa2722018-02-25 12:35:57 +0800418 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530419}
420/**
421 * rfc3986_parse_host:
422 * @uri: pointer to an URI structure
423 * @str: the string to analyze
424 *
425 * Parse an host part and fills in the appropriate fields
426 * of the @uri structure
427 *
428 * host = IP-literal / IPv4address / reg-name
429 * IP-literal = "[" ( IPv6address / IPvFuture ) "]"
430 * IPv4address = dec-octet "." dec-octet "." dec-octet "." dec-octet
431 * reg-name = *( unreserved / pct-encoded / sub-delims )
432 *
433 * Returns 0 or the error code
434 */
Su Hangbe95ada2018-02-25 12:35:56 +0800435static int rfc3986_parse_host(URI *uri, const char **str)
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530436{
437 const char *cur = *str;
438 const char *host;
439
440 host = cur;
441 /*
Stefan Weila93cf9d2012-11-02 08:29:53 +0100442 * IPv6 and future addressing scheme are enclosed between brackets
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530443 */
444 if (*cur == '[') {
445 cur++;
Su Hanga1515162018-02-25 12:35:58 +0800446 while ((*cur != ']') && (*cur != 0)) {
Su Hangbe95ada2018-02-25 12:35:56 +0800447 cur++;
Su Hanga1515162018-02-25 12:35:58 +0800448 }
449 if (*cur != ']') {
Su Hang42fa2722018-02-25 12:35:57 +0800450 return 1;
Su Hanga1515162018-02-25 12:35:58 +0800451 }
Su Hangbe95ada2018-02-25 12:35:56 +0800452 cur++;
453 goto found;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530454 }
455 /*
456 * try to parse an IPv4
457 */
458 if (ISA_DIGIT(cur)) {
Su Hanga1515162018-02-25 12:35:58 +0800459 if (rfc3986_parse_dec_octet(&cur) != 0) {
Su Hangbe95ada2018-02-25 12:35:56 +0800460 goto not_ipv4;
Su Hanga1515162018-02-25 12:35:58 +0800461 }
462 if (*cur != '.') {
Su Hangbe95ada2018-02-25 12:35:56 +0800463 goto not_ipv4;
Su Hanga1515162018-02-25 12:35:58 +0800464 }
Su Hangbe95ada2018-02-25 12:35:56 +0800465 cur++;
Su Hanga1515162018-02-25 12:35:58 +0800466 if (rfc3986_parse_dec_octet(&cur) != 0) {
Su Hangbe95ada2018-02-25 12:35:56 +0800467 goto not_ipv4;
Su Hanga1515162018-02-25 12:35:58 +0800468 }
469 if (*cur != '.') {
Su Hangbe95ada2018-02-25 12:35:56 +0800470 goto not_ipv4;
Su Hanga1515162018-02-25 12:35:58 +0800471 }
472 if (rfc3986_parse_dec_octet(&cur) != 0) {
Su Hangbe95ada2018-02-25 12:35:56 +0800473 goto not_ipv4;
Su Hanga1515162018-02-25 12:35:58 +0800474 }
475 if (*cur != '.') {
Su Hangbe95ada2018-02-25 12:35:56 +0800476 goto not_ipv4;
Su Hanga1515162018-02-25 12:35:58 +0800477 }
478 if (rfc3986_parse_dec_octet(&cur) != 0) {
Su Hangbe95ada2018-02-25 12:35:56 +0800479 goto not_ipv4;
Su Hanga1515162018-02-25 12:35:58 +0800480 }
Su Hangbe95ada2018-02-25 12:35:56 +0800481 goto found;
482 not_ipv4:
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530483 cur = *str;
484 }
485 /*
486 * then this should be a hostname which can be empty
487 */
Su Hanga1515162018-02-25 12:35:58 +0800488 while (ISA_UNRESERVED(cur) || ISA_PCT_ENCODED(cur) || ISA_SUB_DELIM(cur)) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530489 NEXT(cur);
Su Hanga1515162018-02-25 12:35:58 +0800490 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530491found:
492 if (uri != NULL) {
Markus Armbruster44c22862014-12-04 15:00:01 +0100493 g_free(uri->authority);
Su Hangbe95ada2018-02-25 12:35:56 +0800494 uri->authority = NULL;
Markus Armbruster44c22862014-12-04 15:00:01 +0100495 g_free(uri->server);
Su Hangbe95ada2018-02-25 12:35:56 +0800496 if (cur != host) {
Su Hanga1515162018-02-25 12:35:58 +0800497 if (uri->cleanup & 2) {
Su Hangbe95ada2018-02-25 12:35:56 +0800498 uri->server = g_strndup(host, cur - host);
Su Hanga1515162018-02-25 12:35:58 +0800499 } else {
Su Hangbe95ada2018-02-25 12:35:56 +0800500 uri->server = uri_string_unescape(host, cur - host, NULL);
Su Hanga1515162018-02-25 12:35:58 +0800501 }
502 } else {
Su Hangbe95ada2018-02-25 12:35:56 +0800503 uri->server = NULL;
Su Hanga1515162018-02-25 12:35:58 +0800504 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530505 }
506 *str = cur;
Su Hang42fa2722018-02-25 12:35:57 +0800507 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530508}
509
510/**
511 * rfc3986_parse_authority:
512 * @uri: pointer to an URI structure
513 * @str: the string to analyze
514 *
515 * Parse an authority part and fills in the appropriate fields
516 * of the @uri structure
517 *
518 * authority = [ userinfo "@" ] host [ ":" port ]
519 *
520 * Returns 0 or the error code
521 */
Su Hangbe95ada2018-02-25 12:35:56 +0800522static int rfc3986_parse_authority(URI *uri, const char **str)
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530523{
524 const char *cur;
525 int ret;
526
527 cur = *str;
528 /*
Stefan Weil736a83f2016-11-19 20:22:07 +0100529 * try to parse a userinfo and check for the trailing @
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530530 */
531 ret = rfc3986_parse_user_info(uri, &cur);
Su Hanga1515162018-02-25 12:35:58 +0800532 if ((ret != 0) || (*cur != '@')) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530533 cur = *str;
Su Hanga1515162018-02-25 12:35:58 +0800534 } else {
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530535 cur++;
Su Hanga1515162018-02-25 12:35:58 +0800536 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530537 ret = rfc3986_parse_host(uri, &cur);
Su Hanga1515162018-02-25 12:35:58 +0800538 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800539 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800540 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530541 if (*cur == ':') {
542 cur++;
543 ret = rfc3986_parse_port(uri, &cur);
Su Hanga1515162018-02-25 12:35:58 +0800544 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800545 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800546 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530547 }
548 *str = cur;
Su Hang42fa2722018-02-25 12:35:57 +0800549 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530550}
551
552/**
553 * rfc3986_parse_segment:
554 * @str: the string to analyze
555 * @forbid: an optional forbidden character
556 * @empty: allow an empty segment
557 *
558 * Parse a segment and fills in the appropriate fields
559 * of the @uri structure
560 *
561 * segment = *pchar
562 * segment-nz = 1*pchar
563 * segment-nz-nc = 1*( unreserved / pct-encoded / sub-delims / "@" )
564 * ; non-zero-length segment without any colon ":"
565 *
566 * Returns 0 or the error code
567 */
Su Hangbe95ada2018-02-25 12:35:56 +0800568static int rfc3986_parse_segment(const char **str, char forbid, int empty)
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530569{
570 const char *cur;
571
572 cur = *str;
573 if (!ISA_PCHAR(cur)) {
Su Hanga1515162018-02-25 12:35:58 +0800574 if (empty) {
Su Hang42fa2722018-02-25 12:35:57 +0800575 return 0;
Su Hanga1515162018-02-25 12:35:58 +0800576 }
Su Hang42fa2722018-02-25 12:35:57 +0800577 return 1;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530578 }
Su Hanga1515162018-02-25 12:35:58 +0800579 while (ISA_PCHAR(cur) && (*cur != forbid)) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530580 NEXT(cur);
Su Hanga1515162018-02-25 12:35:58 +0800581 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530582 *str = cur;
Su Hang42fa2722018-02-25 12:35:57 +0800583 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530584}
585
586/**
587 * rfc3986_parse_path_ab_empty:
588 * @uri: pointer to an URI structure
589 * @str: the string to analyze
590 *
591 * Parse an path absolute or empty and fills in the appropriate fields
592 * of the @uri structure
593 *
594 * path-abempty = *( "/" segment )
595 *
596 * Returns 0 or the error code
597 */
Su Hangbe95ada2018-02-25 12:35:56 +0800598static int rfc3986_parse_path_ab_empty(URI *uri, const char **str)
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530599{
600 const char *cur;
601 int ret;
602
603 cur = *str;
604
605 while (*cur == '/') {
606 cur++;
Su Hangbe95ada2018-02-25 12:35:56 +0800607 ret = rfc3986_parse_segment(&cur, 0, 1);
Su Hanga1515162018-02-25 12:35:58 +0800608 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800609 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800610 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530611 }
612 if (uri != NULL) {
Markus Armbruster44c22862014-12-04 15:00:01 +0100613 g_free(uri->path);
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530614 if (*str != cur) {
Su Hanga1515162018-02-25 12:35:58 +0800615 if (uri->cleanup & 2) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530616 uri->path = g_strndup(*str, cur - *str);
Su Hanga1515162018-02-25 12:35:58 +0800617 } else {
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530618 uri->path = uri_string_unescape(*str, cur - *str, NULL);
Su Hanga1515162018-02-25 12:35:58 +0800619 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530620 } else {
621 uri->path = NULL;
622 }
623 }
624 *str = cur;
Su Hang42fa2722018-02-25 12:35:57 +0800625 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530626}
627
628/**
629 * rfc3986_parse_path_absolute:
630 * @uri: pointer to an URI structure
631 * @str: the string to analyze
632 *
633 * Parse an path absolute and fills in the appropriate fields
634 * of the @uri structure
635 *
636 * path-absolute = "/" [ segment-nz *( "/" segment ) ]
637 *
638 * Returns 0 or the error code
639 */
Su Hangbe95ada2018-02-25 12:35:56 +0800640static int rfc3986_parse_path_absolute(URI *uri, const char **str)
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530641{
642 const char *cur;
643 int ret;
644
645 cur = *str;
646
Su Hanga1515162018-02-25 12:35:58 +0800647 if (*cur != '/') {
Su Hang42fa2722018-02-25 12:35:57 +0800648 return 1;
Su Hanga1515162018-02-25 12:35:58 +0800649 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530650 cur++;
651 ret = rfc3986_parse_segment(&cur, 0, 0);
652 if (ret == 0) {
Su Hangbe95ada2018-02-25 12:35:56 +0800653 while (*cur == '/') {
654 cur++;
655 ret = rfc3986_parse_segment(&cur, 0, 1);
Su Hanga1515162018-02-25 12:35:58 +0800656 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800657 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800658 }
Su Hangbe95ada2018-02-25 12:35:56 +0800659 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530660 }
661 if (uri != NULL) {
Markus Armbruster44c22862014-12-04 15:00:01 +0100662 g_free(uri->path);
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530663 if (cur != *str) {
Su Hanga1515162018-02-25 12:35:58 +0800664 if (uri->cleanup & 2) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530665 uri->path = g_strndup(*str, cur - *str);
Su Hanga1515162018-02-25 12:35:58 +0800666 } else {
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530667 uri->path = uri_string_unescape(*str, cur - *str, NULL);
Su Hanga1515162018-02-25 12:35:58 +0800668 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530669 } else {
670 uri->path = NULL;
671 }
672 }
673 *str = cur;
Su Hang42fa2722018-02-25 12:35:57 +0800674 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530675}
676
677/**
678 * rfc3986_parse_path_rootless:
679 * @uri: pointer to an URI structure
680 * @str: the string to analyze
681 *
682 * Parse an path without root and fills in the appropriate fields
683 * of the @uri structure
684 *
685 * path-rootless = segment-nz *( "/" segment )
686 *
687 * Returns 0 or the error code
688 */
Su Hangbe95ada2018-02-25 12:35:56 +0800689static int rfc3986_parse_path_rootless(URI *uri, const char **str)
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530690{
691 const char *cur;
692 int ret;
693
694 cur = *str;
695
696 ret = rfc3986_parse_segment(&cur, 0, 0);
Su Hanga1515162018-02-25 12:35:58 +0800697 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800698 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800699 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530700 while (*cur == '/') {
701 cur++;
Su Hangbe95ada2018-02-25 12:35:56 +0800702 ret = rfc3986_parse_segment(&cur, 0, 1);
Su Hanga1515162018-02-25 12:35:58 +0800703 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800704 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800705 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530706 }
707 if (uri != NULL) {
Markus Armbruster44c22862014-12-04 15:00:01 +0100708 g_free(uri->path);
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530709 if (cur != *str) {
Su Hanga1515162018-02-25 12:35:58 +0800710 if (uri->cleanup & 2) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530711 uri->path = g_strndup(*str, cur - *str);
Su Hanga1515162018-02-25 12:35:58 +0800712 } else {
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530713 uri->path = uri_string_unescape(*str, cur - *str, NULL);
Su Hanga1515162018-02-25 12:35:58 +0800714 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530715 } else {
716 uri->path = NULL;
717 }
718 }
719 *str = cur;
Su Hang42fa2722018-02-25 12:35:57 +0800720 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530721}
722
723/**
724 * rfc3986_parse_path_no_scheme:
725 * @uri: pointer to an URI structure
726 * @str: the string to analyze
727 *
728 * Parse an path which is not a scheme and fills in the appropriate fields
729 * of the @uri structure
730 *
731 * path-noscheme = segment-nz-nc *( "/" segment )
732 *
733 * Returns 0 or the error code
734 */
Su Hangbe95ada2018-02-25 12:35:56 +0800735static int rfc3986_parse_path_no_scheme(URI *uri, const char **str)
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530736{
737 const char *cur;
738 int ret;
739
740 cur = *str;
741
742 ret = rfc3986_parse_segment(&cur, ':', 0);
Su Hanga1515162018-02-25 12:35:58 +0800743 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800744 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800745 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530746 while (*cur == '/') {
747 cur++;
Su Hangbe95ada2018-02-25 12:35:56 +0800748 ret = rfc3986_parse_segment(&cur, 0, 1);
Su Hanga1515162018-02-25 12:35:58 +0800749 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800750 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800751 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530752 }
753 if (uri != NULL) {
Markus Armbruster44c22862014-12-04 15:00:01 +0100754 g_free(uri->path);
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530755 if (cur != *str) {
Su Hanga1515162018-02-25 12:35:58 +0800756 if (uri->cleanup & 2) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530757 uri->path = g_strndup(*str, cur - *str);
Su Hanga1515162018-02-25 12:35:58 +0800758 } else {
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530759 uri->path = uri_string_unescape(*str, cur - *str, NULL);
Su Hanga1515162018-02-25 12:35:58 +0800760 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530761 } else {
762 uri->path = NULL;
763 }
764 }
765 *str = cur;
Su Hang42fa2722018-02-25 12:35:57 +0800766 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530767}
768
769/**
770 * rfc3986_parse_hier_part:
771 * @uri: pointer to an URI structure
772 * @str: the string to analyze
773 *
774 * Parse an hierarchical part and fills in the appropriate fields
775 * of the @uri structure
776 *
777 * hier-part = "//" authority path-abempty
778 * / path-absolute
779 * / path-rootless
780 * / path-empty
781 *
782 * Returns 0 or the error code
783 */
Su Hangbe95ada2018-02-25 12:35:56 +0800784static int rfc3986_parse_hier_part(URI *uri, const char **str)
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530785{
786 const char *cur;
787 int ret;
788
789 cur = *str;
790
791 if ((*cur == '/') && (*(cur + 1) == '/')) {
792 cur += 2;
Su Hangbe95ada2018-02-25 12:35:56 +0800793 ret = rfc3986_parse_authority(uri, &cur);
Su Hanga1515162018-02-25 12:35:58 +0800794 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800795 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800796 }
Su Hangbe95ada2018-02-25 12:35:56 +0800797 ret = rfc3986_parse_path_ab_empty(uri, &cur);
Su Hanga1515162018-02-25 12:35:58 +0800798 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800799 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800800 }
Su Hangbe95ada2018-02-25 12:35:56 +0800801 *str = cur;
Su Hang42fa2722018-02-25 12:35:57 +0800802 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530803 } else if (*cur == '/') {
804 ret = rfc3986_parse_path_absolute(uri, &cur);
Su Hanga1515162018-02-25 12:35:58 +0800805 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800806 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800807 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530808 } else if (ISA_PCHAR(cur)) {
809 ret = rfc3986_parse_path_rootless(uri, &cur);
Su Hanga1515162018-02-25 12:35:58 +0800810 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800811 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800812 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530813 } else {
Su Hangbe95ada2018-02-25 12:35:56 +0800814 /* path-empty is effectively empty */
815 if (uri != NULL) {
Markus Armbruster44c22862014-12-04 15:00:01 +0100816 g_free(uri->path);
Su Hangbe95ada2018-02-25 12:35:56 +0800817 uri->path = NULL;
818 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530819 }
820 *str = cur;
Su Hang42fa2722018-02-25 12:35:57 +0800821 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530822}
823
824/**
825 * rfc3986_parse_relative_ref:
826 * @uri: pointer to an URI structure
827 * @str: the string to analyze
828 *
829 * Parse an URI string and fills in the appropriate fields
830 * of the @uri structure
831 *
832 * relative-ref = relative-part [ "?" query ] [ "#" fragment ]
833 * relative-part = "//" authority path-abempty
834 * / path-absolute
835 * / path-noscheme
836 * / path-empty
837 *
838 * Returns 0 or the error code
839 */
Su Hangbe95ada2018-02-25 12:35:56 +0800840static int rfc3986_parse_relative_ref(URI *uri, const char *str)
841{
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530842 int ret;
843
844 if ((*str == '/') && (*(str + 1) == '/')) {
845 str += 2;
Su Hangbe95ada2018-02-25 12:35:56 +0800846 ret = rfc3986_parse_authority(uri, &str);
Su Hanga1515162018-02-25 12:35:58 +0800847 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800848 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800849 }
Su Hangbe95ada2018-02-25 12:35:56 +0800850 ret = rfc3986_parse_path_ab_empty(uri, &str);
Su Hanga1515162018-02-25 12:35:58 +0800851 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800852 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800853 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530854 } else if (*str == '/') {
Su Hangbe95ada2018-02-25 12:35:56 +0800855 ret = rfc3986_parse_path_absolute(uri, &str);
Su Hanga1515162018-02-25 12:35:58 +0800856 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800857 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800858 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530859 } else if (ISA_PCHAR(str)) {
860 ret = rfc3986_parse_path_no_scheme(uri, &str);
Su Hanga1515162018-02-25 12:35:58 +0800861 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800862 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800863 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530864 } else {
Su Hangbe95ada2018-02-25 12:35:56 +0800865 /* path-empty is effectively empty */
866 if (uri != NULL) {
Markus Armbruster44c22862014-12-04 15:00:01 +0100867 g_free(uri->path);
Su Hangbe95ada2018-02-25 12:35:56 +0800868 uri->path = NULL;
869 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530870 }
871
872 if (*str == '?') {
Su Hangbe95ada2018-02-25 12:35:56 +0800873 str++;
874 ret = rfc3986_parse_query(uri, &str);
Su Hanga1515162018-02-25 12:35:58 +0800875 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800876 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800877 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530878 }
879 if (*str == '#') {
Su Hangbe95ada2018-02-25 12:35:56 +0800880 str++;
881 ret = rfc3986_parse_fragment(uri, &str);
Su Hanga1515162018-02-25 12:35:58 +0800882 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800883 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800884 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530885 }
886 if (*str != 0) {
Su Hangbe95ada2018-02-25 12:35:56 +0800887 uri_clean(uri);
Su Hang42fa2722018-02-25 12:35:57 +0800888 return 1;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530889 }
Su Hang42fa2722018-02-25 12:35:57 +0800890 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530891}
892
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530893/**
894 * rfc3986_parse:
895 * @uri: pointer to an URI structure
896 * @str: the string to analyze
897 *
898 * Parse an URI string and fills in the appropriate fields
899 * of the @uri structure
900 *
901 * scheme ":" hier-part [ "?" query ] [ "#" fragment ]
902 *
903 * Returns 0 or the error code
904 */
Su Hangbe95ada2018-02-25 12:35:56 +0800905static int rfc3986_parse(URI *uri, const char *str)
906{
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530907 int ret;
908
909 ret = rfc3986_parse_scheme(uri, &str);
Su Hanga1515162018-02-25 12:35:58 +0800910 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800911 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800912 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530913 if (*str != ':') {
Su Hang42fa2722018-02-25 12:35:57 +0800914 return 1;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530915 }
916 str++;
917 ret = rfc3986_parse_hier_part(uri, &str);
Su Hanga1515162018-02-25 12:35:58 +0800918 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800919 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800920 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530921 if (*str == '?') {
Su Hangbe95ada2018-02-25 12:35:56 +0800922 str++;
923 ret = rfc3986_parse_query(uri, &str);
Su Hanga1515162018-02-25 12:35:58 +0800924 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800925 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800926 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530927 }
928 if (*str == '#') {
Su Hangbe95ada2018-02-25 12:35:56 +0800929 str++;
930 ret = rfc3986_parse_fragment(uri, &str);
Su Hanga1515162018-02-25 12:35:58 +0800931 if (ret != 0) {
Su Hang42fa2722018-02-25 12:35:57 +0800932 return ret;
Su Hanga1515162018-02-25 12:35:58 +0800933 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530934 }
935 if (*str != 0) {
Su Hangbe95ada2018-02-25 12:35:56 +0800936 uri_clean(uri);
Su Hang42fa2722018-02-25 12:35:57 +0800937 return 1;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530938 }
Su Hang42fa2722018-02-25 12:35:57 +0800939 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530940}
941
942/**
943 * rfc3986_parse_uri_reference:
944 * @uri: pointer to an URI structure
945 * @str: the string to analyze
946 *
947 * Parse an URI reference string and fills in the appropriate fields
948 * of the @uri structure
949 *
950 * URI-reference = URI / relative-ref
951 *
952 * Returns 0 or the error code
953 */
Su Hangbe95ada2018-02-25 12:35:56 +0800954static int rfc3986_parse_uri_reference(URI *uri, const char *str)
955{
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530956 int ret;
957
Su Hanga1515162018-02-25 12:35:58 +0800958 if (str == NULL) {
Su Hang42fa2722018-02-25 12:35:57 +0800959 return -1;
Su Hanga1515162018-02-25 12:35:58 +0800960 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530961 uri_clean(uri);
962
963 /*
964 * Try first to parse absolute refs, then fallback to relative if
965 * it fails.
966 */
967 ret = rfc3986_parse(uri, str);
968 if (ret != 0) {
Su Hangbe95ada2018-02-25 12:35:56 +0800969 uri_clean(uri);
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530970 ret = rfc3986_parse_relative_ref(uri, str);
Su Hangbe95ada2018-02-25 12:35:56 +0800971 if (ret != 0) {
972 uri_clean(uri);
Su Hang42fa2722018-02-25 12:35:57 +0800973 return ret;
Su Hangbe95ada2018-02-25 12:35:56 +0800974 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530975 }
Su Hang42fa2722018-02-25 12:35:57 +0800976 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530977}
978
979/**
980 * uri_parse:
981 * @str: the URI string to analyze
982 *
983 * Parse an URI based on RFC 3986
984 *
985 * URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ]
986 *
987 * Returns a newly built URI or NULL in case of error
988 */
Su Hangbe95ada2018-02-25 12:35:56 +0800989URI *uri_parse(const char *str)
990{
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530991 URI *uri;
992 int ret;
993
Su Hanga1515162018-02-25 12:35:58 +0800994 if (str == NULL) {
Su Hang42fa2722018-02-25 12:35:57 +0800995 return NULL;
Su Hanga1515162018-02-25 12:35:58 +0800996 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +0530997 uri = uri_new();
Markus Armbrusterc89c6e82015-01-27 17:13:50 +0100998 ret = rfc3986_parse_uri_reference(uri, str);
999 if (ret) {
1000 uri_free(uri);
Su Hang42fa2722018-02-25 12:35:57 +08001001 return NULL;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301002 }
Su Hang42fa2722018-02-25 12:35:57 +08001003 return uri;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301004}
1005
1006/**
1007 * uri_parse_into:
1008 * @uri: pointer to an URI structure
1009 * @str: the string to analyze
1010 *
1011 * Parse an URI reference string based on RFC 3986 and fills in the
1012 * appropriate fields of the @uri structure
1013 *
1014 * URI-reference = URI / relative-ref
1015 *
1016 * Returns 0 or the error code
1017 */
Su Hangbe95ada2018-02-25 12:35:56 +08001018int uri_parse_into(URI *uri, const char *str)
1019{
Su Hang42fa2722018-02-25 12:35:57 +08001020 return rfc3986_parse_uri_reference(uri, str);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301021}
1022
1023/**
1024 * uri_parse_raw:
1025 * @str: the URI string to analyze
1026 * @raw: if 1 unescaping of URI pieces are disabled
1027 *
1028 * Parse an URI but allows to keep intact the original fragments.
1029 *
1030 * URI-reference = URI / relative-ref
1031 *
1032 * Returns a newly built URI or NULL in case of error
1033 */
Su Hangbe95ada2018-02-25 12:35:56 +08001034URI *uri_parse_raw(const char *str, int raw)
1035{
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301036 URI *uri;
1037 int ret;
1038
Su Hanga1515162018-02-25 12:35:58 +08001039 if (str == NULL) {
Su Hang42fa2722018-02-25 12:35:57 +08001040 return NULL;
Su Hanga1515162018-02-25 12:35:58 +08001041 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301042 uri = uri_new();
Markus Armbrusterc89c6e82015-01-27 17:13:50 +01001043 if (raw) {
1044 uri->cleanup |= 2;
1045 }
1046 ret = uri_parse_into(uri, str);
1047 if (ret) {
1048 uri_free(uri);
Su Hang42fa2722018-02-25 12:35:57 +08001049 return NULL;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301050 }
Su Hang42fa2722018-02-25 12:35:57 +08001051 return uri;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301052}
1053
1054/************************************************************************
Su Hangbe95ada2018-02-25 12:35:56 +08001055 * *
1056 * Generic URI structure functions *
1057 * *
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301058 ************************************************************************/
1059
1060/**
1061 * uri_new:
1062 *
1063 * Simply creates an empty URI
1064 *
1065 * Returns the new structure or NULL in case of error
1066 */
Su Hangbe95ada2018-02-25 12:35:56 +08001067URI *uri_new(void)
1068{
Laurent Vivier4a4ff4c2018-03-23 15:32:02 +01001069 return g_new0(URI, 1);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301070}
1071
1072/**
1073 * realloc2n:
1074 *
1075 * Function to handle properly a reallocation when saving an URI
1076 * Also imposes some limit on the length of an URI string output
1077 */
Su Hangbe95ada2018-02-25 12:35:56 +08001078static char *realloc2n(char *ret, int *max)
1079{
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301080 char *temp;
1081 int tmp;
1082
1083 tmp = *max * 2;
1084 temp = g_realloc(ret, (tmp + 1));
1085 *max = tmp;
Su Hang42fa2722018-02-25 12:35:57 +08001086 return temp;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301087}
1088
1089/**
1090 * uri_to_string:
1091 * @uri: pointer to an URI
1092 *
1093 * Save the URI as an escaped string
1094 *
1095 * Returns a new string (to be deallocated by caller)
1096 */
Su Hangbe95ada2018-02-25 12:35:56 +08001097char *uri_to_string(URI *uri)
1098{
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301099 char *ret = NULL;
1100 char *temp;
1101 const char *p;
1102 int len;
1103 int max;
1104
Su Hanga1515162018-02-25 12:35:58 +08001105 if (uri == NULL) {
Su Hang42fa2722018-02-25 12:35:57 +08001106 return NULL;
Su Hanga1515162018-02-25 12:35:58 +08001107 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301108
1109 max = 80;
1110 ret = g_malloc(max + 1);
1111 len = 0;
1112
1113 if (uri->scheme != NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001114 p = uri->scheme;
1115 while (*p != 0) {
1116 if (len >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301117 temp = realloc2n(ret, &max);
Su Hangbe95ada2018-02-25 12:35:56 +08001118 ret = temp;
1119 }
1120 ret[len++] = *p++;
1121 }
1122 if (len >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301123 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301124 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001125 }
1126 ret[len++] = ':';
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301127 }
1128 if (uri->opaque != NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001129 p = uri->opaque;
1130 while (*p != 0) {
1131 if (len + 3 >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301132 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301133 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001134 }
Su Hanga1515162018-02-25 12:35:58 +08001135 if (IS_RESERVED(*(p)) || IS_UNRESERVED(*(p))) {
Su Hangbe95ada2018-02-25 12:35:56 +08001136 ret[len++] = *p++;
Su Hanga1515162018-02-25 12:35:58 +08001137 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08001138 int val = *(unsigned char *)p++;
1139 int hi = val / 0x10, lo = val % 0x10;
1140 ret[len++] = '%';
1141 ret[len++] = hi + (hi > 9 ? 'A' - 10 : '0');
1142 ret[len++] = lo + (lo > 9 ? 'A' - 10 : '0');
1143 }
1144 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301145 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08001146 if (uri->server != NULL) {
1147 if (len + 3 >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301148 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301149 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001150 }
1151 ret[len++] = '/';
1152 ret[len++] = '/';
1153 if (uri->user != NULL) {
1154 p = uri->user;
1155 while (*p != 0) {
1156 if (len + 3 >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301157 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301158 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001159 }
1160 if ((IS_UNRESERVED(*(p))) || ((*(p) == ';')) ||
1161 ((*(p) == ':')) || ((*(p) == '&')) || ((*(p) == '=')) ||
Su Hanga1515162018-02-25 12:35:58 +08001162 ((*(p) == '+')) || ((*(p) == '$')) || ((*(p) == ','))) {
Su Hangbe95ada2018-02-25 12:35:56 +08001163 ret[len++] = *p++;
Su Hanga1515162018-02-25 12:35:58 +08001164 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08001165 int val = *(unsigned char *)p++;
1166 int hi = val / 0x10, lo = val % 0x10;
1167 ret[len++] = '%';
1168 ret[len++] = hi + (hi > 9 ? 'A' - 10 : '0');
1169 ret[len++] = lo + (lo > 9 ? 'A' - 10 : '0');
1170 }
1171 }
1172 if (len + 3 >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301173 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301174 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001175 }
1176 ret[len++] = '@';
1177 }
1178 p = uri->server;
1179 while (*p != 0) {
1180 if (len >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301181 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301182 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001183 }
1184 ret[len++] = *p++;
1185 }
1186 if (uri->port > 0) {
1187 if (len + 10 >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301188 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301189 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001190 }
1191 len += snprintf(&ret[len], max - len, ":%d", uri->port);
1192 }
1193 } else if (uri->authority != NULL) {
1194 if (len + 3 >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301195 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301196 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001197 }
1198 ret[len++] = '/';
1199 ret[len++] = '/';
1200 p = uri->authority;
1201 while (*p != 0) {
1202 if (len + 3 >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301203 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301204 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001205 }
1206 if ((IS_UNRESERVED(*(p))) || ((*(p) == '$')) ||
1207 ((*(p) == ',')) || ((*(p) == ';')) || ((*(p) == ':')) ||
1208 ((*(p) == '@')) || ((*(p) == '&')) || ((*(p) == '=')) ||
Su Hanga1515162018-02-25 12:35:58 +08001209 ((*(p) == '+'))) {
Su Hangbe95ada2018-02-25 12:35:56 +08001210 ret[len++] = *p++;
Su Hanga1515162018-02-25 12:35:58 +08001211 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08001212 int val = *(unsigned char *)p++;
1213 int hi = val / 0x10, lo = val % 0x10;
1214 ret[len++] = '%';
1215 ret[len++] = hi + (hi > 9 ? 'A' - 10 : '0');
1216 ret[len++] = lo + (lo > 9 ? 'A' - 10 : '0');
1217 }
1218 }
1219 } else if (uri->scheme != NULL) {
1220 if (len + 3 >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301221 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301222 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001223 }
1224 ret[len++] = '/';
1225 ret[len++] = '/';
1226 }
1227 if (uri->path != NULL) {
1228 p = uri->path;
1229 /*
1230 * the colon in file:///d: should not be escaped or
1231 * Windows accesses fail later.
1232 */
1233 if ((uri->scheme != NULL) && (p[0] == '/') &&
1234 (((p[1] >= 'a') && (p[1] <= 'z')) ||
1235 ((p[1] >= 'A') && (p[1] <= 'Z'))) &&
1236 (p[2] == ':') && (!strcmp(uri->scheme, "file"))) {
1237 if (len + 3 >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301238 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301239 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001240 }
1241 ret[len++] = *p++;
1242 ret[len++] = *p++;
1243 ret[len++] = *p++;
1244 }
1245 while (*p != 0) {
1246 if (len + 3 >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301247 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301248 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001249 }
1250 if ((IS_UNRESERVED(*(p))) || ((*(p) == '/')) ||
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301251 ((*(p) == ';')) || ((*(p) == '@')) || ((*(p) == '&')) ||
Su Hangbe95ada2018-02-25 12:35:56 +08001252 ((*(p) == '=')) || ((*(p) == '+')) || ((*(p) == '$')) ||
Su Hanga1515162018-02-25 12:35:58 +08001253 ((*(p) == ','))) {
Su Hangbe95ada2018-02-25 12:35:56 +08001254 ret[len++] = *p++;
Su Hanga1515162018-02-25 12:35:58 +08001255 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08001256 int val = *(unsigned char *)p++;
1257 int hi = val / 0x10, lo = val % 0x10;
1258 ret[len++] = '%';
1259 ret[len++] = hi + (hi > 9 ? 'A' - 10 : '0');
1260 ret[len++] = lo + (lo > 9 ? 'A' - 10 : '0');
1261 }
1262 }
1263 }
1264 if (uri->query != NULL) {
1265 if (len + 1 >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301266 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301267 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001268 }
1269 ret[len++] = '?';
1270 p = uri->query;
1271 while (*p != 0) {
1272 if (len + 1 >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301273 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301274 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001275 }
1276 ret[len++] = *p++;
1277 }
1278 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301279 }
1280 if (uri->fragment != NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001281 if (len + 3 >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301282 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301283 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001284 }
1285 ret[len++] = '#';
1286 p = uri->fragment;
1287 while (*p != 0) {
1288 if (len + 3 >= max) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301289 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301290 ret = temp;
Su Hangbe95ada2018-02-25 12:35:56 +08001291 }
Su Hanga1515162018-02-25 12:35:58 +08001292 if ((IS_UNRESERVED(*(p))) || (IS_RESERVED(*(p)))) {
Su Hangbe95ada2018-02-25 12:35:56 +08001293 ret[len++] = *p++;
Su Hanga1515162018-02-25 12:35:58 +08001294 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08001295 int val = *(unsigned char *)p++;
1296 int hi = val / 0x10, lo = val % 0x10;
1297 ret[len++] = '%';
1298 ret[len++] = hi + (hi > 9 ? 'A' - 10 : '0');
1299 ret[len++] = lo + (lo > 9 ? 'A' - 10 : '0');
1300 }
1301 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301302 }
1303 if (len >= max) {
1304 temp = realloc2n(ret, &max);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301305 ret = temp;
1306 }
1307 ret[len] = 0;
Su Hang42fa2722018-02-25 12:35:57 +08001308 return ret;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301309}
1310
1311/**
1312 * uri_clean:
1313 * @uri: pointer to an URI
1314 *
1315 * Make sure the URI struct is free of content
1316 */
Su Hangbe95ada2018-02-25 12:35:56 +08001317static void uri_clean(URI *uri)
1318{
Su Hanga1515162018-02-25 12:35:58 +08001319 if (uri == NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001320 return;
Su Hanga1515162018-02-25 12:35:58 +08001321 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301322
Markus Armbruster44c22862014-12-04 15:00:01 +01001323 g_free(uri->scheme);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301324 uri->scheme = NULL;
Markus Armbruster44c22862014-12-04 15:00:01 +01001325 g_free(uri->server);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301326 uri->server = NULL;
Markus Armbruster44c22862014-12-04 15:00:01 +01001327 g_free(uri->user);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301328 uri->user = NULL;
Markus Armbruster44c22862014-12-04 15:00:01 +01001329 g_free(uri->path);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301330 uri->path = NULL;
Markus Armbruster44c22862014-12-04 15:00:01 +01001331 g_free(uri->fragment);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301332 uri->fragment = NULL;
Markus Armbruster44c22862014-12-04 15:00:01 +01001333 g_free(uri->opaque);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301334 uri->opaque = NULL;
Markus Armbruster44c22862014-12-04 15:00:01 +01001335 g_free(uri->authority);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301336 uri->authority = NULL;
Markus Armbruster44c22862014-12-04 15:00:01 +01001337 g_free(uri->query);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301338 uri->query = NULL;
1339}
1340
1341/**
1342 * uri_free:
Heinrich Schuchardtc2615bd2021-06-29 08:36:02 +02001343 * @uri: pointer to an URI, NULL is ignored
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301344 *
1345 * Free up the URI struct
1346 */
Su Hangbe95ada2018-02-25 12:35:56 +08001347void uri_free(URI *uri)
1348{
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301349 uri_clean(uri);
1350 g_free(uri);
1351}
1352
1353/************************************************************************
Su Hangbe95ada2018-02-25 12:35:56 +08001354 * *
1355 * Helper functions *
1356 * *
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301357 ************************************************************************/
1358
1359/**
1360 * normalize_uri_path:
1361 * @path: pointer to the path string
1362 *
1363 * Applies the 5 normalization steps to a path string--that is, RFC 2396
1364 * Section 5.2, steps 6.c through 6.g.
1365 *
1366 * Normalization occurs directly on the string, no new allocation is done
1367 *
1368 * Returns 0 or an error code
1369 */
Su Hangbe95ada2018-02-25 12:35:56 +08001370static int normalize_uri_path(char *path)
1371{
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301372 char *cur, *out;
1373
Su Hanga1515162018-02-25 12:35:58 +08001374 if (path == NULL) {
Su Hang42fa2722018-02-25 12:35:57 +08001375 return -1;
Su Hanga1515162018-02-25 12:35:58 +08001376 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301377
1378 /* Skip all initial "/" chars. We want to get to the beginning of the
1379 * first non-empty segment.
1380 */
1381 cur = path;
Su Hanga1515162018-02-25 12:35:58 +08001382 while (cur[0] == '/') {
Su Hangbe95ada2018-02-25 12:35:56 +08001383 ++cur;
Su Hanga1515162018-02-25 12:35:58 +08001384 }
1385 if (cur[0] == '\0') {
Su Hang42fa2722018-02-25 12:35:57 +08001386 return 0;
Su Hanga1515162018-02-25 12:35:58 +08001387 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301388
1389 /* Keep everything we've seen so far. */
1390 out = cur;
1391
1392 /*
1393 * Analyze each segment in sequence for cases (c) and (d).
1394 */
1395 while (cur[0] != '\0') {
Su Hangbe95ada2018-02-25 12:35:56 +08001396 /*
1397 * c) All occurrences of "./", where "." is a complete path segment,
1398 * are removed from the buffer string.
1399 */
1400 if ((cur[0] == '.') && (cur[1] == '/')) {
1401 cur += 2;
1402 /* '//' normalization should be done at this point too */
Su Hanga1515162018-02-25 12:35:58 +08001403 while (cur[0] == '/') {
Su Hangbe95ada2018-02-25 12:35:56 +08001404 cur++;
Su Hanga1515162018-02-25 12:35:58 +08001405 }
Su Hangbe95ada2018-02-25 12:35:56 +08001406 continue;
1407 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301408
Su Hangbe95ada2018-02-25 12:35:56 +08001409 /*
1410 * d) If the buffer string ends with "." as a complete path segment,
1411 * that "." is removed.
1412 */
Su Hanga1515162018-02-25 12:35:58 +08001413 if ((cur[0] == '.') && (cur[1] == '\0')) {
Su Hangbe95ada2018-02-25 12:35:56 +08001414 break;
Su Hanga1515162018-02-25 12:35:58 +08001415 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301416
Su Hangbe95ada2018-02-25 12:35:56 +08001417 /* Otherwise keep the segment. */
1418 while (cur[0] != '/') {
Su Hanga1515162018-02-25 12:35:58 +08001419 if (cur[0] == '\0') {
Su Hangbe95ada2018-02-25 12:35:56 +08001420 goto done_cd;
Su Hanga1515162018-02-25 12:35:58 +08001421 }
Su Hangbe95ada2018-02-25 12:35:56 +08001422 (out++)[0] = (cur++)[0];
1423 }
1424 /* nomalize // */
Su Hanga1515162018-02-25 12:35:58 +08001425 while ((cur[0] == '/') && (cur[1] == '/')) {
Su Hangbe95ada2018-02-25 12:35:56 +08001426 cur++;
Su Hanga1515162018-02-25 12:35:58 +08001427 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301428
1429 (out++)[0] = (cur++)[0];
1430 }
Su Hangbe95ada2018-02-25 12:35:56 +08001431done_cd:
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301432 out[0] = '\0';
1433
1434 /* Reset to the beginning of the first segment for the next sequence. */
1435 cur = path;
Su Hanga1515162018-02-25 12:35:58 +08001436 while (cur[0] == '/') {
Su Hangbe95ada2018-02-25 12:35:56 +08001437 ++cur;
Su Hanga1515162018-02-25 12:35:58 +08001438 }
1439 if (cur[0] == '\0') {
Su Hang42fa2722018-02-25 12:35:57 +08001440 return 0;
Su Hanga1515162018-02-25 12:35:58 +08001441 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301442
1443 /*
1444 * Analyze each segment in sequence for cases (e) and (f).
1445 *
1446 * e) All occurrences of "<segment>/../", where <segment> is a
1447 * complete path segment not equal to "..", are removed from the
1448 * buffer string. Removal of these path segments is performed
1449 * iteratively, removing the leftmost matching pattern on each
1450 * iteration, until no matching pattern remains.
1451 *
1452 * f) If the buffer string ends with "<segment>/..", where <segment>
1453 * is a complete path segment not equal to "..", that
1454 * "<segment>/.." is removed.
1455 *
1456 * To satisfy the "iterative" clause in (e), we need to collapse the
1457 * string every time we find something that needs to be removed. Thus,
1458 * we don't need to keep two pointers into the string: we only need a
1459 * "current position" pointer.
1460 */
1461 while (1) {
1462 char *segp, *tmp;
1463
1464 /* At the beginning of each iteration of this loop, "cur" points to
1465 * the first character of the segment we want to examine.
1466 */
1467
1468 /* Find the end of the current segment. */
1469 segp = cur;
Su Hanga1515162018-02-25 12:35:58 +08001470 while ((segp[0] != '/') && (segp[0] != '\0')) {
Su Hangbe95ada2018-02-25 12:35:56 +08001471 ++segp;
Su Hanga1515162018-02-25 12:35:58 +08001472 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301473
1474 /* If this is the last segment, we're done (we need at least two
1475 * segments to meet the criteria for the (e) and (f) cases).
1476 */
Su Hanga1515162018-02-25 12:35:58 +08001477 if (segp[0] == '\0') {
Su Hangbe95ada2018-02-25 12:35:56 +08001478 break;
Su Hanga1515162018-02-25 12:35:58 +08001479 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301480
1481 /* If the first segment is "..", or if the next segment _isn't_ "..",
1482 * keep this segment and try the next one.
1483 */
1484 ++segp;
Su Hangbe95ada2018-02-25 12:35:56 +08001485 if (((cur[0] == '.') && (cur[1] == '.') && (segp == cur + 3)) ||
1486 ((segp[0] != '.') || (segp[1] != '.') ||
1487 ((segp[2] != '/') && (segp[2] != '\0')))) {
1488 cur = segp;
1489 continue;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301490 }
1491
1492 /* If we get here, remove this segment and the next one and back up
1493 * to the previous segment (if there is one), to implement the
1494 * "iteratively" clause. It's pretty much impossible to back up
1495 * while maintaining two pointers into the buffer, so just compact
1496 * the whole buffer now.
1497 */
1498
1499 /* If this is the end of the buffer, we're done. */
1500 if (segp[2] == '\0') {
Su Hangbe95ada2018-02-25 12:35:56 +08001501 cur[0] = '\0';
1502 break;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301503 }
1504 /* Valgrind complained, strcpy(cur, segp + 3); */
1505 /* string will overlap, do not use strcpy */
1506 tmp = cur;
1507 segp += 3;
Su Hanga1515162018-02-25 12:35:58 +08001508 while ((*tmp++ = *segp++) != 0) {
1509 /* No further work */
1510 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301511
1512 /* If there are no previous segments, then keep going from here. */
1513 segp = cur;
Su Hanga1515162018-02-25 12:35:58 +08001514 while ((segp > path) && ((--segp)[0] == '/')) {
1515 /* No further work */
1516 }
1517 if (segp == path) {
Su Hangbe95ada2018-02-25 12:35:56 +08001518 continue;
Su Hanga1515162018-02-25 12:35:58 +08001519 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301520
1521 /* "segp" is pointing to the end of a previous segment; find it's
1522 * start. We need to back up to the previous segment and start
1523 * over with that to handle things like "foo/bar/../..". If we
1524 * don't do this, then on the first pass we'll remove the "bar/..",
1525 * but be pointing at the second ".." so we won't realize we can also
1526 * remove the "foo/..".
1527 */
1528 cur = segp;
Su Hanga1515162018-02-25 12:35:58 +08001529 while ((cur > path) && (cur[-1] != '/')) {
Su Hangbe95ada2018-02-25 12:35:56 +08001530 --cur;
Su Hanga1515162018-02-25 12:35:58 +08001531 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301532 }
1533 out[0] = '\0';
1534
1535 /*
1536 * g) If the resulting buffer string still begins with one or more
1537 * complete path segments of "..", then the reference is
1538 * considered to be in error. Implementations may handle this
1539 * error by retaining these components in the resolved path (i.e.,
1540 * treating them as part of the final URI), by removing them from
1541 * the resolved path (i.e., discarding relative levels above the
1542 * root), or by avoiding traversal of the reference.
1543 *
1544 * We discard them from the final path.
1545 */
1546 if (path[0] == '/') {
Su Hangbe95ada2018-02-25 12:35:56 +08001547 cur = path;
1548 while ((cur[0] == '/') && (cur[1] == '.') && (cur[2] == '.') &&
Su Hanga1515162018-02-25 12:35:58 +08001549 ((cur[3] == '/') || (cur[3] == '\0'))) {
Su Hangbe95ada2018-02-25 12:35:56 +08001550 cur += 3;
Su Hanga1515162018-02-25 12:35:58 +08001551 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301552
Su Hangbe95ada2018-02-25 12:35:56 +08001553 if (cur != path) {
1554 out = path;
Su Hanga1515162018-02-25 12:35:58 +08001555 while (cur[0] != '\0') {
Su Hangbe95ada2018-02-25 12:35:56 +08001556 (out++)[0] = (cur++)[0];
Su Hanga1515162018-02-25 12:35:58 +08001557 }
Su Hangbe95ada2018-02-25 12:35:56 +08001558 out[0] = 0;
1559 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301560 }
1561
Su Hang42fa2722018-02-25 12:35:57 +08001562 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301563}
1564
Su Hangbe95ada2018-02-25 12:35:56 +08001565static int is_hex(char c)
1566{
1567 if (((c >= '0') && (c <= '9')) || ((c >= 'a') && (c <= 'f')) ||
Su Hanga1515162018-02-25 12:35:58 +08001568 ((c >= 'A') && (c <= 'F'))) {
Su Hang42fa2722018-02-25 12:35:57 +08001569 return 1;
Su Hanga1515162018-02-25 12:35:58 +08001570 }
Su Hang42fa2722018-02-25 12:35:57 +08001571 return 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301572}
1573
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301574/**
1575 * uri_string_unescape:
1576 * @str: the string to unescape
1577 * @len: the length in bytes to unescape (or <= 0 to indicate full string)
1578 * @target: optional destination buffer
1579 *
1580 * Unescaping routine, but does not check that the string is an URI. The
1581 * output is a direct unsigned char translation of %XX values (no encoding)
1582 * Note that the length of the result can only be smaller or same size as
1583 * the input string.
1584 *
1585 * Returns a copy of the string, but unescaped, will return NULL only in case
1586 * of error
1587 */
Su Hangbe95ada2018-02-25 12:35:56 +08001588char *uri_string_unescape(const char *str, int len, char *target)
1589{
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301590 char *ret, *out;
1591 const char *in;
1592
Su Hanga1515162018-02-25 12:35:58 +08001593 if (str == NULL) {
Su Hang42fa2722018-02-25 12:35:57 +08001594 return NULL;
Su Hanga1515162018-02-25 12:35:58 +08001595 }
1596 if (len <= 0) {
Su Hangbe95ada2018-02-25 12:35:56 +08001597 len = strlen(str);
Su Hanga1515162018-02-25 12:35:58 +08001598 }
1599 if (len < 0) {
Su Hang42fa2722018-02-25 12:35:57 +08001600 return NULL;
Su Hanga1515162018-02-25 12:35:58 +08001601 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301602
1603 if (target == NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001604 ret = g_malloc(len + 1);
Su Hanga1515162018-02-25 12:35:58 +08001605 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08001606 ret = target;
Su Hanga1515162018-02-25 12:35:58 +08001607 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301608 in = str;
1609 out = ret;
Su Hangbe95ada2018-02-25 12:35:56 +08001610 while (len > 0) {
1611 if ((len > 2) && (*in == '%') && (is_hex(in[1])) && (is_hex(in[2]))) {
1612 in++;
Su Hanga1515162018-02-25 12:35:58 +08001613 if ((*in >= '0') && (*in <= '9')) {
Su Hangbe95ada2018-02-25 12:35:56 +08001614 *out = (*in - '0');
Su Hanga1515162018-02-25 12:35:58 +08001615 } else if ((*in >= 'a') && (*in <= 'f')) {
Su Hangbe95ada2018-02-25 12:35:56 +08001616 *out = (*in - 'a') + 10;
Su Hanga1515162018-02-25 12:35:58 +08001617 } else if ((*in >= 'A') && (*in <= 'F')) {
Su Hangbe95ada2018-02-25 12:35:56 +08001618 *out = (*in - 'A') + 10;
Su Hanga1515162018-02-25 12:35:58 +08001619 }
Su Hangbe95ada2018-02-25 12:35:56 +08001620 in++;
Su Hanga1515162018-02-25 12:35:58 +08001621 if ((*in >= '0') && (*in <= '9')) {
Su Hangbe95ada2018-02-25 12:35:56 +08001622 *out = *out * 16 + (*in - '0');
Su Hanga1515162018-02-25 12:35:58 +08001623 } else if ((*in >= 'a') && (*in <= 'f')) {
Su Hangbe95ada2018-02-25 12:35:56 +08001624 *out = *out * 16 + (*in - 'a') + 10;
Su Hanga1515162018-02-25 12:35:58 +08001625 } else if ((*in >= 'A') && (*in <= 'F')) {
Su Hangbe95ada2018-02-25 12:35:56 +08001626 *out = *out * 16 + (*in - 'A') + 10;
Su Hanga1515162018-02-25 12:35:58 +08001627 }
Su Hangbe95ada2018-02-25 12:35:56 +08001628 in++;
1629 len -= 3;
1630 out++;
1631 } else {
1632 *out++ = *in++;
1633 len--;
1634 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301635 }
1636 *out = 0;
Su Hang42fa2722018-02-25 12:35:57 +08001637 return ret;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301638}
1639
1640/**
1641 * uri_string_escape:
1642 * @str: string to escape
1643 * @list: exception list string of chars not to escape
1644 *
1645 * This routine escapes a string to hex, ignoring reserved characters (a-z)
1646 * and the characters in the exception list.
1647 *
1648 * Returns a new escaped string or NULL in case of error.
1649 */
Su Hangbe95ada2018-02-25 12:35:56 +08001650char *uri_string_escape(const char *str, const char *list)
1651{
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301652 char *ret, ch;
1653 char *temp;
1654 const char *in;
1655 int len, out;
1656
Su Hanga1515162018-02-25 12:35:58 +08001657 if (str == NULL) {
Su Hang42fa2722018-02-25 12:35:57 +08001658 return NULL;
Su Hanga1515162018-02-25 12:35:58 +08001659 }
1660 if (str[0] == 0) {
Su Hang42fa2722018-02-25 12:35:57 +08001661 return g_strdup(str);
Su Hanga1515162018-02-25 12:35:58 +08001662 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301663 len = strlen(str);
Su Hanga1515162018-02-25 12:35:58 +08001664 if (!(len > 0)) {
Su Hang42fa2722018-02-25 12:35:57 +08001665 return NULL;
Su Hanga1515162018-02-25 12:35:58 +08001666 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301667
1668 len += 20;
1669 ret = g_malloc(len);
1670 in = str;
1671 out = 0;
Su Hangbe95ada2018-02-25 12:35:56 +08001672 while (*in != 0) {
1673 if (len - out <= 3) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301674 temp = realloc2n(ret, &len);
Su Hangbe95ada2018-02-25 12:35:56 +08001675 ret = temp;
1676 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301677
Su Hangbe95ada2018-02-25 12:35:56 +08001678 ch = *in;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301679
Su Hangbe95ada2018-02-25 12:35:56 +08001680 if ((ch != '@') && (!IS_UNRESERVED(ch)) && (!strchr(list, ch))) {
1681 unsigned char val;
1682 ret[out++] = '%';
1683 val = ch >> 4;
Su Hanga1515162018-02-25 12:35:58 +08001684 if (val <= 9) {
Su Hangbe95ada2018-02-25 12:35:56 +08001685 ret[out++] = '0' + val;
Su Hanga1515162018-02-25 12:35:58 +08001686 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08001687 ret[out++] = 'A' + val - 0xA;
Su Hanga1515162018-02-25 12:35:58 +08001688 }
Su Hangbe95ada2018-02-25 12:35:56 +08001689 val = ch & 0xF;
Su Hanga1515162018-02-25 12:35:58 +08001690 if (val <= 9) {
Su Hangbe95ada2018-02-25 12:35:56 +08001691 ret[out++] = '0' + val;
Su Hanga1515162018-02-25 12:35:58 +08001692 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08001693 ret[out++] = 'A' + val - 0xA;
Su Hanga1515162018-02-25 12:35:58 +08001694 }
Su Hangbe95ada2018-02-25 12:35:56 +08001695 in++;
1696 } else {
1697 ret[out++] = *in++;
1698 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301699 }
1700 ret[out] = 0;
Su Hang42fa2722018-02-25 12:35:57 +08001701 return ret;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301702}
1703
1704/************************************************************************
Su Hangbe95ada2018-02-25 12:35:56 +08001705 * *
1706 * Public functions *
1707 * *
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301708 ************************************************************************/
1709
1710/**
1711 * uri_resolve:
1712 * @URI: the URI instance found in the document
1713 * @base: the base value
1714 *
1715 * Computes he final URI of the reference done by checking that
1716 * the given URI is valid, and building the final URI using the
1717 * base URI. This is processed according to section 5.2 of the
1718 * RFC 2396
1719 *
1720 * 5.2. Resolving Relative References to Absolute Form
1721 *
1722 * Returns a new URI string (to be freed by the caller) or NULL in case
1723 * of error.
1724 */
Su Hangbe95ada2018-02-25 12:35:56 +08001725char *uri_resolve(const char *uri, const char *base)
1726{
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301727 char *val = NULL;
1728 int ret, len, indx, cur, out;
1729 URI *ref = NULL;
1730 URI *bas = NULL;
1731 URI *res = NULL;
1732
1733 /*
1734 * 1) The URI reference is parsed into the potential four components and
1735 * fragment identifier, as described in Section 4.3.
1736 *
1737 * NOTE that a completely empty URI is treated by modern browsers
1738 * as a reference to "." rather than as a synonym for the current
1739 * URI. Should we do that here?
1740 */
Su Hanga1515162018-02-25 12:35:58 +08001741 if (uri == NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001742 ret = -1;
Su Hanga1515162018-02-25 12:35:58 +08001743 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08001744 if (*uri) {
1745 ref = uri_new();
1746 ret = uri_parse_into(ref, uri);
Su Hanga1515162018-02-25 12:35:58 +08001747 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08001748 ret = 0;
Su Hanga1515162018-02-25 12:35:58 +08001749 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301750 }
Su Hanga1515162018-02-25 12:35:58 +08001751 if (ret != 0) {
Su Hangbe95ada2018-02-25 12:35:56 +08001752 goto done;
Su Hanga1515162018-02-25 12:35:58 +08001753 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301754 if ((ref != NULL) && (ref->scheme != NULL)) {
Su Hangbe95ada2018-02-25 12:35:56 +08001755 /*
1756 * The URI is absolute don't modify.
1757 */
1758 val = g_strdup(uri);
1759 goto done;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301760 }
Su Hanga1515162018-02-25 12:35:58 +08001761 if (base == NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001762 ret = -1;
Su Hanga1515162018-02-25 12:35:58 +08001763 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08001764 bas = uri_new();
1765 ret = uri_parse_into(bas, base);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301766 }
1767 if (ret != 0) {
Su Hanga1515162018-02-25 12:35:58 +08001768 if (ref) {
Su Hangbe95ada2018-02-25 12:35:56 +08001769 val = uri_to_string(ref);
Su Hanga1515162018-02-25 12:35:58 +08001770 }
Su Hangbe95ada2018-02-25 12:35:56 +08001771 goto done;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301772 }
1773 if (ref == NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001774 /*
1775 * the base fragment must be ignored
1776 */
Markus Armbruster44c22862014-12-04 15:00:01 +01001777 g_free(bas->fragment);
1778 bas->fragment = NULL;
Su Hangbe95ada2018-02-25 12:35:56 +08001779 val = uri_to_string(bas);
1780 goto done;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301781 }
1782
1783 /*
1784 * 2) If the path component is empty and the scheme, authority, and
1785 * query components are undefined, then it is a reference to the
1786 * current document and we are done. Otherwise, the reference URI's
1787 * query and fragment components are defined as found (or not found)
1788 * within the URI reference and not inherited from the base URI.
1789 *
1790 * NOTE that in modern browsers, the parsing differs from the above
1791 * in the following aspect: the query component is allowed to be
1792 * defined while still treating this as a reference to the current
1793 * document.
1794 */
1795 res = uri_new();
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301796 if ((ref->scheme == NULL) && (ref->path == NULL) &&
Su Hangbe95ada2018-02-25 12:35:56 +08001797 ((ref->authority == NULL) && (ref->server == NULL))) {
Markus Armbruster24588102014-12-04 10:26:55 +01001798 res->scheme = g_strdup(bas->scheme);
Su Hanga1515162018-02-25 12:35:58 +08001799 if (bas->authority != NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001800 res->authority = g_strdup(bas->authority);
Su Hanga1515162018-02-25 12:35:58 +08001801 } else if (bas->server != NULL) {
Markus Armbruster24588102014-12-04 10:26:55 +01001802 res->server = g_strdup(bas->server);
1803 res->user = g_strdup(bas->user);
1804 res->port = bas->port;
Su Hangbe95ada2018-02-25 12:35:56 +08001805 }
Markus Armbruster24588102014-12-04 10:26:55 +01001806 res->path = g_strdup(bas->path);
1807 if (ref->query != NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001808 res->query = g_strdup(ref->query);
Markus Armbruster24588102014-12-04 10:26:55 +01001809 } else {
1810 res->query = g_strdup(bas->query);
1811 }
1812 res->fragment = g_strdup(ref->fragment);
Su Hangbe95ada2018-02-25 12:35:56 +08001813 goto step_7;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301814 }
1815
1816 /*
1817 * 3) If the scheme component is defined, indicating that the reference
1818 * starts with a scheme name, then the reference is interpreted as an
1819 * absolute URI and we are done. Otherwise, the reference URI's
1820 * scheme is inherited from the base URI's scheme component.
1821 */
1822 if (ref->scheme != NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001823 val = uri_to_string(ref);
1824 goto done;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301825 }
Markus Armbruster24588102014-12-04 10:26:55 +01001826 res->scheme = g_strdup(bas->scheme);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301827
Markus Armbruster24588102014-12-04 10:26:55 +01001828 res->query = g_strdup(ref->query);
1829 res->fragment = g_strdup(ref->fragment);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301830
1831 /*
1832 * 4) If the authority component is defined, then the reference is a
1833 * network-path and we skip to step 7. Otherwise, the reference
1834 * URI's authority is inherited from the base URI's authority
1835 * component, which will also be undefined if the URI scheme does not
1836 * use an authority component.
1837 */
1838 if ((ref->authority != NULL) || (ref->server != NULL)) {
Su Hanga1515162018-02-25 12:35:58 +08001839 if (ref->authority != NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001840 res->authority = g_strdup(ref->authority);
Su Hanga1515162018-02-25 12:35:58 +08001841 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08001842 res->server = g_strdup(ref->server);
Markus Armbruster24588102014-12-04 10:26:55 +01001843 res->user = g_strdup(ref->user);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301844 res->port = ref->port;
Su Hangbe95ada2018-02-25 12:35:56 +08001845 }
Markus Armbruster24588102014-12-04 10:26:55 +01001846 res->path = g_strdup(ref->path);
Su Hangbe95ada2018-02-25 12:35:56 +08001847 goto step_7;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301848 }
Su Hanga1515162018-02-25 12:35:58 +08001849 if (bas->authority != NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001850 res->authority = g_strdup(bas->authority);
Su Hanga1515162018-02-25 12:35:58 +08001851 } else if (bas->server != NULL) {
Markus Armbruster24588102014-12-04 10:26:55 +01001852 res->server = g_strdup(bas->server);
1853 res->user = g_strdup(bas->user);
Su Hangbe95ada2018-02-25 12:35:56 +08001854 res->port = bas->port;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301855 }
1856
1857 /*
1858 * 5) If the path component begins with a slash character ("/"), then
1859 * the reference is an absolute-path and we skip to step 7.
1860 */
1861 if ((ref->path != NULL) && (ref->path[0] == '/')) {
Su Hangbe95ada2018-02-25 12:35:56 +08001862 res->path = g_strdup(ref->path);
1863 goto step_7;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301864 }
1865
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301866 /*
1867 * 6) If this step is reached, then we are resolving a relative-path
1868 * reference. The relative path needs to be merged with the base
1869 * URI's path. Although there are many ways to do this, we will
1870 * describe a simple method using a separate string buffer.
1871 *
1872 * Allocate a buffer large enough for the result string.
1873 */
1874 len = 2; /* extra / and 0 */
Su Hanga1515162018-02-25 12:35:58 +08001875 if (ref->path != NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001876 len += strlen(ref->path);
Su Hanga1515162018-02-25 12:35:58 +08001877 }
1878 if (bas->path != NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001879 len += strlen(bas->path);
Su Hanga1515162018-02-25 12:35:58 +08001880 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301881 res->path = g_malloc(len);
1882 res->path[0] = 0;
1883
1884 /*
1885 * a) All but the last segment of the base URI's path component is
1886 * copied to the buffer. In other words, any characters after the
1887 * last (right-most) slash character, if any, are excluded.
1888 */
1889 cur = 0;
1890 out = 0;
1891 if (bas->path != NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08001892 while (bas->path[cur] != 0) {
Su Hanga1515162018-02-25 12:35:58 +08001893 while ((bas->path[cur] != 0) && (bas->path[cur] != '/')) {
Su Hangbe95ada2018-02-25 12:35:56 +08001894 cur++;
Su Hanga1515162018-02-25 12:35:58 +08001895 }
1896 if (bas->path[cur] == 0) {
Su Hangbe95ada2018-02-25 12:35:56 +08001897 break;
Su Hanga1515162018-02-25 12:35:58 +08001898 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301899
Su Hangbe95ada2018-02-25 12:35:56 +08001900 cur++;
1901 while (out < cur) {
1902 res->path[out] = bas->path[out];
1903 out++;
1904 }
1905 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301906 }
1907 res->path[out] = 0;
1908
1909 /*
1910 * b) The reference's path component is appended to the buffer
1911 * string.
1912 */
1913 if (ref->path != NULL && ref->path[0] != 0) {
Su Hangbe95ada2018-02-25 12:35:56 +08001914 indx = 0;
1915 /*
1916 * Ensure the path includes a '/'
1917 */
Su Hanga1515162018-02-25 12:35:58 +08001918 if ((out == 0) && (bas->server != NULL)) {
Su Hangbe95ada2018-02-25 12:35:56 +08001919 res->path[out++] = '/';
Su Hanga1515162018-02-25 12:35:58 +08001920 }
Su Hangbe95ada2018-02-25 12:35:56 +08001921 while (ref->path[indx] != 0) {
1922 res->path[out++] = ref->path[indx++];
1923 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301924 }
1925 res->path[out] = 0;
1926
1927 /*
1928 * Steps c) to h) are really path normalization steps
1929 */
1930 normalize_uri_path(res->path);
1931
1932step_7:
1933
1934 /*
1935 * 7) The resulting URI components, including any inherited from the
1936 * base URI, are recombined to give the absolute form of the URI
1937 * reference.
1938 */
1939 val = uri_to_string(res);
1940
1941done:
Heinrich Schuchardtc2615bd2021-06-29 08:36:02 +02001942 uri_free(ref);
1943 uri_free(bas);
1944 uri_free(res);
Su Hang42fa2722018-02-25 12:35:57 +08001945 return val;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301946}
1947
1948/**
1949 * uri_resolve_relative:
1950 * @URI: the URI reference under consideration
1951 * @base: the base value
1952 *
1953 * Expresses the URI of the reference in terms relative to the
1954 * base. Some examples of this operation include:
1955 * base = "http://site1.com/docs/book1.html"
1956 * URI input URI returned
1957 * docs/pic1.gif pic1.gif
1958 * docs/img/pic1.gif img/pic1.gif
1959 * img/pic1.gif ../img/pic1.gif
1960 * http://site1.com/docs/pic1.gif pic1.gif
1961 * http://site2.com/docs/pic1.gif http://site2.com/docs/pic1.gif
1962 *
1963 * base = "docs/book1.html"
1964 * URI input URI returned
1965 * docs/pic1.gif pic1.gif
1966 * docs/img/pic1.gif img/pic1.gif
1967 * img/pic1.gif ../img/pic1.gif
1968 * http://site1.com/docs/pic1.gif http://site1.com/docs/pic1.gif
1969 *
1970 *
Stefan Weila93cf9d2012-11-02 08:29:53 +01001971 * Note: if the URI reference is really weird or complicated, it may be
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301972 * worthwhile to first convert it into a "nice" one by calling
1973 * uri_resolve (using 'base') before calling this routine,
1974 * since this routine (for reasonable efficiency) assumes URI has
1975 * already been through some validation.
1976 *
1977 * Returns a new URI string (to be freed by the caller) or NULL in case
1978 * error.
1979 */
Su Hangbe95ada2018-02-25 12:35:56 +08001980char *uri_resolve_relative(const char *uri, const char *base)
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301981{
1982 char *val = NULL;
1983 int ret;
1984 int ix;
1985 int pos = 0;
1986 int nbslash = 0;
1987 int len;
1988 URI *ref = NULL;
1989 URI *bas = NULL;
1990 char *bptr, *uptr, *vptr;
1991 int remove_path = 0;
1992
Su Hanga1515162018-02-25 12:35:58 +08001993 if ((uri == NULL) || (*uri == 0)) {
Su Hangbe95ada2018-02-25 12:35:56 +08001994 return NULL;
Su Hanga1515162018-02-25 12:35:58 +08001995 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05301996
1997 /*
1998 * First parse URI into a standard form
1999 */
Su Hangbe95ada2018-02-25 12:35:56 +08002000 ref = uri_new();
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302001 /* If URI not already in "relative" form */
2002 if (uri[0] != '.') {
Su Hangbe95ada2018-02-25 12:35:56 +08002003 ret = uri_parse_into(ref, uri);
Su Hanga1515162018-02-25 12:35:58 +08002004 if (ret != 0) {
Su Hangbe95ada2018-02-25 12:35:56 +08002005 goto done; /* Error in URI, return NULL */
Su Hanga1515162018-02-25 12:35:58 +08002006 }
2007 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08002008 ref->path = g_strdup(uri);
Su Hanga1515162018-02-25 12:35:58 +08002009 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302010
2011 /*
2012 * Next parse base into the same standard form
2013 */
2014 if ((base == NULL) || (*base == 0)) {
Su Hangbe95ada2018-02-25 12:35:56 +08002015 val = g_strdup(uri);
2016 goto done;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302017 }
Su Hangbe95ada2018-02-25 12:35:56 +08002018 bas = uri_new();
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302019 if (base[0] != '.') {
Su Hangbe95ada2018-02-25 12:35:56 +08002020 ret = uri_parse_into(bas, base);
Su Hanga1515162018-02-25 12:35:58 +08002021 if (ret != 0) {
Su Hangbe95ada2018-02-25 12:35:56 +08002022 goto done; /* Error in base, return NULL */
Su Hanga1515162018-02-25 12:35:58 +08002023 }
2024 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08002025 bas->path = g_strdup(base);
Su Hanga1515162018-02-25 12:35:58 +08002026 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302027
2028 /*
2029 * If the scheme / server on the URI differs from the base,
2030 * just return the URI
2031 */
2032 if ((ref->scheme != NULL) &&
Su Hangbe95ada2018-02-25 12:35:56 +08002033 ((bas->scheme == NULL) || (strcmp(bas->scheme, ref->scheme)) ||
2034 (strcmp(bas->server, ref->server)))) {
2035 val = g_strdup(uri);
2036 goto done;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302037 }
Markus Armbrusterafb30dd2015-01-27 17:13:52 +01002038 if (bas->path == ref->path ||
2039 (bas->path && ref->path && !strcmp(bas->path, ref->path))) {
Su Hangbe95ada2018-02-25 12:35:56 +08002040 val = g_strdup("");
2041 goto done;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302042 }
2043 if (bas->path == NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08002044 val = g_strdup(ref->path);
2045 goto done;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302046 }
2047 if (ref->path == NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08002048 ref->path = (char *)"/";
2049 remove_path = 1;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302050 }
2051
2052 /*
2053 * At this point (at last!) we can compare the two paths
2054 *
2055 * First we take care of the special case where either of the
2056 * two path components may be missing (bug 316224)
2057 */
2058 if (bas->path == NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08002059 if (ref->path != NULL) {
2060 uptr = ref->path;
Su Hanga1515162018-02-25 12:35:58 +08002061 if (*uptr == '/') {
Su Hangbe95ada2018-02-25 12:35:56 +08002062 uptr++;
Su Hanga1515162018-02-25 12:35:58 +08002063 }
Su Hangbe95ada2018-02-25 12:35:56 +08002064 /* exception characters from uri_to_string */
2065 val = uri_string_escape(uptr, "/;&=+$,");
2066 }
2067 goto done;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302068 }
2069 bptr = bas->path;
2070 if (ref->path == NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08002071 for (ix = 0; bptr[ix] != 0; ix++) {
Su Hanga1515162018-02-25 12:35:58 +08002072 if (bptr[ix] == '/') {
Su Hangbe95ada2018-02-25 12:35:56 +08002073 nbslash++;
Su Hanga1515162018-02-25 12:35:58 +08002074 }
Su Hangbe95ada2018-02-25 12:35:56 +08002075 }
2076 uptr = NULL;
2077 len = 1; /* this is for a string terminator only */
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302078 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08002079 /*
2080 * Next we compare the two strings and find where they first differ
2081 */
Su Hanga1515162018-02-25 12:35:58 +08002082 if ((ref->path[pos] == '.') && (ref->path[pos + 1] == '/')) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302083 pos += 2;
Su Hanga1515162018-02-25 12:35:58 +08002084 }
2085 if ((*bptr == '.') && (bptr[1] == '/')) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302086 bptr += 2;
Su Hanga1515162018-02-25 12:35:58 +08002087 } else if ((*bptr == '/') && (ref->path[pos] != '/')) {
Su Hangbe95ada2018-02-25 12:35:56 +08002088 bptr++;
Su Hanga1515162018-02-25 12:35:58 +08002089 }
2090 while ((bptr[pos] == ref->path[pos]) && (bptr[pos] != 0)) {
Su Hangbe95ada2018-02-25 12:35:56 +08002091 pos++;
Su Hanga1515162018-02-25 12:35:58 +08002092 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302093
Su Hangbe95ada2018-02-25 12:35:56 +08002094 if (bptr[pos] == ref->path[pos]) {
2095 val = g_strdup("");
2096 goto done; /* (I can't imagine why anyone would do this) */
2097 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302098
Su Hangbe95ada2018-02-25 12:35:56 +08002099 /*
2100 * In URI, "back up" to the last '/' encountered. This will be the
2101 * beginning of the "unique" suffix of URI
2102 */
2103 ix = pos;
Su Hanga1515162018-02-25 12:35:58 +08002104 if ((ref->path[ix] == '/') && (ix > 0)) {
Su Hangbe95ada2018-02-25 12:35:56 +08002105 ix--;
Su Hanga1515162018-02-25 12:35:58 +08002106 } else if ((ref->path[ix] == 0) && (ix > 1)
2107 && (ref->path[ix - 1] == '/')) {
Su Hangbe95ada2018-02-25 12:35:56 +08002108 ix -= 2;
Su Hanga1515162018-02-25 12:35:58 +08002109 }
Su Hangbe95ada2018-02-25 12:35:56 +08002110 for (; ix > 0; ix--) {
Su Hanga1515162018-02-25 12:35:58 +08002111 if (ref->path[ix] == '/') {
Su Hangbe95ada2018-02-25 12:35:56 +08002112 break;
Su Hanga1515162018-02-25 12:35:58 +08002113 }
Su Hangbe95ada2018-02-25 12:35:56 +08002114 }
2115 if (ix == 0) {
2116 uptr = ref->path;
2117 } else {
2118 ix++;
2119 uptr = &ref->path[ix];
2120 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302121
Su Hangbe95ada2018-02-25 12:35:56 +08002122 /*
2123 * In base, count the number of '/' from the differing point
2124 */
2125 if (bptr[pos] != ref->path[pos]) { /* check for trivial URI == base */
2126 for (; bptr[ix] != 0; ix++) {
Su Hanga1515162018-02-25 12:35:58 +08002127 if (bptr[ix] == '/') {
Su Hangbe95ada2018-02-25 12:35:56 +08002128 nbslash++;
Su Hanga1515162018-02-25 12:35:58 +08002129 }
Su Hangbe95ada2018-02-25 12:35:56 +08002130 }
2131 }
2132 len = strlen(uptr) + 1;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302133 }
2134
2135 if (nbslash == 0) {
Su Hanga1515162018-02-25 12:35:58 +08002136 if (uptr != NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08002137 /* exception characters from uri_to_string */
2138 val = uri_string_escape(uptr, "/;&=+$,");
Su Hanga1515162018-02-25 12:35:58 +08002139 }
Su Hangbe95ada2018-02-25 12:35:56 +08002140 goto done;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302141 }
2142
2143 /*
2144 * Allocate just enough space for the returned string -
2145 * length of the remainder of the URI, plus enough space
2146 * for the "../" groups, plus one for the terminator
2147 */
Su Hangbe95ada2018-02-25 12:35:56 +08002148 val = g_malloc(len + 3 * nbslash);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302149 vptr = val;
2150 /*
2151 * Put in as many "../" as needed
2152 */
Su Hangbe95ada2018-02-25 12:35:56 +08002153 for (; nbslash > 0; nbslash--) {
2154 *vptr++ = '.';
2155 *vptr++ = '.';
2156 *vptr++ = '/';
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302157 }
2158 /*
2159 * Finish up with the end of the URI
2160 */
2161 if (uptr != NULL) {
Su Hangbe95ada2018-02-25 12:35:56 +08002162 if ((vptr > val) && (len > 0) && (uptr[0] == '/') &&
2163 (vptr[-1] == '/')) {
2164 memcpy(vptr, uptr + 1, len - 1);
2165 vptr[len - 2] = 0;
2166 } else {
2167 memcpy(vptr, uptr, len);
2168 vptr[len - 1] = 0;
2169 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302170 } else {
Su Hangbe95ada2018-02-25 12:35:56 +08002171 vptr[len - 1] = 0;
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302172 }
2173
2174 /* escape the freshly-built path */
2175 vptr = val;
Su Hangbe95ada2018-02-25 12:35:56 +08002176 /* exception characters from uri_to_string */
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302177 val = uri_string_escape(vptr, "/;&=+$,");
2178 g_free(vptr);
2179
2180done:
2181 /*
2182 * Free the working variables
2183 */
Su Hanga1515162018-02-25 12:35:58 +08002184 if (remove_path != 0) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302185 ref->path = NULL;
Su Hanga1515162018-02-25 12:35:58 +08002186 }
Heinrich Schuchardtc2615bd2021-06-29 08:36:02 +02002187 uri_free(ref);
2188 uri_free(bas);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302189
2190 return val;
2191}
2192
2193/*
2194 * Utility functions to help parse and assemble query strings.
2195 */
2196
Su Hangbe95ada2018-02-25 12:35:56 +08002197struct QueryParams *query_params_new(int init_alloc)
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302198{
2199 struct QueryParams *ps;
2200
Su Hanga1515162018-02-25 12:35:58 +08002201 if (init_alloc <= 0) {
Su Hangbe95ada2018-02-25 12:35:56 +08002202 init_alloc = 1;
Su Hanga1515162018-02-25 12:35:58 +08002203 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302204
2205 ps = g_new(QueryParams, 1);
2206 ps->n = 0;
2207 ps->alloc = init_alloc;
2208 ps->p = g_new(QueryParam, ps->alloc);
2209
2210 return ps;
2211}
2212
2213/* Ensure there is space to store at least one more parameter
2214 * at the end of the set.
2215 */
Su Hangbe95ada2018-02-25 12:35:56 +08002216static int query_params_append(struct QueryParams *ps, const char *name,
2217 const char *value)
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302218{
2219 if (ps->n >= ps->alloc) {
2220 ps->p = g_renew(QueryParam, ps->p, ps->alloc * 2);
2221 ps->alloc *= 2;
2222 }
2223
2224 ps->p[ps->n].name = g_strdup(name);
Dong Xu Wang7f303ad2013-05-09 15:53:49 +08002225 ps->p[ps->n].value = g_strdup(value);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302226 ps->p[ps->n].ignore = 0;
2227 ps->n++;
2228
2229 return 0;
2230}
2231
Su Hangbe95ada2018-02-25 12:35:56 +08002232void query_params_free(struct QueryParams *ps)
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302233{
2234 int i;
2235
2236 for (i = 0; i < ps->n; ++i) {
Su Hangbe95ada2018-02-25 12:35:56 +08002237 g_free(ps->p[i].name);
2238 g_free(ps->p[i].value);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302239 }
Su Hangbe95ada2018-02-25 12:35:56 +08002240 g_free(ps->p);
2241 g_free(ps);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302242}
2243
Su Hangbe95ada2018-02-25 12:35:56 +08002244struct QueryParams *query_params_parse(const char *query)
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302245{
2246 struct QueryParams *ps;
2247 const char *end, *eq;
2248
Su Hangbe95ada2018-02-25 12:35:56 +08002249 ps = query_params_new(0);
Su Hanga1515162018-02-25 12:35:58 +08002250 if (!query || query[0] == '\0') {
Su Hangbe95ada2018-02-25 12:35:56 +08002251 return ps;
Su Hanga1515162018-02-25 12:35:58 +08002252 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302253
2254 while (*query) {
2255 char *name = NULL, *value = NULL;
2256
2257 /* Find the next separator, or end of the string. */
Su Hangbe95ada2018-02-25 12:35:56 +08002258 end = strchr(query, '&');
Su Hanga1515162018-02-25 12:35:58 +08002259 if (!end) {
Keno Fischer5c99fa32018-06-29 12:32:10 +02002260 end = qemu_strchrnul(query, ';');
Su Hanga1515162018-02-25 12:35:58 +08002261 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302262
2263 /* Find the first '=' character between here and end. */
Su Hangbe95ada2018-02-25 12:35:56 +08002264 eq = strchr(query, '=');
Su Hanga1515162018-02-25 12:35:58 +08002265 if (eq && eq >= end) {
Su Hangbe95ada2018-02-25 12:35:56 +08002266 eq = NULL;
Su Hanga1515162018-02-25 12:35:58 +08002267 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302268
2269 /* Empty section (eg. "&&"). */
Su Hanga1515162018-02-25 12:35:58 +08002270 if (end == query) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302271 goto next;
Su Hanga1515162018-02-25 12:35:58 +08002272 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302273
2274 /* If there is no '=' character, then we have just "name"
2275 * and consistent with CGI.pm we assume value is "".
2276 */
2277 else if (!eq) {
Su Hangbe95ada2018-02-25 12:35:56 +08002278 name = uri_string_unescape(query, end - query, NULL);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302279 value = NULL;
2280 }
2281 /* Or if we have "name=" here (works around annoying
2282 * problem when calling uri_string_unescape with len = 0).
2283 */
Su Hangbe95ada2018-02-25 12:35:56 +08002284 else if (eq + 1 == end) {
2285 name = uri_string_unescape(query, eq - query, NULL);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302286 value = g_new0(char, 1);
2287 }
2288 /* If the '=' character is at the beginning then we have
2289 * "=value" and consistent with CGI.pm we _ignore_ this.
2290 */
Su Hanga1515162018-02-25 12:35:58 +08002291 else if (query == eq) {
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302292 goto next;
Su Hanga1515162018-02-25 12:35:58 +08002293 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302294
2295 /* Otherwise it's "name=value". */
2296 else {
Su Hangbe95ada2018-02-25 12:35:56 +08002297 name = uri_string_unescape(query, eq - query, NULL);
2298 value = uri_string_unescape(eq + 1, end - (eq + 1), NULL);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302299 }
2300
2301 /* Append to the parameter set. */
Su Hangbe95ada2018-02-25 12:35:56 +08002302 query_params_append(ps, name, value);
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302303 g_free(name);
2304 g_free(value);
2305
2306 next:
2307 query = end;
Su Hanga1515162018-02-25 12:35:58 +08002308 if (*query) {
Su Hangbe95ada2018-02-25 12:35:56 +08002309 query++; /* skip '&' separator */
Su Hanga1515162018-02-25 12:35:58 +08002310 }
Paolo Bonzinica0defb2012-09-24 14:42:02 +05302311 }
2312
2313 return ps;
2314}