blob: 7e0d4c9a477b4d53fb5ee22c2983f170c68a55eb [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 Tarreaubaaee002006-06-26 02:48:02 +020033#include <proto/fd.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020034#include <proto/freq_ctr.h>
Willy Tarreaub22e55b2011-03-20 10:16:46 +010035#include <proto/frontend.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020036#include <proto/log.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010037#include <proto/pipe.h>
Willy Tarreaufe598a72010-09-21 21:48:23 +020038#include <proto/protocols.h>
Willy Tarreauc63190d2012-05-11 14:23:52 +020039#include <proto/sock_raw.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040#include <proto/task.h>
41
Willy Tarreau5bd8c372009-01-19 00:32:22 +010042#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043
Willy Tarreaub277d6e2012-05-11 16:59:14 +020044/* main event functions used to move data between sockets and buffers */
45static int sock_raw_read(int fd);
46static int sock_raw_write(int fd);
47static void sock_raw_data_finish(struct stream_interface *si);
48static void sock_raw_shutr(struct stream_interface *si);
49static void sock_raw_shutw(struct stream_interface *si);
50static void sock_raw_chk_rcv(struct stream_interface *si);
51static void sock_raw_chk_snd(struct stream_interface *si);
52
53
Willy Tarreau6b4aad42009-01-18 21:59:13 +010054#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau43d8fb22011-08-22 17:12:02 +020055#include <common/splice.h>
Willy Tarreau5bd8c372009-01-19 00:32:22 +010056
57/* A pipe contains 16 segments max, and it's common to see segments of 1448 bytes
58 * because of timestamps. Use this as a hint for not looping on splice().
59 */
60#define SPLICE_FULL_HINT 16*1448
61
Willy Tarreaua9de3332009-11-28 07:47:10 +010062/* how many data we attempt to splice at once when the buffer is configured for
63 * infinite forwarding */
64#define MAX_SPLICE_AT_ONCE (1<<30)
65
Willy Tarreau5bd8c372009-01-19 00:32:22 +010066/* Returns :
67 * -1 if splice is not possible or not possible anymore and we must switch to
68 * user-land copy (eg: to_forward reached)
69 * 0 when we know that polling is required to get more data (EAGAIN)
70 * 1 for all other cases (we can safely try again, or if an activity has been
71 * detected (DATA/NULL/ERR))
72 * Sets :
73 * BF_READ_NULL
74 * BF_READ_PARTIAL
75 * BF_WRITE_PARTIAL (during copy)
Willy Tarreauba0b63d2009-09-20 08:09:44 +020076 * BF_OUT_EMPTY (during copy)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010077 * SI_FL_ERR
78 * SI_FL_WAIT_ROOM
79 * (SI_FL_WAIT_RECV)
Willy Tarreau3eba98a2009-01-25 13:56:13 +010080 *
81 * This function automatically allocates a pipe from the pipe pool. It also
82 * carefully ensures to clear b->pipe whenever it leaves the pipe empty.
Willy Tarreau5bd8c372009-01-19 00:32:22 +010083 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +020084static int sock_raw_splice_in(struct buffer *b, struct stream_interface *si)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010085{
Willy Tarreau82a04562011-12-11 22:37:06 +010086 static int splice_detects_close;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010087 int fd = si->fd;
Willy Tarreau31971e52009-09-20 12:07:52 +020088 int ret;
89 unsigned long max;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010090 int retval = 1;
91
92 if (!b->to_forward)
93 return -1;
94
95 if (!(b->flags & BF_KERN_SPLICING))
96 return -1;
97
Willy Tarreau02d6cfc2012-03-01 18:19:58 +010098 if (buffer_not_empty(b)) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +010099 /* We're embarrassed, there are already data pending in
100 * the buffer and we don't want to have them at two
101 * locations at a time. Let's indicate we need some
102 * place and ask the consumer to hurry.
103 */
104 si->flags |= SI_FL_WAIT_ROOM;
105 EV_FD_CLR(fd, DIR_RD);
106 b->rex = TICK_ETERNITY;
Willy Tarreau060781f2012-05-07 16:50:03 +0200107 b->cons->sock.chk_snd(b->cons);
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100108 return 1;
109 }
110
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100111 if (unlikely(b->pipe == NULL)) {
112 if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100113 b->flags &= ~BF_KERN_SPLICING;
114 return -1;
115 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100116 }
117
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100118 /* At this point, b->pipe is valid */
119
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100120 while (1) {
Willy Tarreaua9de3332009-11-28 07:47:10 +0100121 if (b->to_forward == BUF_INFINITE_FORWARD)
122 max = MAX_SPLICE_AT_ONCE;
123 else
124 max = b->to_forward;
125
Willy Tarreau31971e52009-09-20 12:07:52 +0200126 if (!max) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100127 /* It looks like the buffer + the pipe already contain
128 * the maximum amount of data to be transferred. Try to
129 * send those data immediately on the other side if it
130 * is currently waiting.
131 */
132 retval = -1; /* end of forwarding */
133 break;
134 }
135
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100136 ret = splice(fd, NULL, b->pipe->prod, NULL, max,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100137 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
138
139 if (ret <= 0) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100140 if (ret == 0) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100141 /* connection closed. This is only detected by
Willy Tarreau82a04562011-12-11 22:37:06 +0100142 * recent kernels (>= 2.6.27.13). If we notice
143 * it works, we store the info for later use.
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100144 */
Willy Tarreau82a04562011-12-11 22:37:06 +0100145 splice_detects_close = 1;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100146 b->flags |= BF_READ_NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100147 retval = 1; /* no need for further polling */
148 break;
149 }
150
151 if (errno == EAGAIN) {
152 /* there are two reasons for EAGAIN :
153 * - nothing in the socket buffer (standard)
154 * - pipe is full
Willy Tarreau98b306b2009-01-25 11:11:32 +0100155 * - the connection is closed (kernel < 2.6.27.13)
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100156 * Since we don't know if pipe is full, we'll
157 * stop if the pipe is not empty. Anyway, we
158 * will almost always fill/empty the pipe.
159 */
160
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100161 if (b->pipe->data) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100162 si->flags |= SI_FL_WAIT_ROOM;
163 retval = 1;
164 break;
165 }
166
Willy Tarreau82a04562011-12-11 22:37:06 +0100167 /* We don't know if the connection was closed,
168 * but if we know splice detects close, then we
169 * know it for sure.
Willy Tarreau98b306b2009-01-25 11:11:32 +0100170 * But if we're called upon POLLIN with an empty
Willy Tarreau82a04562011-12-11 22:37:06 +0100171 * pipe and get EAGAIN, it is suspect enough to
Willy Tarreau98b306b2009-01-25 11:11:32 +0100172 * try to fall back to the normal recv scheme
173 * which will be able to deal with the situation.
174 */
Willy Tarreau82a04562011-12-11 22:37:06 +0100175 if (splice_detects_close)
176 retval = 0; /* we know for sure that it's EAGAIN */
177 else
178 retval = -1;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100179 break;
180 }
Willy Tarreaudc340a92009-06-28 23:10:19 +0200181
Willy Tarreaua9de3332009-11-28 07:47:10 +0100182 if (errno == ENOSYS || errno == EINVAL) {
Willy Tarreaudc340a92009-06-28 23:10:19 +0200183 /* splice not supported on this end, disable it */
184 b->flags &= ~BF_KERN_SPLICING;
185 si->flags &= ~SI_FL_CAP_SPLICE;
186 put_pipe(b->pipe);
187 b->pipe = NULL;
188 return -1;
189 }
190
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100191 /* here we have another error */
192 si->flags |= SI_FL_ERR;
193 retval = 1;
194 break;
195 } /* ret <= 0 */
196
Willy Tarreau31971e52009-09-20 12:07:52 +0200197 if (b->to_forward != BUF_INFINITE_FORWARD)
198 b->to_forward -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100199 b->total += ret;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100200 b->pipe->data += ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100201 b->flags |= BF_READ_PARTIAL;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200202 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100203
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100204 if (b->pipe->data >= SPLICE_FULL_HINT ||
205 ret >= global.tune.recv_enough) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100206 /* We've read enough of it for this time. */
207 retval = 1;
208 break;
209 }
210 } /* while */
211
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100212 if (unlikely(!b->pipe->data)) {
213 put_pipe(b->pipe);
214 b->pipe = NULL;
215 }
216
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100217 return retval;
218}
219
Willy Tarreau6b4aad42009-01-18 21:59:13 +0100220#endif /* CONFIG_HAP_LINUX_SPLICE */
221
222
Willy Tarreaubaaee002006-06-26 02:48:02 +0200223/*
Willy Tarreaud7971282006-07-29 18:36:34 +0200224 * this function is called on a read event from a stream socket.
Willy Tarreau83749182007-04-15 20:56:27 +0200225 * It returns 0 if we have a high confidence that we will not be
226 * able to read more data without polling first. Returns non-zero
227 * otherwise.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200228 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200229static int sock_raw_read(int fd)
230{
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200231 struct stream_interface *si = fdtab[fd].owner;
Willy Tarreau48adac52008-08-30 04:58:38 +0200232 struct buffer *b = si->ib;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200233 int ret, max, retval, cur_read;
Willy Tarreaub8949f12007-03-23 22:39:59 +0100234 int read_poll = MAX_READ_POLL_LOOPS;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200235
236#ifdef DEBUG_FULL
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200237 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 +0200238#endif
239
Willy Tarreau83749182007-04-15 20:56:27 +0200240 retval = 1;
241
Willy Tarreau71543652009-07-14 19:55:05 +0200242 /* stop immediately on errors. Note that we DON'T want to stop on
243 * POLL_ERR, as the poller might report a write error while there
244 * are still data available in the recv buffer. This typically
245 * happens when we send too large a request to a backend server
246 * which rejects it before reading it all.
247 */
248 if (fdtab[fd].state == FD_STERROR)
Willy Tarreau6996e152007-04-30 14:37:43 +0200249 goto out_error;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100250
251 /* stop here if we reached the end of data */
252 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP)
253 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200254
Willy Tarreaud06e7112009-03-29 10:18:41 +0200255 /* maybe we were called immediately after an asynchronous shutr */
256 if (b->flags & BF_SHUTR)
257 goto out_wakeup;
258
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100259#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau14acc702011-05-11 20:47:24 +0200260 if (b->to_forward >= MIN_SPLICE_FORWARD && b->flags & BF_KERN_SPLICING) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100261
262 /* Under Linux, if FD_POLL_HUP is set, we have reached the end.
263 * Since older splice() implementations were buggy and returned
264 * EAGAIN on end of read, let's bypass the call to splice() now.
265 */
266 if (fdtab[fd].ev & FD_POLL_HUP)
267 goto out_shutdown_r;
268
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200269 retval = sock_raw_splice_in(b, si);
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100270
271 if (retval >= 0) {
272 if (si->flags & SI_FL_ERR)
273 goto out_error;
274 if (b->flags & BF_READ_NULL)
275 goto out_shutdown_r;
276 goto out_wakeup;
277 }
278 /* splice not possible (anymore), let's go on on standard copy */
279 }
280#endif
Willy Tarreau8a7af602008-05-03 23:07:14 +0200281 cur_read = 0;
Willy Tarreau6996e152007-04-30 14:37:43 +0200282 while (1) {
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200283 max = bi_avail(b);
Willy Tarreau864e8252009-12-28 17:36:37 +0100284
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200285 if (!max) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100286 b->flags |= BF_FULL;
287 si->flags |= SI_FL_WAIT_ROOM;
288 break;
289 }
290
Willy Tarreau6996e152007-04-30 14:37:43 +0200291 /*
292 * 1. compute the maximum block size we can read at once.
293 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100294 if (buffer_empty(b)) {
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100295 /* let's realign the buffer to optimize I/O */
Willy Tarreaua458b672012-03-05 11:17:50 +0100296 b->p = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200297 }
Willy Tarreau89fa7062012-03-02 16:13:16 +0100298 else if (b->data + b->o < b->p &&
299 b->p + b->i < b->data + b->size) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100300 /* remaining space wraps at the end, with a moving limit */
Willy Tarreau363a5bb2012-03-02 20:14:45 +0100301 if (max > b->data + b->size - (b->p + b->i))
302 max = b->data + b->size - (b->p + b->i);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100303 }
Willy Tarreau864e8252009-12-28 17:36:37 +0100304 /* else max is already OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200305
Willy Tarreau6996e152007-04-30 14:37:43 +0200306 /*
307 * 2. read the largest possible block
308 */
Willy Tarreaucc5cfcb2012-05-04 21:35:27 +0200309 ret = recv(fd, bi_end(b), max, 0);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200310
Willy Tarreau83749182007-04-15 20:56:27 +0200311 if (ret > 0) {
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100312 b->i += ret;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200313 cur_read += ret;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100314
Willy Tarreau2e046c62012-03-01 16:08:30 +0100315 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreau31971e52009-09-20 12:07:52 +0200316 if (b->to_forward && !(b->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
317 unsigned long fwd = ret;
318 if (b->to_forward != BUF_INFINITE_FORWARD) {
319 if (fwd > b->to_forward)
320 fwd = b->to_forward;
321 b->to_forward -= fwd;
322 }
Willy Tarreau328582c2012-05-05 23:32:27 +0200323 b_adv(b, fwd);
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100324 }
Willy Tarreauf890dc92008-12-13 21:12:26 +0100325
Willy Tarreaub38903c2008-11-23 21:33:29 +0100326 if (fdtab[fd].state == FD_STCONN)
327 fdtab[fd].state = FD_STREADY;
328
Willy Tarreau3da77c52008-08-29 09:58:42 +0200329 b->flags |= BF_READ_PARTIAL;
Willy Tarreau83749182007-04-15 20:56:27 +0200330 b->total += ret;
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100331
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200332 if (bi_full(b)) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200333 /* The buffer is now full, there's no point in going through
334 * the loop again.
335 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100336 if (!(b->flags & BF_STREAMER_FAST) && (cur_read == buffer_len(b))) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200337 b->xfer_small = 0;
338 b->xfer_large++;
339 if (b->xfer_large >= 3) {
340 /* we call this buffer a fast streamer if it manages
341 * to be filled in one call 3 consecutive times.
342 */
343 b->flags |= (BF_STREAMER | BF_STREAMER_FAST);
344 //fputc('+', stderr);
345 }
346 }
347 else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200348 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200349 b->xfer_large = 0;
350 b->xfer_small++;
351 if (b->xfer_small >= 2) {
352 /* if the buffer has been at least half full twice,
353 * we receive faster than we send, so at least it
354 * is not a "fast streamer".
355 */
356 b->flags &= ~BF_STREAMER_FAST;
357 //fputc('-', stderr);
358 }
359 }
360 else {
361 b->xfer_small = 0;
362 b->xfer_large = 0;
363 }
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100364
365 b->flags |= BF_FULL;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100366 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100367 break;
Willy Tarreau6996e152007-04-30 14:37:43 +0200368 }
369
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200370 /* if too many bytes were missing from last read, it means that
371 * it's pointless trying to read again because the system does
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100372 * not have them in buffers. BTW, if FD_POLL_HUP was present,
373 * it means that we have reached the end and that the connection
374 * is closed.
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200375 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100376 if (ret < max) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200377 if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200378 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200379 b->xfer_large = 0;
380 b->xfer_small++;
381 if (b->xfer_small >= 3) {
382 /* we have read less than half of the buffer in
383 * one pass, and this happened at least 3 times.
384 * This is definitely not a streamer.
385 */
386 b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST);
387 //fputc('!', stderr);
388 }
389 }
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200390 /* unfortunately, on level-triggered events, POLL_HUP
391 * is generally delivered AFTER the system buffer is
392 * empty, so this one might never match.
393 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100394 if (fdtab[fd].ev & FD_POLL_HUP)
395 goto out_shutdown_r;
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200396
397 /* if a streamer has read few data, it may be because we
398 * have exhausted system buffers. It's not worth trying
399 * again.
400 */
401 if (b->flags & BF_STREAMER)
402 break;
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200403
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100404 /* generally if we read something smaller than 1 or 2 MSS,
405 * it means that either we have exhausted the system's
406 * buffers (streamer or question-response protocol) or
407 * that the connection will be closed. Streamers are
408 * easily detected so we return early. For other cases,
409 * it's still better to perform a last read to be sure,
410 * because it may save one complete poll/read/wakeup cycle
411 * in case of shutdown.
412 */
413 if (ret < MIN_RET_FOR_READ_LOOP && b->flags & BF_STREAMER)
414 break;
415
416 /* if we read a large block smaller than what we requested,
417 * it's almost certain we'll never get anything more.
418 */
419 if (ret >= global.tune.recv_enough)
420 break;
421 }
Willy Tarreau83749182007-04-15 20:56:27 +0200422
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100423 if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200424 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200425 }
426 else if (ret == 0) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200427 /* connection closed */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100428 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200429 }
Willy Tarreau9f195292007-04-15 21:26:58 +0200430 else if (errno == EAGAIN) {
431 /* Ignore EAGAIN but inform the poller that there is
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100432 * nothing to read left if we did not read much, ie
433 * less than what we were still expecting to read.
434 * But we may have done some work justifying to notify
435 * the task.
Willy Tarreau9f195292007-04-15 21:26:58 +0200436 */
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100437 if (cur_read < MIN_RET_FOR_READ_LOOP)
438 retval = 0;
Willy Tarreau83749182007-04-15 20:56:27 +0200439 break;
440 }
441 else {
Willy Tarreau6996e152007-04-30 14:37:43 +0200442 goto out_error;
Willy Tarreau83749182007-04-15 20:56:27 +0200443 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200444 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200445
Willy Tarreau6996e152007-04-30 14:37:43 +0200446 out_wakeup:
Willy Tarreau22be90b2011-05-11 20:32:36 +0200447 /* We might have some data the consumer is waiting for.
448 * We can do fast-forwarding, but we avoid doing this for partial
449 * buffers, because it is very likely that it will be done again
450 * immediately afterwards once the following data is parsed (eg:
451 * HTTP chunking).
452 */
Willy Tarreaueb9fd512011-12-11 22:11:47 +0100453 if (b->pipe || /* always try to send spliced data */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100454 (b->i == 0 && (b->cons->flags & SI_FL_WAIT_DATA))) {
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100455 int last_len = b->pipe ? b->pipe->data : 0;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100456
Willy Tarreau060781f2012-05-07 16:50:03 +0200457 b->cons->sock.chk_snd(b->cons);
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100458
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100459 /* check if the consumer has freed some space */
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100460 if (!(b->flags & BF_FULL) &&
461 (!last_len || !b->pipe || b->pipe->data < last_len))
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100462 si->flags &= ~SI_FL_WAIT_ROOM;
463 }
464
465 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100466 EV_FD_CLR(fd, DIR_RD);
467 b->rex = TICK_ETERNITY;
468 }
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200469 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 +0100470 b->rex = tick_add_ifset(now_ms, b->rto);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100471
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100472 /* we have to wake up if there is a special event or if we don't have
473 * any more data to forward.
474 */
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200475 if ((b->flags & (BF_READ_NULL|BF_READ_ERROR)) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100476 si->state != SI_ST_EST ||
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200477 (si->flags & SI_FL_ERR) ||
478 ((b->flags & BF_READ_PARTIAL) && (!b->to_forward || b->cons->state != SI_ST_EST)))
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100479 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200480
481 if (b->flags & BF_READ_ACTIVITY)
482 b->flags &= ~BF_READ_DONTWAIT;
483
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100484 fdtab[fd].ev &= ~FD_POLL_IN;
Willy Tarreau83749182007-04-15 20:56:27 +0200485 return retval;
Willy Tarreau6996e152007-04-30 14:37:43 +0200486
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100487 out_shutdown_r:
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200488 /* we received a shutdown */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100489 fdtab[fd].ev &= ~FD_POLL_HUP;
490 b->flags |= BF_READ_NULL;
Willy Tarreau520d95e2009-09-19 21:04:57 +0200491 if (b->flags & BF_AUTO_CLOSE)
Willy Tarreau418fd472009-09-06 21:37:23 +0200492 buffer_shutw_now(b);
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200493 sock_raw_shutr(si);
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200494 goto out_wakeup;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100495
Willy Tarreau6996e152007-04-30 14:37:43 +0200496 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100497 /* Read error on the file descriptor. We mark the FD as STERROR so
498 * that we don't use it anymore. The error is reported to the stream
499 * interface which will take proper action. We must not perturbate the
500 * buffer because the stream interface wants to ensure transparent
501 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200502 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100503
Willy Tarreau6996e152007-04-30 14:37:43 +0200504 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100505 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100506 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100507 si->flags |= SI_FL_ERR;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100508 retval = 1;
509 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200510}
511
512
513/*
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100514 * This function is called to send buffer data to a stream socket.
515 * It returns -1 in case of unrecoverable error, 0 if the caller needs to poll
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100516 * before calling it again, otherwise 1. If a pipe was associated with the
517 * buffer and it empties it, it releases it as well.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200518 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200519static int sock_raw_write_loop(struct stream_interface *si, struct buffer *b)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100520{
Willy Tarreau83749182007-04-15 20:56:27 +0200521 int write_poll = MAX_WRITE_POLL_LOOPS;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100522 int retval = 1;
523 int ret, max;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200524
Willy Tarreaub22e55b2011-03-20 10:16:46 +0100525 if (unlikely(si->send_proxy_ofs)) {
526 /* The target server expects a PROXY line to be sent first.
527 * If the send_proxy_ofs is negative, it corresponds to the
528 * offset to start sending from then end of the proxy string
529 * (which is recomputed every time since it's constant). If
530 * it is positive, it means we have to send from the start.
531 */
532 ret = make_proxy_line(trash, sizeof(trash),
Willy Tarreau6471afb2011-09-23 10:54:59 +0200533 &b->prod->addr.from, &b->prod->addr.to);
Willy Tarreaub22e55b2011-03-20 10:16:46 +0100534 if (!ret)
535 return -1;
536
537 if (si->send_proxy_ofs > 0)
538 si->send_proxy_ofs = -ret; /* first call */
539
540 /* we have to send trash from (ret+sp for -sp bytes) */
541 ret = send(si->fd, trash + ret + si->send_proxy_ofs, -si->send_proxy_ofs,
542 (b->flags & BF_OUT_EMPTY) ? 0 : MSG_MORE);
543 if (ret > 0) {
544 if (fdtab[si->fd].state == FD_STCONN)
545 fdtab[si->fd].state = FD_STREADY;
546
547 si->send_proxy_ofs += ret; /* becomes zero once complete */
548 b->flags |= BF_WRITE_NULL; /* connect() succeeded */
549 }
550 else if (ret == 0 || errno == EAGAIN) {
551 /* nothing written, we need to poll for write first */
552 return 0;
553 }
554 else {
555 /* bad, we got an error */
556 return -1;
557 }
558 }
559
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100560#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100561 while (b->pipe) {
562 ret = splice(b->pipe->cons, NULL, si->fd, NULL, b->pipe->data,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100563 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
564 if (ret <= 0) {
565 if (ret == 0 || errno == EAGAIN) {
566 retval = 0;
567 return retval;
568 }
569 /* here we have another error */
570 retval = -1;
571 return retval;
572 }
573
574 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100575 b->pipe->data -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100576
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100577 if (!b->pipe->data) {
578 put_pipe(b->pipe);
579 b->pipe = NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100580 break;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100581 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100582
583 if (--write_poll <= 0)
584 return retval;
Willy Tarreaueb9fd512011-12-11 22:11:47 +0100585
586 /* The only reason we did not empty the pipe is that the output
587 * buffer is full.
588 */
589 return 0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100590 }
591
592 /* At this point, the pipe is empty, but we may still have data pending
593 * in the normal buffer.
594 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100595#endif
Willy Tarreau2e046c62012-03-01 16:08:30 +0100596 if (!b->o) {
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200597 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100598 return retval;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200599 }
Willy Tarreau83749182007-04-15 20:56:27 +0200600
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100601 /* when we're in this loop, we already know that there is no spliced
602 * data left, and that there are sendable buffered data.
603 */
Willy Tarreau6996e152007-04-30 14:37:43 +0200604 while (1) {
Willy Tarreau89fa7062012-03-02 16:13:16 +0100605 max = b->o;
Willy Tarreau83749182007-04-15 20:56:27 +0200606
Willy Tarreau89fa7062012-03-02 16:13:16 +0100607 /* outgoing data may wrap at the end */
608 if (b->data + max > b->p)
609 max = b->data + max - b->p;
Willy Tarreauf890dc92008-12-13 21:12:26 +0100610
Willy Tarreau6db06d32009-08-19 11:14:11 +0200611 /* check if we want to inform the kernel that we're interested in
612 * sending more data after this call. We want this if :
613 * - we're about to close after this last send and want to merge
614 * the ongoing FIN with the last segment.
615 * - we know we can't send everything at once and must get back
616 * here because of unaligned data
Willy Tarreaud38b53b2010-01-03 11:18:34 +0100617 * - there is still a finite amount of data to forward
Willy Tarreau6db06d32009-08-19 11:14:11 +0200618 * The test is arranged so that the most common case does only 2
619 * tests.
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200620 */
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200621
Willy Tarreauface8392010-01-03 11:37:54 +0100622 if (MSG_NOSIGNAL && MSG_MORE) {
Willy Tarreau6db06d32009-08-19 11:14:11 +0200623 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
624
Willy Tarreau96e31212011-05-30 18:10:30 +0200625 if ((!(b->flags & BF_NEVER_WAIT) &&
626 ((b->to_forward && b->to_forward != BUF_INFINITE_FORWARD) ||
627 (b->flags & BF_EXPECT_MORE))) ||
Willy Tarreau2e046c62012-03-01 16:08:30 +0100628 ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == BF_SHUTW_NOW && (max == b->o)) ||
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100629 (max != b->o)) {
Willy Tarreauface8392010-01-03 11:37:54 +0100630 send_flag |= MSG_MORE;
631 }
Willy Tarreau6db06d32009-08-19 11:14:11 +0200632
Willy Tarreau2be39392010-01-03 17:24:51 +0100633 /* this flag has precedence over the rest */
634 if (b->flags & BF_SEND_DONTWAIT)
635 send_flag &= ~MSG_MORE;
636
Willy Tarreaucc5cfcb2012-05-04 21:35:27 +0200637 ret = send(si->fd, bo_ptr(b), max, send_flag);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200638 } else {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200639 int skerr;
640 socklen_t lskerr = sizeof(skerr);
641
Willy Tarreau87bed622009-03-08 22:25:28 +0100642 ret = getsockopt(si->fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
Willy Tarreauc6423482006-10-15 14:59:03 +0200643 if (ret == -1 || skerr)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200644 ret = -1;
645 else
Willy Tarreaucc5cfcb2012-05-04 21:35:27 +0200646 ret = send(si->fd, bo_ptr(b), max, MSG_DONTWAIT);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200647 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200648
649 if (ret > 0) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100650 if (fdtab[si->fd].state == FD_STCONN)
651 fdtab[si->fd].state = FD_STREADY;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100652
Willy Tarreau3da77c52008-08-29 09:58:42 +0200653 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreaue393fe22008-08-16 22:18:07 +0200654
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100655 b->o -= ret;
656 if (likely(!buffer_len(b)))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100657 /* optimize data alignment in the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +0100658 b->p = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200659
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200660 if (likely(!bi_full(b)))
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100661 b->flags &= ~BF_FULL;
662
Willy Tarreau2e046c62012-03-01 16:08:30 +0100663 if (!b->o) {
Willy Tarreauf17810e2012-03-09 18:10:44 +0100664 /* Always clear both flags once everything has been sent, they're one-shot */
665 b->flags &= ~(BF_EXPECT_MORE | BF_SEND_DONTWAIT);
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200666 if (likely(!b->pipe))
667 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100668 break;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200669 }
Willy Tarreau83749182007-04-15 20:56:27 +0200670
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200671 /* if the system buffer is full, don't insist */
672 if (ret < max)
673 break;
674
Willy Tarreau6996e152007-04-30 14:37:43 +0200675 if (--write_poll <= 0)
676 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200677 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200678 else if (ret == 0 || errno == EAGAIN) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100679 /* nothing written, we need to poll for write first */
Willy Tarreau83749182007-04-15 20:56:27 +0200680 retval = 0;
681 break;
682 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200683 else {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100684 /* bad, we got an error */
685 retval = -1;
686 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200687 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200688 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200689
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100690 return retval;
691}
Willy Tarreau6996e152007-04-30 14:37:43 +0200692
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100693
694/*
695 * This function is called on a write event from a stream socket.
696 * It returns 0 if the caller needs to poll before calling it again, otherwise
697 * non-zero.
698 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200699static int sock_raw_write(int fd)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100700{
701 struct stream_interface *si = fdtab[fd].owner;
702 struct buffer *b = si->ob;
703 int retval = 1;
704
705#ifdef DEBUG_FULL
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200706 fprintf(stderr,"sock_raw_write : fd=%d, owner=%p\n", fd, fdtab[fd].owner);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100707#endif
708
709 retval = 1;
Willy Tarreau71543652009-07-14 19:55:05 +0200710 if (fdtab[fd].state == FD_STERROR)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100711 goto out_error;
712
Willy Tarreaud06e7112009-03-29 10:18:41 +0200713 /* we might have been called just after an asynchronous shutw */
714 if (b->flags & BF_SHUTW)
715 goto out_wakeup;
716
Willy Tarreaub22e55b2011-03-20 10:16:46 +0100717 if (likely(!(b->flags & BF_OUT_EMPTY) || si->send_proxy_ofs)) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100718 /* OK there are data waiting to be sent */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200719 retval = sock_raw_write_loop(si, b);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100720 if (retval < 0)
721 goto out_error;
Willy Tarreau68f49da2011-03-28 23:17:54 +0200722 else if (retval == 0 && si->send_proxy_ofs)
723 goto out_may_wakeup; /* we failed to send the PROXY string */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200724 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100725 else {
726 /* may be we have received a connection acknowledgement in TCP mode without data */
727 if (likely(fdtab[fd].state == FD_STCONN)) {
728 /* We have no data to send to check the connection, and
729 * getsockopt() will not inform us whether the connection
730 * is still pending. So we'll reuse connect() to check the
731 * state of the socket. This has the advantage of givig us
732 * the following info :
733 * - error
734 * - connecting (EALREADY, EINPROGRESS)
735 * - connected (EISCONN, 0)
736 */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200737 if ((connect(fd, fdinfo[fd].peeraddr, fdinfo[fd].peerlen) == 0))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100738 errno = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200739
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100740 if (errno == EALREADY || errno == EINPROGRESS) {
741 retval = 0;
742 goto out_may_wakeup;
743 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100744
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100745 if (errno && errno != EISCONN)
746 goto out_error;
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200747
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100748 /* OK we just need to indicate that we got a connection
749 * and that we wrote nothing.
750 */
751 b->flags |= BF_WRITE_NULL;
752 fdtab[fd].state = FD_STREADY;
753 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200754
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100755 /* Funny, we were called to write something but there wasn't
756 * anything. We can get there, for example if we were woken up
Willy Tarreau2e046c62012-03-01 16:08:30 +0100757 * on a write event to finish the splice, but the ->o is 0
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100758 * so we cannot write anything from the buffer. Let's disable
759 * the write event and pretend we never came there.
760 */
761 }
762
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200763 if (b->flags & BF_OUT_EMPTY) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100764 /* the connection is established but we can't write. Either the
765 * buffer is empty, or we just refrain from sending because the
Willy Tarreau2e046c62012-03-01 16:08:30 +0100766 * ->o limit was reached. Maybe we just wrote the last
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100767 * chunk and need to close.
768 */
Willy Tarreau520d95e2009-09-19 21:04:57 +0200769 if (((b->flags & (BF_SHUTW|BF_HIJACK|BF_SHUTW_NOW)) == BF_SHUTW_NOW) &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100770 (si->state == SI_ST_EST)) {
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200771 sock_raw_shutw(si);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100772 goto out_wakeup;
773 }
774
Willy Tarreau59454bf2009-09-20 11:13:40 +0200775 if ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreauac128fe2009-01-09 13:05:19 +0100776 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100777
Willy Tarreauac128fe2009-01-09 13:05:19 +0100778 EV_FD_CLR(fd, DIR_WR);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100779 b->wex = TICK_ETERNITY;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100780 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100781
782 out_may_wakeup:
783 if (b->flags & BF_WRITE_ACTIVITY) {
784 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200785 if ((b->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100786 b->wex = tick_add_ifset(now_ms, b->wto);
787
788 out_wakeup:
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200789 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100790 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200791 * during writes, we refresh it. We only do this if the
792 * interface is not configured for "independant streams",
793 * because for some applications it's better not to do this,
794 * for instance when continuously exchanging small amounts
795 * of data which can full the socket buffers long before a
796 * write timeout is detected.
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100797 */
798 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
799 }
800
801 /* the producer might be waiting for more room to store data */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200802 if (likely((b->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL|BF_DONT_READ)) == BF_WRITE_PARTIAL &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100803 (b->prod->flags & SI_FL_WAIT_ROOM)))
Willy Tarreau060781f2012-05-07 16:50:03 +0200804 b->prod->sock.chk_rcv(b->prod);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100805
806 /* we have to wake up if there is a special event or if we don't have
807 * any more data to forward and it's not planned to send any more.
808 */
809 if (likely((b->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200810 ((b->flags & BF_OUT_EMPTY) && !b->to_forward) ||
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100811 si->state != SI_ST_EST ||
812 b->prod->state != SI_ST_EST))
813 task_wakeup(si->owner, TASK_WOKEN_IO);
814 }
815
816 fdtab[fd].ev &= ~FD_POLL_OUT;
817 return retval;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100818
Willy Tarreau6996e152007-04-30 14:37:43 +0200819 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100820 /* Write error on the file descriptor. We mark the FD as STERROR so
821 * that we don't use it anymore. The error is reported to the stream
822 * interface which will take proper action. We must not perturbate the
823 * buffer because the stream interface wants to ensure transparent
824 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200825 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100826
Willy Tarreau6996e152007-04-30 14:37:43 +0200827 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100828 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100829 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100830 si->flags |= SI_FL_ERR;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200831 task_wakeup(si->owner, TASK_WOKEN_IO);
832 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200833}
834
Willy Tarreau48adac52008-08-30 04:58:38 +0200835/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200836 * This function performs a shutdown-write on a stream interface in a connected or
837 * init state (it does nothing for other states). It either shuts the write side
Willy Tarreau99126c32008-11-27 10:30:51 +0100838 * or closes the file descriptor and marks itself as closed. The buffer flags are
Willy Tarreau7340ca52010-01-16 10:03:45 +0100839 * updated to reflect the new state. It does also close everything is the SI was
840 * marked as being in error state.
Willy Tarreau48adac52008-08-30 04:58:38 +0200841 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200842static void sock_raw_shutw(struct stream_interface *si)
Willy Tarreau48adac52008-08-30 04:58:38 +0200843{
Willy Tarreau418fd472009-09-06 21:37:23 +0200844 si->ob->flags &= ~BF_SHUTW_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100845 if (si->ob->flags & BF_SHUTW)
846 return;
847 si->ob->flags |= BF_SHUTW;
848 si->ob->wex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100849 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau99126c32008-11-27 10:30:51 +0100850
Willy Tarreaub38903c2008-11-23 21:33:29 +0100851 switch (si->state) {
Willy Tarreaub38903c2008-11-23 21:33:29 +0100852 case SI_ST_EST:
Willy Tarreau720058c2009-07-14 19:21:50 +0200853 /* we have to shut before closing, otherwise some short messages
854 * may never leave the system, especially when there are remaining
855 * unread data in the socket input buffer, or when nolinger is set.
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100856 * However, if SI_FL_NOLINGER is explicitly set, we know there is
857 * no risk so we close both sides immediately.
Willy Tarreau720058c2009-07-14 19:21:50 +0200858 */
Willy Tarreau7340ca52010-01-16 10:03:45 +0100859 if (si->flags & SI_FL_ERR) {
860 /* quick close, the socket is already shut. Remove pending flags. */
861 si->flags &= ~SI_FL_NOLINGER;
862 } else if (si->flags & SI_FL_NOLINGER) {
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100863 si->flags &= ~SI_FL_NOLINGER;
864 setsockopt(si->fd, SOL_SOCKET, SO_LINGER,
865 (struct linger *) &nolinger, sizeof(struct linger));
866 } else {
867 EV_FD_CLR(si->fd, DIR_WR);
868 shutdown(si->fd, SHUT_WR);
Willy Tarreau720058c2009-07-14 19:21:50 +0200869
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100870 if (!(si->ib->flags & (BF_SHUTR|BF_DONT_READ)))
871 return;
872 }
Willy Tarreau5d707e12009-06-28 11:09:07 +0200873
Willy Tarreaub38903c2008-11-23 21:33:29 +0100874 /* fall through */
875 case SI_ST_CON:
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100876 /* we may have to close a pending connection, and mark the
877 * response buffer as shutr
878 */
Willy Tarreau48adac52008-08-30 04:58:38 +0200879 fd_delete(si->fd);
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100880 /* fall through */
881 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100882 case SI_ST_QUE:
883 case SI_ST_TAR:
Willy Tarreau7f006512008-12-07 14:04:04 +0100884 si->state = SI_ST_DIS;
Willy Tarreauad4cd582012-03-10 13:42:32 +0100885
886 if (si->release)
887 si->release(si);
Willy Tarreau7f006512008-12-07 14:04:04 +0100888 default:
Willy Tarreaud06e7112009-03-29 10:18:41 +0200889 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100890 si->ib->flags |= BF_SHUTR;
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100891 si->ib->rex = TICK_ETERNITY;
Willy Tarreau127334e2009-03-28 10:47:26 +0100892 si->exp = TICK_ETERNITY;
Willy Tarreau48adac52008-08-30 04:58:38 +0200893 }
Willy Tarreau48adac52008-08-30 04:58:38 +0200894}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200895
Willy Tarreau2d212792008-08-27 21:41:35 +0200896/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200897 * This function performs a shutdown-read on a stream interface in a connected or
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100898 * init state (it does nothing for other states). It either shuts the read side
Willy Tarreau99126c32008-11-27 10:30:51 +0100899 * or closes the file descriptor and marks itself as closed. The buffer flags are
900 * updated to reflect the new state.
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200901 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200902static void sock_raw_shutr(struct stream_interface *si)
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200903{
Willy Tarreau418fd472009-09-06 21:37:23 +0200904 si->ib->flags &= ~BF_SHUTR_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100905 if (si->ib->flags & BF_SHUTR)
906 return;
907 si->ib->flags |= BF_SHUTR;
908 si->ib->rex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100909 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100910
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100911 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100912 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200913
Willy Tarreaucff64112008-11-03 06:26:53 +0100914 if (si->ob->flags & BF_SHUTW) {
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200915 fd_delete(si->fd);
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100916 si->state = SI_ST_DIS;
Willy Tarreau127334e2009-03-28 10:47:26 +0100917 si->exp = TICK_ETERNITY;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200918
919 if (si->release)
920 si->release(si);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100921 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200922 }
923 EV_FD_CLR(si->fd, DIR_RD);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100924 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200925}
926
927/*
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200928 * Updates a connected sock_raw file descriptor status and timeouts
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200929 * according to the buffers' flags. It should only be called once after the
930 * buffer flags have settled down, and before they are cleared. It doesn't
931 * harm to call it as often as desired (it just slightly hurts performance).
932 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200933static void sock_raw_data_finish(struct stream_interface *si)
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200934{
Willy Tarreaub0253252008-11-30 21:37:12 +0100935 struct buffer *ib = si->ib;
936 struct buffer *ob = si->ob;
937 int fd = si->fd;
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200938
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100939 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 +0200940 now_ms, __FUNCTION__,
941 fd, fdtab[fd].owner,
942 ib, ob,
943 ib->rex, ob->wex,
944 ib->flags, ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100945 ib->i, ib->o, ob->i, ob->o, si->state);
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200946
947 /* Check if we need to close the read side */
948 if (!(ib->flags & BF_SHUTR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200949 /* Read not closed, update FD status and timeout for reads */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200950 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200951 /* stop reading */
Willy Tarreau11f49402010-11-11 23:08:17 +0100952 if (!(si->flags & SI_FL_WAIT_ROOM)) {
953 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
954 si->flags |= SI_FL_WAIT_ROOM;
955 EV_FD_COND_C(fd, DIR_RD);
956 ib->rex = TICK_ETERNITY;
957 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200958 }
959 else {
960 /* (re)start reading and update timeout. Note: we don't recompute the timeout
961 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200962 * update it if is was not yet set. The stream socket handler will already
963 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200964 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100965 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau2d212792008-08-27 21:41:35 +0200966 EV_FD_COND_S(fd, DIR_RD);
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200967 if (!(ib->flags & (BF_READ_NOEXP|BF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau2d212792008-08-27 21:41:35 +0200968 ib->rex = tick_add_ifset(now_ms, ib->rto);
969 }
970 }
971
972 /* Check if we need to close the write side */
973 if (!(ob->flags & BF_SHUTW)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200974 /* Write not closed, update FD status and timeout for writes */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200975 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200976 /* stop writing */
Willy Tarreau11f49402010-11-11 23:08:17 +0100977 if (!(si->flags & SI_FL_WAIT_DATA)) {
978 if ((ob->flags & (BF_FULL|BF_HIJACK|BF_SHUTW_NOW)) == 0)
979 si->flags |= SI_FL_WAIT_DATA;
980 EV_FD_COND_C(fd, DIR_WR);
981 ob->wex = TICK_ETERNITY;
982 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200983 }
984 else {
985 /* (re)start writing and update timeout. Note: we don't recompute the timeout
986 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200987 * update it if is was not yet set. The stream socket handler will already
988 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200989 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100990 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau2d212792008-08-27 21:41:35 +0200991 EV_FD_COND_S(fd, DIR_WR);
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200992 if (!tick_isset(ob->wex)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200993 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200994 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200995 /* Note: depending on the protocol, we don't know if we're waiting
996 * for incoming data or not. So in order to prevent the socket from
997 * expiring read timeouts during writes, we refresh the read timeout,
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200998 * except if it was already infinite or if we have explicitly setup
999 * independant streams.
Willy Tarreau2d212792008-08-27 21:41:35 +02001000 */
Willy Tarreaud06e7112009-03-29 10:18:41 +02001001 ib->rex = tick_add_ifset(now_ms, ib->rto);
Willy Tarreau2d212792008-08-27 21:41:35 +02001002 }
1003 }
1004 }
1005 }
Willy Tarreau2d212792008-08-27 21:41:35 +02001006}
1007
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001008/* This function is used for inter-stream-interface calls. It is called by the
1009 * consumer to inform the producer side that it may be interested in checking
1010 * for free space in the buffer. Note that it intentionally does not update
1011 * timeouts, so that we can still check them later at wake-up.
1012 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +02001013static void sock_raw_chk_rcv(struct stream_interface *si)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001014{
1015 struct buffer *ib = si->ib;
1016
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001017 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 +01001018 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +00001019 si->fd, fdtab[si->fd].owner,
1020 ib, si->ob,
1021 ib->rex, si->ob->wex,
1022 ib->flags, si->ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001023 ib->i, ib->o, si->ob->i, si->ob->o, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001024
1025 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
1026 return;
1027
Willy Tarreauf1ba4b32009-10-17 14:37:52 +02001028 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001029 /* stop reading */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +02001030 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001031 si->flags |= SI_FL_WAIT_ROOM;
1032 EV_FD_COND_C(si->fd, DIR_RD);
1033 }
1034 else {
1035 /* (re)start reading */
1036 si->flags &= ~SI_FL_WAIT_ROOM;
1037 EV_FD_COND_S(si->fd, DIR_RD);
1038 }
1039}
1040
1041
1042/* This function is used for inter-stream-interface calls. It is called by the
1043 * producer to inform the consumer side that it may be interested in checking
1044 * for data in the buffer. Note that it intentionally does not update timeouts,
1045 * so that we can still check them later at wake-up.
1046 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +02001047static void sock_raw_chk_snd(struct stream_interface *si)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001048{
1049 struct buffer *ob = si->ob;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001050 int retval;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001051
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001052 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 +01001053 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +00001054 si->fd, fdtab[si->fd].owner,
1055 si->ib, ob,
1056 si->ib->rex, ob->wex,
1057 si->ib->flags, ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001058 si->ib->i, si->ib->o, ob->i, ob->o, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001059
1060 if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW)))
1061 return;
1062
Willy Tarreaueb9fd512011-12-11 22:11:47 +01001063 if (unlikely((ob->flags & BF_OUT_EMPTY) && !(si->send_proxy_ofs))) /* called with nothing to send ! */
1064 return;
1065
1066 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
1067 (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
1068 (fdtab[si->fd].ev & FD_POLL_OUT))) /* we'll be called anyway */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001069 return;
1070
Willy Tarreaub277d6e2012-05-11 16:59:14 +02001071 retval = sock_raw_write_loop(si, ob);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001072 /* here, we have :
1073 * retval < 0 if an error was encountered during write.
1074 * retval = 0 if we can't write anymore without polling
1075 * retval = 1 if we're invited to come back when desired
1076 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001077 if (retval < 0) {
1078 /* Write error on the file descriptor. We mark the FD as STERROR so
1079 * that we don't use it anymore and we notify the task.
1080 */
1081 fdtab[si->fd].state = FD_STERROR;
1082 fdtab[si->fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +01001083 EV_FD_REM(si->fd);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001084 si->flags |= SI_FL_ERR;
1085 goto out_wakeup;
1086 }
Willy Tarreau68f49da2011-03-28 23:17:54 +02001087 else if (retval == 0 && si->send_proxy_ofs)
1088 goto out_may_wakeup; /* we failed to send the PROXY string */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001089
Willy Tarreauc54aef32009-07-27 20:08:06 +02001090 /* OK, so now we know that retval >= 0 means that some data might have
1091 * been sent, and that we may have to poll first. We have to do that
1092 * too if the buffer is not empty.
1093 */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001094 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001095 /* the connection is established but we can't write. Either the
1096 * buffer is empty, or we just refrain from sending because the
Willy Tarreau2e046c62012-03-01 16:08:30 +01001097 * ->o limit was reached. Maybe we just wrote the last
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001098 * chunk and need to close.
1099 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02001100 if (((ob->flags & (BF_SHUTW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTW_NOW)) ==
1101 (BF_AUTO_CLOSE|BF_SHUTW_NOW)) &&
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001102 (si->state == SI_ST_EST)) {
Willy Tarreaub277d6e2012-05-11 16:59:14 +02001103 sock_raw_shutw(si);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001104 goto out_wakeup;
1105 }
Willy Tarreaud06e7112009-03-29 10:18:41 +02001106
Willy Tarreau59454bf2009-09-20 11:13:40 +02001107 if ((ob->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001108 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001109 ob->wex = TICK_ETERNITY;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001110 }
1111 else {
Willy Tarreauc54aef32009-07-27 20:08:06 +02001112 /* Otherwise there are remaining data to be sent in the buffer,
1113 * which means we have to poll before doing so.
1114 */
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001115 EV_FD_COND_S(si->fd, DIR_WR);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001116 si->flags &= ~SI_FL_WAIT_DATA;
1117 if (!tick_isset(ob->wex))
1118 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001119 }
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001120
Willy Tarreau68f49da2011-03-28 23:17:54 +02001121 out_may_wakeup:
Willy Tarreauc9619462009-03-09 22:40:57 +01001122 if (likely(ob->flags & BF_WRITE_ACTIVITY)) {
1123 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001124 if ((ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreauc9619462009-03-09 22:40:57 +01001125 ob->wex = tick_add_ifset(now_ms, ob->wto);
1126
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001127 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreauc9619462009-03-09 22:40:57 +01001128 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001129 * during writes, we refresh it. We only do this if the
1130 * interface is not configured for "independant streams",
1131 * because for some applications it's better not to do this,
1132 * for instance when continuously exchanging small amounts
1133 * of data which can full the socket buffers long before a
1134 * write timeout is detected.
Willy Tarreauc9619462009-03-09 22:40:57 +01001135 */
1136 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
1137 }
1138 }
1139
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001140 /* in case of special condition (error, shutdown, end of write...), we
1141 * have to notify the task.
1142 */
1143 if (likely((ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001144 ((ob->flags & BF_OUT_EMPTY) && !ob->to_forward) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001145 si->state != SI_ST_EST)) {
1146 out_wakeup:
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001147 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
1148 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001149 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001150}
1151
Willy Tarreau5c979a92012-05-07 17:15:39 +02001152/* stream sock operations */
Willy Tarreaub277d6e2012-05-11 16:59:14 +02001153struct sock_ops sock_raw = {
1154 .update = sock_raw_data_finish,
1155 .shutr = sock_raw_shutr,
1156 .shutw = sock_raw_shutw,
1157 .chk_rcv = sock_raw_chk_rcv,
1158 .chk_snd = sock_raw_chk_snd,
1159 .read = sock_raw_read,
1160 .write = sock_raw_write,
Willy Tarreau5c979a92012-05-07 17:15:39 +02001161};
Willy Tarreaubaaee002006-06-26 02:48:02 +02001162
1163/*
1164 * Local variables:
1165 * c-indent-level: 8
1166 * c-basic-offset: 8
1167 * End:
1168 */