blob: af8cc65afb5b185d3d8e8de1820122cb4bbd2a29 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02002 * RAW transport layer over SOCK_STREAM sockets.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003 *
Willy Tarreaub277d6e2012-05-11 16:59:14 +02004 * Copyright 2000-2012 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
Willy Tarreau6b4aad42009-01-18 21:59:13 +010013#define _GNU_SOURCE
Willy Tarreaubaaee002006-06-26 02:48:02 +020014#include <errno.h>
15#include <fcntl.h>
16#include <stdio.h>
17#include <stdlib.h>
18
19#include <sys/socket.h>
20#include <sys/stat.h>
21#include <sys/types.h>
22
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040023#include <netinet/tcp.h>
24
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020025#include <haproxy/api.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020026#include <common/buffer.h>
Willy Tarreaud6f087e2008-01-18 17:20:13 +010027#include <common/debug.h>
Willy Tarreau83749182007-04-15 20:56:27 +020028#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020029#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
Willy Tarreau8b117082012-08-06 15:06:49 +020032#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020033#include <proto/fd.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020034#include <proto/freq_ctr.h>
35#include <proto/log.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010036#include <proto/pipe.h>
Willy Tarreau75bf2c92012-08-20 17:01:35 +020037#include <proto/raw_sock.h>
Willy Tarreau73b013b2012-05-21 16:31:45 +020038#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020039#include <proto/task.h>
40
Willy Tarreau5bd8c372009-01-19 00:32:22 +010041#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020042
Willy Tarreaub277d6e2012-05-11 16:59:14 +020043
Willy Tarreaue5733232019-05-22 19:24:06 +020044#if defined(USE_LINUX_SPLICE)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010045
46/* A pipe contains 16 segments max, and it's common to see segments of 1448 bytes
47 * because of timestamps. Use this as a hint for not looping on splice().
48 */
49#define SPLICE_FULL_HINT 16*1448
50
Willy Tarreaua9de3332009-11-28 07:47:10 +010051/* how many data we attempt to splice at once when the buffer is configured for
52 * infinite forwarding */
53#define MAX_SPLICE_AT_ONCE (1<<30)
54
Willy Tarreau5bd8c372009-01-19 00:32:22 +010055/* Returns :
Willy Tarreau96199b12012-08-24 00:46:52 +020056 * -1 if splice() is not supported
57 * >= 0 to report the amount of spliced bytes.
58 * connection flags are updated (error, read0, wait_room, wait_data).
59 * The caller must have previously allocated the pipe.
Willy Tarreau5bd8c372009-01-19 00:32:22 +010060 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +010061int raw_sock_to_pipe(struct connection *conn, void *xprt_ctx, struct pipe *pipe, unsigned int count)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010062{
Willy Tarreau31971e52009-09-20 12:07:52 +020063 int ret;
Willy Tarreauafad0e02012-08-09 14:45:22 +020064 int retval = 0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010065
Willy Tarreauf79c8172013-10-21 16:30:56 +020066
Willy Tarreaufd803bb2014-01-20 15:13:07 +010067 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +020068 return 0;
69
Willy Tarreau585744b2017-08-24 14:31:19 +020070 if (!fd_recv_ready(conn->handle.fd))
Willy Tarreaufd803bb2014-01-20 15:13:07 +010071 return 0;
72
Willy Tarreaue2a0eec2020-01-17 09:59:40 +010073 conn->flags &= ~CO_FL_WAIT_ROOM;
Willy Tarreauce3eda72013-12-05 00:49:40 +010074 errno = 0;
75
Willy Tarreau96199b12012-08-24 00:46:52 +020076 /* Under Linux, if FD_POLL_HUP is set, we have reached the end.
77 * Since older splice() implementations were buggy and returned
78 * EAGAIN on end of read, let's bypass the call to splice() now.
79 */
Willy Tarreau585744b2017-08-24 14:31:19 +020080 if (unlikely(!(fdtab[conn->handle.fd].ev & FD_POLL_IN))) {
Willy Tarreau6f5d1412012-10-04 20:38:49 +020081 /* stop here if we reached the end of data */
Willy Tarreau585744b2017-08-24 14:31:19 +020082 if ((fdtab[conn->handle.fd].ev & (FD_POLL_ERR|FD_POLL_HUP)) == FD_POLL_HUP)
Willy Tarreau6f5d1412012-10-04 20:38:49 +020083 goto out_read0;
84
85 /* report error on POLL_ERR before connection establishment */
Willy Tarreau585744b2017-08-24 14:31:19 +020086 if ((fdtab[conn->handle.fd].ev & FD_POLL_ERR) && (conn->flags & CO_FL_WAIT_L4_CONN)) {
Willy Tarreau26f4a042013-12-04 23:44:10 +010087 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreauce3eda72013-12-05 00:49:40 +010088 errno = 0; /* let the caller do a getsockopt() if it wants it */
Willy Tarreau256b9c52017-10-25 09:30:13 +020089 goto leave;
Willy Tarreau6f5d1412012-10-04 20:38:49 +020090 }
91 }
Willy Tarreaua9de3332009-11-28 07:47:10 +010092
Willy Tarreau96199b12012-08-24 00:46:52 +020093 while (count) {
94 if (count > MAX_SPLICE_AT_ONCE)
95 count = MAX_SPLICE_AT_ONCE;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010096
Willy Tarreau585744b2017-08-24 14:31:19 +020097 ret = splice(conn->handle.fd, NULL, pipe->prod, NULL, count,
Willy Tarreau5bd8c372009-01-19 00:32:22 +010098 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
99
100 if (ret <= 0) {
Willy Tarreau38447472019-05-22 19:55:24 +0200101 if (ret == 0)
Willy Tarreau96199b12012-08-24 00:46:52 +0200102 goto out_read0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100103
104 if (errno == EAGAIN) {
105 /* there are two reasons for EAGAIN :
106 * - nothing in the socket buffer (standard)
107 * - pipe is full
Willy Tarreau38447472019-05-22 19:55:24 +0200108 * The difference between these two situations
109 * is problematic. Since we don't know if the
110 * pipe is full, we'll stop if the pipe is not
111 * empty. Anyway, we will almost always fill or
112 * empty the pipe.
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100113 */
Willy Tarreau96199b12012-08-24 00:46:52 +0200114 if (pipe->data) {
Ilya Shipitsince7b00f2020-03-23 22:28:40 +0500115 /* always stop reading until the pipe is flushed */
Willy Tarreau96199b12012-08-24 00:46:52 +0200116 conn->flags |= CO_FL_WAIT_ROOM;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100117 break;
118 }
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100119 /* socket buffer exhausted */
120 fd_cant_recv(conn->handle.fd);
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100121 break;
122 }
Willy Tarreau45b88932012-11-12 12:00:09 +0100123 else if (errno == ENOSYS || errno == EINVAL || errno == EBADF) {
Willy Tarreau96199b12012-08-24 00:46:52 +0200124 /* splice not supported on this end, disable it.
125 * We can safely return -1 since there is no
126 * chance that any data has been piped yet.
127 */
Willy Tarreau256b9c52017-10-25 09:30:13 +0200128 retval = -1;
129 goto leave;
Willy Tarreaudc340a92009-06-28 23:10:19 +0200130 }
Willy Tarreau96199b12012-08-24 00:46:52 +0200131 else if (errno == EINTR) {
132 /* try again */
133 continue;
134 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100135 /* here we have another error */
Willy Tarreau96199b12012-08-24 00:46:52 +0200136 conn->flags |= CO_FL_ERROR;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100137 break;
138 } /* ret <= 0 */
139
Willy Tarreau96199b12012-08-24 00:46:52 +0200140 retval += ret;
141 pipe->data += ret;
Willy Tarreau4fc90ef2013-04-06 11:29:39 +0200142 count -= ret;
Willy Tarreaubaf2a502013-01-07 16:38:26 +0100143
Willy Tarreau96199b12012-08-24 00:46:52 +0200144 if (pipe->data >= SPLICE_FULL_HINT || ret >= global.tune.recv_enough) {
145 /* We've read enough of it for this time, let's stop before
146 * being asked to poll.
147 */
Willy Tarreau61d39a02013-07-18 21:49:32 +0200148 conn->flags |= CO_FL_WAIT_ROOM;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100149 break;
150 }
151 } /* while */
152
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200153 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && retval)
154 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200155
156 leave:
Willy Tarreau7cf0e452019-05-23 11:39:14 +0200157 if (retval > 0) {
158 /* we count the total bytes sent, and the send rate for 32-byte
159 * blocks. The reason for the latter is that freq_ctr are
160 * limited to 4GB and that it's not enough per second.
161 */
162 _HA_ATOMIC_ADD(&global.out_bytes, retval);
163 update_freq_ctr(&global.out_32bps, (retval + 16) / 32);
164 }
Willy Tarreau96199b12012-08-24 00:46:52 +0200165 return retval;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100166
Willy Tarreau96199b12012-08-24 00:46:52 +0200167 out_read0:
168 conn_sock_read0(conn);
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200169 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200170 goto leave;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100171}
172
Willy Tarreau96199b12012-08-24 00:46:52 +0200173/* Send as many bytes as possible from the pipe to the connection's socket.
174 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100175int raw_sock_from_pipe(struct connection *conn, void *xprt_ctx, struct pipe *pipe)
Willy Tarreau96199b12012-08-24 00:46:52 +0200176{
177 int ret, done;
178
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100179 if (!conn_ctrl_ready(conn))
180 return 0;
181
Willy Tarreau585744b2017-08-24 14:31:19 +0200182 if (!fd_send_ready(conn->handle.fd))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200183 return 0;
184
Willy Tarreaua8c7e8e2020-01-23 18:17:55 +0100185 if (conn->flags & CO_FL_SOCK_WR_SH) {
186 /* it's already closed */
187 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH;
188 errno = EPIPE;
189 return 0;
190 }
191
Willy Tarreau96199b12012-08-24 00:46:52 +0200192 done = 0;
193 while (pipe->data) {
Willy Tarreau585744b2017-08-24 14:31:19 +0200194 ret = splice(pipe->cons, NULL, conn->handle.fd, NULL, pipe->data,
Willy Tarreau96199b12012-08-24 00:46:52 +0200195 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
196
197 if (ret <= 0) {
198 if (ret == 0 || errno == EAGAIN) {
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100199 fd_cant_send(conn->handle.fd);
Willy Tarreau96199b12012-08-24 00:46:52 +0200200 break;
201 }
202 else if (errno == EINTR)
203 continue;
204
205 /* here we have another error */
206 conn->flags |= CO_FL_ERROR;
207 break;
208 }
209
210 done += ret;
211 pipe->data -= ret;
212 }
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200213 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done) {
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200214 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200215 }
Willy Tarreau256b9c52017-10-25 09:30:13 +0200216
Willy Tarreau96199b12012-08-24 00:46:52 +0200217 return done;
218}
219
Willy Tarreaue5733232019-05-22 19:24:06 +0200220#endif /* USE_LINUX_SPLICE */
Willy Tarreau6b4aad42009-01-18 21:59:13 +0100221
222
Willy Tarreau2ba44652012-08-20 17:30:32 +0200223/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +0100224 * into buffer <buf>. Only one call to recv() is performed, unless the
Willy Tarreau2ba44652012-08-20 17:30:32 +0200225 * buffer wraps, in which case a second call may be performed. The connection's
226 * flags are updated with whatever special event is detected (error, read0,
227 * empty). The caller is responsible for taking care of those events and
228 * avoiding the call if inappropriate. The function does not call the
229 * connection's polling update function, so the caller is responsible for this.
Willy Tarreauce3eda72013-12-05 00:49:40 +0100230 * errno is cleared before starting so that the caller knows that if it spots an
231 * error without errno, it's pending and can be retrieved via getsockopt(SO_ERROR).
Willy Tarreau2ba44652012-08-20 17:30:32 +0200232 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100233static size_t raw_sock_to_buf(struct connection *conn, void *xprt_ctx, struct buffer *buf, size_t count, int flags)
Willy Tarreau2ba44652012-08-20 17:30:32 +0200234{
Willy Tarreaubfc4d772018-07-18 11:22:03 +0200235 ssize_t ret;
236 size_t try, done = 0;
Willy Tarreau2ba44652012-08-20 17:30:32 +0200237
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100238 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200239 return 0;
240
Willy Tarreau585744b2017-08-24 14:31:19 +0200241 if (!fd_recv_ready(conn->handle.fd))
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100242 return 0;
243
Willy Tarreaue2a0eec2020-01-17 09:59:40 +0100244 conn->flags &= ~CO_FL_WAIT_ROOM;
Willy Tarreauce3eda72013-12-05 00:49:40 +0100245 errno = 0;
246
Willy Tarreau585744b2017-08-24 14:31:19 +0200247 if (unlikely(!(fdtab[conn->handle.fd].ev & FD_POLL_IN))) {
Willy Tarreau6f5d1412012-10-04 20:38:49 +0200248 /* stop here if we reached the end of data */
Willy Tarreau585744b2017-08-24 14:31:19 +0200249 if ((fdtab[conn->handle.fd].ev & (FD_POLL_ERR|FD_POLL_HUP)) == FD_POLL_HUP)
Willy Tarreau6f5d1412012-10-04 20:38:49 +0200250 goto read0;
251
252 /* report error on POLL_ERR before connection establishment */
Willy Tarreau585744b2017-08-24 14:31:19 +0200253 if ((fdtab[conn->handle.fd].ev & FD_POLL_ERR) && (conn->flags & CO_FL_WAIT_L4_CONN)) {
Willy Tarreau26f4a042013-12-04 23:44:10 +0100254 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200255 goto leave;
Willy Tarreau6f5d1412012-10-04 20:38:49 +0200256 }
257 }
Willy Tarreau2ba44652012-08-20 17:30:32 +0200258
Willy Tarreau2ba44652012-08-20 17:30:32 +0200259 /* read the largest possible block. For this, we perform only one call
260 * to recv() unless the buffer wraps and we exactly fill the first hunk,
261 * in which case we accept to do it once again. A new attempt is made on
262 * EINTR too.
263 */
Willy Tarreauabf08d92014-01-14 11:31:27 +0100264 while (count > 0) {
Willy Tarreau591d4452018-06-15 17:21:00 +0200265 try = b_contig_space(buf);
266 if (!try)
267 break;
268
Willy Tarreauabf08d92014-01-14 11:31:27 +0100269 if (try > count)
270 try = count;
271
Willy Tarreau8f9c72d2018-06-07 18:46:28 +0200272 ret = recv(conn->handle.fd, b_tail(buf), try, 0);
Willy Tarreau2ba44652012-08-20 17:30:32 +0200273
274 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +0200275 b_add(buf, ret);
Willy Tarreau2ba44652012-08-20 17:30:32 +0200276 done += ret;
277 if (ret < try) {
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100278 /* socket buffer exhausted */
279 fd_cant_recv(conn->handle.fd);
280
Willy Tarreau2ba44652012-08-20 17:30:32 +0200281 /* unfortunately, on level-triggered events, POLL_HUP
282 * is generally delivered AFTER the system buffer is
Willy Tarreau68128712017-03-13 12:04:34 +0100283 * empty, unless the poller supports POLL_RDHUP. If
284 * we know this is the case, we don't try to read more
285 * as we know there's no more available. Similarly, if
286 * there's no problem with lingering we don't even try
287 * to read an unlikely close from the client since we'll
288 * close first anyway.
Willy Tarreau2ba44652012-08-20 17:30:32 +0200289 */
Willy Tarreau585744b2017-08-24 14:31:19 +0200290 if (fdtab[conn->handle.fd].ev & FD_POLL_HUP)
Willy Tarreau2ba44652012-08-20 17:30:32 +0200291 goto read0;
Willy Tarreau6c11bd22014-01-24 00:54:27 +0100292
Willy Tarreau585744b2017-08-24 14:31:19 +0200293 if ((!fdtab[conn->handle.fd].linger_risk) ||
Willy Tarreau68128712017-03-13 12:04:34 +0100294 (cur_poller.flags & HAP_POLL_F_RDHUP)) {
Willy Tarreau68128712017-03-13 12:04:34 +0100295 break;
296 }
Willy Tarreau2ba44652012-08-20 17:30:32 +0200297 }
298 count -= ret;
Willy Tarreau716bec22020-02-20 11:04:40 +0100299
300 if (flags & CO_RFL_READ_ONCE)
301 break;
Willy Tarreau2ba44652012-08-20 17:30:32 +0200302 }
303 else if (ret == 0) {
304 goto read0;
305 }
Joshua M. Clulow07249032014-03-03 13:48:42 -0800306 else if (errno == EAGAIN || errno == ENOTCONN) {
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100307 /* socket buffer exhausted */
308 fd_cant_recv(conn->handle.fd);
Willy Tarreau2ba44652012-08-20 17:30:32 +0200309 break;
310 }
311 else if (errno != EINTR) {
Willy Tarreau26f4a042013-12-04 23:44:10 +0100312 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau2ba44652012-08-20 17:30:32 +0200313 break;
314 }
315 }
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200316
317 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done)
318 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200319
320 leave:
Willy Tarreau2ba44652012-08-20 17:30:32 +0200321 return done;
322
323 read0:
324 conn_sock_read0(conn);
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200325 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreaudebdc4b2012-12-07 00:01:33 +0100326
327 /* Now a final check for a possible asynchronous low-level error
328 * report. This can happen when a connection receives a reset
329 * after a shutdown, both POLL_HUP and POLL_ERR are queued, and
330 * we might have come from there by just checking POLL_HUP instead
331 * of recv()'s return value 0, so we have no way to tell there was
332 * an error without checking.
333 */
Willy Tarreau585744b2017-08-24 14:31:19 +0200334 if (unlikely(fdtab[conn->handle.fd].ev & FD_POLL_ERR))
Willy Tarreau26f4a042013-12-04 23:44:10 +0100335 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200336 goto leave;
Willy Tarreau2ba44652012-08-20 17:30:32 +0200337}
338
339
Willy Tarreau787db9a2018-06-14 18:31:46 +0200340/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
341 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
342 * other pending data for example, but this flag is ignored at the moment.
Willy Tarreau5368d802012-08-21 18:22:06 +0200343 * Only one call to send() is performed, unless the buffer wraps, in which case
344 * a second call may be performed. The connection's flags are updated with
345 * whatever special event is detected (error, empty). The caller is responsible
346 * for taking care of those events and avoiding the call if inappropriate. The
347 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +0200348 * is responsible for this. It's up to the caller to update the buffer's contents
349 * based on the return value.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200350 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100351static size_t raw_sock_from_buf(struct connection *conn, void *xprt_ctx, const struct buffer *buf, size_t count, int flags)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100352{
Willy Tarreau787db9a2018-06-14 18:31:46 +0200353 ssize_t ret;
354 size_t try, done;
355 int send_flag;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200356
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100357 if (!conn_ctrl_ready(conn))
358 return 0;
359
Willy Tarreau585744b2017-08-24 14:31:19 +0200360 if (!fd_send_ready(conn->handle.fd))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200361 return 0;
362
Willy Tarreaua8c7e8e2020-01-23 18:17:55 +0100363 if (conn->flags & CO_FL_SOCK_WR_SH) {
364 /* it's already closed */
365 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH;
366 errno = EPIPE;
367 return 0;
368 }
369
Willy Tarreau5368d802012-08-21 18:22:06 +0200370 done = 0;
371 /* send the largest possible block. For this we perform only one call
372 * to send() unless the buffer wraps and we exactly fill the first hunk,
373 * in which case we accept to do it once again.
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100374 */
Willy Tarreau787db9a2018-06-14 18:31:46 +0200375 while (count) {
376 try = b_contig_data(buf, done);
377 if (try > count)
378 try = count;
Willy Tarreauf890dc92008-12-13 21:12:26 +0100379
Willy Tarreau5368d802012-08-21 18:22:06 +0200380 send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
Willy Tarreau787db9a2018-06-14 18:31:46 +0200381 if (try < count || flags & CO_SFL_MSG_MORE)
Willy Tarreau7e4086d2014-02-02 01:44:13 +0100382 send_flag |= MSG_MORE;
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200383
Willy Tarreau787db9a2018-06-14 18:31:46 +0200384 ret = send(conn->handle.fd, b_peek(buf, done), try, send_flag);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200385
386 if (ret > 0) {
Willy Tarreau787db9a2018-06-14 18:31:46 +0200387 count -= ret;
Willy Tarreau5368d802012-08-21 18:22:06 +0200388 done += ret;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100389
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200390 /* if the system buffer is full, don't insist */
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100391 if (ret < try) {
392 fd_cant_send(conn->handle.fd);
Willy Tarreau6996e152007-04-30 14:37:43 +0200393 break;
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100394 }
Willy Tarreau3381bf82020-01-17 17:39:35 +0100395 if (!count)
Willy Tarreau3110eb72020-02-21 10:21:46 +0100396 fd_stop_send(conn->handle.fd);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200397 }
Willy Tarreau034c88c2017-01-23 23:36:45 +0100398 else if (ret == 0 || errno == EAGAIN || errno == ENOTCONN || errno == EINPROGRESS) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100399 /* nothing written, we need to poll for write first */
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100400 fd_cant_send(conn->handle.fd);
Willy Tarreau5368d802012-08-21 18:22:06 +0200401 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200402 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200403 else if (errno != EINTR) {
Willy Tarreau26f4a042013-12-04 23:44:10 +0100404 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau5368d802012-08-21 18:22:06 +0200405 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200406 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200407 }
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200408 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done) {
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200409 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200410 }
Willy Tarreau256b9c52017-10-25 09:30:13 +0200411
Willy Tarreau7cf0e452019-05-23 11:39:14 +0200412 if (done > 0) {
413 /* we count the total bytes sent, and the send rate for 32-byte
414 * blocks. The reason for the latter is that freq_ctr are
415 * limited to 4GB and that it's not enough per second.
416 */
417 _HA_ATOMIC_ADD(&global.out_bytes, done);
418 update_freq_ctr(&global.out_32bps, (done + 16) / 32);
419 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200420 return done;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100421}
Willy Tarreau6996e152007-04-30 14:37:43 +0200422
Willy Tarreauee1a6fc2020-01-17 07:52:13 +0100423/* Called from the upper layer, to subscribe <es> to events <event_type>. The
424 * event subscriber <es> is not allowed to change from a previous call as long
425 * as at least one event is still subscribed. The <event_type> must only be a
426 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
427 */
428static int raw_sock_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100429{
Willy Tarreauee1a6fc2020-01-17 07:52:13 +0100430 return conn_subscribe(conn, xprt_ctx, event_type, es);
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100431}
432
Willy Tarreauee1a6fc2020-01-17 07:52:13 +0100433/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
434 * The <es> pointer is not allowed to differ from the one passed to the
435 * subscribe() call. It always returns zero.
436 */
437static int raw_sock_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100438{
Willy Tarreauee1a6fc2020-01-17 07:52:13 +0100439 return conn_unsubscribe(conn, xprt_ctx, event_type, es);
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100440}
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100441
Olivier Houchard5149b592019-05-23 17:47:36 +0200442/* We can't have an underlying XPRT, so just return -1 to signify failure */
443static int raw_sock_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
444{
445 /* This is the lowest xprt we can have, so if we get there we didn't
446 * find the xprt we wanted to remove, that's a bug
447 */
448 BUG_ON(1);
449 return -1;
450}
451
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200452/* transport-layer operations for RAW sockets */
Willy Tarreaud9f5cca2016-12-22 21:08:52 +0100453static struct xprt_ops raw_sock = {
Willy Tarreauc5788912012-08-24 18:12:41 +0200454 .snd_buf = raw_sock_from_buf,
455 .rcv_buf = raw_sock_to_buf,
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100456 .subscribe = raw_sock_subscribe,
457 .unsubscribe = raw_sock_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +0200458 .remove_xprt = raw_sock_remove_xprt,
Willy Tarreaue5733232019-05-22 19:24:06 +0200459#if defined(USE_LINUX_SPLICE)
Willy Tarreau96199b12012-08-24 00:46:52 +0200460 .rcv_pipe = raw_sock_to_pipe,
461 .snd_pipe = raw_sock_from_pipe,
462#endif
Willy Tarreauc5788912012-08-24 18:12:41 +0200463 .shutr = NULL,
464 .shutw = NULL,
465 .close = NULL,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +0100466 .name = "RAW",
Willy Tarreau5c979a92012-05-07 17:15:39 +0200467};
Willy Tarreaubaaee002006-06-26 02:48:02 +0200468
Willy Tarreau13e14102016-12-22 20:25:26 +0100469
470__attribute__((constructor))
Olivier Houchard0d005932017-08-14 15:59:44 +0200471static void __raw_sock_init(void)
Willy Tarreau13e14102016-12-22 20:25:26 +0100472{
473 xprt_register(XPRT_RAW, &raw_sock);
474}
475
Willy Tarreaubaaee002006-06-26 02:48:02 +0200476/*
477 * Local variables:
478 * c-indent-level: 8
479 * c-basic-offset: 8
480 * End:
481 */