blob: fa3fb71dfa2953c589b43245330b6fad4a80dac8 [file] [log] [blame]
Willy Tarreauc7e42382012-08-24 19:22:53 +02001/*
2 * Chunk management functions.
3 *
4 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <ctype.h>
14#include <stdarg.h>
15#include <stdio.h>
16#include <string.h>
17
18#include <common/config.h>
19#include <common/chunk.h>
Hubert Verstraete831962e2016-06-28 22:44:26 +020020#include <common/standard.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020021
Christopher Faulet748919a2017-07-26 14:59:46 +020022#include <types/global.h>
23
Willy Tarreau47ca5452012-12-23 20:22:19 +010024/* trash chunks used for various conversions */
Willy Tarreau83061a82018-07-13 11:56:34 +020025static THREAD_LOCAL struct buffer *trash_chunk;
26static THREAD_LOCAL struct buffer trash_chunk1;
27static THREAD_LOCAL struct buffer trash_chunk2;
Willy Tarreau47ca5452012-12-23 20:22:19 +010028
29/* trash buffers used for various conversions */
30static int trash_size;
Christopher Faulet6adad112017-04-21 16:47:03 +020031static THREAD_LOCAL char *trash_buf1;
32static THREAD_LOCAL char *trash_buf2;
Willy Tarreau47ca5452012-12-23 20:22:19 +010033
Willy Tarreaub686afd2017-02-08 11:06:11 +010034/* the trash pool for reentrant allocations */
Willy Tarreaubafbe012017-11-24 17:34:44 +010035struct pool_head *pool_head_trash = NULL;
Willy Tarreaub686afd2017-02-08 11:06:11 +010036
Christopher Faulet748919a2017-07-26 14:59:46 +020037/* this is used to drain data, and as a temporary buffer for sprintf()... */
Willy Tarreau83061a82018-07-13 11:56:34 +020038THREAD_LOCAL struct buffer trash = { };
Christopher Faulet748919a2017-07-26 14:59:46 +020039
Willy Tarreau47ca5452012-12-23 20:22:19 +010040/*
41* Returns a pre-allocated and initialized trash chunk that can be used for any
42* type of conversion. Two chunks and their respective buffers are alternatively
43* returned so that it is always possible to iterate data transformations without
44* losing the data being transformed. The blocks are initialized to the size of
Willy Tarreau031ad232013-12-11 17:32:08 +010045* a standard buffer, so they should be enough for everything. For convenience,
46* a zero is always emitted at the beginning of the string so that it may be
47* used as an empty string as well.
Willy Tarreau47ca5452012-12-23 20:22:19 +010048*/
Willy Tarreau83061a82018-07-13 11:56:34 +020049struct buffer *get_trash_chunk(void)
Willy Tarreau47ca5452012-12-23 20:22:19 +010050{
51 char *trash_buf;
52
53 if (trash_chunk == &trash_chunk1) {
54 trash_chunk = &trash_chunk2;
55 trash_buf = trash_buf2;
56 }
57 else {
58 trash_chunk = &trash_chunk1;
59 trash_buf = trash_buf1;
60 }
Willy Tarreau031ad232013-12-11 17:32:08 +010061 *trash_buf = 0;
Willy Tarreau47ca5452012-12-23 20:22:19 +010062 chunk_init(trash_chunk, trash_buf, trash_size);
63 return trash_chunk;
64}
65
Willy Tarreau2819e992013-12-13 14:41:10 +010066/* (re)allocates the trash buffers. Returns 0 in case of failure. It is
67 * possible to call this function multiple times if the trash size changes.
68 */
Christopher Faulet748919a2017-07-26 14:59:46 +020069static int alloc_trash_buffers(int bufsize)
Willy Tarreau47ca5452012-12-23 20:22:19 +010070{
Willy Tarreau843b7cb2018-07-13 10:54:26 +020071 chunk_init(&trash, my_realloc2(trash.area, bufsize), bufsize);
Willy Tarreau47ca5452012-12-23 20:22:19 +010072 trash_size = bufsize;
Hubert Verstraete831962e2016-06-28 22:44:26 +020073 trash_buf1 = (char *)my_realloc2(trash_buf1, bufsize);
74 trash_buf2 = (char *)my_realloc2(trash_buf2, bufsize);
Willy Tarreau843b7cb2018-07-13 10:54:26 +020075 return trash.area && trash_buf1 && trash_buf2;
Willy Tarreau47ca5452012-12-23 20:22:19 +010076}
77
Christopher Fauletcd7879a2017-10-27 13:53:47 +020078static int init_trash_buffers_per_thread()
79{
80 return alloc_trash_buffers(global.tune.bufsize);
81}
82
83static void deinit_trash_buffers_per_thread()
84{
85 chunk_destroy(&trash);
86 free(trash_buf2);
87 free(trash_buf1);
88 trash_buf2 = NULL;
89 trash_buf1 = NULL;
90}
91
Christopher Faulet748919a2017-07-26 14:59:46 +020092/* Initialize the trash buffers. It returns 0 if an error occurred. */
Christopher Fauletcd7879a2017-10-27 13:53:47 +020093int init_trash_buffers(int first)
Christopher Faulet748919a2017-07-26 14:59:46 +020094{
Willy Tarreaubafbe012017-11-24 17:34:44 +010095 pool_destroy(pool_head_trash);
Willy Tarreau83061a82018-07-13 11:56:34 +020096 pool_head_trash = create_pool("trash",
97 sizeof(struct buffer) + global.tune.bufsize,
98 MEM_F_EXACT);
Willy Tarreaubafbe012017-11-24 17:34:44 +010099 if (!pool_head_trash || !alloc_trash_buffers(global.tune.bufsize))
Christopher Faulet748919a2017-07-26 14:59:46 +0200100 return 0;
101 return 1;
102}
103
Willy Tarreauc7e42382012-08-24 19:22:53 +0200104/*
David Carlier60deeba2015-09-25 11:58:12 +0100105 * free the trash buffers
106 */
Christopher Faulet748919a2017-07-26 14:59:46 +0200107void deinit_trash_buffers(void)
David Carlier60deeba2015-09-25 11:58:12 +0100108{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100109 pool_destroy(pool_head_trash);
David Carlier60deeba2015-09-25 11:58:12 +0100110}
111
112/*
Willy Tarreaub686afd2017-02-08 11:06:11 +0100113 * Allocate a trash chunk from the reentrant pool. The buffer starts at the
114 * end of the chunk. This chunk must be freed using free_trash_chunk(). This
115 * call may fail and the caller is responsible for checking that the returned
116 * pointer is not NULL.
117 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200118struct buffer *alloc_trash_chunk(void)
Willy Tarreaub686afd2017-02-08 11:06:11 +0100119{
Willy Tarreau83061a82018-07-13 11:56:34 +0200120 struct buffer *chunk;
Willy Tarreaub686afd2017-02-08 11:06:11 +0100121
Willy Tarreaubafbe012017-11-24 17:34:44 +0100122 chunk = pool_alloc(pool_head_trash);
Willy Tarreaub686afd2017-02-08 11:06:11 +0100123 if (chunk) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200124 char *buf = (char *)chunk + sizeof(struct buffer);
Willy Tarreaub686afd2017-02-08 11:06:11 +0100125 *buf = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +0200126 chunk_init(chunk, buf,
127 pool_head_trash->size - sizeof(struct buffer));
Willy Tarreaub686afd2017-02-08 11:06:11 +0100128 }
129 return chunk;
130}
131
132/*
Willy Tarreau77804732012-10-29 16:14:26 +0100133 * Does an snprintf() at the beginning of chunk <chk>, respecting the limit of
134 * at most chk->size chars. If the chk->len is over, nothing is added. Returns
135 * the new chunk size, or < 0 in case of failure.
136 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200137int chunk_printf(struct buffer *chk, const char *fmt, ...)
Willy Tarreau77804732012-10-29 16:14:26 +0100138{
139 va_list argp;
140 int ret;
141
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200142 if (!chk->area || !chk->size)
Willy Tarreau77804732012-10-29 16:14:26 +0100143 return 0;
144
145 va_start(argp, fmt);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200146 ret = vsnprintf(chk->area, chk->size, fmt, argp);
Willy Tarreau77804732012-10-29 16:14:26 +0100147 va_end(argp);
Willy Tarreau77804732012-10-29 16:14:26 +0100148
149 if (ret >= chk->size)
Willy Tarreau5f6333c2018-08-22 05:14:37 +0200150 return -1;
Willy Tarreau77804732012-10-29 16:14:26 +0100151
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200152 chk->data = ret;
153 return chk->data;
Willy Tarreau77804732012-10-29 16:14:26 +0100154}
155
156/*
Willy Tarreauc7e42382012-08-24 19:22:53 +0200157 * Does an snprintf() at the end of chunk <chk>, respecting the limit of
158 * at most chk->size chars. If the chk->len is over, nothing is added. Returns
159 * the new chunk size.
160 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200161int chunk_appendf(struct buffer *chk, const char *fmt, ...)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200162{
163 va_list argp;
164 int ret;
165
Willy Tarreaubba81562018-08-22 04:59:48 +0200166 if (!chk->area || !chk->size)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200167 return 0;
168
169 va_start(argp, fmt);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200170 ret = vsnprintf(chk->area + chk->data, chk->size - chk->data, fmt,
171 argp);
172 if (ret >= chk->size - chk->data)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200173 /* do not copy anything in case of truncation */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200174 chk->area[chk->data] = 0;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200175 else
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200176 chk->data += ret;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200177 va_end(argp);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200178 return chk->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200179}
180
181/*
182 * Encode chunk <src> into chunk <dst>, respecting the limit of at most
183 * chk->size chars. Replace non-printable or special chracters with "&#%d;".
184 * If the chk->len is over, nothing is added. Returns the new chunk size.
185 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200186int chunk_htmlencode(struct buffer *dst, struct buffer *src)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200187{
188 int i, l;
189 int olen, free;
190 char c;
191
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200192 olen = dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200193
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200194 for (i = 0; i < src->data; i++) {
195 free = dst->size - dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200196
197 if (!free) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200198 dst->data = olen;
199 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200200 }
201
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200202 c = src->area[i];
Willy Tarreauc7e42382012-08-24 19:22:53 +0200203
204 if (!isascii(c) || !isprint((unsigned char)c) || c == '&' || c == '"' || c == '\'' || c == '<' || c == '>') {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200205 l = snprintf(dst->area + dst->data, free, "&#%u;",
206 (unsigned char)c);
Willy Tarreauc7e42382012-08-24 19:22:53 +0200207
208 if (free < l) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200209 dst->data = olen;
210 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200211 }
212
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200213 dst->data += l;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200214 } else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200215 dst->area[dst->data] = c;
216 dst->data++;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200217 }
218 }
219
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200220 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200221}
222
223/*
224 * Encode chunk <src> into chunk <dst>, respecting the limit of at most
225 * chk->size chars. Replace non-printable or char passed in qc with "<%02X>".
226 * If the chk->len is over, nothing is added. Returns the new chunk size.
227 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200228int chunk_asciiencode(struct buffer *dst, struct buffer *src, char qc)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200229{
230 int i, l;
231 int olen, free;
232 char c;
233
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200234 olen = dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200235
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200236 for (i = 0; i < src->data; i++) {
237 free = dst->size - dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200238
239 if (!free) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200240 dst->data = olen;
241 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200242 }
243
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200244 c = src->area[i];
Willy Tarreauc7e42382012-08-24 19:22:53 +0200245
246 if (!isascii(c) || !isprint((unsigned char)c) || c == '<' || c == '>' || c == qc) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200247 l = snprintf(dst->area + dst->data, free, "<%02X>",
248 (unsigned char)c);
Willy Tarreauc7e42382012-08-24 19:22:53 +0200249
250 if (free < l) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200251 dst->data = olen;
252 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200253 }
254
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200255 dst->data += l;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200256 } else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200257 dst->area[dst->data] = c;
258 dst->data++;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200259 }
260 }
261
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200262 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200263}
264
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200265/* Compares the string in chunk <chk> with the string in <str> which must be
266 * zero-terminated. Return is the same as with strcmp(). Neither is allowed
267 * to be null.
268 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200269int chunk_strcmp(const struct buffer *chk, const char *str)
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200270{
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200271 const char *s1 = chk->area;
272 int len = chk->data;
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200273 int diff = 0;
274
275 do {
Emeric Brun78bd4032014-05-09 17:11:07 +0200276 if (--len < 0) {
277 diff = (unsigned char)0 - (unsigned char)*str;
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200278 break;
Emeric Brun78bd4032014-05-09 17:11:07 +0200279 }
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200280 diff = (unsigned char)*(s1++) - (unsigned char)*(str++);
281 } while (!diff);
282 return diff;
283}
284
285/* Case-insensitively compares the string in chunk <chk> with the string in
286 * <str> which must be zero-terminated. Return is the same as with strcmp().
287 * Neither is allowed to be null.
288 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200289int chunk_strcasecmp(const struct buffer *chk, const char *str)
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200290{
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200291 const char *s1 = chk->area;
292 int len = chk->data;
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200293 int diff = 0;
294
295 do {
Emeric Brun78bd4032014-05-09 17:11:07 +0200296 if (--len < 0) {
297 diff = (unsigned char)0 - (unsigned char)*str;
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200298 break;
Emeric Brun78bd4032014-05-09 17:11:07 +0200299 }
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200300 diff = (unsigned char)*s1 - (unsigned char)*str;
301 if (unlikely(diff)) {
302 unsigned int l = (unsigned char)*s1;
303 unsigned int r = (unsigned char)*str;
304
305 l -= 'a';
306 r -= 'a';
307
308 if (likely(l <= (unsigned char)'z' - 'a'))
309 l -= 'a' - 'A';
310 if (likely(r <= (unsigned char)'z' - 'a'))
311 r -= 'a' - 'A';
312 diff = l - r;
313 }
314 s1++; str++;
315 } while (!diff);
316 return diff;
317}
Willy Tarreauc7e42382012-08-24 19:22:53 +0200318
Willy Tarreau172f5ce2018-11-26 11:21:50 +0100319REGISTER_PER_THREAD_INIT(init_trash_buffers_per_thread);
320REGISTER_PER_THREAD_DEINIT(deinit_trash_buffers_per_thread);
321
Willy Tarreauc7e42382012-08-24 19:22:53 +0200322/*
323 * Local variables:
324 * c-indent-level: 8
325 * c-basic-offset: 8
326 * End:
327 */