blob: f6b046991df7f1455392e52330694087f64c5b35 [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 Tarreau9dab5fc2012-05-07 11:56:55 +02005 * Copyright (C) 2000-2012 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 Tarreau7341d942007-05-13 19:56:02 +020031#include <common/memory.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020032#include <common/ticks.h>
Willy Tarreaufa645582007-06-03 15:59:52 +020033#include <common/time.h>
34
Thierry FOURNIERac836ba2014-12-16 15:41:18 +010035#include <types/channel.h>
Willy Tarreau7c3c5412009-12-13 15:53:05 +010036#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020037
Willy Tarreau8263d2b2012-08-28 00:06:31 +020038extern struct pool_head *pool2_channel;
Willy Tarreau7341d942007-05-13 19:56:02 +020039
40/* perform minimal intializations, report 0 in case of error, 1 if OK. */
Willy Tarreau8263d2b2012-08-28 00:06:31 +020041int init_channel();
Willy Tarreau7341d942007-05-13 19:56:02 +020042
Willy Tarreau55a69062012-10-26 00:21:52 +020043unsigned long long __channel_forward(struct channel *chn, unsigned long long bytes);
Willy Tarreau8263d2b2012-08-28 00:06:31 +020044
45/* SI-to-channel functions working with buffers */
Willy Tarreau974ced62012-10-12 23:11:02 +020046int bi_putblk(struct channel *chn, const char *str, int len);
Willy Tarreaub034b252014-12-08 18:14:53 +010047struct buffer *bi_swpbuf(struct channel *chn, struct buffer *buf);
Willy Tarreau974ced62012-10-12 23:11:02 +020048int bi_putchr(struct channel *chn, char c);
Thierry FOURNIERca16b032015-02-16 19:26:48 +010049int bi_getline_nc(struct channel *chn, char **blk1, int *len1, char **blk2, int *len2);
50int bi_getblk_nc(struct channel *chn, char **blk1, int *len1, char **blk2, int *len2);
Willy Tarreau974ced62012-10-12 23:11:02 +020051int bo_inject(struct channel *chn, const char *msg, int len);
52int bo_getline(struct channel *chn, char *str, int len);
53int bo_getblk(struct channel *chn, char *blk, int len, int offset);
Thierry FOURNIERca16b032015-02-16 19:26:48 +010054int bo_getline_nc(struct channel *chn, char **blk1, int *len1, char **blk2, int *len2);
55int bo_getblk_nc(struct channel *chn, char **blk1, int *len1, char **blk2, int *len2);
56
Willy Tarreau74b08c92010-09-08 17:04:31 +020057
Willy Tarreau8263d2b2012-08-28 00:06:31 +020058/* Initialize all fields in the channel. */
Willy Tarreau974ced62012-10-12 23:11:02 +020059static inline void channel_init(struct channel *chn)
Willy Tarreau54469402006-07-29 16:59:06 +020060{
Willy Tarreau2a4b5432014-11-24 11:39:34 +010061 chn->buf = &buf_empty;
Willy Tarreau974ced62012-10-12 23:11:02 +020062 chn->to_forward = 0;
Willy Tarreaub145c782014-02-09 17:45:16 +010063 chn->last_read = now_ms;
Willy Tarreau8f39dcd2014-02-09 08:31:49 +010064 chn->xfer_small = chn->xfer_large = 0;
Willy Tarreau974ced62012-10-12 23:11:02 +020065 chn->total = 0;
66 chn->pipe = NULL;
67 chn->analysers = 0;
68 chn->cons = NULL;
69 chn->flags = 0;
Willy Tarreau54469402006-07-29 16:59:06 +020070}
71
Willy Tarreau55a69062012-10-26 00:21:52 +020072/* Schedule up to <bytes> more bytes to be forwarded via the channel without
73 * notifying the owner task. Any data pending in the buffer are scheduled to be
74 * sent as well, in the limit of the number of bytes to forward. This must be
75 * the only method to use to schedule bytes to be forwarded. If the requested
76 * number is too large, it is automatically adjusted. The number of bytes taken
77 * into account is returned. Directly touching ->to_forward will cause lockups
78 * when buf->o goes down to zero if nobody is ready to push the remaining data.
79 */
80static inline unsigned long long channel_forward(struct channel *chn, unsigned long long bytes)
81{
82 /* hint: avoid comparisons on long long for the fast case, since if the
83 * length does not fit in an unsigned it, it will never be forwarded at
84 * once anyway.
85 */
86 if (bytes <= ~0U) {
87 unsigned int bytes32 = bytes;
88
89 if (bytes32 <= chn->buf->i) {
90 /* OK this amount of bytes might be forwarded at once */
91 b_adv(chn->buf, bytes32);
92 return bytes;
93 }
94 }
95 return __channel_forward(chn, bytes);
96}
97
Willy Tarreau8263d2b2012-08-28 00:06:31 +020098/*********************************************************************/
99/* These functions are used to compute various channel content sizes */
100/*********************************************************************/
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100101
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200102/* Reports non-zero if the channel is empty, which means both its
103 * buffer and pipe are empty. The construct looks strange but is
104 * jump-less and much more efficient on both 32 and 64-bit than
105 * the boolean test.
106 */
107static inline unsigned int channel_is_empty(struct channel *c)
108{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200109 return !(c->buf->o | (long)c->pipe);
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200110}
111
Willy Tarreauba0902e2015-01-13 14:39:16 +0100112/* Returns non-zero if the channel is rewritable, which means that the buffer
113 * it is attached to has at least <maxrewrite> bytes immediately available.
114 * This is used to decide when a request or response may be parsed when some
115 * data from a previous exchange might still be present.
Willy Tarreau379357a2013-06-08 12:55:46 +0200116 */
Willy Tarreauba0902e2015-01-13 14:39:16 +0100117static inline int channel_is_rewritable(const struct channel *chn)
Willy Tarreau379357a2013-06-08 12:55:46 +0200118{
119 int rem = chn->buf->size;
120
121 rem -= chn->buf->o;
122 rem -= chn->buf->i;
123 rem -= global.tune.maxrewrite;
124 return rem >= 0;
125}
126
Willy Tarreau9c06ee42015-01-14 16:08:45 +0100127/* Tells whether data are likely to leave the buffer. This is used to know when
128 * we can safely ignore the reserve since we know we cannot retry a connection.
129 * It returns zero if data are blocked, non-zero otherwise.
130 */
131static inline int channel_may_send(const struct channel *chn)
132{
133 return chn->cons->state == SI_ST_EST;
134}
135
Willy Tarreau1a4484d2015-01-13 20:09:54 +0100136/* Returns the amount of bytes from the channel that are already scheduled for
137 * leaving (buf->o) or that are still part of the input and expected to be sent
138 * soon as covered by to_forward. This is useful to know by how much we can
Willy Tarreau9c06ee42015-01-14 16:08:45 +0100139 * shrink the rewrite reserve during forwards. Buffer data are not considered
140 * in transit until the channel is connected, so that the reserve remains
141 * protected.
Willy Tarreau1a4484d2015-01-13 20:09:54 +0100142 */
143static inline int channel_in_transit(const struct channel *chn)
144{
145 int ret;
146
Willy Tarreau9c06ee42015-01-14 16:08:45 +0100147 if (!channel_may_send(chn))
148 return 0;
149
Willy Tarreau1a4484d2015-01-13 20:09:54 +0100150 /* below, this is min(i, to_forward) optimized for the fast case */
151 if (chn->to_forward >= chn->buf->i ||
152 (CHN_INFINITE_FORWARD < MAX_RANGE(typeof(chn->buf->i)) &&
153 chn->to_forward == CHN_INFINITE_FORWARD))
154 ret = chn->buf->i;
155 else
156 ret = chn->to_forward;
157
158 ret += chn->buf->o;
159 return ret;
160}
161
Willy Tarreau3889fff2015-01-13 20:20:10 +0100162/* Returns non-zero if the channel can still receive data. This is used to
Willy Tarreau379357a2013-06-08 12:55:46 +0200163 * decide when to stop reading into a buffer when we want to ensure that we
164 * leave the reserve untouched after all pending outgoing data are forwarded.
165 * The reserved space is taken into account if ->to_forward indicates that an
166 * end of transfer is close to happen. Note that both ->buf->o and ->to_forward
167 * are considered as available since they're supposed to leave the buffer. The
168 * test is optimized to avoid as many operations as possible for the fast case
169 * and to be used as an "if" condition.
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100170 */
Willy Tarreau3889fff2015-01-13 20:20:10 +0100171static inline int channel_may_recv(const struct channel *chn)
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100172{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200173 int rem = chn->buf->size;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200174
Willy Tarreau4428a292014-11-28 20:54:13 +0100175 if (chn->buf == &buf_empty)
Willy Tarreau3889fff2015-01-13 20:20:10 +0100176 return 1;
Willy Tarreau4428a292014-11-28 20:54:13 +0100177
Willy Tarreau9b28e032012-10-12 23:49:43 +0200178 rem -= chn->buf->o;
179 rem -= chn->buf->i;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200180 if (!rem)
Willy Tarreau3889fff2015-01-13 20:20:10 +0100181 return 0; /* buffer already full */
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200182
Willy Tarreaubb3f9942015-01-13 19:07:23 +0100183 /* now we know there's some room left, verify if we're touching
184 * the reserve with some permanent input data.
185 */
186 if (chn->to_forward >= chn->buf->i ||
187 (CHN_INFINITE_FORWARD < MAX_RANGE(typeof(chn->buf->i)) && // just there to ensure gcc
188 chn->to_forward == CHN_INFINITE_FORWARD)) // avoids the useless second
Willy Tarreau3889fff2015-01-13 20:20:10 +0100189 return 1; // test whenever possible
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200190
191 rem -= global.tune.maxrewrite;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200192 rem += chn->buf->o;
Willy Tarreau974ced62012-10-12 23:11:02 +0200193 rem += chn->to_forward;
Willy Tarreau3889fff2015-01-13 20:20:10 +0100194 return rem > 0;
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100195}
196
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200197/* Returns true if the channel's input is already closed */
Willy Tarreau974ced62012-10-12 23:11:02 +0200198static inline int channel_input_closed(struct channel *chn)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200199{
Willy Tarreau974ced62012-10-12 23:11:02 +0200200 return ((chn->flags & CF_SHUTR) != 0);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200201}
202
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200203/* Returns true if the channel's output is already closed */
Willy Tarreau974ced62012-10-12 23:11:02 +0200204static inline int channel_output_closed(struct channel *chn)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200205{
Willy Tarreau974ced62012-10-12 23:11:02 +0200206 return ((chn->flags & CF_SHUTW) != 0);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200207}
208
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200209/* Check channel timeouts, and set the corresponding flags. The likely/unlikely
210 * have been optimized for fastest normal path. The read/write timeouts are not
211 * set if there was activity on the channel. That way, we don't have to update
212 * the timeout on every I/O. Note that the analyser timeout is always checked.
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200213 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200214static inline void channel_check_timeouts(struct channel *chn)
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200215{
Willy Tarreau974ced62012-10-12 23:11:02 +0200216 if (likely(!(chn->flags & (CF_SHUTR|CF_READ_TIMEOUT|CF_READ_ACTIVITY|CF_READ_NOEXP))) &&
217 unlikely(tick_is_expired(chn->rex, now_ms)))
218 chn->flags |= CF_READ_TIMEOUT;
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200219
Willy Tarreau974ced62012-10-12 23:11:02 +0200220 if (likely(!(chn->flags & (CF_SHUTW|CF_WRITE_TIMEOUT|CF_WRITE_ACTIVITY))) &&
221 unlikely(tick_is_expired(chn->wex, now_ms)))
222 chn->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200223
Willy Tarreau974ced62012-10-12 23:11:02 +0200224 if (likely(!(chn->flags & CF_ANA_TIMEOUT)) &&
225 unlikely(tick_is_expired(chn->analyse_exp, now_ms)))
226 chn->flags |= CF_ANA_TIMEOUT;
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200227}
228
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200229/* Erase any content from channel <buf> and adjusts flags accordingly. Note
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100230 * that any spliced data is not affected since we may not have any access to
231 * it.
Willy Tarreaue393fe22008-08-16 22:18:07 +0200232 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200233static inline void channel_erase(struct channel *chn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200234{
Willy Tarreau974ced62012-10-12 23:11:02 +0200235 chn->to_forward = 0;
Willy Tarreau474cf542014-11-24 10:54:47 +0100236 b_reset(chn->buf);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200237}
238
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200239/* marks the channel as "shutdown" ASAP for reads */
Willy Tarreau974ced62012-10-12 23:11:02 +0200240static inline void channel_shutr_now(struct channel *chn)
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200241{
Willy Tarreau974ced62012-10-12 23:11:02 +0200242 chn->flags |= CF_SHUTR_NOW;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200243}
244
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200245/* marks the channel as "shutdown" ASAP for writes */
Willy Tarreau974ced62012-10-12 23:11:02 +0200246static inline void channel_shutw_now(struct channel *chn)
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200247{
Willy Tarreau974ced62012-10-12 23:11:02 +0200248 chn->flags |= CF_SHUTW_NOW;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200249}
250
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200251/* marks the channel as "shutdown" ASAP in both directions */
Willy Tarreau974ced62012-10-12 23:11:02 +0200252static inline void channel_abort(struct channel *chn)
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200253{
Willy Tarreau974ced62012-10-12 23:11:02 +0200254 chn->flags |= CF_SHUTR_NOW | CF_SHUTW_NOW;
255 chn->flags &= ~CF_AUTO_CONNECT;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200256}
257
Willy Tarreau520d95e2009-09-19 21:04:57 +0200258/* allow the consumer to try to establish a new connection. */
Willy Tarreau974ced62012-10-12 23:11:02 +0200259static inline void channel_auto_connect(struct channel *chn)
Willy Tarreau3da77c52008-08-29 09:58:42 +0200260{
Willy Tarreau974ced62012-10-12 23:11:02 +0200261 chn->flags |= CF_AUTO_CONNECT;
Willy Tarreau3da77c52008-08-29 09:58:42 +0200262}
263
Willy Tarreau520d95e2009-09-19 21:04:57 +0200264/* prevent the consumer from trying to establish a new connection, and also
265 * disable auto shutdown forwarding.
266 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200267static inline void channel_dont_connect(struct channel *chn)
Willy Tarreau3da77c52008-08-29 09:58:42 +0200268{
Willy Tarreau974ced62012-10-12 23:11:02 +0200269 chn->flags &= ~(CF_AUTO_CONNECT|CF_AUTO_CLOSE);
Willy Tarreau3da77c52008-08-29 09:58:42 +0200270}
271
Willy Tarreau520d95e2009-09-19 21:04:57 +0200272/* allow the producer to forward shutdown requests */
Willy Tarreau974ced62012-10-12 23:11:02 +0200273static inline void channel_auto_close(struct channel *chn)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100274{
Willy Tarreau974ced62012-10-12 23:11:02 +0200275 chn->flags |= CF_AUTO_CLOSE;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100276}
277
Willy Tarreau520d95e2009-09-19 21:04:57 +0200278/* prevent the producer from forwarding shutdown requests */
Willy Tarreau974ced62012-10-12 23:11:02 +0200279static inline void channel_dont_close(struct channel *chn)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100280{
Willy Tarreau974ced62012-10-12 23:11:02 +0200281 chn->flags &= ~CF_AUTO_CLOSE;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100282}
283
Willy Tarreau90deb182010-01-07 00:20:41 +0100284/* allow the producer to read / poll the input */
Willy Tarreau974ced62012-10-12 23:11:02 +0200285static inline void channel_auto_read(struct channel *chn)
Willy Tarreau90deb182010-01-07 00:20:41 +0100286{
Willy Tarreau974ced62012-10-12 23:11:02 +0200287 chn->flags &= ~CF_DONT_READ;
Willy Tarreau90deb182010-01-07 00:20:41 +0100288}
289
290/* prevent the producer from read / poll the input */
Willy Tarreau974ced62012-10-12 23:11:02 +0200291static inline void channel_dont_read(struct channel *chn)
Willy Tarreau90deb182010-01-07 00:20:41 +0100292{
Willy Tarreau974ced62012-10-12 23:11:02 +0200293 chn->flags |= CF_DONT_READ;
Willy Tarreau90deb182010-01-07 00:20:41 +0100294}
295
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200296
297/*************************************************/
298/* Buffer operations in the context of a channel */
299/*************************************************/
300
301
302/* Return the number of reserved bytes in the channel's visible
303 * buffer, which ensures that once all pending data are forwarded, the
304 * buffer still has global.tune.maxrewrite bytes free. The result is
305 * between 0 and global.tune.maxrewrite, which is itself smaller than
Willy Tarreau0428a142015-01-08 11:34:55 +0100306 * any chn->size. Special care is taken to avoid any possible integer
307 * overflow in the operations.
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200308 */
Willy Tarreaua4178192015-01-14 20:16:52 +0100309static inline int channel_reserved(const struct channel *chn)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200310{
Willy Tarreaufe578342015-01-14 14:07:13 +0100311 int reserved;
Willy Tarreau0428a142015-01-08 11:34:55 +0100312
Willy Tarreaufe578342015-01-14 14:07:13 +0100313 reserved = global.tune.maxrewrite - channel_in_transit(chn);
314 if (reserved < 0)
Willy Tarreau0428a142015-01-08 11:34:55 +0100315 reserved = 0;
Willy Tarreau0428a142015-01-08 11:34:55 +0100316 return reserved;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200317}
318
319/* Return the max number of bytes the buffer can contain so that once all the
Willy Tarreau3f5096d2015-01-14 20:21:43 +0100320 * data in transit are forwarded, the buffer still has global.tune.maxrewrite
Willy Tarreau974ced62012-10-12 23:11:02 +0200321 * bytes free. The result sits between chn->size - maxrewrite and chn->size.
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200322 */
Willy Tarreau3f5096d2015-01-14 20:21:43 +0100323static inline int channel_recv_limit(const struct channel *chn)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200324{
Willy Tarreaua4178192015-01-14 20:16:52 +0100325 return chn->buf->size - channel_reserved(chn);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200326}
327
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200328/* Returns the amount of space available at the input of the buffer, taking the
329 * reserved space into account if ->to_forward indicates that an end of transfer
330 * is close to happen. The test is optimized to avoid as many operations as
331 * possible for the fast case.
332 */
Willy Tarreaub5051f82015-01-14 20:25:34 +0100333static inline int channel_recv_max(const struct channel *chn)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200334{
Willy Tarreau27bb0e12015-01-14 15:56:50 +0100335 int ret;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200336
Willy Tarreau3f5096d2015-01-14 20:21:43 +0100337 ret = channel_recv_limit(chn) - chn->buf->i - chn->buf->o;
Willy Tarreau27bb0e12015-01-14 15:56:50 +0100338 if (ret < 0)
339 ret = 0;
340 return ret;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200341}
342
Willy Tarreau319f7452015-01-14 20:32:59 +0100343/* Truncate any unread data in the channel's buffer, and disable forwarding.
344 * Outgoing data are left intact. This is mainly to be used to send error
345 * messages after existing data.
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200346 */
Willy Tarreau319f7452015-01-14 20:32:59 +0100347static inline void channel_truncate(struct channel *chn)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200348{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200349 if (!chn->buf->o)
Willy Tarreau974ced62012-10-12 23:11:02 +0200350 return channel_erase(chn);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200351
Willy Tarreau974ced62012-10-12 23:11:02 +0200352 chn->to_forward = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200353 if (!chn->buf->i)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200354 return;
355
Willy Tarreau9b28e032012-10-12 23:49:43 +0200356 chn->buf->i = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200357}
358
Willy Tarreaubaaee002006-06-26 02:48:02 +0200359/*
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200360 * Advance the channel buffer's read pointer by <len> bytes. This is useful
361 * when data have been read directly from the buffer. It is illegal to call
362 * this function with <len> causing a wrapping at the end of the buffer. It's
363 * the caller's responsibility to ensure that <len> is never larger than
Willy Tarreau974ced62012-10-12 23:11:02 +0200364 * chn->o. Channel flag WRITE_PARTIAL is set.
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200365 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200366static inline void bo_skip(struct channel *chn, int len)
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200367{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200368 chn->buf->o -= len;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200369
Willy Tarreau5fb38032012-12-16 19:39:09 +0100370 if (buffer_empty(chn->buf))
Willy Tarreau9b28e032012-10-12 23:49:43 +0200371 chn->buf->p = chn->buf->data;
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200372
Willy Tarreaufb0e9202009-09-23 23:47:55 +0200373 /* notify that some data was written to the SI from the buffer */
Willy Tarreau974ced62012-10-12 23:11:02 +0200374 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200375}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200376
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200377/* Tries to copy chunk <chunk> into the channel's buffer after length controls.
Willy Tarreau974ced62012-10-12 23:11:02 +0200378 * The chn->o and to_forward pointers are updated. If the channel's input is
Willy Tarreau74b08c92010-09-08 17:04:31 +0200379 * closed, -2 is returned. If the block is too large for this buffer, -3 is
380 * returned. If there is not enough room left in the buffer, -1 is returned.
381 * Otherwise the number of bytes copied is returned (0 being a valid number).
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200382 * Channel flag READ_PARTIAL is updated if some data can be transferred. The
Willy Tarreauf941cf22012-08-27 20:53:34 +0200383 * chunk's length is updated with the number of bytes sent.
Willy Tarreauaeac3192009-08-31 08:09:57 +0200384 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200385static inline int bi_putchk(struct channel *chn, struct chunk *chunk)
Willy Tarreauaeac3192009-08-31 08:09:57 +0200386{
387 int ret;
388
Willy Tarreau974ced62012-10-12 23:11:02 +0200389 ret = bi_putblk(chn, chunk->str, chunk->len);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200390 if (ret > 0)
391 chunk->len -= ret;
Willy Tarreauaeac3192009-08-31 08:09:57 +0200392 return ret;
393}
394
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200395/* Tries to copy string <str> at once into the channel's buffer after length
Willy Tarreau974ced62012-10-12 23:11:02 +0200396 * controls. The chn->o and to_forward pointers are updated. If the channel's
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200397 * input is closed, -2 is returned. If the block is too large for this buffer,
398 * -3 is returned. If there is not enough room left in the buffer, -1 is
399 * returned. Otherwise the number of bytes copied is returned (0 being a valid
400 * number). Channel flag READ_PARTIAL is updated if some data can be
401 * transferred.
Willy Tarreau74b08c92010-09-08 17:04:31 +0200402 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200403static inline int bi_putstr(struct channel *chn, const char *str)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200404{
Willy Tarreau974ced62012-10-12 23:11:02 +0200405 return bi_putblk(chn, str, strlen(str));
Willy Tarreau74b08c92010-09-08 17:04:31 +0200406}
407
408/*
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200409 * Return one char from the channel's buffer. If the buffer is empty and the
410 * channel is closed, return -2. If the buffer is just empty, return -1. The
411 * buffer's pointer is not advanced, it's up to the caller to call bo_skip(buf,
412 * 1) when it has consumed the char. Also note that this function respects the
Willy Tarreau974ced62012-10-12 23:11:02 +0200413 * chn->o limit.
Willy Tarreau74b08c92010-09-08 17:04:31 +0200414 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200415static inline int bo_getchr(struct channel *chn)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200416{
417 /* closed or empty + imminent close = -2; empty = -1 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200418 if (unlikely((chn->flags & CF_SHUTW) || channel_is_empty(chn))) {
419 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreau74b08c92010-09-08 17:04:31 +0200420 return -2;
421 return -1;
422 }
Willy Tarreau9b28e032012-10-12 23:49:43 +0200423 return *buffer_wrap_sub(chn->buf, chn->buf->p - chn->buf->o);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200424}
425
Willy Tarreaubaaee002006-06-26 02:48:02 +0200426
Willy Tarreauc7e42382012-08-24 19:22:53 +0200427#endif /* _PROTO_CHANNEL_H */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200428
429/*
430 * Local variables:
431 * c-indent-level: 8
432 * c-basic-offset: 8
433 * End:
434 */