Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 2 | * Channel management functions. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3 | * |
Willy Tarreau | a27dc19 | 2014-11-27 22:10:04 +0100 | [diff] [blame] | 4 | * Copyright 2000-2014 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 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 Oledzki | ba8d7d3 | 2009-10-10 21:06:03 +0200 | [diff] [blame] | 13 | #include <ctype.h> |
Willy Tarreau | c0dde7a | 2007-01-01 21:38:07 +0100 | [diff] [blame] | 14 | #include <stdarg.h> |
| 15 | #include <stdio.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 16 | #include <string.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 17 | |
| 18 | #include <common/config.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 19 | #include <common/buffer.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 20 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 21 | #include <proto/channel.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 22 | |
Willy Tarreau | 7341d94 | 2007-05-13 19:56:02 +0200 | [diff] [blame] | 23 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 24 | /* 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 Tarreau | 8bf242b | 2016-05-04 14:05:58 +0200 | [diff] [blame] | 26 | * 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 Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 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 Tarreau | 0bc3493 | 2011-03-28 16:25:58 +0200 | [diff] [blame] | 31 | */ |
Willy Tarreau | 55a6906 | 2012-10-26 00:21:52 +0200 | [diff] [blame] | 32 | unsigned long long __channel_forward(struct channel *chn, unsigned long long bytes) |
Willy Tarreau | 0bc3493 | 2011-03-28 16:25:58 +0200 | [diff] [blame] | 33 | { |
Willy Tarreau | 8bf242b | 2016-05-04 14:05:58 +0200 | [diff] [blame] | 34 | unsigned int budget; |
Willy Tarreau | 02d6cfc | 2012-03-01 18:19:58 +0100 | [diff] [blame] | 35 | unsigned int forwarded; |
Willy Tarreau | 0bc3493 | 2011-03-28 16:25:58 +0200 | [diff] [blame] | 36 | |
Willy Tarreau | 8bf242b | 2016-05-04 14:05:58 +0200 | [diff] [blame] | 37 | /* This is more of a safety measure as it's not supposed to happen in |
| 38 | * regular code paths. |
Willy Tarreau | 0bc3493 | 2011-03-28 16:25:58 +0200 | [diff] [blame] | 39 | */ |
Willy Tarreau | 8bf242b | 2016-05-04 14:05:58 +0200 | [diff] [blame] | 40 | if (unlikely(chn->to_forward == CHN_INFINITE_FORWARD)) { |
Willy Tarreau | cd9e60d | 2018-06-19 07:33:28 +0200 | [diff] [blame] | 41 | c_adv(chn, ci_data(chn)); |
Willy Tarreau | 02d6cfc | 2012-03-01 18:19:58 +0100 | [diff] [blame] | 42 | return bytes; |
| 43 | } |
| 44 | |
Willy Tarreau | 8bf242b | 2016-05-04 14:05:58 +0200 | [diff] [blame] | 45 | /* 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 Tarreau | 0bc3493 | 2011-03-28 16:25:58 +0200 | [diff] [blame] | 49 | |
Willy Tarreau | 8bf242b | 2016-05-04 14:05:58 +0200 | [diff] [blame] | 50 | /* transfer as much as we can of buf->i */ |
Willy Tarreau | cd9e60d | 2018-06-19 07:33:28 +0200 | [diff] [blame] | 51 | forwarded = MIN(ci_data(chn), budget); |
Willy Tarreau | bcbd393 | 2018-06-06 07:13:22 +0200 | [diff] [blame] | 52 | c_adv(chn, forwarded); |
Willy Tarreau | 8bf242b | 2016-05-04 14:05:58 +0200 | [diff] [blame] | 53 | budget -= forwarded; |
Willy Tarreau | 0bc3493 | 2011-03-28 16:25:58 +0200 | [diff] [blame] | 54 | |
Willy Tarreau | 8bf242b | 2016-05-04 14:05:58 +0200 | [diff] [blame] | 55 | 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 Tarreau | 0bc3493 | 2011-03-28 16:25:58 +0200 | [diff] [blame] | 69 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 70 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 71 | /* 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 Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 77 | */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 78 | int co_inject(struct channel *chn, const char *msg, int len) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 79 | { |
| 80 | int max; |
| 81 | |
Willy Tarreau | aeac319 | 2009-08-31 08:09:57 +0200 | [diff] [blame] | 82 | if (len == 0) |
| 83 | return -1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 84 | |
Willy Tarreau | cd9e60d | 2018-06-19 07:33:28 +0200 | [diff] [blame] | 85 | if (len < 0 || len > c_size(chn)) { |
Willy Tarreau | 078e294 | 2009-08-18 07:19:39 +0200 | [diff] [blame] | 86 | /* 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 Tarreau | d5b343b | 2018-06-06 06:42:46 +0200 | [diff] [blame] | 94 | c_realign_if_empty(chn); |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 95 | max = b_contig_space(&chn->buf); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 96 | if (len > max) |
| 97 | return max; |
| 98 | |
Willy Tarreau | cd9e60d | 2018-06-19 07:33:28 +0200 | [diff] [blame] | 99 | memcpy(ci_tail(chn), msg, len); |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 100 | b_add(&chn->buf, len); |
Olivier Houchard | acd1403 | 2018-06-28 18:17:23 +0200 | [diff] [blame] | 101 | c_adv(chn, len); |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 102 | chn->total += len; |
Krzysztof Piotr Oledzki | 8e4b21d | 2008-04-20 21:34:47 +0200 | [diff] [blame] | 103 | return -1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 104 | } |
| 105 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 106 | /* Tries to copy character <c> into the channel's buffer after some length |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 107 | * controls. The chn->o and to_forward pointers are updated. If the channel |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 108 | * 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 Tarreau | c0dde7a | 2007-01-01 21:38:07 +0100 | [diff] [blame] | 111 | */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 112 | int ci_putchr(struct channel *chn, char c) |
Willy Tarreau | c0dde7a | 2007-01-01 21:38:07 +0100 | [diff] [blame] | 113 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 114 | if (unlikely(channel_input_closed(chn))) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 115 | return -2; |
Willy Tarreau | c0dde7a | 2007-01-01 21:38:07 +0100 | [diff] [blame] | 116 | |
Willy Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 117 | if (!channel_may_recv(chn)) |
Krzysztof Piotr Oledzki | 8e4b21d | 2008-04-20 21:34:47 +0200 | [diff] [blame] | 118 | return -1; |
Willy Tarreau | c0dde7a | 2007-01-01 21:38:07 +0100 | [diff] [blame] | 119 | |
Willy Tarreau | 8f9c72d | 2018-06-07 18:46:28 +0200 | [diff] [blame] | 120 | *ci_tail(chn) = c; |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 121 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 122 | b_add(&chn->buf, 1); |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 123 | chn->flags |= CF_READ_PARTIAL; |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 124 | |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 125 | if (chn->to_forward >= 1) { |
| 126 | if (chn->to_forward != CHN_INFINITE_FORWARD) |
| 127 | chn->to_forward--; |
Willy Tarreau | bcbd393 | 2018-06-06 07:13:22 +0200 | [diff] [blame] | 128 | c_adv(chn, 1); |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 129 | } |
| 130 | |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 131 | chn->total++; |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 132 | return 1; |
| 133 | } |
| 134 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 135 | /* Tries to copy block <blk> at once into the channel's buffer after length |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 136 | * controls. The chn->o and to_forward pointers are updated. If the channel |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 137 | * 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 Tarreau | bc18da1 | 2015-03-13 14:00:47 +0100 | [diff] [blame] | 141 | * transferred. |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 142 | */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 143 | int ci_putblk(struct channel *chn, const char *blk, int len) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 144 | { |
| 145 | int max; |
| 146 | |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 147 | if (unlikely(channel_input_closed(chn))) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 148 | return -2; |
| 149 | |
Willy Tarreau | 320ec2a | 2016-02-25 16:15:19 +0100 | [diff] [blame] | 150 | if (len < 0) |
| 151 | return -3; |
| 152 | |
Willy Tarreau | 3f5096d | 2015-01-14 20:21:43 +0100 | [diff] [blame] | 153 | max = channel_recv_limit(chn); |
Willy Tarreau | cd9e60d | 2018-06-19 07:33:28 +0200 | [diff] [blame] | 154 | if (unlikely(len > max - c_data(chn))) { |
Willy Tarreau | 591fedc | 2010-08-10 15:28:21 +0200 | [diff] [blame] | 155 | /* 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 Tarreau | 078e294 | 2009-08-18 07:19:39 +0200 | [diff] [blame] | 158 | */ |
Willy Tarreau | 591fedc | 2010-08-10 15:28:21 +0200 | [diff] [blame] | 159 | if (len > max) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 160 | return -3; |
Willy Tarreau | 078e294 | 2009-08-18 07:19:39 +0200 | [diff] [blame] | 161 | |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 162 | return -1; |
Willy Tarreau | 591fedc | 2010-08-10 15:28:21 +0200 | [diff] [blame] | 163 | } |
Willy Tarreau | c0dde7a | 2007-01-01 21:38:07 +0100 | [diff] [blame] | 164 | |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 165 | if (unlikely(len == 0)) |
| 166 | return 0; |
| 167 | |
Willy Tarreau | 591fedc | 2010-08-10 15:28:21 +0200 | [diff] [blame] | 168 | /* OK so the data fits in the buffer in one or two blocks */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 169 | max = b_contig_space(&chn->buf); |
Willy Tarreau | 8f9c72d | 2018-06-07 18:46:28 +0200 | [diff] [blame] | 170 | memcpy(ci_tail(chn), blk, MIN(len, max)); |
Willy Tarreau | aeac319 | 2009-08-31 08:09:57 +0200 | [diff] [blame] | 171 | if (len > max) |
Willy Tarreau | cd9e60d | 2018-06-19 07:33:28 +0200 | [diff] [blame] | 172 | memcpy(c_orig(chn), blk + max, len - max); |
Willy Tarreau | c0dde7a | 2007-01-01 21:38:07 +0100 | [diff] [blame] | 173 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 174 | b_add(&chn->buf, len); |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 175 | chn->total += len; |
| 176 | if (chn->to_forward) { |
Willy Tarreau | 31971e5 | 2009-09-20 12:07:52 +0200 | [diff] [blame] | 177 | unsigned long fwd = len; |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 178 | if (chn->to_forward != CHN_INFINITE_FORWARD) { |
| 179 | if (fwd > chn->to_forward) |
| 180 | fwd = chn->to_forward; |
| 181 | chn->to_forward -= fwd; |
Willy Tarreau | 31971e5 | 2009-09-20 12:07:52 +0200 | [diff] [blame] | 182 | } |
Willy Tarreau | bcbd393 | 2018-06-06 07:13:22 +0200 | [diff] [blame] | 183 | c_adv(chn, fwd); |
Willy Tarreau | aeac319 | 2009-08-31 08:09:57 +0200 | [diff] [blame] | 184 | } |
| 185 | |
Willy Tarreau | fb0e920 | 2009-09-23 23:47:55 +0200 | [diff] [blame] | 186 | /* notify that some data was read from the SI into the buffer */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 187 | chn->flags |= CF_READ_PARTIAL; |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 188 | return len; |
Willy Tarreau | c0dde7a | 2007-01-01 21:38:07 +0100 | [diff] [blame] | 189 | } |
| 190 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 191 | /* Gets one text line out of a channel's buffer from a stream interface. |
Willy Tarreau | 4fe7a2e | 2009-09-01 06:41:32 +0200 | [diff] [blame] | 192 | * Return values : |
| 193 | * >0 : number of bytes read. Includes the \n if present before len or end. |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 194 | * =0 : no '\n' before end found. <str> is left undefined. |
| 195 | * <0 : no more bytes readable because output is shut. |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 196 | * The channel status is not changed. The caller must call co_skip() to |
Willy Tarreau | 4fe7a2e | 2009-09-01 06:41:32 +0200 | [diff] [blame] | 197 | * update it. The '\n' is waited for as long as neither the buffer nor the |
| 198 | * output are full. If either of them is full, the string may be returned |
| 199 | * as is, without the '\n'. |
| 200 | */ |
Willy Tarreau | 41ab868 | 2017-10-19 14:58:40 +0200 | [diff] [blame] | 201 | int co_getline(const struct channel *chn, char *str, int len) |
Willy Tarreau | 4fe7a2e | 2009-09-01 06:41:32 +0200 | [diff] [blame] | 202 | { |
| 203 | int ret, max; |
| 204 | char *p; |
| 205 | |
| 206 | ret = 0; |
| 207 | max = len; |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 208 | |
| 209 | /* closed or empty + imminent close = -1; empty = 0 */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 210 | if (unlikely((chn->flags & CF_SHUTW) || channel_is_empty(chn))) { |
| 211 | if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) |
Willy Tarreau | 4fe7a2e | 2009-09-01 06:41:32 +0200 | [diff] [blame] | 212 | ret = -1; |
| 213 | goto out; |
| 214 | } |
| 215 | |
Willy Tarreau | cd9e60d | 2018-06-19 07:33:28 +0200 | [diff] [blame] | 216 | p = co_head(chn); |
Willy Tarreau | 4fe7a2e | 2009-09-01 06:41:32 +0200 | [diff] [blame] | 217 | |
Willy Tarreau | cd9e60d | 2018-06-19 07:33:28 +0200 | [diff] [blame] | 218 | if (max > co_data(chn)) { |
| 219 | max = co_data(chn); |
Willy Tarreau | 2e1dd3d | 2009-09-23 22:56:07 +0200 | [diff] [blame] | 220 | str[max-1] = 0; |
Willy Tarreau | 4fe7a2e | 2009-09-01 06:41:32 +0200 | [diff] [blame] | 221 | } |
| 222 | while (max) { |
| 223 | *str++ = *p; |
| 224 | ret++; |
| 225 | max--; |
| 226 | |
| 227 | if (*p == '\n') |
| 228 | break; |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 229 | p = b_next(&chn->buf, p); |
Willy Tarreau | 4fe7a2e | 2009-09-01 06:41:32 +0200 | [diff] [blame] | 230 | } |
Willy Tarreau | 82de2b6 | 2013-12-10 18:58:23 +0100 | [diff] [blame] | 231 | if (ret > 0 && ret < len && |
Willy Tarreau | cd9e60d | 2018-06-19 07:33:28 +0200 | [diff] [blame] | 232 | (ret < co_data(chn) || channel_may_recv(chn)) && |
Willy Tarreau | 2e1dd3d | 2009-09-23 22:56:07 +0200 | [diff] [blame] | 233 | *(str-1) != '\n' && |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 234 | !(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) |
Willy Tarreau | 4fe7a2e | 2009-09-01 06:41:32 +0200 | [diff] [blame] | 235 | ret = 0; |
| 236 | out: |
| 237 | if (max) |
| 238 | *str = 0; |
| 239 | return ret; |
| 240 | } |
| 241 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 242 | /* Gets one full block of data at once from a channel's buffer, optionally from |
| 243 | * a specific offset. Return values : |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 244 | * >0 : number of bytes read, equal to requested size. |
| 245 | * =0 : not enough data available. <blk> is left undefined. |
| 246 | * <0 : no more bytes readable because output is shut. |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 247 | * The channel status is not changed. The caller must call co_skip() to |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 248 | * update it. |
| 249 | */ |
Willy Tarreau | 41ab868 | 2017-10-19 14:58:40 +0200 | [diff] [blame] | 250 | int co_getblk(const struct channel *chn, char *blk, int len, int offset) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 251 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 252 | if (chn->flags & CF_SHUTW) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 253 | return -1; |
| 254 | |
Willy Tarreau | 90ed383 | 2018-06-15 14:20:26 +0200 | [diff] [blame] | 255 | if (len + offset > co_data(chn)) { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 256 | if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 257 | return -1; |
| 258 | return 0; |
| 259 | } |
| 260 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 261 | return b_getblk(&chn->buf, blk, len, offset); |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 262 | } |
| 263 | |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 264 | /* Gets one or two blocks of data at once from a channel's output buffer. |
| 265 | * Return values : |
| 266 | * >0 : number of blocks filled (1 or 2). blk1 is always filled before blk2. |
| 267 | * =0 : not enough data available. <blk*> are left undefined. |
| 268 | * <0 : no more bytes readable because output is shut. |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 269 | * The channel status is not changed. The caller must call co_skip() to |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 270 | * update it. Unused buffers are left in an undefined state. |
| 271 | */ |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 272 | int co_getblk_nc(const struct channel *chn, const char **blk1, size_t *len1, const char **blk2, size_t *len2) |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 273 | { |
Willy Tarreau | cd9e60d | 2018-06-19 07:33:28 +0200 | [diff] [blame] | 274 | if (unlikely(co_data(chn) == 0)) { |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 275 | if (chn->flags & CF_SHUTW) |
| 276 | return -1; |
| 277 | return 0; |
| 278 | } |
| 279 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 280 | return b_getblk_nc(&chn->buf, blk1, len1, blk2, len2, 0, co_data(chn)); |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | /* Gets one text line out of a channel's output buffer from a stream interface. |
| 284 | * Return values : |
| 285 | * >0 : number of blocks returned (1 or 2). blk1 is always filled before blk2. |
| 286 | * =0 : not enough data available. |
| 287 | * <0 : no more bytes readable because output is shut. |
| 288 | * The '\n' is waited for as long as neither the buffer nor the output are |
| 289 | * full. If either of them is full, the string may be returned as is, without |
| 290 | * the '\n'. Unused buffers are left in an undefined state. |
| 291 | */ |
Willy Tarreau | 41ab868 | 2017-10-19 14:58:40 +0200 | [diff] [blame] | 292 | int co_getline_nc(const struct channel *chn, |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 293 | const char **blk1, size_t *len1, |
| 294 | const char **blk2, size_t *len2) |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 295 | { |
| 296 | int retcode; |
| 297 | int l; |
| 298 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 299 | retcode = co_getblk_nc(chn, blk1, len1, blk2, len2); |
Tim Duesterhus | 45be38c | 2018-04-24 19:20:43 +0200 | [diff] [blame] | 300 | if (unlikely(retcode <= 0)) |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 301 | return retcode; |
| 302 | |
| 303 | for (l = 0; l < *len1 && (*blk1)[l] != '\n'; l++); |
| 304 | if (l < *len1 && (*blk1)[l] == '\n') { |
| 305 | *len1 = l + 1; |
| 306 | return 1; |
| 307 | } |
| 308 | |
| 309 | if (retcode >= 2) { |
| 310 | for (l = 0; l < *len2 && (*blk2)[l] != '\n'; l++); |
| 311 | if (l < *len2 && (*blk2)[l] == '\n') { |
| 312 | *len2 = l + 1; |
| 313 | return 2; |
| 314 | } |
| 315 | } |
| 316 | |
| 317 | if (chn->flags & CF_SHUTW) { |
| 318 | /* If we have found no LF and the buffer is shut, then |
| 319 | * the resulting string is made of the concatenation of |
| 320 | * the pending blocks (1 or 2). |
| 321 | */ |
| 322 | return retcode; |
| 323 | } |
| 324 | |
| 325 | /* No LF yet and not shut yet */ |
| 326 | return 0; |
| 327 | } |
| 328 | |
| 329 | /* Gets one full block of data at once from a channel's input buffer. |
| 330 | * This function can return the data slitted in one or two blocks. |
| 331 | * Return values : |
| 332 | * >0 : number of blocks returned (1 or 2). blk1 is always filled before blk2. |
| 333 | * =0 : not enough data available. |
| 334 | * <0 : no more bytes readable because input is shut. |
| 335 | */ |
Willy Tarreau | 41ab868 | 2017-10-19 14:58:40 +0200 | [diff] [blame] | 336 | int ci_getblk_nc(const struct channel *chn, |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 337 | char **blk1, size_t *len1, |
| 338 | char **blk2, size_t *len2) |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 339 | { |
Willy Tarreau | cd9e60d | 2018-06-19 07:33:28 +0200 | [diff] [blame] | 340 | if (unlikely(ci_data(chn) == 0)) { |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 341 | if (chn->flags & CF_SHUTR) |
| 342 | return -1; |
| 343 | return 0; |
| 344 | } |
| 345 | |
Willy Tarreau | cd9e60d | 2018-06-19 07:33:28 +0200 | [diff] [blame] | 346 | if (unlikely(ci_head(chn) + ci_data(chn) > c_wrap(chn))) { |
| 347 | *blk1 = ci_head(chn); |
| 348 | *len1 = c_wrap(chn) - ci_head(chn); |
| 349 | *blk2 = c_orig(chn); |
| 350 | *len2 = ci_data(chn) - *len1; |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 351 | return 2; |
| 352 | } |
| 353 | |
Willy Tarreau | cd9e60d | 2018-06-19 07:33:28 +0200 | [diff] [blame] | 354 | *blk1 = ci_head(chn); |
| 355 | *len1 = ci_data(chn); |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 356 | return 1; |
| 357 | } |
| 358 | |
| 359 | /* Gets one text line out of a channel's input buffer from a stream interface. |
| 360 | * Return values : |
| 361 | * >0 : number of blocks returned (1 or 2). blk1 is always filled before blk2. |
| 362 | * =0 : not enough data available. |
| 363 | * <0 : no more bytes readable because output is shut. |
| 364 | * The '\n' is waited for as long as neither the buffer nor the input are |
| 365 | * full. If either of them is full, the string may be returned as is, without |
| 366 | * the '\n'. Unused buffers are left in an undefined state. |
| 367 | */ |
Willy Tarreau | 41ab868 | 2017-10-19 14:58:40 +0200 | [diff] [blame] | 368 | int ci_getline_nc(const struct channel *chn, |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 369 | char **blk1, size_t *len1, |
| 370 | char **blk2, size_t *len2) |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 371 | { |
| 372 | int retcode; |
| 373 | int l; |
| 374 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 375 | retcode = ci_getblk_nc(chn, blk1, len1, blk2, len2); |
Thierry FOURNIER / OZON.IO | 500d11e | 2016-11-12 17:39:58 +0100 | [diff] [blame] | 376 | if (unlikely(retcode <= 0)) |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 377 | return retcode; |
| 378 | |
| 379 | for (l = 0; l < *len1 && (*blk1)[l] != '\n'; l++); |
| 380 | if (l < *len1 && (*blk1)[l] == '\n') { |
| 381 | *len1 = l + 1; |
| 382 | return 1; |
| 383 | } |
| 384 | |
| 385 | if (retcode >= 2) { |
| 386 | for (l = 0; l < *len2 && (*blk2)[l] != '\n'; l++); |
| 387 | if (l < *len2 && (*blk2)[l] == '\n') { |
| 388 | *len2 = l + 1; |
| 389 | return 2; |
| 390 | } |
| 391 | } |
| 392 | |
| 393 | if (chn->flags & CF_SHUTW) { |
| 394 | /* If we have found no LF and the buffer is shut, then |
| 395 | * the resulting string is made of the concatenation of |
| 396 | * the pending blocks (1 or 2). |
| 397 | */ |
| 398 | return retcode; |
| 399 | } |
| 400 | |
| 401 | /* No LF yet and not shut yet */ |
| 402 | return 0; |
| 403 | } |
| 404 | |
Willy Tarreau | 4d893d4 | 2018-07-12 15:43:32 +0200 | [diff] [blame] | 405 | /* Inserts <str> followed by "\r\n" at position <pos> relative to channel <c>'s |
| 406 | * input head. The <len> argument informs about the length of string <str> so |
| 407 | * that we don't have to measure it. <str> must be a valid pointer and must not |
| 408 | * include the trailing "\r\n". |
| 409 | * |
| 410 | * The number of bytes added is returned on success. 0 is returned on failure. |
| 411 | */ |
| 412 | int ci_insert_line2(struct channel *c, int pos, const char *str, int len) |
| 413 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 414 | struct buffer *b = &c->buf; |
Willy Tarreau | 4d893d4 | 2018-07-12 15:43:32 +0200 | [diff] [blame] | 415 | char *dst = c_ptr(c, pos); |
| 416 | int delta; |
| 417 | |
| 418 | delta = len + 2; |
| 419 | |
Olivier Houchard | 363c745 | 2018-09-26 15:09:58 +0200 | [diff] [blame] | 420 | if (__b_tail(b) + delta >= b_wrap(b)) |
Willy Tarreau | 4d893d4 | 2018-07-12 15:43:32 +0200 | [diff] [blame] | 421 | return 0; /* no space left */ |
| 422 | |
| 423 | if (b_data(b) && |
| 424 | b_tail(b) + delta > b_head(b) && |
| 425 | b_head(b) >= b_tail(b)) |
| 426 | return 0; /* no space left before wrapping data */ |
| 427 | |
| 428 | /* first, protect the end of the buffer */ |
| 429 | memmove(dst + delta, dst, b_tail(b) - dst); |
| 430 | |
| 431 | /* now, copy str over dst */ |
| 432 | memcpy(dst, str, len); |
| 433 | dst[len] = '\r'; |
| 434 | dst[len + 1] = '\n'; |
| 435 | |
| 436 | b_add(b, delta); |
| 437 | return delta; |
| 438 | } |
| 439 | |
Krzysztof Piotr Oledzki | ba8d7d3 | 2009-10-10 21:06:03 +0200 | [diff] [blame] | 440 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 441 | * Local variables: |
| 442 | * c-indent-level: 8 |
| 443 | * c-basic-offset: 8 |
| 444 | * End: |
| 445 | */ |