blob: 0baf825bf29bc1ac9e7aef62b627611465884fdf [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 Tarreau02d6cfc2012-03-01 18:19:58 +0100272 max = buffer_max_len(b) - buffer_len(b);
Willy Tarreau864e8252009-12-28 17:36:37 +0100273
274 if (max <= 0) {
275 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 Tarreau363a5bb2012-03-02 20:14:45 +0100298 ret = recv(fd, buffer_wrap_add(b, b->p + b->i), 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 Tarreau2e046c62012-03-01 16:08:30 +0100312 b->o += fwd;
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100313 b->i -= fwd;
Willy Tarreau89fa7062012-03-02 16:13:16 +0100314 b->p = buffer_wrap_add(b, b->p + fwd);
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200315 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100316 }
Willy Tarreauf890dc92008-12-13 21:12:26 +0100317
Willy Tarreaub38903c2008-11-23 21:33:29 +0100318 if (fdtab[fd].state == FD_STCONN)
319 fdtab[fd].state = FD_STREADY;
320
Willy Tarreau3da77c52008-08-29 09:58:42 +0200321 b->flags |= BF_READ_PARTIAL;
Willy Tarreau83749182007-04-15 20:56:27 +0200322 b->total += ret;
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100323
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100324 if (buffer_len(b) >= buffer_max_len(b)) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200325 /* The buffer is now full, there's no point in going through
326 * the loop again.
327 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100328 if (!(b->flags & BF_STREAMER_FAST) && (cur_read == buffer_len(b))) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200329 b->xfer_small = 0;
330 b->xfer_large++;
331 if (b->xfer_large >= 3) {
332 /* we call this buffer a fast streamer if it manages
333 * to be filled in one call 3 consecutive times.
334 */
335 b->flags |= (BF_STREAMER | BF_STREAMER_FAST);
336 //fputc('+', stderr);
337 }
338 }
339 else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200340 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200341 b->xfer_large = 0;
342 b->xfer_small++;
343 if (b->xfer_small >= 2) {
344 /* if the buffer has been at least half full twice,
345 * we receive faster than we send, so at least it
346 * is not a "fast streamer".
347 */
348 b->flags &= ~BF_STREAMER_FAST;
349 //fputc('-', stderr);
350 }
351 }
352 else {
353 b->xfer_small = 0;
354 b->xfer_large = 0;
355 }
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100356
357 b->flags |= BF_FULL;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100358 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100359 break;
Willy Tarreau6996e152007-04-30 14:37:43 +0200360 }
361
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200362 /* if too many bytes were missing from last read, it means that
363 * it's pointless trying to read again because the system does
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100364 * not have them in buffers. BTW, if FD_POLL_HUP was present,
365 * it means that we have reached the end and that the connection
366 * is closed.
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200367 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100368 if (ret < max) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200369 if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200370 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200371 b->xfer_large = 0;
372 b->xfer_small++;
373 if (b->xfer_small >= 3) {
374 /* we have read less than half of the buffer in
375 * one pass, and this happened at least 3 times.
376 * This is definitely not a streamer.
377 */
378 b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST);
379 //fputc('!', stderr);
380 }
381 }
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200382 /* unfortunately, on level-triggered events, POLL_HUP
383 * is generally delivered AFTER the system buffer is
384 * empty, so this one might never match.
385 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100386 if (fdtab[fd].ev & FD_POLL_HUP)
387 goto out_shutdown_r;
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200388
389 /* if a streamer has read few data, it may be because we
390 * have exhausted system buffers. It's not worth trying
391 * again.
392 */
393 if (b->flags & BF_STREAMER)
394 break;
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200395
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100396 /* generally if we read something smaller than 1 or 2 MSS,
397 * it means that either we have exhausted the system's
398 * buffers (streamer or question-response protocol) or
399 * that the connection will be closed. Streamers are
400 * easily detected so we return early. For other cases,
401 * it's still better to perform a last read to be sure,
402 * because it may save one complete poll/read/wakeup cycle
403 * in case of shutdown.
404 */
405 if (ret < MIN_RET_FOR_READ_LOOP && b->flags & BF_STREAMER)
406 break;
407
408 /* if we read a large block smaller than what we requested,
409 * it's almost certain we'll never get anything more.
410 */
411 if (ret >= global.tune.recv_enough)
412 break;
413 }
Willy Tarreau83749182007-04-15 20:56:27 +0200414
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100415 if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200416 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200417 }
418 else if (ret == 0) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200419 /* connection closed */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100420 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200421 }
Willy Tarreau9f195292007-04-15 21:26:58 +0200422 else if (errno == EAGAIN) {
423 /* Ignore EAGAIN but inform the poller that there is
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100424 * nothing to read left if we did not read much, ie
425 * less than what we were still expecting to read.
426 * But we may have done some work justifying to notify
427 * the task.
Willy Tarreau9f195292007-04-15 21:26:58 +0200428 */
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100429 if (cur_read < MIN_RET_FOR_READ_LOOP)
430 retval = 0;
Willy Tarreau83749182007-04-15 20:56:27 +0200431 break;
432 }
433 else {
Willy Tarreau6996e152007-04-30 14:37:43 +0200434 goto out_error;
Willy Tarreau83749182007-04-15 20:56:27 +0200435 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200436 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200437
Willy Tarreau6996e152007-04-30 14:37:43 +0200438 out_wakeup:
Willy Tarreau22be90b2011-05-11 20:32:36 +0200439 /* We might have some data the consumer is waiting for.
440 * We can do fast-forwarding, but we avoid doing this for partial
441 * buffers, because it is very likely that it will be done again
442 * immediately afterwards once the following data is parsed (eg:
443 * HTTP chunking).
444 */
Willy Tarreaueb9fd512011-12-11 22:11:47 +0100445 if (b->pipe || /* always try to send spliced data */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100446 (b->i == 0 && (b->cons->flags & SI_FL_WAIT_DATA))) {
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100447 int last_len = b->pipe ? b->pipe->data : 0;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100448
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100449 b->cons->chk_snd(b->cons);
450
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100451 /* check if the consumer has freed some space */
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100452 if (!(b->flags & BF_FULL) &&
453 (!last_len || !b->pipe || b->pipe->data < last_len))
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100454 si->flags &= ~SI_FL_WAIT_ROOM;
455 }
456
457 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100458 EV_FD_CLR(fd, DIR_RD);
459 b->rex = TICK_ETERNITY;
460 }
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200461 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 +0100462 b->rex = tick_add_ifset(now_ms, b->rto);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100463
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100464 /* we have to wake up if there is a special event or if we don't have
465 * any more data to forward.
466 */
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200467 if ((b->flags & (BF_READ_NULL|BF_READ_ERROR)) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100468 si->state != SI_ST_EST ||
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200469 (si->flags & SI_FL_ERR) ||
470 ((b->flags & BF_READ_PARTIAL) && (!b->to_forward || b->cons->state != SI_ST_EST)))
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100471 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200472
473 if (b->flags & BF_READ_ACTIVITY)
474 b->flags &= ~BF_READ_DONTWAIT;
475
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100476 fdtab[fd].ev &= ~FD_POLL_IN;
Willy Tarreau83749182007-04-15 20:56:27 +0200477 return retval;
Willy Tarreau6996e152007-04-30 14:37:43 +0200478
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100479 out_shutdown_r:
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200480 /* we received a shutdown */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100481 fdtab[fd].ev &= ~FD_POLL_HUP;
482 b->flags |= BF_READ_NULL;
Willy Tarreau520d95e2009-09-19 21:04:57 +0200483 if (b->flags & BF_AUTO_CLOSE)
Willy Tarreau418fd472009-09-06 21:37:23 +0200484 buffer_shutw_now(b);
Willy Tarreau99126c32008-11-27 10:30:51 +0100485 stream_sock_shutr(si);
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200486 goto out_wakeup;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100487
Willy Tarreau6996e152007-04-30 14:37:43 +0200488 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100489 /* Read error on the file descriptor. We mark the FD as STERROR so
490 * that we don't use it anymore. The error is reported to the stream
491 * interface which will take proper action. We must not perturbate the
492 * buffer because the stream interface wants to ensure transparent
493 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200494 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100495
Willy Tarreau6996e152007-04-30 14:37:43 +0200496 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100497 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100498 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100499 si->flags |= SI_FL_ERR;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100500 retval = 1;
501 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200502}
503
504
505/*
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100506 * This function is called to send buffer data to a stream socket.
507 * It returns -1 in case of unrecoverable error, 0 if the caller needs to poll
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100508 * before calling it again, otherwise 1. If a pipe was associated with the
509 * buffer and it empties it, it releases it as well.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200510 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100511static int stream_sock_write_loop(struct stream_interface *si, struct buffer *b)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100512{
Willy Tarreau83749182007-04-15 20:56:27 +0200513 int write_poll = MAX_WRITE_POLL_LOOPS;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100514 int retval = 1;
515 int ret, max;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200516
Willy Tarreaub22e55b2011-03-20 10:16:46 +0100517 if (unlikely(si->send_proxy_ofs)) {
518 /* The target server expects a PROXY line to be sent first.
519 * If the send_proxy_ofs is negative, it corresponds to the
520 * offset to start sending from then end of the proxy string
521 * (which is recomputed every time since it's constant). If
522 * it is positive, it means we have to send from the start.
523 */
524 ret = make_proxy_line(trash, sizeof(trash),
Willy Tarreau6471afb2011-09-23 10:54:59 +0200525 &b->prod->addr.from, &b->prod->addr.to);
Willy Tarreaub22e55b2011-03-20 10:16:46 +0100526 if (!ret)
527 return -1;
528
529 if (si->send_proxy_ofs > 0)
530 si->send_proxy_ofs = -ret; /* first call */
531
532 /* we have to send trash from (ret+sp for -sp bytes) */
533 ret = send(si->fd, trash + ret + si->send_proxy_ofs, -si->send_proxy_ofs,
534 (b->flags & BF_OUT_EMPTY) ? 0 : MSG_MORE);
535 if (ret > 0) {
536 if (fdtab[si->fd].state == FD_STCONN)
537 fdtab[si->fd].state = FD_STREADY;
538
539 si->send_proxy_ofs += ret; /* becomes zero once complete */
540 b->flags |= BF_WRITE_NULL; /* connect() succeeded */
541 }
542 else if (ret == 0 || errno == EAGAIN) {
543 /* nothing written, we need to poll for write first */
544 return 0;
545 }
546 else {
547 /* bad, we got an error */
548 return -1;
549 }
550 }
551
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100552#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100553 while (b->pipe) {
554 ret = splice(b->pipe->cons, NULL, si->fd, NULL, b->pipe->data,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100555 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
556 if (ret <= 0) {
557 if (ret == 0 || errno == EAGAIN) {
558 retval = 0;
559 return retval;
560 }
561 /* here we have another error */
562 retval = -1;
563 return retval;
564 }
565
566 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100567 b->pipe->data -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100568
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100569 if (!b->pipe->data) {
570 put_pipe(b->pipe);
571 b->pipe = NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100572 break;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100573 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100574
575 if (--write_poll <= 0)
576 return retval;
Willy Tarreaueb9fd512011-12-11 22:11:47 +0100577
578 /* The only reason we did not empty the pipe is that the output
579 * buffer is full.
580 */
581 return 0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100582 }
583
584 /* At this point, the pipe is empty, but we may still have data pending
585 * in the normal buffer.
586 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100587#endif
Willy Tarreau2e046c62012-03-01 16:08:30 +0100588 if (!b->o) {
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200589 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100590 return retval;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200591 }
Willy Tarreau83749182007-04-15 20:56:27 +0200592
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100593 /* when we're in this loop, we already know that there is no spliced
594 * data left, and that there are sendable buffered data.
595 */
Willy Tarreau6996e152007-04-30 14:37:43 +0200596 while (1) {
Willy Tarreau89fa7062012-03-02 16:13:16 +0100597 max = b->o;
Willy Tarreau83749182007-04-15 20:56:27 +0200598
Willy Tarreau89fa7062012-03-02 16:13:16 +0100599 /* outgoing data may wrap at the end */
600 if (b->data + max > b->p)
601 max = b->data + max - b->p;
Willy Tarreauf890dc92008-12-13 21:12:26 +0100602
Willy Tarreau6db06d32009-08-19 11:14:11 +0200603 /* check if we want to inform the kernel that we're interested in
604 * sending more data after this call. We want this if :
605 * - we're about to close after this last send and want to merge
606 * the ongoing FIN with the last segment.
607 * - we know we can't send everything at once and must get back
608 * here because of unaligned data
Willy Tarreaud38b53b2010-01-03 11:18:34 +0100609 * - there is still a finite amount of data to forward
Willy Tarreau6db06d32009-08-19 11:14:11 +0200610 * The test is arranged so that the most common case does only 2
611 * tests.
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200612 */
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200613
Willy Tarreauface8392010-01-03 11:37:54 +0100614 if (MSG_NOSIGNAL && MSG_MORE) {
Willy Tarreau6db06d32009-08-19 11:14:11 +0200615 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
616
Willy Tarreau96e31212011-05-30 18:10:30 +0200617 if ((!(b->flags & BF_NEVER_WAIT) &&
618 ((b->to_forward && b->to_forward != BUF_INFINITE_FORWARD) ||
619 (b->flags & BF_EXPECT_MORE))) ||
Willy Tarreau2e046c62012-03-01 16:08:30 +0100620 ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == BF_SHUTW_NOW && (max == b->o)) ||
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100621 (max != b->o)) {
Willy Tarreauface8392010-01-03 11:37:54 +0100622 send_flag |= MSG_MORE;
623 }
Willy Tarreau6db06d32009-08-19 11:14:11 +0200624
Willy Tarreau2be39392010-01-03 17:24:51 +0100625 /* this flag has precedence over the rest */
626 if (b->flags & BF_SEND_DONTWAIT)
627 send_flag &= ~MSG_MORE;
628
Willy Tarreau89fa7062012-03-02 16:13:16 +0100629 ret = send(si->fd, buffer_wrap_sub(b, b->p - b->o), max, send_flag);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200630 } else {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200631 int skerr;
632 socklen_t lskerr = sizeof(skerr);
633
Willy Tarreau87bed622009-03-08 22:25:28 +0100634 ret = getsockopt(si->fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
Willy Tarreauc6423482006-10-15 14:59:03 +0200635 if (ret == -1 || skerr)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200636 ret = -1;
637 else
Willy Tarreau89fa7062012-03-02 16:13:16 +0100638 ret = send(si->fd, buffer_wrap_sub(b, b->p - b->o), max, MSG_DONTWAIT);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200639 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200640
641 if (ret > 0) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100642 if (fdtab[si->fd].state == FD_STCONN)
643 fdtab[si->fd].state = FD_STREADY;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100644
Willy Tarreau3da77c52008-08-29 09:58:42 +0200645 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreaue393fe22008-08-16 22:18:07 +0200646
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100647 b->o -= ret;
648 if (likely(!buffer_len(b)))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100649 /* optimize data alignment in the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +0100650 b->p = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200651
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100652 if (likely(buffer_len(b) < buffer_max_len(b)))
653 b->flags &= ~BF_FULL;
654
Willy Tarreau2e046c62012-03-01 16:08:30 +0100655 if (!b->o) {
Willy Tarreauf17810e2012-03-09 18:10:44 +0100656 /* Always clear both flags once everything has been sent, they're one-shot */
657 b->flags &= ~(BF_EXPECT_MORE | BF_SEND_DONTWAIT);
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200658 if (likely(!b->pipe))
659 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100660 break;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200661 }
Willy Tarreau83749182007-04-15 20:56:27 +0200662
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200663 /* if the system buffer is full, don't insist */
664 if (ret < max)
665 break;
666
Willy Tarreau6996e152007-04-30 14:37:43 +0200667 if (--write_poll <= 0)
668 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200669 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200670 else if (ret == 0 || errno == EAGAIN) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100671 /* nothing written, we need to poll for write first */
Willy Tarreau83749182007-04-15 20:56:27 +0200672 retval = 0;
673 break;
674 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200675 else {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100676 /* bad, we got an error */
677 retval = -1;
678 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200679 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200680 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200681
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100682 return retval;
683}
Willy Tarreau6996e152007-04-30 14:37:43 +0200684
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100685
686/*
687 * This function is called on a write event from a stream socket.
688 * It returns 0 if the caller needs to poll before calling it again, otherwise
689 * non-zero.
690 */
691int stream_sock_write(int fd)
692{
693 struct stream_interface *si = fdtab[fd].owner;
694 struct buffer *b = si->ob;
695 int retval = 1;
696
697#ifdef DEBUG_FULL
698 fprintf(stderr,"stream_sock_write : fd=%d, owner=%p\n", fd, fdtab[fd].owner);
699#endif
700
701 retval = 1;
Willy Tarreau71543652009-07-14 19:55:05 +0200702 if (fdtab[fd].state == FD_STERROR)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100703 goto out_error;
704
Willy Tarreaud06e7112009-03-29 10:18:41 +0200705 /* we might have been called just after an asynchronous shutw */
706 if (b->flags & BF_SHUTW)
707 goto out_wakeup;
708
Willy Tarreaub22e55b2011-03-20 10:16:46 +0100709 if (likely(!(b->flags & BF_OUT_EMPTY) || si->send_proxy_ofs)) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100710 /* OK there are data waiting to be sent */
711 retval = stream_sock_write_loop(si, b);
712 if (retval < 0)
713 goto out_error;
Willy Tarreau68f49da2011-03-28 23:17:54 +0200714 else if (retval == 0 && si->send_proxy_ofs)
715 goto out_may_wakeup; /* we failed to send the PROXY string */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200716 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100717 else {
718 /* may be we have received a connection acknowledgement in TCP mode without data */
719 if (likely(fdtab[fd].state == FD_STCONN)) {
720 /* We have no data to send to check the connection, and
721 * getsockopt() will not inform us whether the connection
722 * is still pending. So we'll reuse connect() to check the
723 * state of the socket. This has the advantage of givig us
724 * the following info :
725 * - error
726 * - connecting (EALREADY, EINPROGRESS)
727 * - connected (EISCONN, 0)
728 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200729 if ((connect(fd, fdinfo[fd].peeraddr, fdinfo[fd].peerlen) == 0))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100730 errno = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200731
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100732 if (errno == EALREADY || errno == EINPROGRESS) {
733 retval = 0;
734 goto out_may_wakeup;
735 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100736
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100737 if (errno && errno != EISCONN)
738 goto out_error;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200739
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100740 /* OK we just need to indicate that we got a connection
741 * and that we wrote nothing.
742 */
743 b->flags |= BF_WRITE_NULL;
744 fdtab[fd].state = FD_STREADY;
745 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200746
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100747 /* Funny, we were called to write something but there wasn't
748 * anything. We can get there, for example if we were woken up
Willy Tarreau2e046c62012-03-01 16:08:30 +0100749 * on a write event to finish the splice, but the ->o is 0
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100750 * so we cannot write anything from the buffer. Let's disable
751 * the write event and pretend we never came there.
752 */
753 }
754
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200755 if (b->flags & BF_OUT_EMPTY) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100756 /* the connection is established but we can't write. Either the
757 * buffer is empty, or we just refrain from sending because the
Willy Tarreau2e046c62012-03-01 16:08:30 +0100758 * ->o limit was reached. Maybe we just wrote the last
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100759 * chunk and need to close.
760 */
Willy Tarreau520d95e2009-09-19 21:04:57 +0200761 if (((b->flags & (BF_SHUTW|BF_HIJACK|BF_SHUTW_NOW)) == BF_SHUTW_NOW) &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100762 (si->state == SI_ST_EST)) {
763 stream_sock_shutw(si);
764 goto out_wakeup;
765 }
766
Willy Tarreau59454bf2009-09-20 11:13:40 +0200767 if ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreauac128fe2009-01-09 13:05:19 +0100768 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100769
Willy Tarreauac128fe2009-01-09 13:05:19 +0100770 EV_FD_CLR(fd, DIR_WR);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100771 b->wex = TICK_ETERNITY;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100772 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100773
774 out_may_wakeup:
775 if (b->flags & BF_WRITE_ACTIVITY) {
776 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200777 if ((b->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100778 b->wex = tick_add_ifset(now_ms, b->wto);
779
780 out_wakeup:
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200781 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100782 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200783 * during writes, we refresh it. We only do this if the
784 * interface is not configured for "independant streams",
785 * because for some applications it's better not to do this,
786 * for instance when continuously exchanging small amounts
787 * of data which can full the socket buffers long before a
788 * write timeout is detected.
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100789 */
790 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
791 }
792
793 /* the producer might be waiting for more room to store data */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200794 if (likely((b->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL|BF_DONT_READ)) == BF_WRITE_PARTIAL &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100795 (b->prod->flags & SI_FL_WAIT_ROOM)))
796 b->prod->chk_rcv(b->prod);
797
798 /* we have to wake up if there is a special event or if we don't have
799 * any more data to forward and it's not planned to send any more.
800 */
801 if (likely((b->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200802 ((b->flags & BF_OUT_EMPTY) && !b->to_forward) ||
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100803 si->state != SI_ST_EST ||
804 b->prod->state != SI_ST_EST))
805 task_wakeup(si->owner, TASK_WOKEN_IO);
806 }
807
808 fdtab[fd].ev &= ~FD_POLL_OUT;
809 return retval;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100810
Willy Tarreau6996e152007-04-30 14:37:43 +0200811 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100812 /* Write error on the file descriptor. We mark the FD as STERROR so
813 * that we don't use it anymore. The error is reported to the stream
814 * interface which will take proper action. We must not perturbate the
815 * buffer because the stream interface wants to ensure transparent
816 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200817 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100818
Willy Tarreau6996e152007-04-30 14:37:43 +0200819 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100820 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100821 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100822 si->flags |= SI_FL_ERR;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200823 task_wakeup(si->owner, TASK_WOKEN_IO);
824 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200825}
826
Willy Tarreau48adac52008-08-30 04:58:38 +0200827/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200828 * This function performs a shutdown-write on a stream interface in a connected or
829 * init state (it does nothing for other states). It either shuts the write side
Willy Tarreau99126c32008-11-27 10:30:51 +0100830 * or closes the file descriptor and marks itself as closed. The buffer flags are
Willy Tarreau7340ca52010-01-16 10:03:45 +0100831 * updated to reflect the new state. It does also close everything is the SI was
832 * marked as being in error state.
Willy Tarreau48adac52008-08-30 04:58:38 +0200833 */
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100834void stream_sock_shutw(struct stream_interface *si)
Willy Tarreau48adac52008-08-30 04:58:38 +0200835{
Willy Tarreau418fd472009-09-06 21:37:23 +0200836 si->ob->flags &= ~BF_SHUTW_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100837 if (si->ob->flags & BF_SHUTW)
838 return;
839 si->ob->flags |= BF_SHUTW;
840 si->ob->wex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100841 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau99126c32008-11-27 10:30:51 +0100842
Willy Tarreaub38903c2008-11-23 21:33:29 +0100843 switch (si->state) {
Willy Tarreaub38903c2008-11-23 21:33:29 +0100844 case SI_ST_EST:
Willy Tarreau720058c2009-07-14 19:21:50 +0200845 /* we have to shut before closing, otherwise some short messages
846 * may never leave the system, especially when there are remaining
847 * unread data in the socket input buffer, or when nolinger is set.
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100848 * However, if SI_FL_NOLINGER is explicitly set, we know there is
849 * no risk so we close both sides immediately.
Willy Tarreau720058c2009-07-14 19:21:50 +0200850 */
Willy Tarreau7340ca52010-01-16 10:03:45 +0100851 if (si->flags & SI_FL_ERR) {
852 /* quick close, the socket is already shut. Remove pending flags. */
853 si->flags &= ~SI_FL_NOLINGER;
854 } else if (si->flags & SI_FL_NOLINGER) {
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100855 si->flags &= ~SI_FL_NOLINGER;
856 setsockopt(si->fd, SOL_SOCKET, SO_LINGER,
857 (struct linger *) &nolinger, sizeof(struct linger));
858 } else {
859 EV_FD_CLR(si->fd, DIR_WR);
860 shutdown(si->fd, SHUT_WR);
Willy Tarreau720058c2009-07-14 19:21:50 +0200861
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100862 if (!(si->ib->flags & (BF_SHUTR|BF_DONT_READ)))
863 return;
864 }
Willy Tarreau5d707e12009-06-28 11:09:07 +0200865
Willy Tarreaub38903c2008-11-23 21:33:29 +0100866 /* fall through */
867 case SI_ST_CON:
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100868 /* we may have to close a pending connection, and mark the
869 * response buffer as shutr
870 */
Willy Tarreau48adac52008-08-30 04:58:38 +0200871 fd_delete(si->fd);
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100872 /* fall through */
873 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100874 case SI_ST_QUE:
875 case SI_ST_TAR:
Willy Tarreau7f006512008-12-07 14:04:04 +0100876 si->state = SI_ST_DIS;
Willy Tarreauad4cd582012-03-10 13:42:32 +0100877
878 if (si->release)
879 si->release(si);
Willy Tarreau7f006512008-12-07 14:04:04 +0100880 default:
Willy Tarreaud06e7112009-03-29 10:18:41 +0200881 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100882 si->ib->flags |= BF_SHUTR;
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100883 si->ib->rex = TICK_ETERNITY;
Willy Tarreau127334e2009-03-28 10:47:26 +0100884 si->exp = TICK_ETERNITY;
Willy Tarreau48adac52008-08-30 04:58:38 +0200885 }
Willy Tarreau48adac52008-08-30 04:58:38 +0200886}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200887
Willy Tarreau2d212792008-08-27 21:41:35 +0200888/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200889 * This function performs a shutdown-read on a stream interface in a connected or
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100890 * init state (it does nothing for other states). It either shuts the read side
Willy Tarreau99126c32008-11-27 10:30:51 +0100891 * or closes the file descriptor and marks itself as closed. The buffer flags are
892 * updated to reflect the new state.
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200893 */
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100894void stream_sock_shutr(struct stream_interface *si)
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200895{
Willy Tarreau418fd472009-09-06 21:37:23 +0200896 si->ib->flags &= ~BF_SHUTR_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100897 if (si->ib->flags & BF_SHUTR)
898 return;
899 si->ib->flags |= BF_SHUTR;
900 si->ib->rex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100901 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100902
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100903 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100904 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200905
Willy Tarreaucff64112008-11-03 06:26:53 +0100906 if (si->ob->flags & BF_SHUTW) {
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200907 fd_delete(si->fd);
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100908 si->state = SI_ST_DIS;
Willy Tarreau127334e2009-03-28 10:47:26 +0100909 si->exp = TICK_ETERNITY;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200910
911 if (si->release)
912 si->release(si);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100913 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200914 }
915 EV_FD_CLR(si->fd, DIR_RD);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100916 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200917}
918
919/*
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200920 * Updates a connected stream_sock file descriptor status and timeouts
921 * according to the buffers' flags. It should only be called once after the
922 * buffer flags have settled down, and before they are cleared. It doesn't
923 * harm to call it as often as desired (it just slightly hurts performance).
924 */
Willy Tarreaub0253252008-11-30 21:37:12 +0100925void stream_sock_data_finish(struct stream_interface *si)
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200926{
Willy Tarreaub0253252008-11-30 21:37:12 +0100927 struct buffer *ib = si->ib;
928 struct buffer *ob = si->ob;
929 int fd = si->fd;
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200930
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100931 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 +0200932 now_ms, __FUNCTION__,
933 fd, fdtab[fd].owner,
934 ib, ob,
935 ib->rex, ob->wex,
936 ib->flags, ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100937 ib->i, ib->o, ob->i, ob->o, si->state);
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200938
939 /* Check if we need to close the read side */
940 if (!(ib->flags & BF_SHUTR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200941 /* Read not closed, update FD status and timeout for reads */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200942 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200943 /* stop reading */
Willy Tarreau11f49402010-11-11 23:08:17 +0100944 if (!(si->flags & SI_FL_WAIT_ROOM)) {
945 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
946 si->flags |= SI_FL_WAIT_ROOM;
947 EV_FD_COND_C(fd, DIR_RD);
948 ib->rex = TICK_ETERNITY;
949 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200950 }
951 else {
952 /* (re)start reading and update timeout. Note: we don't recompute the timeout
953 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200954 * update it if is was not yet set. The stream socket handler will already
955 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200956 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100957 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau2d212792008-08-27 21:41:35 +0200958 EV_FD_COND_S(fd, DIR_RD);
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200959 if (!(ib->flags & (BF_READ_NOEXP|BF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau2d212792008-08-27 21:41:35 +0200960 ib->rex = tick_add_ifset(now_ms, ib->rto);
961 }
962 }
963
964 /* Check if we need to close the write side */
965 if (!(ob->flags & BF_SHUTW)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200966 /* Write not closed, update FD status and timeout for writes */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200967 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200968 /* stop writing */
Willy Tarreau11f49402010-11-11 23:08:17 +0100969 if (!(si->flags & SI_FL_WAIT_DATA)) {
970 if ((ob->flags & (BF_FULL|BF_HIJACK|BF_SHUTW_NOW)) == 0)
971 si->flags |= SI_FL_WAIT_DATA;
972 EV_FD_COND_C(fd, DIR_WR);
973 ob->wex = TICK_ETERNITY;
974 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200975 }
976 else {
977 /* (re)start writing and update timeout. Note: we don't recompute the timeout
978 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200979 * update it if is was not yet set. The stream socket handler will already
980 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200981 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100982 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau2d212792008-08-27 21:41:35 +0200983 EV_FD_COND_S(fd, DIR_WR);
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200984 if (!tick_isset(ob->wex)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200985 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200986 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200987 /* Note: depending on the protocol, we don't know if we're waiting
988 * for incoming data or not. So in order to prevent the socket from
989 * expiring read timeouts during writes, we refresh the read timeout,
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200990 * except if it was already infinite or if we have explicitly setup
991 * independant streams.
Willy Tarreau2d212792008-08-27 21:41:35 +0200992 */
Willy Tarreaud06e7112009-03-29 10:18:41 +0200993 ib->rex = tick_add_ifset(now_ms, ib->rto);
Willy Tarreau2d212792008-08-27 21:41:35 +0200994 }
995 }
996 }
997 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200998}
999
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001000/* This function is used for inter-stream-interface calls. It is called by the
1001 * consumer to inform the producer side that it may be interested in checking
1002 * for free space in the buffer. Note that it intentionally does not update
1003 * timeouts, so that we can still check them later at wake-up.
1004 */
1005void stream_sock_chk_rcv(struct stream_interface *si)
1006{
1007 struct buffer *ib = si->ib;
1008
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001009 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 +01001010 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +00001011 si->fd, fdtab[si->fd].owner,
1012 ib, si->ob,
1013 ib->rex, si->ob->wex,
1014 ib->flags, si->ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001015 ib->i, ib->o, si->ob->i, si->ob->o, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001016
1017 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
1018 return;
1019
Willy Tarreauf1ba4b32009-10-17 14:37:52 +02001020 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001021 /* stop reading */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +02001022 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001023 si->flags |= SI_FL_WAIT_ROOM;
1024 EV_FD_COND_C(si->fd, DIR_RD);
1025 }
1026 else {
1027 /* (re)start reading */
1028 si->flags &= ~SI_FL_WAIT_ROOM;
1029 EV_FD_COND_S(si->fd, DIR_RD);
1030 }
1031}
1032
1033
1034/* This function is used for inter-stream-interface calls. It is called by the
1035 * producer to inform the consumer side that it may be interested in checking
1036 * for data in the buffer. Note that it intentionally does not update timeouts,
1037 * so that we can still check them later at wake-up.
1038 */
1039void stream_sock_chk_snd(struct stream_interface *si)
1040{
1041 struct buffer *ob = si->ob;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001042 int retval;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001043
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001044 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 +01001045 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +00001046 si->fd, fdtab[si->fd].owner,
1047 si->ib, ob,
1048 si->ib->rex, ob->wex,
1049 si->ib->flags, ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001050 si->ib->i, si->ib->o, ob->i, ob->o, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001051
1052 if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW)))
1053 return;
1054
Willy Tarreaueb9fd512011-12-11 22:11:47 +01001055 if (unlikely((ob->flags & BF_OUT_EMPTY) && !(si->send_proxy_ofs))) /* called with nothing to send ! */
1056 return;
1057
1058 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
1059 (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
1060 (fdtab[si->fd].ev & FD_POLL_OUT))) /* we'll be called anyway */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001061 return;
1062
1063 retval = stream_sock_write_loop(si, ob);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001064 /* here, we have :
1065 * retval < 0 if an error was encountered during write.
1066 * retval = 0 if we can't write anymore without polling
1067 * retval = 1 if we're invited to come back when desired
1068 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001069 if (retval < 0) {
1070 /* Write error on the file descriptor. We mark the FD as STERROR so
1071 * that we don't use it anymore and we notify the task.
1072 */
1073 fdtab[si->fd].state = FD_STERROR;
1074 fdtab[si->fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +01001075 EV_FD_REM(si->fd);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001076 si->flags |= SI_FL_ERR;
1077 goto out_wakeup;
1078 }
Willy Tarreau68f49da2011-03-28 23:17:54 +02001079 else if (retval == 0 && si->send_proxy_ofs)
1080 goto out_may_wakeup; /* we failed to send the PROXY string */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001081
Willy Tarreauc54aef32009-07-27 20:08:06 +02001082 /* OK, so now we know that retval >= 0 means that some data might have
1083 * been sent, and that we may have to poll first. We have to do that
1084 * too if the buffer is not empty.
1085 */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001086 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001087 /* the connection is established but we can't write. Either the
1088 * buffer is empty, or we just refrain from sending because the
Willy Tarreau2e046c62012-03-01 16:08:30 +01001089 * ->o limit was reached. Maybe we just wrote the last
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001090 * chunk and need to close.
1091 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02001092 if (((ob->flags & (BF_SHUTW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTW_NOW)) ==
1093 (BF_AUTO_CLOSE|BF_SHUTW_NOW)) &&
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001094 (si->state == SI_ST_EST)) {
1095 stream_sock_shutw(si);
1096 goto out_wakeup;
1097 }
Willy Tarreaud06e7112009-03-29 10:18:41 +02001098
Willy Tarreau59454bf2009-09-20 11:13:40 +02001099 if ((ob->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001100 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001101 ob->wex = TICK_ETERNITY;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001102 }
1103 else {
Willy Tarreauc54aef32009-07-27 20:08:06 +02001104 /* Otherwise there are remaining data to be sent in the buffer,
1105 * which means we have to poll before doing so.
1106 */
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001107 EV_FD_COND_S(si->fd, DIR_WR);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001108 si->flags &= ~SI_FL_WAIT_DATA;
1109 if (!tick_isset(ob->wex))
1110 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001111 }
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001112
Willy Tarreau68f49da2011-03-28 23:17:54 +02001113 out_may_wakeup:
Willy Tarreauc9619462009-03-09 22:40:57 +01001114 if (likely(ob->flags & BF_WRITE_ACTIVITY)) {
1115 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001116 if ((ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreauc9619462009-03-09 22:40:57 +01001117 ob->wex = tick_add_ifset(now_ms, ob->wto);
1118
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001119 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreauc9619462009-03-09 22:40:57 +01001120 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001121 * during writes, we refresh it. We only do this if the
1122 * interface is not configured for "independant streams",
1123 * because for some applications it's better not to do this,
1124 * for instance when continuously exchanging small amounts
1125 * of data which can full the socket buffers long before a
1126 * write timeout is detected.
Willy Tarreauc9619462009-03-09 22:40:57 +01001127 */
1128 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
1129 }
1130 }
1131
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001132 /* in case of special condition (error, shutdown, end of write...), we
1133 * have to notify the task.
1134 */
1135 if (likely((ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001136 ((ob->flags & BF_OUT_EMPTY) && !ob->to_forward) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001137 si->state != SI_ST_EST)) {
1138 out_wakeup:
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001139 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
1140 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001141 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001142}
1143
Willy Tarreaueb472682010-05-28 18:46:57 +02001144/* This function is called on a read event from a listening socket, corresponding
1145 * to an accept. It tries to accept as many connections as possible, and for each
1146 * calls the listener's accept handler (generally the frontend's accept handler).
1147 */
1148int stream_sock_accept(int fd)
1149{
1150 struct listener *l = fdtab[fd].owner;
1151 struct proxy *p = l->frontend;
1152 int max_accept = global.tune.maxaccept;
1153 int cfd;
1154 int ret;
1155
1156 if (unlikely(l->nbconn >= l->maxconn)) {
Willy Tarreau62793712011-07-24 19:23:38 +02001157 listener_full(l);
Willy Tarreaueb472682010-05-28 18:46:57 +02001158 return 0;
1159 }
1160
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001161 if (global.cps_lim && !(l->options & LI_O_UNLIMITED)) {
Willy Tarreau81c25d02011-09-07 15:17:21 +02001162 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
1163
1164 if (unlikely(!max)) {
1165 /* frontend accept rate limit was reached */
1166 limit_listener(l, &global_listener_queue);
1167 task_schedule(global_listener_queue_task, tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0)));
1168 return 0;
1169 }
1170
1171 if (max_accept > max)
1172 max_accept = max;
1173 }
1174
Willy Tarreaueb472682010-05-28 18:46:57 +02001175 if (p && p->fe_sps_lim) {
1176 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
Willy Tarreau07687c12011-07-24 23:55:06 +02001177
1178 if (unlikely(!max)) {
1179 /* frontend accept rate limit was reached */
1180 limit_listener(l, &p->listener_queue);
Willy Tarreau918ff602011-07-25 16:33:49 +02001181 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 +02001182 return 0;
1183 }
1184
Willy Tarreaueb472682010-05-28 18:46:57 +02001185 if (max_accept > max)
1186 max_accept = max;
1187 }
1188
Willy Tarreaue9b26022011-08-01 20:57:55 +02001189 /* Note: if we fail to allocate a connection because of configured
1190 * limits, we'll schedule a new attempt worst 1 second later in the
1191 * worst case. If we fail due to system limits or temporary resource
1192 * shortage, we try again 100ms later in the worst case.
1193 */
Willy Tarreau07687c12011-07-24 23:55:06 +02001194 while (max_accept--) {
Willy Tarreaueb472682010-05-28 18:46:57 +02001195 struct sockaddr_storage addr;
1196 socklen_t laddr = sizeof(addr);
1197
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001198 if (unlikely(actconn >= global.maxconn) && !(l->options & LI_O_UNLIMITED)) {
Willy Tarreau07687c12011-07-24 23:55:06 +02001199 limit_listener(l, &global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001200 task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */
Willy Tarreau07687c12011-07-24 23:55:06 +02001201 return 0;
1202 }
1203
1204 if (unlikely(p && p->feconn >= p->maxconn)) {
1205 limit_listener(l, &p->listener_queue);
1206 return 0;
1207 }
1208
Willy Tarreaueb472682010-05-28 18:46:57 +02001209 cfd = accept(fd, (struct sockaddr *)&addr, &laddr);
1210 if (unlikely(cfd == -1)) {
1211 switch (errno) {
1212 case EAGAIN:
1213 case EINTR:
1214 case ECONNABORTED:
1215 return 0; /* nothing more to accept */
1216 case ENFILE:
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001217 if (p)
1218 send_log(p, LOG_EMERG,
1219 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
1220 p->id, maxfd);
Willy Tarreau08ceb102011-07-24 22:58:00 +02001221 limit_listener(l, &global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001222 task_schedule(global_listener_queue_task, tick_add(now_ms, 100)); /* try again in 100 ms */
Willy Tarreaueb472682010-05-28 18:46:57 +02001223 return 0;
1224 case EMFILE:
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001225 if (p)
1226 send_log(p, LOG_EMERG,
1227 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
1228 p->id, maxfd);
Willy Tarreau08ceb102011-07-24 22:58:00 +02001229 limit_listener(l, &global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001230 task_schedule(global_listener_queue_task, tick_add(now_ms, 100)); /* try again in 100 ms */
Willy Tarreaueb472682010-05-28 18:46:57 +02001231 return 0;
1232 case ENOBUFS:
1233 case ENOMEM:
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001234 if (p)
1235 send_log(p, LOG_EMERG,
1236 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
1237 p->id, maxfd);
Willy Tarreau08ceb102011-07-24 22:58:00 +02001238 limit_listener(l, &global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001239 task_schedule(global_listener_queue_task, tick_add(now_ms, 100)); /* try again in 100 ms */
Willy Tarreaueb472682010-05-28 18:46:57 +02001240 return 0;
1241 default:
1242 return 0;
1243 }
1244 }
1245
1246 if (unlikely(cfd >= global.maxsock)) {
Willy Tarreaufffe1322010-11-11 09:48:16 +01001247 send_log(p, LOG_EMERG,
1248 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
1249 p->id);
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001250 close(cfd);
Willy Tarreau08ceb102011-07-24 22:58:00 +02001251 limit_listener(l, &global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001252 task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001253 return 0;
Willy Tarreaueb472682010-05-28 18:46:57 +02001254 }
1255
Willy Tarreau81c25d02011-09-07 15:17:21 +02001256 /* increase the per-process number of cumulated connections */
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001257 if (!(l->options & LI_O_UNLIMITED)) {
1258 update_freq_ctr(&global.conn_per_sec, 1);
1259 if (global.conn_per_sec.curr_ctr > global.cps_max)
1260 global.cps_max = global.conn_per_sec.curr_ctr;
1261 actconn++;
1262 }
Willy Tarreau81c25d02011-09-07 15:17:21 +02001263
Willy Tarreauaf7ad002010-08-31 15:39:26 +02001264 jobs++;
Willy Tarreau24dcaf32010-06-05 10:49:41 +02001265 totalconn++;
1266 l->nbconn++;
1267
1268 if (l->counters) {
1269 if (l->nbconn > l->counters->conn_max)
1270 l->counters->conn_max = l->nbconn;
1271 }
1272
Willy Tarreaueb472682010-05-28 18:46:57 +02001273 ret = l->accept(l, cfd, &addr);
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001274 if (unlikely(ret <= 0)) {
1275 /* The connection was closed by session_accept(). Either
1276 * we just have to ignore it (ret == 0) or it's a critical
1277 * error due to a resource shortage, and we must stop the
1278 * listener (ret < 0).
1279 */
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001280 if (!(l->options & LI_O_UNLIMITED))
1281 actconn--;
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001282 jobs--;
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001283 l->nbconn--;
1284 if (ret == 0) /* successful termination */
1285 continue;
1286
Willy Tarreau08ceb102011-07-24 22:58:00 +02001287 limit_listener(l, &global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001288 task_schedule(global_listener_queue_task, tick_add(now_ms, 100)); /* try again in 100 ms */
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001289 return 0;
Willy Tarreaueb472682010-05-28 18:46:57 +02001290 }
1291
Willy Tarreaueb472682010-05-28 18:46:57 +02001292 if (l->nbconn >= l->maxconn) {
Willy Tarreau62793712011-07-24 19:23:38 +02001293 listener_full(l);
Willy Tarreauff45b8c2011-07-24 19:16:52 +02001294 return 0;
Willy Tarreaueb472682010-05-28 18:46:57 +02001295 }
Willy Tarreau62793712011-07-24 19:23:38 +02001296
Willy Tarreaueb472682010-05-28 18:46:57 +02001297 } /* end of while (p->feconn < p->maxconn) */
Willy Tarreau08ceb102011-07-24 22:58:00 +02001298
Willy Tarreaueb472682010-05-28 18:46:57 +02001299 return 0;
Willy Tarreaueb472682010-05-28 18:46:57 +02001300}
1301
Willy Tarreauabe8ea52010-11-11 10:56:04 +01001302
Willy Tarreaua8f55d52010-05-31 17:44:19 +02001303/* Prepare a stream interface to be used in socket mode. */
1304void stream_sock_prepare_interface(struct stream_interface *si)
1305{
1306 si->update = stream_sock_data_finish;
1307 si->shutr = stream_sock_shutr;
1308 si->shutw = stream_sock_shutw;
1309 si->chk_rcv = stream_sock_chk_rcv;
1310 si->chk_snd = stream_sock_chk_snd;
Willy Tarreaua8f55d52010-05-31 17:44:19 +02001311}
1312
Willy Tarreaubaaee002006-06-26 02:48:02 +02001313
1314/*
1315 * Local variables:
1316 * c-indent-level: 8
1317 * c-basic-offset: 8
1318 * End:
1319 */