blob: b7e2d32a6ce49a87d31bd035d455e4a67a56555d [file] [log] [blame]
Kristian Monsen5ab50182010-05-14 18:53:44 +01001/***************************************************************************
2 * _ _ ____ _
3 * Project ___| | | | _ \| |
4 * / __| | | | |_) | |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
7 *
Alex Deymo486467e2017-12-19 19:04:07 +01008 * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
Kristian Monsen5ab50182010-05-14 18:53:44 +01009 *
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
Alex Deymod15eaac2016-06-28 14:49:26 -070012 * are also available at https://curl.haxx.se/docs/copyright.html.
Kristian Monsen5ab50182010-05-14 18:53:44 +010013 *
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ***************************************************************************/
22
23/* Escape and unescape URL encoding in strings. The functions return a new
24 * allocated string or NULL if an error occurred. */
25
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070026#include "curl_setup.h"
27
Kristian Monsen5ab50182010-05-14 18:53:44 +010028#include <curl/curl.h>
29
Kristian Monsen5ab50182010-05-14 18:53:44 +010030#include "urldata.h"
Kristian Monsen5ab50182010-05-14 18:53:44 +010031#include "warnless.h"
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070032#include "non-ascii.h"
33#include "escape.h"
Elliott Hughescee03382017-06-23 12:17:18 -070034#include "strdup.h"
Alex Deymod15eaac2016-06-28 14:49:26 -070035/* The last 3 #include files should be in this order */
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070036#include "curl_printf.h"
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070037#include "curl_memory.h"
Kristian Monsen5ab50182010-05-14 18:53:44 +010038#include "memdebug.h"
39
40/* Portable character check (remember EBCDIC). Do not use isalnum() because
Lucas Eckels9bd90e62012-08-06 15:07:02 -070041 its behavior is altered by the current locale.
Alex Deymod15eaac2016-06-28 14:49:26 -070042 See https://tools.ietf.org/html/rfc3986#section-2.3
Lucas Eckels9bd90e62012-08-06 15:07:02 -070043*/
44static bool Curl_isunreserved(unsigned char in)
Kristian Monsen5ab50182010-05-14 18:53:44 +010045{
Elliott Hughes82be86d2017-09-20 17:00:17 -070046 switch(in) {
Kristian Monsen5ab50182010-05-14 18:53:44 +010047 case '0': case '1': case '2': case '3': case '4':
48 case '5': case '6': case '7': case '8': case '9':
49 case 'a': case 'b': case 'c': case 'd': case 'e':
50 case 'f': case 'g': case 'h': case 'i': case 'j':
51 case 'k': case 'l': case 'm': case 'n': case 'o':
52 case 'p': case 'q': case 'r': case 's': case 't':
53 case 'u': case 'v': case 'w': case 'x': case 'y': case 'z':
54 case 'A': case 'B': case 'C': case 'D': case 'E':
55 case 'F': case 'G': case 'H': case 'I': case 'J':
56 case 'K': case 'L': case 'M': case 'N': case 'O':
57 case 'P': case 'Q': case 'R': case 'S': case 'T':
58 case 'U': case 'V': case 'W': case 'X': case 'Y': case 'Z':
Lucas Eckels9bd90e62012-08-06 15:07:02 -070059 case '-': case '.': case '_': case '~':
Kristian Monsen5ab50182010-05-14 18:53:44 +010060 return TRUE;
61 default:
62 break;
63 }
64 return FALSE;
65}
66
67/* for ABI-compatibility with previous versions */
68char *curl_escape(const char *string, int inlength)
69{
70 return curl_easy_escape(NULL, string, inlength);
71}
72
73/* for ABI-compatibility with previous versions */
74char *curl_unescape(const char *string, int length)
75{
76 return curl_easy_unescape(NULL, string, length, NULL);
77}
78
Alex Deymoe3149cc2016-10-05 11:18:42 -070079char *curl_easy_escape(struct Curl_easy *data, const char *string,
80 int inlength)
Kristian Monsen5ab50182010-05-14 18:53:44 +010081{
Elliott Hughescee03382017-06-23 12:17:18 -070082 size_t alloc;
Kristian Monsen5ab50182010-05-14 18:53:44 +010083 char *ns;
84 char *testing_ptr = NULL;
85 unsigned char in; /* we need to treat the characters unsigned */
Elliott Hughescee03382017-06-23 12:17:18 -070086 size_t newlen;
Alex Deymo486467e2017-12-19 19:04:07 +010087 size_t strindex = 0;
Kristian Monsen5ab50182010-05-14 18:53:44 +010088 size_t length;
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070089 CURLcode result;
Kristian Monsen5ab50182010-05-14 18:53:44 +010090
Elliott Hughescee03382017-06-23 12:17:18 -070091 if(inlength < 0)
92 return NULL;
93
Alex Deymo486467e2017-12-19 19:04:07 +010094 alloc = (inlength?(size_t)inlength:strlen(string)) + 1;
Elliott Hughescee03382017-06-23 12:17:18 -070095 newlen = alloc;
96
Kristian Monsen5ab50182010-05-14 18:53:44 +010097 ns = malloc(alloc);
98 if(!ns)
99 return NULL;
100
101 length = alloc-1;
102 while(length--) {
103 in = *string;
104
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700105 if(Curl_isunreserved(in))
Kristian Monsen5ab50182010-05-14 18:53:44 +0100106 /* just copy this */
Alex Deymo486467e2017-12-19 19:04:07 +0100107 ns[strindex++] = in;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100108 else {
109 /* encode it */
110 newlen += 2; /* the size grows with two, since this'll become a %XX */
111 if(newlen > alloc) {
112 alloc *= 2;
Elliott Hughescee03382017-06-23 12:17:18 -0700113 testing_ptr = Curl_saferealloc(ns, alloc);
114 if(!testing_ptr)
Kristian Monsen5ab50182010-05-14 18:53:44 +0100115 return NULL;
Elliott Hughes82be86d2017-09-20 17:00:17 -0700116 ns = testing_ptr;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100117 }
118
Alex Deymo486467e2017-12-19 19:04:07 +0100119 result = Curl_convert_to_network(data, (char *)&in, 1);
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700120 if(result) {
Kristian Monsen5ab50182010-05-14 18:53:44 +0100121 /* Curl_convert_to_network calls failf if unsuccessful */
122 free(ns);
123 return NULL;
124 }
Kristian Monsen5ab50182010-05-14 18:53:44 +0100125
126 snprintf(&ns[strindex], 4, "%%%02X", in);
127
Alex Deymo486467e2017-12-19 19:04:07 +0100128 strindex += 3;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100129 }
130 string++;
131 }
Alex Deymo486467e2017-12-19 19:04:07 +0100132 ns[strindex] = 0; /* terminate it */
Kristian Monsen5ab50182010-05-14 18:53:44 +0100133 return ns;
134}
135
136/*
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700137 * Curl_urldecode() URL decodes the given string.
138 *
139 * Optionally detects control characters (byte codes lower than 32) in the
140 * data and rejects such data.
141 *
142 * Returns a pointer to a malloced string in *ostring with length given in
143 * *olen. If length == 0, the length is assumed to be strlen(string).
144 *
Kristian Monsen5ab50182010-05-14 18:53:44 +0100145 */
Alex Deymoe3149cc2016-10-05 11:18:42 -0700146CURLcode Curl_urldecode(struct Curl_easy *data,
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700147 const char *string, size_t length,
148 char **ostring, size_t *olen,
149 bool reject_ctrl)
Kristian Monsen5ab50182010-05-14 18:53:44 +0100150{
Alex Deymo486467e2017-12-19 19:04:07 +0100151 size_t alloc = (length?length:strlen(string)) + 1;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100152 char *ns = malloc(alloc);
153 unsigned char in;
Alex Deymo486467e2017-12-19 19:04:07 +0100154 size_t strindex = 0;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100155 unsigned long hex;
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700156 CURLcode result;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100157
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700158 if(!ns)
159 return CURLE_OUT_OF_MEMORY;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100160
161 while(--alloc > 0) {
162 in = *string;
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700163 if(('%' == in) && (alloc > 2) &&
164 ISXDIGIT(string[1]) && ISXDIGIT(string[2])) {
Kristian Monsen5ab50182010-05-14 18:53:44 +0100165 /* this is two hexadecimal digits following a '%' */
166 char hexstr[3];
167 char *ptr;
168 hexstr[0] = string[1];
169 hexstr[1] = string[2];
170 hexstr[2] = 0;
171
172 hex = strtoul(hexstr, &ptr, 16);
173
174 in = curlx_ultouc(hex); /* this long is never bigger than 255 anyway */
175
Alex Deymo486467e2017-12-19 19:04:07 +0100176 result = Curl_convert_from_network(data, (char *)&in, 1);
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700177 if(result) {
Kristian Monsen5ab50182010-05-14 18:53:44 +0100178 /* Curl_convert_from_network calls failf if unsuccessful */
179 free(ns);
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700180 return result;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100181 }
Kristian Monsen5ab50182010-05-14 18:53:44 +0100182
Alex Deymo486467e2017-12-19 19:04:07 +0100183 string += 2;
184 alloc -= 2;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100185 }
186
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700187 if(reject_ctrl && (in < 0x20)) {
188 free(ns);
189 return CURLE_URL_MALFORMAT;
190 }
191
Kristian Monsen5ab50182010-05-14 18:53:44 +0100192 ns[strindex++] = in;
193 string++;
194 }
Alex Deymo486467e2017-12-19 19:04:07 +0100195 ns[strindex] = 0; /* terminate it */
Kristian Monsen5ab50182010-05-14 18:53:44 +0100196
197 if(olen)
198 /* store output size */
199 *olen = strindex;
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700200
201 /* store output string */
202 *ostring = ns;
203
204 return CURLE_OK;
205}
206
207/*
208 * Unescapes the given URL escaped string of given length. Returns a
209 * pointer to a malloced string with length given in *olen.
210 * If length == 0, the length is assumed to be strlen(string).
211 * If olen == NULL, no output length is stored.
212 */
Alex Deymoe3149cc2016-10-05 11:18:42 -0700213char *curl_easy_unescape(struct Curl_easy *data, const char *string,
214 int length, int *olen)
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700215{
216 char *str = NULL;
Elliott Hughescee03382017-06-23 12:17:18 -0700217 if(length >= 0) {
218 size_t inputlen = length;
219 size_t outputlen;
220 CURLcode res = Curl_urldecode(data, string, inputlen, &str, &outputlen,
221 FALSE);
222 if(res)
223 return NULL;
224
225 if(olen) {
226 if(outputlen <= (size_t) INT_MAX)
227 *olen = curlx_uztosi(outputlen);
228 else
229 /* too large to return in an int, fail! */
230 Curl_safefree(str);
231 }
232 }
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700233 return str;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100234}
235
236/* For operating systems/environments that use different malloc/free
237 systems for the app and for this library, we provide a free that uses
238 the library's memory system */
239void curl_free(void *p)
240{
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700241 free(p);
Kristian Monsen5ab50182010-05-14 18:53:44 +0100242}