blob: 2d5ef6d704cd1f1af9838ad27cb4700d6ec2c511 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Functions operating on SOCK_STREAM and buffers.
3 *
Willy Tarreaua8f55d52010-05-31 17:44:19 +02004 * Copyright 2000-2010 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>
35#include <proto/log.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010036#include <proto/pipe.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020037#include <proto/stream_sock.h>
38#include <proto/task.h>
39
Willy Tarreau5bd8c372009-01-19 00:32:22 +010040#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020041
Willy Tarreau6b4aad42009-01-18 21:59:13 +010042/* On recent Linux kernels, the splice() syscall may be used for faster data copy.
43 * But it's not always defined on some OS versions, and it even happens that some
44 * definitions are wrong with some glibc due to an offset bug in syscall().
45 */
46
47#if defined(CONFIG_HAP_LINUX_SPLICE)
48#include <unistd.h>
49#include <sys/syscall.h>
50
51#ifndef SPLICE_F_MOVE
52#define SPLICE_F_MOVE 0x1
53#endif
54
55#ifndef SPLICE_F_NONBLOCK
56#define SPLICE_F_NONBLOCK 0x2
57#endif
58
59#ifndef SPLICE_F_MORE
60#define SPLICE_F_MORE 0x4
61#endif
62
63#ifndef __NR_splice
64#if defined(__powerpc__) || defined(__powerpc64__)
65#define __NR_splice 283
66#elif defined(__sparc__) || defined(__sparc64__)
67#define __NR_splice 232
68#elif defined(__x86_64__)
69#define __NR_splice 275
70#elif defined(__alpha__)
71#define __NR_splice 468
72#elif defined (__i386__)
73#define __NR_splice 313
74#else
75#warning unsupported architecture, guessing __NR_splice=313 like x86...
76#define __NR_splice 313
77#endif /* $arch */
78
79_syscall6(int, splice, int, fdin, loff_t *, off_in, int, fdout, loff_t *, off_out, size_t, len, unsigned long, flags)
80
81#endif /* __NR_splice */
Willy Tarreau5bd8c372009-01-19 00:32:22 +010082
83/* A pipe contains 16 segments max, and it's common to see segments of 1448 bytes
84 * because of timestamps. Use this as a hint for not looping on splice().
85 */
86#define SPLICE_FULL_HINT 16*1448
87
Willy Tarreaua9de3332009-11-28 07:47:10 +010088/* how many data we attempt to splice at once when the buffer is configured for
89 * infinite forwarding */
90#define MAX_SPLICE_AT_ONCE (1<<30)
91
Willy Tarreau5bd8c372009-01-19 00:32:22 +010092/* Returns :
93 * -1 if splice is not possible or not possible anymore and we must switch to
94 * user-land copy (eg: to_forward reached)
95 * 0 when we know that polling is required to get more data (EAGAIN)
96 * 1 for all other cases (we can safely try again, or if an activity has been
97 * detected (DATA/NULL/ERR))
98 * Sets :
99 * BF_READ_NULL
100 * BF_READ_PARTIAL
101 * BF_WRITE_PARTIAL (during copy)
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200102 * BF_OUT_EMPTY (during copy)
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100103 * SI_FL_ERR
104 * SI_FL_WAIT_ROOM
105 * (SI_FL_WAIT_RECV)
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100106 *
107 * This function automatically allocates a pipe from the pipe pool. It also
108 * carefully ensures to clear b->pipe whenever it leaves the pipe empty.
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100109 */
110static int stream_sock_splice_in(struct buffer *b, struct stream_interface *si)
111{
112 int fd = si->fd;
Willy Tarreau31971e52009-09-20 12:07:52 +0200113 int ret;
114 unsigned long max;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100115 int retval = 1;
116
117 if (!b->to_forward)
118 return -1;
119
120 if (!(b->flags & BF_KERN_SPLICING))
121 return -1;
122
123 if (b->l) {
124 /* We're embarrassed, there are already data pending in
125 * the buffer and we don't want to have them at two
126 * locations at a time. Let's indicate we need some
127 * place and ask the consumer to hurry.
128 */
129 si->flags |= SI_FL_WAIT_ROOM;
130 EV_FD_CLR(fd, DIR_RD);
131 b->rex = TICK_ETERNITY;
132 b->cons->chk_snd(b->cons);
133 return 1;
134 }
135
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100136 if (unlikely(b->pipe == NULL)) {
137 if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100138 b->flags &= ~BF_KERN_SPLICING;
139 return -1;
140 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100141 }
142
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100143 /* At this point, b->pipe is valid */
144
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100145 while (1) {
Willy Tarreaua9de3332009-11-28 07:47:10 +0100146 if (b->to_forward == BUF_INFINITE_FORWARD)
147 max = MAX_SPLICE_AT_ONCE;
148 else
149 max = b->to_forward;
150
Willy Tarreau31971e52009-09-20 12:07:52 +0200151 if (!max) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100152 /* It looks like the buffer + the pipe already contain
153 * the maximum amount of data to be transferred. Try to
154 * send those data immediately on the other side if it
155 * is currently waiting.
156 */
157 retval = -1; /* end of forwarding */
158 break;
159 }
160
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100161 ret = splice(fd, NULL, b->pipe->prod, NULL, max,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100162 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
163
164 if (ret <= 0) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100165 if (ret == 0) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100166 /* connection closed. This is only detected by
167 * recent kernels (>= 2.6.27.13).
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100168 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100169 b->flags |= BF_READ_NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100170 retval = 1; /* no need for further polling */
171 break;
172 }
173
174 if (errno == EAGAIN) {
175 /* there are two reasons for EAGAIN :
176 * - nothing in the socket buffer (standard)
177 * - pipe is full
Willy Tarreau98b306b2009-01-25 11:11:32 +0100178 * - the connection is closed (kernel < 2.6.27.13)
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100179 * Since we don't know if pipe is full, we'll
180 * stop if the pipe is not empty. Anyway, we
181 * will almost always fill/empty the pipe.
182 */
183
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100184 if (b->pipe->data) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100185 si->flags |= SI_FL_WAIT_ROOM;
186 retval = 1;
187 break;
188 }
189
Willy Tarreau98b306b2009-01-25 11:11:32 +0100190 /* We don't know if the connection was closed.
191 * But if we're called upon POLLIN with an empty
192 * pipe and get EAGAIN, it is suspect enought to
193 * try to fall back to the normal recv scheme
194 * which will be able to deal with the situation.
195 */
196 retval = -1;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100197 break;
198 }
Willy Tarreaudc340a92009-06-28 23:10:19 +0200199
Willy Tarreaua9de3332009-11-28 07:47:10 +0100200 if (errno == ENOSYS || errno == EINVAL) {
Willy Tarreaudc340a92009-06-28 23:10:19 +0200201 /* splice not supported on this end, disable it */
202 b->flags &= ~BF_KERN_SPLICING;
203 si->flags &= ~SI_FL_CAP_SPLICE;
204 put_pipe(b->pipe);
205 b->pipe = NULL;
206 return -1;
207 }
208
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100209 /* here we have another error */
210 si->flags |= SI_FL_ERR;
211 retval = 1;
212 break;
213 } /* ret <= 0 */
214
Willy Tarreau31971e52009-09-20 12:07:52 +0200215 if (b->to_forward != BUF_INFINITE_FORWARD)
216 b->to_forward -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100217 b->total += ret;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100218 b->pipe->data += ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100219 b->flags |= BF_READ_PARTIAL;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200220 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100221
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100222 if (b->pipe->data >= SPLICE_FULL_HINT ||
223 ret >= global.tune.recv_enough) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100224 /* We've read enough of it for this time. */
225 retval = 1;
226 break;
227 }
228 } /* while */
229
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100230 if (unlikely(!b->pipe->data)) {
231 put_pipe(b->pipe);
232 b->pipe = NULL;
233 }
234
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100235 return retval;
236}
237
Willy Tarreau6b4aad42009-01-18 21:59:13 +0100238#endif /* CONFIG_HAP_LINUX_SPLICE */
239
240
Willy Tarreaubaaee002006-06-26 02:48:02 +0200241/*
Willy Tarreaud7971282006-07-29 18:36:34 +0200242 * this function is called on a read event from a stream socket.
Willy Tarreau83749182007-04-15 20:56:27 +0200243 * It returns 0 if we have a high confidence that we will not be
244 * able to read more data without polling first. Returns non-zero
245 * otherwise.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200246 */
Willy Tarreaud7971282006-07-29 18:36:34 +0200247int stream_sock_read(int fd) {
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200248 struct stream_interface *si = fdtab[fd].owner;
Willy Tarreau48adac52008-08-30 04:58:38 +0200249 struct buffer *b = si->ib;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200250 int ret, max, retval, cur_read;
Willy Tarreaub8949f12007-03-23 22:39:59 +0100251 int read_poll = MAX_READ_POLL_LOOPS;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200252
253#ifdef DEBUG_FULL
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100254 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 +0200255#endif
256
Willy Tarreau83749182007-04-15 20:56:27 +0200257 retval = 1;
258
Willy Tarreau71543652009-07-14 19:55:05 +0200259 /* stop immediately on errors. Note that we DON'T want to stop on
260 * POLL_ERR, as the poller might report a write error while there
261 * are still data available in the recv buffer. This typically
262 * happens when we send too large a request to a backend server
263 * which rejects it before reading it all.
264 */
265 if (fdtab[fd].state == FD_STERROR)
Willy Tarreau6996e152007-04-30 14:37:43 +0200266 goto out_error;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100267
268 /* stop here if we reached the end of data */
269 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP)
270 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200271
Willy Tarreaud06e7112009-03-29 10:18:41 +0200272 /* maybe we were called immediately after an asynchronous shutr */
273 if (b->flags & BF_SHUTR)
274 goto out_wakeup;
275
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100276#if defined(CONFIG_HAP_LINUX_SPLICE)
277 if (b->to_forward && b->flags & BF_KERN_SPLICING) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100278
279 /* Under Linux, if FD_POLL_HUP is set, we have reached the end.
280 * Since older splice() implementations were buggy and returned
281 * EAGAIN on end of read, let's bypass the call to splice() now.
282 */
283 if (fdtab[fd].ev & FD_POLL_HUP)
284 goto out_shutdown_r;
285
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100286 retval = stream_sock_splice_in(b, si);
287
288 if (retval >= 0) {
289 if (si->flags & SI_FL_ERR)
290 goto out_error;
291 if (b->flags & BF_READ_NULL)
292 goto out_shutdown_r;
293 goto out_wakeup;
294 }
295 /* splice not possible (anymore), let's go on on standard copy */
296 }
297#endif
Willy Tarreau8a7af602008-05-03 23:07:14 +0200298 cur_read = 0;
Willy Tarreau6996e152007-04-30 14:37:43 +0200299 while (1) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100300 max = buffer_max_len(b) - b->l;
301
302 if (max <= 0) {
303 b->flags |= BF_FULL;
304 si->flags |= SI_FL_WAIT_ROOM;
305 break;
306 }
307
Willy Tarreau6996e152007-04-30 14:37:43 +0200308 /*
309 * 1. compute the maximum block size we can read at once.
310 */
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100311 if (b->l == 0) {
312 /* let's realign the buffer to optimize I/O */
313 b->r = b->w = b->lr = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200314 }
315 else if (b->r > b->w) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100316 /* remaining space wraps at the end, with a moving limit */
317 if (max > b->data + b->size - b->r)
318 max = b->data + b->size - b->r;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100319 }
Willy Tarreau864e8252009-12-28 17:36:37 +0100320 /* else max is already OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200321
Willy Tarreau6996e152007-04-30 14:37:43 +0200322 /*
323 * 2. read the largest possible block
324 */
Willy Tarreaufc1daaf2010-01-15 10:26:13 +0100325 ret = recv(fd, b->r, max, 0);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200326
Willy Tarreau83749182007-04-15 20:56:27 +0200327 if (ret > 0) {
328 b->r += ret;
329 b->l += ret;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200330 cur_read += ret;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100331
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100332 /* if we're allowed to directly forward data, we must update send_max */
Willy Tarreau31971e52009-09-20 12:07:52 +0200333 if (b->to_forward && !(b->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
334 unsigned long fwd = ret;
335 if (b->to_forward != BUF_INFINITE_FORWARD) {
336 if (fwd > b->to_forward)
337 fwd = b->to_forward;
338 b->to_forward -= fwd;
339 }
340 b->send_max += fwd;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200341 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100342 }
Willy Tarreauf890dc92008-12-13 21:12:26 +0100343
Willy Tarreaub38903c2008-11-23 21:33:29 +0100344 if (fdtab[fd].state == FD_STCONN)
345 fdtab[fd].state = FD_STREADY;
346
Willy Tarreau3da77c52008-08-29 09:58:42 +0200347 b->flags |= BF_READ_PARTIAL;
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100348
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200349 if (b->r == b->data + b->size) {
Willy Tarreau83749182007-04-15 20:56:27 +0200350 b->r = b->data; /* wrap around the buffer */
351 }
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100352
Willy Tarreau83749182007-04-15 20:56:27 +0200353 b->total += ret;
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100354
Willy Tarreau7c3c5412009-12-13 15:53:05 +0100355 if (b->l >= buffer_max_len(b)) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200356 /* The buffer is now full, there's no point in going through
357 * the loop again.
358 */
Willy Tarreau8a7af602008-05-03 23:07:14 +0200359 if (!(b->flags & BF_STREAMER_FAST) && (cur_read == b->l)) {
360 b->xfer_small = 0;
361 b->xfer_large++;
362 if (b->xfer_large >= 3) {
363 /* we call this buffer a fast streamer if it manages
364 * to be filled in one call 3 consecutive times.
365 */
366 b->flags |= (BF_STREAMER | BF_STREAMER_FAST);
367 //fputc('+', stderr);
368 }
369 }
370 else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200371 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200372 b->xfer_large = 0;
373 b->xfer_small++;
374 if (b->xfer_small >= 2) {
375 /* if the buffer has been at least half full twice,
376 * we receive faster than we send, so at least it
377 * is not a "fast streamer".
378 */
379 b->flags &= ~BF_STREAMER_FAST;
380 //fputc('-', stderr);
381 }
382 }
383 else {
384 b->xfer_small = 0;
385 b->xfer_large = 0;
386 }
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100387
388 b->flags |= BF_FULL;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100389 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100390 break;
Willy Tarreau6996e152007-04-30 14:37:43 +0200391 }
392
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200393 /* if too many bytes were missing from last read, it means that
394 * it's pointless trying to read again because the system does
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100395 * not have them in buffers. BTW, if FD_POLL_HUP was present,
396 * it means that we have reached the end and that the connection
397 * is closed.
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200398 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100399 if (ret < max) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200400 if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200401 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200402 b->xfer_large = 0;
403 b->xfer_small++;
404 if (b->xfer_small >= 3) {
405 /* we have read less than half of the buffer in
406 * one pass, and this happened at least 3 times.
407 * This is definitely not a streamer.
408 */
409 b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST);
410 //fputc('!', stderr);
411 }
412 }
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200413 /* unfortunately, on level-triggered events, POLL_HUP
414 * is generally delivered AFTER the system buffer is
415 * empty, so this one might never match.
416 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100417 if (fdtab[fd].ev & FD_POLL_HUP)
418 goto out_shutdown_r;
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200419
420 /* if a streamer has read few data, it may be because we
421 * have exhausted system buffers. It's not worth trying
422 * again.
423 */
424 if (b->flags & BF_STREAMER)
425 break;
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200426
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100427 /* generally if we read something smaller than 1 or 2 MSS,
428 * it means that either we have exhausted the system's
429 * buffers (streamer or question-response protocol) or
430 * that the connection will be closed. Streamers are
431 * easily detected so we return early. For other cases,
432 * it's still better to perform a last read to be sure,
433 * because it may save one complete poll/read/wakeup cycle
434 * in case of shutdown.
435 */
436 if (ret < MIN_RET_FOR_READ_LOOP && b->flags & BF_STREAMER)
437 break;
438
439 /* if we read a large block smaller than what we requested,
440 * it's almost certain we'll never get anything more.
441 */
442 if (ret >= global.tune.recv_enough)
443 break;
444 }
Willy Tarreau83749182007-04-15 20:56:27 +0200445
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100446 if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200447 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200448 }
449 else if (ret == 0) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200450 /* connection closed */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100451 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200452 }
Willy Tarreau9f195292007-04-15 21:26:58 +0200453 else if (errno == EAGAIN) {
454 /* Ignore EAGAIN but inform the poller that there is
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100455 * nothing to read left if we did not read much, ie
456 * less than what we were still expecting to read.
457 * But we may have done some work justifying to notify
458 * the task.
Willy Tarreau9f195292007-04-15 21:26:58 +0200459 */
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100460 if (cur_read < MIN_RET_FOR_READ_LOOP)
461 retval = 0;
Willy Tarreau83749182007-04-15 20:56:27 +0200462 break;
463 }
464 else {
Willy Tarreau6996e152007-04-30 14:37:43 +0200465 goto out_error;
Willy Tarreau83749182007-04-15 20:56:27 +0200466 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200467 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200468
Willy Tarreau6996e152007-04-30 14:37:43 +0200469 out_wakeup:
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100470 /* We might have some data the consumer is waiting for */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200471 if (!(b->flags & BF_OUT_EMPTY) && (b->cons->flags & SI_FL_WAIT_DATA)) {
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100472 int last_len = b->pipe ? b->pipe->data : 0;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100473
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100474 b->cons->chk_snd(b->cons);
475
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100476 /* check if the consumer has freed some space */
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100477 if (!(b->flags & BF_FULL) &&
478 (!last_len || !b->pipe || b->pipe->data < last_len))
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100479 si->flags &= ~SI_FL_WAIT_ROOM;
480 }
481
482 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100483 EV_FD_CLR(fd, DIR_RD);
484 b->rex = TICK_ETERNITY;
485 }
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200486 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 +0100487 b->rex = tick_add_ifset(now_ms, b->rto);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100488
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100489 /* we have to wake up if there is a special event or if we don't have
490 * any more data to forward.
491 */
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100492 if ((b->flags & (BF_READ_NULL|BF_READ_ERROR|BF_SHUTR|BF_READ_DONTWAIT)) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100493 !b->to_forward ||
494 si->state != SI_ST_EST ||
495 b->cons->state != SI_ST_EST ||
496 (si->flags & SI_FL_ERR))
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100497 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100498
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100499 b->flags &= ~BF_READ_DONTWAIT;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100500 fdtab[fd].ev &= ~FD_POLL_IN;
Willy Tarreau83749182007-04-15 20:56:27 +0200501 return retval;
Willy Tarreau6996e152007-04-30 14:37:43 +0200502
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100503 out_shutdown_r:
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200504 /* we received a shutdown */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100505 fdtab[fd].ev &= ~FD_POLL_HUP;
506 b->flags |= BF_READ_NULL;
Willy Tarreau520d95e2009-09-19 21:04:57 +0200507 if (b->flags & BF_AUTO_CLOSE)
Willy Tarreau418fd472009-09-06 21:37:23 +0200508 buffer_shutw_now(b);
Willy Tarreau99126c32008-11-27 10:30:51 +0100509 stream_sock_shutr(si);
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200510 goto out_wakeup;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100511
Willy Tarreau6996e152007-04-30 14:37:43 +0200512 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100513 /* Read error on the file descriptor. We mark the FD as STERROR so
514 * that we don't use it anymore. The error is reported to the stream
515 * interface which will take proper action. We must not perturbate the
516 * buffer because the stream interface wants to ensure transparent
517 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200518 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100519
Willy Tarreau6996e152007-04-30 14:37:43 +0200520 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100521 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100522 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100523 si->flags |= SI_FL_ERR;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100524 retval = 1;
525 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200526}
527
528
529/*
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100530 * This function is called to send buffer data to a stream socket.
531 * It returns -1 in case of unrecoverable error, 0 if the caller needs to poll
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100532 * before calling it again, otherwise 1. If a pipe was associated with the
533 * buffer and it empties it, it releases it as well.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200534 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100535static int stream_sock_write_loop(struct stream_interface *si, struct buffer *b)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100536{
Willy Tarreau83749182007-04-15 20:56:27 +0200537 int write_poll = MAX_WRITE_POLL_LOOPS;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100538 int retval = 1;
539 int ret, max;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200540
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100541#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100542 while (b->pipe) {
543 ret = splice(b->pipe->cons, NULL, si->fd, NULL, b->pipe->data,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100544 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
545 if (ret <= 0) {
546 if (ret == 0 || errno == EAGAIN) {
547 retval = 0;
548 return retval;
549 }
550 /* here we have another error */
551 retval = -1;
552 return retval;
553 }
554
555 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100556 b->pipe->data -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100557
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100558 if (!b->pipe->data) {
559 put_pipe(b->pipe);
560 b->pipe = NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100561 break;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100562 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100563
564 if (--write_poll <= 0)
565 return retval;
566 }
567
568 /* At this point, the pipe is empty, but we may still have data pending
569 * in the normal buffer.
570 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100571#endif
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200572 if (!b->send_max) {
573 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100574 return retval;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200575 }
Willy Tarreau83749182007-04-15 20:56:27 +0200576
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100577 /* when we're in this loop, we already know that there is no spliced
578 * data left, and that there are sendable buffered data.
579 */
Willy Tarreau6996e152007-04-30 14:37:43 +0200580 while (1) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100581 if (b->r > b->w)
Willy Tarreau83749182007-04-15 20:56:27 +0200582 max = b->r - b->w;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100583 else
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200584 max = b->data + b->size - b->w;
Willy Tarreau83749182007-04-15 20:56:27 +0200585
Willy Tarreauf890dc92008-12-13 21:12:26 +0100586 /* limit the amount of outgoing data if required */
587 if (max > b->send_max)
588 max = b->send_max;
589
Willy Tarreau6db06d32009-08-19 11:14:11 +0200590 /* check if we want to inform the kernel that we're interested in
591 * sending more data after this call. We want this if :
592 * - we're about to close after this last send and want to merge
593 * the ongoing FIN with the last segment.
594 * - we know we can't send everything at once and must get back
595 * here because of unaligned data
Willy Tarreaud38b53b2010-01-03 11:18:34 +0100596 * - there is still a finite amount of data to forward
Willy Tarreau6db06d32009-08-19 11:14:11 +0200597 * The test is arranged so that the most common case does only 2
598 * tests.
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200599 */
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200600
Willy Tarreauface8392010-01-03 11:37:54 +0100601 if (MSG_NOSIGNAL && MSG_MORE) {
Willy Tarreau6db06d32009-08-19 11:14:11 +0200602 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
603
Willy Tarreauface8392010-01-03 11:37:54 +0100604 if (((b->to_forward && b->to_forward != BUF_INFINITE_FORWARD) ||
Willy Tarreaud38b53b2010-01-03 11:18:34 +0100605 ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == BF_SHUTW_NOW && (max == b->send_max)) ||
Willy Tarreau6db06d32009-08-19 11:14:11 +0200606 (max != b->l && max != b->send_max))
607 && (fdtab[si->fd].flags & FD_FL_TCP)) {
608 send_flag |= MSG_MORE;
609 }
Willy Tarreauface8392010-01-03 11:37:54 +0100610 else if (b->flags & BF_EXPECT_MORE) {
611 /* it was forced on the buffer, this flag is one-shoot */
612 b->flags &= ~BF_EXPECT_MORE;
613 send_flag |= MSG_MORE;
614 }
Willy Tarreau6db06d32009-08-19 11:14:11 +0200615
Willy Tarreau2be39392010-01-03 17:24:51 +0100616 /* this flag has precedence over the rest */
617 if (b->flags & BF_SEND_DONTWAIT)
618 send_flag &= ~MSG_MORE;
619
Willy Tarreau6db06d32009-08-19 11:14:11 +0200620 ret = send(si->fd, b->w, max, send_flag);
Willy Tarreau2be39392010-01-03 17:24:51 +0100621
622 /* disable it only once everything has been sent */
623 if (ret == max && (b->flags & BF_SEND_DONTWAIT))
624 b->flags &= ~BF_SEND_DONTWAIT;
Willy Tarreaud6d06902009-08-19 11:22:33 +0200625 } else {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200626 int skerr;
627 socklen_t lskerr = sizeof(skerr);
628
Willy Tarreau87bed622009-03-08 22:25:28 +0100629 ret = getsockopt(si->fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
Willy Tarreauc6423482006-10-15 14:59:03 +0200630 if (ret == -1 || skerr)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200631 ret = -1;
632 else
Willy Tarreau87bed622009-03-08 22:25:28 +0100633 ret = send(si->fd, b->w, max, MSG_DONTWAIT);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200634 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200635
636 if (ret > 0) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100637 if (fdtab[si->fd].state == FD_STCONN)
638 fdtab[si->fd].state = FD_STREADY;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100639
Willy Tarreau3da77c52008-08-29 09:58:42 +0200640 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreaue393fe22008-08-16 22:18:07 +0200641
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100642 b->w += ret;
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200643 if (b->w == b->data + b->size)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100644 b->w = b->data; /* wrap around the buffer */
645
646 b->l -= ret;
Willy Tarreau7c3c5412009-12-13 15:53:05 +0100647 if (likely(b->l < buffer_max_len(b)))
Willy Tarreaue393fe22008-08-16 22:18:07 +0200648 b->flags &= ~BF_FULL;
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100649
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200650 if (likely(!b->l))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100651 /* optimize data alignment in the buffer */
652 b->r = b->w = b->lr = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200653
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100654 b->send_max -= ret;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200655 if (!b->send_max) {
656 if (likely(!b->pipe))
657 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100658 break;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200659 }
Willy Tarreau83749182007-04-15 20:56:27 +0200660
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200661 /* if the system buffer is full, don't insist */
662 if (ret < max)
663 break;
664
Willy Tarreau6996e152007-04-30 14:37:43 +0200665 if (--write_poll <= 0)
666 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200667 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200668 else if (ret == 0 || errno == EAGAIN) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100669 /* nothing written, we need to poll for write first */
Willy Tarreau83749182007-04-15 20:56:27 +0200670 retval = 0;
671 break;
672 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200673 else {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100674 /* bad, we got an error */
675 retval = -1;
676 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200677 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200678 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200679
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100680 return retval;
681}
Willy Tarreau6996e152007-04-30 14:37:43 +0200682
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100683
684/*
685 * This function is called on a write event from a stream socket.
686 * It returns 0 if the caller needs to poll before calling it again, otherwise
687 * non-zero.
688 */
689int stream_sock_write(int fd)
690{
691 struct stream_interface *si = fdtab[fd].owner;
692 struct buffer *b = si->ob;
693 int retval = 1;
694
695#ifdef DEBUG_FULL
696 fprintf(stderr,"stream_sock_write : fd=%d, owner=%p\n", fd, fdtab[fd].owner);
697#endif
698
699 retval = 1;
Willy Tarreau71543652009-07-14 19:55:05 +0200700 if (fdtab[fd].state == FD_STERROR)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100701 goto out_error;
702
Willy Tarreaud06e7112009-03-29 10:18:41 +0200703 /* we might have been called just after an asynchronous shutw */
704 if (b->flags & BF_SHUTW)
705 goto out_wakeup;
706
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200707 if (likely(!(b->flags & BF_OUT_EMPTY))) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100708 /* OK there are data waiting to be sent */
709 retval = stream_sock_write_loop(si, b);
710 if (retval < 0)
711 goto out_error;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200712 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100713 else {
714 /* may be we have received a connection acknowledgement in TCP mode without data */
715 if (likely(fdtab[fd].state == FD_STCONN)) {
716 /* We have no data to send to check the connection, and
717 * getsockopt() will not inform us whether the connection
718 * is still pending. So we'll reuse connect() to check the
719 * state of the socket. This has the advantage of givig us
720 * the following info :
721 * - error
722 * - connecting (EALREADY, EINPROGRESS)
723 * - connected (EISCONN, 0)
724 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200725 if ((connect(fd, fdinfo[fd].peeraddr, fdinfo[fd].peerlen) == 0))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100726 errno = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200727
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100728 if (errno == EALREADY || errno == EINPROGRESS) {
729 retval = 0;
730 goto out_may_wakeup;
731 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100732
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100733 if (errno && errno != EISCONN)
734 goto out_error;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200735
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100736 /* OK we just need to indicate that we got a connection
737 * and that we wrote nothing.
738 */
739 b->flags |= BF_WRITE_NULL;
740 fdtab[fd].state = FD_STREADY;
741 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200742
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100743 /* Funny, we were called to write something but there wasn't
744 * anything. We can get there, for example if we were woken up
745 * on a write event to finish the splice, but the send_max is 0
746 * so we cannot write anything from the buffer. Let's disable
747 * the write event and pretend we never came there.
748 */
749 }
750
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200751 if (b->flags & BF_OUT_EMPTY) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100752 /* the connection is established but we can't write. Either the
753 * buffer is empty, or we just refrain from sending because the
754 * send_max limit was reached. Maybe we just wrote the last
755 * chunk and need to close.
756 */
Willy Tarreau520d95e2009-09-19 21:04:57 +0200757 if (((b->flags & (BF_SHUTW|BF_HIJACK|BF_SHUTW_NOW)) == BF_SHUTW_NOW) &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100758 (si->state == SI_ST_EST)) {
759 stream_sock_shutw(si);
760 goto out_wakeup;
761 }
762
Willy Tarreau59454bf2009-09-20 11:13:40 +0200763 if ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreauac128fe2009-01-09 13:05:19 +0100764 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100765
Willy Tarreauac128fe2009-01-09 13:05:19 +0100766 EV_FD_CLR(fd, DIR_WR);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100767 b->wex = TICK_ETERNITY;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100768 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100769
770 out_may_wakeup:
771 if (b->flags & BF_WRITE_ACTIVITY) {
772 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200773 if ((b->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100774 b->wex = tick_add_ifset(now_ms, b->wto);
775
776 out_wakeup:
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200777 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100778 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200779 * during writes, we refresh it. We only do this if the
780 * interface is not configured for "independant streams",
781 * because for some applications it's better not to do this,
782 * for instance when continuously exchanging small amounts
783 * of data which can full the socket buffers long before a
784 * write timeout is detected.
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100785 */
786 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
787 }
788
789 /* the producer might be waiting for more room to store data */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200790 if (likely((b->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL|BF_DONT_READ)) == BF_WRITE_PARTIAL &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100791 (b->prod->flags & SI_FL_WAIT_ROOM)))
792 b->prod->chk_rcv(b->prod);
793
794 /* we have to wake up if there is a special event or if we don't have
795 * any more data to forward and it's not planned to send any more.
796 */
797 if (likely((b->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200798 ((b->flags & BF_OUT_EMPTY) && !b->to_forward) ||
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100799 si->state != SI_ST_EST ||
800 b->prod->state != SI_ST_EST))
801 task_wakeup(si->owner, TASK_WOKEN_IO);
802 }
803
804 fdtab[fd].ev &= ~FD_POLL_OUT;
805 return retval;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100806
Willy Tarreau6996e152007-04-30 14:37:43 +0200807 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100808 /* Write error on the file descriptor. We mark the FD as STERROR so
809 * that we don't use it anymore. The error is reported to the stream
810 * interface which will take proper action. We must not perturbate the
811 * buffer because the stream interface wants to ensure transparent
812 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200813 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100814
Willy Tarreau6996e152007-04-30 14:37:43 +0200815 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100816 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100817 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100818 si->flags |= SI_FL_ERR;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200819 task_wakeup(si->owner, TASK_WOKEN_IO);
820 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200821}
822
Willy Tarreau48adac52008-08-30 04:58:38 +0200823/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200824 * This function performs a shutdown-write on a stream interface in a connected or
825 * init state (it does nothing for other states). It either shuts the write side
Willy Tarreau99126c32008-11-27 10:30:51 +0100826 * or closes the file descriptor and marks itself as closed. The buffer flags are
Willy Tarreau7340ca52010-01-16 10:03:45 +0100827 * updated to reflect the new state. It does also close everything is the SI was
828 * marked as being in error state.
Willy Tarreau48adac52008-08-30 04:58:38 +0200829 */
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100830void stream_sock_shutw(struct stream_interface *si)
Willy Tarreau48adac52008-08-30 04:58:38 +0200831{
Willy Tarreau418fd472009-09-06 21:37:23 +0200832 si->ob->flags &= ~BF_SHUTW_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100833 if (si->ob->flags & BF_SHUTW)
834 return;
835 si->ob->flags |= BF_SHUTW;
836 si->ob->wex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100837 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau99126c32008-11-27 10:30:51 +0100838
Willy Tarreaub38903c2008-11-23 21:33:29 +0100839 switch (si->state) {
Willy Tarreaub38903c2008-11-23 21:33:29 +0100840 case SI_ST_EST:
Willy Tarreau720058c2009-07-14 19:21:50 +0200841 /* we have to shut before closing, otherwise some short messages
842 * may never leave the system, especially when there are remaining
843 * unread data in the socket input buffer, or when nolinger is set.
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100844 * However, if SI_FL_NOLINGER is explicitly set, we know there is
845 * no risk so we close both sides immediately.
Willy Tarreau720058c2009-07-14 19:21:50 +0200846 */
Willy Tarreau7340ca52010-01-16 10:03:45 +0100847 if (si->flags & SI_FL_ERR) {
848 /* quick close, the socket is already shut. Remove pending flags. */
849 si->flags &= ~SI_FL_NOLINGER;
850 } else if (si->flags & SI_FL_NOLINGER) {
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100851 si->flags &= ~SI_FL_NOLINGER;
852 setsockopt(si->fd, SOL_SOCKET, SO_LINGER,
853 (struct linger *) &nolinger, sizeof(struct linger));
854 } else {
855 EV_FD_CLR(si->fd, DIR_WR);
856 shutdown(si->fd, SHUT_WR);
Willy Tarreau720058c2009-07-14 19:21:50 +0200857
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100858 if (!(si->ib->flags & (BF_SHUTR|BF_DONT_READ)))
859 return;
860 }
Willy Tarreau5d707e12009-06-28 11:09:07 +0200861
Willy Tarreaub38903c2008-11-23 21:33:29 +0100862 /* fall through */
863 case SI_ST_CON:
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100864 /* we may have to close a pending connection, and mark the
865 * response buffer as shutr
866 */
Willy Tarreau48adac52008-08-30 04:58:38 +0200867 fd_delete(si->fd);
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100868 /* fall through */
869 case SI_ST_CER:
Willy Tarreau7f006512008-12-07 14:04:04 +0100870 si->state = SI_ST_DIS;
871 default:
Willy Tarreaud06e7112009-03-29 10:18:41 +0200872 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100873 si->ib->flags |= BF_SHUTR;
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100874 si->ib->rex = TICK_ETERNITY;
Willy Tarreau127334e2009-03-28 10:47:26 +0100875 si->exp = TICK_ETERNITY;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100876 return;
Willy Tarreau48adac52008-08-30 04:58:38 +0200877 }
Willy Tarreau48adac52008-08-30 04:58:38 +0200878}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200879
Willy Tarreau2d212792008-08-27 21:41:35 +0200880/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200881 * This function performs a shutdown-read on a stream interface in a connected or
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100882 * init state (it does nothing for other states). It either shuts the read side
Willy Tarreau99126c32008-11-27 10:30:51 +0100883 * or closes the file descriptor and marks itself as closed. The buffer flags are
884 * updated to reflect the new state.
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200885 */
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100886void stream_sock_shutr(struct stream_interface *si)
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200887{
Willy Tarreau418fd472009-09-06 21:37:23 +0200888 si->ib->flags &= ~BF_SHUTR_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100889 if (si->ib->flags & BF_SHUTR)
890 return;
891 si->ib->flags |= BF_SHUTR;
892 si->ib->rex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100893 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100894
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100895 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100896 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200897
Willy Tarreaucff64112008-11-03 06:26:53 +0100898 if (si->ob->flags & BF_SHUTW) {
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200899 fd_delete(si->fd);
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100900 si->state = SI_ST_DIS;
Willy Tarreau127334e2009-03-28 10:47:26 +0100901 si->exp = TICK_ETERNITY;
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100902 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200903 }
904 EV_FD_CLR(si->fd, DIR_RD);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100905 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200906}
907
908/*
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200909 * Updates a connected stream_sock file descriptor status and timeouts
910 * according to the buffers' flags. It should only be called once after the
911 * buffer flags have settled down, and before they are cleared. It doesn't
912 * harm to call it as often as desired (it just slightly hurts performance).
913 */
Willy Tarreaub0253252008-11-30 21:37:12 +0100914void stream_sock_data_finish(struct stream_interface *si)
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200915{
Willy Tarreaub0253252008-11-30 21:37:12 +0100916 struct buffer *ib = si->ib;
917 struct buffer *ob = si->ob;
918 int fd = si->fd;
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200919
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200920 DPRINTF(stderr,"[%u] %s: fd=%d owner=%p ib=%p, ob=%p, exp(r,w)=%u,%u ibf=%08x obf=%08x ibl=%d obl=%d si=%d\n",
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200921 now_ms, __FUNCTION__,
922 fd, fdtab[fd].owner,
923 ib, ob,
924 ib->rex, ob->wex,
925 ib->flags, ob->flags,
Willy Tarreaub0253252008-11-30 21:37:12 +0100926 ib->l, ob->l, si->state);
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200927
928 /* Check if we need to close the read side */
929 if (!(ib->flags & BF_SHUTR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200930 /* Read not closed, update FD status and timeout for reads */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200931 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200932 /* stop reading */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200933 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100934 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau2d212792008-08-27 21:41:35 +0200935 EV_FD_COND_C(fd, DIR_RD);
936 ib->rex = TICK_ETERNITY;
937 }
938 else {
939 /* (re)start reading and update timeout. Note: we don't recompute the timeout
940 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200941 * update it if is was not yet set. The stream socket handler will already
942 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200943 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100944 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau2d212792008-08-27 21:41:35 +0200945 EV_FD_COND_S(fd, DIR_RD);
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200946 if (!(ib->flags & (BF_READ_NOEXP|BF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau2d212792008-08-27 21:41:35 +0200947 ib->rex = tick_add_ifset(now_ms, ib->rto);
948 }
949 }
950
951 /* Check if we need to close the write side */
952 if (!(ob->flags & BF_SHUTW)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200953 /* Write not closed, update FD status and timeout for writes */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200954 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200955 /* stop writing */
Willy Tarreau59454bf2009-09-20 11:13:40 +0200956 if ((ob->flags & (BF_FULL|BF_HIJACK|BF_SHUTW_NOW)) == 0)
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100957 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau2d212792008-08-27 21:41:35 +0200958 EV_FD_COND_C(fd, DIR_WR);
959 ob->wex = TICK_ETERNITY;
960 }
961 else {
962 /* (re)start writing and update timeout. Note: we don't recompute the timeout
963 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200964 * update it if is was not yet set. The stream socket handler will already
965 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200966 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100967 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau2d212792008-08-27 21:41:35 +0200968 EV_FD_COND_S(fd, DIR_WR);
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200969 if (!tick_isset(ob->wex)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200970 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200971 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200972 /* Note: depending on the protocol, we don't know if we're waiting
973 * for incoming data or not. So in order to prevent the socket from
974 * expiring read timeouts during writes, we refresh the read timeout,
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200975 * except if it was already infinite or if we have explicitly setup
976 * independant streams.
Willy Tarreau2d212792008-08-27 21:41:35 +0200977 */
Willy Tarreaud06e7112009-03-29 10:18:41 +0200978 ib->rex = tick_add_ifset(now_ms, ib->rto);
Willy Tarreau2d212792008-08-27 21:41:35 +0200979 }
980 }
981 }
982 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200983}
984
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100985/* This function is used for inter-stream-interface calls. It is called by the
986 * consumer to inform the producer side that it may be interested in checking
987 * for free space in the buffer. Note that it intentionally does not update
988 * timeouts, so that we can still check them later at wake-up.
989 */
990void stream_sock_chk_rcv(struct stream_interface *si)
991{
992 struct buffer *ib = si->ib;
993
994 DPRINTF(stderr,"[%u] %s: fd=%d owner=%p ib=%p, ob=%p, exp(r,w)=%u,%u ibf=%08x obf=%08x ibl=%d obl=%d si=%d\n",
995 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +0000996 si->fd, fdtab[si->fd].owner,
997 ib, si->ob,
998 ib->rex, si->ob->wex,
999 ib->flags, si->ob->flags,
1000 ib->l, si->ob->l, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001001
1002 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
1003 return;
1004
Willy Tarreauf1ba4b32009-10-17 14:37:52 +02001005 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001006 /* stop reading */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +02001007 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001008 si->flags |= SI_FL_WAIT_ROOM;
1009 EV_FD_COND_C(si->fd, DIR_RD);
1010 }
1011 else {
1012 /* (re)start reading */
1013 si->flags &= ~SI_FL_WAIT_ROOM;
1014 EV_FD_COND_S(si->fd, DIR_RD);
1015 }
1016}
1017
1018
1019/* This function is used for inter-stream-interface calls. It is called by the
1020 * producer to inform the consumer side that it may be interested in checking
1021 * for data in the buffer. Note that it intentionally does not update timeouts,
1022 * so that we can still check them later at wake-up.
1023 */
1024void stream_sock_chk_snd(struct stream_interface *si)
1025{
1026 struct buffer *ob = si->ob;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001027 int retval;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001028
1029 DPRINTF(stderr,"[%u] %s: fd=%d owner=%p ib=%p, ob=%p, exp(r,w)=%u,%u ibf=%08x obf=%08x ibl=%d obl=%d si=%d\n",
1030 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +00001031 si->fd, fdtab[si->fd].owner,
1032 si->ib, ob,
1033 si->ib->rex, ob->wex,
1034 si->ib->flags, ob->flags,
1035 si->ib->l, ob->l, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001036
1037 if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW)))
1038 return;
1039
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001040 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
1041 (fdtab[si->fd].ev & FD_POLL_OUT) || /* we'll be called anyway */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001042 (ob->flags & BF_OUT_EMPTY)) /* called with nothing to send ! */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001043 return;
1044
1045 retval = stream_sock_write_loop(si, ob);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001046 /* here, we have :
1047 * retval < 0 if an error was encountered during write.
1048 * retval = 0 if we can't write anymore without polling
1049 * retval = 1 if we're invited to come back when desired
1050 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001051 if (retval < 0) {
1052 /* Write error on the file descriptor. We mark the FD as STERROR so
1053 * that we don't use it anymore and we notify the task.
1054 */
1055 fdtab[si->fd].state = FD_STERROR;
1056 fdtab[si->fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +01001057 EV_FD_REM(si->fd);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001058 si->flags |= SI_FL_ERR;
1059 goto out_wakeup;
1060 }
1061
Willy Tarreauc54aef32009-07-27 20:08:06 +02001062 /* OK, so now we know that retval >= 0 means that some data might have
1063 * been sent, and that we may have to poll first. We have to do that
1064 * too if the buffer is not empty.
1065 */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001066 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001067 /* the connection is established but we can't write. Either the
1068 * buffer is empty, or we just refrain from sending because the
1069 * send_max limit was reached. Maybe we just wrote the last
1070 * chunk and need to close.
1071 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02001072 if (((ob->flags & (BF_SHUTW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTW_NOW)) ==
1073 (BF_AUTO_CLOSE|BF_SHUTW_NOW)) &&
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001074 (si->state == SI_ST_EST)) {
1075 stream_sock_shutw(si);
1076 goto out_wakeup;
1077 }
Willy Tarreaud06e7112009-03-29 10:18:41 +02001078
Willy Tarreau59454bf2009-09-20 11:13:40 +02001079 if ((ob->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001080 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001081 ob->wex = TICK_ETERNITY;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001082 }
1083 else {
Willy Tarreauc54aef32009-07-27 20:08:06 +02001084 /* Otherwise there are remaining data to be sent in the buffer,
1085 * which means we have to poll before doing so.
1086 */
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001087 EV_FD_COND_S(si->fd, DIR_WR);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001088 si->flags &= ~SI_FL_WAIT_DATA;
1089 if (!tick_isset(ob->wex))
1090 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001091 }
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001092
Willy Tarreauc9619462009-03-09 22:40:57 +01001093 if (likely(ob->flags & BF_WRITE_ACTIVITY)) {
1094 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001095 if ((ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreauc9619462009-03-09 22:40:57 +01001096 ob->wex = tick_add_ifset(now_ms, ob->wto);
1097
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001098 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreauc9619462009-03-09 22:40:57 +01001099 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001100 * during writes, we refresh it. We only do this if the
1101 * interface is not configured for "independant streams",
1102 * because for some applications it's better not to do this,
1103 * for instance when continuously exchanging small amounts
1104 * of data which can full the socket buffers long before a
1105 * write timeout is detected.
Willy Tarreauc9619462009-03-09 22:40:57 +01001106 */
1107 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
1108 }
1109 }
1110
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001111 /* in case of special condition (error, shutdown, end of write...), we
1112 * have to notify the task.
1113 */
1114 if (likely((ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001115 ((ob->flags & BF_OUT_EMPTY) && !ob->to_forward) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001116 si->state != SI_ST_EST)) {
1117 out_wakeup:
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001118 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
1119 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001120 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001121}
1122
Willy Tarreaueb472682010-05-28 18:46:57 +02001123/* This function is called on a read event from a listening socket, corresponding
1124 * to an accept. It tries to accept as many connections as possible, and for each
1125 * calls the listener's accept handler (generally the frontend's accept handler).
1126 */
1127int stream_sock_accept(int fd)
1128{
1129 struct listener *l = fdtab[fd].owner;
1130 struct proxy *p = l->frontend;
1131 int max_accept = global.tune.maxaccept;
1132 int cfd;
1133 int ret;
1134
1135 if (unlikely(l->nbconn >= l->maxconn)) {
1136 EV_FD_CLR(l->fd, DIR_RD);
1137 l->state = LI_FULL;
1138 return 0;
1139 }
1140
1141 if (p && p->fe_sps_lim) {
1142 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
1143 if (max_accept > max)
1144 max_accept = max;
1145 }
1146
1147 while ((!p || p->feconn < p->maxconn) && actconn < global.maxconn && max_accept--) {
1148 struct sockaddr_storage addr;
1149 socklen_t laddr = sizeof(addr);
1150
1151 cfd = accept(fd, (struct sockaddr *)&addr, &laddr);
1152 if (unlikely(cfd == -1)) {
1153 switch (errno) {
1154 case EAGAIN:
1155 case EINTR:
1156 case ECONNABORTED:
1157 return 0; /* nothing more to accept */
1158 case ENFILE:
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001159 if (p)
1160 send_log(p, LOG_EMERG,
1161 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
1162 p->id, maxfd);
Willy Tarreaueb472682010-05-28 18:46:57 +02001163 return 0;
1164 case EMFILE:
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001165 if (p)
1166 send_log(p, LOG_EMERG,
1167 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
1168 p->id, maxfd);
Willy Tarreaueb472682010-05-28 18:46:57 +02001169 return 0;
1170 case ENOBUFS:
1171 case ENOMEM:
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001172 if (p)
1173 send_log(p, LOG_EMERG,
1174 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
1175 p->id, maxfd);
Willy Tarreaueb472682010-05-28 18:46:57 +02001176 return 0;
1177 default:
1178 return 0;
1179 }
1180 }
1181
1182 if (unlikely(cfd >= global.maxsock)) {
1183 Alert("accept(): not enough free sockets. Raise -n argument. Giving up.\n");
1184 goto out_close;
1185 }
1186
Willy Tarreau24dcaf32010-06-05 10:49:41 +02001187 actconn++;
1188 totalconn++;
1189 l->nbconn++;
1190
1191 if (l->counters) {
1192 if (l->nbconn > l->counters->conn_max)
1193 l->counters->conn_max = l->nbconn;
1194 }
1195
Willy Tarreaueb472682010-05-28 18:46:57 +02001196 ret = l->accept(l, cfd, &addr);
1197 if (unlikely(ret < 0)) {
1198 /* critical error encountered, generally a resource shortage */
Willy Tarreau7999ddb2010-06-04 20:46:13 +02001199 if (p) {
1200 EV_FD_CLR(fd, DIR_RD);
1201 p->state = PR_STIDLE;
1202 }
Willy Tarreau24dcaf32010-06-05 10:49:41 +02001203 actconn--;
1204 l->nbconn--;
Willy Tarreaueb472682010-05-28 18:46:57 +02001205 goto out_close;
1206 }
1207 else if (unlikely(ret == 0)) {
1208 /* ignore this connection */
Willy Tarreau24dcaf32010-06-05 10:49:41 +02001209 actconn--;
1210 l->nbconn--;
Willy Tarreaueb472682010-05-28 18:46:57 +02001211 close(cfd);
1212 continue;
1213 }
1214
Willy Tarreaueb472682010-05-28 18:46:57 +02001215 if (l->nbconn >= l->maxconn) {
1216 EV_FD_CLR(l->fd, DIR_RD);
1217 l->state = LI_FULL;
1218 }
Willy Tarreaueb472682010-05-28 18:46:57 +02001219 } /* end of while (p->feconn < p->maxconn) */
1220 return 0;
1221
1222 /* Error unrolling */
1223 out_close:
1224 close(cfd);
1225 return 0;
1226}
1227
Willy Tarreaua8f55d52010-05-31 17:44:19 +02001228/* Prepare a stream interface to be used in socket mode. */
1229void stream_sock_prepare_interface(struct stream_interface *si)
1230{
1231 si->update = stream_sock_data_finish;
1232 si->shutr = stream_sock_shutr;
1233 si->shutw = stream_sock_shutw;
1234 si->chk_rcv = stream_sock_chk_rcv;
1235 si->chk_snd = stream_sock_chk_snd;
1236 si->iohandler = NULL;
1237}
1238
Willy Tarreaubaaee002006-06-26 02:48:02 +02001239
1240/*
1241 * Local variables:
1242 * c-indent-level: 8
1243 * c-basic-offset: 8
1244 * End:
1245 */