blob: e21177cd17b412e648cccef6eca46b48377a99a6 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreaub277d6e2012-05-11 16:59:14 +02002 * Functions used to send/receive data using 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 Tarreau2dd0d472006-06-29 17:53:05 +020025#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020026#include <common/config.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 Tarreau2d212792008-08-27 21:41:35 +020032#include <proto/buffers.h>
Willy Tarreau8b117082012-08-06 15:06:49 +020033#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034#include <proto/fd.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020035#include <proto/freq_ctr.h>
36#include <proto/log.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010037#include <proto/pipe.h>
Willy Tarreaufe598a72010-09-21 21:48:23 +020038#include <proto/protocols.h>
Willy Tarreauc63190d2012-05-11 14:23:52 +020039#include <proto/sock_raw.h>
Willy Tarreau73b013b2012-05-21 16:31:45 +020040#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020041#include <proto/task.h>
42
Willy Tarreau5bd8c372009-01-19 00:32:22 +010043#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044
Willy Tarreaub277d6e2012-05-11 16:59:14 +020045/* main event functions used to move data between sockets and buffers */
Willy Tarreauafad0e02012-08-09 14:45:22 +020046static void sock_raw_read(struct connection *conn);
47static void sock_raw_write(struct connection *conn);
Willy Tarreau3d8903f2012-08-06 17:00:18 +020048static void sock_raw_read0(struct stream_interface *si);
Willy Tarreaub277d6e2012-05-11 16:59:14 +020049
50
Willy Tarreau6b4aad42009-01-18 21:59:13 +010051#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau43d8fb22011-08-22 17:12:02 +020052#include <common/splice.h>
Willy Tarreau5bd8c372009-01-19 00:32:22 +010053
54/* A pipe contains 16 segments max, and it's common to see segments of 1448 bytes
55 * because of timestamps. Use this as a hint for not looping on splice().
56 */
57#define SPLICE_FULL_HINT 16*1448
58
Willy Tarreaua9de3332009-11-28 07:47:10 +010059/* how many data we attempt to splice at once when the buffer is configured for
60 * infinite forwarding */
61#define MAX_SPLICE_AT_ONCE (1<<30)
62
Willy Tarreau5bd8c372009-01-19 00:32:22 +010063/* Returns :
64 * -1 if splice is not possible or not possible anymore and we must switch to
65 * user-land copy (eg: to_forward reached)
Willy Tarreauafad0e02012-08-09 14:45:22 +020066 * 0 otherwise, including errors and close.
Willy Tarreau5bd8c372009-01-19 00:32:22 +010067 * Sets :
68 * BF_READ_NULL
69 * BF_READ_PARTIAL
70 * BF_WRITE_PARTIAL (during copy)
Willy Tarreauba0b63d2009-09-20 08:09:44 +020071 * BF_OUT_EMPTY (during copy)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010072 * SI_FL_ERR
73 * SI_FL_WAIT_ROOM
74 * (SI_FL_WAIT_RECV)
Willy Tarreau3eba98a2009-01-25 13:56:13 +010075 *
76 * This function automatically allocates a pipe from the pipe pool. It also
77 * carefully ensures to clear b->pipe whenever it leaves the pipe empty.
Willy Tarreau5bd8c372009-01-19 00:32:22 +010078 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +020079static int sock_raw_splice_in(struct buffer *b, struct stream_interface *si)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010080{
Willy Tarreau82a04562011-12-11 22:37:06 +010081 static int splice_detects_close;
Willy Tarreaufb7508a2012-05-21 16:47:54 +020082 int fd = si_fd(si);
Willy Tarreau31971e52009-09-20 12:07:52 +020083 int ret;
84 unsigned long max;
Willy Tarreauafad0e02012-08-09 14:45:22 +020085 int retval = 0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010086
87 if (!b->to_forward)
88 return -1;
89
90 if (!(b->flags & BF_KERN_SPLICING))
91 return -1;
92
Willy Tarreau02d6cfc2012-03-01 18:19:58 +010093 if (buffer_not_empty(b)) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +010094 /* We're embarrassed, there are already data pending in
95 * the buffer and we don't want to have them at two
96 * locations at a time. Let's indicate we need some
97 * place and ask the consumer to hurry.
98 */
99 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200100 conn_data_stop_recv(&si->conn);
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100101 b->rex = TICK_ETERNITY;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200102 si_chk_snd(b->cons);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200103 return 0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100104 }
105
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100106 if (unlikely(b->pipe == NULL)) {
107 if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100108 b->flags &= ~BF_KERN_SPLICING;
109 return -1;
110 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100111 }
112
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100113 /* At this point, b->pipe is valid */
114
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100115 while (1) {
Willy Tarreaua9de3332009-11-28 07:47:10 +0100116 if (b->to_forward == BUF_INFINITE_FORWARD)
117 max = MAX_SPLICE_AT_ONCE;
118 else
119 max = b->to_forward;
120
Willy Tarreau31971e52009-09-20 12:07:52 +0200121 if (!max) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100122 /* It looks like the buffer + the pipe already contain
123 * the maximum amount of data to be transferred. Try to
124 * send those data immediately on the other side if it
125 * is currently waiting.
126 */
127 retval = -1; /* end of forwarding */
128 break;
129 }
130
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100131 ret = splice(fd, NULL, b->pipe->prod, NULL, max,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100132 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
133
134 if (ret <= 0) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100135 if (ret == 0) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100136 /* connection closed. This is only detected by
Willy Tarreau82a04562011-12-11 22:37:06 +0100137 * recent kernels (>= 2.6.27.13). If we notice
138 * it works, we store the info for later use.
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100139 */
Willy Tarreau82a04562011-12-11 22:37:06 +0100140 splice_detects_close = 1;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100141 b->flags |= BF_READ_NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100142 break;
143 }
144
145 if (errno == EAGAIN) {
146 /* there are two reasons for EAGAIN :
147 * - nothing in the socket buffer (standard)
148 * - pipe is full
Willy Tarreau98b306b2009-01-25 11:11:32 +0100149 * - the connection is closed (kernel < 2.6.27.13)
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100150 * Since we don't know if pipe is full, we'll
151 * stop if the pipe is not empty. Anyway, we
152 * will almost always fill/empty the pipe.
153 */
154
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100155 if (b->pipe->data) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100156 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100157 break;
158 }
159
Willy Tarreau82a04562011-12-11 22:37:06 +0100160 /* We don't know if the connection was closed,
161 * but if we know splice detects close, then we
162 * know it for sure.
Willy Tarreau98b306b2009-01-25 11:11:32 +0100163 * But if we're called upon POLLIN with an empty
Willy Tarreau82a04562011-12-11 22:37:06 +0100164 * pipe and get EAGAIN, it is suspect enough to
Willy Tarreau98b306b2009-01-25 11:11:32 +0100165 * try to fall back to the normal recv scheme
166 * which will be able to deal with the situation.
167 */
Willy Tarreau82a04562011-12-11 22:37:06 +0100168 if (splice_detects_close)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200169 conn_data_poll_recv(&si->conn); /* we know for sure that it's EAGAIN */
Willy Tarreau82a04562011-12-11 22:37:06 +0100170 else
171 retval = -1;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100172 break;
173 }
Willy Tarreaudc340a92009-06-28 23:10:19 +0200174
Willy Tarreaua9de3332009-11-28 07:47:10 +0100175 if (errno == ENOSYS || errno == EINVAL) {
Willy Tarreaudc340a92009-06-28 23:10:19 +0200176 /* splice not supported on this end, disable it */
177 b->flags &= ~BF_KERN_SPLICING;
178 si->flags &= ~SI_FL_CAP_SPLICE;
179 put_pipe(b->pipe);
180 b->pipe = NULL;
181 return -1;
182 }
183
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100184 /* here we have another error */
185 si->flags |= SI_FL_ERR;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100186 break;
187 } /* ret <= 0 */
188
Willy Tarreau31971e52009-09-20 12:07:52 +0200189 if (b->to_forward != BUF_INFINITE_FORWARD)
190 b->to_forward -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100191 b->total += ret;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100192 b->pipe->data += ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100193 b->flags |= BF_READ_PARTIAL;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200194 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100195
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100196 if (b->pipe->data >= SPLICE_FULL_HINT ||
197 ret >= global.tune.recv_enough) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100198 /* We've read enough of it for this time. */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100199 break;
200 }
201 } /* while */
202
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100203 if (unlikely(!b->pipe->data)) {
204 put_pipe(b->pipe);
205 b->pipe = NULL;
206 }
207
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100208 return retval;
209}
210
Willy Tarreau6b4aad42009-01-18 21:59:13 +0100211#endif /* CONFIG_HAP_LINUX_SPLICE */
212
213
Willy Tarreaubaaee002006-06-26 02:48:02 +0200214/*
Willy Tarreaud7971282006-07-29 18:36:34 +0200215 * this function is called on a read event from a stream socket.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200216 */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200217static void sock_raw_read(struct connection *conn)
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200218{
Willy Tarreau239d7182012-07-23 18:53:03 +0200219 int fd = conn->t.sock.fd;
Willy Tarreau80184712012-07-06 14:54:49 +0200220 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
Willy Tarreau48adac52008-08-30 04:58:38 +0200221 struct buffer *b = si->ib;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200222 int ret, max, cur_read;
Willy Tarreaub8949f12007-03-23 22:39:59 +0100223 int read_poll = MAX_READ_POLL_LOOPS;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200224
225#ifdef DEBUG_FULL
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200226 fprintf(stderr,"sock_raw_read : fd=%d, ev=0x%02x, owner=%p\n", fd, fdtab[fd].ev, fdtab[fd].owner);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200227#endif
Willy Tarreau71543652009-07-14 19:55:05 +0200228 /* stop immediately on errors. Note that we DON'T want to stop on
229 * POLL_ERR, as the poller might report a write error while there
230 * are still data available in the recv buffer. This typically
231 * happens when we send too large a request to a backend server
232 * which rejects it before reading it all.
233 */
Willy Tarreau80184712012-07-06 14:54:49 +0200234 if (conn->flags & CO_FL_ERROR)
Willy Tarreau6996e152007-04-30 14:37:43 +0200235 goto out_error;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100236
237 /* stop here if we reached the end of data */
238 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP)
239 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200240
Willy Tarreaud06e7112009-03-29 10:18:41 +0200241 /* maybe we were called immediately after an asynchronous shutr */
242 if (b->flags & BF_SHUTR)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200243 return;
Willy Tarreaud06e7112009-03-29 10:18:41 +0200244
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100245#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau14acc702011-05-11 20:47:24 +0200246 if (b->to_forward >= MIN_SPLICE_FORWARD && b->flags & BF_KERN_SPLICING) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100247
248 /* Under Linux, if FD_POLL_HUP is set, we have reached the end.
249 * Since older splice() implementations were buggy and returned
250 * EAGAIN on end of read, let's bypass the call to splice() now.
251 */
252 if (fdtab[fd].ev & FD_POLL_HUP)
253 goto out_shutdown_r;
254
Willy Tarreauafad0e02012-08-09 14:45:22 +0200255 if (sock_raw_splice_in(b, si) >= 0) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100256 if (si->flags & SI_FL_ERR)
257 goto out_error;
258 if (b->flags & BF_READ_NULL)
259 goto out_shutdown_r;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200260 return;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100261 }
262 /* splice not possible (anymore), let's go on on standard copy */
263 }
264#endif
Willy Tarreau8a7af602008-05-03 23:07:14 +0200265 cur_read = 0;
Willy Tarreau6996e152007-04-30 14:37:43 +0200266 while (1) {
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200267 max = bi_avail(b);
Willy Tarreau864e8252009-12-28 17:36:37 +0100268
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200269 if (!max) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100270 b->flags |= BF_FULL;
271 si->flags |= SI_FL_WAIT_ROOM;
272 break;
273 }
274
Willy Tarreau6996e152007-04-30 14:37:43 +0200275 /*
276 * 1. compute the maximum block size we can read at once.
277 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100278 if (buffer_empty(b)) {
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100279 /* let's realign the buffer to optimize I/O */
Willy Tarreaua458b672012-03-05 11:17:50 +0100280 b->p = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200281 }
Willy Tarreau89fa7062012-03-02 16:13:16 +0100282 else if (b->data + b->o < b->p &&
283 b->p + b->i < b->data + b->size) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100284 /* remaining space wraps at the end, with a moving limit */
Willy Tarreau363a5bb2012-03-02 20:14:45 +0100285 if (max > b->data + b->size - (b->p + b->i))
286 max = b->data + b->size - (b->p + b->i);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100287 }
Willy Tarreau864e8252009-12-28 17:36:37 +0100288 /* else max is already OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200289
Willy Tarreau6996e152007-04-30 14:37:43 +0200290 /*
291 * 2. read the largest possible block
292 */
Willy Tarreaucc5cfcb2012-05-04 21:35:27 +0200293 ret = recv(fd, bi_end(b), max, 0);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200294
Willy Tarreau83749182007-04-15 20:56:27 +0200295 if (ret > 0) {
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100296 b->i += ret;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200297 cur_read += ret;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100298
Willy Tarreau2e046c62012-03-01 16:08:30 +0100299 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreau31971e52009-09-20 12:07:52 +0200300 if (b->to_forward && !(b->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
301 unsigned long fwd = ret;
302 if (b->to_forward != BUF_INFINITE_FORWARD) {
303 if (fwd > b->to_forward)
304 fwd = b->to_forward;
305 b->to_forward -= fwd;
306 }
Willy Tarreau328582c2012-05-05 23:32:27 +0200307 b_adv(b, fwd);
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100308 }
Willy Tarreauf890dc92008-12-13 21:12:26 +0100309
Willy Tarreau80184712012-07-06 14:54:49 +0200310 if (conn->flags & CO_FL_WAIT_L4_CONN) {
311 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau8ae52cb2012-05-20 10:38:46 +0200312 si->exp = TICK_ETERNITY;
313 }
Willy Tarreaub38903c2008-11-23 21:33:29 +0100314
Willy Tarreau3da77c52008-08-29 09:58:42 +0200315 b->flags |= BF_READ_PARTIAL;
Willy Tarreau83749182007-04-15 20:56:27 +0200316 b->total += ret;
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100317
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200318 if (bi_full(b)) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200319 /* The buffer is now full, there's no point in going through
320 * the loop again.
321 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100322 if (!(b->flags & BF_STREAMER_FAST) && (cur_read == buffer_len(b))) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200323 b->xfer_small = 0;
324 b->xfer_large++;
325 if (b->xfer_large >= 3) {
326 /* we call this buffer a fast streamer if it manages
327 * to be filled in one call 3 consecutive times.
328 */
329 b->flags |= (BF_STREAMER | BF_STREAMER_FAST);
330 //fputc('+', stderr);
331 }
332 }
333 else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200334 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200335 b->xfer_large = 0;
336 b->xfer_small++;
337 if (b->xfer_small >= 2) {
338 /* if the buffer has been at least half full twice,
339 * we receive faster than we send, so at least it
340 * is not a "fast streamer".
341 */
342 b->flags &= ~BF_STREAMER_FAST;
343 //fputc('-', stderr);
344 }
345 }
346 else {
347 b->xfer_small = 0;
348 b->xfer_large = 0;
349 }
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100350
351 b->flags |= BF_FULL;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100352 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100353 break;
Willy Tarreau6996e152007-04-30 14:37:43 +0200354 }
355
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200356 /* if too many bytes were missing from last read, it means that
357 * it's pointless trying to read again because the system does
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100358 * not have them in buffers. BTW, if FD_POLL_HUP was present,
359 * it means that we have reached the end and that the connection
360 * is closed.
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200361 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100362 if (ret < max) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200363 if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200364 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200365 b->xfer_large = 0;
366 b->xfer_small++;
367 if (b->xfer_small >= 3) {
368 /* we have read less than half of the buffer in
369 * one pass, and this happened at least 3 times.
370 * This is definitely not a streamer.
371 */
372 b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST);
373 //fputc('!', stderr);
374 }
375 }
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200376 /* unfortunately, on level-triggered events, POLL_HUP
377 * is generally delivered AFTER the system buffer is
378 * empty, so this one might never match.
379 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100380 if (fdtab[fd].ev & FD_POLL_HUP)
381 goto out_shutdown_r;
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200382
383 /* if a streamer has read few data, it may be because we
384 * have exhausted system buffers. It's not worth trying
385 * again.
386 */
387 if (b->flags & BF_STREAMER)
388 break;
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200389
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100390 /* generally if we read something smaller than 1 or 2 MSS,
391 * it means that either we have exhausted the system's
392 * buffers (streamer or question-response protocol) or
393 * that the connection will be closed. Streamers are
394 * easily detected so we return early. For other cases,
395 * it's still better to perform a last read to be sure,
396 * because it may save one complete poll/read/wakeup cycle
397 * in case of shutdown.
398 */
399 if (ret < MIN_RET_FOR_READ_LOOP && b->flags & BF_STREAMER)
400 break;
401
402 /* if we read a large block smaller than what we requested,
403 * it's almost certain we'll never get anything more.
404 */
405 if (ret >= global.tune.recv_enough)
406 break;
407 }
Willy Tarreau83749182007-04-15 20:56:27 +0200408
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100409 if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200410 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200411 }
412 else if (ret == 0) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200413 /* connection closed */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100414 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200415 }
Willy Tarreau9f195292007-04-15 21:26:58 +0200416 else if (errno == EAGAIN) {
417 /* Ignore EAGAIN but inform the poller that there is
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100418 * nothing to read left if we did not read much, ie
419 * less than what we were still expecting to read.
420 * But we may have done some work justifying to notify
421 * the task.
Willy Tarreau9f195292007-04-15 21:26:58 +0200422 */
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100423 if (cur_read < MIN_RET_FOR_READ_LOOP)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200424 conn_data_poll_recv(conn);
Willy Tarreau83749182007-04-15 20:56:27 +0200425 break;
426 }
427 else {
Willy Tarreau6996e152007-04-30 14:37:43 +0200428 goto out_error;
Willy Tarreau83749182007-04-15 20:56:27 +0200429 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200430 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200431
Willy Tarreauafad0e02012-08-09 14:45:22 +0200432 return;
Willy Tarreau6996e152007-04-30 14:37:43 +0200433
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100434 out_shutdown_r:
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200435 /* we received a shutdown */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100436 fdtab[fd].ev &= ~FD_POLL_HUP;
437 b->flags |= BF_READ_NULL;
Willy Tarreau520d95e2009-09-19 21:04:57 +0200438 if (b->flags & BF_AUTO_CLOSE)
Willy Tarreau418fd472009-09-06 21:37:23 +0200439 buffer_shutw_now(b);
Willy Tarreau3d8903f2012-08-06 17:00:18 +0200440 sock_raw_read0(si);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200441 return;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100442
Willy Tarreau6996e152007-04-30 14:37:43 +0200443 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200444 /* Read error on the connection, report the error and stop I/O */
Willy Tarreau80184712012-07-06 14:54:49 +0200445 conn->flags |= CO_FL_ERROR;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200446 conn_data_stop_both(conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200447}
448
449
450/*
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100451 * This function is called to send buffer data to a stream socket.
Willy Tarreauafad0e02012-08-09 14:45:22 +0200452 * It returns -1 in case of unrecoverable error, otherwise zero.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200453 */
Willy Tarreaufae44992012-08-20 14:02:10 +0200454static int sock_raw_write_loop(struct connection *conn)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100455{
Willy Tarreaufae44992012-08-20 14:02:10 +0200456 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
457 struct buffer *b = si->ob;
Willy Tarreau83749182007-04-15 20:56:27 +0200458 int write_poll = MAX_WRITE_POLL_LOOPS;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100459 int ret, max;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200460
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100461#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100462 while (b->pipe) {
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200463 ret = splice(b->pipe->cons, NULL, si_fd(si), NULL, b->pipe->data,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100464 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
465 if (ret <= 0) {
466 if (ret == 0 || errno == EAGAIN) {
Willy Tarreauafad0e02012-08-09 14:45:22 +0200467 conn_data_poll_send(&si->conn);
468 return 0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100469 }
470 /* here we have another error */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200471 return -1;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100472 }
473
474 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100475 b->pipe->data -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100476
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100477 if (!b->pipe->data) {
478 put_pipe(b->pipe);
479 b->pipe = NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100480 break;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100481 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100482
483 if (--write_poll <= 0)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200484 return 0;
Willy Tarreaueb9fd512011-12-11 22:11:47 +0100485
486 /* The only reason we did not empty the pipe is that the output
487 * buffer is full.
488 */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200489 conn_data_poll_send(&si->conn);
Willy Tarreaueb9fd512011-12-11 22:11:47 +0100490 return 0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100491 }
492
493 /* At this point, the pipe is empty, but we may still have data pending
494 * in the normal buffer.
495 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100496#endif
Willy Tarreau2e046c62012-03-01 16:08:30 +0100497 if (!b->o) {
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200498 b->flags |= BF_OUT_EMPTY;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200499 return 0;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200500 }
Willy Tarreau83749182007-04-15 20:56:27 +0200501
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100502 /* when we're in this loop, we already know that there is no spliced
503 * data left, and that there are sendable buffered data.
504 */
Willy Tarreau6996e152007-04-30 14:37:43 +0200505 while (1) {
Willy Tarreau89fa7062012-03-02 16:13:16 +0100506 max = b->o;
Willy Tarreau83749182007-04-15 20:56:27 +0200507
Willy Tarreau89fa7062012-03-02 16:13:16 +0100508 /* outgoing data may wrap at the end */
509 if (b->data + max > b->p)
510 max = b->data + max - b->p;
Willy Tarreauf890dc92008-12-13 21:12:26 +0100511
Willy Tarreau6db06d32009-08-19 11:14:11 +0200512 /* check if we want to inform the kernel that we're interested in
513 * sending more data after this call. We want this if :
514 * - we're about to close after this last send and want to merge
515 * the ongoing FIN with the last segment.
516 * - we know we can't send everything at once and must get back
517 * here because of unaligned data
Willy Tarreaud38b53b2010-01-03 11:18:34 +0100518 * - there is still a finite amount of data to forward
Willy Tarreau6db06d32009-08-19 11:14:11 +0200519 * The test is arranged so that the most common case does only 2
520 * tests.
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200521 */
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200522
Willy Tarreauface8392010-01-03 11:37:54 +0100523 if (MSG_NOSIGNAL && MSG_MORE) {
Willy Tarreau6db06d32009-08-19 11:14:11 +0200524 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
525
Willy Tarreau96e31212011-05-30 18:10:30 +0200526 if ((!(b->flags & BF_NEVER_WAIT) &&
527 ((b->to_forward && b->to_forward != BUF_INFINITE_FORWARD) ||
528 (b->flags & BF_EXPECT_MORE))) ||
Willy Tarreau2e046c62012-03-01 16:08:30 +0100529 ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == BF_SHUTW_NOW && (max == b->o)) ||
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100530 (max != b->o)) {
Willy Tarreauface8392010-01-03 11:37:54 +0100531 send_flag |= MSG_MORE;
532 }
Willy Tarreau6db06d32009-08-19 11:14:11 +0200533
Willy Tarreau2be39392010-01-03 17:24:51 +0100534 /* this flag has precedence over the rest */
535 if (b->flags & BF_SEND_DONTWAIT)
536 send_flag &= ~MSG_MORE;
537
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200538 ret = send(si_fd(si), bo_ptr(b), max, send_flag);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200539 } else {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200540 int skerr;
541 socklen_t lskerr = sizeof(skerr);
542
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200543 ret = getsockopt(si_fd(si), SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
Willy Tarreauc6423482006-10-15 14:59:03 +0200544 if (ret == -1 || skerr)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200545 ret = -1;
546 else
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200547 ret = send(si_fd(si), bo_ptr(b), max, MSG_DONTWAIT);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200548 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200549
550 if (ret > 0) {
Willy Tarreau505e34a2012-07-06 10:17:53 +0200551 if (si->conn.flags & CO_FL_WAIT_L4_CONN) {
552 si->conn.flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau8ae52cb2012-05-20 10:38:46 +0200553 si->exp = TICK_ETERNITY;
554 }
Willy Tarreaub38903c2008-11-23 21:33:29 +0100555
Willy Tarreau3da77c52008-08-29 09:58:42 +0200556 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreaue393fe22008-08-16 22:18:07 +0200557
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100558 b->o -= ret;
559 if (likely(!buffer_len(b)))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100560 /* optimize data alignment in the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +0100561 b->p = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200562
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200563 if (likely(!bi_full(b)))
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100564 b->flags &= ~BF_FULL;
565
Willy Tarreau2e046c62012-03-01 16:08:30 +0100566 if (!b->o) {
Willy Tarreauf17810e2012-03-09 18:10:44 +0100567 /* Always clear both flags once everything has been sent, they're one-shot */
568 b->flags &= ~(BF_EXPECT_MORE | BF_SEND_DONTWAIT);
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200569 if (likely(!b->pipe))
570 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100571 break;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200572 }
Willy Tarreau83749182007-04-15 20:56:27 +0200573
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200574 /* if the system buffer is full, don't insist */
575 if (ret < max)
576 break;
577
Willy Tarreau6996e152007-04-30 14:37:43 +0200578 if (--write_poll <= 0)
579 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200580 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200581 else if (ret == 0 || errno == EAGAIN) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100582 /* nothing written, we need to poll for write first */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200583 conn_data_poll_send(&si->conn);
584 return 0;
Willy Tarreau83749182007-04-15 20:56:27 +0200585 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200586 else {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100587 /* bad, we got an error */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200588 return -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200589 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200590 } /* while (1) */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200591 return 0;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100592}
Willy Tarreau6996e152007-04-30 14:37:43 +0200593
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100594
595/*
596 * This function is called on a write event from a stream socket.
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100597 */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200598static void sock_raw_write(struct connection *conn)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100599{
Willy Tarreau80184712012-07-06 14:54:49 +0200600 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100601 struct buffer *b = si->ob;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100602
603#ifdef DEBUG_FULL
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200604 fprintf(stderr,"sock_raw_write : fd=%d, owner=%p\n", fd, fdtab[fd].owner);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100605#endif
606
Willy Tarreau80184712012-07-06 14:54:49 +0200607 if (conn->flags & CO_FL_ERROR)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100608 goto out_error;
609
Willy Tarreaud06e7112009-03-29 10:18:41 +0200610 /* we might have been called just after an asynchronous shutw */
611 if (b->flags & BF_SHUTW)
Willy Tarreauafad0e02012-08-09 14:45:22 +0200612 return;
Willy Tarreaud06e7112009-03-29 10:18:41 +0200613
Willy Tarreaufae44992012-08-20 14:02:10 +0200614 if (conn_data_snd_buf(conn) < 0)
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200615 goto out_error;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100616
Willy Tarreauafad0e02012-08-09 14:45:22 +0200617 /* OK all done */
618 return;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100619
Willy Tarreau6996e152007-04-30 14:37:43 +0200620 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200621 /* Write error on the connection, report the error and stop I/O */
Willy Tarreaucff64112008-11-03 06:26:53 +0100622
Willy Tarreau80184712012-07-06 14:54:49 +0200623 conn->flags |= CO_FL_ERROR;
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200624 conn_data_stop_both(conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200625}
626
Willy Tarreau48adac52008-08-30 04:58:38 +0200627/*
Willy Tarreau3d8903f2012-08-06 17:00:18 +0200628 * This function propagates a null read received on a connection. It updates
629 * the stream interface. If the stream interface has SI_FL_NOHALF, we also
630 * forward the close to the write side.
631 */
632static void sock_raw_read0(struct stream_interface *si)
633{
634 si->ib->flags &= ~BF_SHUTR_NOW;
635 if (si->ib->flags & BF_SHUTR)
636 return;
637 si->ib->flags |= BF_SHUTR;
638 si->ib->rex = TICK_ETERNITY;
639 si->flags &= ~SI_FL_WAIT_ROOM;
640
641 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
642 return;
643
644 if (si->ob->flags & BF_SHUTW)
645 goto do_close;
646
647 if (si->flags & SI_FL_NOHALF) {
648 /* we have to shut before closing, otherwise some short messages
649 * may never leave the system, especially when there are remaining
650 * unread data in the socket input buffer, or when nolinger is set.
651 * However, if SI_FL_NOLINGER is explicitly set, we know there is
652 * no risk so we close both sides immediately.
653 */
654 if (si->flags & SI_FL_NOLINGER) {
655 si->flags &= ~SI_FL_NOLINGER;
656 setsockopt(si_fd(si), SOL_SOCKET, SO_LINGER,
657 (struct linger *) &nolinger, sizeof(struct linger));
658 }
659 goto do_close;
660 }
661
662 /* otherwise that's just a normal read shutdown */
Willy Tarreauf9dabec2012-08-17 17:33:53 +0200663 conn_data_stop_recv(&si->conn);
Willy Tarreau3d8903f2012-08-06 17:00:18 +0200664 return;
665
666 do_close:
667 conn_data_close(&si->conn);
668 fd_delete(si_fd(si));
669 si->state = SI_ST_DIS;
670 si->exp = TICK_ETERNITY;
671 if (si->release)
672 si->release(si);
673 return;
674}
675
Willy Tarreau5c979a92012-05-07 17:15:39 +0200676/* stream sock operations */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200677struct sock_ops sock_raw = {
Willy Tarreau100c4672012-08-20 12:06:26 +0200678 .update = stream_int_update_conn,
Willy Tarreau4a36b562012-08-06 19:31:45 +0200679 .shutr = NULL,
680 .shutw = NULL,
Willy Tarreau46a8d922012-08-20 12:38:36 +0200681 .chk_rcv = stream_int_chk_rcv_conn,
Willy Tarreaude5722c2012-08-20 15:01:10 +0200682 .chk_snd = stream_int_chk_snd_conn,
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200683 .read = sock_raw_read,
684 .write = sock_raw_write,
Willy Tarreaufae44992012-08-20 14:02:10 +0200685 .snd_buf = sock_raw_write_loop,
Willy Tarreau24208272012-05-21 17:28:50 +0200686 .close = NULL,
Willy Tarreau5c979a92012-05-07 17:15:39 +0200687};
Willy Tarreaubaaee002006-06-26 02:48:02 +0200688
689/*
690 * Local variables:
691 * c-indent-level: 8
692 * c-basic-offset: 8
693 * End:
694 */