blob: b7200246d5e80ffcec781b7c262f9225fb03ea08 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreauc7e42382012-08-24 19:22:53 +02002 * Channel management functions.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003 *
Willy Tarreaua27dc192014-11-27 22:10:04 +01004 * Copyright 2000-2014 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Krzysztof Piotr Oledzkiba8d7d32009-10-10 21:06:03 +020013#include <ctype.h>
Willy Tarreauc0dde7a2007-01-01 21:38:07 +010014#include <stdarg.h>
15#include <stdio.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020016#include <string.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020017
18#include <common/config.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020019#include <common/buffer.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020020
Willy Tarreau9b28e032012-10-12 23:49:43 +020021#include <proto/channel.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020022
Willy Tarreau7341d942007-05-13 19:56:02 +020023
Willy Tarreau8263d2b2012-08-28 00:06:31 +020024/* Schedule up to <bytes> more bytes to be forwarded via the channel without
25 * notifying the owner task. Any data pending in the buffer are scheduled to be
Willy Tarreau8bf242b2016-05-04 14:05:58 +020026 * sent as well, within the limit of the number of bytes to forward. This must
27 * be the only method to use to schedule bytes to be forwarded. If the requested
Willy Tarreau8263d2b2012-08-28 00:06:31 +020028 * number is too large, it is automatically adjusted. The number of bytes taken
29 * into account is returned. Directly touching ->to_forward will cause lockups
30 * when buf->o goes down to zero if nobody is ready to push the remaining data.
Willy Tarreau0bc34932011-03-28 16:25:58 +020031 */
Willy Tarreau55a69062012-10-26 00:21:52 +020032unsigned long long __channel_forward(struct channel *chn, unsigned long long bytes)
Willy Tarreau0bc34932011-03-28 16:25:58 +020033{
Willy Tarreau8bf242b2016-05-04 14:05:58 +020034 unsigned int budget;
Willy Tarreau02d6cfc2012-03-01 18:19:58 +010035 unsigned int forwarded;
Willy Tarreau0bc34932011-03-28 16:25:58 +020036
Willy Tarreau8bf242b2016-05-04 14:05:58 +020037 /* This is more of a safety measure as it's not supposed to happen in
38 * regular code paths.
Willy Tarreau0bc34932011-03-28 16:25:58 +020039 */
Willy Tarreau8bf242b2016-05-04 14:05:58 +020040 if (unlikely(chn->to_forward == CHN_INFINITE_FORWARD)) {
Willy Tarreaubcbd3932018-06-06 07:13:22 +020041 c_adv(chn, chn->buf->i);
Willy Tarreau02d6cfc2012-03-01 18:19:58 +010042 return bytes;
43 }
44
Willy Tarreau8bf242b2016-05-04 14:05:58 +020045 /* Bound the transferred size to a 32-bit count since all our values
46 * are 32-bit, and we don't want to reach CHN_INFINITE_FORWARD.
47 */
48 budget = MIN(bytes, CHN_INFINITE_FORWARD - 1);
Willy Tarreau0bc34932011-03-28 16:25:58 +020049
Willy Tarreau8bf242b2016-05-04 14:05:58 +020050 /* transfer as much as we can of buf->i */
51 forwarded = MIN(chn->buf->i, budget);
Willy Tarreaubcbd3932018-06-06 07:13:22 +020052 c_adv(chn, forwarded);
Willy Tarreau8bf242b2016-05-04 14:05:58 +020053 budget -= forwarded;
Willy Tarreau0bc34932011-03-28 16:25:58 +020054
Willy Tarreau8bf242b2016-05-04 14:05:58 +020055 if (!budget)
56 return forwarded;
57
58 /* Now we must ensure chn->to_forward sats below CHN_INFINITE_FORWARD,
59 * which also implies it won't overflow. It's less operations in 64-bit.
60 */
61 bytes = (unsigned long long)chn->to_forward + budget;
62 if (bytes >= CHN_INFINITE_FORWARD)
63 bytes = CHN_INFINITE_FORWARD - 1;
64 budget = bytes - chn->to_forward;
65
66 chn->to_forward += budget;
67 forwarded += budget;
68 return forwarded;
Willy Tarreau0bc34932011-03-28 16:25:58 +020069}
Willy Tarreaubaaee002006-06-26 02:48:02 +020070
Willy Tarreau8263d2b2012-08-28 00:06:31 +020071/* writes <len> bytes from message <msg> to the channel's buffer. Returns -1 in
72 * case of success, -2 if the message is larger than the buffer size, or the
73 * number of bytes available otherwise. The send limit is automatically
74 * adjusted to the amount of data written. FIXME-20060521: handle unaligned
75 * data. Note: this function appends data to the buffer's output and possibly
76 * overwrites any pending input data which are assumed not to exist.
Willy Tarreaubaaee002006-06-26 02:48:02 +020077 */
Willy Tarreau06d80a92017-10-19 14:32:15 +020078int co_inject(struct channel *chn, const char *msg, int len)
Willy Tarreaubaaee002006-06-26 02:48:02 +020079{
80 int max;
81
Willy Tarreauaeac3192009-08-31 08:09:57 +020082 if (len == 0)
83 return -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +020084
Willy Tarreau320ec2a2016-02-25 16:15:19 +010085 if (len < 0 || len > chn->buf->size) {
Willy Tarreau078e2942009-08-18 07:19:39 +020086 /* we can't write this chunk and will never be able to, because
87 * it is larger than the buffer. This must be reported as an
88 * error. Then we return -2 so that writers that don't care can
89 * ignore it and go on, and others can check for this value.
90 */
91 return -2;
92 }
93
Willy Tarreaud5b343b2018-06-06 06:42:46 +020094 c_realign_if_empty(chn);
Willy Tarreaue4d5a032018-06-07 18:58:07 +020095 max = b_contig_space(chn->buf);
Willy Tarreaubaaee002006-06-26 02:48:02 +020096 if (len > max)
97 return max;
98
Willy Tarreau9b28e032012-10-12 23:49:43 +020099 memcpy(chn->buf->p, msg, len);
100 chn->buf->o += len;
Willy Tarreau188e2302018-06-15 11:11:53 +0200101 chn->buf->p = c_ptr(chn, len);
Willy Tarreau974ced62012-10-12 23:11:02 +0200102 chn->total += len;
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200103 return -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200104}
105
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200106/* Tries to copy character <c> into the channel's buffer after some length
Willy Tarreau974ced62012-10-12 23:11:02 +0200107 * controls. The chn->o and to_forward pointers are updated. If the channel
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200108 * input is closed, -2 is returned. If there is not enough room left in the
109 * buffer, -1 is returned. Otherwise the number of bytes copied is returned
110 * (1). Channel flag READ_PARTIAL is updated if some data can be transferred.
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100111 */
Willy Tarreau06d80a92017-10-19 14:32:15 +0200112int ci_putchr(struct channel *chn, char c)
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100113{
Willy Tarreau974ced62012-10-12 23:11:02 +0200114 if (unlikely(channel_input_closed(chn)))
Willy Tarreau74b08c92010-09-08 17:04:31 +0200115 return -2;
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100116
Willy Tarreaubc18da12015-03-13 14:00:47 +0100117 if (!channel_may_recv(chn))
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200118 return -1;
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100119
Willy Tarreau8f9c72d2018-06-07 18:46:28 +0200120 *ci_tail(chn) = c;
Willy Tarreau74b08c92010-09-08 17:04:31 +0200121
Willy Tarreau9b28e032012-10-12 23:49:43 +0200122 chn->buf->i++;
Willy Tarreau974ced62012-10-12 23:11:02 +0200123 chn->flags |= CF_READ_PARTIAL;
Willy Tarreau74b08c92010-09-08 17:04:31 +0200124
Willy Tarreau974ced62012-10-12 23:11:02 +0200125 if (chn->to_forward >= 1) {
126 if (chn->to_forward != CHN_INFINITE_FORWARD)
127 chn->to_forward--;
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200128 c_adv(chn, 1);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200129 }
130
Willy Tarreau974ced62012-10-12 23:11:02 +0200131 chn->total++;
Willy Tarreau74b08c92010-09-08 17:04:31 +0200132 return 1;
133}
134
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200135/* Tries to copy block <blk> at once into the channel's buffer after length
Willy Tarreau974ced62012-10-12 23:11:02 +0200136 * controls. The chn->o and to_forward pointers are updated. If the channel
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200137 * input is closed, -2 is returned. If the block is too large for this buffer,
138 * -3 is returned. If there is not enough room left in the buffer, -1 is
139 * returned. Otherwise the number of bytes copied is returned (0 being a valid
140 * number). Channel flag READ_PARTIAL is updated if some data can be
Willy Tarreaubc18da12015-03-13 14:00:47 +0100141 * transferred.
Willy Tarreau74b08c92010-09-08 17:04:31 +0200142 */
Willy Tarreau06d80a92017-10-19 14:32:15 +0200143int ci_putblk(struct channel *chn, const char *blk, int len)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200144{
145 int max;
146
Willy Tarreau974ced62012-10-12 23:11:02 +0200147 if (unlikely(channel_input_closed(chn)))
Willy Tarreau74b08c92010-09-08 17:04:31 +0200148 return -2;
149
Willy Tarreau320ec2a2016-02-25 16:15:19 +0100150 if (len < 0)
151 return -3;
152
Willy Tarreau3f5096d2015-01-14 20:21:43 +0100153 max = channel_recv_limit(chn);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200154 if (unlikely(len > max - buffer_len(chn->buf))) {
Willy Tarreau591fedc2010-08-10 15:28:21 +0200155 /* we can't write this chunk right now because the buffer is
156 * almost full or because the block is too large. Return the
157 * available space or -2 if impossible.
Willy Tarreau078e2942009-08-18 07:19:39 +0200158 */
Willy Tarreau591fedc2010-08-10 15:28:21 +0200159 if (len > max)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200160 return -3;
Willy Tarreau078e2942009-08-18 07:19:39 +0200161
Willy Tarreau74b08c92010-09-08 17:04:31 +0200162 return -1;
Willy Tarreau591fedc2010-08-10 15:28:21 +0200163 }
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100164
Willy Tarreau74b08c92010-09-08 17:04:31 +0200165 if (unlikely(len == 0))
166 return 0;
167
Willy Tarreau591fedc2010-08-10 15:28:21 +0200168 /* OK so the data fits in the buffer in one or two blocks */
Willy Tarreaue4d5a032018-06-07 18:58:07 +0200169 max = b_contig_space(chn->buf);
Willy Tarreau8f9c72d2018-06-07 18:46:28 +0200170 memcpy(ci_tail(chn), blk, MIN(len, max));
Willy Tarreauaeac3192009-08-31 08:09:57 +0200171 if (len > max)
Willy Tarreau9b28e032012-10-12 23:49:43 +0200172 memcpy(chn->buf->data, blk + max, len - max);
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100173
Willy Tarreau9b28e032012-10-12 23:49:43 +0200174 chn->buf->i += len;
Willy Tarreau974ced62012-10-12 23:11:02 +0200175 chn->total += len;
176 if (chn->to_forward) {
Willy Tarreau31971e52009-09-20 12:07:52 +0200177 unsigned long fwd = len;
Willy Tarreau974ced62012-10-12 23:11:02 +0200178 if (chn->to_forward != CHN_INFINITE_FORWARD) {
179 if (fwd > chn->to_forward)
180 fwd = chn->to_forward;
181 chn->to_forward -= fwd;
Willy Tarreau31971e52009-09-20 12:07:52 +0200182 }
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200183 c_adv(chn, fwd);
Willy Tarreauaeac3192009-08-31 08:09:57 +0200184 }
185
Willy Tarreaufb0e9202009-09-23 23:47:55 +0200186 /* notify that some data was read from the SI into the buffer */
Willy Tarreau974ced62012-10-12 23:11:02 +0200187 chn->flags |= CF_READ_PARTIAL;
Willy Tarreau74b08c92010-09-08 17:04:31 +0200188 return len;
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100189}
190
Willy Tarreaub034b252014-12-08 18:14:53 +0100191/* Tries to copy the whole buffer <buf> into the channel's buffer after length
192 * controls. It will only succeed if the target buffer is empty, in which case
193 * it will simply swap the buffers. The buffer not attached to the channel is
194 * returned so that the caller can store it locally. The chn->buf->o and
195 * to_forward pointers are updated. If the output buffer is a dummy buffer or
196 * if it still contains data <buf> is returned, indicating that nothing could
197 * be done. Channel flag READ_PARTIAL is updated if some data can be transferred.
198 * The chunk's length is updated with the number of bytes sent. On errors, NULL
199 * is returned. Note that only buf->i is considered.
200 */
Willy Tarreau06d80a92017-10-19 14:32:15 +0200201struct buffer *ci_swpbuf(struct channel *chn, struct buffer *buf)
Willy Tarreaub034b252014-12-08 18:14:53 +0100202{
203 struct buffer *old;
204
205 if (unlikely(channel_input_closed(chn)))
206 return NULL;
207
Willy Tarreaubc18da12015-03-13 14:00:47 +0100208 if (!chn->buf->size || !buffer_empty(chn->buf))
Willy Tarreaub034b252014-12-08 18:14:53 +0100209 return buf;
Willy Tarreaub034b252014-12-08 18:14:53 +0100210
211 old = chn->buf;
212 chn->buf = buf;
213
214 if (!buf->i)
215 return old;
216
217 chn->total += buf->i;
218
219 if (chn->to_forward) {
220 unsigned long fwd = buf->i;
221 if (chn->to_forward != CHN_INFINITE_FORWARD) {
222 if (fwd > chn->to_forward)
223 fwd = chn->to_forward;
224 chn->to_forward -= fwd;
225 }
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200226 c_adv(chn, fwd);
Willy Tarreaub034b252014-12-08 18:14:53 +0100227 }
228
229 /* notify that some data was read from the SI into the buffer */
230 chn->flags |= CF_READ_PARTIAL;
231 return old;
232}
233
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200234/* Gets one text line out of a channel's buffer from a stream interface.
Willy Tarreau4fe7a2e2009-09-01 06:41:32 +0200235 * Return values :
236 * >0 : number of bytes read. Includes the \n if present before len or end.
Willy Tarreau74b08c92010-09-08 17:04:31 +0200237 * =0 : no '\n' before end found. <str> is left undefined.
238 * <0 : no more bytes readable because output is shut.
Willy Tarreau06d80a92017-10-19 14:32:15 +0200239 * The channel status is not changed. The caller must call co_skip() to
Willy Tarreau4fe7a2e2009-09-01 06:41:32 +0200240 * update it. The '\n' is waited for as long as neither the buffer nor the
241 * output are full. If either of them is full, the string may be returned
242 * as is, without the '\n'.
243 */
Willy Tarreau41ab8682017-10-19 14:58:40 +0200244int co_getline(const struct channel *chn, char *str, int len)
Willy Tarreau4fe7a2e2009-09-01 06:41:32 +0200245{
246 int ret, max;
247 char *p;
248
249 ret = 0;
250 max = len;
Willy Tarreau74b08c92010-09-08 17:04:31 +0200251
252 /* closed or empty + imminent close = -1; empty = 0 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200253 if (unlikely((chn->flags & CF_SHUTW) || channel_is_empty(chn))) {
254 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreau4fe7a2e2009-09-01 06:41:32 +0200255 ret = -1;
256 goto out;
257 }
258
Willy Tarreau89faf5d2018-06-07 18:16:48 +0200259 p = b_head(chn->buf);
Willy Tarreau4fe7a2e2009-09-01 06:41:32 +0200260
Willy Tarreau9b28e032012-10-12 23:49:43 +0200261 if (max > chn->buf->o) {
262 max = chn->buf->o;
Willy Tarreau2e1dd3d2009-09-23 22:56:07 +0200263 str[max-1] = 0;
Willy Tarreau4fe7a2e2009-09-01 06:41:32 +0200264 }
265 while (max) {
266 *str++ = *p;
267 ret++;
268 max--;
269
270 if (*p == '\n')
271 break;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200272 p = buffer_wrap_add(chn->buf, p + 1);
Willy Tarreau4fe7a2e2009-09-01 06:41:32 +0200273 }
Willy Tarreau82de2b62013-12-10 18:58:23 +0100274 if (ret > 0 && ret < len &&
Willy Tarreau3889fff2015-01-13 20:20:10 +0100275 (ret < chn->buf->o || channel_may_recv(chn)) &&
Willy Tarreau2e1dd3d2009-09-23 22:56:07 +0200276 *(str-1) != '\n' &&
Willy Tarreau974ced62012-10-12 23:11:02 +0200277 !(chn->flags & (CF_SHUTW|CF_SHUTW_NOW)))
Willy Tarreau4fe7a2e2009-09-01 06:41:32 +0200278 ret = 0;
279 out:
280 if (max)
281 *str = 0;
282 return ret;
283}
284
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200285/* Gets one full block of data at once from a channel's buffer, optionally from
286 * a specific offset. Return values :
Willy Tarreau74b08c92010-09-08 17:04:31 +0200287 * >0 : number of bytes read, equal to requested size.
288 * =0 : not enough data available. <blk> is left undefined.
289 * <0 : no more bytes readable because output is shut.
Willy Tarreau06d80a92017-10-19 14:32:15 +0200290 * The channel status is not changed. The caller must call co_skip() to
Willy Tarreau74b08c92010-09-08 17:04:31 +0200291 * update it.
292 */
Willy Tarreau41ab8682017-10-19 14:58:40 +0200293int co_getblk(const struct channel *chn, char *blk, int len, int offset)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200294{
Willy Tarreau974ced62012-10-12 23:11:02 +0200295 if (chn->flags & CF_SHUTW)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200296 return -1;
297
Willy Tarreau90ed3832018-06-15 14:20:26 +0200298 if (len + offset > co_data(chn)) {
Willy Tarreau974ced62012-10-12 23:11:02 +0200299 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreau74b08c92010-09-08 17:04:31 +0200300 return -1;
301 return 0;
302 }
303
Willy Tarreau90ed3832018-06-15 14:20:26 +0200304 return b_getblk(chn->buf, blk, len, offset);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200305}
306
Thierry FOURNIERca16b032015-02-16 19:26:48 +0100307/* Gets one or two blocks of data at once from a channel's output buffer.
308 * Return values :
309 * >0 : number of blocks filled (1 or 2). blk1 is always filled before blk2.
310 * =0 : not enough data available. <blk*> are left undefined.
311 * <0 : no more bytes readable because output is shut.
Willy Tarreau06d80a92017-10-19 14:32:15 +0200312 * The channel status is not changed. The caller must call co_skip() to
Thierry FOURNIERca16b032015-02-16 19:26:48 +0100313 * update it. Unused buffers are left in an undefined state.
314 */
Willy Tarreau41ab8682017-10-19 14:58:40 +0200315int co_getblk_nc(const struct channel *chn, char **blk1, int *len1, char **blk2, int *len2)
Thierry FOURNIERca16b032015-02-16 19:26:48 +0100316{
317 if (unlikely(chn->buf->o == 0)) {
318 if (chn->flags & CF_SHUTW)
319 return -1;
320 return 0;
321 }
322
Willy Tarreaua1f78fb2018-06-14 14:38:11 +0200323 return b_getblk_nc(chn->buf, blk1, len1, blk2, len2, 0, chn->buf->o);
Thierry FOURNIERca16b032015-02-16 19:26:48 +0100324}
325
326/* Gets one text line out of a channel's output buffer from a stream interface.
327 * Return values :
328 * >0 : number of blocks returned (1 or 2). blk1 is always filled before blk2.
329 * =0 : not enough data available.
330 * <0 : no more bytes readable because output is shut.
331 * The '\n' is waited for as long as neither the buffer nor the output are
332 * full. If either of them is full, the string may be returned as is, without
333 * the '\n'. Unused buffers are left in an undefined state.
334 */
Willy Tarreau41ab8682017-10-19 14:58:40 +0200335int co_getline_nc(const struct channel *chn,
Thierry FOURNIERca16b032015-02-16 19:26:48 +0100336 char **blk1, int *len1,
337 char **blk2, int *len2)
338{
339 int retcode;
340 int l;
341
Willy Tarreau06d80a92017-10-19 14:32:15 +0200342 retcode = co_getblk_nc(chn, blk1, len1, blk2, len2);
Tim Duesterhus45be38c2018-04-24 19:20:43 +0200343 if (unlikely(retcode <= 0))
Thierry FOURNIERca16b032015-02-16 19:26:48 +0100344 return retcode;
345
346 for (l = 0; l < *len1 && (*blk1)[l] != '\n'; l++);
347 if (l < *len1 && (*blk1)[l] == '\n') {
348 *len1 = l + 1;
349 return 1;
350 }
351
352 if (retcode >= 2) {
353 for (l = 0; l < *len2 && (*blk2)[l] != '\n'; l++);
354 if (l < *len2 && (*blk2)[l] == '\n') {
355 *len2 = l + 1;
356 return 2;
357 }
358 }
359
360 if (chn->flags & CF_SHUTW) {
361 /* If we have found no LF and the buffer is shut, then
362 * the resulting string is made of the concatenation of
363 * the pending blocks (1 or 2).
364 */
365 return retcode;
366 }
367
368 /* No LF yet and not shut yet */
369 return 0;
370}
371
372/* Gets one full block of data at once from a channel's input buffer.
373 * This function can return the data slitted in one or two blocks.
374 * Return values :
375 * >0 : number of blocks returned (1 or 2). blk1 is always filled before blk2.
376 * =0 : not enough data available.
377 * <0 : no more bytes readable because input is shut.
378 */
Willy Tarreau41ab8682017-10-19 14:58:40 +0200379int ci_getblk_nc(const struct channel *chn,
Thierry FOURNIERca16b032015-02-16 19:26:48 +0100380 char **blk1, int *len1,
381 char **blk2, int *len2)
382{
383 if (unlikely(chn->buf->i == 0)) {
384 if (chn->flags & CF_SHUTR)
385 return -1;
386 return 0;
387 }
388
389 if (unlikely(chn->buf->p + chn->buf->i > chn->buf->data + chn->buf->size)) {
390 *blk1 = chn->buf->p;
391 *len1 = chn->buf->data + chn->buf->size - chn->buf->p;
392 *blk2 = chn->buf->data;
393 *len2 = chn->buf->i - *len1;
394 return 2;
395 }
396
397 *blk1 = chn->buf->p;
398 *len1 = chn->buf->i;
399 return 1;
400}
401
402/* Gets one text line out of a channel's input buffer from a stream interface.
403 * Return values :
404 * >0 : number of blocks returned (1 or 2). blk1 is always filled before blk2.
405 * =0 : not enough data available.
406 * <0 : no more bytes readable because output is shut.
407 * The '\n' is waited for as long as neither the buffer nor the input are
408 * full. If either of them is full, the string may be returned as is, without
409 * the '\n'. Unused buffers are left in an undefined state.
410 */
Willy Tarreau41ab8682017-10-19 14:58:40 +0200411int ci_getline_nc(const struct channel *chn,
Thierry FOURNIERca16b032015-02-16 19:26:48 +0100412 char **blk1, int *len1,
413 char **blk2, int *len2)
414{
415 int retcode;
416 int l;
417
Willy Tarreau06d80a92017-10-19 14:32:15 +0200418 retcode = ci_getblk_nc(chn, blk1, len1, blk2, len2);
Thierry FOURNIER / OZON.IO500d11e2016-11-12 17:39:58 +0100419 if (unlikely(retcode <= 0))
Thierry FOURNIERca16b032015-02-16 19:26:48 +0100420 return retcode;
421
422 for (l = 0; l < *len1 && (*blk1)[l] != '\n'; l++);
423 if (l < *len1 && (*blk1)[l] == '\n') {
424 *len1 = l + 1;
425 return 1;
426 }
427
428 if (retcode >= 2) {
429 for (l = 0; l < *len2 && (*blk2)[l] != '\n'; l++);
430 if (l < *len2 && (*blk2)[l] == '\n') {
431 *len2 = l + 1;
432 return 2;
433 }
434 }
435
436 if (chn->flags & CF_SHUTW) {
437 /* If we have found no LF and the buffer is shut, then
438 * the resulting string is made of the concatenation of
439 * the pending blocks (1 or 2).
440 */
441 return retcode;
442 }
443
444 /* No LF yet and not shut yet */
445 return 0;
446}
447
Krzysztof Piotr Oledzkiba8d7d32009-10-10 21:06:03 +0200448/*
Willy Tarreaubaaee002006-06-26 02:48:02 +0200449 * Local variables:
450 * c-indent-level: 8
451 * c-basic-offset: 8
452 * End:
453 */