blob: 56070e28ac5c09ce04188c8102368c6db3184131 [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 Tarreau843b7cb2018-07-13 10:54:26 +0200152 chk->data = ret;
Willy Tarreau77804732012-10-29 16:14:26 +0100153
154 if (ret >= chk->size)
155 ret = -1;
156
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200157 chk->data = ret;
158 return chk->data;
Willy Tarreau77804732012-10-29 16:14:26 +0100159}
160
161/*
Willy Tarreauc7e42382012-08-24 19:22:53 +0200162 * Does an snprintf() at the end of chunk <chk>, respecting the limit of
163 * at most chk->size chars. If the chk->len is over, nothing is added. Returns
164 * the new chunk size.
165 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200166int chunk_appendf(struct buffer *chk, const char *fmt, ...)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200167{
168 va_list argp;
169 int ret;
170
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200171 if (chk->data < 0 || !chk->area || !chk->size)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200172 return 0;
173
174 va_start(argp, fmt);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200175 ret = vsnprintf(chk->area + chk->data, chk->size - chk->data, fmt,
176 argp);
177 if (ret >= chk->size - chk->data)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200178 /* do not copy anything in case of truncation */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200179 chk->area[chk->data] = 0;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200180 else
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200181 chk->data += ret;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200182 va_end(argp);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200183 return chk->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200184}
185
186/*
187 * Encode chunk <src> into chunk <dst>, respecting the limit of at most
188 * chk->size chars. Replace non-printable or special chracters with "&#%d;".
189 * If the chk->len is over, nothing is added. Returns the new chunk size.
190 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200191int chunk_htmlencode(struct buffer *dst, struct buffer *src)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200192{
193 int i, l;
194 int olen, free;
195 char c;
196
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200197 if (dst->data < 0)
198 return dst->data;
Willy Tarreau320ec2a2016-02-25 16:15:19 +0100199
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200200 olen = dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200201
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200202 for (i = 0; i < src->data; i++) {
203 free = dst->size - dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200204
205 if (!free) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200206 dst->data = olen;
207 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200208 }
209
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200210 c = src->area[i];
Willy Tarreauc7e42382012-08-24 19:22:53 +0200211
212 if (!isascii(c) || !isprint((unsigned char)c) || c == '&' || c == '"' || c == '\'' || c == '<' || c == '>') {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200213 l = snprintf(dst->area + dst->data, free, "&#%u;",
214 (unsigned char)c);
Willy Tarreauc7e42382012-08-24 19:22:53 +0200215
216 if (free < l) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200217 dst->data = olen;
218 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200219 }
220
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200221 dst->data += l;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200222 } else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200223 dst->area[dst->data] = c;
224 dst->data++;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200225 }
226 }
227
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200228 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200229}
230
231/*
232 * Encode chunk <src> into chunk <dst>, respecting the limit of at most
233 * chk->size chars. Replace non-printable or char passed in qc with "<%02X>".
234 * If the chk->len is over, nothing is added. Returns the new chunk size.
235 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200236int chunk_asciiencode(struct buffer *dst, struct buffer *src, char qc)
Willy Tarreauc7e42382012-08-24 19:22:53 +0200237{
238 int i, l;
239 int olen, free;
240 char c;
241
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200242 if (dst->data < 0)
243 return dst->data;
Willy Tarreau320ec2a2016-02-25 16:15:19 +0100244
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200245 olen = dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200246
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200247 for (i = 0; i < src->data; i++) {
248 free = dst->size - dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200249
250 if (!free) {
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 c = src->area[i];
Willy Tarreauc7e42382012-08-24 19:22:53 +0200256
257 if (!isascii(c) || !isprint((unsigned char)c) || c == '<' || c == '>' || c == qc) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200258 l = snprintf(dst->area + dst->data, free, "<%02X>",
259 (unsigned char)c);
Willy Tarreauc7e42382012-08-24 19:22:53 +0200260
261 if (free < l) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200262 dst->data = olen;
263 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200264 }
265
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200266 dst->data += l;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200267 } else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200268 dst->area[dst->data] = c;
269 dst->data++;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200270 }
271 }
272
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200273 return dst->data;
Willy Tarreauc7e42382012-08-24 19:22:53 +0200274}
275
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200276/* Compares the string in chunk <chk> with the string in <str> which must be
277 * zero-terminated. Return is the same as with strcmp(). Neither is allowed
278 * to be null.
279 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200280int chunk_strcmp(const struct buffer *chk, const char *str)
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200281{
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200282 const char *s1 = chk->area;
283 int len = chk->data;
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200284 int diff = 0;
285
286 do {
Emeric Brun78bd4032014-05-09 17:11:07 +0200287 if (--len < 0) {
288 diff = (unsigned char)0 - (unsigned char)*str;
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200289 break;
Emeric Brun78bd4032014-05-09 17:11:07 +0200290 }
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200291 diff = (unsigned char)*(s1++) - (unsigned char)*(str++);
292 } while (!diff);
293 return diff;
294}
295
296/* Case-insensitively compares the string in chunk <chk> with the string in
297 * <str> which must be zero-terminated. Return is the same as with strcmp().
298 * Neither is allowed to be null.
299 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200300int chunk_strcasecmp(const struct buffer *chk, const char *str)
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200301{
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200302 const char *s1 = chk->area;
303 int len = chk->data;
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200304 int diff = 0;
305
306 do {
Emeric Brun78bd4032014-05-09 17:11:07 +0200307 if (--len < 0) {
308 diff = (unsigned char)0 - (unsigned char)*str;
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200309 break;
Emeric Brun78bd4032014-05-09 17:11:07 +0200310 }
Willy Tarreauad8f8e82012-10-19 15:18:06 +0200311 diff = (unsigned char)*s1 - (unsigned char)*str;
312 if (unlikely(diff)) {
313 unsigned int l = (unsigned char)*s1;
314 unsigned int r = (unsigned char)*str;
315
316 l -= 'a';
317 r -= 'a';
318
319 if (likely(l <= (unsigned char)'z' - 'a'))
320 l -= 'a' - 'A';
321 if (likely(r <= (unsigned char)'z' - 'a'))
322 r -= 'a' - 'A';
323 diff = l - r;
324 }
325 s1++; str++;
326 } while (!diff);
327 return diff;
328}
Willy Tarreauc7e42382012-08-24 19:22:53 +0200329
330/*
331 * Local variables:
332 * c-indent-level: 8
333 * c-basic-offset: 8
334 * End:
335 */