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 | * include/proto/channel.h |
| 3 | * Channel management definitions, macros and inline functions. |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 4 | * |
Willy Tarreau | a27dc19 | 2014-11-27 22:10:04 +0100 | [diff] [blame] | 5 | * Copyright (C) 2000-2014 Willy Tarreau - w@1wt.eu |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 6 | * |
| 7 | * This library is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU Lesser General Public |
| 9 | * License as published by the Free Software Foundation, version 2.1 |
| 10 | * exclusively. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public |
| 18 | * License along with this library; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 22 | #ifndef _PROTO_CHANNEL_H |
| 23 | #define _PROTO_CHANNEL_H |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 24 | |
Willy Tarreau | 7341d94 | 2007-05-13 19:56:02 +0200 | [diff] [blame] | 25 | #include <stdio.h> |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 26 | #include <stdlib.h> |
Willy Tarreau | 7341d94 | 2007-05-13 19:56:02 +0200 | [diff] [blame] | 27 | #include <string.h> |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 28 | |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 29 | #include <common/config.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 30 | #include <common/chunk.h> |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 31 | #include <common/ticks.h> |
Willy Tarreau | fa64558 | 2007-06-03 15:59:52 +0200 | [diff] [blame] | 32 | #include <common/time.h> |
| 33 | |
Thierry FOURNIER | ac836ba | 2014-12-16 15:41:18 +0100 | [diff] [blame] | 34 | #include <types/channel.h> |
Willy Tarreau | 7c3c541 | 2009-12-13 15:53:05 +0100 | [diff] [blame] | 35 | #include <types/global.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 36 | #include <types/stream.h> |
Willy Tarreau | 7379653 | 2014-11-28 14:10:28 +0100 | [diff] [blame] | 37 | #include <types/stream_interface.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 38 | |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 39 | #include <proto/applet.h> |
| 40 | #include <proto/task.h> |
| 41 | |
Willy Tarreau | 7341d94 | 2007-05-13 19:56:02 +0200 | [diff] [blame] | 42 | /* perform minimal intializations, report 0 in case of error, 1 if OK. */ |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 43 | int init_channel(); |
Willy Tarreau | 7341d94 | 2007-05-13 19:56:02 +0200 | [diff] [blame] | 44 | |
Willy Tarreau | 55a6906 | 2012-10-26 00:21:52 +0200 | [diff] [blame] | 45 | unsigned long long __channel_forward(struct channel *chn, unsigned long long bytes); |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 46 | |
| 47 | /* SI-to-channel functions working with buffers */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 48 | int ci_putblk(struct channel *chn, const char *str, int len); |
| 49 | struct buffer *ci_swpbuf(struct channel *chn, struct buffer *buf); |
| 50 | int ci_putchr(struct channel *chn, char c); |
Willy Tarreau | 41ab868 | 2017-10-19 14:58:40 +0200 | [diff] [blame] | 51 | int ci_getline_nc(const struct channel *chn, char **blk1, int *len1, char **blk2, int *len2); |
| 52 | int ci_getblk_nc(const struct channel *chn, char **blk1, int *len1, char **blk2, int *len2); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 53 | int co_inject(struct channel *chn, const char *msg, int len); |
Willy Tarreau | 41ab868 | 2017-10-19 14:58:40 +0200 | [diff] [blame] | 54 | int co_getline(const struct channel *chn, char *str, int len); |
| 55 | int co_getblk(const struct channel *chn, char *blk, int len, int offset); |
| 56 | int co_getline_nc(const struct channel *chn, char **blk1, int *len1, char **blk2, int *len2); |
| 57 | int co_getblk_nc(const struct channel *chn, char **blk1, int *len1, char **blk2, int *len2); |
Thierry FOURNIER | ca16b03 | 2015-02-16 19:26:48 +0100 | [diff] [blame] | 58 | |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 59 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 60 | /* returns a pointer to the stream the channel belongs to */ |
Thierry FOURNIER | 27929fb | 2015-09-25 08:36:11 +0200 | [diff] [blame] | 61 | static inline struct stream *chn_strm(const struct channel *chn) |
Willy Tarreau | d5ccfa3 | 2014-12-28 13:03:53 +0100 | [diff] [blame] | 62 | { |
| 63 | if (chn->flags & CF_ISRESP) |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 64 | return LIST_ELEM(chn, struct stream *, res); |
Willy Tarreau | d5ccfa3 | 2014-12-28 13:03:53 +0100 | [diff] [blame] | 65 | else |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 66 | return LIST_ELEM(chn, struct stream *, req); |
Willy Tarreau | d5ccfa3 | 2014-12-28 13:03:53 +0100 | [diff] [blame] | 67 | } |
| 68 | |
Willy Tarreau | 7379653 | 2014-11-28 14:10:28 +0100 | [diff] [blame] | 69 | /* returns a pointer to the stream interface feeding the channel (producer) */ |
| 70 | static inline struct stream_interface *chn_prod(const struct channel *chn) |
| 71 | { |
Willy Tarreau | 5decc05 | 2014-11-28 14:22:12 +0100 | [diff] [blame] | 72 | if (chn->flags & CF_ISRESP) |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 73 | return &LIST_ELEM(chn, struct stream *, res)->si[1]; |
Willy Tarreau | 5decc05 | 2014-11-28 14:22:12 +0100 | [diff] [blame] | 74 | else |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 75 | return &LIST_ELEM(chn, struct stream *, req)->si[0]; |
Willy Tarreau | 7379653 | 2014-11-28 14:10:28 +0100 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | /* returns a pointer to the stream interface consuming the channel (producer) */ |
| 79 | static inline struct stream_interface *chn_cons(const struct channel *chn) |
| 80 | { |
Willy Tarreau | 5decc05 | 2014-11-28 14:22:12 +0100 | [diff] [blame] | 81 | if (chn->flags & CF_ISRESP) |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 82 | return &LIST_ELEM(chn, struct stream *, res)->si[0]; |
Willy Tarreau | 5decc05 | 2014-11-28 14:22:12 +0100 | [diff] [blame] | 83 | else |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 84 | return &LIST_ELEM(chn, struct stream *, req)->si[1]; |
Willy Tarreau | 7379653 | 2014-11-28 14:10:28 +0100 | [diff] [blame] | 85 | } |
| 86 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 87 | /* Initialize all fields in the channel. */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 88 | static inline void channel_init(struct channel *chn) |
Willy Tarreau | 5446940 | 2006-07-29 16:59:06 +0200 | [diff] [blame] | 89 | { |
Willy Tarreau | 2a4b543 | 2014-11-24 11:39:34 +0100 | [diff] [blame] | 90 | chn->buf = &buf_empty; |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 91 | chn->to_forward = 0; |
Willy Tarreau | b145c78 | 2014-02-09 17:45:16 +0100 | [diff] [blame] | 92 | chn->last_read = now_ms; |
Willy Tarreau | 8f39dcd | 2014-02-09 08:31:49 +0100 | [diff] [blame] | 93 | chn->xfer_small = chn->xfer_large = 0; |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 94 | chn->total = 0; |
| 95 | chn->pipe = NULL; |
| 96 | chn->analysers = 0; |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 97 | chn->flags = 0; |
Willy Tarreau | 5446940 | 2006-07-29 16:59:06 +0200 | [diff] [blame] | 98 | } |
| 99 | |
Willy Tarreau | 55a6906 | 2012-10-26 00:21:52 +0200 | [diff] [blame] | 100 | /* Schedule up to <bytes> more bytes to be forwarded via the channel without |
| 101 | * notifying the owner task. Any data pending in the buffer are scheduled to be |
| 102 | * sent as well, in the limit of the number of bytes to forward. This must be |
| 103 | * the only method to use to schedule bytes to be forwarded. If the requested |
| 104 | * number is too large, it is automatically adjusted. The number of bytes taken |
| 105 | * into account is returned. Directly touching ->to_forward will cause lockups |
| 106 | * when buf->o goes down to zero if nobody is ready to push the remaining data. |
| 107 | */ |
| 108 | static inline unsigned long long channel_forward(struct channel *chn, unsigned long long bytes) |
| 109 | { |
| 110 | /* hint: avoid comparisons on long long for the fast case, since if the |
| 111 | * length does not fit in an unsigned it, it will never be forwarded at |
| 112 | * once anyway. |
| 113 | */ |
| 114 | if (bytes <= ~0U) { |
| 115 | unsigned int bytes32 = bytes; |
| 116 | |
| 117 | if (bytes32 <= chn->buf->i) { |
| 118 | /* OK this amount of bytes might be forwarded at once */ |
| 119 | b_adv(chn->buf, bytes32); |
| 120 | return bytes; |
| 121 | } |
| 122 | } |
| 123 | return __channel_forward(chn, bytes); |
| 124 | } |
| 125 | |
Willy Tarreau | 8bf242b | 2016-05-04 14:05:58 +0200 | [diff] [blame] | 126 | /* Forwards any input data and marks the channel for permanent forwarding */ |
| 127 | static inline void channel_forward_forever(struct channel *chn) |
| 128 | { |
| 129 | b_adv(chn->buf, chn->buf->i); |
| 130 | chn->to_forward = CHN_INFINITE_FORWARD; |
| 131 | } |
| 132 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 133 | /*********************************************************************/ |
| 134 | /* These functions are used to compute various channel content sizes */ |
| 135 | /*********************************************************************/ |
Willy Tarreau | 4b517ca | 2011-11-25 20:33:58 +0100 | [diff] [blame] | 136 | |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 137 | /* Reports non-zero if the channel is empty, which means both its |
| 138 | * buffer and pipe are empty. The construct looks strange but is |
| 139 | * jump-less and much more efficient on both 32 and 64-bit than |
| 140 | * the boolean test. |
| 141 | */ |
Willy Tarreau | 41ab868 | 2017-10-19 14:58:40 +0200 | [diff] [blame] | 142 | static inline unsigned int channel_is_empty(const struct channel *c) |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 143 | { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 144 | return !(c->buf->o | (long)c->pipe); |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 145 | } |
| 146 | |
Willy Tarreau | ba0902e | 2015-01-13 14:39:16 +0100 | [diff] [blame] | 147 | /* Returns non-zero if the channel is rewritable, which means that the buffer |
| 148 | * it is attached to has at least <maxrewrite> bytes immediately available. |
| 149 | * This is used to decide when a request or response may be parsed when some |
| 150 | * data from a previous exchange might still be present. |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 151 | */ |
Willy Tarreau | ba0902e | 2015-01-13 14:39:16 +0100 | [diff] [blame] | 152 | static inline int channel_is_rewritable(const struct channel *chn) |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 153 | { |
| 154 | int rem = chn->buf->size; |
| 155 | |
| 156 | rem -= chn->buf->o; |
| 157 | rem -= chn->buf->i; |
| 158 | rem -= global.tune.maxrewrite; |
| 159 | return rem >= 0; |
| 160 | } |
| 161 | |
Willy Tarreau | 9c06ee4 | 2015-01-14 16:08:45 +0100 | [diff] [blame] | 162 | /* Tells whether data are likely to leave the buffer. This is used to know when |
| 163 | * we can safely ignore the reserve since we know we cannot retry a connection. |
| 164 | * It returns zero if data are blocked, non-zero otherwise. |
| 165 | */ |
| 166 | static inline int channel_may_send(const struct channel *chn) |
| 167 | { |
Willy Tarreau | 7379653 | 2014-11-28 14:10:28 +0100 | [diff] [blame] | 168 | return chn_cons(chn)->state == SI_ST_EST; |
Willy Tarreau | 9c06ee4 | 2015-01-14 16:08:45 +0100 | [diff] [blame] | 169 | } |
| 170 | |
Willy Tarreau | 3889fff | 2015-01-13 20:20:10 +0100 | [diff] [blame] | 171 | /* Returns non-zero if the channel can still receive data. This is used to |
Willy Tarreau | 379357a | 2013-06-08 12:55:46 +0200 | [diff] [blame] | 172 | * decide when to stop reading into a buffer when we want to ensure that we |
| 173 | * leave the reserve untouched after all pending outgoing data are forwarded. |
| 174 | * The reserved space is taken into account if ->to_forward indicates that an |
| 175 | * end of transfer is close to happen. Note that both ->buf->o and ->to_forward |
| 176 | * are considered as available since they're supposed to leave the buffer. The |
| 177 | * test is optimized to avoid as many operations as possible for the fast case |
Willy Tarreau | 4b46a3e | 2016-04-20 20:09:22 +0200 | [diff] [blame] | 178 | * and to be used as an "if" condition. Just like channel_recv_limit(), we |
| 179 | * never allow to overwrite the reserve until the output stream interface is |
| 180 | * connected, otherwise we could spin on a POST with http-send-name-header. |
Willy Tarreau | 4b517ca | 2011-11-25 20:33:58 +0100 | [diff] [blame] | 181 | */ |
Willy Tarreau | 3889fff | 2015-01-13 20:20:10 +0100 | [diff] [blame] | 182 | static inline int channel_may_recv(const struct channel *chn) |
Willy Tarreau | 4b517ca | 2011-11-25 20:33:58 +0100 | [diff] [blame] | 183 | { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 184 | int rem = chn->buf->size; |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 185 | |
Willy Tarreau | 4428a29 | 2014-11-28 20:54:13 +0100 | [diff] [blame] | 186 | if (chn->buf == &buf_empty) |
Willy Tarreau | 3889fff | 2015-01-13 20:20:10 +0100 | [diff] [blame] | 187 | return 1; |
Willy Tarreau | 4428a29 | 2014-11-28 20:54:13 +0100 | [diff] [blame] | 188 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 189 | rem -= chn->buf->o; |
| 190 | rem -= chn->buf->i; |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 191 | if (!rem) |
Willy Tarreau | 3889fff | 2015-01-13 20:20:10 +0100 | [diff] [blame] | 192 | return 0; /* buffer already full */ |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 193 | |
Willy Tarreau | 93dc478 | 2016-04-21 12:12:45 +0200 | [diff] [blame] | 194 | if (rem > global.tune.maxrewrite) |
| 195 | return 1; /* reserve not yet reached */ |
Willy Tarreau | 4b46a3e | 2016-04-20 20:09:22 +0200 | [diff] [blame] | 196 | |
Willy Tarreau | 93dc478 | 2016-04-21 12:12:45 +0200 | [diff] [blame] | 197 | if (!channel_may_send(chn)) |
| 198 | return 0; /* don't touch reserve until we can send */ |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 199 | |
Willy Tarreau | 93dc478 | 2016-04-21 12:12:45 +0200 | [diff] [blame] | 200 | /* Now we know there's some room left in the reserve and we may |
| 201 | * forward. As long as i-to_fwd < size-maxrw, we may still |
| 202 | * receive. This is equivalent to i+maxrw-size < to_fwd, |
| 203 | * which is logical since i+maxrw-size is what overlaps with |
| 204 | * the reserve, and we want to ensure they're covered by scheduled |
| 205 | * forwards. |
| 206 | */ |
| 207 | rem = chn->buf->i + global.tune.maxrewrite - chn->buf->size; |
| 208 | return rem < 0 || (unsigned int)rem < chn->to_forward; |
Willy Tarreau | 4b517ca | 2011-11-25 20:33:58 +0100 | [diff] [blame] | 209 | } |
| 210 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 211 | /* Returns true if the channel's input is already closed */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 212 | static inline int channel_input_closed(struct channel *chn) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 213 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 214 | return ((chn->flags & CF_SHUTR) != 0); |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 215 | } |
| 216 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 217 | /* Returns true if the channel's output is already closed */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 218 | static inline int channel_output_closed(struct channel *chn) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 219 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 220 | return ((chn->flags & CF_SHUTW) != 0); |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 221 | } |
| 222 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 223 | /* Check channel timeouts, and set the corresponding flags. The likely/unlikely |
| 224 | * have been optimized for fastest normal path. The read/write timeouts are not |
| 225 | * set if there was activity on the channel. That way, we don't have to update |
| 226 | * the timeout on every I/O. Note that the analyser timeout is always checked. |
Willy Tarreau | 2eb52f0 | 2008-09-04 09:14:08 +0200 | [diff] [blame] | 227 | */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 228 | static inline void channel_check_timeouts(struct channel *chn) |
Willy Tarreau | 2eb52f0 | 2008-09-04 09:14:08 +0200 | [diff] [blame] | 229 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 230 | if (likely(!(chn->flags & (CF_SHUTR|CF_READ_TIMEOUT|CF_READ_ACTIVITY|CF_READ_NOEXP))) && |
| 231 | unlikely(tick_is_expired(chn->rex, now_ms))) |
| 232 | chn->flags |= CF_READ_TIMEOUT; |
Willy Tarreau | 2eb52f0 | 2008-09-04 09:14:08 +0200 | [diff] [blame] | 233 | |
Christopher Faulet | c5a9d5b | 2017-11-09 09:36:43 +0100 | [diff] [blame] | 234 | if (likely(!(chn->flags & (CF_SHUTW|CF_WRITE_TIMEOUT|CF_WRITE_ACTIVITY|CF_WRITE_EVENT))) && |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 235 | unlikely(tick_is_expired(chn->wex, now_ms))) |
| 236 | chn->flags |= CF_WRITE_TIMEOUT; |
Willy Tarreau | 2eb52f0 | 2008-09-04 09:14:08 +0200 | [diff] [blame] | 237 | |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 238 | if (likely(!(chn->flags & CF_ANA_TIMEOUT)) && |
| 239 | unlikely(tick_is_expired(chn->analyse_exp, now_ms))) |
| 240 | chn->flags |= CF_ANA_TIMEOUT; |
Willy Tarreau | 2eb52f0 | 2008-09-04 09:14:08 +0200 | [diff] [blame] | 241 | } |
| 242 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 243 | /* Erase any content from channel <buf> and adjusts flags accordingly. Note |
Willy Tarreau | 0abebcc | 2009-01-08 00:09:41 +0100 | [diff] [blame] | 244 | * that any spliced data is not affected since we may not have any access to |
| 245 | * it. |
Willy Tarreau | e393fe2 | 2008-08-16 22:18:07 +0200 | [diff] [blame] | 246 | */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 247 | static inline void channel_erase(struct channel *chn) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 248 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 249 | chn->to_forward = 0; |
Willy Tarreau | 474cf54 | 2014-11-24 10:54:47 +0100 | [diff] [blame] | 250 | b_reset(chn->buf); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 251 | } |
| 252 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 253 | /* marks the channel as "shutdown" ASAP for reads */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 254 | static inline void channel_shutr_now(struct channel *chn) |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 255 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 256 | chn->flags |= CF_SHUTR_NOW; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 257 | } |
| 258 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 259 | /* marks the channel as "shutdown" ASAP for writes */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 260 | static inline void channel_shutw_now(struct channel *chn) |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 261 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 262 | chn->flags |= CF_SHUTW_NOW; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 263 | } |
| 264 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 265 | /* marks the channel as "shutdown" ASAP in both directions */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 266 | static inline void channel_abort(struct channel *chn) |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 267 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 268 | chn->flags |= CF_SHUTR_NOW | CF_SHUTW_NOW; |
| 269 | chn->flags &= ~CF_AUTO_CONNECT; |
Willy Tarreau | fa7e102 | 2008-10-19 07:30:41 +0200 | [diff] [blame] | 270 | } |
| 271 | |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 272 | /* allow the consumer to try to establish a new connection. */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 273 | static inline void channel_auto_connect(struct channel *chn) |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 274 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 275 | chn->flags |= CF_AUTO_CONNECT; |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 276 | } |
| 277 | |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 278 | /* prevent the consumer from trying to establish a new connection, and also |
| 279 | * disable auto shutdown forwarding. |
| 280 | */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 281 | static inline void channel_dont_connect(struct channel *chn) |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 282 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 283 | chn->flags &= ~(CF_AUTO_CONNECT|CF_AUTO_CLOSE); |
Willy Tarreau | 3da77c5 | 2008-08-29 09:58:42 +0200 | [diff] [blame] | 284 | } |
| 285 | |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 286 | /* allow the producer to forward shutdown requests */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 287 | static inline void channel_auto_close(struct channel *chn) |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 288 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 289 | chn->flags |= CF_AUTO_CLOSE; |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 290 | } |
| 291 | |
Willy Tarreau | 520d95e | 2009-09-19 21:04:57 +0200 | [diff] [blame] | 292 | /* prevent the producer from forwarding shutdown requests */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 293 | static inline void channel_dont_close(struct channel *chn) |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 294 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 295 | chn->flags &= ~CF_AUTO_CLOSE; |
Willy Tarreau | 0a5d5dd | 2008-11-23 19:31:35 +0100 | [diff] [blame] | 296 | } |
| 297 | |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 298 | /* allow the producer to read / poll the input */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 299 | static inline void channel_auto_read(struct channel *chn) |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 300 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 301 | chn->flags &= ~CF_DONT_READ; |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | /* prevent the producer from read / poll the input */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 305 | static inline void channel_dont_read(struct channel *chn) |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 306 | { |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 307 | chn->flags |= CF_DONT_READ; |
Willy Tarreau | 90deb18 | 2010-01-07 00:20:41 +0100 | [diff] [blame] | 308 | } |
| 309 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 310 | |
| 311 | /*************************************************/ |
| 312 | /* Buffer operations in the context of a channel */ |
| 313 | /*************************************************/ |
| 314 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 315 | |
| 316 | /* Return the max number of bytes the buffer can contain so that once all the |
Willy Tarreau | 169c470 | 2016-04-20 18:05:17 +0200 | [diff] [blame] | 317 | * pending bytes are forwarded, the buffer still has global.tune.maxrewrite |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 318 | * bytes free. The result sits between chn->size - maxrewrite and chn->size. |
Willy Tarreau | 169c470 | 2016-04-20 18:05:17 +0200 | [diff] [blame] | 319 | * It is important to mention that if buf->i is already larger than size-maxrw |
| 320 | * the condition above cannot be satisfied and the lowest size will be returned |
| 321 | * anyway. The principles are the following : |
| 322 | * 0) the empty buffer has a limit of zero |
| 323 | * 1) a non-connected buffer cannot touch the reserve |
| 324 | * 2) infinite forward can always fill the buffer since all data will leave |
| 325 | * 3) all output bytes are considered in transit since they're leaving |
| 326 | * 4) all input bytes covered by to_forward are considered in transit since |
| 327 | * they'll be converted to output bytes. |
| 328 | * 5) all input bytes not covered by to_forward as considered remaining |
| 329 | * 6) all bytes scheduled to be forwarded minus what is already in the input |
| 330 | * buffer will be in transit during future rounds. |
| 331 | * 7) 4+5+6 imply that the amount of input bytes (i) is irrelevant to the max |
| 332 | * usable length, only to_forward and output count. The difference is |
| 333 | * visible when to_forward > i. |
| 334 | * 8) the reserve may be covered up to the amount of bytes in transit since |
| 335 | * these bytes will only take temporary space. |
Willy Tarreau | 999f643 | 2016-01-25 01:09:11 +0100 | [diff] [blame] | 336 | * |
Willy Tarreau | 169c470 | 2016-04-20 18:05:17 +0200 | [diff] [blame] | 337 | * A typical buffer looks like this : |
Willy Tarreau | 999f643 | 2016-01-25 01:09:11 +0100 | [diff] [blame] | 338 | * |
Willy Tarreau | 169c470 | 2016-04-20 18:05:17 +0200 | [diff] [blame] | 339 | * <-------------- max_len -----------> |
| 340 | * <---- o ----><----- i -----> <--- 0..maxrewrite ---> |
| 341 | * +------------+--------------+-------+----------------------+ |
| 342 | * |////////////|\\\\\\\\\\\\\\|xxxxxxx| reserve | |
| 343 | * +------------+--------+-----+-------+----------------------+ |
| 344 | * <- fwd -> <-avail-> |
| 345 | * |
| 346 | * Or when to_forward > i : |
| 347 | * |
| 348 | * <-------------- max_len -----------> |
| 349 | * <---- o ----><----- i -----> <--- 0..maxrewrite ---> |
| 350 | * +------------+--------------+-------+----------------------+ |
| 351 | * |////////////|\\\\\\\\\\\\\\|xxxxxxx| reserve | |
| 352 | * +------------+--------+-----+-------+----------------------+ |
| 353 | * <-avail-> |
| 354 | * <------------------ fwd ----------------> |
| 355 | * |
| 356 | * - the amount of buffer bytes in transit is : min(i, fwd) + o |
| 357 | * - some scheduled bytes may be in transit (up to fwd - i) |
| 358 | * - the reserve is max(0, maxrewrite - transit) |
| 359 | * - the maximum usable buffer length is size - reserve. |
| 360 | * - the available space is max_len - i - o |
| 361 | * |
| 362 | * So the formula to compute the buffer's maximum length to protect the reserve |
| 363 | * when reading new data is : |
| 364 | * |
| 365 | * max = size - maxrewrite + min(maxrewrite, transit) |
| 366 | * = size - max(maxrewrite - transit, 0) |
| 367 | * |
| 368 | * But WARNING! The conditions might change during the transfer and it could |
| 369 | * very well happen that a buffer would contain more bytes than max_len due to |
| 370 | * i+o already walking over the reserve (eg: after a header rewrite), including |
| 371 | * i or o alone hitting the limit. So it is critical to always consider that |
| 372 | * bounds may have already been crossed and that available space may be negative |
| 373 | * for example. Due to this it is perfectly possible for this function to return |
| 374 | * a value that is lower than current i+o. |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 375 | */ |
Willy Tarreau | 3f5096d | 2015-01-14 20:21:43 +0100 | [diff] [blame] | 376 | static inline int channel_recv_limit(const struct channel *chn) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 377 | { |
Willy Tarreau | ef907fe | 2016-05-03 17:46:24 +0200 | [diff] [blame] | 378 | unsigned int transit; |
Willy Tarreau | 999f643 | 2016-01-25 01:09:11 +0100 | [diff] [blame] | 379 | int reserve; |
| 380 | |
| 381 | /* return zero if empty */ |
| 382 | reserve = chn->buf->size; |
| 383 | if (chn->buf == &buf_empty) |
| 384 | goto end; |
| 385 | |
| 386 | /* return size - maxrewrite if we can't send */ |
| 387 | reserve = global.tune.maxrewrite; |
| 388 | if (unlikely(!channel_may_send(chn))) |
| 389 | goto end; |
| 390 | |
Willy Tarreau | ef907fe | 2016-05-03 17:46:24 +0200 | [diff] [blame] | 391 | /* We need to check what remains of the reserve after o and to_forward |
| 392 | * have been transmitted, but they can overflow together and they can |
| 393 | * cause an integer underflow in the comparison since both are unsigned |
| 394 | * while maxrewrite is signed. |
| 395 | * The code below has been verified for being a valid check for this : |
| 396 | * - if (o + to_forward) overflow => return size [ large enough ] |
| 397 | * - if o + to_forward >= maxrw => return size [ large enough ] |
| 398 | * - otherwise return size - (maxrw - (o + to_forward)) |
Willy Tarreau | 999f643 | 2016-01-25 01:09:11 +0100 | [diff] [blame] | 399 | */ |
Willy Tarreau | ef907fe | 2016-05-03 17:46:24 +0200 | [diff] [blame] | 400 | transit = chn->buf->o + chn->to_forward; |
| 401 | reserve -= transit; |
| 402 | if (transit < chn->to_forward || // addition overflow |
| 403 | transit >= (unsigned)global.tune.maxrewrite) // enough transit data |
Willy Tarreau | 169c470 | 2016-04-20 18:05:17 +0200 | [diff] [blame] | 404 | return chn->buf->size; |
Willy Tarreau | 999f643 | 2016-01-25 01:09:11 +0100 | [diff] [blame] | 405 | end: |
| 406 | return chn->buf->size - reserve; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 407 | } |
| 408 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 409 | /* Returns the amount of space available at the input of the buffer, taking the |
| 410 | * reserved space into account if ->to_forward indicates that an end of transfer |
| 411 | * is close to happen. The test is optimized to avoid as many operations as |
| 412 | * possible for the fast case. |
| 413 | */ |
Willy Tarreau | b5051f8 | 2015-01-14 20:25:34 +0100 | [diff] [blame] | 414 | static inline int channel_recv_max(const struct channel *chn) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 415 | { |
Willy Tarreau | 27bb0e1 | 2015-01-14 15:56:50 +0100 | [diff] [blame] | 416 | int ret; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 417 | |
Willy Tarreau | 3f5096d | 2015-01-14 20:21:43 +0100 | [diff] [blame] | 418 | ret = channel_recv_limit(chn) - chn->buf->i - chn->buf->o; |
Willy Tarreau | 27bb0e1 | 2015-01-14 15:56:50 +0100 | [diff] [blame] | 419 | if (ret < 0) |
| 420 | ret = 0; |
| 421 | return ret; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 422 | } |
| 423 | |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 424 | /* Allocates a buffer for channel <chn>, but only if it's guaranteed that it's |
| 425 | * not the last available buffer or it's the response buffer. Unless the buffer |
| 426 | * is the response buffer, an extra control is made so that we always keep |
| 427 | * <tune.buffers.reserved> buffers available after this allocation. Returns 0 in |
| 428 | * case of failure, non-zero otherwise. |
| 429 | * |
| 430 | * If no buffer are available, the requester, represented by <wait> pointer, |
| 431 | * will be added in the list of objects waiting for an available buffer. |
| 432 | */ |
| 433 | static inline int channel_alloc_buffer(struct channel *chn, struct buffer_wait *wait) |
| 434 | { |
| 435 | int margin = 0; |
| 436 | |
| 437 | if (!(chn->flags & CF_ISRESP)) |
| 438 | margin = global.tune.reserved_bufs; |
| 439 | |
| 440 | if (b_alloc_margin(&chn->buf, margin) != NULL) |
| 441 | return 1; |
| 442 | |
Emeric Brun | a1dd243 | 2017-06-21 15:42:52 +0200 | [diff] [blame] | 443 | if (LIST_ISEMPTY(&wait->list)) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 444 | HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 445 | LIST_ADDQ(&buffer_wq, &wait->list); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 446 | HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
Emeric Brun | a1dd243 | 2017-06-21 15:42:52 +0200 | [diff] [blame] | 447 | } |
| 448 | |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 449 | return 0; |
| 450 | } |
| 451 | |
| 452 | /* Releases a possibly allocated buffer for channel <chn>. If it was not |
| 453 | * allocated, this function does nothing. Else the buffer is released and we try |
| 454 | * to wake up as many streams/applets as possible. */ |
| 455 | static inline void channel_release_buffer(struct channel *chn, struct buffer_wait *wait) |
| 456 | { |
| 457 | if (chn->buf->size && buffer_empty(chn->buf)) { |
| 458 | b_free(&chn->buf); |
| 459 | offer_buffers(wait->target, tasks_run_queue + applets_active_queue); |
| 460 | } |
| 461 | } |
| 462 | |
Willy Tarreau | 319f745 | 2015-01-14 20:32:59 +0100 | [diff] [blame] | 463 | /* Truncate any unread data in the channel's buffer, and disable forwarding. |
| 464 | * Outgoing data are left intact. This is mainly to be used to send error |
| 465 | * messages after existing data. |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 466 | */ |
Willy Tarreau | 319f745 | 2015-01-14 20:32:59 +0100 | [diff] [blame] | 467 | static inline void channel_truncate(struct channel *chn) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 468 | { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 469 | if (!chn->buf->o) |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 470 | return channel_erase(chn); |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 471 | |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 472 | chn->to_forward = 0; |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 473 | if (!chn->buf->i) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 474 | return; |
| 475 | |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 476 | chn->buf->i = 0; |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 477 | } |
| 478 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 479 | /* |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 480 | * Advance the channel buffer's read pointer by <len> bytes. This is useful |
| 481 | * when data have been read directly from the buffer. It is illegal to call |
| 482 | * this function with <len> causing a wrapping at the end of the buffer. It's |
| 483 | * the caller's responsibility to ensure that <len> is never larger than |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 484 | * chn->o. Channel flag WRITE_PARTIAL is set. |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 485 | */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 486 | static inline void co_skip(struct channel *chn, int len) |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 487 | { |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 488 | chn->buf->o -= len; |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 489 | |
Willy Tarreau | 5fb3803 | 2012-12-16 19:39:09 +0100 | [diff] [blame] | 490 | if (buffer_empty(chn->buf)) |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 491 | chn->buf->p = chn->buf->data; |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 492 | |
Willy Tarreau | fb0e920 | 2009-09-23 23:47:55 +0200 | [diff] [blame] | 493 | /* notify that some data was written to the SI from the buffer */ |
Christopher Faulet | c5a9d5b | 2017-11-09 09:36:43 +0100 | [diff] [blame] | 494 | chn->flags |= CF_WRITE_PARTIAL | CF_WRITE_EVENT; |
Willy Tarreau | 2b7addc | 2009-08-31 07:37:22 +0200 | [diff] [blame] | 495 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 496 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 497 | /* Tries to copy chunk <chunk> into the channel's buffer after length controls. |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 498 | * The chn->o and to_forward pointers are updated. If the channel's input is |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 499 | * closed, -2 is returned. If the block is too large for this buffer, -3 is |
| 500 | * returned. If there is not enough room left in the buffer, -1 is returned. |
| 501 | * Otherwise the number of bytes copied is returned (0 being a valid number). |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 502 | * Channel flag READ_PARTIAL is updated if some data can be transferred. The |
Willy Tarreau | f941cf2 | 2012-08-27 20:53:34 +0200 | [diff] [blame] | 503 | * chunk's length is updated with the number of bytes sent. |
Willy Tarreau | aeac319 | 2009-08-31 08:09:57 +0200 | [diff] [blame] | 504 | */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 505 | static inline int ci_putchk(struct channel *chn, struct chunk *chunk) |
Willy Tarreau | aeac319 | 2009-08-31 08:09:57 +0200 | [diff] [blame] | 506 | { |
| 507 | int ret; |
| 508 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 509 | ret = ci_putblk(chn, chunk->str, chunk->len); |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 510 | if (ret > 0) |
| 511 | chunk->len -= ret; |
Willy Tarreau | aeac319 | 2009-08-31 08:09:57 +0200 | [diff] [blame] | 512 | return ret; |
| 513 | } |
| 514 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 515 | /* Tries to copy string <str> at once into the channel's buffer after length |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 516 | * controls. The chn->o and to_forward pointers are updated. If the channel's |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 517 | * input is closed, -2 is returned. If the block is too large for this buffer, |
| 518 | * -3 is returned. If there is not enough room left in the buffer, -1 is |
| 519 | * returned. Otherwise the number of bytes copied is returned (0 being a valid |
| 520 | * number). Channel flag READ_PARTIAL is updated if some data can be |
| 521 | * transferred. |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 522 | */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 523 | static inline int ci_putstr(struct channel *chn, const char *str) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 524 | { |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 525 | return ci_putblk(chn, str, strlen(str)); |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 526 | } |
| 527 | |
| 528 | /* |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 529 | * Return one char from the channel's buffer. If the buffer is empty and the |
| 530 | * channel is closed, return -2. If the buffer is just empty, return -1. The |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 531 | * buffer's pointer is not advanced, it's up to the caller to call co_skip(buf, |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 532 | * 1) when it has consumed the char. Also note that this function respects the |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 533 | * chn->o limit. |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 534 | */ |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 535 | static inline int co_getchr(struct channel *chn) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 536 | { |
| 537 | /* closed or empty + imminent close = -2; empty = -1 */ |
Willy Tarreau | 974ced6 | 2012-10-12 23:11:02 +0200 | [diff] [blame] | 538 | if (unlikely((chn->flags & CF_SHUTW) || channel_is_empty(chn))) { |
| 539 | if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 540 | return -2; |
| 541 | return -1; |
| 542 | } |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 543 | return *buffer_wrap_sub(chn->buf, chn->buf->p - chn->buf->o); |
Willy Tarreau | 74b08c9 | 2010-09-08 17:04:31 +0200 | [diff] [blame] | 544 | } |
| 545 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 546 | |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 547 | #endif /* _PROTO_CHANNEL_H */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 548 | |
| 549 | /* |
| 550 | * Local variables: |
| 551 | * c-indent-level: 8 |
| 552 | * c-basic-offset: 8 |
| 553 | * End: |
| 554 | */ |