1 /***************************************************************************
3 * Project ___| | | | _ \| |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
8 * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
12 * are also available at http://curl.haxx.se/docs/copyright.html.
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.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ***************************************************************************/
23 /* Escape and unescape URL encoding in strings. The functions return a new
24 * allocated string or NULL if an error occurred. */
28 #include <curl/curl.h>
30 #include "curl_memory.h"
33 #include "non-ascii.h"
35 #define _MPRINTF_REPLACE /* use our functions only */
36 #include <curl/mprintf.h>
38 /* The last #include file should be: */
41 /* Portable character check (remember EBCDIC). Do not use isalnum() because
42 its behavior is altered by the current locale.
43 See http://tools.ietf.org/html/rfc3986#section-2.3
45 static bool Curl_isunreserved(unsigned char in)
48 case '0': case '1': case '2': case '3': case '4':
49 case '5': case '6': case '7': case '8': case '9':
50 case 'a': case 'b': case 'c': case 'd': case 'e':
51 case 'f': case 'g': case 'h': case 'i': case 'j':
52 case 'k': case 'l': case 'm': case 'n': case 'o':
53 case 'p': case 'q': case 'r': case 's': case 't':
54 case 'u': case 'v': case 'w': case 'x': case 'y': case 'z':
55 case 'A': case 'B': case 'C': case 'D': case 'E':
56 case 'F': case 'G': case 'H': case 'I': case 'J':
57 case 'K': case 'L': case 'M': case 'N': case 'O':
58 case 'P': case 'Q': case 'R': case 'S': case 'T':
59 case 'U': case 'V': case 'W': case 'X': case 'Y': case 'Z':
60 case '-': case '.': case '_': case '~':
68 /* for ABI-compatibility with previous versions */
69 char *curl_escape(const char *string, int inlength)
71 return curl_easy_escape(NULL, string, inlength);
74 /* for ABI-compatibility with previous versions */
75 char *curl_unescape(const char *string, int length)
77 return curl_easy_unescape(NULL, string, length, NULL);
80 char *curl_easy_escape(CURL *handle, const char *string, int inlength)
82 size_t alloc = (inlength?(size_t)inlength:strlen(string))+1;
84 char *testing_ptr = NULL;
85 unsigned char in; /* we need to treat the characters unsigned */
86 size_t newlen = alloc;
99 if(Curl_isunreserved(in))
104 newlen += 2; /* the size grows with two, since this'll become a %XX */
107 testing_ptr = realloc(ns, alloc);
117 res = Curl_convert_to_network(handle, &in, 1);
119 /* Curl_convert_to_network calls failf if unsuccessful */
124 snprintf(&ns[strindex], 4, "%%%02X", in);
130 ns[strindex]=0; /* terminate it */
135 * Unescapes the given URL escaped string of given length. Returns a
136 * pointer to a malloced string with length given in *olen.
137 * If length == 0, the length is assumed to be strlen(string).
138 * If olen == NULL, no output length is stored.
140 char *curl_easy_unescape(CURL *handle, const char *string, int length,
143 int alloc = (length?length:(int)strlen(string))+1;
144 char *ns = malloc(alloc);
155 if(('%' == in) && ISXDIGIT(string[1]) && ISXDIGIT(string[2])) {
156 /* this is two hexadecimal digits following a '%' */
159 hexstr[0] = string[1];
160 hexstr[1] = string[2];
163 hex = strtoul(hexstr, &ptr, 16);
165 in = curlx_ultouc(hex); /* this long is never bigger than 255 anyway */
167 res = Curl_convert_from_network(handle, &in, 1);
169 /* Curl_convert_from_network calls failf if unsuccessful */
181 ns[strindex]=0; /* terminate it */
184 /* store output size */
189 /* For operating systems/environments that use different malloc/free
190 systems for the app and for this library, we provide a free that uses
191 the library's memory system */
192 void curl_free(void *p)