blob: 231d99f352e2ae4497708d70ccf96d9b9e8e5c84 [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
26 * sent as well, in the limit of the number of bytes to forward. This must be
27 * the only method to use to schedule bytes to be forwarded. If the requested
28 * 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 Tarreau0bc34932011-03-28 16:25:58 +020034 unsigned int new_forward;
Willy Tarreau02d6cfc2012-03-01 18:19:58 +010035 unsigned int forwarded;
Willy Tarreau0bc34932011-03-28 16:25:58 +020036
Willy Tarreau9b28e032012-10-12 23:49:43 +020037 forwarded = chn->buf->i;
38 b_adv(chn->buf, chn->buf->i);
Willy Tarreau0bc34932011-03-28 16:25:58 +020039
Willy Tarreau0bc34932011-03-28 16:25:58 +020040 /* Note: the case below is the only case where we may return
41 * a byte count that does not fit into a 32-bit number.
42 */
Willy Tarreau974ced62012-10-12 23:11:02 +020043 if (likely(chn->to_forward == CHN_INFINITE_FORWARD))
Willy Tarreau0bc34932011-03-28 16:25:58 +020044 return bytes;
45
Willy Tarreau03cdb7c2012-08-27 23:14:58 +020046 if (likely(bytes == CHN_INFINITE_FORWARD)) {
Willy Tarreau974ced62012-10-12 23:11:02 +020047 chn->to_forward = bytes;
Willy Tarreau02d6cfc2012-03-01 18:19:58 +010048 return bytes;
49 }
50
Willy Tarreau974ced62012-10-12 23:11:02 +020051 new_forward = chn->to_forward + bytes - forwarded;
Willy Tarreau02d6cfc2012-03-01 18:19:58 +010052 bytes = forwarded; /* at least those bytes were scheduled */
Willy Tarreau0bc34932011-03-28 16:25:58 +020053
Willy Tarreau974ced62012-10-12 23:11:02 +020054 if (new_forward <= chn->to_forward) {
Willy Tarreau0bc34932011-03-28 16:25:58 +020055 /* integer overflow detected, let's assume no more than 2G at once */
56 new_forward = MID_RANGE(new_forward);
57 }
58
Willy Tarreau974ced62012-10-12 23:11:02 +020059 if (new_forward > chn->to_forward) {
60 bytes += new_forward - chn->to_forward;
61 chn->to_forward = new_forward;
Willy Tarreau0bc34932011-03-28 16:25:58 +020062 }
63 return bytes;
64}
Willy Tarreaubaaee002006-06-26 02:48:02 +020065
Willy Tarreau8263d2b2012-08-28 00:06:31 +020066/* writes <len> bytes from message <msg> to the channel's buffer. Returns -1 in
67 * case of success, -2 if the message is larger than the buffer size, or the
68 * number of bytes available otherwise. The send limit is automatically
69 * adjusted to the amount of data written. FIXME-20060521: handle unaligned
70 * data. Note: this function appends data to the buffer's output and possibly
71 * overwrites any pending input data which are assumed not to exist.
Willy Tarreaubaaee002006-06-26 02:48:02 +020072 */
Willy Tarreau974ced62012-10-12 23:11:02 +020073int bo_inject(struct channel *chn, const char *msg, int len)
Willy Tarreaubaaee002006-06-26 02:48:02 +020074{
75 int max;
76
Willy Tarreauaeac3192009-08-31 08:09:57 +020077 if (len == 0)
78 return -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +020079
Willy Tarreau9b28e032012-10-12 23:49:43 +020080 if (len > chn->buf->size) {
Willy Tarreau078e2942009-08-18 07:19:39 +020081 /* we can't write this chunk and will never be able to, because
82 * it is larger than the buffer. This must be reported as an
83 * error. Then we return -2 so that writers that don't care can
84 * ignore it and go on, and others can check for this value.
85 */
86 return -2;
87 }
88
Willy Tarreau9b28e032012-10-12 23:49:43 +020089 max = buffer_realign(chn->buf);
Willy Tarreauaeac3192009-08-31 08:09:57 +020090
Willy Tarreaubaaee002006-06-26 02:48:02 +020091 if (len > max)
92 return max;
93
Willy Tarreau9b28e032012-10-12 23:49:43 +020094 memcpy(chn->buf->p, msg, len);
95 chn->buf->o += len;
96 chn->buf->p = b_ptr(chn->buf, len);
Willy Tarreau974ced62012-10-12 23:11:02 +020097 chn->total += len;
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +020098 return -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +020099}
100
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200101/* Tries to copy character <c> into the channel's buffer after some length
Willy Tarreau974ced62012-10-12 23:11:02 +0200102 * controls. The chn->o and to_forward pointers are updated. If the channel
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200103 * input is closed, -2 is returned. If there is not enough room left in the
104 * buffer, -1 is returned. Otherwise the number of bytes copied is returned
105 * (1). Channel flag READ_PARTIAL is updated if some data can be transferred.
Willy Tarreaud7ad9f52013-12-31 17:26:25 +0100106 * Channel flag CF_WAKE_WRITE is set if the write fails because the buffer is
107 * full.
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100108 */
Willy Tarreau974ced62012-10-12 23:11:02 +0200109int bi_putchr(struct channel *chn, char c)
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100110{
Willy Tarreau974ced62012-10-12 23:11:02 +0200111 if (unlikely(channel_input_closed(chn)))
Willy Tarreau74b08c92010-09-08 17:04:31 +0200112 return -2;
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100113
Willy Tarreau3889fff2015-01-13 20:20:10 +0100114 if (!channel_may_recv(chn)) {
Willy Tarreaud7ad9f52013-12-31 17:26:25 +0100115 chn->flags |= CF_WAKE_WRITE;
Krzysztof Piotr Oledzki8e4b21d2008-04-20 21:34:47 +0200116 return -1;
Willy Tarreaud7ad9f52013-12-31 17:26:25 +0100117 }
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100118
Willy Tarreau9b28e032012-10-12 23:49:43 +0200119 *bi_end(chn->buf) = c;
Willy Tarreau74b08c92010-09-08 17:04:31 +0200120
Willy Tarreau9b28e032012-10-12 23:49:43 +0200121 chn->buf->i++;
Willy Tarreau974ced62012-10-12 23:11:02 +0200122 chn->flags |= CF_READ_PARTIAL;
Willy Tarreau74b08c92010-09-08 17:04:31 +0200123
Willy Tarreau974ced62012-10-12 23:11:02 +0200124 if (chn->to_forward >= 1) {
125 if (chn->to_forward != CHN_INFINITE_FORWARD)
126 chn->to_forward--;
Willy Tarreau9b28e032012-10-12 23:49:43 +0200127 b_adv(chn->buf, 1);
Willy Tarreau74b08c92010-09-08 17:04:31 +0200128 }
129
Willy Tarreau974ced62012-10-12 23:11:02 +0200130 chn->total++;
Willy Tarreau74b08c92010-09-08 17:04:31 +0200131 return 1;
132}
133
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200134/* Tries to copy block <blk> at once into the channel's buffer after length
Willy Tarreau974ced62012-10-12 23:11:02 +0200135 * controls. The chn->o and to_forward pointers are updated. If the channel
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200136 * input is closed, -2 is returned. If the block is too large for this buffer,
137 * -3 is returned. If there is not enough room left in the buffer, -1 is
138 * returned. Otherwise the number of bytes copied is returned (0 being a valid
139 * number). Channel flag READ_PARTIAL is updated if some data can be
Willy Tarreaud7ad9f52013-12-31 17:26:25 +0100140 * transferred. Channel flag CF_WAKE_WRITE is set if the write fails because
141 * the buffer is full.
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 Tarreau3f5096d2015-01-14 20:21:43 +0100150 max = channel_recv_limit(chn);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200151 if (unlikely(len > max - buffer_len(chn->buf))) {
Willy Tarreau591fedc2010-08-10 15:28:21 +0200152 /* we can't write this chunk right now because the buffer is
153 * almost full or because the block is too large. Return the
154 * available space or -2 if impossible.
Willy Tarreau078e2942009-08-18 07:19:39 +0200155 */
Willy Tarreau591fedc2010-08-10 15:28:21 +0200156 if (len > max)
Willy Tarreau74b08c92010-09-08 17:04:31 +0200157 return -3;
Willy Tarreau078e2942009-08-18 07:19:39 +0200158
Willy Tarreaud7ad9f52013-12-31 17:26:25 +0100159 chn->flags |= CF_WAKE_WRITE;
Willy Tarreau74b08c92010-09-08 17:04:31 +0200160 return -1;
Willy Tarreau591fedc2010-08-10 15:28:21 +0200161 }
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100162
Willy Tarreau74b08c92010-09-08 17:04:31 +0200163 if (unlikely(len == 0))
164 return 0;
165
Willy Tarreau591fedc2010-08-10 15:28:21 +0200166 /* OK so the data fits in the buffer in one or two blocks */
Willy Tarreau285ff0f2014-04-24 17:02:57 +0200167 max = buffer_contig_space(chn->buf);
Willy Tarreau9b28e032012-10-12 23:49:43 +0200168 memcpy(bi_end(chn->buf), blk, MIN(len, max));
Willy Tarreauaeac3192009-08-31 08:09:57 +0200169 if (len > max)
Willy Tarreau9b28e032012-10-12 23:49:43 +0200170 memcpy(chn->buf->data, blk + max, len - max);
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100171
Willy Tarreau9b28e032012-10-12 23:49:43 +0200172 chn->buf->i += len;
Willy Tarreau974ced62012-10-12 23:11:02 +0200173 chn->total += len;
174 if (chn->to_forward) {
Willy Tarreau31971e52009-09-20 12:07:52 +0200175 unsigned long fwd = len;
Willy Tarreau974ced62012-10-12 23:11:02 +0200176 if (chn->to_forward != CHN_INFINITE_FORWARD) {
177 if (fwd > chn->to_forward)
178 fwd = chn->to_forward;
179 chn->to_forward -= fwd;
Willy Tarreau31971e52009-09-20 12:07:52 +0200180 }
Willy Tarreau9b28e032012-10-12 23:49:43 +0200181 b_adv(chn->buf, fwd);
Willy Tarreauaeac3192009-08-31 08:09:57 +0200182 }
183
Willy Tarreaufb0e9202009-09-23 23:47:55 +0200184 /* notify that some data was read from the SI into the buffer */
Willy Tarreau974ced62012-10-12 23:11:02 +0200185 chn->flags |= CF_READ_PARTIAL;
Willy Tarreau74b08c92010-09-08 17:04:31 +0200186 return len;
Willy Tarreauc0dde7a2007-01-01 21:38:07 +0100187}
188
Willy Tarreaub034b252014-12-08 18:14:53 +0100189/* Tries to copy the whole buffer <buf> into the channel's buffer after length
190 * controls. It will only succeed if the target buffer is empty, in which case
191 * it will simply swap the buffers. The buffer not attached to the channel is
192 * returned so that the caller can store it locally. The chn->buf->o and
193 * to_forward pointers are updated. If the output buffer is a dummy buffer or
194 * if it still contains data <buf> is returned, indicating that nothing could
195 * be done. Channel flag READ_PARTIAL is updated if some data can be transferred.
196 * The chunk's length is updated with the number of bytes sent. On errors, NULL
197 * is returned. Note that only buf->i is considered.
198 */
199struct buffer *bi_swpbuf(struct channel *chn, struct buffer *buf)
200{
201 struct buffer *old;
202
203 if (unlikely(channel_input_closed(chn)))
204 return NULL;
205
206 if (!chn->buf->size || !buffer_empty(chn->buf)) {
207 chn->flags |= CF_WAKE_WRITE;
208 return buf;
209 }
210
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);
444 if (unlikely(retcode) <= 0)
445 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 */