Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 2 | * include/proto/channel.h |
| 3 | * Channel management definitions, macros and inline functions. |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 4 | * |
Willy Tarreau | a27dc19 | 2014-11-27 22:10:04 +0100 | [diff] [blame] | 5 | * Copyright (C) 2000-2014 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 | |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 22 | #ifndef _PROTO_CHANNEL_H |
| 23 | #define _PROTO_CHANNEL_H |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 24 | |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 25 | #include <stdint.h> |
Willy Tarreau | 7341d94 | 2007-05-13 19:56:02 +0200 | [diff] [blame] | 26 | #include <stdio.h> |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 27 | #include <stdlib.h> |
Willy Tarreau | 7341d94 | 2007-05-13 19:56:02 +0200 | [diff] [blame] | 28 | #include <string.h> |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 29 | |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 30 | #include <common/config.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 31 | #include <common/chunk.h> |
Willy Tarreau | b96b77e | 2018-12-11 10:22:41 +0100 | [diff] [blame] | 32 | #include <common/htx.h> |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 33 | #include <common/ticks.h> |
Willy Tarreau | fa64558 | 2007-06-03 15:59:52 +0200 | [diff] [blame] | 34 | #include <common/time.h> |
| 35 | |
Thierry FOURNIER | ac836ba | 2014-12-16 15:41:18 +0100 | [diff] [blame] | 36 | #include <types/channel.h> |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 37 | #include <types/global.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 38 | #include <types/stream.h> |
Willy Tarreau | 7379653 | 2014-11-28 14:10:28 +0100 | [diff] [blame] | 39 | #include <types/stream_interface.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 40 | |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 41 | #include <proto/task.h> |
| 42 | |
Willy Tarreau | 7341d94 | 2007-05-13 19:56:02 +0200 | [diff] [blame] | 43 | /* perform minimal intializations, report 0 in case of error, 1 if OK. */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 44 | int init_channel(); |
Willy Tarreau | 7341d94 | 2007-05-13 19:56:02 +0200 | [diff] [blame] | 45 | |
Willy Tarreau | 55a6906 | 2012-10-26 00:21:52 +0200 | [diff] [blame] | 46 | unsigned long long __channel_forward(struct channel *chn, unsigned long long bytes); |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 47 | |
| 48 | /* SI-to-channel functions working with buffers */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 49 | int ci_putblk(struct channel *chn, const char *str, int len); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 50 | int ci_putchr(struct channel *chn, char c); |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 51 | int ci_getline_nc(const struct channel *chn, char **blk1, size_t *len1, char **blk2, size_t *len2); |
| 52 | int ci_getblk_nc(const struct channel *chn, char **blk1, size_t *len1, char **blk2, size_t *len2); |
Willy Tarreau | 4d893d4 | 2018-07-12 15:43:32 +0200 | [diff] [blame] | 53 | int ci_insert_line2(struct channel *c, int pos, const char *str, int len); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 54 | int co_inject(struct channel *chn, const char *msg, int len); |
Willy Tarreau | 41ab868 | 2017-10-19 14:58:40 +0200 | [diff] [blame] | 55 | int co_getline(const struct channel *chn, char *str, int len); |
| 56 | int co_getblk(const struct channel *chn, char *blk, int len, int offset); |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 57 | int co_getline_nc(const struct channel *chn, const char **blk1, size_t *len1, const char **blk2, size_t *len2); |
| 58 | int co_getblk_nc(const struct channel *chn, const char **blk1, size_t *len1, const char **blk2, size_t *len2); |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 59 | |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 60 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 61 | /* returns a pointer to the stream the channel belongs to */ |
Thierry FOURNIER | 27929fb | 2015-09-25 08:36:11 +0200 | [diff] [blame] | 62 | static inline struct stream *chn_strm(const struct channel *chn) |
Willy Tarreau | d5ccfa3 | 2014-12-28 13:03:53 +0100 | [diff] [blame] | 63 | { |
| 64 | if (chn->flags & CF_ISRESP) |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 65 | return LIST_ELEM(chn, struct stream *, res); |
Willy Tarreau | d5ccfa3 | 2014-12-28 13:03:53 +0100 | [diff] [blame] | 66 | else |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 67 | return LIST_ELEM(chn, struct stream *, req); |
Willy Tarreau | d5ccfa3 | 2014-12-28 13:03:53 +0100 | [diff] [blame] | 68 | } |
| 69 | |
Willy Tarreau | 7379653 | 2014-11-28 14:10:28 +0100 | [diff] [blame] | 70 | /* returns a pointer to the stream interface feeding the channel (producer) */ |
| 71 | static inline struct stream_interface *chn_prod(const struct channel *chn) |
| 72 | { |
Willy Tarreau | 5decc05 | 2014-11-28 14:22:12 +0100 | [diff] [blame] | 73 | if (chn->flags & CF_ISRESP) |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 74 | return &LIST_ELEM(chn, struct stream *, res)->si[1]; |
Willy Tarreau | 5decc05 | 2014-11-28 14:22:12 +0100 | [diff] [blame] | 75 | else |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 76 | return &LIST_ELEM(chn, struct stream *, req)->si[0]; |
Willy Tarreau | 7379653 | 2014-11-28 14:10:28 +0100 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | /* returns a pointer to the stream interface consuming the channel (producer) */ |
| 80 | static inline struct stream_interface *chn_cons(const struct channel *chn) |
| 81 | { |
Willy Tarreau | 5decc05 | 2014-11-28 14:22:12 +0100 | [diff] [blame] | 82 | if (chn->flags & CF_ISRESP) |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 83 | return &LIST_ELEM(chn, struct stream *, res)->si[0]; |
Willy Tarreau | 5decc05 | 2014-11-28 14:22:12 +0100 | [diff] [blame] | 84 | else |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 85 | return &LIST_ELEM(chn, struct stream *, req)->si[1]; |
Willy Tarreau | 7379653 | 2014-11-28 14:10:28 +0100 | [diff] [blame] | 86 | } |
| 87 | |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 88 | /* c_orig() : returns the pointer to the channel buffer's origin */ |
| 89 | static inline char *c_orig(const struct channel *c) |
| 90 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 91 | return b_orig(&c->buf); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | /* c_size() : returns the size of the channel's buffer */ |
| 95 | static inline size_t c_size(const struct channel *c) |
| 96 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 97 | return b_size(&c->buf); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | /* c_wrap() : returns the pointer to the channel buffer's wrapping point */ |
| 101 | static inline char *c_wrap(const struct channel *c) |
| 102 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 103 | return b_wrap(&c->buf); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | /* c_data() : returns the amount of data in the channel's buffer */ |
| 107 | static inline size_t c_data(const struct channel *c) |
| 108 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 109 | return b_data(&c->buf); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | /* c_room() : returns the room left in the channel's buffer */ |
| 113 | static inline size_t c_room(const struct channel *c) |
| 114 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 115 | return b_size(&c->buf) - b_data(&c->buf); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | /* c_empty() : returns a boolean indicating if the channel's buffer is empty */ |
| 119 | static inline size_t c_empty(const struct channel *c) |
| 120 | { |
| 121 | return !c_data(c); |
| 122 | } |
| 123 | |
| 124 | /* c_full() : returns a boolean indicating if the channel's buffer is full */ |
| 125 | static inline size_t c_full(const struct channel *c) |
| 126 | { |
| 127 | return !c_room(c); |
| 128 | } |
| 129 | |
| 130 | /* co_data() : returns the amount of output data in the channel's buffer */ |
| 131 | static inline size_t co_data(const struct channel *c) |
| 132 | { |
Olivier Houchard | 08afac0 | 2018-06-22 19:26:39 +0200 | [diff] [blame] | 133 | return c->output; |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | /* ci_data() : returns the amount of input data in the channel's buffer */ |
| 137 | static inline size_t ci_data(const struct channel *c) |
| 138 | { |
Willy Tarreau | 3ee8344 | 2018-06-15 16:42:02 +0200 | [diff] [blame] | 139 | return c_data(c) - co_data(c); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | /* ci_next() : for an absolute pointer <p> or a relative offset <o> pointing to |
| 143 | * a valid location within channel <c>'s buffer, returns either the absolute |
| 144 | * pointer or the relative offset pointing to the next byte, which usually is |
| 145 | * at (p + 1) unless p reaches the wrapping point and wrapping is needed. |
| 146 | */ |
| 147 | static inline size_t ci_next_ofs(const struct channel *c, size_t o) |
| 148 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 149 | return b_next_ofs(&c->buf, o); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 150 | } |
| 151 | static inline char *ci_next(const struct channel *c, const char *p) |
| 152 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 153 | return b_next(&c->buf, p); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | |
| 157 | /* c_ptr() : returns a pointer to an offset relative to the beginning of the |
| 158 | * input data in the buffer. If instead the offset is negative, a pointer to |
| 159 | * existing output data is returned. The function only takes care of wrapping, |
| 160 | * it's up to the caller to ensure the offset is always within byte count |
| 161 | * bounds. |
| 162 | */ |
| 163 | static inline char *c_ptr(const struct channel *c, ssize_t ofs) |
| 164 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 165 | return b_peek(&c->buf, co_data(c) + ofs); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | /* c_adv() : advances the channel's buffer by <adv> bytes, which means that the |
| 169 | * buffer's pointer advances, and that as many bytes from in are transferred |
| 170 | * from in to out. The caller is responsible for ensuring that adv is always |
| 171 | * smaller than or equal to b->i. |
| 172 | */ |
| 173 | static inline void c_adv(struct channel *c, size_t adv) |
| 174 | { |
Olivier Houchard | 08afac0 | 2018-06-22 19:26:39 +0200 | [diff] [blame] | 175 | c->output += adv; |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | /* c_rew() : rewinds the channel's buffer by <adv> bytes, which means that the |
| 179 | * buffer's pointer goes backwards, and that as many bytes from out are moved |
| 180 | * to in. The caller is responsible for ensuring that adv is always smaller |
| 181 | * than or equal to b->o. |
| 182 | */ |
| 183 | static inline void c_rew(struct channel *c, size_t adv) |
| 184 | { |
Olivier Houchard | 08afac0 | 2018-06-22 19:26:39 +0200 | [diff] [blame] | 185 | c->output -= adv; |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | /* c_realign_if_empty() : realign the channel's buffer if it's empty */ |
| 189 | static inline void c_realign_if_empty(struct channel *chn) |
| 190 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 191 | b_realign_if_empty(&chn->buf); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 192 | } |
| 193 | |
Olivier Houchard | d4251a7 | 2018-06-29 16:17:34 +0200 | [diff] [blame] | 194 | /* Sets the amount of output for the channel */ |
| 195 | static inline void co_set_data(struct channel *c, size_t output) |
| 196 | { |
Olivier Houchard | 08afac0 | 2018-06-22 19:26:39 +0200 | [diff] [blame] | 197 | c->output = output; |
Olivier Houchard | d4251a7 | 2018-06-29 16:17:34 +0200 | [diff] [blame] | 198 | } |
| 199 | |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 200 | |
| 201 | /* co_head() : returns a pointer to the beginning of output data in the buffer. |
| 202 | * The "__" variants don't support wrapping, "ofs" are relative to |
| 203 | * the buffer's origin. |
| 204 | */ |
| 205 | static inline size_t __co_head_ofs(const struct channel *c) |
| 206 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 207 | return __b_peek_ofs(&c->buf, 0); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 208 | } |
| 209 | static inline char *__co_head(const struct channel *c) |
| 210 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 211 | return __b_peek(&c->buf, 0); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 212 | } |
| 213 | static inline size_t co_head_ofs(const struct channel *c) |
| 214 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 215 | return b_peek_ofs(&c->buf, 0); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 216 | } |
| 217 | static inline char *co_head(const struct channel *c) |
| 218 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 219 | return b_peek(&c->buf, 0); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | |
| 223 | /* co_tail() : returns a pointer to the end of output data in the buffer. |
| 224 | * The "__" variants don't support wrapping, "ofs" are relative to |
| 225 | * the buffer's origin. |
| 226 | */ |
| 227 | static inline size_t __co_tail_ofs(const struct channel *c) |
| 228 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 229 | return __b_peek_ofs(&c->buf, co_data(c)); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 230 | } |
| 231 | static inline char *__co_tail(const struct channel *c) |
| 232 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 233 | return __b_peek(&c->buf, co_data(c)); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 234 | } |
| 235 | static inline size_t co_tail_ofs(const struct channel *c) |
| 236 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 237 | return b_peek_ofs(&c->buf, co_data(c)); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 238 | } |
| 239 | static inline char *co_tail(const struct channel *c) |
| 240 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 241 | return b_peek(&c->buf, co_data(c)); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | |
| 245 | /* ci_head() : returns a pointer to the beginning of input data in the buffer. |
| 246 | * The "__" variants don't support wrapping, "ofs" are relative to |
| 247 | * the buffer's origin. |
| 248 | */ |
| 249 | static inline size_t __ci_head_ofs(const struct channel *c) |
| 250 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 251 | return __b_peek_ofs(&c->buf, co_data(c)); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 252 | } |
| 253 | static inline char *__ci_head(const struct channel *c) |
| 254 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 255 | return __b_peek(&c->buf, co_data(c)); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 256 | } |
| 257 | static inline size_t ci_head_ofs(const struct channel *c) |
| 258 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 259 | return b_peek_ofs(&c->buf, co_data(c)); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 260 | } |
| 261 | static inline char *ci_head(const struct channel *c) |
| 262 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 263 | return b_peek(&c->buf, co_data(c)); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | |
| 267 | /* ci_tail() : returns a pointer to the end of input data in the buffer. |
| 268 | * The "__" variants don't support wrapping, "ofs" are relative to |
| 269 | * the buffer's origin. |
| 270 | */ |
| 271 | static inline size_t __ci_tail_ofs(const struct channel *c) |
| 272 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 273 | return __b_peek_ofs(&c->buf, c_data(c)); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 274 | } |
| 275 | static inline char *__ci_tail(const struct channel *c) |
| 276 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 277 | return __b_peek(&c->buf, c_data(c)); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 278 | } |
| 279 | static inline size_t ci_tail_ofs(const struct channel *c) |
| 280 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 281 | return b_peek_ofs(&c->buf, c_data(c)); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 282 | } |
| 283 | static inline char *ci_tail(const struct channel *c) |
| 284 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 285 | return b_peek(&c->buf, c_data(c)); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | |
| 289 | /* ci_stop() : returns the pointer to the byte following the end of input data |
| 290 | * in the channel buffer. It may be out of the buffer. It's used to |
| 291 | * compute lengths or stop pointers. |
| 292 | */ |
| 293 | static inline size_t __ci_stop_ofs(const struct channel *c) |
| 294 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 295 | return __b_stop_ofs(&c->buf); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 296 | } |
| 297 | static inline const char *__ci_stop(const struct channel *c) |
| 298 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 299 | return __b_stop(&c->buf); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 300 | } |
| 301 | static inline size_t ci_stop_ofs(const struct channel *c) |
| 302 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 303 | return b_stop_ofs(&c->buf); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 304 | } |
| 305 | static inline const char *ci_stop(const struct channel *c) |
| 306 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 307 | return b_stop(&c->buf); |
Willy Tarreau | 08d5ac8 | 2018-06-06 15:09:28 +0200 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | |
Willy Tarreau | 7194d3c | 2018-06-06 16:55:45 +0200 | [diff] [blame] | 311 | /* Returns the amount of input data that can contiguously be read at once */ |
| 312 | static inline size_t ci_contig_data(const struct channel *c) |
| 313 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 314 | return b_contig_data(&c->buf, co_data(c)); |
Willy Tarreau | 7194d3c | 2018-06-06 16:55:45 +0200 | [diff] [blame] | 315 | } |
| 316 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 317 | /* Initialize all fields in the channel. */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 318 | static inline void channel_init(struct channel *chn) |
Willy Tarreau | 5446940 | 2006-07-29 16:59:06 +0200 | [diff] [blame] | 319 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 320 | chn->buf = BUF_NULL; |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 321 | chn->to_forward = 0; |
Willy Tarreau | b145c78 | 2014-02-09 17:45:16 +0100 | [diff] [blame] | 322 | chn->last_read = now_ms; |
Willy Tarreau | 8f39dcd | 2014-02-09 08:31:49 +0100 | [diff] [blame] | 323 | chn->xfer_small = chn->xfer_large = 0; |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 324 | chn->total = 0; |
| 325 | chn->pipe = NULL; |
| 326 | chn->analysers = 0; |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 327 | chn->flags = 0; |
Olivier Houchard | 08afac0 | 2018-06-22 19:26:39 +0200 | [diff] [blame] | 328 | chn->output = 0; |
Willy Tarreau | 5446940 | 2006-07-29 16:59:06 +0200 | [diff] [blame] | 329 | } |
| 330 | |
Willy Tarreau | 55a6906 | 2012-10-26 00:21:52 +0200 | [diff] [blame] | 331 | /* Schedule up to <bytes> more bytes to be forwarded via the channel without |
| 332 | * notifying the owner task. Any data pending in the buffer are scheduled to be |
| 333 | * sent as well, in the limit of the number of bytes to forward. This must be |
| 334 | * the only method to use to schedule bytes to be forwarded. If the requested |
| 335 | * number is too large, it is automatically adjusted. The number of bytes taken |
| 336 | * into account is returned. Directly touching ->to_forward will cause lockups |
| 337 | * when buf->o goes down to zero if nobody is ready to push the remaining data. |
| 338 | */ |
| 339 | static inline unsigned long long channel_forward(struct channel *chn, unsigned long long bytes) |
| 340 | { |
| 341 | /* hint: avoid comparisons on long long for the fast case, since if the |
| 342 | * length does not fit in an unsigned it, it will never be forwarded at |
| 343 | * once anyway. |
| 344 | */ |
| 345 | if (bytes <= ~0U) { |
| 346 | unsigned int bytes32 = bytes; |
| 347 | |
Willy Tarreau | 3ee8344 | 2018-06-15 16:42:02 +0200 | [diff] [blame] | 348 | if (bytes32 <= ci_data(chn)) { |
Willy Tarreau | 55a6906 | 2012-10-26 00:21:52 +0200 | [diff] [blame] | 349 | /* OK this amount of bytes might be forwarded at once */ |
Willy Tarreau | bcbd393 | 2018-06-06 07:13:22 +0200 | [diff] [blame] | 350 | c_adv(chn, bytes32); |
Willy Tarreau | 55a6906 | 2012-10-26 00:21:52 +0200 | [diff] [blame] | 351 | return bytes; |
| 352 | } |
| 353 | } |
| 354 | return __channel_forward(chn, bytes); |
| 355 | } |
| 356 | |
Willy Tarreau | 8bf242b | 2016-05-04 14:05:58 +0200 | [diff] [blame] | 357 | /* Forwards any input data and marks the channel for permanent forwarding */ |
| 358 | static inline void channel_forward_forever(struct channel *chn) |
| 359 | { |
Willy Tarreau | 3ee8344 | 2018-06-15 16:42:02 +0200 | [diff] [blame] | 360 | c_adv(chn, ci_data(chn)); |
Willy Tarreau | 8bf242b | 2016-05-04 14:05:58 +0200 | [diff] [blame] | 361 | chn->to_forward = CHN_INFINITE_FORWARD; |
| 362 | } |
| 363 | |
Christopher Faulet | e645829 | 2019-01-02 14:24:35 +0100 | [diff] [blame] | 364 | /* <len> bytes of input data was added into the channel <chn>. This functions |
| 365 | * must be called to update the channel state. It also handles the fast |
| 366 | * forwarding. */ |
| 367 | static inline void channel_add_input(struct channel *chn, unsigned int len) |
| 368 | { |
| 369 | if (chn->to_forward) { |
| 370 | unsigned long fwd = len; |
| 371 | if (chn->to_forward != CHN_INFINITE_FORWARD) { |
| 372 | if (fwd > chn->to_forward) |
| 373 | fwd = chn->to_forward; |
| 374 | chn->to_forward -= fwd; |
| 375 | } |
| 376 | c_adv(chn, fwd); |
| 377 | } |
| 378 | /* notify that some data was read */ |
| 379 | chn->total += len; |
| 380 | chn->flags |= CF_READ_PARTIAL; |
| 381 | } |
| 382 | |
Christopher Faulet | b2aedea | 2018-12-05 11:56:15 +0100 | [diff] [blame] | 383 | static inline unsigned long long channel_htx_forward(struct channel *chn, struct htx *htx, unsigned long long bytes) |
| 384 | { |
| 385 | unsigned long long ret; |
| 386 | |
| 387 | b_set_data(&chn->buf, htx->data); |
| 388 | ret = channel_forward(chn, bytes); |
| 389 | b_set_data(&chn->buf, b_size(&chn->buf)); |
| 390 | return ret; |
| 391 | } |
| 392 | |
| 393 | |
| 394 | static inline void channel_htx_forward_forever(struct channel *chn, struct htx *htx) |
| 395 | { |
| 396 | b_set_data(&chn->buf, htx->data); |
| 397 | channel_forward_forever(chn); |
| 398 | b_set_data(&chn->buf, b_size(&chn->buf)); |
| 399 | } |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 400 | /*********************************************************************/ |
| 401 | /* These functions are used to compute various channel content sizes */ |
| 402 | /*********************************************************************/ |
Willy Tarreau | 4b517ca | 2011-11-25 20:33:58 +0100 | [diff] [blame] | 403 | |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 404 | /* Reports non-zero if the channel is empty, which means both its |
| 405 | * buffer and pipe are empty. The construct looks strange but is |
| 406 | * jump-less and much more efficient on both 32 and 64-bit than |
| 407 | * the boolean test. |
| 408 | */ |
Willy Tarreau | 41ab868 | 2017-10-19 14:58:40 +0200 | [diff] [blame] | 409 | static inline unsigned int channel_is_empty(const struct channel *c) |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 410 | { |
Willy Tarreau | 3ee8344 | 2018-06-15 16:42:02 +0200 | [diff] [blame] | 411 | return !(co_data(c) | (long)c->pipe); |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 412 | } |
| 413 | |
Willy Tarreau | ba0902e | 2015-01-13 14:39:16 +0100 | [diff] [blame] | 414 | /* Returns non-zero if the channel is rewritable, which means that the buffer |
| 415 | * it is attached to has at least <maxrewrite> bytes immediately available. |
| 416 | * This is used to decide when a request or response may be parsed when some |
| 417 | * data from a previous exchange might still be present. |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 418 | */ |
Willy Tarreau | ba0902e | 2015-01-13 14:39:16 +0100 | [diff] [blame] | 419 | static inline int channel_is_rewritable(const struct channel *chn) |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 420 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 421 | int rem = chn->buf.size; |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 422 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 423 | rem -= b_data(&chn->buf); |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 424 | rem -= global.tune.maxrewrite; |
| 425 | return rem >= 0; |
| 426 | } |
| 427 | |
Willy Tarreau | 9c06ee4 | 2015-01-14 16:08:45 +0100 | [diff] [blame] | 428 | /* Tells whether data are likely to leave the buffer. This is used to know when |
| 429 | * we can safely ignore the reserve since we know we cannot retry a connection. |
| 430 | * It returns zero if data are blocked, non-zero otherwise. |
| 431 | */ |
| 432 | static inline int channel_may_send(const struct channel *chn) |
| 433 | { |
Willy Tarreau | 7379653 | 2014-11-28 14:10:28 +0100 | [diff] [blame] | 434 | return chn_cons(chn)->state == SI_ST_EST; |
Willy Tarreau | 9c06ee4 | 2015-01-14 16:08:45 +0100 | [diff] [blame] | 435 | } |
| 436 | |
Willy Tarreau | 3889fff | 2015-01-13 20:20:10 +0100 | [diff] [blame] | 437 | /* Returns non-zero if the channel can still receive data. This is used to |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 438 | * decide when to stop reading into a buffer when we want to ensure that we |
| 439 | * leave the reserve untouched after all pending outgoing data are forwarded. |
| 440 | * The reserved space is taken into account if ->to_forward indicates that an |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 441 | * end of transfer is close to happen. Note that both ->buf.o and ->to_forward |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 442 | * are considered as available since they're supposed to leave the buffer. The |
| 443 | * test is optimized to avoid as many operations as possible for the fast case |
Willy Tarreau | 4b46a3e | 2016-04-20 20:09:22 +0200 | [diff] [blame] | 444 | * and to be used as an "if" condition. Just like channel_recv_limit(), we |
| 445 | * never allow to overwrite the reserve until the output stream interface is |
| 446 | * connected, otherwise we could spin on a POST with http-send-name-header. |
Willy Tarreau | 4b517ca | 2011-11-25 20:33:58 +0100 | [diff] [blame] | 447 | */ |
Willy Tarreau | 3889fff | 2015-01-13 20:20:10 +0100 | [diff] [blame] | 448 | static inline int channel_may_recv(const struct channel *chn) |
Willy Tarreau | 4b517ca | 2011-11-25 20:33:58 +0100 | [diff] [blame] | 449 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 450 | int rem = chn->buf.size; |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 451 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 452 | if (b_is_null(&chn->buf)) |
Willy Tarreau | 3889fff | 2015-01-13 20:20:10 +0100 | [diff] [blame] | 453 | return 1; |
Willy Tarreau | 4428a29 | 2014-11-28 20:54:13 +0100 | [diff] [blame] | 454 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 455 | rem -= b_data(&chn->buf); |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 456 | if (!rem) |
Willy Tarreau | 3889fff | 2015-01-13 20:20:10 +0100 | [diff] [blame] | 457 | return 0; /* buffer already full */ |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 458 | |
Willy Tarreau | 93dc478 | 2016-04-21 12:12:45 +0200 | [diff] [blame] | 459 | if (rem > global.tune.maxrewrite) |
| 460 | return 1; /* reserve not yet reached */ |
Willy Tarreau | 4b46a3e | 2016-04-20 20:09:22 +0200 | [diff] [blame] | 461 | |
Willy Tarreau | 93dc478 | 2016-04-21 12:12:45 +0200 | [diff] [blame] | 462 | if (!channel_may_send(chn)) |
| 463 | return 0; /* don't touch reserve until we can send */ |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 464 | |
Willy Tarreau | 93dc478 | 2016-04-21 12:12:45 +0200 | [diff] [blame] | 465 | /* Now we know there's some room left in the reserve and we may |
| 466 | * forward. As long as i-to_fwd < size-maxrw, we may still |
| 467 | * receive. This is equivalent to i+maxrw-size < to_fwd, |
| 468 | * which is logical since i+maxrw-size is what overlaps with |
| 469 | * the reserve, and we want to ensure they're covered by scheduled |
| 470 | * forwards. |
| 471 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 472 | rem = ci_data(chn) + global.tune.maxrewrite - chn->buf.size; |
Willy Tarreau | 93dc478 | 2016-04-21 12:12:45 +0200 | [diff] [blame] | 473 | return rem < 0 || (unsigned int)rem < chn->to_forward; |
Willy Tarreau | 4b517ca | 2011-11-25 20:33:58 +0100 | [diff] [blame] | 474 | } |
| 475 | |
Christopher Faulet | 5811db0 | 2019-01-07 13:57:01 +0100 | [diff] [blame] | 476 | /* HTX version of channel_may_recv(). Returns non-zero if the channel can still |
| 477 | * receive data. */ |
| 478 | static inline int channel_htx_may_recv(const struct channel *chn, const struct htx *htx) |
| 479 | { |
| 480 | uint32_t rem; |
| 481 | |
| 482 | if (!htx->size) |
| 483 | return 1; |
| 484 | |
| 485 | if (!channel_may_send(chn)) |
| 486 | return 0; /* don't touch reserve until we can send */ |
| 487 | |
| 488 | rem = htx_free_data_space(htx); |
| 489 | if (!rem) |
| 490 | return 0; /* htx already full */ |
| 491 | |
| 492 | if (rem > global.tune.maxrewrite) |
| 493 | return 1; /* reserve not yet reached */ |
| 494 | |
| 495 | /* Now we know there's some room left in the reserve and we may |
| 496 | * forward. As long as i-to_fwd < size-maxrw, we may still |
| 497 | * receive. This is equivalent to i+maxrw-size < to_fwd, |
| 498 | * which is logical since i+maxrw-size is what overlaps with |
| 499 | * the reserve, and we want to ensure they're covered by scheduled |
| 500 | * forwards. |
| 501 | */ |
| 502 | rem += co_data(chn); |
| 503 | if (rem > global.tune.maxrewrite) |
| 504 | return 1; |
| 505 | |
| 506 | return (global.tune.maxrewrite - rem < chn->to_forward); |
| 507 | } |
| 508 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 509 | /* Returns true if the channel's input is already closed */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 510 | static inline int channel_input_closed(struct channel *chn) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 511 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 512 | return ((chn->flags & CF_SHUTR) != 0); |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 513 | } |
| 514 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 515 | /* Returns true if the channel's output is already closed */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 516 | static inline int channel_output_closed(struct channel *chn) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 517 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 518 | return ((chn->flags & CF_SHUTW) != 0); |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 519 | } |
| 520 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 521 | /* Check channel timeouts, and set the corresponding flags. The likely/unlikely |
| 522 | * have been optimized for fastest normal path. The read/write timeouts are not |
| 523 | * set if there was activity on the channel. That way, we don't have to update |
| 524 | * the timeout on every I/O. Note that the analyser timeout is always checked. |
Willy Tarreau | 2eb52f0 | 2008-09-04 09:14:08 +0200 | [diff] [blame] | 525 | */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 526 | static inline void channel_check_timeouts(struct channel *chn) |
Willy Tarreau | 2eb52f0 | 2008-09-04 09:14:08 +0200 | [diff] [blame] | 527 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 528 | if (likely(!(chn->flags & (CF_SHUTR|CF_READ_TIMEOUT|CF_READ_ACTIVITY|CF_READ_NOEXP))) && |
| 529 | unlikely(tick_is_expired(chn->rex, now_ms))) |
| 530 | chn->flags |= CF_READ_TIMEOUT; |
Willy Tarreau | 2eb52f0 | 2008-09-04 09:14:08 +0200 | [diff] [blame] | 531 | |
Willy Tarreau | ede3d88 | 2018-10-24 17:17:56 +0200 | [diff] [blame] | 532 | if (likely(!(chn->flags & (CF_SHUTW|CF_WRITE_TIMEOUT|CF_WRITE_ACTIVITY))) && |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 533 | unlikely(tick_is_expired(chn->wex, now_ms))) |
| 534 | chn->flags |= CF_WRITE_TIMEOUT; |
Willy Tarreau | 2eb52f0 | 2008-09-04 09:14:08 +0200 | [diff] [blame] | 535 | |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 536 | if (likely(!(chn->flags & CF_ANA_TIMEOUT)) && |
| 537 | unlikely(tick_is_expired(chn->analyse_exp, now_ms))) |
| 538 | chn->flags |= CF_ANA_TIMEOUT; |
Willy Tarreau | 2eb52f0 | 2008-09-04 09:14:08 +0200 | [diff] [blame] | 539 | } |
| 540 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 541 | /* Erase any content from channel <buf> and adjusts flags accordingly. Note |
Willy Tarreau | 0abebcc | 2009-01-08 00:09:41 +0100 | [diff] [blame] | 542 | * that any spliced data is not affected since we may not have any access to |
| 543 | * it. |
Willy Tarreau | e393fe2 | 2008-08-16 22:18:07 +0200 | [diff] [blame] | 544 | */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 545 | static inline void channel_erase(struct channel *chn) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 546 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 547 | chn->to_forward = 0; |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 548 | b_reset(&chn->buf); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 549 | } |
| 550 | |
Christopher Faulet | f7ed195 | 2019-01-07 14:55:10 +0100 | [diff] [blame] | 551 | static inline void channel_htx_erase(struct channel *chn, struct htx *htx) |
| 552 | { |
| 553 | htx_reset(htx); |
| 554 | channel_erase(chn); |
| 555 | } |
| 556 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 557 | /* marks the channel as "shutdown" ASAP for reads */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 558 | static inline void channel_shutr_now(struct channel *chn) |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 559 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 560 | chn->flags |= CF_SHUTR_NOW; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 561 | } |
| 562 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 563 | /* marks the channel as "shutdown" ASAP for writes */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 564 | static inline void channel_shutw_now(struct channel *chn) |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 565 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 566 | chn->flags |= CF_SHUTW_NOW; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 567 | } |
| 568 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 569 | /* marks the channel as "shutdown" ASAP in both directions */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 570 | static inline void channel_abort(struct channel *chn) |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 571 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 572 | chn->flags |= CF_SHUTR_NOW | CF_SHUTW_NOW; |
| 573 | chn->flags &= ~CF_AUTO_CONNECT; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 574 | } |
| 575 | |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 576 | /* allow the consumer to try to establish a new connection. */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 577 | static inline void channel_auto_connect(struct channel *chn) |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 578 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 579 | chn->flags |= CF_AUTO_CONNECT; |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 580 | } |
| 581 | |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 582 | /* prevent the consumer from trying to establish a new connection, and also |
| 583 | * disable auto shutdown forwarding. |
| 584 | */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 585 | static inline void channel_dont_connect(struct channel *chn) |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 586 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 587 | chn->flags &= ~(CF_AUTO_CONNECT|CF_AUTO_CLOSE); |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 588 | } |
| 589 | |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 590 | /* allow the producer to forward shutdown requests */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 591 | static inline void channel_auto_close(struct channel *chn) |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 592 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 593 | chn->flags |= CF_AUTO_CLOSE; |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 594 | } |
| 595 | |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 596 | /* prevent the producer from forwarding shutdown requests */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 597 | static inline void channel_dont_close(struct channel *chn) |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 598 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 599 | chn->flags &= ~CF_AUTO_CLOSE; |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 600 | } |
| 601 | |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 602 | /* allow the producer to read / poll the input */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 603 | static inline void channel_auto_read(struct channel *chn) |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 604 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 605 | chn->flags &= ~CF_DONT_READ; |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 606 | } |
| 607 | |
| 608 | /* prevent the producer from read / poll the input */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 609 | static inline void channel_dont_read(struct channel *chn) |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 610 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 611 | chn->flags |= CF_DONT_READ; |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 612 | } |
| 613 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 614 | |
| 615 | /*************************************************/ |
| 616 | /* Buffer operations in the context of a channel */ |
| 617 | /*************************************************/ |
| 618 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 619 | |
| 620 | /* Return the max number of bytes the buffer can contain so that once all the |
Willy Tarreau | 169c470 | 2016-04-20 18:05:17 +0200 | [diff] [blame] | 621 | * pending bytes are forwarded, the buffer still has global.tune.maxrewrite |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 622 | * bytes free. The result sits between chn->size - maxrewrite and chn->size. |
Willy Tarreau | 169c470 | 2016-04-20 18:05:17 +0200 | [diff] [blame] | 623 | * It is important to mention that if buf->i is already larger than size-maxrw |
| 624 | * the condition above cannot be satisfied and the lowest size will be returned |
| 625 | * anyway. The principles are the following : |
| 626 | * 0) the empty buffer has a limit of zero |
| 627 | * 1) a non-connected buffer cannot touch the reserve |
| 628 | * 2) infinite forward can always fill the buffer since all data will leave |
| 629 | * 3) all output bytes are considered in transit since they're leaving |
| 630 | * 4) all input bytes covered by to_forward are considered in transit since |
| 631 | * they'll be converted to output bytes. |
| 632 | * 5) all input bytes not covered by to_forward as considered remaining |
| 633 | * 6) all bytes scheduled to be forwarded minus what is already in the input |
| 634 | * buffer will be in transit during future rounds. |
| 635 | * 7) 4+5+6 imply that the amount of input bytes (i) is irrelevant to the max |
| 636 | * usable length, only to_forward and output count. The difference is |
| 637 | * visible when to_forward > i. |
| 638 | * 8) the reserve may be covered up to the amount of bytes in transit since |
| 639 | * these bytes will only take temporary space. |
Willy Tarreau | 999f643 | 2016-01-25 01:09:11 +0100 | [diff] [blame] | 640 | * |
Willy Tarreau | 169c470 | 2016-04-20 18:05:17 +0200 | [diff] [blame] | 641 | * A typical buffer looks like this : |
Willy Tarreau | 999f643 | 2016-01-25 01:09:11 +0100 | [diff] [blame] | 642 | * |
Willy Tarreau | 169c470 | 2016-04-20 18:05:17 +0200 | [diff] [blame] | 643 | * <-------------- max_len -----------> |
| 644 | * <---- o ----><----- i -----> <--- 0..maxrewrite ---> |
| 645 | * +------------+--------------+-------+----------------------+ |
| 646 | * |////////////|\\\\\\\\\\\\\\|xxxxxxx| reserve | |
| 647 | * +------------+--------+-----+-------+----------------------+ |
| 648 | * <- fwd -> <-avail-> |
| 649 | * |
| 650 | * Or when to_forward > i : |
| 651 | * |
| 652 | * <-------------- max_len -----------> |
| 653 | * <---- o ----><----- i -----> <--- 0..maxrewrite ---> |
| 654 | * +------------+--------------+-------+----------------------+ |
| 655 | * |////////////|\\\\\\\\\\\\\\|xxxxxxx| reserve | |
| 656 | * +------------+--------+-----+-------+----------------------+ |
| 657 | * <-avail-> |
| 658 | * <------------------ fwd ----------------> |
| 659 | * |
| 660 | * - the amount of buffer bytes in transit is : min(i, fwd) + o |
| 661 | * - some scheduled bytes may be in transit (up to fwd - i) |
| 662 | * - the reserve is max(0, maxrewrite - transit) |
| 663 | * - the maximum usable buffer length is size - reserve. |
| 664 | * - the available space is max_len - i - o |
| 665 | * |
| 666 | * So the formula to compute the buffer's maximum length to protect the reserve |
| 667 | * when reading new data is : |
| 668 | * |
| 669 | * max = size - maxrewrite + min(maxrewrite, transit) |
| 670 | * = size - max(maxrewrite - transit, 0) |
| 671 | * |
| 672 | * But WARNING! The conditions might change during the transfer and it could |
| 673 | * very well happen that a buffer would contain more bytes than max_len due to |
| 674 | * i+o already walking over the reserve (eg: after a header rewrite), including |
| 675 | * i or o alone hitting the limit. So it is critical to always consider that |
| 676 | * bounds may have already been crossed and that available space may be negative |
| 677 | * for example. Due to this it is perfectly possible for this function to return |
| 678 | * a value that is lower than current i+o. |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 679 | */ |
Willy Tarreau | 3f5096d | 2015-01-14 20:21:43 +0100 | [diff] [blame] | 680 | static inline int channel_recv_limit(const struct channel *chn) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 681 | { |
Willy Tarreau | ef907fe | 2016-05-03 17:46:24 +0200 | [diff] [blame] | 682 | unsigned int transit; |
Willy Tarreau | 999f643 | 2016-01-25 01:09:11 +0100 | [diff] [blame] | 683 | int reserve; |
| 684 | |
| 685 | /* return zero if empty */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 686 | reserve = chn->buf.size; |
| 687 | if (b_is_null(&chn->buf)) |
Willy Tarreau | 999f643 | 2016-01-25 01:09:11 +0100 | [diff] [blame] | 688 | goto end; |
| 689 | |
| 690 | /* return size - maxrewrite if we can't send */ |
| 691 | reserve = global.tune.maxrewrite; |
| 692 | if (unlikely(!channel_may_send(chn))) |
| 693 | goto end; |
| 694 | |
Willy Tarreau | ef907fe | 2016-05-03 17:46:24 +0200 | [diff] [blame] | 695 | /* We need to check what remains of the reserve after o and to_forward |
| 696 | * have been transmitted, but they can overflow together and they can |
| 697 | * cause an integer underflow in the comparison since both are unsigned |
| 698 | * while maxrewrite is signed. |
| 699 | * The code below has been verified for being a valid check for this : |
| 700 | * - if (o + to_forward) overflow => return size [ large enough ] |
| 701 | * - if o + to_forward >= maxrw => return size [ large enough ] |
| 702 | * - otherwise return size - (maxrw - (o + to_forward)) |
Willy Tarreau | 999f643 | 2016-01-25 01:09:11 +0100 | [diff] [blame] | 703 | */ |
Willy Tarreau | 3ee8344 | 2018-06-15 16:42:02 +0200 | [diff] [blame] | 704 | transit = co_data(chn) + chn->to_forward; |
Willy Tarreau | ef907fe | 2016-05-03 17:46:24 +0200 | [diff] [blame] | 705 | reserve -= transit; |
| 706 | if (transit < chn->to_forward || // addition overflow |
| 707 | transit >= (unsigned)global.tune.maxrewrite) // enough transit data |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 708 | return chn->buf.size; |
Willy Tarreau | 999f643 | 2016-01-25 01:09:11 +0100 | [diff] [blame] | 709 | end: |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 710 | return chn->buf.size - reserve; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 711 | } |
| 712 | |
Christopher Faulet | 5811db0 | 2019-01-07 13:57:01 +0100 | [diff] [blame] | 713 | /* HTX version of channel_recv_limit(). Return the max number of bytes the HTX |
| 714 | * buffer can contain so that once all the pending bytes are forwarded, the |
| 715 | * buffer still has global.tune.maxrewrite bytes free. |
| 716 | */ |
| 717 | static inline int channel_htx_recv_limit(const struct channel *chn, const struct htx *htx) |
| 718 | { |
| 719 | unsigned int transit; |
| 720 | int reserve; |
| 721 | |
| 722 | /* return zeor if not allocated */ |
| 723 | if (!htx->size) |
| 724 | return 0; |
| 725 | |
| 726 | /* return max_data_space - maxrewrite if we can't send */ |
| 727 | reserve = global.tune.maxrewrite; |
| 728 | if (unlikely(!channel_may_send(chn))) |
| 729 | goto end; |
| 730 | |
| 731 | /* We need to check what remains of the reserve after o and to_forward |
| 732 | * have been transmitted, but they can overflow together and they can |
| 733 | * cause an integer underflow in the comparison since both are unsigned |
| 734 | * while maxrewrite is signed. |
| 735 | * The code below has been verified for being a valid check for this : |
| 736 | * - if (o + to_forward) overflow => return max_data_space [ large enough ] |
| 737 | * - if o + to_forward >= maxrw => return max_data_space [ large enough ] |
| 738 | * - otherwise return max_data_space - (maxrw - (o + to_forward)) |
| 739 | */ |
| 740 | transit = co_data(chn) + chn->to_forward; |
| 741 | reserve -= transit; |
| 742 | if (transit < chn->to_forward || // addition overflow |
| 743 | transit >= (unsigned)global.tune.maxrewrite) // enough transit data |
| 744 | return htx_max_data_space(htx); |
| 745 | end: |
| 746 | return (htx_max_data_space(htx) - reserve); |
| 747 | } |
| 748 | |
Willy Tarreau | 2375233 | 2018-06-15 14:54:53 +0200 | [diff] [blame] | 749 | /* Returns non-zero if the channel's INPUT buffer's is considered full, which |
| 750 | * means that it holds at least as much INPUT data as (size - reserve). This |
| 751 | * also means that data that are scheduled for output are considered as potential |
| 752 | * free space, and that the reserved space is always considered as not usable. |
| 753 | * This information alone cannot be used as a general purpose free space indicator. |
| 754 | * However it accurately indicates that too many data were fed in the buffer |
| 755 | * for an analyzer for instance. See the channel_may_recv() function for a more |
| 756 | * generic function taking everything into account. |
| 757 | */ |
| 758 | static inline int channel_full(const struct channel *c, unsigned int reserve) |
| 759 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 760 | if (b_is_null(&c->buf)) |
Willy Tarreau | 2375233 | 2018-06-15 14:54:53 +0200 | [diff] [blame] | 761 | return 0; |
| 762 | |
Willy Tarreau | 3ee8344 | 2018-06-15 16:42:02 +0200 | [diff] [blame] | 763 | return (ci_data(c) + reserve >= c_size(c)); |
Willy Tarreau | 2375233 | 2018-06-15 14:54:53 +0200 | [diff] [blame] | 764 | } |
| 765 | |
Christopher Faulet | 5811db0 | 2019-01-07 13:57:01 +0100 | [diff] [blame] | 766 | /* HTX version of channel_full(). Instead of checking if INPUT data exceeds |
| 767 | * (size - reserve), this function checks if the free space for data in <htx> |
| 768 | * and the data scheduled for output are lower to the reserve. In such case, the |
| 769 | * channel is considered as full. |
| 770 | */ |
| 771 | static inline int channel_htx_full(const struct channel *c, const struct htx *htx, |
| 772 | unsigned int reserve) |
| 773 | { |
| 774 | if (!htx->size) |
| 775 | return 0; |
| 776 | return (htx_free_data_space(htx) + co_data(c) <= reserve); |
| 777 | } |
| 778 | |
Willy Tarreau | 2375233 | 2018-06-15 14:54:53 +0200 | [diff] [blame] | 779 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 780 | /* Returns the amount of space available at the input of the buffer, taking the |
| 781 | * reserved space into account if ->to_forward indicates that an end of transfer |
| 782 | * is close to happen. The test is optimized to avoid as many operations as |
| 783 | * possible for the fast case. |
| 784 | */ |
Willy Tarreau | b5051f8 | 2015-01-14 20:25:34 +0100 | [diff] [blame] | 785 | static inline int channel_recv_max(const struct channel *chn) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 786 | { |
Willy Tarreau | 27bb0e1 | 2015-01-14 15:56:50 +0100 | [diff] [blame] | 787 | int ret; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 788 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 789 | ret = channel_recv_limit(chn) - b_data(&chn->buf); |
Willy Tarreau | 27bb0e1 | 2015-01-14 15:56:50 +0100 | [diff] [blame] | 790 | if (ret < 0) |
| 791 | ret = 0; |
| 792 | return ret; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 793 | } |
| 794 | |
Christopher Faulet | 5811db0 | 2019-01-07 13:57:01 +0100 | [diff] [blame] | 795 | /* HTX version of channel_recv_max(). */ |
| 796 | static inline int channel_htx_recv_max(const struct channel *chn, const struct htx *htx) |
| 797 | { |
| 798 | int ret; |
| 799 | |
| 800 | ret = channel_htx_recv_limit(chn, htx) - htx->data; |
| 801 | if (ret < 0) |
| 802 | ret = 0; |
| 803 | return ret; |
| 804 | } |
| 805 | |
Willy Tarreau | 3f67999 | 2018-06-15 15:06:42 +0200 | [diff] [blame] | 806 | /* Returns the amount of bytes that can be written over the input data at once, |
| 807 | * including reserved space which may be overwritten. This is used by Lua to |
| 808 | * insert data in the input side just before the other data using buffer_replace(). |
| 809 | * The goal is to transfer these new data in the output buffer. |
| 810 | */ |
| 811 | static inline int ci_space_for_replace(const struct channel *chn) |
| 812 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 813 | const struct buffer *buf = &chn->buf; |
Willy Tarreau | 3f67999 | 2018-06-15 15:06:42 +0200 | [diff] [blame] | 814 | const char *end; |
| 815 | |
| 816 | /* If the input side data overflows, we cannot insert data contiguously. */ |
| 817 | if (b_head(buf) + b_data(buf) >= b_wrap(buf)) |
| 818 | return 0; |
| 819 | |
| 820 | /* Check the last byte used in the buffer, it may be a byte of the output |
| 821 | * side if the buffer wraps, or its the end of the buffer. |
| 822 | */ |
| 823 | end = b_head(buf); |
| 824 | if (end <= ci_head(chn)) |
| 825 | end = b_wrap(buf); |
| 826 | |
| 827 | /* Compute the amount of bytes which can be written. */ |
| 828 | return end - ci_tail(chn); |
| 829 | } |
| 830 | |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 831 | /* Allocates a buffer for channel <chn>, but only if it's guaranteed that it's |
| 832 | * not the last available buffer or it's the response buffer. Unless the buffer |
| 833 | * is the response buffer, an extra control is made so that we always keep |
| 834 | * <tune.buffers.reserved> buffers available after this allocation. Returns 0 in |
| 835 | * case of failure, non-zero otherwise. |
| 836 | * |
| 837 | * If no buffer are available, the requester, represented by <wait> pointer, |
| 838 | * will be added in the list of objects waiting for an available buffer. |
| 839 | */ |
| 840 | static inline int channel_alloc_buffer(struct channel *chn, struct buffer_wait *wait) |
| 841 | { |
| 842 | int margin = 0; |
| 843 | |
| 844 | if (!(chn->flags & CF_ISRESP)) |
| 845 | margin = global.tune.reserved_bufs; |
| 846 | |
| 847 | if (b_alloc_margin(&chn->buf, margin) != NULL) |
| 848 | return 1; |
| 849 | |
Emeric Brun | a1dd243 | 2017-06-21 15:42:52 +0200 | [diff] [blame] | 850 | if (LIST_ISEMPTY(&wait->list)) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 851 | HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 852 | LIST_ADDQ(&buffer_wq, &wait->list); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 853 | HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
Emeric Brun | a1dd243 | 2017-06-21 15:42:52 +0200 | [diff] [blame] | 854 | } |
| 855 | |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 856 | return 0; |
| 857 | } |
| 858 | |
| 859 | /* Releases a possibly allocated buffer for channel <chn>. If it was not |
| 860 | * allocated, this function does nothing. Else the buffer is released and we try |
| 861 | * to wake up as many streams/applets as possible. */ |
| 862 | static inline void channel_release_buffer(struct channel *chn, struct buffer_wait *wait) |
| 863 | { |
Willy Tarreau | 0c7ed5d | 2018-07-10 09:53:31 +0200 | [diff] [blame] | 864 | if (c_size(chn) && c_empty(chn)) { |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 865 | b_free(&chn->buf); |
Olivier Houchard | 673867c | 2018-05-25 16:58:52 +0200 | [diff] [blame] | 866 | offer_buffers(wait->target, tasks_run_queue); |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 867 | } |
| 868 | } |
| 869 | |
Willy Tarreau | 319f745 | 2015-01-14 20:32:59 +0100 | [diff] [blame] | 870 | /* Truncate any unread data in the channel's buffer, and disable forwarding. |
| 871 | * Outgoing data are left intact. This is mainly to be used to send error |
| 872 | * messages after existing data. |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 873 | */ |
Willy Tarreau | 319f745 | 2015-01-14 20:32:59 +0100 | [diff] [blame] | 874 | static inline void channel_truncate(struct channel *chn) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 875 | { |
Willy Tarreau | 3ee8344 | 2018-06-15 16:42:02 +0200 | [diff] [blame] | 876 | if (!co_data(chn)) |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 877 | return channel_erase(chn); |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 878 | |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 879 | chn->to_forward = 0; |
Willy Tarreau | 3ee8344 | 2018-06-15 16:42:02 +0200 | [diff] [blame] | 880 | if (!ci_data(chn)) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 881 | return; |
| 882 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 883 | chn->buf.data = co_data(chn); |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 884 | } |
| 885 | |
Christopher Faulet | f7ed195 | 2019-01-07 14:55:10 +0100 | [diff] [blame] | 886 | static inline void channel_htx_truncate(struct channel *chn, struct htx *htx) |
| 887 | { |
| 888 | if (!co_data(chn)) |
| 889 | return channel_htx_erase(chn, htx); |
| 890 | |
| 891 | chn->to_forward = 0; |
| 892 | if (htx->data == co_data(chn)) |
| 893 | return; |
| 894 | htx_truncate(htx, co_data(chn)); |
| 895 | } |
| 896 | |
Willy Tarreau | 4cf1300 | 2018-06-06 06:53:15 +0200 | [diff] [blame] | 897 | /* This function realigns a possibly wrapping channel buffer so that the input |
| 898 | * part is contiguous and starts at the beginning of the buffer and the output |
| 899 | * part ends at the end of the buffer. This provides the best conditions since |
| 900 | * it allows the largest inputs to be processed at once and ensures that once |
| 901 | * the output data leaves, the whole buffer is available at once. |
| 902 | */ |
Willy Tarreau | fd8d42f | 2018-07-12 10:57:15 +0200 | [diff] [blame] | 903 | static inline void channel_slow_realign(struct channel *chn, char *swap) |
Willy Tarreau | 4cf1300 | 2018-06-06 06:53:15 +0200 | [diff] [blame] | 904 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 905 | return b_slow_realign(&chn->buf, swap, co_data(chn)); |
Willy Tarreau | 4cf1300 | 2018-06-06 06:53:15 +0200 | [diff] [blame] | 906 | } |
| 907 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 908 | /* |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 909 | * Advance the channel buffer's read pointer by <len> bytes. This is useful |
| 910 | * when data have been read directly from the buffer. It is illegal to call |
| 911 | * this function with <len> causing a wrapping at the end of the buffer. It's |
| 912 | * the caller's responsibility to ensure that <len> is never larger than |
Christopher Faulet | 729b5b3 | 2019-02-25 15:50:12 +0100 | [diff] [blame] | 913 | * chn->o. Channel flags WRITE_PARTIAL and WROTE_DATA are set. |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 914 | */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 915 | static inline void co_skip(struct channel *chn, int len) |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 916 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 917 | b_del(&chn->buf, len); |
Olivier Houchard | 08afac0 | 2018-06-22 19:26:39 +0200 | [diff] [blame] | 918 | chn->output -= len; |
Willy Tarreau | 0c7ed5d | 2018-07-10 09:53:31 +0200 | [diff] [blame] | 919 | c_realign_if_empty(chn); |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 920 | |
Willy Tarreau | fb0e920 | 2009-09-23 23:47:55 +0200 | [diff] [blame] | 921 | /* notify that some data was written to the SI from the buffer */ |
Christopher Faulet | 729b5b3 | 2019-02-25 15:50:12 +0100 | [diff] [blame] | 922 | chn->flags |= CF_WRITE_PARTIAL | CF_WROTE_DATA; |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 923 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 924 | |
Christopher Faulet | c6827d5 | 2019-02-25 10:44:51 +0100 | [diff] [blame] | 925 | /* HTX version of co_skip(). This function skips at most <len> bytes from the |
| 926 | * output of the channel <chn>. Depending on how data are stored in <htx> less |
| 927 | * than <len> bytes can be skipped. Channel flags WRITE_PARTIAL and WROTE_DATA |
| 928 | * are set. |
| 929 | */ |
| 930 | static inline void co_htx_skip(struct channel *chn, struct htx *htx, int len) |
| 931 | { |
| 932 | struct htx_ret htxret; |
| 933 | |
| 934 | htxret = htx_drain(htx, len); |
| 935 | if (htxret.ret) { |
| 936 | chn->output -= htxret.ret; |
| 937 | |
| 938 | /* notify that some data was written to the SI from the buffer */ |
| 939 | chn->flags |= CF_WRITE_PARTIAL | CF_WROTE_DATA; |
| 940 | } |
| 941 | } |
Christopher Faulet | 729b5b3 | 2019-02-25 15:50:12 +0100 | [diff] [blame] | 942 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 943 | /* Tries to copy chunk <chunk> into the channel's buffer after length controls. |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 944 | * The chn->o and to_forward pointers are updated. If the channel's input is |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 945 | * closed, -2 is returned. If the block is too large for this buffer, -3 is |
| 946 | * returned. If there is not enough room left in the buffer, -1 is returned. |
| 947 | * Otherwise the number of bytes copied is returned (0 being a valid number). |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 948 | * Channel flag READ_PARTIAL is updated if some data can be transferred. The |
Willy Tarreau | f941cf2 | 2012-08-27 20:53:34 +0200 | [diff] [blame] | 949 | * chunk's length is updated with the number of bytes sent. |
Willy Tarreau | aeac319 | 2009-08-31 08:09:57 +0200 | [diff] [blame] | 950 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 951 | static inline int ci_putchk(struct channel *chn, struct buffer *chunk) |
Willy Tarreau | aeac319 | 2009-08-31 08:09:57 +0200 | [diff] [blame] | 952 | { |
| 953 | int ret; |
| 954 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 955 | ret = ci_putblk(chn, chunk->area, chunk->data); |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 956 | if (ret > 0) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 957 | chunk->data -= ret; |
Willy Tarreau | aeac319 | 2009-08-31 08:09:57 +0200 | [diff] [blame] | 958 | return ret; |
| 959 | } |
| 960 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 961 | /* Tries to copy string <str> at once into the channel's buffer after length |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 962 | * controls. The chn->o and to_forward pointers are updated. If the channel's |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 963 | * input is closed, -2 is returned. If the block is too large for this buffer, |
| 964 | * -3 is returned. If there is not enough room left in the buffer, -1 is |
| 965 | * returned. Otherwise the number of bytes copied is returned (0 being a valid |
| 966 | * number). Channel flag READ_PARTIAL is updated if some data can be |
| 967 | * transferred. |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 968 | */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 969 | static inline int ci_putstr(struct channel *chn, const char *str) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 970 | { |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 971 | return ci_putblk(chn, str, strlen(str)); |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | /* |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 975 | * Return one char from the channel's buffer. If the buffer is empty and the |
| 976 | * channel is closed, return -2. If the buffer is just empty, return -1. The |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 977 | * buffer's pointer is not advanced, it's up to the caller to call co_skip(buf, |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 978 | * 1) when it has consumed the char. Also note that this function respects the |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 979 | * chn->o limit. |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 980 | */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 981 | static inline int co_getchr(struct channel *chn) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 982 | { |
| 983 | /* closed or empty + imminent close = -2; empty = -1 */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 984 | if (unlikely((chn->flags & CF_SHUTW) || channel_is_empty(chn))) { |
| 985 | if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 986 | return -2; |
| 987 | return -1; |
| 988 | } |
Willy Tarreau | 50227f9 | 2018-06-15 15:18:17 +0200 | [diff] [blame] | 989 | return *co_head(chn); |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 990 | } |
| 991 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 992 | |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 993 | #endif /* _PROTO_CHANNEL_H */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 994 | |
| 995 | /* |
| 996 | * Local variables: |
| 997 | * c-indent-level: 8 |
| 998 | * c-basic-offset: 8 |
| 999 | * End: |
| 1000 | */ |