blob: 3453aac1ba6e968afc40fb37505cb04c5e40beb4 [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 Tarreau2741c8c2020-06-02 11:28:02 +020026#include <haproxy/buf.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020027#include <haproxy/connection.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020028#include <haproxy/global.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020029#include <haproxy/stream_interface.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020030#include <haproxy/tools.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020031#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020032#include <haproxy/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020033
Willy Tarreau0f6ffd62020-06-03 19:33:00 +020034#include <haproxy/fd.h>
Willy Tarreau66347942020-06-01 12:18:08 +020035#include <haproxy/freq_ctr.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020036#include <proto/log.h>
Willy Tarreau551271d2020-06-04 08:32:23 +020037#include <haproxy/pipe.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038
Willy Tarreaub277d6e2012-05-11 16:59:14 +020039
Willy Tarreaue5733232019-05-22 19:24:06 +020040#if defined(USE_LINUX_SPLICE)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010041
42/* A pipe contains 16 segments max, and it's common to see segments of 1448 bytes
43 * because of timestamps. Use this as a hint for not looping on splice().
44 */
45#define SPLICE_FULL_HINT 16*1448
46
Willy Tarreaua9de3332009-11-28 07:47:10 +010047/* how many data we attempt to splice at once when the buffer is configured for
48 * infinite forwarding */
49#define MAX_SPLICE_AT_ONCE (1<<30)
50
Willy Tarreau5bd8c372009-01-19 00:32:22 +010051/* Returns :
Willy Tarreau96199b12012-08-24 00:46:52 +020052 * -1 if splice() is not supported
53 * >= 0 to report the amount of spliced bytes.
54 * connection flags are updated (error, read0, wait_room, wait_data).
55 * The caller must have previously allocated the pipe.
Willy Tarreau5bd8c372009-01-19 00:32:22 +010056 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +010057int raw_sock_to_pipe(struct connection *conn, void *xprt_ctx, struct pipe *pipe, unsigned int count)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010058{
Willy Tarreau31971e52009-09-20 12:07:52 +020059 int ret;
Willy Tarreauafad0e02012-08-09 14:45:22 +020060 int retval = 0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010061
Willy Tarreauf79c8172013-10-21 16:30:56 +020062
Willy Tarreaufd803bb2014-01-20 15:13:07 +010063 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +020064 return 0;
65
Willy Tarreau585744b2017-08-24 14:31:19 +020066 if (!fd_recv_ready(conn->handle.fd))
Willy Tarreaufd803bb2014-01-20 15:13:07 +010067 return 0;
68
Willy Tarreaue2a0eec2020-01-17 09:59:40 +010069 conn->flags &= ~CO_FL_WAIT_ROOM;
Willy Tarreauce3eda72013-12-05 00:49:40 +010070 errno = 0;
71
Willy Tarreau96199b12012-08-24 00:46:52 +020072 /* Under Linux, if FD_POLL_HUP is set, we have reached the end.
73 * Since older splice() implementations were buggy and returned
74 * EAGAIN on end of read, let's bypass the call to splice() now.
75 */
Willy Tarreau585744b2017-08-24 14:31:19 +020076 if (unlikely(!(fdtab[conn->handle.fd].ev & FD_POLL_IN))) {
Willy Tarreau6f5d1412012-10-04 20:38:49 +020077 /* stop here if we reached the end of data */
Willy Tarreau585744b2017-08-24 14:31:19 +020078 if ((fdtab[conn->handle.fd].ev & (FD_POLL_ERR|FD_POLL_HUP)) == FD_POLL_HUP)
Willy Tarreau6f5d1412012-10-04 20:38:49 +020079 goto out_read0;
80
81 /* report error on POLL_ERR before connection establishment */
Willy Tarreau585744b2017-08-24 14:31:19 +020082 if ((fdtab[conn->handle.fd].ev & FD_POLL_ERR) && (conn->flags & CO_FL_WAIT_L4_CONN)) {
Willy Tarreau26f4a042013-12-04 23:44:10 +010083 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreauce3eda72013-12-05 00:49:40 +010084 errno = 0; /* let the caller do a getsockopt() if it wants it */
Willy Tarreau256b9c52017-10-25 09:30:13 +020085 goto leave;
Willy Tarreau6f5d1412012-10-04 20:38:49 +020086 }
87 }
Willy Tarreaua9de3332009-11-28 07:47:10 +010088
Willy Tarreau96199b12012-08-24 00:46:52 +020089 while (count) {
90 if (count > MAX_SPLICE_AT_ONCE)
91 count = MAX_SPLICE_AT_ONCE;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010092
Willy Tarreau585744b2017-08-24 14:31:19 +020093 ret = splice(conn->handle.fd, NULL, pipe->prod, NULL, count,
Willy Tarreau5bd8c372009-01-19 00:32:22 +010094 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
95
96 if (ret <= 0) {
Willy Tarreau38447472019-05-22 19:55:24 +020097 if (ret == 0)
Willy Tarreau96199b12012-08-24 00:46:52 +020098 goto out_read0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010099
100 if (errno == EAGAIN) {
101 /* there are two reasons for EAGAIN :
102 * - nothing in the socket buffer (standard)
103 * - pipe is full
Willy Tarreau38447472019-05-22 19:55:24 +0200104 * The difference between these two situations
105 * is problematic. Since we don't know if the
106 * pipe is full, we'll stop if the pipe is not
107 * empty. Anyway, we will almost always fill or
108 * empty the pipe.
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100109 */
Willy Tarreau96199b12012-08-24 00:46:52 +0200110 if (pipe->data) {
Ilya Shipitsince7b00f2020-03-23 22:28:40 +0500111 /* always stop reading until the pipe is flushed */
Willy Tarreau96199b12012-08-24 00:46:52 +0200112 conn->flags |= CO_FL_WAIT_ROOM;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100113 break;
114 }
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100115 /* socket buffer exhausted */
116 fd_cant_recv(conn->handle.fd);
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100117 break;
118 }
Willy Tarreau45b88932012-11-12 12:00:09 +0100119 else if (errno == ENOSYS || errno == EINVAL || errno == EBADF) {
Willy Tarreau96199b12012-08-24 00:46:52 +0200120 /* splice not supported on this end, disable it.
121 * We can safely return -1 since there is no
122 * chance that any data has been piped yet.
123 */
Willy Tarreau256b9c52017-10-25 09:30:13 +0200124 retval = -1;
125 goto leave;
Willy Tarreaudc340a92009-06-28 23:10:19 +0200126 }
Willy Tarreau96199b12012-08-24 00:46:52 +0200127 else if (errno == EINTR) {
128 /* try again */
129 continue;
130 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100131 /* here we have another error */
Willy Tarreau96199b12012-08-24 00:46:52 +0200132 conn->flags |= CO_FL_ERROR;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100133 break;
134 } /* ret <= 0 */
135
Willy Tarreau96199b12012-08-24 00:46:52 +0200136 retval += ret;
137 pipe->data += ret;
Willy Tarreau4fc90ef2013-04-06 11:29:39 +0200138 count -= ret;
Willy Tarreaubaf2a502013-01-07 16:38:26 +0100139
Willy Tarreau96199b12012-08-24 00:46:52 +0200140 if (pipe->data >= SPLICE_FULL_HINT || ret >= global.tune.recv_enough) {
141 /* We've read enough of it for this time, let's stop before
142 * being asked to poll.
143 */
Willy Tarreau61d39a02013-07-18 21:49:32 +0200144 conn->flags |= CO_FL_WAIT_ROOM;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100145 break;
146 }
147 } /* while */
148
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200149 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && retval)
150 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200151
152 leave:
Willy Tarreau7cf0e452019-05-23 11:39:14 +0200153 if (retval > 0) {
154 /* we count the total bytes sent, and the send rate for 32-byte
155 * blocks. The reason for the latter is that freq_ctr are
156 * limited to 4GB and that it's not enough per second.
157 */
158 _HA_ATOMIC_ADD(&global.out_bytes, retval);
159 update_freq_ctr(&global.out_32bps, (retval + 16) / 32);
160 }
Willy Tarreau96199b12012-08-24 00:46:52 +0200161 return retval;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100162
Willy Tarreau96199b12012-08-24 00:46:52 +0200163 out_read0:
164 conn_sock_read0(conn);
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200165 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200166 goto leave;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100167}
168
Willy Tarreau96199b12012-08-24 00:46:52 +0200169/* Send as many bytes as possible from the pipe to the connection's socket.
170 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100171int raw_sock_from_pipe(struct connection *conn, void *xprt_ctx, struct pipe *pipe)
Willy Tarreau96199b12012-08-24 00:46:52 +0200172{
173 int ret, done;
174
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100175 if (!conn_ctrl_ready(conn))
176 return 0;
177
Willy Tarreau585744b2017-08-24 14:31:19 +0200178 if (!fd_send_ready(conn->handle.fd))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200179 return 0;
180
Willy Tarreaua8c7e8e2020-01-23 18:17:55 +0100181 if (conn->flags & CO_FL_SOCK_WR_SH) {
182 /* it's already closed */
183 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH;
184 errno = EPIPE;
185 return 0;
186 }
187
Willy Tarreau96199b12012-08-24 00:46:52 +0200188 done = 0;
189 while (pipe->data) {
Willy Tarreau585744b2017-08-24 14:31:19 +0200190 ret = splice(pipe->cons, NULL, conn->handle.fd, NULL, pipe->data,
Willy Tarreau96199b12012-08-24 00:46:52 +0200191 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
192
193 if (ret <= 0) {
194 if (ret == 0 || errno == EAGAIN) {
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100195 fd_cant_send(conn->handle.fd);
Willy Tarreau96199b12012-08-24 00:46:52 +0200196 break;
197 }
198 else if (errno == EINTR)
199 continue;
200
201 /* here we have another error */
202 conn->flags |= CO_FL_ERROR;
203 break;
204 }
205
206 done += ret;
207 pipe->data -= ret;
208 }
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200209 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done) {
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200210 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200211 }
Willy Tarreau256b9c52017-10-25 09:30:13 +0200212
Willy Tarreau96199b12012-08-24 00:46:52 +0200213 return done;
214}
215
Willy Tarreaue5733232019-05-22 19:24:06 +0200216#endif /* USE_LINUX_SPLICE */
Willy Tarreau6b4aad42009-01-18 21:59:13 +0100217
218
Willy Tarreau2ba44652012-08-20 17:30:32 +0200219/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +0100220 * into buffer <buf>. Only one call to recv() is performed, unless the
Willy Tarreau2ba44652012-08-20 17:30:32 +0200221 * buffer wraps, in which case a second call may be performed. The connection's
222 * flags are updated with whatever special event is detected (error, read0,
223 * empty). The caller is responsible for taking care of those events and
224 * avoiding the call if inappropriate. The function does not call the
225 * connection's polling update function, so the caller is responsible for this.
Willy Tarreauce3eda72013-12-05 00:49:40 +0100226 * errno is cleared before starting so that the caller knows that if it spots an
227 * error without errno, it's pending and can be retrieved via getsockopt(SO_ERROR).
Willy Tarreau2ba44652012-08-20 17:30:32 +0200228 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100229static 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 +0200230{
Willy Tarreaubfc4d772018-07-18 11:22:03 +0200231 ssize_t ret;
232 size_t try, done = 0;
Willy Tarreau2ba44652012-08-20 17:30:32 +0200233
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100234 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200235 return 0;
236
Willy Tarreau585744b2017-08-24 14:31:19 +0200237 if (!fd_recv_ready(conn->handle.fd))
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100238 return 0;
239
Willy Tarreaue2a0eec2020-01-17 09:59:40 +0100240 conn->flags &= ~CO_FL_WAIT_ROOM;
Willy Tarreauce3eda72013-12-05 00:49:40 +0100241 errno = 0;
242
Willy Tarreau585744b2017-08-24 14:31:19 +0200243 if (unlikely(!(fdtab[conn->handle.fd].ev & FD_POLL_IN))) {
Willy Tarreau6f5d1412012-10-04 20:38:49 +0200244 /* stop here if we reached the end of data */
Willy Tarreau585744b2017-08-24 14:31:19 +0200245 if ((fdtab[conn->handle.fd].ev & (FD_POLL_ERR|FD_POLL_HUP)) == FD_POLL_HUP)
Willy Tarreau6f5d1412012-10-04 20:38:49 +0200246 goto read0;
247
248 /* report error on POLL_ERR before connection establishment */
Willy Tarreau585744b2017-08-24 14:31:19 +0200249 if ((fdtab[conn->handle.fd].ev & FD_POLL_ERR) && (conn->flags & CO_FL_WAIT_L4_CONN)) {
Willy Tarreau26f4a042013-12-04 23:44:10 +0100250 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200251 goto leave;
Willy Tarreau6f5d1412012-10-04 20:38:49 +0200252 }
253 }
Willy Tarreau2ba44652012-08-20 17:30:32 +0200254
Willy Tarreau2ba44652012-08-20 17:30:32 +0200255 /* read the largest possible block. For this, we perform only one call
256 * to recv() unless the buffer wraps and we exactly fill the first hunk,
257 * in which case we accept to do it once again. A new attempt is made on
258 * EINTR too.
259 */
Willy Tarreauabf08d92014-01-14 11:31:27 +0100260 while (count > 0) {
Willy Tarreau591d4452018-06-15 17:21:00 +0200261 try = b_contig_space(buf);
262 if (!try)
263 break;
264
Willy Tarreauabf08d92014-01-14 11:31:27 +0100265 if (try > count)
266 try = count;
267
Willy Tarreau8f9c72d2018-06-07 18:46:28 +0200268 ret = recv(conn->handle.fd, b_tail(buf), try, 0);
Willy Tarreau2ba44652012-08-20 17:30:32 +0200269
270 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +0200271 b_add(buf, ret);
Willy Tarreau2ba44652012-08-20 17:30:32 +0200272 done += ret;
273 if (ret < try) {
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100274 /* socket buffer exhausted */
275 fd_cant_recv(conn->handle.fd);
276
Willy Tarreau2ba44652012-08-20 17:30:32 +0200277 /* unfortunately, on level-triggered events, POLL_HUP
278 * is generally delivered AFTER the system buffer is
Willy Tarreau68128712017-03-13 12:04:34 +0100279 * empty, unless the poller supports POLL_RDHUP. If
280 * we know this is the case, we don't try to read more
281 * as we know there's no more available. Similarly, if
282 * there's no problem with lingering we don't even try
283 * to read an unlikely close from the client since we'll
284 * close first anyway.
Willy Tarreau2ba44652012-08-20 17:30:32 +0200285 */
Willy Tarreau585744b2017-08-24 14:31:19 +0200286 if (fdtab[conn->handle.fd].ev & FD_POLL_HUP)
Willy Tarreau2ba44652012-08-20 17:30:32 +0200287 goto read0;
Willy Tarreau6c11bd22014-01-24 00:54:27 +0100288
Willy Tarreau585744b2017-08-24 14:31:19 +0200289 if ((!fdtab[conn->handle.fd].linger_risk) ||
Willy Tarreau68128712017-03-13 12:04:34 +0100290 (cur_poller.flags & HAP_POLL_F_RDHUP)) {
Willy Tarreau68128712017-03-13 12:04:34 +0100291 break;
292 }
Willy Tarreau2ba44652012-08-20 17:30:32 +0200293 }
294 count -= ret;
Willy Tarreau716bec22020-02-20 11:04:40 +0100295
296 if (flags & CO_RFL_READ_ONCE)
297 break;
Willy Tarreau2ba44652012-08-20 17:30:32 +0200298 }
299 else if (ret == 0) {
300 goto read0;
301 }
Joshua M. Clulow07249032014-03-03 13:48:42 -0800302 else if (errno == EAGAIN || errno == ENOTCONN) {
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100303 /* socket buffer exhausted */
304 fd_cant_recv(conn->handle.fd);
Willy Tarreau2ba44652012-08-20 17:30:32 +0200305 break;
306 }
307 else if (errno != EINTR) {
Willy Tarreau26f4a042013-12-04 23:44:10 +0100308 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau2ba44652012-08-20 17:30:32 +0200309 break;
310 }
311 }
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200312
313 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done)
314 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200315
316 leave:
Willy Tarreau2ba44652012-08-20 17:30:32 +0200317 return done;
318
319 read0:
320 conn_sock_read0(conn);
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200321 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreaudebdc4b2012-12-07 00:01:33 +0100322
323 /* Now a final check for a possible asynchronous low-level error
324 * report. This can happen when a connection receives a reset
325 * after a shutdown, both POLL_HUP and POLL_ERR are queued, and
326 * we might have come from there by just checking POLL_HUP instead
327 * of recv()'s return value 0, so we have no way to tell there was
328 * an error without checking.
329 */
Willy Tarreau585744b2017-08-24 14:31:19 +0200330 if (unlikely(fdtab[conn->handle.fd].ev & FD_POLL_ERR))
Willy Tarreau26f4a042013-12-04 23:44:10 +0100331 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau256b9c52017-10-25 09:30:13 +0200332 goto leave;
Willy Tarreau2ba44652012-08-20 17:30:32 +0200333}
334
335
Willy Tarreau787db9a2018-06-14 18:31:46 +0200336/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
337 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
338 * other pending data for example, but this flag is ignored at the moment.
Willy Tarreau5368d802012-08-21 18:22:06 +0200339 * Only one call to send() is performed, unless the buffer wraps, in which case
340 * a second call may be performed. The connection's flags are updated with
341 * whatever special event is detected (error, empty). The caller is responsible
342 * for taking care of those events and avoiding the call if inappropriate. The
343 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +0200344 * is responsible for this. It's up to the caller to update the buffer's contents
345 * based on the return value.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200346 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100347static 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 +0100348{
Willy Tarreau787db9a2018-06-14 18:31:46 +0200349 ssize_t ret;
350 size_t try, done;
351 int send_flag;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200352
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100353 if (!conn_ctrl_ready(conn))
354 return 0;
355
Willy Tarreau585744b2017-08-24 14:31:19 +0200356 if (!fd_send_ready(conn->handle.fd))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200357 return 0;
358
Willy Tarreaua8c7e8e2020-01-23 18:17:55 +0100359 if (conn->flags & CO_FL_SOCK_WR_SH) {
360 /* it's already closed */
361 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH;
362 errno = EPIPE;
363 return 0;
364 }
365
Willy Tarreau5368d802012-08-21 18:22:06 +0200366 done = 0;
367 /* send the largest possible block. For this we perform only one call
368 * to send() unless the buffer wraps and we exactly fill the first hunk,
369 * in which case we accept to do it once again.
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100370 */
Willy Tarreau787db9a2018-06-14 18:31:46 +0200371 while (count) {
372 try = b_contig_data(buf, done);
373 if (try > count)
374 try = count;
Willy Tarreauf890dc92008-12-13 21:12:26 +0100375
Willy Tarreau5368d802012-08-21 18:22:06 +0200376 send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
Willy Tarreau787db9a2018-06-14 18:31:46 +0200377 if (try < count || flags & CO_SFL_MSG_MORE)
Willy Tarreau7e4086d2014-02-02 01:44:13 +0100378 send_flag |= MSG_MORE;
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200379
Willy Tarreau787db9a2018-06-14 18:31:46 +0200380 ret = send(conn->handle.fd, b_peek(buf, done), try, send_flag);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200381
382 if (ret > 0) {
Willy Tarreau787db9a2018-06-14 18:31:46 +0200383 count -= ret;
Willy Tarreau5368d802012-08-21 18:22:06 +0200384 done += ret;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100385
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200386 /* if the system buffer is full, don't insist */
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100387 if (ret < try) {
388 fd_cant_send(conn->handle.fd);
Willy Tarreau6996e152007-04-30 14:37:43 +0200389 break;
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100390 }
Willy Tarreau3381bf82020-01-17 17:39:35 +0100391 if (!count)
Willy Tarreau3110eb72020-02-21 10:21:46 +0100392 fd_stop_send(conn->handle.fd);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200393 }
Willy Tarreau034c88c2017-01-23 23:36:45 +0100394 else if (ret == 0 || errno == EAGAIN || errno == ENOTCONN || errno == EINPROGRESS) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100395 /* nothing written, we need to poll for write first */
Willy Tarreau8dd348c2020-02-28 14:09:12 +0100396 fd_cant_send(conn->handle.fd);
Willy Tarreau5368d802012-08-21 18:22:06 +0200397 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200398 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200399 else if (errno != EINTR) {
Willy Tarreau26f4a042013-12-04 23:44:10 +0100400 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau5368d802012-08-21 18:22:06 +0200401 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200402 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200403 }
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200404 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done) {
Willy Tarreau665e6ee2012-10-04 20:20:46 +0200405 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreauccf3f6d2019-09-05 17:05:05 +0200406 }
Willy Tarreau256b9c52017-10-25 09:30:13 +0200407
Willy Tarreau7cf0e452019-05-23 11:39:14 +0200408 if (done > 0) {
409 /* we count the total bytes sent, and the send rate for 32-byte
410 * blocks. The reason for the latter is that freq_ctr are
411 * limited to 4GB and that it's not enough per second.
412 */
413 _HA_ATOMIC_ADD(&global.out_bytes, done);
414 update_freq_ctr(&global.out_32bps, (done + 16) / 32);
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 Houchard5149b592019-05-23 17:47:36 +0200438/* We can't have an underlying XPRT, so just return -1 to signify failure */
439static int raw_sock_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
440{
441 /* This is the lowest xprt we can have, so if we get there we didn't
442 * find the xprt we wanted to remove, that's a bug
443 */
444 BUG_ON(1);
445 return -1;
446}
447
Willy Tarreauf7bc57c2012-10-03 00:19:48 +0200448/* transport-layer operations for RAW sockets */
Willy Tarreaud9f5cca2016-12-22 21:08:52 +0100449static struct xprt_ops raw_sock = {
Willy Tarreauc5788912012-08-24 18:12:41 +0200450 .snd_buf = raw_sock_from_buf,
451 .rcv_buf = raw_sock_to_buf,
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100452 .subscribe = raw_sock_subscribe,
453 .unsubscribe = raw_sock_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +0200454 .remove_xprt = raw_sock_remove_xprt,
Willy Tarreaue5733232019-05-22 19:24:06 +0200455#if defined(USE_LINUX_SPLICE)
Willy Tarreau96199b12012-08-24 00:46:52 +0200456 .rcv_pipe = raw_sock_to_pipe,
457 .snd_pipe = raw_sock_from_pipe,
458#endif
Willy Tarreauc5788912012-08-24 18:12:41 +0200459 .shutr = NULL,
460 .shutw = NULL,
461 .close = NULL,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +0100462 .name = "RAW",
Willy Tarreau5c979a92012-05-07 17:15:39 +0200463};
Willy Tarreaubaaee002006-06-26 02:48:02 +0200464
Willy Tarreau13e14102016-12-22 20:25:26 +0100465
466__attribute__((constructor))
Olivier Houchard0d005932017-08-14 15:59:44 +0200467static void __raw_sock_init(void)
Willy Tarreau13e14102016-12-22 20:25:26 +0100468{
469 xprt_register(XPRT_RAW, &raw_sock);
470}
471
Willy Tarreaubaaee002006-06-26 02:48:02 +0200472/*
473 * Local variables:
474 * c-indent-level: 8
475 * c-basic-offset: 8
476 * End:
477 */