blob: 08e0b3198b399f2adf978491e3ff3c545ac3cce0 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreaub277d6e2012-05-11 16:59:14 +02002 * Functions used to send/receive data using SOCK_STREAM sockets.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003 *
Willy Tarreaub277d6e2012-05-11 16:59:14 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreau6b4aad42009-01-18 21:59:13 +010013#define _GNU_SOURCE
Willy Tarreaubaaee002006-06-26 02:48:02 +020014#include <errno.h>
15#include <fcntl.h>
16#include <stdio.h>
17#include <stdlib.h>
18
19#include <sys/socket.h>
20#include <sys/stat.h>
21#include <sys/types.h>
22
Dmitry Sivachenkocaf58982009-08-24 15:11:06 +040023#include <netinet/tcp.h>
24
Willy Tarreau2dd0d472006-06-29 17:53:05 +020025#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020026#include <common/config.h>
Willy Tarreaud6f087e2008-01-18 17:20:13 +010027#include <common/debug.h>
Willy Tarreau83749182007-04-15 20:56:27 +020028#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020029#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020030#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020031
Willy Tarreau2d212792008-08-27 21:41:35 +020032#include <proto/buffers.h>
Willy Tarreau8b117082012-08-06 15:06:49 +020033#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034#include <proto/fd.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020035#include <proto/freq_ctr.h>
36#include <proto/log.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010037#include <proto/pipe.h>
Willy Tarreaufe598a72010-09-21 21:48:23 +020038#include <proto/protocols.h>
Willy Tarreauc63190d2012-05-11 14:23:52 +020039#include <proto/sock_raw.h>
Willy Tarreau73b013b2012-05-21 16:31:45 +020040#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020041#include <proto/task.h>
42
Willy Tarreau5bd8c372009-01-19 00:32:22 +010043#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044
Willy Tarreaub277d6e2012-05-11 16:59:14 +020045/* main event functions used to move data between sockets and buffers */
Willy Tarreau239d7182012-07-23 18:53:03 +020046static int sock_raw_read(struct connection *conn);
47static int sock_raw_write(struct connection *conn);
Willy Tarreaub277d6e2012-05-11 16:59:14 +020048static void sock_raw_data_finish(struct stream_interface *si);
49static void sock_raw_shutr(struct stream_interface *si);
50static void sock_raw_shutw(struct stream_interface *si);
Willy Tarreau3d8903f2012-08-06 17:00:18 +020051static void sock_raw_read0(struct stream_interface *si);
Willy Tarreaub277d6e2012-05-11 16:59:14 +020052static void sock_raw_chk_rcv(struct stream_interface *si);
53static void sock_raw_chk_snd(struct stream_interface *si);
54
55
Willy Tarreau6b4aad42009-01-18 21:59:13 +010056#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau43d8fb22011-08-22 17:12:02 +020057#include <common/splice.h>
Willy Tarreau5bd8c372009-01-19 00:32:22 +010058
59/* A pipe contains 16 segments max, and it's common to see segments of 1448 bytes
60 * because of timestamps. Use this as a hint for not looping on splice().
61 */
62#define SPLICE_FULL_HINT 16*1448
63
Willy Tarreaua9de3332009-11-28 07:47:10 +010064/* how many data we attempt to splice at once when the buffer is configured for
65 * infinite forwarding */
66#define MAX_SPLICE_AT_ONCE (1<<30)
67
Willy Tarreau5bd8c372009-01-19 00:32:22 +010068/* Returns :
69 * -1 if splice is not possible or not possible anymore and we must switch to
70 * user-land copy (eg: to_forward reached)
71 * 0 when we know that polling is required to get more data (EAGAIN)
72 * 1 for all other cases (we can safely try again, or if an activity has been
73 * detected (DATA/NULL/ERR))
74 * Sets :
75 * BF_READ_NULL
76 * BF_READ_PARTIAL
77 * BF_WRITE_PARTIAL (during copy)
Willy Tarreauba0b63d2009-09-20 08:09:44 +020078 * BF_OUT_EMPTY (during copy)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010079 * SI_FL_ERR
80 * SI_FL_WAIT_ROOM
81 * (SI_FL_WAIT_RECV)
Willy Tarreau3eba98a2009-01-25 13:56:13 +010082 *
83 * This function automatically allocates a pipe from the pipe pool. It also
84 * carefully ensures to clear b->pipe whenever it leaves the pipe empty.
Willy Tarreau5bd8c372009-01-19 00:32:22 +010085 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +020086static int sock_raw_splice_in(struct buffer *b, struct stream_interface *si)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010087{
Willy Tarreau82a04562011-12-11 22:37:06 +010088 static int splice_detects_close;
Willy Tarreaufb7508a2012-05-21 16:47:54 +020089 int fd = si_fd(si);
Willy Tarreau31971e52009-09-20 12:07:52 +020090 int ret;
91 unsigned long max;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010092 int retval = 1;
93
94 if (!b->to_forward)
95 return -1;
96
97 if (!(b->flags & BF_KERN_SPLICING))
98 return -1;
99
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100100 if (buffer_not_empty(b)) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100101 /* We're embarrassed, there are already data pending in
102 * the buffer and we don't want to have them at two
103 * locations at a time. Let's indicate we need some
104 * place and ask the consumer to hurry.
105 */
106 si->flags |= SI_FL_WAIT_ROOM;
107 EV_FD_CLR(fd, DIR_RD);
108 b->rex = TICK_ETERNITY;
Willy Tarreau73b013b2012-05-21 16:31:45 +0200109 si_chk_snd(b->cons);
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100110 return 1;
111 }
112
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100113 if (unlikely(b->pipe == NULL)) {
114 if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100115 b->flags &= ~BF_KERN_SPLICING;
116 return -1;
117 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100118 }
119
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100120 /* At this point, b->pipe is valid */
121
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100122 while (1) {
Willy Tarreaua9de3332009-11-28 07:47:10 +0100123 if (b->to_forward == BUF_INFINITE_FORWARD)
124 max = MAX_SPLICE_AT_ONCE;
125 else
126 max = b->to_forward;
127
Willy Tarreau31971e52009-09-20 12:07:52 +0200128 if (!max) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100129 /* It looks like the buffer + the pipe already contain
130 * the maximum amount of data to be transferred. Try to
131 * send those data immediately on the other side if it
132 * is currently waiting.
133 */
134 retval = -1; /* end of forwarding */
135 break;
136 }
137
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100138 ret = splice(fd, NULL, b->pipe->prod, NULL, max,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100139 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
140
141 if (ret <= 0) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100142 if (ret == 0) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100143 /* connection closed. This is only detected by
Willy Tarreau82a04562011-12-11 22:37:06 +0100144 * recent kernels (>= 2.6.27.13). If we notice
145 * it works, we store the info for later use.
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100146 */
Willy Tarreau82a04562011-12-11 22:37:06 +0100147 splice_detects_close = 1;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100148 b->flags |= BF_READ_NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100149 retval = 1; /* no need for further polling */
150 break;
151 }
152
153 if (errno == EAGAIN) {
154 /* there are two reasons for EAGAIN :
155 * - nothing in the socket buffer (standard)
156 * - pipe is full
Willy Tarreau98b306b2009-01-25 11:11:32 +0100157 * - the connection is closed (kernel < 2.6.27.13)
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100158 * Since we don't know if pipe is full, we'll
159 * stop if the pipe is not empty. Anyway, we
160 * will almost always fill/empty the pipe.
161 */
162
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100163 if (b->pipe->data) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100164 si->flags |= SI_FL_WAIT_ROOM;
165 retval = 1;
166 break;
167 }
168
Willy Tarreau82a04562011-12-11 22:37:06 +0100169 /* We don't know if the connection was closed,
170 * but if we know splice detects close, then we
171 * know it for sure.
Willy Tarreau98b306b2009-01-25 11:11:32 +0100172 * But if we're called upon POLLIN with an empty
Willy Tarreau82a04562011-12-11 22:37:06 +0100173 * pipe and get EAGAIN, it is suspect enough to
Willy Tarreau98b306b2009-01-25 11:11:32 +0100174 * try to fall back to the normal recv scheme
175 * which will be able to deal with the situation.
176 */
Willy Tarreau82a04562011-12-11 22:37:06 +0100177 if (splice_detects_close)
178 retval = 0; /* we know for sure that it's EAGAIN */
179 else
180 retval = -1;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100181 break;
182 }
Willy Tarreaudc340a92009-06-28 23:10:19 +0200183
Willy Tarreaua9de3332009-11-28 07:47:10 +0100184 if (errno == ENOSYS || errno == EINVAL) {
Willy Tarreaudc340a92009-06-28 23:10:19 +0200185 /* splice not supported on this end, disable it */
186 b->flags &= ~BF_KERN_SPLICING;
187 si->flags &= ~SI_FL_CAP_SPLICE;
188 put_pipe(b->pipe);
189 b->pipe = NULL;
190 return -1;
191 }
192
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100193 /* here we have another error */
194 si->flags |= SI_FL_ERR;
195 retval = 1;
196 break;
197 } /* ret <= 0 */
198
Willy Tarreau31971e52009-09-20 12:07:52 +0200199 if (b->to_forward != BUF_INFINITE_FORWARD)
200 b->to_forward -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100201 b->total += ret;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100202 b->pipe->data += ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100203 b->flags |= BF_READ_PARTIAL;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200204 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100205
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100206 if (b->pipe->data >= SPLICE_FULL_HINT ||
207 ret >= global.tune.recv_enough) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100208 /* We've read enough of it for this time. */
209 retval = 1;
210 break;
211 }
212 } /* while */
213
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100214 if (unlikely(!b->pipe->data)) {
215 put_pipe(b->pipe);
216 b->pipe = NULL;
217 }
218
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100219 return retval;
220}
221
Willy Tarreau6b4aad42009-01-18 21:59:13 +0100222#endif /* CONFIG_HAP_LINUX_SPLICE */
223
224
Willy Tarreaubaaee002006-06-26 02:48:02 +0200225/*
Willy Tarreaud7971282006-07-29 18:36:34 +0200226 * this function is called on a read event from a stream socket.
Willy Tarreau83749182007-04-15 20:56:27 +0200227 * It returns 0 if we have a high confidence that we will not be
228 * able to read more data without polling first. Returns non-zero
229 * otherwise.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200230 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200231static int sock_raw_read(struct connection *conn)
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200232{
Willy Tarreau239d7182012-07-23 18:53:03 +0200233 int fd = conn->t.sock.fd;
Willy Tarreau80184712012-07-06 14:54:49 +0200234 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
Willy Tarreau48adac52008-08-30 04:58:38 +0200235 struct buffer *b = si->ib;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200236 int ret, max, retval, cur_read;
Willy Tarreaub8949f12007-03-23 22:39:59 +0100237 int read_poll = MAX_READ_POLL_LOOPS;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200238
239#ifdef DEBUG_FULL
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200240 fprintf(stderr,"sock_raw_read : fd=%d, ev=0x%02x, owner=%p\n", fd, fdtab[fd].ev, fdtab[fd].owner);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200241#endif
242
Willy Tarreau83749182007-04-15 20:56:27 +0200243 retval = 1;
244
Willy Tarreau71543652009-07-14 19:55:05 +0200245 /* stop immediately on errors. Note that we DON'T want to stop on
246 * POLL_ERR, as the poller might report a write error while there
247 * are still data available in the recv buffer. This typically
248 * happens when we send too large a request to a backend server
249 * which rejects it before reading it all.
250 */
Willy Tarreau80184712012-07-06 14:54:49 +0200251 if (conn->flags & CO_FL_ERROR)
Willy Tarreau6996e152007-04-30 14:37:43 +0200252 goto out_error;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100253
254 /* stop here if we reached the end of data */
255 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP)
256 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200257
Willy Tarreaud06e7112009-03-29 10:18:41 +0200258 /* maybe we were called immediately after an asynchronous shutr */
259 if (b->flags & BF_SHUTR)
260 goto out_wakeup;
261
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100262#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau14acc702011-05-11 20:47:24 +0200263 if (b->to_forward >= MIN_SPLICE_FORWARD && b->flags & BF_KERN_SPLICING) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100264
265 /* Under Linux, if FD_POLL_HUP is set, we have reached the end.
266 * Since older splice() implementations were buggy and returned
267 * EAGAIN on end of read, let's bypass the call to splice() now.
268 */
269 if (fdtab[fd].ev & FD_POLL_HUP)
270 goto out_shutdown_r;
271
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200272 retval = sock_raw_splice_in(b, si);
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100273
274 if (retval >= 0) {
275 if (si->flags & SI_FL_ERR)
276 goto out_error;
277 if (b->flags & BF_READ_NULL)
278 goto out_shutdown_r;
279 goto out_wakeup;
280 }
281 /* splice not possible (anymore), let's go on on standard copy */
282 }
283#endif
Willy Tarreau8a7af602008-05-03 23:07:14 +0200284 cur_read = 0;
Willy Tarreau6996e152007-04-30 14:37:43 +0200285 while (1) {
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200286 max = bi_avail(b);
Willy Tarreau864e8252009-12-28 17:36:37 +0100287
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200288 if (!max) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100289 b->flags |= BF_FULL;
290 si->flags |= SI_FL_WAIT_ROOM;
291 break;
292 }
293
Willy Tarreau6996e152007-04-30 14:37:43 +0200294 /*
295 * 1. compute the maximum block size we can read at once.
296 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100297 if (buffer_empty(b)) {
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100298 /* let's realign the buffer to optimize I/O */
Willy Tarreaua458b672012-03-05 11:17:50 +0100299 b->p = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200300 }
Willy Tarreau89fa7062012-03-02 16:13:16 +0100301 else if (b->data + b->o < b->p &&
302 b->p + b->i < b->data + b->size) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100303 /* remaining space wraps at the end, with a moving limit */
Willy Tarreau363a5bb2012-03-02 20:14:45 +0100304 if (max > b->data + b->size - (b->p + b->i))
305 max = b->data + b->size - (b->p + b->i);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100306 }
Willy Tarreau864e8252009-12-28 17:36:37 +0100307 /* else max is already OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200308
Willy Tarreau6996e152007-04-30 14:37:43 +0200309 /*
310 * 2. read the largest possible block
311 */
Willy Tarreaucc5cfcb2012-05-04 21:35:27 +0200312 ret = recv(fd, bi_end(b), max, 0);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200313
Willy Tarreau83749182007-04-15 20:56:27 +0200314 if (ret > 0) {
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100315 b->i += ret;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200316 cur_read += ret;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100317
Willy Tarreau2e046c62012-03-01 16:08:30 +0100318 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreau31971e52009-09-20 12:07:52 +0200319 if (b->to_forward && !(b->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
320 unsigned long fwd = ret;
321 if (b->to_forward != BUF_INFINITE_FORWARD) {
322 if (fwd > b->to_forward)
323 fwd = b->to_forward;
324 b->to_forward -= fwd;
325 }
Willy Tarreau328582c2012-05-05 23:32:27 +0200326 b_adv(b, fwd);
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100327 }
Willy Tarreauf890dc92008-12-13 21:12:26 +0100328
Willy Tarreau80184712012-07-06 14:54:49 +0200329 if (conn->flags & CO_FL_WAIT_L4_CONN) {
330 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau8ae52cb2012-05-20 10:38:46 +0200331 si->exp = TICK_ETERNITY;
332 }
Willy Tarreaub38903c2008-11-23 21:33:29 +0100333
Willy Tarreau3da77c52008-08-29 09:58:42 +0200334 b->flags |= BF_READ_PARTIAL;
Willy Tarreau83749182007-04-15 20:56:27 +0200335 b->total += ret;
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100336
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200337 if (bi_full(b)) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200338 /* The buffer is now full, there's no point in going through
339 * the loop again.
340 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100341 if (!(b->flags & BF_STREAMER_FAST) && (cur_read == buffer_len(b))) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200342 b->xfer_small = 0;
343 b->xfer_large++;
344 if (b->xfer_large >= 3) {
345 /* we call this buffer a fast streamer if it manages
346 * to be filled in one call 3 consecutive times.
347 */
348 b->flags |= (BF_STREAMER | BF_STREAMER_FAST);
349 //fputc('+', stderr);
350 }
351 }
352 else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200353 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200354 b->xfer_large = 0;
355 b->xfer_small++;
356 if (b->xfer_small >= 2) {
357 /* if the buffer has been at least half full twice,
358 * we receive faster than we send, so at least it
359 * is not a "fast streamer".
360 */
361 b->flags &= ~BF_STREAMER_FAST;
362 //fputc('-', stderr);
363 }
364 }
365 else {
366 b->xfer_small = 0;
367 b->xfer_large = 0;
368 }
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100369
370 b->flags |= BF_FULL;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100371 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100372 break;
Willy Tarreau6996e152007-04-30 14:37:43 +0200373 }
374
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200375 /* if too many bytes were missing from last read, it means that
376 * it's pointless trying to read again because the system does
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100377 * not have them in buffers. BTW, if FD_POLL_HUP was present,
378 * it means that we have reached the end and that the connection
379 * is closed.
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200380 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100381 if (ret < max) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200382 if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200383 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200384 b->xfer_large = 0;
385 b->xfer_small++;
386 if (b->xfer_small >= 3) {
387 /* we have read less than half of the buffer in
388 * one pass, and this happened at least 3 times.
389 * This is definitely not a streamer.
390 */
391 b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST);
392 //fputc('!', stderr);
393 }
394 }
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200395 /* unfortunately, on level-triggered events, POLL_HUP
396 * is generally delivered AFTER the system buffer is
397 * empty, so this one might never match.
398 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100399 if (fdtab[fd].ev & FD_POLL_HUP)
400 goto out_shutdown_r;
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200401
402 /* if a streamer has read few data, it may be because we
403 * have exhausted system buffers. It's not worth trying
404 * again.
405 */
406 if (b->flags & BF_STREAMER)
407 break;
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200408
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100409 /* generally if we read something smaller than 1 or 2 MSS,
410 * it means that either we have exhausted the system's
411 * buffers (streamer or question-response protocol) or
412 * that the connection will be closed. Streamers are
413 * easily detected so we return early. For other cases,
414 * it's still better to perform a last read to be sure,
415 * because it may save one complete poll/read/wakeup cycle
416 * in case of shutdown.
417 */
418 if (ret < MIN_RET_FOR_READ_LOOP && b->flags & BF_STREAMER)
419 break;
420
421 /* if we read a large block smaller than what we requested,
422 * it's almost certain we'll never get anything more.
423 */
424 if (ret >= global.tune.recv_enough)
425 break;
426 }
Willy Tarreau83749182007-04-15 20:56:27 +0200427
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100428 if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200429 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200430 }
431 else if (ret == 0) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200432 /* connection closed */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100433 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200434 }
Willy Tarreau9f195292007-04-15 21:26:58 +0200435 else if (errno == EAGAIN) {
436 /* Ignore EAGAIN but inform the poller that there is
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100437 * nothing to read left if we did not read much, ie
438 * less than what we were still expecting to read.
439 * But we may have done some work justifying to notify
440 * the task.
Willy Tarreau9f195292007-04-15 21:26:58 +0200441 */
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100442 if (cur_read < MIN_RET_FOR_READ_LOOP)
443 retval = 0;
Willy Tarreau83749182007-04-15 20:56:27 +0200444 break;
445 }
446 else {
Willy Tarreau6996e152007-04-30 14:37:43 +0200447 goto out_error;
Willy Tarreau83749182007-04-15 20:56:27 +0200448 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200449 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200450
Willy Tarreau6996e152007-04-30 14:37:43 +0200451 out_wakeup:
Willy Tarreau83749182007-04-15 20:56:27 +0200452 return retval;
Willy Tarreau6996e152007-04-30 14:37:43 +0200453
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100454 out_shutdown_r:
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200455 /* we received a shutdown */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100456 fdtab[fd].ev &= ~FD_POLL_HUP;
457 b->flags |= BF_READ_NULL;
Willy Tarreau520d95e2009-09-19 21:04:57 +0200458 if (b->flags & BF_AUTO_CLOSE)
Willy Tarreau418fd472009-09-06 21:37:23 +0200459 buffer_shutw_now(b);
Willy Tarreau3d8903f2012-08-06 17:00:18 +0200460 sock_raw_read0(si);
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200461 goto out_wakeup;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100462
Willy Tarreau6996e152007-04-30 14:37:43 +0200463 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100464 /* Read error on the file descriptor. We mark the FD as STERROR so
465 * that we don't use it anymore. The error is reported to the stream
466 * interface which will take proper action. We must not perturbate the
467 * buffer because the stream interface wants to ensure transparent
468 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200469 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100470
Willy Tarreau80184712012-07-06 14:54:49 +0200471 conn->flags |= CO_FL_ERROR;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100472 EV_FD_REM(fd);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100473 retval = 1;
474 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200475}
476
477
478/*
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100479 * This function is called to send buffer data to a stream socket.
480 * It returns -1 in case of unrecoverable error, 0 if the caller needs to poll
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100481 * before calling it again, otherwise 1. If a pipe was associated with the
482 * buffer and it empties it, it releases it as well.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200483 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200484static int sock_raw_write_loop(struct stream_interface *si, struct buffer *b)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100485{
Willy Tarreau83749182007-04-15 20:56:27 +0200486 int write_poll = MAX_WRITE_POLL_LOOPS;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100487 int retval = 1;
488 int ret, max;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200489
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100490#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100491 while (b->pipe) {
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200492 ret = splice(b->pipe->cons, NULL, si_fd(si), NULL, b->pipe->data,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100493 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
494 if (ret <= 0) {
495 if (ret == 0 || errno == EAGAIN) {
496 retval = 0;
497 return retval;
498 }
499 /* here we have another error */
500 retval = -1;
501 return retval;
502 }
503
504 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100505 b->pipe->data -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100506
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100507 if (!b->pipe->data) {
508 put_pipe(b->pipe);
509 b->pipe = NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100510 break;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100511 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100512
513 if (--write_poll <= 0)
514 return retval;
Willy Tarreaueb9fd512011-12-11 22:11:47 +0100515
516 /* The only reason we did not empty the pipe is that the output
517 * buffer is full.
518 */
519 return 0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100520 }
521
522 /* At this point, the pipe is empty, but we may still have data pending
523 * in the normal buffer.
524 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100525#endif
Willy Tarreau2e046c62012-03-01 16:08:30 +0100526 if (!b->o) {
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200527 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100528 return retval;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200529 }
Willy Tarreau83749182007-04-15 20:56:27 +0200530
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100531 /* when we're in this loop, we already know that there is no spliced
532 * data left, and that there are sendable buffered data.
533 */
Willy Tarreau6996e152007-04-30 14:37:43 +0200534 while (1) {
Willy Tarreau89fa7062012-03-02 16:13:16 +0100535 max = b->o;
Willy Tarreau83749182007-04-15 20:56:27 +0200536
Willy Tarreau89fa7062012-03-02 16:13:16 +0100537 /* outgoing data may wrap at the end */
538 if (b->data + max > b->p)
539 max = b->data + max - b->p;
Willy Tarreauf890dc92008-12-13 21:12:26 +0100540
Willy Tarreau6db06d32009-08-19 11:14:11 +0200541 /* check if we want to inform the kernel that we're interested in
542 * sending more data after this call. We want this if :
543 * - we're about to close after this last send and want to merge
544 * the ongoing FIN with the last segment.
545 * - we know we can't send everything at once and must get back
546 * here because of unaligned data
Willy Tarreaud38b53b2010-01-03 11:18:34 +0100547 * - there is still a finite amount of data to forward
Willy Tarreau6db06d32009-08-19 11:14:11 +0200548 * The test is arranged so that the most common case does only 2
549 * tests.
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200550 */
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200551
Willy Tarreauface8392010-01-03 11:37:54 +0100552 if (MSG_NOSIGNAL && MSG_MORE) {
Willy Tarreau6db06d32009-08-19 11:14:11 +0200553 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
554
Willy Tarreau96e31212011-05-30 18:10:30 +0200555 if ((!(b->flags & BF_NEVER_WAIT) &&
556 ((b->to_forward && b->to_forward != BUF_INFINITE_FORWARD) ||
557 (b->flags & BF_EXPECT_MORE))) ||
Willy Tarreau2e046c62012-03-01 16:08:30 +0100558 ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == BF_SHUTW_NOW && (max == b->o)) ||
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100559 (max != b->o)) {
Willy Tarreauface8392010-01-03 11:37:54 +0100560 send_flag |= MSG_MORE;
561 }
Willy Tarreau6db06d32009-08-19 11:14:11 +0200562
Willy Tarreau2be39392010-01-03 17:24:51 +0100563 /* this flag has precedence over the rest */
564 if (b->flags & BF_SEND_DONTWAIT)
565 send_flag &= ~MSG_MORE;
566
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200567 ret = send(si_fd(si), bo_ptr(b), max, send_flag);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200568 } else {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200569 int skerr;
570 socklen_t lskerr = sizeof(skerr);
571
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200572 ret = getsockopt(si_fd(si), SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
Willy Tarreauc6423482006-10-15 14:59:03 +0200573 if (ret == -1 || skerr)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200574 ret = -1;
575 else
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200576 ret = send(si_fd(si), bo_ptr(b), max, MSG_DONTWAIT);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200577 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200578
579 if (ret > 0) {
Willy Tarreau505e34a2012-07-06 10:17:53 +0200580 if (si->conn.flags & CO_FL_WAIT_L4_CONN) {
581 si->conn.flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau8ae52cb2012-05-20 10:38:46 +0200582 si->exp = TICK_ETERNITY;
583 }
Willy Tarreaub38903c2008-11-23 21:33:29 +0100584
Willy Tarreau3da77c52008-08-29 09:58:42 +0200585 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreaue393fe22008-08-16 22:18:07 +0200586
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100587 b->o -= ret;
588 if (likely(!buffer_len(b)))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100589 /* optimize data alignment in the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +0100590 b->p = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200591
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200592 if (likely(!bi_full(b)))
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100593 b->flags &= ~BF_FULL;
594
Willy Tarreau2e046c62012-03-01 16:08:30 +0100595 if (!b->o) {
Willy Tarreauf17810e2012-03-09 18:10:44 +0100596 /* Always clear both flags once everything has been sent, they're one-shot */
597 b->flags &= ~(BF_EXPECT_MORE | BF_SEND_DONTWAIT);
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200598 if (likely(!b->pipe))
599 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100600 break;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200601 }
Willy Tarreau83749182007-04-15 20:56:27 +0200602
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200603 /* if the system buffer is full, don't insist */
604 if (ret < max)
605 break;
606
Willy Tarreau6996e152007-04-30 14:37:43 +0200607 if (--write_poll <= 0)
608 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200609 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200610 else if (ret == 0 || errno == EAGAIN) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100611 /* nothing written, we need to poll for write first */
Willy Tarreau83749182007-04-15 20:56:27 +0200612 retval = 0;
613 break;
614 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200615 else {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100616 /* bad, we got an error */
617 retval = -1;
618 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200619 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200620 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200621
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100622 return retval;
623}
Willy Tarreau6996e152007-04-30 14:37:43 +0200624
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100625
626/*
627 * This function is called on a write event from a stream socket.
628 * It returns 0 if the caller needs to poll before calling it again, otherwise
629 * non-zero.
630 */
Willy Tarreau239d7182012-07-23 18:53:03 +0200631static int sock_raw_write(struct connection *conn)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100632{
Willy Tarreau239d7182012-07-23 18:53:03 +0200633 int fd = conn->t.sock.fd;
Willy Tarreau80184712012-07-06 14:54:49 +0200634 struct stream_interface *si = container_of(conn, struct stream_interface, conn);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100635 struct buffer *b = si->ob;
636 int retval = 1;
637
638#ifdef DEBUG_FULL
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200639 fprintf(stderr,"sock_raw_write : fd=%d, owner=%p\n", fd, fdtab[fd].owner);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100640#endif
641
Willy Tarreau80184712012-07-06 14:54:49 +0200642 if (conn->flags & CO_FL_ERROR)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100643 goto out_error;
644
Willy Tarreaud06e7112009-03-29 10:18:41 +0200645 /* we might have been called just after an asynchronous shutw */
646 if (b->flags & BF_SHUTW)
647 goto out_wakeup;
648
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200649 retval = sock_raw_write_loop(si, b);
650 if (retval < 0)
651 goto out_error;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100652
Willy Tarreaufd31e532012-07-23 18:24:25 +0200653 out_wakeup:
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100654 return retval;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100655
Willy Tarreau6996e152007-04-30 14:37:43 +0200656 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100657 /* Write error on the file descriptor. We mark the FD as STERROR so
658 * that we don't use it anymore. The error is reported to the stream
659 * interface which will take proper action. We must not perturbate the
660 * buffer because the stream interface wants to ensure transparent
661 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200662 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100663
Willy Tarreau80184712012-07-06 14:54:49 +0200664 conn->flags |= CO_FL_ERROR;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100665 EV_FD_REM(fd);
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200666 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200667}
668
Willy Tarreau48adac52008-08-30 04:58:38 +0200669/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200670 * This function performs a shutdown-write on a stream interface in a connected or
671 * init state (it does nothing for other states). It either shuts the write side
Willy Tarreau99126c32008-11-27 10:30:51 +0100672 * or closes the file descriptor and marks itself as closed. The buffer flags are
Willy Tarreau7340ca52010-01-16 10:03:45 +0100673 * updated to reflect the new state. It does also close everything is the SI was
674 * marked as being in error state.
Willy Tarreau48adac52008-08-30 04:58:38 +0200675 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200676static void sock_raw_shutw(struct stream_interface *si)
Willy Tarreau48adac52008-08-30 04:58:38 +0200677{
Willy Tarreau418fd472009-09-06 21:37:23 +0200678 si->ob->flags &= ~BF_SHUTW_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100679 if (si->ob->flags & BF_SHUTW)
680 return;
681 si->ob->flags |= BF_SHUTW;
682 si->ob->wex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100683 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau99126c32008-11-27 10:30:51 +0100684
Willy Tarreaub38903c2008-11-23 21:33:29 +0100685 switch (si->state) {
Willy Tarreaub38903c2008-11-23 21:33:29 +0100686 case SI_ST_EST:
Willy Tarreau720058c2009-07-14 19:21:50 +0200687 /* we have to shut before closing, otherwise some short messages
688 * may never leave the system, especially when there are remaining
689 * unread data in the socket input buffer, or when nolinger is set.
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100690 * However, if SI_FL_NOLINGER is explicitly set, we know there is
691 * no risk so we close both sides immediately.
Willy Tarreau720058c2009-07-14 19:21:50 +0200692 */
Willy Tarreau7340ca52010-01-16 10:03:45 +0100693 if (si->flags & SI_FL_ERR) {
694 /* quick close, the socket is already shut. Remove pending flags. */
695 si->flags &= ~SI_FL_NOLINGER;
Willy Tarreau7bb68ab2012-05-13 14:48:59 +0200696 }
697 else if (si->flags & SI_FL_NOLINGER) {
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100698 si->flags &= ~SI_FL_NOLINGER;
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200699 setsockopt(si_fd(si), SOL_SOCKET, SO_LINGER,
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100700 (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreau7bb68ab2012-05-13 14:48:59 +0200701 }
702 else if (!(si->flags & SI_FL_NOHALF)) {
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200703 EV_FD_CLR(si_fd(si), DIR_WR);
704 shutdown(si_fd(si), SHUT_WR);
Willy Tarreau720058c2009-07-14 19:21:50 +0200705
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100706 if (!(si->ib->flags & (BF_SHUTR|BF_DONT_READ)))
707 return;
708 }
Willy Tarreau5d707e12009-06-28 11:09:07 +0200709
Willy Tarreaub38903c2008-11-23 21:33:29 +0100710 /* fall through */
711 case SI_ST_CON:
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100712 /* we may have to close a pending connection, and mark the
713 * response buffer as shutr
714 */
Willy Tarreau8b117082012-08-06 15:06:49 +0200715 conn_data_close(&si->conn);
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200716 fd_delete(si_fd(si));
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100717 /* fall through */
718 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100719 case SI_ST_QUE:
720 case SI_ST_TAR:
Willy Tarreau7f006512008-12-07 14:04:04 +0100721 si->state = SI_ST_DIS;
Willy Tarreauad4cd582012-03-10 13:42:32 +0100722
723 if (si->release)
724 si->release(si);
Willy Tarreau7f006512008-12-07 14:04:04 +0100725 default:
Willy Tarreaud06e7112009-03-29 10:18:41 +0200726 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100727 si->ib->flags |= BF_SHUTR;
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100728 si->ib->rex = TICK_ETERNITY;
Willy Tarreau127334e2009-03-28 10:47:26 +0100729 si->exp = TICK_ETERNITY;
Willy Tarreau48adac52008-08-30 04:58:38 +0200730 }
Willy Tarreau48adac52008-08-30 04:58:38 +0200731}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200732
Willy Tarreau2d212792008-08-27 21:41:35 +0200733/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200734 * This function performs a shutdown-read on a stream interface in a connected or
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100735 * init state (it does nothing for other states). It either shuts the read side
Willy Tarreau99126c32008-11-27 10:30:51 +0100736 * or closes the file descriptor and marks itself as closed. The buffer flags are
Willy Tarreau7bb68ab2012-05-13 14:48:59 +0200737 * updated to reflect the new state. If the stream interface has SI_FL_NOHALF,
738 * we also forward the close to the write side.
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200739 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200740static void sock_raw_shutr(struct stream_interface *si)
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200741{
Willy Tarreau418fd472009-09-06 21:37:23 +0200742 si->ib->flags &= ~BF_SHUTR_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100743 if (si->ib->flags & BF_SHUTR)
744 return;
745 si->ib->flags |= BF_SHUTR;
746 si->ib->rex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100747 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100748
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100749 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100750 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200751
Willy Tarreaucff64112008-11-03 06:26:53 +0100752 if (si->ob->flags & BF_SHUTW) {
Willy Tarreau8b117082012-08-06 15:06:49 +0200753 conn_data_close(&si->conn);
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200754 fd_delete(si_fd(si));
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100755 si->state = SI_ST_DIS;
Willy Tarreau127334e2009-03-28 10:47:26 +0100756 si->exp = TICK_ETERNITY;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200757
758 if (si->release)
759 si->release(si);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100760 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200761 }
Willy Tarreau7bb68ab2012-05-13 14:48:59 +0200762 else if (si->flags & SI_FL_NOHALF) {
763 /* we want to immediately forward this close to the write side */
764 return sock_raw_shutw(si);
765 }
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200766 EV_FD_CLR(si_fd(si), DIR_RD);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100767 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200768}
769
770/*
Willy Tarreau3d8903f2012-08-06 17:00:18 +0200771 * This function propagates a null read received on a connection. It updates
772 * the stream interface. If the stream interface has SI_FL_NOHALF, we also
773 * forward the close to the write side.
774 */
775static void sock_raw_read0(struct stream_interface *si)
776{
777 si->ib->flags &= ~BF_SHUTR_NOW;
778 if (si->ib->flags & BF_SHUTR)
779 return;
780 si->ib->flags |= BF_SHUTR;
781 si->ib->rex = TICK_ETERNITY;
782 si->flags &= ~SI_FL_WAIT_ROOM;
783
784 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
785 return;
786
787 if (si->ob->flags & BF_SHUTW)
788 goto do_close;
789
790 if (si->flags & SI_FL_NOHALF) {
791 /* we have to shut before closing, otherwise some short messages
792 * may never leave the system, especially when there are remaining
793 * unread data in the socket input buffer, or when nolinger is set.
794 * However, if SI_FL_NOLINGER is explicitly set, we know there is
795 * no risk so we close both sides immediately.
796 */
797 if (si->flags & SI_FL_NOLINGER) {
798 si->flags &= ~SI_FL_NOLINGER;
799 setsockopt(si_fd(si), SOL_SOCKET, SO_LINGER,
800 (struct linger *) &nolinger, sizeof(struct linger));
801 }
802 goto do_close;
803 }
804
805 /* otherwise that's just a normal read shutdown */
806 EV_FD_CLR(si_fd(si), DIR_RD);
807 return;
808
809 do_close:
810 conn_data_close(&si->conn);
811 fd_delete(si_fd(si));
812 si->state = SI_ST_DIS;
813 si->exp = TICK_ETERNITY;
814 if (si->release)
815 si->release(si);
816 return;
817}
818
819/*
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200820 * Updates a connected sock_raw file descriptor status and timeouts
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200821 * according to the buffers' flags. It should only be called once after the
822 * buffer flags have settled down, and before they are cleared. It doesn't
823 * harm to call it as often as desired (it just slightly hurts performance).
824 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200825static void sock_raw_data_finish(struct stream_interface *si)
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200826{
Willy Tarreaub0253252008-11-30 21:37:12 +0100827 struct buffer *ib = si->ib;
828 struct buffer *ob = si->ob;
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200829 int fd = si_fd(si);
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200830
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100831 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 +0200832 now_ms, __FUNCTION__,
833 fd, fdtab[fd].owner,
834 ib, ob,
835 ib->rex, ob->wex,
836 ib->flags, ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100837 ib->i, ib->o, ob->i, ob->o, si->state);
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200838
839 /* Check if we need to close the read side */
840 if (!(ib->flags & BF_SHUTR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200841 /* Read not closed, update FD status and timeout for reads */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200842 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200843 /* stop reading */
Willy Tarreau11f49402010-11-11 23:08:17 +0100844 if (!(si->flags & SI_FL_WAIT_ROOM)) {
845 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
846 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau3788e4c2012-07-30 14:29:35 +0200847 EV_FD_CLR(fd, DIR_RD);
Willy Tarreau11f49402010-11-11 23:08:17 +0100848 ib->rex = TICK_ETERNITY;
849 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200850 }
851 else {
852 /* (re)start reading and update timeout. Note: we don't recompute the timeout
853 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200854 * update it if is was not yet set. The stream socket handler will already
855 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200856 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100857 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau3788e4c2012-07-30 14:29:35 +0200858 EV_FD_SET(fd, DIR_RD);
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200859 if (!(ib->flags & (BF_READ_NOEXP|BF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau2d212792008-08-27 21:41:35 +0200860 ib->rex = tick_add_ifset(now_ms, ib->rto);
861 }
862 }
863
864 /* Check if we need to close the write side */
865 if (!(ob->flags & BF_SHUTW)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200866 /* Write not closed, update FD status and timeout for writes */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200867 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200868 /* stop writing */
Willy Tarreau11f49402010-11-11 23:08:17 +0100869 if (!(si->flags & SI_FL_WAIT_DATA)) {
870 if ((ob->flags & (BF_FULL|BF_HIJACK|BF_SHUTW_NOW)) == 0)
871 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau3788e4c2012-07-30 14:29:35 +0200872 EV_FD_CLR(fd, DIR_WR);
Willy Tarreau11f49402010-11-11 23:08:17 +0100873 ob->wex = TICK_ETERNITY;
874 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200875 }
876 else {
877 /* (re)start writing and update timeout. Note: we don't recompute the timeout
878 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200879 * update it if is was not yet set. The stream socket handler will already
880 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200881 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100882 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau3788e4c2012-07-30 14:29:35 +0200883 EV_FD_SET(fd, DIR_WR);
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200884 if (!tick_isset(ob->wex)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200885 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200886 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200887 /* Note: depending on the protocol, we don't know if we're waiting
888 * for incoming data or not. So in order to prevent the socket from
889 * expiring read timeouts during writes, we refresh the read timeout,
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200890 * except if it was already infinite or if we have explicitly setup
Jamie Gloudon801a0a32012-08-25 00:18:33 -0400891 * independent streams.
Willy Tarreau2d212792008-08-27 21:41:35 +0200892 */
Willy Tarreaud06e7112009-03-29 10:18:41 +0200893 ib->rex = tick_add_ifset(now_ms, ib->rto);
Willy Tarreau2d212792008-08-27 21:41:35 +0200894 }
895 }
896 }
897 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200898}
899
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100900/* This function is used for inter-stream-interface calls. It is called by the
901 * consumer to inform the producer side that it may be interested in checking
902 * for free space in the buffer. Note that it intentionally does not update
903 * timeouts, so that we can still check them later at wake-up.
904 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200905static void sock_raw_chk_rcv(struct stream_interface *si)
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100906{
907 struct buffer *ib = si->ib;
908
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100909 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 +0100910 now_ms, __FUNCTION__,
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200911 si_fd(si), fdtab[si_fd(si)].owner,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +0000912 ib, si->ob,
913 ib->rex, si->ob->wex,
914 ib->flags, si->ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100915 ib->i, ib->o, si->ob->i, si->ob->o, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100916
917 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
918 return;
919
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200920 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100921 /* stop reading */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200922 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100923 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau3788e4c2012-07-30 14:29:35 +0200924 EV_FD_CLR(si_fd(si), DIR_RD);
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100925 }
926 else {
927 /* (re)start reading */
928 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau3788e4c2012-07-30 14:29:35 +0200929 EV_FD_SET(si_fd(si), DIR_RD);
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100930 }
931}
932
933
934/* This function is used for inter-stream-interface calls. It is called by the
935 * producer to inform the consumer side that it may be interested in checking
936 * for data in the buffer. Note that it intentionally does not update timeouts,
937 * so that we can still check them later at wake-up.
938 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200939static void sock_raw_chk_snd(struct stream_interface *si)
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100940{
941 struct buffer *ob = si->ob;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100942 int retval;
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100943
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100944 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 +0100945 now_ms, __FUNCTION__,
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200946 si_fd(si), fdtab[si_fd(si)].owner,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +0000947 si->ib, ob,
948 si->ib->rex, ob->wex,
949 si->ib->flags, ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100950 si->ib->i, si->ib->o, ob->i, ob->o, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100951
952 if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW)))
953 return;
954
Willy Tarreaua190d592012-05-20 18:35:19 +0200955 if (unlikely(ob->flags & BF_OUT_EMPTY)) /* called with nothing to send ! */
Willy Tarreaueb9fd512011-12-11 22:11:47 +0100956 return;
957
958 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
959 (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200960 (fdtab[si_fd(si)].ev & FD_POLL_OUT))) /* we'll be called anyway */
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100961 return;
962
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200963 retval = sock_raw_write_loop(si, ob);
Willy Tarreauc54aef32009-07-27 20:08:06 +0200964 /* here, we have :
965 * retval < 0 if an error was encountered during write.
966 * retval = 0 if we can't write anymore without polling
967 * retval = 1 if we're invited to come back when desired
968 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100969 if (retval < 0) {
970 /* Write error on the file descriptor. We mark the FD as STERROR so
971 * that we don't use it anymore and we notify the task.
972 */
Willy Tarreau505e34a2012-07-06 10:17:53 +0200973 si->conn.flags |= CO_FL_ERROR;
Willy Tarreaufb7508a2012-05-21 16:47:54 +0200974 fdtab[si_fd(si)].ev &= ~FD_POLL_STICKY;
975 EV_FD_REM(si_fd(si));
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100976 si->flags |= SI_FL_ERR;
977 goto out_wakeup;
978 }
979
Willy Tarreauc54aef32009-07-27 20:08:06 +0200980 /* OK, so now we know that retval >= 0 means that some data might have
981 * been sent, and that we may have to poll first. We have to do that
982 * too if the buffer is not empty.
983 */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200984 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100985 /* the connection is established but we can't write. Either the
986 * buffer is empty, or we just refrain from sending because the
Willy Tarreau2e046c62012-03-01 16:08:30 +0100987 * ->o limit was reached. Maybe we just wrote the last
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100988 * chunk and need to close.
989 */
Willy Tarreau520d95e2009-09-19 21:04:57 +0200990 if (((ob->flags & (BF_SHUTW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTW_NOW)) ==
991 (BF_AUTO_CLOSE|BF_SHUTW_NOW)) &&
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100992 (si->state == SI_ST_EST)) {
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200993 sock_raw_shutw(si);
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100994 goto out_wakeup;
995 }
Willy Tarreaud06e7112009-03-29 10:18:41 +0200996
Willy Tarreau59454bf2009-09-20 11:13:40 +0200997 if ((ob->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100998 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100999 ob->wex = TICK_ETERNITY;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001000 }
1001 else {
Willy Tarreauc54aef32009-07-27 20:08:06 +02001002 /* Otherwise there are remaining data to be sent in the buffer,
1003 * which means we have to poll before doing so.
1004 */
Willy Tarreau3788e4c2012-07-30 14:29:35 +02001005 EV_FD_SET(si_fd(si), DIR_WR);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001006 si->flags &= ~SI_FL_WAIT_DATA;
1007 if (!tick_isset(ob->wex))
1008 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001009 }
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001010
Willy Tarreauc9619462009-03-09 22:40:57 +01001011 if (likely(ob->flags & BF_WRITE_ACTIVITY)) {
1012 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001013 if ((ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreauc9619462009-03-09 22:40:57 +01001014 ob->wex = tick_add_ifset(now_ms, ob->wto);
1015
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001016 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreauc9619462009-03-09 22:40:57 +01001017 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001018 * during writes, we refresh it. We only do this if the
Jamie Gloudon801a0a32012-08-25 00:18:33 -04001019 * interface is not configured for "independent streams",
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001020 * because for some applications it's better not to do this,
1021 * for instance when continuously exchanging small amounts
1022 * of data which can full the socket buffers long before a
1023 * write timeout is detected.
Willy Tarreauc9619462009-03-09 22:40:57 +01001024 */
1025 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
1026 }
1027 }
1028
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001029 /* in case of special condition (error, shutdown, end of write...), we
1030 * have to notify the task.
1031 */
1032 if (likely((ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001033 ((ob->flags & BF_OUT_EMPTY) && !ob->to_forward) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001034 si->state != SI_ST_EST)) {
1035 out_wakeup:
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001036 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
1037 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001038 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001039}
1040
Willy Tarreau5c979a92012-05-07 17:15:39 +02001041/* stream sock operations */
Willy Tarreaub277d6e2012-05-11 16:59:14 +02001042struct sock_ops sock_raw = {
1043 .update = sock_raw_data_finish,
1044 .shutr = sock_raw_shutr,
1045 .shutw = sock_raw_shutw,
1046 .chk_rcv = sock_raw_chk_rcv,
1047 .chk_snd = sock_raw_chk_snd,
1048 .read = sock_raw_read,
1049 .write = sock_raw_write,
Willy Tarreau24208272012-05-21 17:28:50 +02001050 .close = NULL,
Willy Tarreau5c979a92012-05-07 17:15:39 +02001051};
Willy Tarreaubaaee002006-06-26 02:48:02 +02001052
1053/*
1054 * Local variables:
1055 * c-indent-level: 8
1056 * c-basic-offset: 8
1057 * End:
1058 */