blob: fe65895c7ed19e116bb32d189c32ce97271a8f51 [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)) {
41 b_adv(chn->buf, 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);
52 b_adv(chn->buf, forwarded);
53 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 Tarreau974ced62012-10-12 23:11:02 +020078int bo_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 Tarreau9b28e032012-10-12 23:49:43 +020094 max = buffer_realign(chn->buf);
Willy Tarreauaeac3192009-08-31 08:09:57 +020095
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;
101 chn->buf->p = b_ptr(chn->buf, 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 Tarreau974ced62012-10-12 23:11:02 +0200112int bi_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 Tarreau9b28e032012-10-12 23:49:43 +0200120 *bi_end(chn->buf) = 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 Tarreau9b28e032012-10-12 23:49:43 +0200128 b_adv(chn->buf, 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 Tarreau974ced62012-10-12 23:11:02 +0200143int bi_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 Tarreau285ff0f2014-04-24 17:02:57 +0200169 max = buffer_contig_space(chn->buf);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200170 memcpy(bi_end(chn->buf), 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 Tarreau9b28e032012-10-12 23:49:43 +0200183 b_adv(chn->buf, 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 */
201struct buffer *bi_swpbuf(struct channel *chn, struct buffer *buf)
202{
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 }
226 b_adv(chn->buf, fwd);
227 }
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 Tarreau8263d2b2012-08-28 00:06:31 +0200239 * The channel status is not changed. The caller must call bo_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 Tarreau974ced62012-10-12 23:11:02 +0200244int bo_getline(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 Tarreau9b28e032012-10-12 23:49:43 +0200259 p = bo_ptr(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 Tarreau8263d2b2012-08-28 00:06:31 +0200290 * The channel status is not changed. The caller must call bo_skip() to
Willy Tarreau74b08c92010-09-08 17:04:31 +0200291 * update it.
292 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200293int bo_getblk(struct channel *chn, char *blk, int len, int offset)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200294{
295 int firstblock;
296
Willy Tarreau974ced62012-10-12 23:11:02 +0200297 if (chn->flags & CF_SHUTW)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200298 return -1;
299
Willy Tarreau9b28e032012-10-12 23:49:43 +0200300 if (len + offset > chn->buf->o) {
Willy Tarreau974ced62012-10-12 23:11:02 +0200301 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreau74b08c92010-09-08 17:04:31 +0200302 return -1;
303 return 0;
304 }
305
Willy Tarreau9b28e032012-10-12 23:49:43 +0200306 firstblock = chn->buf->data + chn->buf->size - bo_ptr(chn->buf);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200307 if (firstblock > offset) {
308 if (firstblock >= len + offset) {
Willy Tarreau9b28e032012-10-12 23:49:43 +0200309 memcpy(blk, bo_ptr(chn->buf) + offset, len);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200310 return len;
311 }
312
Willy Tarreau9b28e032012-10-12 23:49:43 +0200313 memcpy(blk, bo_ptr(chn->buf) + offset, firstblock - offset);
314 memcpy(blk + firstblock - offset, chn->buf->data, len - firstblock + offset);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200315 return len;
316 }
317
Willy Tarreau9b28e032012-10-12 23:49:43 +0200318 memcpy(blk, chn->buf->data + offset - firstblock, len);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200319 return len;
320}
321
Thierry FOURNIERca16b032015-02-16 19:26:48 +0100322/* Gets one or two blocks of data at once from a channel's output buffer.
323 * Return values :
324 * >0 : number of blocks filled (1 or 2). blk1 is always filled before blk2.
325 * =0 : not enough data available. <blk*> are left undefined.
326 * <0 : no more bytes readable because output is shut.
327 * The channel status is not changed. The caller must call bo_skip() to
328 * update it. Unused buffers are left in an undefined state.
329 */
330int bo_getblk_nc(struct channel *chn, char **blk1, int *len1, char **blk2, int *len2)
331{
332 if (unlikely(chn->buf->o == 0)) {
333 if (chn->flags & CF_SHUTW)
334 return -1;
335 return 0;
336 }
337
338 if (unlikely(chn->buf->p - chn->buf->o < chn->buf->data)) {
339 *blk1 = chn->buf->p - chn->buf->o + chn->buf->size;
340 *len1 = chn->buf->data + chn->buf->size - *blk1;
341 *blk2 = chn->buf->data;
342 *len2 = chn->buf->p - chn->buf->data;
343 return 2;
344 }
345
346 *blk1 = chn->buf->p - chn->buf->o;
347 *len1 = chn->buf->o;
348 return 1;
349}
350
351/* Gets one text line out of a channel's output buffer from a stream interface.
352 * Return values :
353 * >0 : number of blocks returned (1 or 2). blk1 is always filled before blk2.
354 * =0 : not enough data available.
355 * <0 : no more bytes readable because output is shut.
356 * The '\n' is waited for as long as neither the buffer nor the output are
357 * full. If either of them is full, the string may be returned as is, without
358 * the '\n'. Unused buffers are left in an undefined state.
359 */
360int bo_getline_nc(struct channel *chn,
361 char **blk1, int *len1,
362 char **blk2, int *len2)
363{
364 int retcode;
365 int l;
366
367 retcode = bo_getblk_nc(chn, blk1, len1, blk2, len2);
368 if (unlikely(retcode) <= 0)
369 return retcode;
370
371 for (l = 0; l < *len1 && (*blk1)[l] != '\n'; l++);
372 if (l < *len1 && (*blk1)[l] == '\n') {
373 *len1 = l + 1;
374 return 1;
375 }
376
377 if (retcode >= 2) {
378 for (l = 0; l < *len2 && (*blk2)[l] != '\n'; l++);
379 if (l < *len2 && (*blk2)[l] == '\n') {
380 *len2 = l + 1;
381 return 2;
382 }
383 }
384
385 if (chn->flags & CF_SHUTW) {
386 /* If we have found no LF and the buffer is shut, then
387 * the resulting string is made of the concatenation of
388 * the pending blocks (1 or 2).
389 */
390 return retcode;
391 }
392
393 /* No LF yet and not shut yet */
394 return 0;
395}
396
397/* Gets one full block of data at once from a channel's input buffer.
398 * This function can return the data slitted in one or two blocks.
399 * Return values :
400 * >0 : number of blocks returned (1 or 2). blk1 is always filled before blk2.
401 * =0 : not enough data available.
402 * <0 : no more bytes readable because input is shut.
403 */
404int bi_getblk_nc(struct channel *chn,
405 char **blk1, int *len1,
406 char **blk2, int *len2)
407{
408 if (unlikely(chn->buf->i == 0)) {
409 if (chn->flags & CF_SHUTR)
410 return -1;
411 return 0;
412 }
413
414 if (unlikely(chn->buf->p + chn->buf->i > chn->buf->data + chn->buf->size)) {
415 *blk1 = chn->buf->p;
416 *len1 = chn->buf->data + chn->buf->size - chn->buf->p;
417 *blk2 = chn->buf->data;
418 *len2 = chn->buf->i - *len1;
419 return 2;
420 }
421
422 *blk1 = chn->buf->p;
423 *len1 = chn->buf->i;
424 return 1;
425}
426
427/* Gets one text line out of a channel's input buffer from a stream interface.
428 * Return values :
429 * >0 : number of blocks returned (1 or 2). blk1 is always filled before blk2.
430 * =0 : not enough data available.
431 * <0 : no more bytes readable because output is shut.
432 * The '\n' is waited for as long as neither the buffer nor the input are
433 * full. If either of them is full, the string may be returned as is, without
434 * the '\n'. Unused buffers are left in an undefined state.
435 */
436int bi_getline_nc(struct channel *chn,
437 char **blk1, int *len1,
438 char **blk2, int *len2)
439{
440 int retcode;
441 int l;
442
443 retcode = bi_getblk_nc(chn, blk1, len1, blk2, len2);
Thierry FOURNIER / OZON.IO500d11e2016-11-12 17:39:58 +0100444 if (unlikely(retcode <= 0))
Thierry FOURNIERca16b032015-02-16 19:26:48 +0100445 return retcode;
446
447 for (l = 0; l < *len1 && (*blk1)[l] != '\n'; l++);
448 if (l < *len1 && (*blk1)[l] == '\n') {
449 *len1 = l + 1;
450 return 1;
451 }
452
453 if (retcode >= 2) {
454 for (l = 0; l < *len2 && (*blk2)[l] != '\n'; l++);
455 if (l < *len2 && (*blk2)[l] == '\n') {
456 *len2 = l + 1;
457 return 2;
458 }
459 }
460
461 if (chn->flags & CF_SHUTW) {
462 /* If we have found no LF and the buffer is shut, then
463 * the resulting string is made of the concatenation of
464 * the pending blocks (1 or 2).
465 */
466 return retcode;
467 }
468
469 /* No LF yet and not shut yet */
470 return 0;
471}
472
Krzysztof Piotr Oledzkiba8d7d32009-10-10 21:06:03 +0200473/*
Willy Tarreaubaaee002006-06-26 02:48:02 +0200474 * Local variables:
475 * c-indent-level: 8
476 * c-basic-offset: 8
477 * End:
478 */