Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 2 | * include/proto/buffers.h |
| 3 | * Buffer management definitions, macros and inline functions. |
| 4 | * |
Willy Tarreau | b97f199 | 2010-02-25 23:54:31 +0100 | [diff] [blame] | 5 | * Copyright (C) 2000-2010 Willy Tarreau - w@1wt.eu |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 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 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
| 22 | #ifndef _PROTO_BUFFERS_H |
| 23 | #define _PROTO_BUFFERS_H |
| 24 | |
Willy Tarreau | 7341d94 | 2007-05-13 19:56:02 +0200 | [diff] [blame] | 25 | #include <stdio.h> |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 26 | #include <stdlib.h> |
Willy Tarreau | 7341d94 | 2007-05-13 19:56:02 +0200 | [diff] [blame] | 27 | #include <string.h> |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 28 | |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 29 | #include <common/config.h> |
Willy Tarreau | 7341d94 | 2007-05-13 19:56:02 +0200 | [diff] [blame] | 30 | #include <common/memory.h> |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 31 | #include <common/ticks.h> |
Willy Tarreau | fa64558 | 2007-06-03 15:59:52 +0200 | [diff] [blame] | 32 | #include <common/time.h> |
| 33 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 34 | #include <types/buffers.h> |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 35 | #include <types/global.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 36 | |
Willy Tarreau | 7341d94 | 2007-05-13 19:56:02 +0200 | [diff] [blame] | 37 | extern struct pool_head *pool2_buffer; |
| 38 | |
| 39 | /* perform minimal intializations, report 0 in case of error, 1 if OK. */ |
| 40 | int init_buffer(); |
| 41 | |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 42 | /* SI-to-buffer functions : buffer_{get,put}_{char,block,string,chunk} */ |
| 43 | int buffer_write(struct buffer *buf, const char *msg, int len); |
| 44 | int buffer_put_block(struct buffer *buf, const char *str, int len); |
| 45 | int buffer_put_char(struct buffer *buf, char c); |
| 46 | int buffer_get_line(struct buffer *buf, char *str, int len); |
| 47 | int buffer_get_block(struct buffer *buf, char *blk, int len, int offset); |
| 48 | int buffer_replace(struct buffer *b, char *pos, char *end, const char *str); |
| 49 | int buffer_replace2(struct buffer *b, char *pos, char *end, const char *str, int len); |
| 50 | int buffer_insert_line2(struct buffer *b, char *pos, const char *str, int len); |
| 51 | void buffer_dump(FILE *o, struct buffer *b, int from, int to); |
| 52 | void buffer_bounce_realign(struct buffer *buf); |
Willy Tarreau | 0bc3493 | 2011-03-28 16:25:58 +0200 | [diff] [blame] | 53 | unsigned long long buffer_forward(struct buffer *buf, unsigned long long bytes); |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 54 | |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 55 | /* Initialize all fields in the buffer. The BF_OUT_EMPTY flags is set. */ |
Willy Tarreau | 5446940 | 2006-07-29 16:59:06 +0200 | [diff] [blame] | 56 | static inline void buffer_init(struct buffer *buf) |
| 57 | { |
Willy Tarreau | f890dc9 | 2008-12-13 21:12:26 +0100 | [diff] [blame] | 58 | buf->send_max = 0; |
Willy Tarreau | 6b66f3e | 2008-12-14 17:31:54 +0100 | [diff] [blame] | 59 | buf->to_forward = 0; |
Willy Tarreau | e393fe2 | 2008-08-16 22:18:07 +0200 | [diff] [blame] | 60 | buf->l = buf->total = 0; |
Willy Tarreau | 3eba98a | 2009-01-25 13:56:13 +0100 | [diff] [blame] | 61 | buf->pipe = NULL; |
Willy Tarreau | 2df28e8 | 2008-08-17 15:20:19 +0200 | [diff] [blame] | 62 | buf->analysers = 0; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 63 | buf->cons = NULL; |
Willy Tarreau | ba0b63d | 2009-09-20 08:09:44 +0200 | [diff] [blame] | 64 | buf->flags = BF_OUT_EMPTY; |
Willy Tarreau | 2df28e8 | 2008-08-17 15:20:19 +0200 | [diff] [blame] | 65 | buf->r = buf->lr = buf->w = buf->data; |
Willy Tarreau | 5446940 | 2006-07-29 16:59:06 +0200 | [diff] [blame] | 66 | } |
| 67 | |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 68 | /* Return the max number of bytes the buffer can contain so that once all the |
| 69 | * pending bytes are forwarded, the buffer still has global.tune.maxrewrite |
| 70 | * bytes free. The result sits between buf->size - maxrewrite and buf->size. |
| 71 | */ |
| 72 | static inline int buffer_max_len(struct buffer *buf) |
| 73 | { |
| 74 | if (buf->to_forward == BUF_INFINITE_FORWARD || |
| 75 | buf->to_forward + buf->send_max >= global.tune.maxrewrite) |
| 76 | return buf->size; |
| 77 | else |
| 78 | return buf->size - global.tune.maxrewrite + buf->to_forward + buf->send_max; |
| 79 | } |
| 80 | |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 81 | /* Returns true if the buffer's input is already closed */ |
| 82 | static inline int buffer_input_closed(struct buffer *buf) |
| 83 | { |
| 84 | return ((buf->flags & BF_SHUTR) != 0); |
| 85 | } |
| 86 | |
| 87 | /* Returns true if the buffer's output is already closed */ |
| 88 | static inline int buffer_output_closed(struct buffer *buf) |
| 89 | { |
| 90 | return ((buf->flags & BF_SHUTW) != 0); |
| 91 | } |
| 92 | |
Willy Tarreau | 2eb52f0 | 2008-09-04 09:14:08 +0200 | [diff] [blame] | 93 | /* Check buffer timeouts, and set the corresponding flags. The |
| 94 | * likely/unlikely have been optimized for fastest normal path. |
Willy Tarreau | dd80c6f | 2008-12-13 22:25:59 +0100 | [diff] [blame] | 95 | * The read/write timeouts are not set if there was activity on the buffer. |
| 96 | * That way, we don't have to update the timeout on every I/O. Note that the |
| 97 | * analyser timeout is always checked. |
Willy Tarreau | 2eb52f0 | 2008-09-04 09:14:08 +0200 | [diff] [blame] | 98 | */ |
| 99 | static inline void buffer_check_timeouts(struct buffer *b) |
| 100 | { |
Willy Tarreau | 86491c3 | 2008-12-14 09:04:47 +0100 | [diff] [blame] | 101 | if (likely(!(b->flags & (BF_SHUTR|BF_READ_TIMEOUT|BF_READ_ACTIVITY|BF_READ_NOEXP))) && |
Willy Tarreau | 2eb52f0 | 2008-09-04 09:14:08 +0200 | [diff] [blame] | 102 | unlikely(tick_is_expired(b->rex, now_ms))) |
| 103 | b->flags |= BF_READ_TIMEOUT; |
| 104 | |
Willy Tarreau | dd80c6f | 2008-12-13 22:25:59 +0100 | [diff] [blame] | 105 | if (likely(!(b->flags & (BF_SHUTW|BF_WRITE_TIMEOUT|BF_WRITE_ACTIVITY))) && |
Willy Tarreau | 2eb52f0 | 2008-09-04 09:14:08 +0200 | [diff] [blame] | 106 | unlikely(tick_is_expired(b->wex, now_ms))) |
| 107 | b->flags |= BF_WRITE_TIMEOUT; |
| 108 | |
| 109 | if (likely(!(b->flags & BF_ANA_TIMEOUT)) && |
| 110 | unlikely(tick_is_expired(b->analyse_exp, now_ms))) |
| 111 | b->flags |= BF_ANA_TIMEOUT; |
| 112 | } |
| 113 | |
Willy Tarreau | e8a28bf | 2009-03-08 21:12:04 +0100 | [diff] [blame] | 114 | /* Schedule all remaining buffer data to be sent. send_max is not touched if it |
| 115 | * already covers those data. That permits doing a flush even after a forward, |
| 116 | * although not recommended. |
| 117 | */ |
| 118 | static inline void buffer_flush(struct buffer *buf) |
| 119 | { |
| 120 | if (buf->send_max < buf->l) |
| 121 | buf->send_max = buf->l; |
Willy Tarreau | ba0b63d | 2009-09-20 08:09:44 +0200 | [diff] [blame] | 122 | if (buf->send_max) |
| 123 | buf->flags &= ~BF_OUT_EMPTY; |
Willy Tarreau | e8a28bf | 2009-03-08 21:12:04 +0100 | [diff] [blame] | 124 | } |
| 125 | |
Willy Tarreau | 6f0aa47 | 2009-03-08 20:33:29 +0100 | [diff] [blame] | 126 | /* Erase any content from buffer <buf> and adjusts flags accordingly. Note |
Willy Tarreau | 0abebcc | 2009-01-08 00:09:41 +0100 | [diff] [blame] | 127 | * that any spliced data is not affected since we may not have any access to |
| 128 | * it. |
Willy Tarreau | e393fe2 | 2008-08-16 22:18:07 +0200 | [diff] [blame] | 129 | */ |
Willy Tarreau | 6f0aa47 | 2009-03-08 20:33:29 +0100 | [diff] [blame] | 130 | static inline void buffer_erase(struct buffer *buf) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 131 | { |
Willy Tarreau | f890dc9 | 2008-12-13 21:12:26 +0100 | [diff] [blame] | 132 | buf->send_max = 0; |
Willy Tarreau | 6b66f3e | 2008-12-14 17:31:54 +0100 | [diff] [blame] | 133 | buf->to_forward = 0; |
Willy Tarreau | e09e0ce | 2007-03-18 16:31:29 +0100 | [diff] [blame] | 134 | buf->r = buf->lr = buf->w = buf->data; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 135 | buf->l = 0; |
Willy Tarreau | ba0b63d | 2009-09-20 08:09:44 +0200 | [diff] [blame] | 136 | buf->flags &= ~(BF_FULL | BF_OUT_EMPTY); |
| 137 | if (!buf->pipe) |
| 138 | buf->flags |= BF_OUT_EMPTY; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 139 | } |
| 140 | |
Willy Tarreau | 9cb8daa | 2009-09-15 21:22:24 +0200 | [diff] [blame] | 141 | /* Cut the "tail" of the buffer, which means strip it to the length of unsent |
| 142 | * data only, and kill any remaining unsent data. Any scheduled forwarding is |
| 143 | * stopped. This is mainly to be used to send error messages after existing |
| 144 | * data. |
| 145 | */ |
| 146 | static inline void buffer_cut_tail(struct buffer *buf) |
| 147 | { |
| 148 | if (!buf->send_max) |
| 149 | return buffer_erase(buf); |
| 150 | |
| 151 | buf->to_forward = 0; |
| 152 | if (buf->l == buf->send_max) |
| 153 | return; |
| 154 | |
| 155 | buf->l = buf->send_max; |
| 156 | buf->r = buf->w + buf->l; |
| 157 | if (buf->r >= buf->data + buf->size) |
| 158 | buf->r -= buf->size; |
| 159 | buf->lr = buf->r; |
Willy Tarreau | ba0b63d | 2009-09-20 08:09:44 +0200 | [diff] [blame] | 160 | buf->flags &= ~BF_FULL; |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 161 | if (buf->l >= buffer_max_len(buf)) |
Willy Tarreau | 9cb8daa | 2009-09-15 21:22:24 +0200 | [diff] [blame] | 162 | buf->flags |= BF_FULL; |
| 163 | } |
| 164 | |
Willy Tarreau | d21e01c | 2009-12-27 15:45:38 +0100 | [diff] [blame] | 165 | /* Cut the <n> next unsent bytes of the buffer. The caller must ensure that <n> |
| 166 | * is smaller than the actual buffer's length. This is mainly used to remove |
| 167 | * empty lines at the beginning of a request or a response. |
| 168 | */ |
| 169 | static inline void buffer_ignore(struct buffer *buf, int n) |
| 170 | { |
| 171 | buf->l -= n; |
| 172 | buf->w += n; |
| 173 | if (buf->w >= buf->data + buf->size) |
| 174 | buf->w -= buf->size; |
| 175 | buf->flags &= ~BF_FULL; |
| 176 | if (buf->l >= buffer_max_len(buf)) |
| 177 | buf->flags |= BF_FULL; |
| 178 | } |
| 179 | |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 180 | /* marks the buffer as "shutdown" ASAP for reads */ |
| 181 | static inline void buffer_shutr_now(struct buffer *buf) |
| 182 | { |
Willy Tarreau | fe3718a | 2008-11-30 18:14:12 +0100 | [diff] [blame] | 183 | buf->flags |= BF_SHUTR_NOW; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | /* marks the buffer as "shutdown" ASAP for writes */ |
| 187 | static inline void buffer_shutw_now(struct buffer *buf) |
| 188 | { |
| 189 | buf->flags |= BF_SHUTW_NOW; |
| 190 | } |
| 191 | |
| 192 | /* marks the buffer as "shutdown" ASAP in both directions */ |
| 193 | static inline void buffer_abort(struct buffer *buf) |
| 194 | { |
Willy Tarreau | fe3718a | 2008-11-30 18:14:12 +0100 | [diff] [blame] | 195 | buf->flags |= BF_SHUTR_NOW | BF_SHUTW_NOW; |
Willy Tarreau | e459976 | 2010-03-21 23:25:09 +0100 | [diff] [blame] | 196 | buf->flags &= ~BF_AUTO_CONNECT; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 197 | } |
| 198 | |
Willy Tarreau | 01bf867 | 2008-12-07 18:03:29 +0100 | [diff] [blame] | 199 | /* Installs <func> as a hijacker on the buffer <b> for session <s>. The hijack |
| 200 | * flag is set, and the function called once. The function is responsible for |
| 201 | * clearing the hijack bit. It is possible that the function clears the flag |
| 202 | * during this first call. |
| 203 | */ |
| 204 | static inline void buffer_install_hijacker(struct session *s, |
| 205 | struct buffer *b, |
| 206 | void (*func)(struct session *, struct buffer *)) |
Willy Tarreau | 72b179a | 2008-08-28 16:01:32 +0200 | [diff] [blame] | 207 | { |
Willy Tarreau | 01bf867 | 2008-12-07 18:03:29 +0100 | [diff] [blame] | 208 | b->hijacker = func; |
| 209 | b->flags |= BF_HIJACK; |
| 210 | func(s, b); |
Willy Tarreau | 72b179a | 2008-08-28 16:01:32 +0200 | [diff] [blame] | 211 | } |
| 212 | |
Willy Tarreau | 01bf867 | 2008-12-07 18:03:29 +0100 | [diff] [blame] | 213 | /* Releases the buffer from hijacking mode. Often used by the hijack function */ |
Willy Tarreau | 72b179a | 2008-08-28 16:01:32 +0200 | [diff] [blame] | 214 | static inline void buffer_stop_hijack(struct buffer *buf) |
| 215 | { |
| 216 | buf->flags &= ~BF_HIJACK; |
| 217 | } |
| 218 | |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 219 | /* allow the consumer to try to establish a new connection. */ |
| 220 | static inline void buffer_auto_connect(struct buffer *buf) |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 221 | { |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 222 | buf->flags |= BF_AUTO_CONNECT; |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 223 | } |
| 224 | |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 225 | /* prevent the consumer from trying to establish a new connection, and also |
| 226 | * disable auto shutdown forwarding. |
| 227 | */ |
| 228 | static inline void buffer_dont_connect(struct buffer *buf) |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 229 | { |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 230 | buf->flags &= ~(BF_AUTO_CONNECT|BF_AUTO_CLOSE); |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 231 | } |
| 232 | |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 233 | /* allow the producer to forward shutdown requests */ |
| 234 | static inline void buffer_auto_close(struct buffer *buf) |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 235 | { |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 236 | buf->flags |= BF_AUTO_CLOSE; |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 237 | } |
| 238 | |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 239 | /* prevent the producer from forwarding shutdown requests */ |
| 240 | static inline void buffer_dont_close(struct buffer *buf) |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 241 | { |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 242 | buf->flags &= ~BF_AUTO_CLOSE; |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 243 | } |
| 244 | |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 245 | /* allow the producer to read / poll the input */ |
| 246 | static inline void buffer_auto_read(struct buffer *buf) |
| 247 | { |
| 248 | buf->flags &= ~BF_DONT_READ; |
| 249 | } |
| 250 | |
| 251 | /* prevent the producer from read / poll the input */ |
| 252 | static inline void buffer_dont_read(struct buffer *buf) |
| 253 | { |
| 254 | buf->flags |= BF_DONT_READ; |
| 255 | } |
| 256 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 257 | /* returns the maximum number of bytes writable at once in this buffer */ |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 258 | static inline int buffer_max(const struct buffer *buf) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 259 | { |
Willy Tarreau | a07a34e | 2009-08-16 23:27:46 +0200 | [diff] [blame] | 260 | if (buf->l == buf->size) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 261 | return 0; |
| 262 | else if (buf->r >= buf->w) |
Willy Tarreau | a07a34e | 2009-08-16 23:27:46 +0200 | [diff] [blame] | 263 | return buf->data + buf->size - buf->r; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 264 | else |
| 265 | return buf->w - buf->r; |
| 266 | } |
| 267 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 268 | /* |
| 269 | * Tries to realign the given buffer, and returns how many bytes can be written |
| 270 | * there at once without overwriting anything. |
| 271 | */ |
| 272 | static inline int buffer_realign(struct buffer *buf) |
| 273 | { |
| 274 | if (buf->l == 0) { |
| 275 | /* let's realign the buffer to optimize I/O */ |
Willy Tarreau | e09e0ce | 2007-03-18 16:31:29 +0100 | [diff] [blame] | 276 | buf->r = buf->w = buf->lr = buf->data; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 277 | } |
| 278 | return buffer_max(buf); |
| 279 | } |
| 280 | |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 281 | /* |
Willy Tarreau | 591fedc | 2010-08-10 15:28:21 +0200 | [diff] [blame] | 282 | * Return the maximum amount of bytes that can be written into the buffer in |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 283 | * one call to buffer_put_*(). |
Willy Tarreau | 591fedc | 2010-08-10 15:28:21 +0200 | [diff] [blame] | 284 | */ |
| 285 | static inline int buffer_free_space(struct buffer *buf) |
| 286 | { |
| 287 | return buffer_max_len(buf) - buf->l; |
| 288 | } |
| 289 | |
| 290 | /* |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 291 | * Return the max amount of bytes that can be stuffed into the buffer at once. |
| 292 | * Note that this may be lower than the actual buffer size when the free space |
| 293 | * wraps after the end, so it's preferable to call this function again after |
| 294 | * writing. Also note that this function respects max_len. |
| 295 | */ |
| 296 | static inline int buffer_contig_space(struct buffer *buf) |
| 297 | { |
| 298 | int ret; |
| 299 | |
| 300 | if (buf->l == 0) { |
| 301 | buf->r = buf->w = buf->lr = buf->data; |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 302 | ret = buffer_max_len(buf); |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 303 | } |
| 304 | else if (buf->r > buf->w) { |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 305 | ret = buf->data + buffer_max_len(buf) - buf->r; |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 306 | } |
| 307 | else { |
| 308 | ret = buf->w - buf->r; |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 309 | if (ret > buffer_max_len(buf)) |
| 310 | ret = buffer_max_len(buf); |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 311 | } |
| 312 | return ret; |
| 313 | } |
| 314 | |
Willy Tarreau | 591fedc | 2010-08-10 15:28:21 +0200 | [diff] [blame] | 315 | /* |
| 316 | * Same as above but the caller may pass the value of buffer_max_len(buf) if it |
| 317 | * knows it, thus avoiding some calculations. |
| 318 | */ |
| 319 | static inline int buffer_contig_space_with_len(struct buffer *buf, int maxlen) |
| 320 | { |
| 321 | int ret; |
| 322 | |
| 323 | if (buf->l == 0) { |
| 324 | buf->r = buf->w = buf->lr = buf->data; |
| 325 | ret = maxlen; |
| 326 | } |
| 327 | else if (buf->r > buf->w) { |
| 328 | ret = buf->data + maxlen - buf->r; |
| 329 | } |
| 330 | else { |
| 331 | ret = buf->w - buf->r; |
| 332 | if (ret > maxlen) |
| 333 | ret = maxlen; |
| 334 | } |
| 335 | return ret; |
| 336 | } |
| 337 | |
Willy Tarreau | 4e33d86 | 2009-10-11 23:35:10 +0200 | [diff] [blame] | 338 | /* Return 1 if the buffer has less than 1/4 of its capacity free, otherwise 0 */ |
| 339 | static inline int buffer_almost_full(struct buffer *buf) |
| 340 | { |
Willy Tarreau | 591fedc | 2010-08-10 15:28:21 +0200 | [diff] [blame] | 341 | if (buffer_free_space(buf) < buf->size / 4) |
Willy Tarreau | 4e33d86 | 2009-10-11 23:35:10 +0200 | [diff] [blame] | 342 | return 1; |
| 343 | return 0; |
| 344 | } |
| 345 | |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 346 | /* |
| 347 | * Return the max amount of bytes that can be read from the buffer at once. |
| 348 | * Note that this may be lower than the actual buffer length when the data |
| 349 | * wrap after the end, so it's preferable to call this function again after |
| 350 | * reading. Also note that this function respects the send_max limit. |
| 351 | */ |
| 352 | static inline int buffer_contig_data(struct buffer *buf) |
| 353 | { |
| 354 | int ret; |
| 355 | |
| 356 | if (!buf->send_max || !buf->l) |
| 357 | return 0; |
| 358 | |
| 359 | if (buf->r > buf->w) |
| 360 | ret = buf->r - buf->w; |
| 361 | else |
| 362 | ret = buf->data + buf->size - buf->w; |
| 363 | |
| 364 | /* limit the amount of outgoing data if required */ |
| 365 | if (ret > buf->send_max) |
| 366 | ret = buf->send_max; |
| 367 | |
| 368 | return ret; |
| 369 | } |
| 370 | |
| 371 | /* |
| 372 | * Advance the buffer's read pointer by <len> bytes. This is useful when data |
| 373 | * have been read directly from the buffer. It is illegal to call this function |
| 374 | * with <len> causing a wrapping at the end of the buffer. It's the caller's |
Willy Tarreau | 2e1dd3d | 2009-09-23 22:56:07 +0200 | [diff] [blame] | 375 | * responsibility to ensure that <len> is never larger than buf->send_max. |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 376 | */ |
| 377 | static inline void buffer_skip(struct buffer *buf, int len) |
| 378 | { |
| 379 | buf->w += len; |
Willy Tarreau | 2e1dd3d | 2009-09-23 22:56:07 +0200 | [diff] [blame] | 380 | if (buf->w >= buf->data + buf->size) |
| 381 | buf->w -= buf->size; /* wrap around the buffer */ |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 382 | |
| 383 | buf->l -= len; |
Willy Tarreau | ba0b63d | 2009-09-20 08:09:44 +0200 | [diff] [blame] | 384 | if (!buf->l) |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 385 | buf->r = buf->w = buf->lr = buf->data; |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 386 | |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 387 | if (buf->l < buffer_max_len(buf)) |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 388 | buf->flags &= ~BF_FULL; |
| 389 | |
| 390 | buf->send_max -= len; |
Willy Tarreau | ba0b63d | 2009-09-20 08:09:44 +0200 | [diff] [blame] | 391 | if (!buf->send_max && !buf->pipe) |
| 392 | buf->flags |= BF_OUT_EMPTY; |
Willy Tarreau | fb0e920 | 2009-09-23 23:47:55 +0200 | [diff] [blame] | 393 | |
| 394 | /* notify that some data was written to the SI from the buffer */ |
| 395 | buf->flags |= BF_WRITE_PARTIAL; |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 396 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 397 | |
Willy Tarreau | aeac319 | 2009-08-31 08:09:57 +0200 | [diff] [blame] | 398 | /* writes the chunk <chunk> to buffer <buf>. Returns -1 in case of success, |
| 399 | * -2 if it is larger than the buffer size, or the number of bytes available |
| 400 | * otherwise. If the chunk has been written, its size is automatically reset |
| 401 | * to zero. The send limit is automatically adjusted with the amount of data |
| 402 | * written. |
| 403 | */ |
| 404 | static inline int buffer_write_chunk(struct buffer *buf, struct chunk *chunk) |
| 405 | { |
| 406 | int ret; |
| 407 | |
| 408 | ret = buffer_write(buf, chunk->str, chunk->len); |
| 409 | if (ret == -1) |
| 410 | chunk->len = 0; |
| 411 | return ret; |
| 412 | } |
| 413 | |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 414 | /* Tries to copy chunk <chunk> into buffer <buf> after length controls. |
| 415 | * The send_max and to_forward pointers are updated. If the buffer's input is |
| 416 | * closed, -2 is returned. If the block is too large for this buffer, -3 is |
| 417 | * returned. If there is not enough room left in the buffer, -1 is returned. |
| 418 | * Otherwise the number of bytes copied is returned (0 being a valid number). |
| 419 | * Buffer flags FULL, EMPTY and READ_PARTIAL are updated if some data can be |
| 420 | * transferred. The chunk's length is updated with the number of bytes sent. |
Willy Tarreau | aeac319 | 2009-08-31 08:09:57 +0200 | [diff] [blame] | 421 | */ |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 422 | static inline int buffer_put_chunk(struct buffer *buf, struct chunk *chunk) |
Willy Tarreau | aeac319 | 2009-08-31 08:09:57 +0200 | [diff] [blame] | 423 | { |
| 424 | int ret; |
| 425 | |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 426 | ret = buffer_put_block(buf, chunk->str, chunk->len); |
| 427 | if (ret > 0) |
| 428 | chunk->len -= ret; |
Willy Tarreau | aeac319 | 2009-08-31 08:09:57 +0200 | [diff] [blame] | 429 | return ret; |
| 430 | } |
| 431 | |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 432 | /* Tries to copy string <str> at once into buffer <buf> after length controls. |
| 433 | * The send_max and to_forward pointers are updated. If the buffer's input is |
| 434 | * closed, -2 is returned. If the block is too large for this buffer, -3 is |
| 435 | * returned. If there is not enough room left in the buffer, -1 is returned. |
| 436 | * Otherwise the number of bytes copied is returned (0 being a valid number). |
| 437 | * Buffer flags FULL, EMPTY and READ_PARTIAL are updated if some data can be |
| 438 | * transferred. |
| 439 | */ |
| 440 | static inline int buffer_put_string(struct buffer *buf, const char *str) |
| 441 | { |
| 442 | return buffer_put_block(buf, str, strlen(str)); |
| 443 | } |
| 444 | |
| 445 | /* |
| 446 | * Return one char from the buffer. If the buffer is empty and closed, return -2. |
| 447 | * If the buffer is just empty, return -1. The buffer's pointer is not advanced, |
| 448 | * it's up to the caller to call buffer_skip(buf, 1) when it has consumed the char. |
| 449 | * Also note that this function respects the send_max limit. |
| 450 | */ |
| 451 | static inline int buffer_get_char(struct buffer *buf) |
| 452 | { |
| 453 | /* closed or empty + imminent close = -2; empty = -1 */ |
| 454 | if (unlikely(buf->flags & (BF_OUT_EMPTY|BF_SHUTW))) { |
| 455 | if (buf->flags & (BF_SHUTW|BF_SHUTW_NOW)) |
| 456 | return -2; |
| 457 | return -1; |
| 458 | } |
| 459 | return *buf->w; |
| 460 | } |
| 461 | |
| 462 | |
| 463 | /* DEPRECATED, just provided for compatibility, use buffer_put_chunk() instead !!! |
| 464 | * returns >= 0 if the buffer is too small to hold the message, -1 if the |
| 465 | * transfer was OK, -2 in case of failure. |
| 466 | */ |
| 467 | static inline int buffer_feed_chunk(struct buffer *buf, struct chunk *msg) |
| 468 | { |
| 469 | int ret = buffer_put_chunk(buf, msg); |
| 470 | if (ret >= 0) /* transfer OK */ |
| 471 | return -1; |
| 472 | if (ret == -1) /* missing room */ |
| 473 | return 1; |
| 474 | /* failure */ |
| 475 | return -2; |
| 476 | } |
| 477 | |
| 478 | /* DEPRECATED, just provided for compatibility, use buffer_put_string() instead !!! |
| 479 | * returns >= 0 if the buffer is too small to hold the message, -1 if the |
| 480 | * transfer was OK, -2 in case of failure. |
Willy Tarreau | 9bcc91e | 2009-10-10 18:01:44 +0200 | [diff] [blame] | 481 | */ |
| 482 | static inline int buffer_feed(struct buffer *buf, const char *str) |
| 483 | { |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 484 | int ret = buffer_put_string(buf, str); |
| 485 | if (ret >= 0) /* transfer OK */ |
| 486 | return -1; |
| 487 | if (ret == -1) /* missing room */ |
| 488 | return 1; |
| 489 | /* failure */ |
| 490 | return -2; |
Willy Tarreau | 9bcc91e | 2009-10-10 18:01:44 +0200 | [diff] [blame] | 491 | } |
| 492 | |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 493 | /* |
| 494 | * |
| 495 | * Functions below are used to manage chunks |
| 496 | * |
| 497 | */ |
| 498 | |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 499 | static inline void chunk_init(struct chunk *chk, char *str, size_t size) { |
| 500 | chk->str = str; |
| 501 | chk->len = 0; |
| 502 | chk->size = size; |
| 503 | } |
| 504 | |
| 505 | /* report 0 in case of error, 1 if OK. */ |
Krzysztof Piotr Oledzki | 6f61b21 | 2009-10-04 23:34:15 +0200 | [diff] [blame] | 506 | static inline int chunk_initlen(struct chunk *chk, char *str, size_t size, int len) { |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 507 | |
Krzysztof Piotr Oledzki | 6f61b21 | 2009-10-04 23:34:15 +0200 | [diff] [blame] | 508 | if (size && len > size) |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 509 | return 0; |
| 510 | |
| 511 | chk->str = str; |
| 512 | chk->len = len; |
| 513 | chk->size = size; |
| 514 | |
| 515 | return 1; |
| 516 | } |
| 517 | |
| 518 | static inline void chunk_initstr(struct chunk *chk, char *str) { |
| 519 | chk->str = str; |
| 520 | chk->len = strlen(str); |
| 521 | chk->size = 0; /* mark it read-only */ |
| 522 | } |
| 523 | |
| 524 | static inline int chunk_strcpy(struct chunk *chk, const char *str) { |
| 525 | size_t len; |
| 526 | |
| 527 | len = strlen(str); |
| 528 | |
| 529 | if (unlikely(len > chk->size)) |
| 530 | return 0; |
| 531 | |
| 532 | chk->len = len; |
| 533 | memcpy(chk->str, str, len); |
| 534 | |
| 535 | return 1; |
| 536 | } |
| 537 | |
| 538 | int chunk_printf(struct chunk *chk, const char *fmt, ...) |
| 539 | __attribute__ ((format(printf, 2, 3))); |
| 540 | |
Krzysztof Piotr Oledzki | ba8d7d3 | 2009-10-10 21:06:03 +0200 | [diff] [blame] | 541 | int chunk_htmlencode(struct chunk *dst, struct chunk *src); |
| 542 | int chunk_asciiencode(struct chunk *dst, struct chunk *src, char qc); |
| 543 | |
Krzysztof Piotr Oledzki | 78abe61 | 2009-09-27 13:23:20 +0200 | [diff] [blame] | 544 | static inline void chunk_reset(struct chunk *chk) { |
| 545 | chk->str = NULL; |
| 546 | chk->len = -1; |
| 547 | chk->size = 0; |
| 548 | } |
| 549 | |
| 550 | static inline void chunk_destroy(struct chunk *chk) { |
| 551 | |
| 552 | if (!chk->size) |
| 553 | return; |
| 554 | |
| 555 | if (chk->str) |
| 556 | free(chk->str); |
| 557 | |
| 558 | chunk_reset(chk); |
| 559 | } |
| 560 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 561 | /* |
| 562 | * frees the destination chunk if already allocated, allocates a new string, |
| 563 | * and copies the source into it. The pointer to the destination string is |
| 564 | * returned, or NULL if the allocation fails or if any pointer is NULL.. |
| 565 | */ |
| 566 | static inline char *chunk_dup(struct chunk *dst, const struct chunk *src) { |
| 567 | if (!dst || !src || !src->str) |
| 568 | return NULL; |
| 569 | if (dst->str) |
| 570 | free(dst->str); |
| 571 | dst->len = src->len; |
| 572 | dst->str = (char *)malloc(dst->len); |
| 573 | memcpy(dst->str, src->str, dst->len); |
| 574 | return dst->str; |
| 575 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 576 | |
| 577 | #endif /* _PROTO_BUFFERS_H */ |
| 578 | |
| 579 | /* |
| 580 | * Local variables: |
| 581 | * c-indent-level: 8 |
| 582 | * c-basic-offset: 8 |
| 583 | * End: |
| 584 | */ |