blob: 848ab02bbbd04efc2b9679186a5c9cff233df33d [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
Willy Tarreau7341d942007-05-13 19:56:02 +020039/* perform minimal intializations, report 0 in case of error, 1 if OK. */
Willy Tarreau8263d2b2012-08-28 00:06:31 +020040int init_channel();
Willy Tarreau7341d942007-05-13 19:56:02 +020041
Willy Tarreau55a69062012-10-26 00:21:52 +020042unsigned long long __channel_forward(struct channel *chn, unsigned long long bytes);
Willy Tarreau8263d2b2012-08-28 00:06:31 +020043
44/* SI-to-channel functions working with buffers */
Willy Tarreau974ced62012-10-12 23:11:02 +020045int bi_putblk(struct channel *chn, const char *str, int len);
Willy Tarreaub034b252014-12-08 18:14:53 +010046struct buffer *bi_swpbuf(struct channel *chn, struct buffer *buf);
Willy Tarreau974ced62012-10-12 23:11:02 +020047int bi_putchr(struct channel *chn, char c);
Thierry FOURNIERca16b032015-02-16 19:26:48 +010048int bi_getline_nc(struct channel *chn, char **blk1, int *len1, char **blk2, int *len2);
49int bi_getblk_nc(struct channel *chn, char **blk1, int *len1, char **blk2, int *len2);
Willy Tarreau974ced62012-10-12 23:11:02 +020050int bo_inject(struct channel *chn, const char *msg, int len);
51int bo_getline(struct channel *chn, char *str, int len);
52int bo_getblk(struct channel *chn, char *blk, int len, int offset);
Thierry FOURNIERca16b032015-02-16 19:26:48 +010053int bo_getline_nc(struct channel *chn, char **blk1, int *len1, char **blk2, int *len2);
54int bo_getblk_nc(struct channel *chn, char **blk1, int *len1, char **blk2, int *len2);
55
Willy Tarreau74b08c92010-09-08 17:04:31 +020056
Willy Tarreau87b09662015-04-03 00:22:06 +020057/* returns a pointer to the stream the channel belongs to */
Thierry FOURNIER27929fb2015-09-25 08:36:11 +020058static inline struct stream *chn_strm(const struct channel *chn)
Willy Tarreaud5ccfa32014-12-28 13:03:53 +010059{
60 if (chn->flags & CF_ISRESP)
Willy Tarreau87b09662015-04-03 00:22:06 +020061 return LIST_ELEM(chn, struct stream *, res);
Willy Tarreaud5ccfa32014-12-28 13:03:53 +010062 else
Willy Tarreau87b09662015-04-03 00:22:06 +020063 return LIST_ELEM(chn, struct stream *, req);
Willy Tarreaud5ccfa32014-12-28 13:03:53 +010064}
65
Willy Tarreau73796532014-11-28 14:10:28 +010066/* returns a pointer to the stream interface feeding the channel (producer) */
67static inline struct stream_interface *chn_prod(const struct channel *chn)
68{
Willy Tarreau5decc052014-11-28 14:22:12 +010069 if (chn->flags & CF_ISRESP)
Willy Tarreau87b09662015-04-03 00:22:06 +020070 return &LIST_ELEM(chn, struct stream *, res)->si[1];
Willy Tarreau5decc052014-11-28 14:22:12 +010071 else
Willy Tarreau87b09662015-04-03 00:22:06 +020072 return &LIST_ELEM(chn, struct stream *, req)->si[0];
Willy Tarreau73796532014-11-28 14:10:28 +010073}
74
75/* returns a pointer to the stream interface consuming the channel (producer) */
76static inline struct stream_interface *chn_cons(const struct channel *chn)
77{
Willy Tarreau5decc052014-11-28 14:22:12 +010078 if (chn->flags & CF_ISRESP)
Willy Tarreau87b09662015-04-03 00:22:06 +020079 return &LIST_ELEM(chn, struct stream *, res)->si[0];
Willy Tarreau5decc052014-11-28 14:22:12 +010080 else
Willy Tarreau87b09662015-04-03 00:22:06 +020081 return &LIST_ELEM(chn, struct stream *, req)->si[1];
Willy Tarreau73796532014-11-28 14:10:28 +010082}
83
Willy Tarreau8263d2b2012-08-28 00:06:31 +020084/* Initialize all fields in the channel. */
Willy Tarreau974ced62012-10-12 23:11:02 +020085static inline void channel_init(struct channel *chn)
Willy Tarreau54469402006-07-29 16:59:06 +020086{
Willy Tarreau2a4b5432014-11-24 11:39:34 +010087 chn->buf = &buf_empty;
Willy Tarreau974ced62012-10-12 23:11:02 +020088 chn->to_forward = 0;
Willy Tarreaub145c782014-02-09 17:45:16 +010089 chn->last_read = now_ms;
Willy Tarreau8f39dcd2014-02-09 08:31:49 +010090 chn->xfer_small = chn->xfer_large = 0;
Willy Tarreau974ced62012-10-12 23:11:02 +020091 chn->total = 0;
92 chn->pipe = NULL;
93 chn->analysers = 0;
Willy Tarreau974ced62012-10-12 23:11:02 +020094 chn->flags = 0;
Willy Tarreau54469402006-07-29 16:59:06 +020095}
96
Willy Tarreau55a69062012-10-26 00:21:52 +020097/* Schedule up to <bytes> more bytes to be forwarded via the channel without
98 * notifying the owner task. Any data pending in the buffer are scheduled to be
99 * sent as well, in the limit of the number of bytes to forward. This must be
100 * the only method to use to schedule bytes to be forwarded. If the requested
101 * number is too large, it is automatically adjusted. The number of bytes taken
102 * into account is returned. Directly touching ->to_forward will cause lockups
103 * when buf->o goes down to zero if nobody is ready to push the remaining data.
104 */
105static inline unsigned long long channel_forward(struct channel *chn, unsigned long long bytes)
106{
107 /* hint: avoid comparisons on long long for the fast case, since if the
108 * length does not fit in an unsigned it, it will never be forwarded at
109 * once anyway.
110 */
111 if (bytes <= ~0U) {
112 unsigned int bytes32 = bytes;
113
114 if (bytes32 <= chn->buf->i) {
115 /* OK this amount of bytes might be forwarded at once */
116 b_adv(chn->buf, bytes32);
117 return bytes;
118 }
119 }
120 return __channel_forward(chn, bytes);
121}
122
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200123/*********************************************************************/
124/* These functions are used to compute various channel content sizes */
125/*********************************************************************/
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100126
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200127/* Reports non-zero if the channel is empty, which means both its
128 * buffer and pipe are empty. The construct looks strange but is
129 * jump-less and much more efficient on both 32 and 64-bit than
130 * the boolean test.
131 */
132static inline unsigned int channel_is_empty(struct channel *c)
133{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200134 return !(c->buf->o | (long)c->pipe);
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200135}
136
Willy Tarreauba0902e2015-01-13 14:39:16 +0100137/* Returns non-zero if the channel is rewritable, which means that the buffer
138 * it is attached to has at least <maxrewrite> bytes immediately available.
139 * This is used to decide when a request or response may be parsed when some
140 * data from a previous exchange might still be present.
Willy Tarreau379357a2013-06-08 12:55:46 +0200141 */
Willy Tarreauba0902e2015-01-13 14:39:16 +0100142static inline int channel_is_rewritable(const struct channel *chn)
Willy Tarreau379357a2013-06-08 12:55:46 +0200143{
144 int rem = chn->buf->size;
145
146 rem -= chn->buf->o;
147 rem -= chn->buf->i;
148 rem -= global.tune.maxrewrite;
149 return rem >= 0;
150}
151
Willy Tarreau9c06ee42015-01-14 16:08:45 +0100152/* Tells whether data are likely to leave the buffer. This is used to know when
153 * we can safely ignore the reserve since we know we cannot retry a connection.
154 * It returns zero if data are blocked, non-zero otherwise.
155 */
156static inline int channel_may_send(const struct channel *chn)
157{
Willy Tarreau73796532014-11-28 14:10:28 +0100158 return chn_cons(chn)->state == SI_ST_EST;
Willy Tarreau9c06ee42015-01-14 16:08:45 +0100159}
160
Willy Tarreau3889fff2015-01-13 20:20:10 +0100161/* Returns non-zero if the channel can still receive data. This is used to
Willy Tarreau379357a2013-06-08 12:55:46 +0200162 * decide when to stop reading into a buffer when we want to ensure that we
163 * leave the reserve untouched after all pending outgoing data are forwarded.
164 * The reserved space is taken into account if ->to_forward indicates that an
165 * end of transfer is close to happen. Note that both ->buf->o and ->to_forward
166 * are considered as available since they're supposed to leave the buffer. The
167 * test is optimized to avoid as many operations as possible for the fast case
168 * and to be used as an "if" condition.
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100169 */
Willy Tarreau3889fff2015-01-13 20:20:10 +0100170static inline int channel_may_recv(const struct channel *chn)
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100171{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200172 int rem = chn->buf->size;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200173
Willy Tarreau4428a292014-11-28 20:54:13 +0100174 if (chn->buf == &buf_empty)
Willy Tarreau3889fff2015-01-13 20:20:10 +0100175 return 1;
Willy Tarreau4428a292014-11-28 20:54:13 +0100176
Willy Tarreau9b28e032012-10-12 23:49:43 +0200177 rem -= chn->buf->o;
178 rem -= chn->buf->i;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200179 if (!rem)
Willy Tarreau3889fff2015-01-13 20:20:10 +0100180 return 0; /* buffer already full */
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200181
Willy Tarreaubb3f9942015-01-13 19:07:23 +0100182 /* now we know there's some room left, verify if we're touching
183 * the reserve with some permanent input data.
184 */
185 if (chn->to_forward >= chn->buf->i ||
186 (CHN_INFINITE_FORWARD < MAX_RANGE(typeof(chn->buf->i)) && // just there to ensure gcc
187 chn->to_forward == CHN_INFINITE_FORWARD)) // avoids the useless second
Willy Tarreau3889fff2015-01-13 20:20:10 +0100188 return 1; // test whenever possible
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200189
190 rem -= global.tune.maxrewrite;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200191 rem += chn->buf->o;
Willy Tarreau974ced62012-10-12 23:11:02 +0200192 rem += chn->to_forward;
Willy Tarreau3889fff2015-01-13 20:20:10 +0100193 return rem > 0;
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100194}
195
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200196/* Returns true if the channel's input is already closed */
Willy Tarreau974ced62012-10-12 23:11:02 +0200197static inline int channel_input_closed(struct channel *chn)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200198{
Willy Tarreau974ced62012-10-12 23:11:02 +0200199 return ((chn->flags & CF_SHUTR) != 0);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200200}
201
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200202/* Returns true if the channel's output is already closed */
Willy Tarreau974ced62012-10-12 23:11:02 +0200203static inline int channel_output_closed(struct channel *chn)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200204{
Willy Tarreau974ced62012-10-12 23:11:02 +0200205 return ((chn->flags & CF_SHUTW) != 0);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200206}
207
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200208/* Check channel timeouts, and set the corresponding flags. The likely/unlikely
209 * have been optimized for fastest normal path. The read/write timeouts are not
210 * set if there was activity on the channel. That way, we don't have to update
211 * the timeout on every I/O. Note that the analyser timeout is always checked.
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200212 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200213static inline void channel_check_timeouts(struct channel *chn)
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200214{
Willy Tarreau974ced62012-10-12 23:11:02 +0200215 if (likely(!(chn->flags & (CF_SHUTR|CF_READ_TIMEOUT|CF_READ_ACTIVITY|CF_READ_NOEXP))) &&
216 unlikely(tick_is_expired(chn->rex, now_ms)))
217 chn->flags |= CF_READ_TIMEOUT;
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200218
Willy Tarreau974ced62012-10-12 23:11:02 +0200219 if (likely(!(chn->flags & (CF_SHUTW|CF_WRITE_TIMEOUT|CF_WRITE_ACTIVITY))) &&
220 unlikely(tick_is_expired(chn->wex, now_ms)))
221 chn->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200222
Willy Tarreau974ced62012-10-12 23:11:02 +0200223 if (likely(!(chn->flags & CF_ANA_TIMEOUT)) &&
224 unlikely(tick_is_expired(chn->analyse_exp, now_ms)))
225 chn->flags |= CF_ANA_TIMEOUT;
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200226}
227
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200228/* Erase any content from channel <buf> and adjusts flags accordingly. Note
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100229 * that any spliced data is not affected since we may not have any access to
230 * it.
Willy Tarreaue393fe22008-08-16 22:18:07 +0200231 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200232static inline void channel_erase(struct channel *chn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200233{
Willy Tarreau974ced62012-10-12 23:11:02 +0200234 chn->to_forward = 0;
Willy Tarreau474cf542014-11-24 10:54:47 +0100235 b_reset(chn->buf);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200236}
237
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200238/* marks the channel as "shutdown" ASAP for reads */
Willy Tarreau974ced62012-10-12 23:11:02 +0200239static inline void channel_shutr_now(struct channel *chn)
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200240{
Willy Tarreau974ced62012-10-12 23:11:02 +0200241 chn->flags |= CF_SHUTR_NOW;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200242}
243
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200244/* marks the channel as "shutdown" ASAP for writes */
Willy Tarreau974ced62012-10-12 23:11:02 +0200245static inline void channel_shutw_now(struct channel *chn)
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200246{
Willy Tarreau974ced62012-10-12 23:11:02 +0200247 chn->flags |= CF_SHUTW_NOW;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200248}
249
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200250/* marks the channel as "shutdown" ASAP in both directions */
Willy Tarreau974ced62012-10-12 23:11:02 +0200251static inline void channel_abort(struct channel *chn)
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200252{
Willy Tarreau974ced62012-10-12 23:11:02 +0200253 chn->flags |= CF_SHUTR_NOW | CF_SHUTW_NOW;
254 chn->flags &= ~CF_AUTO_CONNECT;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200255}
256
Willy Tarreau520d95e2009-09-19 21:04:57 +0200257/* allow the consumer to try to establish a new connection. */
Willy Tarreau974ced62012-10-12 23:11:02 +0200258static inline void channel_auto_connect(struct channel *chn)
Willy Tarreau3da77c52008-08-29 09:58:42 +0200259{
Willy Tarreau974ced62012-10-12 23:11:02 +0200260 chn->flags |= CF_AUTO_CONNECT;
Willy Tarreau3da77c52008-08-29 09:58:42 +0200261}
262
Willy Tarreau520d95e2009-09-19 21:04:57 +0200263/* prevent the consumer from trying to establish a new connection, and also
264 * disable auto shutdown forwarding.
265 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200266static inline void channel_dont_connect(struct channel *chn)
Willy Tarreau3da77c52008-08-29 09:58:42 +0200267{
Willy Tarreau974ced62012-10-12 23:11:02 +0200268 chn->flags &= ~(CF_AUTO_CONNECT|CF_AUTO_CLOSE);
Willy Tarreau3da77c52008-08-29 09:58:42 +0200269}
270
Willy Tarreau520d95e2009-09-19 21:04:57 +0200271/* allow the producer to forward shutdown requests */
Willy Tarreau974ced62012-10-12 23:11:02 +0200272static inline void channel_auto_close(struct channel *chn)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100273{
Willy Tarreau974ced62012-10-12 23:11:02 +0200274 chn->flags |= CF_AUTO_CLOSE;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100275}
276
Willy Tarreau520d95e2009-09-19 21:04:57 +0200277/* prevent the producer from forwarding shutdown requests */
Willy Tarreau974ced62012-10-12 23:11:02 +0200278static inline void channel_dont_close(struct channel *chn)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100279{
Willy Tarreau974ced62012-10-12 23:11:02 +0200280 chn->flags &= ~CF_AUTO_CLOSE;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100281}
282
Willy Tarreau90deb182010-01-07 00:20:41 +0100283/* allow the producer to read / poll the input */
Willy Tarreau974ced62012-10-12 23:11:02 +0200284static inline void channel_auto_read(struct channel *chn)
Willy Tarreau90deb182010-01-07 00:20:41 +0100285{
Willy Tarreau974ced62012-10-12 23:11:02 +0200286 chn->flags &= ~CF_DONT_READ;
Willy Tarreau90deb182010-01-07 00:20:41 +0100287}
288
289/* prevent the producer from read / poll the input */
Willy Tarreau974ced62012-10-12 23:11:02 +0200290static inline void channel_dont_read(struct channel *chn)
Willy Tarreau90deb182010-01-07 00:20:41 +0100291{
Willy Tarreau974ced62012-10-12 23:11:02 +0200292 chn->flags |= CF_DONT_READ;
Willy Tarreau90deb182010-01-07 00:20:41 +0100293}
294
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200295
296/*************************************************/
297/* Buffer operations in the context of a channel */
298/*************************************************/
299
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200300
301/* Return the max number of bytes the buffer can contain so that once all the
Willy Tarreau3f5096d2015-01-14 20:21:43 +0100302 * data in transit are forwarded, the buffer still has global.tune.maxrewrite
Willy Tarreau974ced62012-10-12 23:11:02 +0200303 * bytes free. The result sits between chn->size - maxrewrite and chn->size.
Willy Tarreau999f6432016-01-25 01:09:11 +0100304 * The principle is the following :
305 * - the empty buffer has a limit of zero
306 * - a non-connected buffer cannot touch the reserve
307 * - infinite forward can fill the buffer
308 * - all output bytes are ignored, they're leaving
309 * - all input bytes covered by to_forward are considered in transit and
310 * virtually don't take room
311 * - the reserve may be covered up to the min of (fwd-transit) since these
312 * bytes will be in transit later thus will only take temporary space.
313 *
314 * So the formula is to return this limit is :
315 * size - maxrewrite + min(fwd - min(i, fwd), maxrewrite)
316 * = size - maxrewrite + min( min(fwd - i, 0), maxrewrite)
317 *
318 * The code isn't written the most obvious way because we help the compiler
319 * optimise it as it cannot guess how to factor the result out. The most common
320 * path is jumpless.
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200321 */
Willy Tarreau3f5096d2015-01-14 20:21:43 +0100322static inline int channel_recv_limit(const struct channel *chn)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200323{
Willy Tarreau999f6432016-01-25 01:09:11 +0100324 int transit;
325 int reserve;
326
327 /* return zero if empty */
328 reserve = chn->buf->size;
329 if (chn->buf == &buf_empty)
330 goto end;
331
332 /* return size - maxrewrite if we can't send */
333 reserve = global.tune.maxrewrite;
334 if (unlikely(!channel_may_send(chn)))
335 goto end;
336
337 /* This apparently tricky check is just a hint to let the compiler
338 * optimize all this code away as long as we don't change the types.
339 */
340 reserve = 0;
341 if (CHN_INFINITE_FORWARD < MAX_RANGE(typeof(chn->buf->i)) &&
342 chn->to_forward == CHN_INFINITE_FORWARD)
343 goto end;
344
345 transit = chn->to_forward - chn->buf->i;
346 if (transit < 0)
347 transit = 0;
348
349 reserve = global.tune.maxrewrite - transit;
350 if (reserve < 0)
351 reserve = 0;
352 end:
353 return chn->buf->size - reserve;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200354}
355
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200356/* Returns the amount of space available at the input of the buffer, taking the
357 * reserved space into account if ->to_forward indicates that an end of transfer
358 * is close to happen. The test is optimized to avoid as many operations as
359 * possible for the fast case.
360 */
Willy Tarreaub5051f82015-01-14 20:25:34 +0100361static inline int channel_recv_max(const struct channel *chn)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200362{
Willy Tarreau27bb0e12015-01-14 15:56:50 +0100363 int ret;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200364
Willy Tarreau3f5096d2015-01-14 20:21:43 +0100365 ret = channel_recv_limit(chn) - chn->buf->i - chn->buf->o;
Willy Tarreau27bb0e12015-01-14 15:56:50 +0100366 if (ret < 0)
367 ret = 0;
368 return ret;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200369}
370
Willy Tarreau319f7452015-01-14 20:32:59 +0100371/* Truncate any unread data in the channel's buffer, and disable forwarding.
372 * Outgoing data are left intact. This is mainly to be used to send error
373 * messages after existing data.
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200374 */
Willy Tarreau319f7452015-01-14 20:32:59 +0100375static inline void channel_truncate(struct channel *chn)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200376{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200377 if (!chn->buf->o)
Willy Tarreau974ced62012-10-12 23:11:02 +0200378 return channel_erase(chn);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200379
Willy Tarreau974ced62012-10-12 23:11:02 +0200380 chn->to_forward = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200381 if (!chn->buf->i)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200382 return;
383
Willy Tarreau9b28e032012-10-12 23:49:43 +0200384 chn->buf->i = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200385}
386
Willy Tarreaubaaee002006-06-26 02:48:02 +0200387/*
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200388 * Advance the channel buffer's read pointer by <len> bytes. This is useful
389 * when data have been read directly from the buffer. It is illegal to call
390 * this function with <len> causing a wrapping at the end of the buffer. It's
391 * the caller's responsibility to ensure that <len> is never larger than
Willy Tarreau974ced62012-10-12 23:11:02 +0200392 * chn->o. Channel flag WRITE_PARTIAL is set.
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200393 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200394static inline void bo_skip(struct channel *chn, int len)
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200395{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200396 chn->buf->o -= len;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200397
Willy Tarreau5fb38032012-12-16 19:39:09 +0100398 if (buffer_empty(chn->buf))
Willy Tarreau9b28e032012-10-12 23:49:43 +0200399 chn->buf->p = chn->buf->data;
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200400
Willy Tarreaufb0e9202009-09-23 23:47:55 +0200401 /* notify that some data was written to the SI from the buffer */
Willy Tarreau974ced62012-10-12 23:11:02 +0200402 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200403}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200404
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200405/* Tries to copy chunk <chunk> into the channel's buffer after length controls.
Willy Tarreau974ced62012-10-12 23:11:02 +0200406 * The chn->o and to_forward pointers are updated. If the channel's input is
Willy Tarreau74b08c92010-09-08 17:04:31 +0200407 * closed, -2 is returned. If the block is too large for this buffer, -3 is
408 * returned. If there is not enough room left in the buffer, -1 is returned.
409 * Otherwise the number of bytes copied is returned (0 being a valid number).
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200410 * Channel flag READ_PARTIAL is updated if some data can be transferred. The
Willy Tarreauf941cf22012-08-27 20:53:34 +0200411 * chunk's length is updated with the number of bytes sent.
Willy Tarreauaeac3192009-08-31 08:09:57 +0200412 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200413static inline int bi_putchk(struct channel *chn, struct chunk *chunk)
Willy Tarreauaeac3192009-08-31 08:09:57 +0200414{
415 int ret;
416
Willy Tarreau974ced62012-10-12 23:11:02 +0200417 ret = bi_putblk(chn, chunk->str, chunk->len);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200418 if (ret > 0)
419 chunk->len -= ret;
Willy Tarreauaeac3192009-08-31 08:09:57 +0200420 return ret;
421}
422
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200423/* Tries to copy string <str> at once into the channel's buffer after length
Willy Tarreau974ced62012-10-12 23:11:02 +0200424 * controls. The chn->o and to_forward pointers are updated. If the channel's
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200425 * input is closed, -2 is returned. If the block is too large for this buffer,
426 * -3 is returned. If there is not enough room left in the buffer, -1 is
427 * returned. Otherwise the number of bytes copied is returned (0 being a valid
428 * number). Channel flag READ_PARTIAL is updated if some data can be
429 * transferred.
Willy Tarreau74b08c92010-09-08 17:04:31 +0200430 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200431static inline int bi_putstr(struct channel *chn, const char *str)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200432{
Willy Tarreau974ced62012-10-12 23:11:02 +0200433 return bi_putblk(chn, str, strlen(str));
Willy Tarreau74b08c92010-09-08 17:04:31 +0200434}
435
436/*
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200437 * Return one char from the channel's buffer. If the buffer is empty and the
438 * channel is closed, return -2. If the buffer is just empty, return -1. The
439 * buffer's pointer is not advanced, it's up to the caller to call bo_skip(buf,
440 * 1) when it has consumed the char. Also note that this function respects the
Willy Tarreau974ced62012-10-12 23:11:02 +0200441 * chn->o limit.
Willy Tarreau74b08c92010-09-08 17:04:31 +0200442 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200443static inline int bo_getchr(struct channel *chn)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200444{
445 /* closed or empty + imminent close = -2; empty = -1 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200446 if (unlikely((chn->flags & CF_SHUTW) || channel_is_empty(chn))) {
447 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreau74b08c92010-09-08 17:04:31 +0200448 return -2;
449 return -1;
450 }
Willy Tarreau9b28e032012-10-12 23:49:43 +0200451 return *buffer_wrap_sub(chn->buf, chn->buf->p - chn->buf->o);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200452}
453
Willy Tarreaubaaee002006-06-26 02:48:02 +0200454
Willy Tarreauc7e42382012-08-24 19:22:53 +0200455#endif /* _PROTO_CHANNEL_H */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200456
457/*
458 * Local variables:
459 * c-indent-level: 8
460 * c-basic-offset: 8
461 * End:
462 */