blob: 303d3fdc9575313b02102c4f356dd37cb34cd243 [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{
Christopher Fauletcd7879a2017-10-27 13:53:47 +020095 if (!first) {
96 hap_register_per_thread_init(init_trash_buffers_per_thread);
97 hap_register_per_thread_deinit(deinit_trash_buffers_per_thread);
Christopher Faulet6adad112017-04-21 16:47:03 +020098 }
Willy Tarreaubafbe012017-11-24 17:34:44 +010099 pool_destroy(pool_head_trash);
Willy Tarreau83061a82018-07-13 11:56:34 +0200100 pool_head_trash = create_pool("trash",
101 sizeof(struct buffer) + global.tune.bufsize,
102 MEM_F_EXACT);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100103 if (!pool_head_trash || !alloc_trash_buffers(global.tune.bufsize))
Christopher Faulet748919a2017-07-26 14:59:46 +0200104 return 0;
105 return 1;
106}
107
Willy Tarreauc7e42382012-08-24 19:22:53 +0200108/*
David Carlier60deeba2015-09-25 11:58:12 +0100109 * free the trash buffers
110 */
Christopher Faulet748919a2017-07-26 14:59:46 +0200111void deinit_trash_buffers(void)
David Carlier60deeba2015-09-25 11:58:12 +0100112{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100113 pool_destroy(pool_head_trash);
David Carlier60deeba2015-09-25 11:58:12 +0100114}
115
116/*
Willy Tarreaub686afd2017-02-08 11:06:11 +0100117 * Allocate a trash chunk from the reentrant pool. The buffer starts at the
118 * end of the chunk. This chunk must be freed using free_trash_chunk(). This
119 * call may fail and the caller is responsible for checking that the returned
120 * pointer is not NULL.
121 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200122struct buffer *alloc_trash_chunk(void)
Willy Tarreaub686afd2017-02-08 11:06:11 +0100123{
Willy Tarreau83061a82018-07-13 11:56:34 +0200124 struct buffer *chunk;
Willy Tarreaub686afd2017-02-08 11:06:11 +0100125
Willy Tarreaubafbe012017-11-24 17:34:44 +0100126 chunk = pool_alloc(pool_head_trash);
Willy Tarreaub686afd2017-02-08 11:06:11 +0100127 if (chunk) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200128 char *buf = (char *)chunk + sizeof(struct buffer);
Willy Tarreaub686afd2017-02-08 11:06:11 +0100129 *buf = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +0200130 chunk_init(chunk, buf,
131 pool_head_trash->size - sizeof(struct buffer));
Willy Tarreaub686afd2017-02-08 11:06:11 +0100132 }
133 return chunk;
134}
135
136/*
Willy Tarreau77804732012-10-29 16:14:26 +0100137 * Does an snprintf() at the beginning of chunk <chk>, respecting the limit of
138 * at most chk->size chars. If the chk->len is over, nothing is added. Returns
139 * the new chunk size, or < 0 in case of failure.
140 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200141int chunk_printf(struct buffer *chk, const char *fmt, ...)
Willy Tarreau77804732012-10-29 16:14:26 +0100142{
143 va_list argp;
144 int ret;
145
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200146 if (!chk->area || !chk->size)
Willy Tarreau77804732012-10-29 16:14:26 +0100147 return 0;
148
149 va_start(argp, fmt);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200150 ret = vsnprintf(chk->area, chk->size, fmt, argp);
Willy Tarreau77804732012-10-29 16:14:26 +0100151 va_end(argp);
Willy Tarreau77804732012-10-29 16:14:26 +0100152
153 if (ret >= chk->size)
Willy Tarreau5f6333c2018-08-22 05:14:37 +0200154 return -1;
Willy Tarreau77804732012-10-29 16:14:26 +0100155
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200156 chk->data = ret;
157 return chk->data;
Willy Tarreau77804732012-10-29 16:14:26 +0100158}
159
160/*
Willy Tarreauc7e42382012-08-24 19:22:53 +0200161 * Does an snprintf() at the end of chunk <chk>, respecting the limit of
162 * at most chk->size chars. If the chk->len is over, nothing is added. Returns
163 * the new chunk size.
164 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200165int chunk_appendf(struct buffer *chk, const char *fmt, ...)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200166{
167 va_list argp;
168 int ret;
169
Willy Tarreaubba81562018-08-22 04:59:48 +0200170 if (!chk->area || !chk->size)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200171 return 0;
172
173 va_start(argp, fmt);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200174 ret = vsnprintf(chk->area + chk->data, chk->size - chk->data, fmt,
175 argp);
176 if (ret >= chk->size - chk->data)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200177 /* do not copy anything in case of truncation */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200178 chk->area[chk->data] = 0;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200179 else
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200180 chk->data += ret;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200181 va_end(argp);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200182 return chk->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200183}
184
185/*
186 * Encode chunk <src> into chunk <dst>, respecting the limit of at most
187 * chk->size chars. Replace non-printable or special chracters with "&#%d;".
188 * If the chk->len is over, nothing is added. Returns the new chunk size.
189 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200190int chunk_htmlencode(struct buffer *dst, struct buffer *src)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200191{
192 int i, l;
193 int olen, free;
194 char c;
195
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200196 olen = dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200197
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200198 for (i = 0; i < src->data; i++) {
199 free = dst->size - dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200200
201 if (!free) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200202 dst->data = olen;
203 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200204 }
205
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200206 c = src->area[i];
Willy Tarreauc7e42382012-08-24 19:22:53 +0200207
208 if (!isascii(c) || !isprint((unsigned char)c) || c == '&' || c == '"' || c == '\'' || c == '<' || c == '>') {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200209 l = snprintf(dst->area + dst->data, free, "&#%u;",
210 (unsigned char)c);
Willy Tarreauc7e42382012-08-24 19:22:53 +0200211
212 if (free < l) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200213 dst->data = olen;
214 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200215 }
216
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200217 dst->data += l;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200218 } else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200219 dst->area[dst->data] = c;
220 dst->data++;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200221 }
222 }
223
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200224 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200225}
226
227/*
228 * Encode chunk <src> into chunk <dst>, respecting the limit of at most
229 * chk->size chars. Replace non-printable or char passed in qc with "<%02X>".
230 * If the chk->len is over, nothing is added. Returns the new chunk size.
231 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200232int chunk_asciiencode(struct buffer *dst, struct buffer *src, char qc)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200233{
234 int i, l;
235 int olen, free;
236 char c;
237
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200238 olen = dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200239
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200240 for (i = 0; i < src->data; i++) {
241 free = dst->size - dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200242
243 if (!free) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200244 dst->data = olen;
245 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200246 }
247
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200248 c = src->area[i];
Willy Tarreauc7e42382012-08-24 19:22:53 +0200249
250 if (!isascii(c) || !isprint((unsigned char)c) || c == '<' || c == '>' || c == qc) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200251 l = snprintf(dst->area + dst->data, free, "<%02X>",
252 (unsigned char)c);
Willy Tarreauc7e42382012-08-24 19:22:53 +0200253
254 if (free < l) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200255 dst->data = olen;
256 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200257 }
258
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200259 dst->data += l;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200260 } else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200261 dst->area[dst->data] = c;
262 dst->data++;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200263 }
264 }
265
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200266 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200267}
268
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200269/* Compares the string in chunk <chk> with the string in <str> which must be
270 * zero-terminated. Return is the same as with strcmp(). Neither is allowed
271 * to be null.
272 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200273int chunk_strcmp(const struct buffer *chk, const char *str)
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200274{
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200275 const char *s1 = chk->area;
276 int len = chk->data;
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200277 int diff = 0;
278
279 do {
Emeric Brun78bd4032014-05-09 17:11:07 +0200280 if (--len < 0) {
281 diff = (unsigned char)0 - (unsigned char)*str;
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200282 break;
Emeric Brun78bd4032014-05-09 17:11:07 +0200283 }
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200284 diff = (unsigned char)*(s1++) - (unsigned char)*(str++);
285 } while (!diff);
286 return diff;
287}
288
289/* Case-insensitively compares the string in chunk <chk> with the string in
290 * <str> which must be zero-terminated. Return is the same as with strcmp().
291 * Neither is allowed to be null.
292 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200293int chunk_strcasecmp(const struct buffer *chk, const char *str)
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200294{
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200295 const char *s1 = chk->area;
296 int len = chk->data;
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200297 int diff = 0;
298
299 do {
Emeric Brun78bd4032014-05-09 17:11:07 +0200300 if (--len < 0) {
301 diff = (unsigned char)0 - (unsigned char)*str;
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200302 break;
Emeric Brun78bd4032014-05-09 17:11:07 +0200303 }
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200304 diff = (unsigned char)*s1 - (unsigned char)*str;
305 if (unlikely(diff)) {
306 unsigned int l = (unsigned char)*s1;
307 unsigned int r = (unsigned char)*str;
308
309 l -= 'a';
310 r -= 'a';
311
312 if (likely(l <= (unsigned char)'z' - 'a'))
313 l -= 'a' - 'A';
314 if (likely(r <= (unsigned char)'z' - 'a'))
315 r -= 'a' - 'A';
316 diff = l - r;
317 }
318 s1++; str++;
319 } while (!diff);
320 return diff;
321}
Willy Tarreauc7e42382012-08-24 19:22:53 +0200322
323/*
324 * Local variables:
325 * c-indent-level: 8
326 * c-basic-offset: 8
327 * End:
328 */