Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 1 | /* |
| 2 | * include/common/chunk.h |
| 3 | * Chunk management definitions, macros and inline functions. |
| 4 | * |
| 5 | * Copyright (C) 2000-2012 Willy Tarreau - w@1wt.eu |
| 6 | * |
| 7 | * This library is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU Lesser General Public |
| 9 | * License as published by the Free Software Foundation, version 2.1 |
| 10 | * exclusively. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public |
| 18 | * License along with this library; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
| 21 | |
| 22 | #ifndef _TYPES_CHUNK_H |
| 23 | #define _TYPES_CHUNK_H |
| 24 | |
| 25 | #include <stdlib.h> |
| 26 | #include <string.h> |
| 27 | |
| 28 | #include <common/config.h> |
| 29 | |
| 30 | |
| 31 | /* describes a chunk of string */ |
| 32 | struct chunk { |
| 33 | char *str; /* beginning of the string itself. Might not be 0-terminated */ |
| 34 | int size; /* total size of the buffer, 0 if the *str is read-only */ |
| 35 | int len; /* current size of the string from first to last char. <0 = uninit. */ |
| 36 | }; |
| 37 | |
| 38 | /* function prototypes */ |
| 39 | |
| 40 | int chunk_printf(struct chunk *chk, const char *fmt, ...) |
| 41 | __attribute__ ((format(printf, 2, 3))); |
| 42 | |
Willy Tarreau | 7780473 | 2012-10-29 16:14:26 +0100 | [diff] [blame] | 43 | int chunk_appendf(struct chunk *chk, const char *fmt, ...) |
| 44 | __attribute__ ((format(printf, 2, 3))); |
| 45 | |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 46 | int chunk_htmlencode(struct chunk *dst, struct chunk *src); |
| 47 | int chunk_asciiencode(struct chunk *dst, struct chunk *src, char qc); |
Willy Tarreau | ad8f8e8 | 2012-10-19 15:18:06 +0200 | [diff] [blame] | 48 | int chunk_strcmp(const struct chunk *chk, const char *str); |
| 49 | int chunk_strcasecmp(const struct chunk *chk, const char *str); |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 50 | int alloc_trash_buffers(int bufsize); |
David Carlier | 60deeba | 2015-09-25 11:58:12 +0100 | [diff] [blame] | 51 | void free_trash_buffers(void); |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 52 | struct chunk *get_trash_chunk(void); |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 53 | |
Willy Tarreau | c26ac9d | 2012-10-29 13:23:11 +0100 | [diff] [blame] | 54 | static inline void chunk_reset(struct chunk *chk) |
| 55 | { |
| 56 | chk->len = 0; |
| 57 | } |
| 58 | |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 59 | static inline void chunk_init(struct chunk *chk, char *str, size_t size) |
| 60 | { |
| 61 | chk->str = str; |
| 62 | chk->len = 0; |
| 63 | chk->size = size; |
| 64 | } |
| 65 | |
| 66 | /* report 0 in case of error, 1 if OK. */ |
| 67 | static inline int chunk_initlen(struct chunk *chk, char *str, size_t size, int len) |
| 68 | { |
| 69 | |
Willy Tarreau | 320ec2a | 2016-02-25 16:15:19 +0100 | [diff] [blame] | 70 | if (len < 0 || (size && len > size)) |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 71 | return 0; |
| 72 | |
| 73 | chk->str = str; |
| 74 | chk->len = len; |
| 75 | chk->size = size; |
| 76 | |
| 77 | return 1; |
| 78 | } |
| 79 | |
Willy Tarreau | 70af633 | 2016-01-06 20:45:03 +0100 | [diff] [blame] | 80 | /* this is only for temporary manipulation, the chunk is read-only */ |
| 81 | static inline void chunk_initstr(struct chunk *chk, const char *str) |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 82 | { |
Willy Tarreau | 70af633 | 2016-01-06 20:45:03 +0100 | [diff] [blame] | 83 | chk->str = (char *)str; |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 84 | chk->len = strlen(str); |
| 85 | chk->size = 0; /* mark it read-only */ |
| 86 | } |
| 87 | |
Willy Tarreau | 0b6044f | 2016-01-04 20:21:33 +0100 | [diff] [blame] | 88 | /* copies str into <chk> followed by a trailing zero. Returns 0 in |
| 89 | * case of failure. |
| 90 | */ |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 91 | static inline int chunk_strcpy(struct chunk *chk, const char *str) |
| 92 | { |
| 93 | size_t len; |
| 94 | |
| 95 | len = strlen(str); |
| 96 | |
Willy Tarreau | 0b6044f | 2016-01-04 20:21:33 +0100 | [diff] [blame] | 97 | if (unlikely(len >= chk->size)) |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 98 | return 0; |
| 99 | |
| 100 | chk->len = len; |
Willy Tarreau | 0b6044f | 2016-01-04 20:21:33 +0100 | [diff] [blame] | 101 | memcpy(chk->str, str, len + 1); |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 102 | |
| 103 | return 1; |
| 104 | } |
| 105 | |
Willy Tarreau | 601360b | 2016-01-04 20:13:55 +0100 | [diff] [blame] | 106 | /* appends str after <chk> followed by a trailing zero. Returns 0 in |
| 107 | * case of failure. |
| 108 | */ |
| 109 | static inline int chunk_strcat(struct chunk *chk, const char *str) |
| 110 | { |
| 111 | size_t len; |
| 112 | |
| 113 | len = strlen(str); |
| 114 | |
Willy Tarreau | 320ec2a | 2016-02-25 16:15:19 +0100 | [diff] [blame] | 115 | if (unlikely(chk->len < 0 || chk->len + len >= chk->size)) |
Willy Tarreau | 601360b | 2016-01-04 20:13:55 +0100 | [diff] [blame] | 116 | return 0; |
| 117 | |
| 118 | memcpy(chk->str + chk->len, str, len + 1); |
| 119 | chk->len += len; |
| 120 | return 1; |
| 121 | } |
| 122 | |
Baptiste Assmann | 7819c12 | 2016-03-26 14:12:50 +0100 | [diff] [blame] | 123 | /* appends <nb> characters from str after <chk>. |
| 124 | * Returns 0 in case of failure. |
| 125 | */ |
| 126 | static inline int chunk_strncat(struct chunk *chk, const char *str, int nb) |
| 127 | { |
| 128 | if (unlikely(chk->len < 0 || chk->len + nb >= chk->size)) |
| 129 | return 0; |
| 130 | |
| 131 | memcpy(chk->str + chk->len, str, nb); |
| 132 | chk->len += nb; |
| 133 | return 1; |
| 134 | } |
| 135 | |
Willy Tarreau | 601360b | 2016-01-04 20:13:55 +0100 | [diff] [blame] | 136 | /* Adds a trailing zero to the current chunk and returns the pointer to the |
| 137 | * following part. The purpose is to be able to use a chunk as a series of |
| 138 | * short independant strings with chunk_* functions, which do not need to be |
| 139 | * released. Returns NULL if no space is available to ensure that the new |
| 140 | * string will have its own trailing zero. For example : |
| 141 | * chunk_init(&trash); |
| 142 | * pid = chunk_newstr(&trash); |
| 143 | * chunk_appendf(&trash, "%d", getpid())); |
| 144 | * name = chunk_newstr(&trash); |
| 145 | * chunk_appendf(&trash, "%s", gethosname()); |
| 146 | * printf("hostname=<%s>, pid=<%d>\n", name, pid); |
| 147 | */ |
| 148 | static inline char *chunk_newstr(struct chunk *chk) |
| 149 | { |
Willy Tarreau | 320ec2a | 2016-02-25 16:15:19 +0100 | [diff] [blame] | 150 | if (chk->len < 0 || chk->len + 1 >= chk->size) |
Willy Tarreau | 601360b | 2016-01-04 20:13:55 +0100 | [diff] [blame] | 151 | return NULL; |
| 152 | |
| 153 | chk->str[chk->len++] = 0; |
| 154 | return chk->str + chk->len; |
| 155 | } |
| 156 | |
Willy Tarreau | c26ac9d | 2012-10-29 13:23:11 +0100 | [diff] [blame] | 157 | static inline void chunk_drop(struct chunk *chk) |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 158 | { |
| 159 | chk->str = NULL; |
| 160 | chk->len = -1; |
| 161 | chk->size = 0; |
| 162 | } |
| 163 | |
| 164 | static inline void chunk_destroy(struct chunk *chk) |
| 165 | { |
| 166 | if (!chk->size) |
| 167 | return; |
| 168 | |
Willy Tarreau | c26ac9d | 2012-10-29 13:23:11 +0100 | [diff] [blame] | 169 | free(chk->str); |
| 170 | chunk_drop(chk); |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | /* |
| 174 | * frees the destination chunk if already allocated, allocates a new string, |
Willy Tarreau | f9476a5 | 2016-01-04 20:36:59 +0100 | [diff] [blame] | 175 | * and copies the source into it. The new chunk will have extra room for a |
| 176 | * trailing zero unless the source chunk was actually full. The pointer to |
| 177 | * the destination string is returned, or NULL if the allocation fails or if |
| 178 | * any pointer is NULL. |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 179 | */ |
| 180 | static inline char *chunk_dup(struct chunk *dst, const struct chunk *src) |
| 181 | { |
Willy Tarreau | 320ec2a | 2016-02-25 16:15:19 +0100 | [diff] [blame] | 182 | if (!dst || !src || src->len < 0 || !src->str) |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 183 | return NULL; |
Willy Tarreau | f9476a5 | 2016-01-04 20:36:59 +0100 | [diff] [blame] | 184 | |
| 185 | if (dst->size) |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 186 | free(dst->str); |
| 187 | dst->len = src->len; |
Willy Tarreau | f9476a5 | 2016-01-04 20:36:59 +0100 | [diff] [blame] | 188 | dst->size = src->len; |
| 189 | if (dst->size < src->size || !src->size) |
| 190 | dst->size++; |
| 191 | |
| 192 | dst->str = (char *)malloc(dst->size); |
David Carlier | 8ab1043 | 2016-03-23 17:50:57 +0000 | [diff] [blame] | 193 | if (!dst->str) { |
| 194 | dst->len = 0; |
| 195 | dst->size = 0; |
| 196 | return NULL; |
| 197 | } |
| 198 | |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 199 | memcpy(dst->str, src->str, dst->len); |
Willy Tarreau | f9476a5 | 2016-01-04 20:36:59 +0100 | [diff] [blame] | 200 | if (dst->len < dst->size) |
| 201 | dst->str[dst->len] = 0; |
| 202 | |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 203 | return dst->str; |
| 204 | } |
| 205 | |
| 206 | #endif /* _TYPES_CHUNK_H */ |
| 207 | |
| 208 | /* |
| 209 | * Local variables: |
| 210 | * c-indent-level: 8 |
| 211 | * c-basic-offset: 8 |
| 212 | * End: |
| 213 | */ |