blob: 31ca970f18b300b0c3ff980b764da5fbdb08ac32 [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>
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040022#include <netinet/tcp.h>
23
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020024#include <haproxy/api.h>
Willy Tarreau2741c8c2020-06-02 11:28:02 +020025#include <haproxy/buf.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020026#include <haproxy/connection.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020027#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020028#include <haproxy/fd.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020029#include <haproxy/global.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020030#include <haproxy/pipe.h>
Amaury Denoyellebc0adfa2023-04-28 16:46:11 +020031#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020032#include <haproxy/tools.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020033
Willy Tarreaub277d6e2012-05-11 16:59:14 +020034
Willy Tarreaue5733232019-05-22 19:24:06 +020035#if defined(USE_LINUX_SPLICE)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010036
37/* A pipe contains 16 segments max, and it's common to see segments of 1448 bytes
38 * because of timestamps. Use this as a hint for not looping on splice().
39 */
40#define SPLICE_FULL_HINT 16*1448
41
Willy Tarreaua9de3332009-11-28 07:47:10 +010042/* how many data we attempt to splice at once when the buffer is configured for
43 * infinite forwarding */
44#define MAX_SPLICE_AT_ONCE (1<<30)
45
Willy Tarreau5bd8c372009-01-19 00:32:22 +010046/* Returns :
Willy Tarreau96199b12012-08-24 00:46:52 +020047 * -1 if splice() is not supported
48 * >= 0 to report the amount of spliced bytes.
49 * connection flags are updated (error, read0, wait_room, wait_data).
50 * The caller must have previously allocated the pipe.
Willy Tarreau5bd8c372009-01-19 00:32:22 +010051 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +010052int raw_sock_to_pipe(struct connection *conn, void *xprt_ctx, struct pipe *pipe, unsigned int count)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010053{
Willy Tarreau31971e52009-09-20 12:07:52 +020054 int ret;
Willy Tarreauafad0e02012-08-09 14:45:22 +020055 int retval = 0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010056
Willy Tarreauf79c8172013-10-21 16:30:56 +020057
Willy Tarreaufd803bb2014-01-20 15:13:07 +010058 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +020059 return 0;
60
Willy Tarreau07ecfc52022-04-11 18:07:03 +020061 BUG_ON(conn->flags & CO_FL_FDLESS);
62
Willy Tarreau585744b2017-08-24 14:31:19 +020063 if (!fd_recv_ready(conn->handle.fd))
Willy Tarreaufd803bb2014-01-20 15:13:07 +010064 return 0;
65
Willy Tarreaue2a0eec2020-01-17 09:59:40 +010066 conn->flags &= ~CO_FL_WAIT_ROOM;
Willy Tarreauce3eda72013-12-05 00:49:40 +010067 errno = 0;
68
Willy Tarreau96199b12012-08-24 00:46:52 +020069 /* Under Linux, if FD_POLL_HUP is set, we have reached the end.
70 * Since older splice() implementations were buggy and returned
71 * EAGAIN on end of read, let's bypass the call to splice() now.
72 */
Willy Tarreauf5090652021-04-06 17:23:40 +020073 if (unlikely(!(fdtab[conn->handle.fd].state & FD_POLL_IN))) {
Willy Tarreau6f5d1412012-10-04 20:38:49 +020074 /* stop here if we reached the end of data */
Willy Tarreauf5090652021-04-06 17:23:40 +020075 if ((fdtab[conn->handle.fd].state & (FD_POLL_ERR|FD_POLL_HUP)) == FD_POLL_HUP)
Willy Tarreau6f5d1412012-10-04 20:38:49 +020076 goto out_read0;
77
78 /* report error on POLL_ERR before connection establishment */
Willy Tarreauf5090652021-04-06 17:23:40 +020079 if ((fdtab[conn->handle.fd].state & FD_POLL_ERR) && (conn->flags & CO_FL_WAIT_L4_CONN)) {
Willy Tarreau26f4a042013-12-04 23:44:10 +010080 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreauce3eda72013-12-05 00:49:40 +010081 errno = 0; /* let the caller do a getsockopt() if it wants it */
Willy Tarreau256b9c52017-10-25 09:30:13 +020082 goto leave;
Willy Tarreau6f5d1412012-10-04 20:38:49 +020083 }
84 }
Willy Tarreaua9de3332009-11-28 07:47:10 +010085
Willy Tarreau96199b12012-08-24 00:46:52 +020086 while (count) {
87 if (count > MAX_SPLICE_AT_ONCE)
88 count = MAX_SPLICE_AT_ONCE;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010089
Willy Tarreau585744b2017-08-24 14:31:19 +020090 ret = splice(conn->handle.fd, NULL, pipe->prod, NULL, count,
Willy Tarreau5bd8c372009-01-19 00:32:22 +010091 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
92
93 if (ret <= 0) {
Willy Tarreau38447472019-05-22 19:55:24 +020094 if (ret == 0)
Willy Tarreau96199b12012-08-24 00:46:52 +020095 goto out_read0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010096
Willy Tarreauacef5e22022-04-25 20:32:15 +020097 if (errno == EAGAIN || errno == EWOULDBLOCK) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +010098 /* there are two reasons for EAGAIN :
99 * - nothing in the socket buffer (standard)
100 * - pipe is full
Willy Tarreau38447472019-05-22 19:55:24 +0200101 * The difference between these two situations
102 * is problematic. Since we don't know if the
103 * pipe is full, we'll stop if the pipe is not
104 * empty. Anyway, we will almost always fill or
105 * empty the pipe.
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100106 */
Willy Tarreau96199b12012-08-24 00:46:52 +0200107 if (pipe->data) {
Ilya Shipitsince7b00f2020-03-23 22:28:40 +0500108 /* always stop reading until the pipe is flushed */
Willy Tarreau96199b12012-08-24 00:46:52 +0200109 conn->flags |= CO_FL_WAIT_ROOM;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100110 break;
111 }
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100112 /* socket buffer exhausted */
113 fd_cant_recv(conn->handle.fd);
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100114 break;
115 }
Willy Tarreau45b88932012-11-12 12:00:09 +0100116 else if (errno == ENOSYS || errno == EINVAL || errno == EBADF) {
Willy Tarreau96199b12012-08-24 00:46:52 +0200117 /* splice not supported on this end, disable it.
118 * We can safely return -1 since there is no
119 * chance that any data has been piped yet.
120 */
Willy Tarreau256b9c52017-10-25 09:30:13 +0200121 retval = -1;
122 goto leave;
Willy Tarreaudc340a92009-06-28 23:10:19 +0200123 }
Willy Tarreau96199b12012-08-24 00:46:52 +0200124 else if (errno == EINTR) {
125 /* try again */
126 continue;
127 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100128 /* here we have another error */
Willy Tarreau96199b12012-08-24 00:46:52 +0200129 conn->flags |= CO_FL_ERROR;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100130 break;
131 } /* ret <= 0 */
132
Willy Tarreau96199b12012-08-24 00:46:52 +0200133 retval += ret;
134 pipe->data += ret;
Willy Tarreau4fc90ef2013-04-06 11:29:39 +0200135 count -= ret;
Willy Tarreaubaf2a502013-01-07 16:38:26 +0100136
Willy Tarreau96199b12012-08-24 00:46:52 +0200137 if (pipe->data >= SPLICE_FULL_HINT || ret >= global.tune.recv_enough) {
138 /* We've read enough of it for this time, let's stop before
139 * being asked to poll.
140 */
Willy Tarreau61d39a02013-07-18 21:49:32 +0200141 conn->flags |= CO_FL_WAIT_ROOM;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100142 break;
143 }
144 } /* while */
145
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200146 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && retval)
147 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200148
149 leave:
Amaury Denoyellebc0adfa2023-04-28 16:46:11 +0200150 if (retval > 0)
151 increment_send_rate(retval, 1);
152
Willy Tarreau96199b12012-08-24 00:46:52 +0200153 return retval;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100154
Willy Tarreau96199b12012-08-24 00:46:52 +0200155 out_read0:
156 conn_sock_read0(conn);
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200157 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200158 goto leave;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100159}
160
Willy Tarreau96199b12012-08-24 00:46:52 +0200161/* Send as many bytes as possible from the pipe to the connection's socket.
162 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100163int raw_sock_from_pipe(struct connection *conn, void *xprt_ctx, struct pipe *pipe)
Willy Tarreau96199b12012-08-24 00:46:52 +0200164{
165 int ret, done;
166
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100167 if (!conn_ctrl_ready(conn))
168 return 0;
169
Willy Tarreau07ecfc52022-04-11 18:07:03 +0200170 BUG_ON(conn->flags & CO_FL_FDLESS);
171
Willy Tarreau585744b2017-08-24 14:31:19 +0200172 if (!fd_send_ready(conn->handle.fd))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200173 return 0;
174
Willy Tarreaua8c7e8e2020-01-23 18:17:55 +0100175 if (conn->flags & CO_FL_SOCK_WR_SH) {
176 /* it's already closed */
177 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH;
178 errno = EPIPE;
179 return 0;
180 }
181
Willy Tarreau96199b12012-08-24 00:46:52 +0200182 done = 0;
183 while (pipe->data) {
Willy Tarreau585744b2017-08-24 14:31:19 +0200184 ret = splice(pipe->cons, NULL, conn->handle.fd, NULL, pipe->data,
Willy Tarreau96199b12012-08-24 00:46:52 +0200185 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
186
187 if (ret <= 0) {
Willy Tarreauacef5e22022-04-25 20:32:15 +0200188 if (ret == 0 || errno == EAGAIN || errno == EWOULDBLOCK) {
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100189 fd_cant_send(conn->handle.fd);
Willy Tarreau96199b12012-08-24 00:46:52 +0200190 break;
191 }
192 else if (errno == EINTR)
193 continue;
194
195 /* here we have another error */
196 conn->flags |= CO_FL_ERROR;
197 break;
198 }
199
200 done += ret;
201 pipe->data -= ret;
202 }
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200203 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done) {
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200204 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200205 }
Willy Tarreau256b9c52017-10-25 09:30:13 +0200206
Willy Tarreau96199b12012-08-24 00:46:52 +0200207 return done;
208}
209
Willy Tarreaue5733232019-05-22 19:24:06 +0200210#endif /* USE_LINUX_SPLICE */
Willy Tarreau6b4aad42009-01-18 21:59:13 +0100211
212
Willy Tarreau2ba44652012-08-20 17:30:32 +0200213/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +0100214 * into buffer <buf>. Only one call to recv() is performed, unless the
Willy Tarreau2ba44652012-08-20 17:30:32 +0200215 * buffer wraps, in which case a second call may be performed. The connection's
216 * flags are updated with whatever special event is detected (error, read0,
217 * empty). The caller is responsible for taking care of those events and
218 * avoiding the call if inappropriate. The function does not call the
219 * connection's polling update function, so the caller is responsible for this.
Willy Tarreauce3eda72013-12-05 00:49:40 +0100220 * errno is cleared before starting so that the caller knows that if it spots an
221 * error without errno, it's pending and can be retrieved via getsockopt(SO_ERROR).
Willy Tarreau2ba44652012-08-20 17:30:32 +0200222 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100223static 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 +0200224{
Willy Tarreaubfc4d772018-07-18 11:22:03 +0200225 ssize_t ret;
226 size_t try, done = 0;
Willy Tarreau2ba44652012-08-20 17:30:32 +0200227
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100228 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200229 return 0;
230
Willy Tarreau07ecfc52022-04-11 18:07:03 +0200231 BUG_ON(conn->flags & CO_FL_FDLESS);
232
Willy Tarreau585744b2017-08-24 14:31:19 +0200233 if (!fd_recv_ready(conn->handle.fd))
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100234 return 0;
235
Willy Tarreaue2a0eec2020-01-17 09:59:40 +0100236 conn->flags &= ~CO_FL_WAIT_ROOM;
Willy Tarreauce3eda72013-12-05 00:49:40 +0100237 errno = 0;
238
Willy Tarreauf5090652021-04-06 17:23:40 +0200239 if (unlikely(!(fdtab[conn->handle.fd].state & FD_POLL_IN))) {
Willy Tarreau6f5d1412012-10-04 20:38:49 +0200240 /* stop here if we reached the end of data */
Willy Tarreauf5090652021-04-06 17:23:40 +0200241 if ((fdtab[conn->handle.fd].state & (FD_POLL_ERR|FD_POLL_HUP)) == FD_POLL_HUP)
Willy Tarreau6f5d1412012-10-04 20:38:49 +0200242 goto read0;
243
244 /* report error on POLL_ERR before connection establishment */
Willy Tarreauf5090652021-04-06 17:23:40 +0200245 if ((fdtab[conn->handle.fd].state & FD_POLL_ERR) && (conn->flags & CO_FL_WAIT_L4_CONN)) {
Willy Tarreau26f4a042013-12-04 23:44:10 +0100246 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200247 goto leave;
Willy Tarreau6f5d1412012-10-04 20:38:49 +0200248 }
249 }
Willy Tarreau2ba44652012-08-20 17:30:32 +0200250
Willy Tarreau2ba44652012-08-20 17:30:32 +0200251 /* read the largest possible block. For this, we perform only one call
252 * to recv() unless the buffer wraps and we exactly fill the first hunk,
253 * in which case we accept to do it once again. A new attempt is made on
254 * EINTR too.
255 */
Willy Tarreauabf08d92014-01-14 11:31:27 +0100256 while (count > 0) {
Willy Tarreau591d4452018-06-15 17:21:00 +0200257 try = b_contig_space(buf);
258 if (!try)
259 break;
260
Willy Tarreauabf08d92014-01-14 11:31:27 +0100261 if (try > count)
262 try = count;
263
Willy Tarreau8f9c72d2018-06-07 18:46:28 +0200264 ret = recv(conn->handle.fd, b_tail(buf), try, 0);
Willy Tarreau2ba44652012-08-20 17:30:32 +0200265
266 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +0200267 b_add(buf, ret);
Willy Tarreau2ba44652012-08-20 17:30:32 +0200268 done += ret;
269 if (ret < try) {
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100270 /* socket buffer exhausted */
271 fd_cant_recv(conn->handle.fd);
272
Willy Tarreau2ba44652012-08-20 17:30:32 +0200273 /* unfortunately, on level-triggered events, POLL_HUP
274 * is generally delivered AFTER the system buffer is
Willy Tarreau68128712017-03-13 12:04:34 +0100275 * empty, unless the poller supports POLL_RDHUP. If
276 * we know this is the case, we don't try to read more
277 * as we know there's no more available. Similarly, if
278 * there's no problem with lingering we don't even try
279 * to read an unlikely close from the client since we'll
280 * close first anyway.
Willy Tarreau2ba44652012-08-20 17:30:32 +0200281 */
Willy Tarreauf5090652021-04-06 17:23:40 +0200282 if (fdtab[conn->handle.fd].state & FD_POLL_HUP)
Willy Tarreau2ba44652012-08-20 17:30:32 +0200283 goto read0;
Willy Tarreau6c11bd22014-01-24 00:54:27 +0100284
Willy Tarreaub41a6e92021-04-06 17:49:19 +0200285 if (!(fdtab[conn->handle.fd].state & FD_LINGER_RISK) ||
Willy Tarreau68128712017-03-13 12:04:34 +0100286 (cur_poller.flags & HAP_POLL_F_RDHUP)) {
Willy Tarreau68128712017-03-13 12:04:34 +0100287 break;
288 }
Willy Tarreau2ba44652012-08-20 17:30:32 +0200289 }
290 count -= ret;
Willy Tarreau716bec22020-02-20 11:04:40 +0100291
292 if (flags & CO_RFL_READ_ONCE)
293 break;
Willy Tarreau2ba44652012-08-20 17:30:32 +0200294 }
295 else if (ret == 0) {
296 goto read0;
297 }
Willy Tarreauacef5e22022-04-25 20:32:15 +0200298 else if (errno == EAGAIN || errno == EWOULDBLOCK || errno == ENOTCONN) {
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100299 /* socket buffer exhausted */
300 fd_cant_recv(conn->handle.fd);
Willy Tarreau2ba44652012-08-20 17:30:32 +0200301 break;
302 }
303 else if (errno != EINTR) {
Willy Tarreau26f4a042013-12-04 23:44:10 +0100304 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau2ba44652012-08-20 17:30:32 +0200305 break;
306 }
307 }
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200308
309 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done)
310 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200311
312 leave:
Willy Tarreau2ba44652012-08-20 17:30:32 +0200313 return done;
314
315 read0:
316 conn_sock_read0(conn);
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200317 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreaudebdc4b2012-12-07 00:01:33 +0100318
319 /* Now a final check for a possible asynchronous low-level error
320 * report. This can happen when a connection receives a reset
321 * after a shutdown, both POLL_HUP and POLL_ERR are queued, and
322 * we might have come from there by just checking POLL_HUP instead
323 * of recv()'s return value 0, so we have no way to tell there was
324 * an error without checking.
325 */
Christopher Fauletdfefebc2022-11-18 14:52:08 +0100326 if (unlikely(!done && fdtab[conn->handle.fd].state & FD_POLL_ERR))
Willy Tarreau26f4a042013-12-04 23:44:10 +0100327 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200328 goto leave;
Willy Tarreau2ba44652012-08-20 17:30:32 +0200329}
330
331
Willy Tarreau787db9a2018-06-14 18:31:46 +0200332/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
333 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
334 * other pending data for example, but this flag is ignored at the moment.
Willy Tarreau5368d802012-08-21 18:22:06 +0200335 * Only one call to send() is performed, unless the buffer wraps, in which case
336 * a second call may be performed. The connection's flags are updated with
337 * whatever special event is detected (error, empty). The caller is responsible
338 * for taking care of those events and avoiding the call if inappropriate. The
339 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +0200340 * is responsible for this. It's up to the caller to update the buffer's contents
341 * based on the return value.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200342 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100343static 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 +0100344{
Willy Tarreau787db9a2018-06-14 18:31:46 +0200345 ssize_t ret;
346 size_t try, done;
347 int send_flag;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200348
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100349 if (!conn_ctrl_ready(conn))
350 return 0;
351
Willy Tarreau07ecfc52022-04-11 18:07:03 +0200352 BUG_ON(conn->flags & CO_FL_FDLESS);
353
Willy Tarreau585744b2017-08-24 14:31:19 +0200354 if (!fd_send_ready(conn->handle.fd))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200355 return 0;
356
Willy Tarreauc6fc7742022-08-29 16:48:14 +0200357 if (unlikely(fdtab[conn->handle.fd].state & FD_POLL_ERR)) {
358 /* an error was reported on the FD, we can't send anymore */
359 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_SOCK_RD_SH;
360 errno = EPIPE;
361 return 0;
362 }
363
Willy Tarreaua8c7e8e2020-01-23 18:17:55 +0100364 if (conn->flags & CO_FL_SOCK_WR_SH) {
365 /* it's already closed */
366 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH;
367 errno = EPIPE;
368 return 0;
369 }
370
Willy Tarreau5368d802012-08-21 18:22:06 +0200371 done = 0;
372 /* send the largest possible block. For this we perform only one call
373 * to send() unless the buffer wraps and we exactly fill the first hunk,
374 * in which case we accept to do it once again.
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100375 */
Willy Tarreau787db9a2018-06-14 18:31:46 +0200376 while (count) {
377 try = b_contig_data(buf, done);
378 if (try > count)
379 try = count;
Willy Tarreauf890dc92008-12-13 21:12:26 +0100380
Willy Tarreau5368d802012-08-21 18:22:06 +0200381 send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
Willy Tarreau787db9a2018-06-14 18:31:46 +0200382 if (try < count || flags & CO_SFL_MSG_MORE)
Willy Tarreau7e4086d2014-02-02 01:44:13 +0100383 send_flag |= MSG_MORE;
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200384
Willy Tarreau787db9a2018-06-14 18:31:46 +0200385 ret = send(conn->handle.fd, b_peek(buf, done), try, send_flag);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200386
387 if (ret > 0) {
Willy Tarreau787db9a2018-06-14 18:31:46 +0200388 count -= ret;
Willy Tarreau5368d802012-08-21 18:22:06 +0200389 done += ret;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100390
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200391 /* if the system buffer is full, don't insist */
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100392 if (ret < try) {
393 fd_cant_send(conn->handle.fd);
Willy Tarreau6996e152007-04-30 14:37:43 +0200394 break;
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100395 }
Willy Tarreau3381bf82020-01-17 17:39:35 +0100396 if (!count)
Willy Tarreau3110eb72020-02-21 10:21:46 +0100397 fd_stop_send(conn->handle.fd);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200398 }
Willy Tarreauacef5e22022-04-25 20:32:15 +0200399 else if (ret == 0 || errno == EAGAIN || errno == EWOULDBLOCK || errno == ENOTCONN || errno == EINPROGRESS) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100400 /* nothing written, we need to poll for write first */
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100401 fd_cant_send(conn->handle.fd);
Willy Tarreau5368d802012-08-21 18:22:06 +0200402 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200403 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200404 else if (errno != EINTR) {
Willy Tarreau26f4a042013-12-04 23:44:10 +0100405 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau5368d802012-08-21 18:22:06 +0200406 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200407 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200408 }
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200409 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done) {
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200410 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200411 }
Willy Tarreau256b9c52017-10-25 09:30:13 +0200412
Amaury Denoyellebc0adfa2023-04-28 16:46:11 +0200413 if (done > 0)
414 increment_send_rate(done, 0);
415
Willy Tarreau5368d802012-08-21 18:22:06 +0200416 return done;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100417}
Willy Tarreau6996e152007-04-30 14:37:43 +0200418
Willy Tarreauee1a6fc2020-01-17 07:52:13 +0100419/* Called from the upper layer, to subscribe <es> to events <event_type>. The
420 * event subscriber <es> is not allowed to change from a previous call as long
421 * as at least one event is still subscribed. The <event_type> must only be a
422 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
423 */
424static int raw_sock_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100425{
Willy Tarreauee1a6fc2020-01-17 07:52:13 +0100426 return conn_subscribe(conn, xprt_ctx, event_type, es);
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100427}
428
Willy Tarreauee1a6fc2020-01-17 07:52:13 +0100429/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
430 * The <es> pointer is not allowed to differ from the one passed to the
431 * subscribe() call. It always returns zero.
432 */
433static int raw_sock_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100434{
Willy Tarreauee1a6fc2020-01-17 07:52:13 +0100435 return conn_unsubscribe(conn, xprt_ctx, event_type, es);
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100436}
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100437
Olivier Houchardca1a57f2021-03-14 00:34:49 +0100438static void raw_sock_close(struct connection *conn, void *xprt_ctx)
439{
440 if (conn->subs != NULL) {
441 conn_unsubscribe(conn, NULL, conn->subs->events, conn->subs);
442 }
443}
444
Olivier Houchard5149b592019-05-23 17:47:36 +0200445/* We can't have an underlying XPRT, so just return -1 to signify failure */
446static int raw_sock_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
447{
448 /* This is the lowest xprt we can have, so if we get there we didn't
449 * find the xprt we wanted to remove, that's a bug
450 */
451 BUG_ON(1);
452 return -1;
453}
454
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200455/* transport-layer operations for RAW sockets */
Willy Tarreaud9f5cca2016-12-22 21:08:52 +0100456static struct xprt_ops raw_sock = {
Willy Tarreauc5788912012-08-24 18:12:41 +0200457 .snd_buf = raw_sock_from_buf,
458 .rcv_buf = raw_sock_to_buf,
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100459 .subscribe = raw_sock_subscribe,
460 .unsubscribe = raw_sock_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +0200461 .remove_xprt = raw_sock_remove_xprt,
Willy Tarreaue5733232019-05-22 19:24:06 +0200462#if defined(USE_LINUX_SPLICE)
Willy Tarreau96199b12012-08-24 00:46:52 +0200463 .rcv_pipe = raw_sock_to_pipe,
464 .snd_pipe = raw_sock_from_pipe,
465#endif
Willy Tarreauc5788912012-08-24 18:12:41 +0200466 .shutr = NULL,
467 .shutw = NULL,
Olivier Houchardca1a57f2021-03-14 00:34:49 +0100468 .close = raw_sock_close,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +0100469 .name = "RAW",
Willy Tarreau5c979a92012-05-07 17:15:39 +0200470};
Willy Tarreaubaaee002006-06-26 02:48:02 +0200471
Willy Tarreau13e14102016-12-22 20:25:26 +0100472
Olivier Houchard0d005932017-08-14 15:59:44 +0200473static void __raw_sock_init(void)
Willy Tarreau13e14102016-12-22 20:25:26 +0100474{
475 xprt_register(XPRT_RAW, &raw_sock);
476}
477
Willy Tarreau79367f92022-04-25 19:18:24 +0200478INITCALL0(STG_REGISTER, __raw_sock_init);
479
Willy Tarreaubaaee002006-06-26 02:48:02 +0200480/*
481 * Local variables:
482 * c-indent-level: 8
483 * c-basic-offset: 8
484 * End:
485 */