s3:net_idmap_delete do not lock two records at the same time
[Samba/gebeck_regimport.git] / lib / util / rfc1738.c
blobc8f0472541448f6ffafaff2061ca5375dc0f5e9b
1 /*
2 * NOTE:
4 * This file imported from the Squid project. The licence below is
5 * reproduced intact, but refers to files in Squid's repository, not
6 * in Samba. See COPYING for the GPLv3 notice (being the later
7 * version mentioned below).
9 * This file has also been modified, in particular to use talloc to
10 * allocate in rfc1738_escape()
12 * - Andrew Bartlett Oct-2009
18 * $Id$
20 * DEBUG:
21 * AUTHOR: Harvest Derived
23 * SQUID Web Proxy Cache http://www.squid-cache.org/
24 * ----------------------------------------------------------
26 * Squid is the result of efforts by numerous individuals from
27 * the Internet community; see the CONTRIBUTORS file for full
28 * details. Many organizations have provided support for Squid's
29 * development; see the SPONSORS file for full details. Squid is
30 * Copyrighted (C) 2001 by the Regents of the University of
31 * California; see the COPYRIGHT file for full details. Squid
32 * incorporates software developed and/or copyrighted by other
33 * sources; see the CREDITS file for full details.
35 * This program is free software; you can redistribute it and/or modify
36 * it under the terms of the GNU General Public License as published by
37 * the Free Software Foundation; either version 2 of the License, or
38 * (at your option) any later version.
40 * This program 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
43 * GNU General Public License for more details.
45 * You should have received a copy of the GNU General Public License
46 * along with this program; if not, write to the Free Software
47 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
51 #include "includes.h"
53 #include "lib/util/samba_util.h"
56 * RFC 1738 defines that these characters should be escaped, as well
57 * any non-US-ASCII character or anything between 0x00 - 0x1F.
59 static char rfc1738_unsafe_chars[] = {
60 (char) 0x3C, /* < */
61 (char) 0x3E, /* > */
62 (char) 0x22, /* " */
63 (char) 0x23, /* # */
64 #if 0 /* done in code */
65 (char) 0x25, /* % */
66 #endif
67 (char) 0x7B, /* { */
68 (char) 0x7D, /* } */
69 (char) 0x7C, /* | */
70 (char) 0x5C, /* \ */
71 (char) 0x5E, /* ^ */
72 (char) 0x7E, /* ~ */
73 (char) 0x5B, /* [ */
74 (char) 0x5D, /* ] */
75 (char) 0x60, /* ` */
76 (char) 0x27, /* ' */
77 (char) 0x20 /* space */
80 static char rfc1738_reserved_chars[] = {
81 (char) 0x3b, /* ; */
82 (char) 0x2f, /* / */
83 (char) 0x3f, /* ? */
84 (char) 0x3a, /* : */
85 (char) 0x40, /* @ */
86 (char) 0x3d, /* = */
87 (char) 0x26 /* & */
91 * rfc1738_escape - Returns a static buffer contains the RFC 1738
92 * compliant, escaped version of the given url.
95 static char *
96 rfc1738_do_escape(TALLOC_CTX *mem_ctx, const char *url, int encode_reserved)
98 size_t bufsize = 0;
99 const char *p;
100 char *buf;
101 char *q;
102 unsigned int i, do_escape;
104 bufsize = strlen(url) * 3 + 1;
105 buf = talloc_array(mem_ctx, char, bufsize);
106 if (!buf) {
107 return NULL;
110 talloc_set_name_const(buf, buf);
111 buf[0] = '\0';
113 for (p = url, q = buf; *p != '\0' && q < (buf + bufsize - 1); p++, q++) {
114 do_escape = 0;
116 /* RFC 1738 defines these chars as unsafe */
117 for (i = 0; i < sizeof(rfc1738_unsafe_chars); i++) {
118 if (*p == rfc1738_unsafe_chars[i]) {
119 do_escape = 1;
120 break;
123 /* Handle % separately */
124 if (encode_reserved >= 0 && *p == '%')
125 do_escape = 1;
126 /* RFC 1738 defines these chars as reserved */
127 for (i = 0; i < sizeof(rfc1738_reserved_chars) && encode_reserved > 0; i++) {
128 if (*p == rfc1738_reserved_chars[i]) {
129 do_escape = 1;
130 break;
133 /* RFC 1738 says any control chars (0x00-0x1F) are encoded */
134 if ((unsigned char) *p <= (unsigned char) 0x1F) {
135 do_escape = 1;
137 /* RFC 1738 says 0x7f is encoded */
138 if (*p == (char) 0x7F) {
139 do_escape = 1;
141 /* RFC 1738 says any non-US-ASCII are encoded */
142 if (((unsigned char) *p >= (unsigned char) 0x80)) {
143 do_escape = 1;
145 /* Do the triplet encoding, or just copy the char */
146 /* note: while we do not need snprintf here as q is appropriately
147 * allocated, Samba does to avoid our macro banning it -- abartlet */
149 if (do_escape == 1) {
150 (void) snprintf(q, 4, "%%%02X", (unsigned char) *p);
151 q += sizeof(char) * 2;
152 } else {
153 *q = *p;
156 *q = '\0';
157 return (buf);
161 * rfc1738_escape - Returns a buffer that contains the RFC
162 * 1738 compliant, escaped version of the given url. (escapes unsafe and % characters)
164 char *
165 rfc1738_escape(TALLOC_CTX *mem_ctx, const char *url)
167 return rfc1738_do_escape(mem_ctx, url, 0);
171 * rfc1738_escape_unescaped - Returns a buffer that contains
172 * the RFC 1738 compliant, escaped version of the given url (escapes unsafe chars only)
174 char *
175 rfc1738_escape_unescaped(TALLOC_CTX *mem_ctx, const char *url)
177 return rfc1738_do_escape(mem_ctx, url, -1);
181 * rfc1738_escape_part - Returns a buffer that contains the RFC
182 * 1738 compliant, escaped version of the given url segment. (escapes
183 * unsafe, reserved and % chars) It would mangle the :// in http://,
184 * and mangle paths (because of /).
186 char *
187 rfc1738_escape_part(TALLOC_CTX *mem_ctx, const char *url)
189 return rfc1738_do_escape(mem_ctx, url, 1);
193 * rfc1738_unescape() - Converts escaped characters (%xy numbers) in
194 * given the string. %% is a %. %ab is the 8-bit hexadecimal number "ab"
196 _PUBLIC_ void
197 rfc1738_unescape(char *s)
199 char hexnum[3];
200 int i, j; /* i is write, j is read */
201 unsigned int x;
202 for (i = j = 0; s[j]; i++, j++) {
203 s[i] = s[j];
204 if (s[i] != '%')
205 continue;
206 if (s[j + 1] == '%') { /* %% case */
207 j++;
208 continue;
210 if (s[j + 1] && s[j + 2]) {
211 if (s[j + 1] == '0' && s[j + 2] == '0') { /* %00 case */
212 j += 2;
213 continue;
215 hexnum[0] = s[j + 1];
216 hexnum[1] = s[j + 2];
217 hexnum[2] = '\0';
218 if (1 == sscanf(hexnum, "%x", &x)) {
219 s[i] = (char) (0x0ff & x);
220 j += 2;
224 s[i] = '\0';