blob: 1cee05a1d58a6782348cf5b141bcb9b2e05794c1 [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
Willy Tarreau7c3c5412009-12-13 15:53:05 +010035#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036
Willy Tarreau8263d2b2012-08-28 00:06:31 +020037extern struct pool_head *pool2_channel;
Willy Tarreau7341d942007-05-13 19:56:02 +020038
39/* 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);
46int bi_putchr(struct channel *chn, char c);
47int bo_inject(struct channel *chn, const char *msg, int len);
48int bo_getline(struct channel *chn, char *str, int len);
49int bo_getblk(struct channel *chn, char *blk, int len, int offset);
Willy Tarreau74b08c92010-09-08 17:04:31 +020050
Willy Tarreau8263d2b2012-08-28 00:06:31 +020051/* Initialize all fields in the channel. */
Willy Tarreau974ced62012-10-12 23:11:02 +020052static inline void channel_init(struct channel *chn)
Willy Tarreau54469402006-07-29 16:59:06 +020053{
Willy Tarreau2a4b5432014-11-24 11:39:34 +010054 chn->buf = &buf_empty;
Willy Tarreau974ced62012-10-12 23:11:02 +020055 chn->to_forward = 0;
Willy Tarreaub145c782014-02-09 17:45:16 +010056 chn->last_read = now_ms;
Willy Tarreau8f39dcd2014-02-09 08:31:49 +010057 chn->xfer_small = chn->xfer_large = 0;
Willy Tarreau974ced62012-10-12 23:11:02 +020058 chn->total = 0;
59 chn->pipe = NULL;
60 chn->analysers = 0;
61 chn->cons = NULL;
62 chn->flags = 0;
Willy Tarreau54469402006-07-29 16:59:06 +020063}
64
Willy Tarreau55a69062012-10-26 00:21:52 +020065/* Schedule up to <bytes> more bytes to be forwarded via the channel without
66 * notifying the owner task. Any data pending in the buffer are scheduled to be
67 * sent as well, in the limit of the number of bytes to forward. This must be
68 * the only method to use to schedule bytes to be forwarded. If the requested
69 * number is too large, it is automatically adjusted. The number of bytes taken
70 * into account is returned. Directly touching ->to_forward will cause lockups
71 * when buf->o goes down to zero if nobody is ready to push the remaining data.
72 */
73static inline unsigned long long channel_forward(struct channel *chn, unsigned long long bytes)
74{
75 /* hint: avoid comparisons on long long for the fast case, since if the
76 * length does not fit in an unsigned it, it will never be forwarded at
77 * once anyway.
78 */
79 if (bytes <= ~0U) {
80 unsigned int bytes32 = bytes;
81
82 if (bytes32 <= chn->buf->i) {
83 /* OK this amount of bytes might be forwarded at once */
84 b_adv(chn->buf, bytes32);
85 return bytes;
86 }
87 }
88 return __channel_forward(chn, bytes);
89}
90
Willy Tarreau8263d2b2012-08-28 00:06:31 +020091/*********************************************************************/
92/* These functions are used to compute various channel content sizes */
93/*********************************************************************/
Willy Tarreau4b517ca2011-11-25 20:33:58 +010094
Willy Tarreau8e21bb92012-08-24 22:40:29 +020095/* Reports non-zero if the channel is empty, which means both its
96 * buffer and pipe are empty. The construct looks strange but is
97 * jump-less and much more efficient on both 32 and 64-bit than
98 * the boolean test.
99 */
100static inline unsigned int channel_is_empty(struct channel *c)
101{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200102 return !(c->buf->o | (long)c->pipe);
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200103}
104
Willy Tarreau379357a2013-06-08 12:55:46 +0200105/* Returns non-zero if the buffer input has all of its reserve available. This
106 * is used to decide when a request or response may be parsed when some data
107 * from a previous exchange might still be present.
108 */
109static inline int channel_reserved(const struct channel *chn)
110{
111 int rem = chn->buf->size;
112
113 rem -= chn->buf->o;
114 rem -= chn->buf->i;
115 rem -= global.tune.maxrewrite;
116 return rem >= 0;
117}
118
119/* Returns non-zero if the buffer input is considered full. This is used to
120 * decide when to stop reading into a buffer when we want to ensure that we
121 * leave the reserve untouched after all pending outgoing data are forwarded.
122 * The reserved space is taken into account if ->to_forward indicates that an
123 * end of transfer is close to happen. Note that both ->buf->o and ->to_forward
124 * are considered as available since they're supposed to leave the buffer. The
125 * test is optimized to avoid as many operations as possible for the fast case
126 * and to be used as an "if" condition.
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100127 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200128static inline int channel_full(const struct channel *chn)
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100129{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200130 int rem = chn->buf->size;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200131
Willy Tarreau4428a292014-11-28 20:54:13 +0100132 if (chn->buf == &buf_empty)
133 return 0;
134
Willy Tarreau9b28e032012-10-12 23:49:43 +0200135 rem -= chn->buf->o;
136 rem -= chn->buf->i;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200137 if (!rem)
138 return 1; /* buffer already full */
139
Willy Tarreau9b28e032012-10-12 23:49:43 +0200140 if (chn->to_forward >= chn->buf->size ||
141 (CHN_INFINITE_FORWARD < MAX_RANGE(typeof(chn->buf->size)) && // just there to ensure gcc
Willy Tarreau974ced62012-10-12 23:11:02 +0200142 chn->to_forward == CHN_INFINITE_FORWARD)) // avoids the useless second
143 return 0; // test whenever possible
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200144
145 rem -= global.tune.maxrewrite;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200146 rem += chn->buf->o;
Willy Tarreau974ced62012-10-12 23:11:02 +0200147 rem += chn->to_forward;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200148 return rem <= 0;
Willy Tarreau4b517ca2011-11-25 20:33:58 +0100149}
150
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200151/* Returns true if the channel's input is already closed */
Willy Tarreau974ced62012-10-12 23:11:02 +0200152static inline int channel_input_closed(struct channel *chn)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200153{
Willy Tarreau974ced62012-10-12 23:11:02 +0200154 return ((chn->flags & CF_SHUTR) != 0);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200155}
156
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200157/* Returns true if the channel's output is already closed */
Willy Tarreau974ced62012-10-12 23:11:02 +0200158static inline int channel_output_closed(struct channel *chn)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200159{
Willy Tarreau974ced62012-10-12 23:11:02 +0200160 return ((chn->flags & CF_SHUTW) != 0);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200161}
162
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200163/* Check channel timeouts, and set the corresponding flags. The likely/unlikely
164 * have been optimized for fastest normal path. The read/write timeouts are not
165 * set if there was activity on the channel. That way, we don't have to update
166 * the timeout on every I/O. Note that the analyser timeout is always checked.
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200167 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200168static inline void channel_check_timeouts(struct channel *chn)
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200169{
Willy Tarreau974ced62012-10-12 23:11:02 +0200170 if (likely(!(chn->flags & (CF_SHUTR|CF_READ_TIMEOUT|CF_READ_ACTIVITY|CF_READ_NOEXP))) &&
171 unlikely(tick_is_expired(chn->rex, now_ms)))
172 chn->flags |= CF_READ_TIMEOUT;
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200173
Willy Tarreau974ced62012-10-12 23:11:02 +0200174 if (likely(!(chn->flags & (CF_SHUTW|CF_WRITE_TIMEOUT|CF_WRITE_ACTIVITY))) &&
175 unlikely(tick_is_expired(chn->wex, now_ms)))
176 chn->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200177
Willy Tarreau974ced62012-10-12 23:11:02 +0200178 if (likely(!(chn->flags & CF_ANA_TIMEOUT)) &&
179 unlikely(tick_is_expired(chn->analyse_exp, now_ms)))
180 chn->flags |= CF_ANA_TIMEOUT;
Willy Tarreau2eb52f02008-09-04 09:14:08 +0200181}
182
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200183/* Erase any content from channel <buf> and adjusts flags accordingly. Note
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100184 * that any spliced data is not affected since we may not have any access to
185 * it.
Willy Tarreaue393fe22008-08-16 22:18:07 +0200186 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200187static inline void channel_erase(struct channel *chn)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200188{
Willy Tarreau974ced62012-10-12 23:11:02 +0200189 chn->to_forward = 0;
Willy Tarreau474cf542014-11-24 10:54:47 +0100190 b_reset(chn->buf);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200191}
192
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200193/* marks the channel as "shutdown" ASAP for reads */
Willy Tarreau974ced62012-10-12 23:11:02 +0200194static inline void channel_shutr_now(struct channel *chn)
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200195{
Willy Tarreau974ced62012-10-12 23:11:02 +0200196 chn->flags |= CF_SHUTR_NOW;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200197}
198
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200199/* marks the channel as "shutdown" ASAP for writes */
Willy Tarreau974ced62012-10-12 23:11:02 +0200200static inline void channel_shutw_now(struct channel *chn)
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200201{
Willy Tarreau974ced62012-10-12 23:11:02 +0200202 chn->flags |= CF_SHUTW_NOW;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200203}
204
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200205/* marks the channel as "shutdown" ASAP in both directions */
Willy Tarreau974ced62012-10-12 23:11:02 +0200206static inline void channel_abort(struct channel *chn)
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200207{
Willy Tarreau974ced62012-10-12 23:11:02 +0200208 chn->flags |= CF_SHUTR_NOW | CF_SHUTW_NOW;
209 chn->flags &= ~CF_AUTO_CONNECT;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200210}
211
Willy Tarreau520d95e2009-09-19 21:04:57 +0200212/* allow the consumer to try to establish a new connection. */
Willy Tarreau974ced62012-10-12 23:11:02 +0200213static inline void channel_auto_connect(struct channel *chn)
Willy Tarreau3da77c52008-08-29 09:58:42 +0200214{
Willy Tarreau974ced62012-10-12 23:11:02 +0200215 chn->flags |= CF_AUTO_CONNECT;
Willy Tarreau3da77c52008-08-29 09:58:42 +0200216}
217
Willy Tarreau520d95e2009-09-19 21:04:57 +0200218/* prevent the consumer from trying to establish a new connection, and also
219 * disable auto shutdown forwarding.
220 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200221static inline void channel_dont_connect(struct channel *chn)
Willy Tarreau3da77c52008-08-29 09:58:42 +0200222{
Willy Tarreau974ced62012-10-12 23:11:02 +0200223 chn->flags &= ~(CF_AUTO_CONNECT|CF_AUTO_CLOSE);
Willy Tarreau3da77c52008-08-29 09:58:42 +0200224}
225
Willy Tarreau520d95e2009-09-19 21:04:57 +0200226/* allow the producer to forward shutdown requests */
Willy Tarreau974ced62012-10-12 23:11:02 +0200227static inline void channel_auto_close(struct channel *chn)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100228{
Willy Tarreau974ced62012-10-12 23:11:02 +0200229 chn->flags |= CF_AUTO_CLOSE;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100230}
231
Willy Tarreau520d95e2009-09-19 21:04:57 +0200232/* prevent the producer from forwarding shutdown requests */
Willy Tarreau974ced62012-10-12 23:11:02 +0200233static inline void channel_dont_close(struct channel *chn)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100234{
Willy Tarreau974ced62012-10-12 23:11:02 +0200235 chn->flags &= ~CF_AUTO_CLOSE;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100236}
237
Willy Tarreau90deb182010-01-07 00:20:41 +0100238/* allow the producer to read / poll the input */
Willy Tarreau974ced62012-10-12 23:11:02 +0200239static inline void channel_auto_read(struct channel *chn)
Willy Tarreau90deb182010-01-07 00:20:41 +0100240{
Willy Tarreau974ced62012-10-12 23:11:02 +0200241 chn->flags &= ~CF_DONT_READ;
Willy Tarreau90deb182010-01-07 00:20:41 +0100242}
243
244/* prevent the producer from read / poll the input */
Willy Tarreau974ced62012-10-12 23:11:02 +0200245static inline void channel_dont_read(struct channel *chn)
Willy Tarreau90deb182010-01-07 00:20:41 +0100246{
Willy Tarreau974ced62012-10-12 23:11:02 +0200247 chn->flags |= CF_DONT_READ;
Willy Tarreau90deb182010-01-07 00:20:41 +0100248}
249
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200250
251/*************************************************/
252/* Buffer operations in the context of a channel */
253/*************************************************/
254
255
256/* Return the number of reserved bytes in the channel's visible
257 * buffer, which ensures that once all pending data are forwarded, the
258 * buffer still has global.tune.maxrewrite bytes free. The result is
259 * between 0 and global.tune.maxrewrite, which is itself smaller than
Willy Tarreau974ced62012-10-12 23:11:02 +0200260 * any chn->size.
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200261 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200262static inline int buffer_reserved(const struct channel *chn)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200263{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200264 int ret = global.tune.maxrewrite - chn->to_forward - chn->buf->o;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200265
Willy Tarreau974ced62012-10-12 23:11:02 +0200266 if (chn->to_forward == CHN_INFINITE_FORWARD)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200267 return 0;
268 if (ret <= 0)
269 return 0;
270 return ret;
271}
272
273/* Return the max number of bytes the buffer can contain so that once all the
274 * pending bytes are forwarded, the buffer still has global.tune.maxrewrite
Willy Tarreau974ced62012-10-12 23:11:02 +0200275 * bytes free. The result sits between chn->size - maxrewrite and chn->size.
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200276 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200277static inline int buffer_max_len(const struct channel *chn)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200278{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200279 return chn->buf->size - buffer_reserved(chn);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200280}
281
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200282/* Returns the amount of space available at the input of the buffer, taking the
283 * reserved space into account if ->to_forward indicates that an end of transfer
284 * is close to happen. The test is optimized to avoid as many operations as
285 * possible for the fast case.
286 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200287static inline int bi_avail(const struct channel *chn)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200288{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200289 int rem = chn->buf->size;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200290 int rem2;
291
Willy Tarreau9b28e032012-10-12 23:49:43 +0200292 rem -= chn->buf->o;
293 rem -= chn->buf->i;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200294 if (!rem)
295 return rem; /* buffer already full */
296
Willy Tarreau9b28e032012-10-12 23:49:43 +0200297 if (chn->to_forward >= chn->buf->size ||
298 (CHN_INFINITE_FORWARD < MAX_RANGE(typeof(chn->buf->size)) && // just there to ensure gcc
Willy Tarreau974ced62012-10-12 23:11:02 +0200299 chn->to_forward == CHN_INFINITE_FORWARD)) // avoids the useless second
300 return rem; // test whenever possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200301
302 rem2 = rem - global.tune.maxrewrite;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200303 rem2 += chn->buf->o;
Willy Tarreau974ced62012-10-12 23:11:02 +0200304 rem2 += chn->to_forward;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200305
306 if (rem > rem2)
307 rem = rem2;
308 if (rem > 0)
309 return rem;
310 return 0;
311}
312
313/* Cut the "tail" of the channel's buffer, which means strip it to the length
314 * of unsent data only, and kill any remaining unsent data. Any scheduled
315 * forwarding is stopped. This is mainly to be used to send error messages
316 * after existing data.
317 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200318static inline void bi_erase(struct channel *chn)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200319{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200320 if (!chn->buf->o)
Willy Tarreau974ced62012-10-12 23:11:02 +0200321 return channel_erase(chn);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200322
Willy Tarreau974ced62012-10-12 23:11:02 +0200323 chn->to_forward = 0;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200324 if (!chn->buf->i)
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200325 return;
326
Willy Tarreau9b28e032012-10-12 23:49:43 +0200327 chn->buf->i = 0;
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200328}
329
Willy Tarreaubaaee002006-06-26 02:48:02 +0200330/*
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200331 * Advance the channel buffer's read pointer by <len> bytes. This is useful
332 * when data have been read directly from the buffer. It is illegal to call
333 * this function with <len> causing a wrapping at the end of the buffer. It's
334 * the caller's responsibility to ensure that <len> is never larger than
Willy Tarreau974ced62012-10-12 23:11:02 +0200335 * chn->o. Channel flag WRITE_PARTIAL is set.
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200336 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200337static inline void bo_skip(struct channel *chn, int len)
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200338{
Willy Tarreau9b28e032012-10-12 23:49:43 +0200339 chn->buf->o -= len;
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200340
Willy Tarreau5fb38032012-12-16 19:39:09 +0100341 if (buffer_empty(chn->buf))
Willy Tarreau9b28e032012-10-12 23:49:43 +0200342 chn->buf->p = chn->buf->data;
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200343
Willy Tarreaufb0e9202009-09-23 23:47:55 +0200344 /* notify that some data was written to the SI from the buffer */
Willy Tarreau974ced62012-10-12 23:11:02 +0200345 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau2b7addc2009-08-31 07:37:22 +0200346}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200347
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200348/* Tries to copy chunk <chunk> into the channel's buffer after length controls.
Willy Tarreau974ced62012-10-12 23:11:02 +0200349 * The chn->o and to_forward pointers are updated. If the channel's input is
Willy Tarreau74b08c92010-09-08 17:04:31 +0200350 * closed, -2 is returned. If the block is too large for this buffer, -3 is
351 * returned. If there is not enough room left in the buffer, -1 is returned.
352 * Otherwise the number of bytes copied is returned (0 being a valid number).
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200353 * Channel flag READ_PARTIAL is updated if some data can be transferred. The
Willy Tarreauf941cf22012-08-27 20:53:34 +0200354 * chunk's length is updated with the number of bytes sent.
Willy Tarreauaeac3192009-08-31 08:09:57 +0200355 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200356static inline int bi_putchk(struct channel *chn, struct chunk *chunk)
Willy Tarreauaeac3192009-08-31 08:09:57 +0200357{
358 int ret;
359
Willy Tarreau974ced62012-10-12 23:11:02 +0200360 ret = bi_putblk(chn, chunk->str, chunk->len);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200361 if (ret > 0)
362 chunk->len -= ret;
Willy Tarreauaeac3192009-08-31 08:09:57 +0200363 return ret;
364}
365
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200366/* Tries to copy string <str> at once into the channel's buffer after length
Willy Tarreau974ced62012-10-12 23:11:02 +0200367 * controls. The chn->o and to_forward pointers are updated. If the channel's
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200368 * input is closed, -2 is returned. If the block is too large for this buffer,
369 * -3 is returned. If there is not enough room left in the buffer, -1 is
370 * returned. Otherwise the number of bytes copied is returned (0 being a valid
371 * number). Channel flag READ_PARTIAL is updated if some data can be
372 * transferred.
Willy Tarreau74b08c92010-09-08 17:04:31 +0200373 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200374static inline int bi_putstr(struct channel *chn, const char *str)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200375{
Willy Tarreau974ced62012-10-12 23:11:02 +0200376 return bi_putblk(chn, str, strlen(str));
Willy Tarreau74b08c92010-09-08 17:04:31 +0200377}
378
379/*
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200380 * Return one char from the channel's buffer. If the buffer is empty and the
381 * channel is closed, return -2. If the buffer is just empty, return -1. The
382 * buffer's pointer is not advanced, it's up to the caller to call bo_skip(buf,
383 * 1) when it has consumed the char. Also note that this function respects the
Willy Tarreau974ced62012-10-12 23:11:02 +0200384 * chn->o limit.
Willy Tarreau74b08c92010-09-08 17:04:31 +0200385 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200386static inline int bo_getchr(struct channel *chn)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200387{
388 /* closed or empty + imminent close = -2; empty = -1 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200389 if (unlikely((chn->flags & CF_SHUTW) || channel_is_empty(chn))) {
390 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreau74b08c92010-09-08 17:04:31 +0200391 return -2;
392 return -1;
393 }
Willy Tarreau9b28e032012-10-12 23:49:43 +0200394 return *buffer_wrap_sub(chn->buf, chn->buf->p - chn->buf->o);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200395}
396
Willy Tarreaubaaee002006-06-26 02:48:02 +0200397
Willy Tarreauc7e42382012-08-24 19:22:53 +0200398#endif /* _PROTO_CHANNEL_H */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200399
400/*
401 * Local variables:
402 * c-indent-level: 8
403 * c-basic-offset: 8
404 * End:
405 */