blob: d66fc911b5a8a87599b46fb727081e3eb9f47edc [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreauc7e42382012-08-24 19:22:53 +02002 * include/proto/channel.h
3 * Channel management definitions, macros and inline functions.
Willy Tarreau7c3c5412009-12-13 15:53:05 +01004 *
Willy Tarreaua27dc192014-11-27 22:10:04 +01005 * Copyright (C) 2000-2014 Willy Tarreau - w@1wt.eu
Willy Tarreau7c3c5412009-12-13 15:53:05 +01006 *
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 Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreauc7e42382012-08-24 19:22:53 +020022#ifndef _PROTO_CHANNEL_H
23#define _PROTO_CHANNEL_H
Willy Tarreaubaaee002006-06-26 02:48:02 +020024
Willy Tarreau7341d942007-05-13 19:56:02 +020025#include <stdio.h>
Willy Tarreau0f772532006-12-23 20:51:41 +010026#include <stdlib.h>
Willy Tarreau7341d942007-05-13 19:56:02 +020027#include <string.h>
Willy Tarreau0f772532006-12-23 20:51:41 +010028
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020029#include <common/config.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020030#include <common/chunk.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020031#include <common/ticks.h>
Willy Tarreaufa645582007-06-03 15:59:52 +020032#include <common/time.h>
33
Thierry FOURNIERac836ba2014-12-16 15:41:18 +010034#include <types/channel.h>
Willy Tarreau7c3c5412009-12-13 15:53:05 +010035#include <types/global.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020036#include <types/stream.h>
Willy Tarreau73796532014-11-28 14:10:28 +010037#include <types/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038
Christopher Fauleta73e59b2016-12-09 17:30:18 +010039#include <proto/task.h>
40
Willy Tarreau7341d942007-05-13 19:56:02 +020041/* perform minimal intializations, report 0 in case of error, 1 if OK. */
Willy Tarreau8263d2b2012-08-28 00:06:31 +020042int init_channel();
Willy Tarreau7341d942007-05-13 19:56:02 +020043
Willy Tarreau55a69062012-10-26 00:21:52 +020044unsigned long long __channel_forward(struct channel *chn, unsigned long long bytes);
Willy Tarreau8263d2b2012-08-28 00:06:31 +020045
46/* SI-to-channel functions working with buffers */
Willy Tarreau06d80a92017-10-19 14:32:15 +020047int ci_putblk(struct channel *chn, const char *str, int len);
48struct buffer *ci_swpbuf(struct channel *chn, struct buffer *buf);
49int ci_putchr(struct channel *chn, char c);
Willy Tarreau41ab8682017-10-19 14:58:40 +020050int ci_getline_nc(const struct channel *chn, char **blk1, int *len1, char **blk2, int *len2);
51int ci_getblk_nc(const struct channel *chn, char **blk1, int *len1, char **blk2, int *len2);
Willy Tarreau06d80a92017-10-19 14:32:15 +020052int co_inject(struct channel *chn, const char *msg, int len);
Willy Tarreau41ab8682017-10-19 14:58:40 +020053int co_getline(const struct channel *chn, char *str, int len);
54int co_getblk(const struct channel *chn, char *blk, int len, int offset);
55int co_getline_nc(const struct channel *chn, char **blk1, int *len1, char **blk2, int *len2);
56int co_getblk_nc(const struct channel *chn, char **blk1, int *len1, char **blk2, int *len2);
Thierry FOURNIERca16b032015-02-16 19:26:48 +010057
Willy Tarreau74b08c92010-09-08 17:04:31 +020058
Willy Tarreau87b09662015-04-03 00:22:06 +020059/* returns a pointer to the stream the channel belongs to */
Thierry FOURNIER27929fb2015-09-25 08:36:11 +020060static inline struct stream *chn_strm(const struct channel *chn)
Willy Tarreaud5ccfa32014-12-28 13:03:53 +010061{
62 if (chn->flags & CF_ISRESP)
Willy Tarreau87b09662015-04-03 00:22:06 +020063 return LIST_ELEM(chn, struct stream *, res);
Willy Tarreaud5ccfa32014-12-28 13:03:53 +010064 else
Willy Tarreau87b09662015-04-03 00:22:06 +020065 return LIST_ELEM(chn, struct stream *, req);
Willy Tarreaud5ccfa32014-12-28 13:03:53 +010066}
67
Willy Tarreau73796532014-11-28 14:10:28 +010068/* returns a pointer to the stream interface feeding the channel (producer) */
69static inline struct stream_interface *chn_prod(const struct channel *chn)
70{
Willy Tarreau5decc052014-11-28 14:22:12 +010071 if (chn->flags & CF_ISRESP)
Willy Tarreau87b09662015-04-03 00:22:06 +020072 return &LIST_ELEM(chn, struct stream *, res)->si[1];
Willy Tarreau5decc052014-11-28 14:22:12 +010073 else
Willy Tarreau87b09662015-04-03 00:22:06 +020074 return &LIST_ELEM(chn, struct stream *, req)->si[0];
Willy Tarreau73796532014-11-28 14:10:28 +010075}
76
77/* returns a pointer to the stream interface consuming the channel (producer) */
78static inline struct stream_interface *chn_cons(const struct channel *chn)
79{
Willy Tarreau5decc052014-11-28 14:22:12 +010080 if (chn->flags & CF_ISRESP)
Willy Tarreau87b09662015-04-03 00:22:06 +020081 return &LIST_ELEM(chn, struct stream *, res)->si[0];
Willy Tarreau5decc052014-11-28 14:22:12 +010082 else
Willy Tarreau87b09662015-04-03 00:22:06 +020083 return &LIST_ELEM(chn, struct stream *, req)->si[1];
Willy Tarreau73796532014-11-28 14:10:28 +010084}
85
Willy Tarreau8263d2b2012-08-28 00:06:31 +020086/* Initialize all fields in the channel. */
Willy Tarreau974ced62012-10-12 23:11:02 +020087static inline void channel_init(struct channel *chn)
Willy Tarreau54469402006-07-29 16:59:06 +020088{
Willy Tarreau2a4b5432014-11-24 11:39:34 +010089 chn->buf = &buf_empty;
Willy Tarreau974ced62012-10-12 23:11:02 +020090 chn->to_forward = 0;
Willy Tarreaub145c782014-02-09 17:45:16 +010091 chn->last_read = now_ms;
Willy Tarreau8f39dcd2014-02-09 08:31:49 +010092 chn->xfer_small = chn->xfer_large = 0;
Willy Tarreau974ced62012-10-12 23:11:02 +020093 chn->total = 0;
94 chn->pipe = NULL;
95 chn->analysers = 0;
Willy Tarreau974ced62012-10-12 23:11:02 +020096 chn->flags = 0;
Willy Tarreau54469402006-07-29 16:59:06 +020097}
98
Willy Tarreau55a69062012-10-26 00:21:52 +020099/* Schedule up to <bytes> more bytes to be forwarded via the channel without
100 * notifying the owner task. Any data pending in the buffer are scheduled to be
101 * sent as well, in the limit of the number of bytes to forward. This must be
102 * the only method to use to schedule bytes to be forwarded. If the requested
103 * number is too large, it is automatically adjusted. The number of bytes taken
104 * into account is returned. Directly touching ->to_forward will cause lockups
105 * when buf->o goes down to zero if nobody is ready to push the remaining data.
106 */
107static inline unsigned long long channel_forward(struct channel *chn, unsigned long long bytes)
108{
109 /* hint: avoid comparisons on long long for the fast case, since if the
110 * length does not fit in an unsigned it, it will never be forwarded at
111 * once anyway.
112 */
113 if (bytes <= ~0U) {
114 unsigned int bytes32 = bytes;
115
116 if (bytes32 <= chn->buf->i) {
117 /* OK this amount of bytes might be forwarded at once */
118 b_adv(chn->buf, bytes32);
119 return bytes;
120 }
121 }
122 return __channel_forward(chn, bytes);
123}
124
Willy Tarreau8bf242b2016-05-04 14:05:58 +0200125/* Forwards any input data and marks the channel for permanent forwarding */
126static inline void channel_forward_forever(struct channel *chn)
127{
128 b_adv(chn->buf, chn->buf->i);
129 chn->to_forward = CHN_INFINITE_FORWARD;
130}
131
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200132/*********************************************************************/
133/* These functions are used to compute various channel content sizes */
134/*********************************************************************/
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100135
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200136/* Reports non-zero if the channel is empty, which means both its
137 * buffer and pipe are empty. The construct looks strange but is
138 * jump-less and much more efficient on both 32 and 64-bit than
139 * the boolean test.
140 */
Willy Tarreau41ab8682017-10-19 14:58:40 +0200141static inline unsigned int channel_is_empty(const struct channel *c)
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200142{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200143 return !(c->buf->o | (long)c->pipe);
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200144}
145
Willy Tarreauba0902e2015-01-13 14:39:16 +0100146/* Returns non-zero if the channel is rewritable, which means that the buffer
147 * it is attached to has at least <maxrewrite> bytes immediately available.
148 * This is used to decide when a request or response may be parsed when some
149 * data from a previous exchange might still be present.
Willy Tarreau379357a2013-06-08 12:55:46 +0200150 */
Willy Tarreauba0902e2015-01-13 14:39:16 +0100151static inline int channel_is_rewritable(const struct channel *chn)
Willy Tarreau379357a2013-06-08 12:55:46 +0200152{
153 int rem = chn->buf->size;
154
155 rem -= chn->buf->o;
156 rem -= chn->buf->i;
157 rem -= global.tune.maxrewrite;
158 return rem >= 0;
159}
160
Willy Tarreau9c06ee42015-01-14 16:08:45 +0100161/* Tells whether data are likely to leave the buffer. This is used to know when
162 * we can safely ignore the reserve since we know we cannot retry a connection.
163 * It returns zero if data are blocked, non-zero otherwise.
164 */
165static inline int channel_may_send(const struct channel *chn)
166{
Willy Tarreau73796532014-11-28 14:10:28 +0100167 return chn_cons(chn)->state == SI_ST_EST;
Willy Tarreau9c06ee42015-01-14 16:08:45 +0100168}
169
Willy Tarreau3889fff2015-01-13 20:20:10 +0100170/* Returns non-zero if the channel can still receive data. This is used to
Willy Tarreau379357a2013-06-08 12:55:46 +0200171 * decide when to stop reading into a buffer when we want to ensure that we
172 * leave the reserve untouched after all pending outgoing data are forwarded.
173 * The reserved space is taken into account if ->to_forward indicates that an
174 * end of transfer is close to happen. Note that both ->buf->o and ->to_forward
175 * are considered as available since they're supposed to leave the buffer. The
176 * test is optimized to avoid as many operations as possible for the fast case
Willy Tarreau4b46a3e2016-04-20 20:09:22 +0200177 * and to be used as an "if" condition. Just like channel_recv_limit(), we
178 * never allow to overwrite the reserve until the output stream interface is
179 * connected, otherwise we could spin on a POST with http-send-name-header.
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100180 */
Willy Tarreau3889fff2015-01-13 20:20:10 +0100181static inline int channel_may_recv(const struct channel *chn)
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100182{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200183 int rem = chn->buf->size;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200184
Willy Tarreau4428a292014-11-28 20:54:13 +0100185 if (chn->buf == &buf_empty)
Willy Tarreau3889fff2015-01-13 20:20:10 +0100186 return 1;
Willy Tarreau4428a292014-11-28 20:54:13 +0100187
Willy Tarreau9b28e032012-10-12 23:49:43 +0200188 rem -= chn->buf->o;
189 rem -= chn->buf->i;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200190 if (!rem)
Willy Tarreau3889fff2015-01-13 20:20:10 +0100191 return 0; /* buffer already full */
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200192
Willy Tarreau93dc4782016-04-21 12:12:45 +0200193 if (rem > global.tune.maxrewrite)
194 return 1; /* reserve not yet reached */
Willy Tarreau4b46a3e2016-04-20 20:09:22 +0200195
Willy Tarreau93dc4782016-04-21 12:12:45 +0200196 if (!channel_may_send(chn))
197 return 0; /* don't touch reserve until we can send */
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200198
Willy Tarreau93dc4782016-04-21 12:12:45 +0200199 /* Now we know there's some room left in the reserve and we may
200 * forward. As long as i-to_fwd < size-maxrw, we may still
201 * receive. This is equivalent to i+maxrw-size < to_fwd,
202 * which is logical since i+maxrw-size is what overlaps with
203 * the reserve, and we want to ensure they're covered by scheduled
204 * forwards.
205 */
206 rem = chn->buf->i + global.tune.maxrewrite - chn->buf->size;
207 return rem < 0 || (unsigned int)rem < chn->to_forward;
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100208}
209
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200210/* Returns true if the channel's input is already closed */
Willy Tarreau974ced62012-10-12 23:11:02 +0200211static inline int channel_input_closed(struct channel *chn)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200212{
Willy Tarreau974ced62012-10-12 23:11:02 +0200213 return ((chn->flags & CF_SHUTR) != 0);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200214}
215
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200216/* Returns true if the channel's output is already closed */
Willy Tarreau974ced62012-10-12 23:11:02 +0200217static inline int channel_output_closed(struct channel *chn)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200218{
Willy Tarreau974ced62012-10-12 23:11:02 +0200219 return ((chn->flags & CF_SHUTW) != 0);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200220}
221
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200222/* Check channel timeouts, and set the corresponding flags. The likely/unlikely
223 * have been optimized for fastest normal path. The read/write timeouts are not
224 * set if there was activity on the channel. That way, we don't have to update
225 * the timeout on every I/O. Note that the analyser timeout is always checked.
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200226 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200227static inline void channel_check_timeouts(struct channel *chn)
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200228{
Willy Tarreau974ced62012-10-12 23:11:02 +0200229 if (likely(!(chn->flags & (CF_SHUTR|CF_READ_TIMEOUT|CF_READ_ACTIVITY|CF_READ_NOEXP))) &&
230 unlikely(tick_is_expired(chn->rex, now_ms)))
231 chn->flags |= CF_READ_TIMEOUT;
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200232
Christopher Fauletc5a9d5b2017-11-09 09:36:43 +0100233 if (likely(!(chn->flags & (CF_SHUTW|CF_WRITE_TIMEOUT|CF_WRITE_ACTIVITY|CF_WRITE_EVENT))) &&
Willy Tarreau974ced62012-10-12 23:11:02 +0200234 unlikely(tick_is_expired(chn->wex, now_ms)))
235 chn->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200236
Willy Tarreau974ced62012-10-12 23:11:02 +0200237 if (likely(!(chn->flags & CF_ANA_TIMEOUT)) &&
238 unlikely(tick_is_expired(chn->analyse_exp, now_ms)))
239 chn->flags |= CF_ANA_TIMEOUT;
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200240}
241
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200242/* Erase any content from channel <buf> and adjusts flags accordingly. Note
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100243 * that any spliced data is not affected since we may not have any access to
244 * it.
Willy Tarreaue393fe22008-08-16 22:18:07 +0200245 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200246static inline void channel_erase(struct channel *chn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200247{
Willy Tarreau974ced62012-10-12 23:11:02 +0200248 chn->to_forward = 0;
Willy Tarreau474cf542014-11-24 10:54:47 +0100249 b_reset(chn->buf);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200250}
251
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200252/* marks the channel as "shutdown" ASAP for reads */
Willy Tarreau974ced62012-10-12 23:11:02 +0200253static inline void channel_shutr_now(struct channel *chn)
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200254{
Willy Tarreau974ced62012-10-12 23:11:02 +0200255 chn->flags |= CF_SHUTR_NOW;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200256}
257
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200258/* marks the channel as "shutdown" ASAP for writes */
Willy Tarreau974ced62012-10-12 23:11:02 +0200259static inline void channel_shutw_now(struct channel *chn)
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200260{
Willy Tarreau974ced62012-10-12 23:11:02 +0200261 chn->flags |= CF_SHUTW_NOW;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200262}
263
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200264/* marks the channel as "shutdown" ASAP in both directions */
Willy Tarreau974ced62012-10-12 23:11:02 +0200265static inline void channel_abort(struct channel *chn)
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200266{
Willy Tarreau974ced62012-10-12 23:11:02 +0200267 chn->flags |= CF_SHUTR_NOW | CF_SHUTW_NOW;
268 chn->flags &= ~CF_AUTO_CONNECT;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200269}
270
Willy Tarreau520d95e2009-09-19 21:04:57 +0200271/* allow the consumer to try to establish a new connection. */
Willy Tarreau974ced62012-10-12 23:11:02 +0200272static inline void channel_auto_connect(struct channel *chn)
Willy Tarreau3da77c52008-08-29 09:58:42 +0200273{
Willy Tarreau974ced62012-10-12 23:11:02 +0200274 chn->flags |= CF_AUTO_CONNECT;
Willy Tarreau3da77c52008-08-29 09:58:42 +0200275}
276
Willy Tarreau520d95e2009-09-19 21:04:57 +0200277/* prevent the consumer from trying to establish a new connection, and also
278 * disable auto shutdown forwarding.
279 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200280static inline void channel_dont_connect(struct channel *chn)
Willy Tarreau3da77c52008-08-29 09:58:42 +0200281{
Willy Tarreau974ced62012-10-12 23:11:02 +0200282 chn->flags &= ~(CF_AUTO_CONNECT|CF_AUTO_CLOSE);
Willy Tarreau3da77c52008-08-29 09:58:42 +0200283}
284
Willy Tarreau520d95e2009-09-19 21:04:57 +0200285/* allow the producer to forward shutdown requests */
Willy Tarreau974ced62012-10-12 23:11:02 +0200286static inline void channel_auto_close(struct channel *chn)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100287{
Willy Tarreau974ced62012-10-12 23:11:02 +0200288 chn->flags |= CF_AUTO_CLOSE;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100289}
290
Willy Tarreau520d95e2009-09-19 21:04:57 +0200291/* prevent the producer from forwarding shutdown requests */
Willy Tarreau974ced62012-10-12 23:11:02 +0200292static inline void channel_dont_close(struct channel *chn)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100293{
Willy Tarreau974ced62012-10-12 23:11:02 +0200294 chn->flags &= ~CF_AUTO_CLOSE;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100295}
296
Willy Tarreau90deb182010-01-07 00:20:41 +0100297/* allow the producer to read / poll the input */
Willy Tarreau974ced62012-10-12 23:11:02 +0200298static inline void channel_auto_read(struct channel *chn)
Willy Tarreau90deb182010-01-07 00:20:41 +0100299{
Willy Tarreau974ced62012-10-12 23:11:02 +0200300 chn->flags &= ~CF_DONT_READ;
Willy Tarreau90deb182010-01-07 00:20:41 +0100301}
302
303/* prevent the producer from read / poll the input */
Willy Tarreau974ced62012-10-12 23:11:02 +0200304static inline void channel_dont_read(struct channel *chn)
Willy Tarreau90deb182010-01-07 00:20:41 +0100305{
Willy Tarreau974ced62012-10-12 23:11:02 +0200306 chn->flags |= CF_DONT_READ;
Willy Tarreau90deb182010-01-07 00:20:41 +0100307}
308
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200309
310/*************************************************/
311/* Buffer operations in the context of a channel */
312/*************************************************/
313
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200314
315/* Return the max number of bytes the buffer can contain so that once all the
Willy Tarreau169c4702016-04-20 18:05:17 +0200316 * pending bytes are forwarded, the buffer still has global.tune.maxrewrite
Willy Tarreau974ced62012-10-12 23:11:02 +0200317 * bytes free. The result sits between chn->size - maxrewrite and chn->size.
Willy Tarreau169c4702016-04-20 18:05:17 +0200318 * It is important to mention that if buf->i is already larger than size-maxrw
319 * the condition above cannot be satisfied and the lowest size will be returned
320 * anyway. The principles are the following :
321 * 0) the empty buffer has a limit of zero
322 * 1) a non-connected buffer cannot touch the reserve
323 * 2) infinite forward can always fill the buffer since all data will leave
324 * 3) all output bytes are considered in transit since they're leaving
325 * 4) all input bytes covered by to_forward are considered in transit since
326 * they'll be converted to output bytes.
327 * 5) all input bytes not covered by to_forward as considered remaining
328 * 6) all bytes scheduled to be forwarded minus what is already in the input
329 * buffer will be in transit during future rounds.
330 * 7) 4+5+6 imply that the amount of input bytes (i) is irrelevant to the max
331 * usable length, only to_forward and output count. The difference is
332 * visible when to_forward > i.
333 * 8) the reserve may be covered up to the amount of bytes in transit since
334 * these bytes will only take temporary space.
Willy Tarreau999f6432016-01-25 01:09:11 +0100335 *
Willy Tarreau169c4702016-04-20 18:05:17 +0200336 * A typical buffer looks like this :
Willy Tarreau999f6432016-01-25 01:09:11 +0100337 *
Willy Tarreau169c4702016-04-20 18:05:17 +0200338 * <-------------- max_len ----------->
339 * <---- o ----><----- i -----> <--- 0..maxrewrite --->
340 * +------------+--------------+-------+----------------------+
341 * |////////////|\\\\\\\\\\\\\\|xxxxxxx| reserve |
342 * +------------+--------+-----+-------+----------------------+
343 * <- fwd -> <-avail->
344 *
345 * Or when to_forward > i :
346 *
347 * <-------------- max_len ----------->
348 * <---- o ----><----- i -----> <--- 0..maxrewrite --->
349 * +------------+--------------+-------+----------------------+
350 * |////////////|\\\\\\\\\\\\\\|xxxxxxx| reserve |
351 * +------------+--------+-----+-------+----------------------+
352 * <-avail->
353 * <------------------ fwd ---------------->
354 *
355 * - the amount of buffer bytes in transit is : min(i, fwd) + o
356 * - some scheduled bytes may be in transit (up to fwd - i)
357 * - the reserve is max(0, maxrewrite - transit)
358 * - the maximum usable buffer length is size - reserve.
359 * - the available space is max_len - i - o
360 *
361 * So the formula to compute the buffer's maximum length to protect the reserve
362 * when reading new data is :
363 *
364 * max = size - maxrewrite + min(maxrewrite, transit)
365 * = size - max(maxrewrite - transit, 0)
366 *
367 * But WARNING! The conditions might change during the transfer and it could
368 * very well happen that a buffer would contain more bytes than max_len due to
369 * i+o already walking over the reserve (eg: after a header rewrite), including
370 * i or o alone hitting the limit. So it is critical to always consider that
371 * bounds may have already been crossed and that available space may be negative
372 * for example. Due to this it is perfectly possible for this function to return
373 * a value that is lower than current i+o.
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200374 */
Willy Tarreau3f5096d2015-01-14 20:21:43 +0100375static inline int channel_recv_limit(const struct channel *chn)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200376{
Willy Tarreauef907fe2016-05-03 17:46:24 +0200377 unsigned int transit;
Willy Tarreau999f6432016-01-25 01:09:11 +0100378 int reserve;
379
380 /* return zero if empty */
381 reserve = chn->buf->size;
382 if (chn->buf == &buf_empty)
383 goto end;
384
385 /* return size - maxrewrite if we can't send */
386 reserve = global.tune.maxrewrite;
387 if (unlikely(!channel_may_send(chn)))
388 goto end;
389
Willy Tarreauef907fe2016-05-03 17:46:24 +0200390 /* We need to check what remains of the reserve after o and to_forward
391 * have been transmitted, but they can overflow together and they can
392 * cause an integer underflow in the comparison since both are unsigned
393 * while maxrewrite is signed.
394 * The code below has been verified for being a valid check for this :
395 * - if (o + to_forward) overflow => return size [ large enough ]
396 * - if o + to_forward >= maxrw => return size [ large enough ]
397 * - otherwise return size - (maxrw - (o + to_forward))
Willy Tarreau999f6432016-01-25 01:09:11 +0100398 */
Willy Tarreauef907fe2016-05-03 17:46:24 +0200399 transit = chn->buf->o + chn->to_forward;
400 reserve -= transit;
401 if (transit < chn->to_forward || // addition overflow
402 transit >= (unsigned)global.tune.maxrewrite) // enough transit data
Willy Tarreau169c4702016-04-20 18:05:17 +0200403 return chn->buf->size;
Willy Tarreau999f6432016-01-25 01:09:11 +0100404 end:
405 return chn->buf->size - reserve;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200406}
407
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200408/* Returns the amount of space available at the input of the buffer, taking the
409 * reserved space into account if ->to_forward indicates that an end of transfer
410 * is close to happen. The test is optimized to avoid as many operations as
411 * possible for the fast case.
412 */
Willy Tarreaub5051f82015-01-14 20:25:34 +0100413static inline int channel_recv_max(const struct channel *chn)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200414{
Willy Tarreau27bb0e12015-01-14 15:56:50 +0100415 int ret;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200416
Willy Tarreau3f5096d2015-01-14 20:21:43 +0100417 ret = channel_recv_limit(chn) - chn->buf->i - chn->buf->o;
Willy Tarreau27bb0e12015-01-14 15:56:50 +0100418 if (ret < 0)
419 ret = 0;
420 return ret;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200421}
422
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100423/* Allocates a buffer for channel <chn>, but only if it's guaranteed that it's
424 * not the last available buffer or it's the response buffer. Unless the buffer
425 * is the response buffer, an extra control is made so that we always keep
426 * <tune.buffers.reserved> buffers available after this allocation. Returns 0 in
427 * case of failure, non-zero otherwise.
428 *
429 * If no buffer are available, the requester, represented by <wait> pointer,
430 * will be added in the list of objects waiting for an available buffer.
431 */
432static inline int channel_alloc_buffer(struct channel *chn, struct buffer_wait *wait)
433{
434 int margin = 0;
435
436 if (!(chn->flags & CF_ISRESP))
437 margin = global.tune.reserved_bufs;
438
439 if (b_alloc_margin(&chn->buf, margin) != NULL)
440 return 1;
441
Emeric Bruna1dd2432017-06-21 15:42:52 +0200442 if (LIST_ISEMPTY(&wait->list)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100443 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100444 LIST_ADDQ(&buffer_wq, &wait->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100445 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Emeric Bruna1dd2432017-06-21 15:42:52 +0200446 }
447
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100448 return 0;
449}
450
451/* Releases a possibly allocated buffer for channel <chn>. If it was not
452 * allocated, this function does nothing. Else the buffer is released and we try
453 * to wake up as many streams/applets as possible. */
454static inline void channel_release_buffer(struct channel *chn, struct buffer_wait *wait)
455{
456 if (chn->buf->size && buffer_empty(chn->buf)) {
457 b_free(&chn->buf);
Olivier Houchard673867c2018-05-25 16:58:52 +0200458 offer_buffers(wait->target, tasks_run_queue);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100459 }
460}
461
Willy Tarreau319f7452015-01-14 20:32:59 +0100462/* Truncate any unread data in the channel's buffer, and disable forwarding.
463 * Outgoing data are left intact. This is mainly to be used to send error
464 * messages after existing data.
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200465 */
Willy Tarreau319f7452015-01-14 20:32:59 +0100466static inline void channel_truncate(struct channel *chn)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200467{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200468 if (!chn->buf->o)
Willy Tarreau974ced62012-10-12 23:11:02 +0200469 return channel_erase(chn);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200470
Willy Tarreau974ced62012-10-12 23:11:02 +0200471 chn->to_forward = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200472 if (!chn->buf->i)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200473 return;
474
Willy Tarreau9b28e032012-10-12 23:49:43 +0200475 chn->buf->i = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200476}
477
Willy Tarreaubaaee002006-06-26 02:48:02 +0200478/*
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200479 * Advance the channel buffer's read pointer by <len> bytes. This is useful
480 * when data have been read directly from the buffer. It is illegal to call
481 * this function with <len> causing a wrapping at the end of the buffer. It's
482 * the caller's responsibility to ensure that <len> is never larger than
Willy Tarreau974ced62012-10-12 23:11:02 +0200483 * chn->o. Channel flag WRITE_PARTIAL is set.
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200484 */
Willy Tarreau06d80a92017-10-19 14:32:15 +0200485static inline void co_skip(struct channel *chn, int len)
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200486{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200487 chn->buf->o -= len;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200488
Willy Tarreau5fb38032012-12-16 19:39:09 +0100489 if (buffer_empty(chn->buf))
Willy Tarreau9b28e032012-10-12 23:49:43 +0200490 chn->buf->p = chn->buf->data;
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200491
Willy Tarreaufb0e9202009-09-23 23:47:55 +0200492 /* notify that some data was written to the SI from the buffer */
Christopher Fauletc5a9d5b2017-11-09 09:36:43 +0100493 chn->flags |= CF_WRITE_PARTIAL | CF_WRITE_EVENT;
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200494}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200495
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200496/* Tries to copy chunk <chunk> into the channel's buffer after length controls.
Willy Tarreau974ced62012-10-12 23:11:02 +0200497 * The chn->o and to_forward pointers are updated. If the channel's input is
Willy Tarreau74b08c92010-09-08 17:04:31 +0200498 * closed, -2 is returned. If the block is too large for this buffer, -3 is
499 * returned. If there is not enough room left in the buffer, -1 is returned.
500 * Otherwise the number of bytes copied is returned (0 being a valid number).
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200501 * Channel flag READ_PARTIAL is updated if some data can be transferred. The
Willy Tarreauf941cf22012-08-27 20:53:34 +0200502 * chunk's length is updated with the number of bytes sent.
Willy Tarreauaeac3192009-08-31 08:09:57 +0200503 */
Willy Tarreau06d80a92017-10-19 14:32:15 +0200504static inline int ci_putchk(struct channel *chn, struct chunk *chunk)
Willy Tarreauaeac3192009-08-31 08:09:57 +0200505{
506 int ret;
507
Willy Tarreau06d80a92017-10-19 14:32:15 +0200508 ret = ci_putblk(chn, chunk->str, chunk->len);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200509 if (ret > 0)
510 chunk->len -= ret;
Willy Tarreauaeac3192009-08-31 08:09:57 +0200511 return ret;
512}
513
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200514/* Tries to copy string <str> at once into the channel's buffer after length
Willy Tarreau974ced62012-10-12 23:11:02 +0200515 * controls. The chn->o and to_forward pointers are updated. If the channel's
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200516 * input is closed, -2 is returned. If the block is too large for this buffer,
517 * -3 is returned. If there is not enough room left in the buffer, -1 is
518 * returned. Otherwise the number of bytes copied is returned (0 being a valid
519 * number). Channel flag READ_PARTIAL is updated if some data can be
520 * transferred.
Willy Tarreau74b08c92010-09-08 17:04:31 +0200521 */
Willy Tarreau06d80a92017-10-19 14:32:15 +0200522static inline int ci_putstr(struct channel *chn, const char *str)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200523{
Willy Tarreau06d80a92017-10-19 14:32:15 +0200524 return ci_putblk(chn, str, strlen(str));
Willy Tarreau74b08c92010-09-08 17:04:31 +0200525}
526
527/*
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200528 * Return one char from the channel's buffer. If the buffer is empty and the
529 * channel is closed, return -2. If the buffer is just empty, return -1. The
Willy Tarreau06d80a92017-10-19 14:32:15 +0200530 * buffer's pointer is not advanced, it's up to the caller to call co_skip(buf,
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200531 * 1) when it has consumed the char. Also note that this function respects the
Willy Tarreau974ced62012-10-12 23:11:02 +0200532 * chn->o limit.
Willy Tarreau74b08c92010-09-08 17:04:31 +0200533 */
Willy Tarreau06d80a92017-10-19 14:32:15 +0200534static inline int co_getchr(struct channel *chn)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200535{
536 /* closed or empty + imminent close = -2; empty = -1 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200537 if (unlikely((chn->flags & CF_SHUTW) || channel_is_empty(chn))) {
538 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreau74b08c92010-09-08 17:04:31 +0200539 return -2;
540 return -1;
541 }
Willy Tarreau9b28e032012-10-12 23:49:43 +0200542 return *buffer_wrap_sub(chn->buf, chn->buf->p - chn->buf->o);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200543}
544
Willy Tarreaubaaee002006-06-26 02:48:02 +0200545
Willy Tarreauc7e42382012-08-24 19:22:53 +0200546#endif /* _PROTO_CHANNEL_H */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200547
548/*
549 * Local variables:
550 * c-indent-level: 8
551 * c-basic-offset: 8
552 * End:
553 */