blob: 1b543d00701086662bd5f09d47c8aa10e67a034b [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Functions operating on SOCK_STREAM and buffers.
3 *
Willy Tarreaub22e55b2011-03-20 10:16:46 +01004 * Copyright 2000-2011 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 Tarreaubaaee002006-06-26 02:48:02 +020033#include <proto/fd.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020034#include <proto/freq_ctr.h>
Willy Tarreaub22e55b2011-03-20 10:16:46 +010035#include <proto/frontend.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020036#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 Tarreaubaaee002006-06-26 02:48:02 +020039#include <proto/stream_sock.h>
40#include <proto/task.h>
41
Willy Tarreau5bd8c372009-01-19 00:32:22 +010042#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043
Willy Tarreau6b4aad42009-01-18 21:59:13 +010044#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau43d8fb22011-08-22 17:12:02 +020045#include <common/splice.h>
Willy Tarreau5bd8c372009-01-19 00:32:22 +010046
47/* A pipe contains 16 segments max, and it's common to see segments of 1448 bytes
48 * because of timestamps. Use this as a hint for not looping on splice().
49 */
50#define SPLICE_FULL_HINT 16*1448
51
Willy Tarreaua9de3332009-11-28 07:47:10 +010052/* how many data we attempt to splice at once when the buffer is configured for
53 * infinite forwarding */
54#define MAX_SPLICE_AT_ONCE (1<<30)
55
Willy Tarreau5bd8c372009-01-19 00:32:22 +010056/* Returns :
57 * -1 if splice is not possible or not possible anymore and we must switch to
58 * user-land copy (eg: to_forward reached)
59 * 0 when we know that polling is required to get more data (EAGAIN)
60 * 1 for all other cases (we can safely try again, or if an activity has been
61 * detected (DATA/NULL/ERR))
62 * Sets :
63 * BF_READ_NULL
64 * BF_READ_PARTIAL
65 * BF_WRITE_PARTIAL (during copy)
Willy Tarreauba0b63d2009-09-20 08:09:44 +020066 * BF_OUT_EMPTY (during copy)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010067 * SI_FL_ERR
68 * SI_FL_WAIT_ROOM
69 * (SI_FL_WAIT_RECV)
Willy Tarreau3eba98a2009-01-25 13:56:13 +010070 *
71 * This function automatically allocates a pipe from the pipe pool. It also
72 * carefully ensures to clear b->pipe whenever it leaves the pipe empty.
Willy Tarreau5bd8c372009-01-19 00:32:22 +010073 */
74static int stream_sock_splice_in(struct buffer *b, struct stream_interface *si)
75{
Willy Tarreau82a04562011-12-11 22:37:06 +010076 static int splice_detects_close;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010077 int fd = si->fd;
Willy Tarreau31971e52009-09-20 12:07:52 +020078 int ret;
79 unsigned long max;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010080 int retval = 1;
81
82 if (!b->to_forward)
83 return -1;
84
85 if (!(b->flags & BF_KERN_SPLICING))
86 return -1;
87
Willy Tarreau02d6cfc2012-03-01 18:19:58 +010088 if (buffer_not_empty(b)) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +010089 /* We're embarrassed, there are already data pending in
90 * the buffer and we don't want to have them at two
91 * locations at a time. Let's indicate we need some
92 * place and ask the consumer to hurry.
93 */
94 si->flags |= SI_FL_WAIT_ROOM;
95 EV_FD_CLR(fd, DIR_RD);
96 b->rex = TICK_ETERNITY;
97 b->cons->chk_snd(b->cons);
98 return 1;
99 }
100
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100101 if (unlikely(b->pipe == NULL)) {
102 if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100103 b->flags &= ~BF_KERN_SPLICING;
104 return -1;
105 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100106 }
107
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100108 /* At this point, b->pipe is valid */
109
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100110 while (1) {
Willy Tarreaua9de3332009-11-28 07:47:10 +0100111 if (b->to_forward == BUF_INFINITE_FORWARD)
112 max = MAX_SPLICE_AT_ONCE;
113 else
114 max = b->to_forward;
115
Willy Tarreau31971e52009-09-20 12:07:52 +0200116 if (!max) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100117 /* It looks like the buffer + the pipe already contain
118 * the maximum amount of data to be transferred. Try to
119 * send those data immediately on the other side if it
120 * is currently waiting.
121 */
122 retval = -1; /* end of forwarding */
123 break;
124 }
125
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100126 ret = splice(fd, NULL, b->pipe->prod, NULL, max,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100127 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
128
129 if (ret <= 0) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100130 if (ret == 0) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100131 /* connection closed. This is only detected by
Willy Tarreau82a04562011-12-11 22:37:06 +0100132 * recent kernels (>= 2.6.27.13). If we notice
133 * it works, we store the info for later use.
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100134 */
Willy Tarreau82a04562011-12-11 22:37:06 +0100135 splice_detects_close = 1;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100136 b->flags |= BF_READ_NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100137 retval = 1; /* no need for further polling */
138 break;
139 }
140
141 if (errno == EAGAIN) {
142 /* there are two reasons for EAGAIN :
143 * - nothing in the socket buffer (standard)
144 * - pipe is full
Willy Tarreau98b306b2009-01-25 11:11:32 +0100145 * - the connection is closed (kernel < 2.6.27.13)
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100146 * Since we don't know if pipe is full, we'll
147 * stop if the pipe is not empty. Anyway, we
148 * will almost always fill/empty the pipe.
149 */
150
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100151 if (b->pipe->data) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100152 si->flags |= SI_FL_WAIT_ROOM;
153 retval = 1;
154 break;
155 }
156
Willy Tarreau82a04562011-12-11 22:37:06 +0100157 /* We don't know if the connection was closed,
158 * but if we know splice detects close, then we
159 * know it for sure.
Willy Tarreau98b306b2009-01-25 11:11:32 +0100160 * But if we're called upon POLLIN with an empty
Willy Tarreau82a04562011-12-11 22:37:06 +0100161 * pipe and get EAGAIN, it is suspect enough to
Willy Tarreau98b306b2009-01-25 11:11:32 +0100162 * try to fall back to the normal recv scheme
163 * which will be able to deal with the situation.
164 */
Willy Tarreau82a04562011-12-11 22:37:06 +0100165 if (splice_detects_close)
166 retval = 0; /* we know for sure that it's EAGAIN */
167 else
168 retval = -1;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100169 break;
170 }
Willy Tarreaudc340a92009-06-28 23:10:19 +0200171
Willy Tarreaua9de3332009-11-28 07:47:10 +0100172 if (errno == ENOSYS || errno == EINVAL) {
Willy Tarreaudc340a92009-06-28 23:10:19 +0200173 /* splice not supported on this end, disable it */
174 b->flags &= ~BF_KERN_SPLICING;
175 si->flags &= ~SI_FL_CAP_SPLICE;
176 put_pipe(b->pipe);
177 b->pipe = NULL;
178 return -1;
179 }
180
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100181 /* here we have another error */
182 si->flags |= SI_FL_ERR;
183 retval = 1;
184 break;
185 } /* ret <= 0 */
186
Willy Tarreau31971e52009-09-20 12:07:52 +0200187 if (b->to_forward != BUF_INFINITE_FORWARD)
188 b->to_forward -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100189 b->total += ret;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100190 b->pipe->data += ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100191 b->flags |= BF_READ_PARTIAL;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200192 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100193
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100194 if (b->pipe->data >= SPLICE_FULL_HINT ||
195 ret >= global.tune.recv_enough) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100196 /* We've read enough of it for this time. */
197 retval = 1;
198 break;
199 }
200 } /* while */
201
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100202 if (unlikely(!b->pipe->data)) {
203 put_pipe(b->pipe);
204 b->pipe = NULL;
205 }
206
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100207 return retval;
208}
209
Willy Tarreau6b4aad42009-01-18 21:59:13 +0100210#endif /* CONFIG_HAP_LINUX_SPLICE */
211
212
Willy Tarreaubaaee002006-06-26 02:48:02 +0200213/*
Willy Tarreaud7971282006-07-29 18:36:34 +0200214 * this function is called on a read event from a stream socket.
Willy Tarreau83749182007-04-15 20:56:27 +0200215 * It returns 0 if we have a high confidence that we will not be
216 * able to read more data without polling first. Returns non-zero
217 * otherwise.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200218 */
Willy Tarreaud7971282006-07-29 18:36:34 +0200219int stream_sock_read(int fd) {
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200220 struct stream_interface *si = fdtab[fd].owner;
Willy Tarreau48adac52008-08-30 04:58:38 +0200221 struct buffer *b = si->ib;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200222 int ret, max, retval, 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 Tarreaud6f087e2008-01-18 17:20:13 +0100226 fprintf(stderr,"stream_sock_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
228
Willy Tarreau83749182007-04-15 20:56:27 +0200229 retval = 1;
230
Willy Tarreau71543652009-07-14 19:55:05 +0200231 /* stop immediately on errors. Note that we DON'T want to stop on
232 * POLL_ERR, as the poller might report a write error while there
233 * are still data available in the recv buffer. This typically
234 * happens when we send too large a request to a backend server
235 * which rejects it before reading it all.
236 */
237 if (fdtab[fd].state == FD_STERROR)
Willy Tarreau6996e152007-04-30 14:37:43 +0200238 goto out_error;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100239
240 /* stop here if we reached the end of data */
241 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP)
242 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200243
Willy Tarreaud06e7112009-03-29 10:18:41 +0200244 /* maybe we were called immediately after an asynchronous shutr */
245 if (b->flags & BF_SHUTR)
246 goto out_wakeup;
247
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100248#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau14acc702011-05-11 20:47:24 +0200249 if (b->to_forward >= MIN_SPLICE_FORWARD && b->flags & BF_KERN_SPLICING) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100250
251 /* Under Linux, if FD_POLL_HUP is set, we have reached the end.
252 * Since older splice() implementations were buggy and returned
253 * EAGAIN on end of read, let's bypass the call to splice() now.
254 */
255 if (fdtab[fd].ev & FD_POLL_HUP)
256 goto out_shutdown_r;
257
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100258 retval = stream_sock_splice_in(b, si);
259
260 if (retval >= 0) {
261 if (si->flags & SI_FL_ERR)
262 goto out_error;
263 if (b->flags & BF_READ_NULL)
264 goto out_shutdown_r;
265 goto out_wakeup;
266 }
267 /* splice not possible (anymore), let's go on on standard copy */
268 }
269#endif
Willy Tarreau8a7af602008-05-03 23:07:14 +0200270 cur_read = 0;
Willy Tarreau6996e152007-04-30 14:37:43 +0200271 while (1) {
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200272 max = bi_avail(b);
Willy Tarreau864e8252009-12-28 17:36:37 +0100273
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200274 if (!max) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100275 b->flags |= BF_FULL;
276 si->flags |= SI_FL_WAIT_ROOM;
277 break;
278 }
279
Willy Tarreau6996e152007-04-30 14:37:43 +0200280 /*
281 * 1. compute the maximum block size we can read at once.
282 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100283 if (buffer_empty(b)) {
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100284 /* let's realign the buffer to optimize I/O */
Willy Tarreaua458b672012-03-05 11:17:50 +0100285 b->p = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200286 }
Willy Tarreau89fa7062012-03-02 16:13:16 +0100287 else if (b->data + b->o < b->p &&
288 b->p + b->i < b->data + b->size) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100289 /* remaining space wraps at the end, with a moving limit */
Willy Tarreau363a5bb2012-03-02 20:14:45 +0100290 if (max > b->data + b->size - (b->p + b->i))
291 max = b->data + b->size - (b->p + b->i);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100292 }
Willy Tarreau864e8252009-12-28 17:36:37 +0100293 /* else max is already OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200294
Willy Tarreau6996e152007-04-30 14:37:43 +0200295 /*
296 * 2. read the largest possible block
297 */
Willy Tarreaucc5cfcb2012-05-04 21:35:27 +0200298 ret = recv(fd, bi_end(b), max, 0);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200299
Willy Tarreau83749182007-04-15 20:56:27 +0200300 if (ret > 0) {
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100301 b->i += ret;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200302 cur_read += ret;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100303
Willy Tarreau2e046c62012-03-01 16:08:30 +0100304 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreau31971e52009-09-20 12:07:52 +0200305 if (b->to_forward && !(b->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
306 unsigned long fwd = ret;
307 if (b->to_forward != BUF_INFINITE_FORWARD) {
308 if (fwd > b->to_forward)
309 fwd = b->to_forward;
310 b->to_forward -= fwd;
311 }
Willy Tarreau328582c2012-05-05 23:32:27 +0200312 b_adv(b, fwd);
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100313 }
Willy Tarreauf890dc92008-12-13 21:12:26 +0100314
Willy Tarreaub38903c2008-11-23 21:33:29 +0100315 if (fdtab[fd].state == FD_STCONN)
316 fdtab[fd].state = FD_STREADY;
317
Willy Tarreau3da77c52008-08-29 09:58:42 +0200318 b->flags |= BF_READ_PARTIAL;
Willy Tarreau83749182007-04-15 20:56:27 +0200319 b->total += ret;
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100320
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200321 if (bi_full(b)) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200322 /* The buffer is now full, there's no point in going through
323 * the loop again.
324 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100325 if (!(b->flags & BF_STREAMER_FAST) && (cur_read == buffer_len(b))) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200326 b->xfer_small = 0;
327 b->xfer_large++;
328 if (b->xfer_large >= 3) {
329 /* we call this buffer a fast streamer if it manages
330 * to be filled in one call 3 consecutive times.
331 */
332 b->flags |= (BF_STREAMER | BF_STREAMER_FAST);
333 //fputc('+', stderr);
334 }
335 }
336 else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200337 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200338 b->xfer_large = 0;
339 b->xfer_small++;
340 if (b->xfer_small >= 2) {
341 /* if the buffer has been at least half full twice,
342 * we receive faster than we send, so at least it
343 * is not a "fast streamer".
344 */
345 b->flags &= ~BF_STREAMER_FAST;
346 //fputc('-', stderr);
347 }
348 }
349 else {
350 b->xfer_small = 0;
351 b->xfer_large = 0;
352 }
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100353
354 b->flags |= BF_FULL;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100355 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100356 break;
Willy Tarreau6996e152007-04-30 14:37:43 +0200357 }
358
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200359 /* if too many bytes were missing from last read, it means that
360 * it's pointless trying to read again because the system does
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100361 * not have them in buffers. BTW, if FD_POLL_HUP was present,
362 * it means that we have reached the end and that the connection
363 * is closed.
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200364 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100365 if (ret < max) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200366 if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200367 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200368 b->xfer_large = 0;
369 b->xfer_small++;
370 if (b->xfer_small >= 3) {
371 /* we have read less than half of the buffer in
372 * one pass, and this happened at least 3 times.
373 * This is definitely not a streamer.
374 */
375 b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST);
376 //fputc('!', stderr);
377 }
378 }
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200379 /* unfortunately, on level-triggered events, POLL_HUP
380 * is generally delivered AFTER the system buffer is
381 * empty, so this one might never match.
382 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100383 if (fdtab[fd].ev & FD_POLL_HUP)
384 goto out_shutdown_r;
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200385
386 /* if a streamer has read few data, it may be because we
387 * have exhausted system buffers. It's not worth trying
388 * again.
389 */
390 if (b->flags & BF_STREAMER)
391 break;
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200392
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100393 /* generally if we read something smaller than 1 or 2 MSS,
394 * it means that either we have exhausted the system's
395 * buffers (streamer or question-response protocol) or
396 * that the connection will be closed. Streamers are
397 * easily detected so we return early. For other cases,
398 * it's still better to perform a last read to be sure,
399 * because it may save one complete poll/read/wakeup cycle
400 * in case of shutdown.
401 */
402 if (ret < MIN_RET_FOR_READ_LOOP && b->flags & BF_STREAMER)
403 break;
404
405 /* if we read a large block smaller than what we requested,
406 * it's almost certain we'll never get anything more.
407 */
408 if (ret >= global.tune.recv_enough)
409 break;
410 }
Willy Tarreau83749182007-04-15 20:56:27 +0200411
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100412 if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200413 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200414 }
415 else if (ret == 0) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200416 /* connection closed */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100417 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200418 }
Willy Tarreau9f195292007-04-15 21:26:58 +0200419 else if (errno == EAGAIN) {
420 /* Ignore EAGAIN but inform the poller that there is
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100421 * nothing to read left if we did not read much, ie
422 * less than what we were still expecting to read.
423 * But we may have done some work justifying to notify
424 * the task.
Willy Tarreau9f195292007-04-15 21:26:58 +0200425 */
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100426 if (cur_read < MIN_RET_FOR_READ_LOOP)
427 retval = 0;
Willy Tarreau83749182007-04-15 20:56:27 +0200428 break;
429 }
430 else {
Willy Tarreau6996e152007-04-30 14:37:43 +0200431 goto out_error;
Willy Tarreau83749182007-04-15 20:56:27 +0200432 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200433 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200434
Willy Tarreau6996e152007-04-30 14:37:43 +0200435 out_wakeup:
Willy Tarreau22be90b2011-05-11 20:32:36 +0200436 /* We might have some data the consumer is waiting for.
437 * We can do fast-forwarding, but we avoid doing this for partial
438 * buffers, because it is very likely that it will be done again
439 * immediately afterwards once the following data is parsed (eg:
440 * HTTP chunking).
441 */
Willy Tarreaueb9fd512011-12-11 22:11:47 +0100442 if (b->pipe || /* always try to send spliced data */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100443 (b->i == 0 && (b->cons->flags & SI_FL_WAIT_DATA))) {
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100444 int last_len = b->pipe ? b->pipe->data : 0;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100445
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100446 b->cons->chk_snd(b->cons);
447
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100448 /* check if the consumer has freed some space */
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100449 if (!(b->flags & BF_FULL) &&
450 (!last_len || !b->pipe || b->pipe->data < last_len))
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100451 si->flags &= ~SI_FL_WAIT_ROOM;
452 }
453
454 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100455 EV_FD_CLR(fd, DIR_RD);
456 b->rex = TICK_ETERNITY;
457 }
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200458 else if ((b->flags & (BF_SHUTR|BF_READ_PARTIAL|BF_FULL|BF_DONT_READ|BF_READ_NOEXP)) == BF_READ_PARTIAL)
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100459 b->rex = tick_add_ifset(now_ms, b->rto);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100460
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100461 /* we have to wake up if there is a special event or if we don't have
462 * any more data to forward.
463 */
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200464 if ((b->flags & (BF_READ_NULL|BF_READ_ERROR)) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100465 si->state != SI_ST_EST ||
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200466 (si->flags & SI_FL_ERR) ||
467 ((b->flags & BF_READ_PARTIAL) && (!b->to_forward || b->cons->state != SI_ST_EST)))
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100468 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200469
470 if (b->flags & BF_READ_ACTIVITY)
471 b->flags &= ~BF_READ_DONTWAIT;
472
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100473 fdtab[fd].ev &= ~FD_POLL_IN;
Willy Tarreau83749182007-04-15 20:56:27 +0200474 return retval;
Willy Tarreau6996e152007-04-30 14:37:43 +0200475
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100476 out_shutdown_r:
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200477 /* we received a shutdown */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100478 fdtab[fd].ev &= ~FD_POLL_HUP;
479 b->flags |= BF_READ_NULL;
Willy Tarreau520d95e2009-09-19 21:04:57 +0200480 if (b->flags & BF_AUTO_CLOSE)
Willy Tarreau418fd472009-09-06 21:37:23 +0200481 buffer_shutw_now(b);
Willy Tarreau99126c32008-11-27 10:30:51 +0100482 stream_sock_shutr(si);
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200483 goto out_wakeup;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100484
Willy Tarreau6996e152007-04-30 14:37:43 +0200485 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100486 /* Read error on the file descriptor. We mark the FD as STERROR so
487 * that we don't use it anymore. The error is reported to the stream
488 * interface which will take proper action. We must not perturbate the
489 * buffer because the stream interface wants to ensure transparent
490 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200491 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100492
Willy Tarreau6996e152007-04-30 14:37:43 +0200493 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100494 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100495 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100496 si->flags |= SI_FL_ERR;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100497 retval = 1;
498 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200499}
500
501
502/*
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100503 * This function is called to send buffer data to a stream socket.
504 * It returns -1 in case of unrecoverable error, 0 if the caller needs to poll
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100505 * before calling it again, otherwise 1. If a pipe was associated with the
506 * buffer and it empties it, it releases it as well.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200507 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100508static int stream_sock_write_loop(struct stream_interface *si, struct buffer *b)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100509{
Willy Tarreau83749182007-04-15 20:56:27 +0200510 int write_poll = MAX_WRITE_POLL_LOOPS;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100511 int retval = 1;
512 int ret, max;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200513
Willy Tarreaub22e55b2011-03-20 10:16:46 +0100514 if (unlikely(si->send_proxy_ofs)) {
515 /* The target server expects a PROXY line to be sent first.
516 * If the send_proxy_ofs is negative, it corresponds to the
517 * offset to start sending from then end of the proxy string
518 * (which is recomputed every time since it's constant). If
519 * it is positive, it means we have to send from the start.
520 */
521 ret = make_proxy_line(trash, sizeof(trash),
Willy Tarreau6471afb2011-09-23 10:54:59 +0200522 &b->prod->addr.from, &b->prod->addr.to);
Willy Tarreaub22e55b2011-03-20 10:16:46 +0100523 if (!ret)
524 return -1;
525
526 if (si->send_proxy_ofs > 0)
527 si->send_proxy_ofs = -ret; /* first call */
528
529 /* we have to send trash from (ret+sp for -sp bytes) */
530 ret = send(si->fd, trash + ret + si->send_proxy_ofs, -si->send_proxy_ofs,
531 (b->flags & BF_OUT_EMPTY) ? 0 : MSG_MORE);
532 if (ret > 0) {
533 if (fdtab[si->fd].state == FD_STCONN)
534 fdtab[si->fd].state = FD_STREADY;
535
536 si->send_proxy_ofs += ret; /* becomes zero once complete */
537 b->flags |= BF_WRITE_NULL; /* connect() succeeded */
538 }
539 else if (ret == 0 || errno == EAGAIN) {
540 /* nothing written, we need to poll for write first */
541 return 0;
542 }
543 else {
544 /* bad, we got an error */
545 return -1;
546 }
547 }
548
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100549#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100550 while (b->pipe) {
551 ret = splice(b->pipe->cons, NULL, si->fd, NULL, b->pipe->data,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100552 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
553 if (ret <= 0) {
554 if (ret == 0 || errno == EAGAIN) {
555 retval = 0;
556 return retval;
557 }
558 /* here we have another error */
559 retval = -1;
560 return retval;
561 }
562
563 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100564 b->pipe->data -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100565
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100566 if (!b->pipe->data) {
567 put_pipe(b->pipe);
568 b->pipe = NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100569 break;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100570 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100571
572 if (--write_poll <= 0)
573 return retval;
Willy Tarreaueb9fd512011-12-11 22:11:47 +0100574
575 /* The only reason we did not empty the pipe is that the output
576 * buffer is full.
577 */
578 return 0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100579 }
580
581 /* At this point, the pipe is empty, but we may still have data pending
582 * in the normal buffer.
583 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100584#endif
Willy Tarreau2e046c62012-03-01 16:08:30 +0100585 if (!b->o) {
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200586 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100587 return retval;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200588 }
Willy Tarreau83749182007-04-15 20:56:27 +0200589
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100590 /* when we're in this loop, we already know that there is no spliced
591 * data left, and that there are sendable buffered data.
592 */
Willy Tarreau6996e152007-04-30 14:37:43 +0200593 while (1) {
Willy Tarreau89fa7062012-03-02 16:13:16 +0100594 max = b->o;
Willy Tarreau83749182007-04-15 20:56:27 +0200595
Willy Tarreau89fa7062012-03-02 16:13:16 +0100596 /* outgoing data may wrap at the end */
597 if (b->data + max > b->p)
598 max = b->data + max - b->p;
Willy Tarreauf890dc92008-12-13 21:12:26 +0100599
Willy Tarreau6db06d32009-08-19 11:14:11 +0200600 /* check if we want to inform the kernel that we're interested in
601 * sending more data after this call. We want this if :
602 * - we're about to close after this last send and want to merge
603 * the ongoing FIN with the last segment.
604 * - we know we can't send everything at once and must get back
605 * here because of unaligned data
Willy Tarreaud38b53b2010-01-03 11:18:34 +0100606 * - there is still a finite amount of data to forward
Willy Tarreau6db06d32009-08-19 11:14:11 +0200607 * The test is arranged so that the most common case does only 2
608 * tests.
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200609 */
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200610
Willy Tarreauface8392010-01-03 11:37:54 +0100611 if (MSG_NOSIGNAL && MSG_MORE) {
Willy Tarreau6db06d32009-08-19 11:14:11 +0200612 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
613
Willy Tarreau96e31212011-05-30 18:10:30 +0200614 if ((!(b->flags & BF_NEVER_WAIT) &&
615 ((b->to_forward && b->to_forward != BUF_INFINITE_FORWARD) ||
616 (b->flags & BF_EXPECT_MORE))) ||
Willy Tarreau2e046c62012-03-01 16:08:30 +0100617 ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == BF_SHUTW_NOW && (max == b->o)) ||
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100618 (max != b->o)) {
Willy Tarreauface8392010-01-03 11:37:54 +0100619 send_flag |= MSG_MORE;
620 }
Willy Tarreau6db06d32009-08-19 11:14:11 +0200621
Willy Tarreau2be39392010-01-03 17:24:51 +0100622 /* this flag has precedence over the rest */
623 if (b->flags & BF_SEND_DONTWAIT)
624 send_flag &= ~MSG_MORE;
625
Willy Tarreaucc5cfcb2012-05-04 21:35:27 +0200626 ret = send(si->fd, bo_ptr(b), max, send_flag);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200627 } else {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200628 int skerr;
629 socklen_t lskerr = sizeof(skerr);
630
Willy Tarreau87bed622009-03-08 22:25:28 +0100631 ret = getsockopt(si->fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
Willy Tarreauc6423482006-10-15 14:59:03 +0200632 if (ret == -1 || skerr)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200633 ret = -1;
634 else
Willy Tarreaucc5cfcb2012-05-04 21:35:27 +0200635 ret = send(si->fd, bo_ptr(b), max, MSG_DONTWAIT);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200636 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200637
638 if (ret > 0) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100639 if (fdtab[si->fd].state == FD_STCONN)
640 fdtab[si->fd].state = FD_STREADY;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100641
Willy Tarreau3da77c52008-08-29 09:58:42 +0200642 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreaue393fe22008-08-16 22:18:07 +0200643
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100644 b->o -= ret;
645 if (likely(!buffer_len(b)))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100646 /* optimize data alignment in the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +0100647 b->p = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200648
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200649 if (likely(!bi_full(b)))
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100650 b->flags &= ~BF_FULL;
651
Willy Tarreau2e046c62012-03-01 16:08:30 +0100652 if (!b->o) {
Willy Tarreauf17810e2012-03-09 18:10:44 +0100653 /* Always clear both flags once everything has been sent, they're one-shot */
654 b->flags &= ~(BF_EXPECT_MORE | BF_SEND_DONTWAIT);
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200655 if (likely(!b->pipe))
656 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100657 break;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200658 }
Willy Tarreau83749182007-04-15 20:56:27 +0200659
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200660 /* if the system buffer is full, don't insist */
661 if (ret < max)
662 break;
663
Willy Tarreau6996e152007-04-30 14:37:43 +0200664 if (--write_poll <= 0)
665 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200666 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200667 else if (ret == 0 || errno == EAGAIN) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100668 /* nothing written, we need to poll for write first */
Willy Tarreau83749182007-04-15 20:56:27 +0200669 retval = 0;
670 break;
671 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200672 else {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100673 /* bad, we got an error */
674 retval = -1;
675 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200676 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200677 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200678
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100679 return retval;
680}
Willy Tarreau6996e152007-04-30 14:37:43 +0200681
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100682
683/*
684 * This function is called on a write event from a stream socket.
685 * It returns 0 if the caller needs to poll before calling it again, otherwise
686 * non-zero.
687 */
688int stream_sock_write(int fd)
689{
690 struct stream_interface *si = fdtab[fd].owner;
691 struct buffer *b = si->ob;
692 int retval = 1;
693
694#ifdef DEBUG_FULL
695 fprintf(stderr,"stream_sock_write : fd=%d, owner=%p\n", fd, fdtab[fd].owner);
696#endif
697
698 retval = 1;
Willy Tarreau71543652009-07-14 19:55:05 +0200699 if (fdtab[fd].state == FD_STERROR)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100700 goto out_error;
701
Willy Tarreaud06e7112009-03-29 10:18:41 +0200702 /* we might have been called just after an asynchronous shutw */
703 if (b->flags & BF_SHUTW)
704 goto out_wakeup;
705
Willy Tarreaub22e55b2011-03-20 10:16:46 +0100706 if (likely(!(b->flags & BF_OUT_EMPTY) || si->send_proxy_ofs)) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100707 /* OK there are data waiting to be sent */
708 retval = stream_sock_write_loop(si, b);
709 if (retval < 0)
710 goto out_error;
Willy Tarreau68f49da2011-03-28 23:17:54 +0200711 else if (retval == 0 && si->send_proxy_ofs)
712 goto out_may_wakeup; /* we failed to send the PROXY string */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200713 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100714 else {
715 /* may be we have received a connection acknowledgement in TCP mode without data */
716 if (likely(fdtab[fd].state == FD_STCONN)) {
717 /* We have no data to send to check the connection, and
718 * getsockopt() will not inform us whether the connection
719 * is still pending. So we'll reuse connect() to check the
720 * state of the socket. This has the advantage of givig us
721 * the following info :
722 * - error
723 * - connecting (EALREADY, EINPROGRESS)
724 * - connected (EISCONN, 0)
725 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200726 if ((connect(fd, fdinfo[fd].peeraddr, fdinfo[fd].peerlen) == 0))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100727 errno = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200728
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100729 if (errno == EALREADY || errno == EINPROGRESS) {
730 retval = 0;
731 goto out_may_wakeup;
732 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100733
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100734 if (errno && errno != EISCONN)
735 goto out_error;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200736
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100737 /* OK we just need to indicate that we got a connection
738 * and that we wrote nothing.
739 */
740 b->flags |= BF_WRITE_NULL;
741 fdtab[fd].state = FD_STREADY;
742 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200743
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100744 /* Funny, we were called to write something but there wasn't
745 * anything. We can get there, for example if we were woken up
Willy Tarreau2e046c62012-03-01 16:08:30 +0100746 * on a write event to finish the splice, but the ->o is 0
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100747 * so we cannot write anything from the buffer. Let's disable
748 * the write event and pretend we never came there.
749 */
750 }
751
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200752 if (b->flags & BF_OUT_EMPTY) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100753 /* the connection is established but we can't write. Either the
754 * buffer is empty, or we just refrain from sending because the
Willy Tarreau2e046c62012-03-01 16:08:30 +0100755 * ->o limit was reached. Maybe we just wrote the last
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100756 * chunk and need to close.
757 */
Willy Tarreau520d95e2009-09-19 21:04:57 +0200758 if (((b->flags & (BF_SHUTW|BF_HIJACK|BF_SHUTW_NOW)) == BF_SHUTW_NOW) &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100759 (si->state == SI_ST_EST)) {
760 stream_sock_shutw(si);
761 goto out_wakeup;
762 }
763
Willy Tarreau59454bf2009-09-20 11:13:40 +0200764 if ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreauac128fe2009-01-09 13:05:19 +0100765 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100766
Willy Tarreauac128fe2009-01-09 13:05:19 +0100767 EV_FD_CLR(fd, DIR_WR);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100768 b->wex = TICK_ETERNITY;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100769 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100770
771 out_may_wakeup:
772 if (b->flags & BF_WRITE_ACTIVITY) {
773 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200774 if ((b->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100775 b->wex = tick_add_ifset(now_ms, b->wto);
776
777 out_wakeup:
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200778 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100779 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200780 * during writes, we refresh it. We only do this if the
781 * interface is not configured for "independant streams",
782 * because for some applications it's better not to do this,
783 * for instance when continuously exchanging small amounts
784 * of data which can full the socket buffers long before a
785 * write timeout is detected.
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100786 */
787 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
788 }
789
790 /* the producer might be waiting for more room to store data */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200791 if (likely((b->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL|BF_DONT_READ)) == BF_WRITE_PARTIAL &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100792 (b->prod->flags & SI_FL_WAIT_ROOM)))
793 b->prod->chk_rcv(b->prod);
794
795 /* we have to wake up if there is a special event or if we don't have
796 * any more data to forward and it's not planned to send any more.
797 */
798 if (likely((b->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200799 ((b->flags & BF_OUT_EMPTY) && !b->to_forward) ||
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100800 si->state != SI_ST_EST ||
801 b->prod->state != SI_ST_EST))
802 task_wakeup(si->owner, TASK_WOKEN_IO);
803 }
804
805 fdtab[fd].ev &= ~FD_POLL_OUT;
806 return retval;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100807
Willy Tarreau6996e152007-04-30 14:37:43 +0200808 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100809 /* Write error on the file descriptor. We mark the FD as STERROR so
810 * that we don't use it anymore. The error is reported to the stream
811 * interface which will take proper action. We must not perturbate the
812 * buffer because the stream interface wants to ensure transparent
813 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200814 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100815
Willy Tarreau6996e152007-04-30 14:37:43 +0200816 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100817 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100818 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100819 si->flags |= SI_FL_ERR;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200820 task_wakeup(si->owner, TASK_WOKEN_IO);
821 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200822}
823
Willy Tarreau48adac52008-08-30 04:58:38 +0200824/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200825 * This function performs a shutdown-write on a stream interface in a connected or
826 * init state (it does nothing for other states). It either shuts the write side
Willy Tarreau99126c32008-11-27 10:30:51 +0100827 * or closes the file descriptor and marks itself as closed. The buffer flags are
Willy Tarreau7340ca52010-01-16 10:03:45 +0100828 * updated to reflect the new state. It does also close everything is the SI was
829 * marked as being in error state.
Willy Tarreau48adac52008-08-30 04:58:38 +0200830 */
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100831void stream_sock_shutw(struct stream_interface *si)
Willy Tarreau48adac52008-08-30 04:58:38 +0200832{
Willy Tarreau418fd472009-09-06 21:37:23 +0200833 si->ob->flags &= ~BF_SHUTW_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100834 if (si->ob->flags & BF_SHUTW)
835 return;
836 si->ob->flags |= BF_SHUTW;
837 si->ob->wex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100838 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau99126c32008-11-27 10:30:51 +0100839
Willy Tarreaub38903c2008-11-23 21:33:29 +0100840 switch (si->state) {
Willy Tarreaub38903c2008-11-23 21:33:29 +0100841 case SI_ST_EST:
Willy Tarreau720058c2009-07-14 19:21:50 +0200842 /* we have to shut before closing, otherwise some short messages
843 * may never leave the system, especially when there are remaining
844 * unread data in the socket input buffer, or when nolinger is set.
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100845 * However, if SI_FL_NOLINGER is explicitly set, we know there is
846 * no risk so we close both sides immediately.
Willy Tarreau720058c2009-07-14 19:21:50 +0200847 */
Willy Tarreau7340ca52010-01-16 10:03:45 +0100848 if (si->flags & SI_FL_ERR) {
849 /* quick close, the socket is already shut. Remove pending flags. */
850 si->flags &= ~SI_FL_NOLINGER;
851 } else if (si->flags & SI_FL_NOLINGER) {
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100852 si->flags &= ~SI_FL_NOLINGER;
853 setsockopt(si->fd, SOL_SOCKET, SO_LINGER,
854 (struct linger *) &nolinger, sizeof(struct linger));
855 } else {
856 EV_FD_CLR(si->fd, DIR_WR);
857 shutdown(si->fd, SHUT_WR);
Willy Tarreau720058c2009-07-14 19:21:50 +0200858
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100859 if (!(si->ib->flags & (BF_SHUTR|BF_DONT_READ)))
860 return;
861 }
Willy Tarreau5d707e12009-06-28 11:09:07 +0200862
Willy Tarreaub38903c2008-11-23 21:33:29 +0100863 /* fall through */
864 case SI_ST_CON:
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100865 /* we may have to close a pending connection, and mark the
866 * response buffer as shutr
867 */
Willy Tarreau48adac52008-08-30 04:58:38 +0200868 fd_delete(si->fd);
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100869 /* fall through */
870 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100871 case SI_ST_QUE:
872 case SI_ST_TAR:
Willy Tarreau7f006512008-12-07 14:04:04 +0100873 si->state = SI_ST_DIS;
Willy Tarreauad4cd582012-03-10 13:42:32 +0100874
875 if (si->release)
876 si->release(si);
Willy Tarreau7f006512008-12-07 14:04:04 +0100877 default:
Willy Tarreaud06e7112009-03-29 10:18:41 +0200878 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100879 si->ib->flags |= BF_SHUTR;
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100880 si->ib->rex = TICK_ETERNITY;
Willy Tarreau127334e2009-03-28 10:47:26 +0100881 si->exp = TICK_ETERNITY;
Willy Tarreau48adac52008-08-30 04:58:38 +0200882 }
Willy Tarreau48adac52008-08-30 04:58:38 +0200883}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200884
Willy Tarreau2d212792008-08-27 21:41:35 +0200885/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200886 * This function performs a shutdown-read on a stream interface in a connected or
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100887 * init state (it does nothing for other states). It either shuts the read side
Willy Tarreau99126c32008-11-27 10:30:51 +0100888 * or closes the file descriptor and marks itself as closed. The buffer flags are
889 * updated to reflect the new state.
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200890 */
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100891void stream_sock_shutr(struct stream_interface *si)
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200892{
Willy Tarreau418fd472009-09-06 21:37:23 +0200893 si->ib->flags &= ~BF_SHUTR_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100894 if (si->ib->flags & BF_SHUTR)
895 return;
896 si->ib->flags |= BF_SHUTR;
897 si->ib->rex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100898 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100899
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100900 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100901 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200902
Willy Tarreaucff64112008-11-03 06:26:53 +0100903 if (si->ob->flags & BF_SHUTW) {
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200904 fd_delete(si->fd);
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100905 si->state = SI_ST_DIS;
Willy Tarreau127334e2009-03-28 10:47:26 +0100906 si->exp = TICK_ETERNITY;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200907
908 if (si->release)
909 si->release(si);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100910 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200911 }
912 EV_FD_CLR(si->fd, DIR_RD);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100913 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200914}
915
916/*
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200917 * Updates a connected stream_sock file descriptor status and timeouts
918 * according to the buffers' flags. It should only be called once after the
919 * buffer flags have settled down, and before they are cleared. It doesn't
920 * harm to call it as often as desired (it just slightly hurts performance).
921 */
Willy Tarreaub0253252008-11-30 21:37:12 +0100922void stream_sock_data_finish(struct stream_interface *si)
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200923{
Willy Tarreaub0253252008-11-30 21:37:12 +0100924 struct buffer *ib = si->ib;
925 struct buffer *ob = si->ob;
926 int fd = si->fd;
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200927
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100928 DPRINTF(stderr,"[%u] %s: fd=%d owner=%p ib=%p, ob=%p, exp(r,w)=%u,%u ibf=%08x obf=%08x ibh=%d ibt=%d obh=%d obd=%d si=%d\n",
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200929 now_ms, __FUNCTION__,
930 fd, fdtab[fd].owner,
931 ib, ob,
932 ib->rex, ob->wex,
933 ib->flags, ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100934 ib->i, ib->o, ob->i, ob->o, si->state);
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200935
936 /* Check if we need to close the read side */
937 if (!(ib->flags & BF_SHUTR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200938 /* Read not closed, update FD status and timeout for reads */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200939 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200940 /* stop reading */
Willy Tarreau11f49402010-11-11 23:08:17 +0100941 if (!(si->flags & SI_FL_WAIT_ROOM)) {
942 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
943 si->flags |= SI_FL_WAIT_ROOM;
944 EV_FD_COND_C(fd, DIR_RD);
945 ib->rex = TICK_ETERNITY;
946 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200947 }
948 else {
949 /* (re)start reading and update timeout. Note: we don't recompute the timeout
950 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200951 * update it if is was not yet set. The stream socket handler will already
952 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200953 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100954 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau2d212792008-08-27 21:41:35 +0200955 EV_FD_COND_S(fd, DIR_RD);
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200956 if (!(ib->flags & (BF_READ_NOEXP|BF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau2d212792008-08-27 21:41:35 +0200957 ib->rex = tick_add_ifset(now_ms, ib->rto);
958 }
959 }
960
961 /* Check if we need to close the write side */
962 if (!(ob->flags & BF_SHUTW)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200963 /* Write not closed, update FD status and timeout for writes */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200964 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200965 /* stop writing */
Willy Tarreau11f49402010-11-11 23:08:17 +0100966 if (!(si->flags & SI_FL_WAIT_DATA)) {
967 if ((ob->flags & (BF_FULL|BF_HIJACK|BF_SHUTW_NOW)) == 0)
968 si->flags |= SI_FL_WAIT_DATA;
969 EV_FD_COND_C(fd, DIR_WR);
970 ob->wex = TICK_ETERNITY;
971 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200972 }
973 else {
974 /* (re)start writing and update timeout. Note: we don't recompute the timeout
975 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200976 * update it if is was not yet set. The stream socket handler will already
977 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200978 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100979 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau2d212792008-08-27 21:41:35 +0200980 EV_FD_COND_S(fd, DIR_WR);
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200981 if (!tick_isset(ob->wex)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200982 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200983 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200984 /* Note: depending on the protocol, we don't know if we're waiting
985 * for incoming data or not. So in order to prevent the socket from
986 * expiring read timeouts during writes, we refresh the read timeout,
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200987 * except if it was already infinite or if we have explicitly setup
988 * independant streams.
Willy Tarreau2d212792008-08-27 21:41:35 +0200989 */
Willy Tarreaud06e7112009-03-29 10:18:41 +0200990 ib->rex = tick_add_ifset(now_ms, ib->rto);
Willy Tarreau2d212792008-08-27 21:41:35 +0200991 }
992 }
993 }
994 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200995}
996
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100997/* This function is used for inter-stream-interface calls. It is called by the
998 * consumer to inform the producer side that it may be interested in checking
999 * for free space in the buffer. Note that it intentionally does not update
1000 * timeouts, so that we can still check them later at wake-up.
1001 */
1002void stream_sock_chk_rcv(struct stream_interface *si)
1003{
1004 struct buffer *ib = si->ib;
1005
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001006 DPRINTF(stderr,"[%u] %s: fd=%d owner=%p ib=%p, ob=%p, exp(r,w)=%u,%u ibf=%08x obf=%08x ibh=%d ibt=%d obh=%d obd=%d si=%d\n",
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001007 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +00001008 si->fd, fdtab[si->fd].owner,
1009 ib, si->ob,
1010 ib->rex, si->ob->wex,
1011 ib->flags, si->ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001012 ib->i, ib->o, si->ob->i, si->ob->o, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001013
1014 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
1015 return;
1016
Willy Tarreauf1ba4b32009-10-17 14:37:52 +02001017 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001018 /* stop reading */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +02001019 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001020 si->flags |= SI_FL_WAIT_ROOM;
1021 EV_FD_COND_C(si->fd, DIR_RD);
1022 }
1023 else {
1024 /* (re)start reading */
1025 si->flags &= ~SI_FL_WAIT_ROOM;
1026 EV_FD_COND_S(si->fd, DIR_RD);
1027 }
1028}
1029
1030
1031/* This function is used for inter-stream-interface calls. It is called by the
1032 * producer to inform the consumer side that it may be interested in checking
1033 * for data in the buffer. Note that it intentionally does not update timeouts,
1034 * so that we can still check them later at wake-up.
1035 */
1036void stream_sock_chk_snd(struct stream_interface *si)
1037{
1038 struct buffer *ob = si->ob;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001039 int retval;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001040
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001041 DPRINTF(stderr,"[%u] %s: fd=%d owner=%p ib=%p, ob=%p, exp(r,w)=%u,%u ibf=%08x obf=%08x ibh=%d ibt=%d obh=%d obd=%d si=%d\n",
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001042 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +00001043 si->fd, fdtab[si->fd].owner,
1044 si->ib, ob,
1045 si->ib->rex, ob->wex,
1046 si->ib->flags, ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001047 si->ib->i, si->ib->o, ob->i, ob->o, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001048
1049 if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW)))
1050 return;
1051
Willy Tarreaueb9fd512011-12-11 22:11:47 +01001052 if (unlikely((ob->flags & BF_OUT_EMPTY) && !(si->send_proxy_ofs))) /* called with nothing to send ! */
1053 return;
1054
1055 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
1056 (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
1057 (fdtab[si->fd].ev & FD_POLL_OUT))) /* we'll be called anyway */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001058 return;
1059
1060 retval = stream_sock_write_loop(si, ob);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001061 /* here, we have :
1062 * retval < 0 if an error was encountered during write.
1063 * retval = 0 if we can't write anymore without polling
1064 * retval = 1 if we're invited to come back when desired
1065 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001066 if (retval < 0) {
1067 /* Write error on the file descriptor. We mark the FD as STERROR so
1068 * that we don't use it anymore and we notify the task.
1069 */
1070 fdtab[si->fd].state = FD_STERROR;
1071 fdtab[si->fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +01001072 EV_FD_REM(si->fd);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001073 si->flags |= SI_FL_ERR;
1074 goto out_wakeup;
1075 }
Willy Tarreau68f49da2011-03-28 23:17:54 +02001076 else if (retval == 0 && si->send_proxy_ofs)
1077 goto out_may_wakeup; /* we failed to send the PROXY string */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001078
Willy Tarreauc54aef32009-07-27 20:08:06 +02001079 /* OK, so now we know that retval >= 0 means that some data might have
1080 * been sent, and that we may have to poll first. We have to do that
1081 * too if the buffer is not empty.
1082 */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001083 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001084 /* the connection is established but we can't write. Either the
1085 * buffer is empty, or we just refrain from sending because the
Willy Tarreau2e046c62012-03-01 16:08:30 +01001086 * ->o limit was reached. Maybe we just wrote the last
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001087 * chunk and need to close.
1088 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02001089 if (((ob->flags & (BF_SHUTW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTW_NOW)) ==
1090 (BF_AUTO_CLOSE|BF_SHUTW_NOW)) &&
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001091 (si->state == SI_ST_EST)) {
1092 stream_sock_shutw(si);
1093 goto out_wakeup;
1094 }
Willy Tarreaud06e7112009-03-29 10:18:41 +02001095
Willy Tarreau59454bf2009-09-20 11:13:40 +02001096 if ((ob->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001097 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001098 ob->wex = TICK_ETERNITY;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001099 }
1100 else {
Willy Tarreauc54aef32009-07-27 20:08:06 +02001101 /* Otherwise there are remaining data to be sent in the buffer,
1102 * which means we have to poll before doing so.
1103 */
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001104 EV_FD_COND_S(si->fd, DIR_WR);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001105 si->flags &= ~SI_FL_WAIT_DATA;
1106 if (!tick_isset(ob->wex))
1107 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001108 }
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001109
Willy Tarreau68f49da2011-03-28 23:17:54 +02001110 out_may_wakeup:
Willy Tarreauc9619462009-03-09 22:40:57 +01001111 if (likely(ob->flags & BF_WRITE_ACTIVITY)) {
1112 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001113 if ((ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreauc9619462009-03-09 22:40:57 +01001114 ob->wex = tick_add_ifset(now_ms, ob->wto);
1115
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001116 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreauc9619462009-03-09 22:40:57 +01001117 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001118 * during writes, we refresh it. We only do this if the
1119 * interface is not configured for "independant streams",
1120 * because for some applications it's better not to do this,
1121 * for instance when continuously exchanging small amounts
1122 * of data which can full the socket buffers long before a
1123 * write timeout is detected.
Willy Tarreauc9619462009-03-09 22:40:57 +01001124 */
1125 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
1126 }
1127 }
1128
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001129 /* in case of special condition (error, shutdown, end of write...), we
1130 * have to notify the task.
1131 */
1132 if (likely((ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001133 ((ob->flags & BF_OUT_EMPTY) && !ob->to_forward) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001134 si->state != SI_ST_EST)) {
1135 out_wakeup:
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001136 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
1137 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001138 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001139}
1140
Willy Tarreaueb472682010-05-28 18:46:57 +02001141/* This function is called on a read event from a listening socket, corresponding
1142 * to an accept. It tries to accept as many connections as possible, and for each
1143 * calls the listener's accept handler (generally the frontend's accept handler).
1144 */
1145int stream_sock_accept(int fd)
1146{
1147 struct listener *l = fdtab[fd].owner;
1148 struct proxy *p = l->frontend;
1149 int max_accept = global.tune.maxaccept;
1150 int cfd;
1151 int ret;
1152
1153 if (unlikely(l->nbconn >= l->maxconn)) {
Willy Tarreau62793712011-07-24 19:23:38 +02001154 listener_full(l);
Willy Tarreaueb472682010-05-28 18:46:57 +02001155 return 0;
1156 }
1157
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001158 if (global.cps_lim && !(l->options & LI_O_UNLIMITED)) {
Willy Tarreau81c25d02011-09-07 15:17:21 +02001159 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
1160
1161 if (unlikely(!max)) {
1162 /* frontend accept rate limit was reached */
1163 limit_listener(l, &global_listener_queue);
1164 task_schedule(global_listener_queue_task, tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0)));
1165 return 0;
1166 }
1167
1168 if (max_accept > max)
1169 max_accept = max;
1170 }
1171
Willy Tarreaueb472682010-05-28 18:46:57 +02001172 if (p && p->fe_sps_lim) {
1173 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
Willy Tarreau07687c12011-07-24 23:55:06 +02001174
1175 if (unlikely(!max)) {
1176 /* frontend accept rate limit was reached */
1177 limit_listener(l, &p->listener_queue);
Willy Tarreau918ff602011-07-25 16:33:49 +02001178 task_schedule(p->task, tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0)));
Willy Tarreau07687c12011-07-24 23:55:06 +02001179 return 0;
1180 }
1181
Willy Tarreaueb472682010-05-28 18:46:57 +02001182 if (max_accept > max)
1183 max_accept = max;
1184 }
1185
Willy Tarreaue9b26022011-08-01 20:57:55 +02001186 /* Note: if we fail to allocate a connection because of configured
1187 * limits, we'll schedule a new attempt worst 1 second later in the
1188 * worst case. If we fail due to system limits or temporary resource
1189 * shortage, we try again 100ms later in the worst case.
1190 */
Willy Tarreau07687c12011-07-24 23:55:06 +02001191 while (max_accept--) {
Willy Tarreaueb472682010-05-28 18:46:57 +02001192 struct sockaddr_storage addr;
1193 socklen_t laddr = sizeof(addr);
1194
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001195 if (unlikely(actconn >= global.maxconn) && !(l->options & LI_O_UNLIMITED)) {
Willy Tarreau07687c12011-07-24 23:55:06 +02001196 limit_listener(l, &global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001197 task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */
Willy Tarreau07687c12011-07-24 23:55:06 +02001198 return 0;
1199 }
1200
1201 if (unlikely(p && p->feconn >= p->maxconn)) {
1202 limit_listener(l, &p->listener_queue);
1203 return 0;
1204 }
1205
Willy Tarreaueb472682010-05-28 18:46:57 +02001206 cfd = accept(fd, (struct sockaddr *)&addr, &laddr);
1207 if (unlikely(cfd == -1)) {
1208 switch (errno) {
1209 case EAGAIN:
1210 case EINTR:
1211 case ECONNABORTED:
1212 return 0; /* nothing more to accept */
1213 case ENFILE:
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001214 if (p)
1215 send_log(p, LOG_EMERG,
1216 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
1217 p->id, maxfd);
Willy Tarreau08ceb102011-07-24 22:58:00 +02001218 limit_listener(l, &global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001219 task_schedule(global_listener_queue_task, tick_add(now_ms, 100)); /* try again in 100 ms */
Willy Tarreaueb472682010-05-28 18:46:57 +02001220 return 0;
1221 case EMFILE:
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001222 if (p)
1223 send_log(p, LOG_EMERG,
1224 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
1225 p->id, maxfd);
Willy Tarreau08ceb102011-07-24 22:58:00 +02001226 limit_listener(l, &global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001227 task_schedule(global_listener_queue_task, tick_add(now_ms, 100)); /* try again in 100 ms */
Willy Tarreaueb472682010-05-28 18:46:57 +02001228 return 0;
1229 case ENOBUFS:
1230 case ENOMEM:
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001231 if (p)
1232 send_log(p, LOG_EMERG,
1233 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
1234 p->id, maxfd);
Willy Tarreau08ceb102011-07-24 22:58:00 +02001235 limit_listener(l, &global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001236 task_schedule(global_listener_queue_task, tick_add(now_ms, 100)); /* try again in 100 ms */
Willy Tarreaueb472682010-05-28 18:46:57 +02001237 return 0;
1238 default:
1239 return 0;
1240 }
1241 }
1242
1243 if (unlikely(cfd >= global.maxsock)) {
Willy Tarreaufffe1322010-11-11 09:48:16 +01001244 send_log(p, LOG_EMERG,
1245 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
1246 p->id);
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001247 close(cfd);
Willy Tarreau08ceb102011-07-24 22:58:00 +02001248 limit_listener(l, &global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001249 task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001250 return 0;
Willy Tarreaueb472682010-05-28 18:46:57 +02001251 }
1252
Willy Tarreau81c25d02011-09-07 15:17:21 +02001253 /* increase the per-process number of cumulated connections */
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001254 if (!(l->options & LI_O_UNLIMITED)) {
1255 update_freq_ctr(&global.conn_per_sec, 1);
1256 if (global.conn_per_sec.curr_ctr > global.cps_max)
1257 global.cps_max = global.conn_per_sec.curr_ctr;
1258 actconn++;
1259 }
Willy Tarreau81c25d02011-09-07 15:17:21 +02001260
Willy Tarreauaf7ad002010-08-31 15:39:26 +02001261 jobs++;
Willy Tarreau24dcaf32010-06-05 10:49:41 +02001262 totalconn++;
1263 l->nbconn++;
1264
1265 if (l->counters) {
1266 if (l->nbconn > l->counters->conn_max)
1267 l->counters->conn_max = l->nbconn;
1268 }
1269
Willy Tarreaueb472682010-05-28 18:46:57 +02001270 ret = l->accept(l, cfd, &addr);
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001271 if (unlikely(ret <= 0)) {
1272 /* The connection was closed by session_accept(). Either
1273 * we just have to ignore it (ret == 0) or it's a critical
1274 * error due to a resource shortage, and we must stop the
1275 * listener (ret < 0).
1276 */
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001277 if (!(l->options & LI_O_UNLIMITED))
1278 actconn--;
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001279 jobs--;
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001280 l->nbconn--;
1281 if (ret == 0) /* successful termination */
1282 continue;
1283
Willy Tarreau08ceb102011-07-24 22:58:00 +02001284 limit_listener(l, &global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001285 task_schedule(global_listener_queue_task, tick_add(now_ms, 100)); /* try again in 100 ms */
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001286 return 0;
Willy Tarreaueb472682010-05-28 18:46:57 +02001287 }
1288
Willy Tarreaueb472682010-05-28 18:46:57 +02001289 if (l->nbconn >= l->maxconn) {
Willy Tarreau62793712011-07-24 19:23:38 +02001290 listener_full(l);
Willy Tarreauff45b8c2011-07-24 19:16:52 +02001291 return 0;
Willy Tarreaueb472682010-05-28 18:46:57 +02001292 }
Willy Tarreau62793712011-07-24 19:23:38 +02001293
Willy Tarreaueb472682010-05-28 18:46:57 +02001294 } /* end of while (p->feconn < p->maxconn) */
Willy Tarreau08ceb102011-07-24 22:58:00 +02001295
Willy Tarreaueb472682010-05-28 18:46:57 +02001296 return 0;
Willy Tarreaueb472682010-05-28 18:46:57 +02001297}
1298
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001299
Willy Tarreaua8f55d52010-05-31 17:44:19 +02001300/* Prepare a stream interface to be used in socket mode. */
1301void stream_sock_prepare_interface(struct stream_interface *si)
1302{
1303 si->update = stream_sock_data_finish;
1304 si->shutr = stream_sock_shutr;
1305 si->shutw = stream_sock_shutw;
1306 si->chk_rcv = stream_sock_chk_rcv;
1307 si->chk_snd = stream_sock_chk_snd;
Willy Tarreaua8f55d52010-05-31 17:44:19 +02001308}
1309
Willy Tarreaubaaee002006-06-26 02:48:02 +02001310
1311/*
1312 * Local variables:
1313 * c-indent-level: 8
1314 * c-basic-offset: 8
1315 * End:
1316 */