blob: af260274e3d57c82be228e8eea95b564ed8c685d [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>
35#include <proto/log.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010036#include <proto/pipe.h>
Willy Tarreaufe598a72010-09-21 21:48:23 +020037#include <proto/protocols.h>
Willy Tarreauc63190d2012-05-11 14:23:52 +020038#include <proto/sock_raw.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020039#include <proto/task.h>
40
Willy Tarreau5bd8c372009-01-19 00:32:22 +010041#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020042
Willy Tarreaub277d6e2012-05-11 16:59:14 +020043/* main event functions used to move data between sockets and buffers */
44static int sock_raw_read(int fd);
45static int sock_raw_write(int fd);
46static void sock_raw_data_finish(struct stream_interface *si);
47static void sock_raw_shutr(struct stream_interface *si);
48static void sock_raw_shutw(struct stream_interface *si);
49static void sock_raw_chk_rcv(struct stream_interface *si);
50static void sock_raw_chk_snd(struct stream_interface *si);
51
52
Willy Tarreau6b4aad42009-01-18 21:59:13 +010053#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau43d8fb22011-08-22 17:12:02 +020054#include <common/splice.h>
Willy Tarreau5bd8c372009-01-19 00:32:22 +010055
56/* A pipe contains 16 segments max, and it's common to see segments of 1448 bytes
57 * because of timestamps. Use this as a hint for not looping on splice().
58 */
59#define SPLICE_FULL_HINT 16*1448
60
Willy Tarreaua9de3332009-11-28 07:47:10 +010061/* how many data we attempt to splice at once when the buffer is configured for
62 * infinite forwarding */
63#define MAX_SPLICE_AT_ONCE (1<<30)
64
Willy Tarreau5bd8c372009-01-19 00:32:22 +010065/* Returns :
66 * -1 if splice is not possible or not possible anymore and we must switch to
67 * user-land copy (eg: to_forward reached)
68 * 0 when we know that polling is required to get more data (EAGAIN)
69 * 1 for all other cases (we can safely try again, or if an activity has been
70 * detected (DATA/NULL/ERR))
71 * Sets :
72 * BF_READ_NULL
73 * BF_READ_PARTIAL
74 * BF_WRITE_PARTIAL (during copy)
Willy Tarreauba0b63d2009-09-20 08:09:44 +020075 * BF_OUT_EMPTY (during copy)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010076 * SI_FL_ERR
77 * SI_FL_WAIT_ROOM
78 * (SI_FL_WAIT_RECV)
Willy Tarreau3eba98a2009-01-25 13:56:13 +010079 *
80 * This function automatically allocates a pipe from the pipe pool. It also
81 * carefully ensures to clear b->pipe whenever it leaves the pipe empty.
Willy Tarreau5bd8c372009-01-19 00:32:22 +010082 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +020083static int sock_raw_splice_in(struct buffer *b, struct stream_interface *si)
Willy Tarreau5bd8c372009-01-19 00:32:22 +010084{
Willy Tarreau82a04562011-12-11 22:37:06 +010085 static int splice_detects_close;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010086 int fd = si->fd;
Willy Tarreau31971e52009-09-20 12:07:52 +020087 int ret;
88 unsigned long max;
Willy Tarreau5bd8c372009-01-19 00:32:22 +010089 int retval = 1;
90
91 if (!b->to_forward)
92 return -1;
93
94 if (!(b->flags & BF_KERN_SPLICING))
95 return -1;
96
Willy Tarreau02d6cfc2012-03-01 18:19:58 +010097 if (buffer_not_empty(b)) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +010098 /* We're embarrassed, there are already data pending in
99 * the buffer and we don't want to have them at two
100 * locations at a time. Let's indicate we need some
101 * place and ask the consumer to hurry.
102 */
103 si->flags |= SI_FL_WAIT_ROOM;
104 EV_FD_CLR(fd, DIR_RD);
105 b->rex = TICK_ETERNITY;
Willy Tarreau060781f2012-05-07 16:50:03 +0200106 b->cons->sock.chk_snd(b->cons);
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100107 return 1;
108 }
109
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100110 if (unlikely(b->pipe == NULL)) {
111 if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100112 b->flags &= ~BF_KERN_SPLICING;
113 return -1;
114 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100115 }
116
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100117 /* At this point, b->pipe is valid */
118
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100119 while (1) {
Willy Tarreaua9de3332009-11-28 07:47:10 +0100120 if (b->to_forward == BUF_INFINITE_FORWARD)
121 max = MAX_SPLICE_AT_ONCE;
122 else
123 max = b->to_forward;
124
Willy Tarreau31971e52009-09-20 12:07:52 +0200125 if (!max) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100126 /* It looks like the buffer + the pipe already contain
127 * the maximum amount of data to be transferred. Try to
128 * send those data immediately on the other side if it
129 * is currently waiting.
130 */
131 retval = -1; /* end of forwarding */
132 break;
133 }
134
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100135 ret = splice(fd, NULL, b->pipe->prod, NULL, max,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100136 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
137
138 if (ret <= 0) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100139 if (ret == 0) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100140 /* connection closed. This is only detected by
Willy Tarreau82a04562011-12-11 22:37:06 +0100141 * recent kernels (>= 2.6.27.13). If we notice
142 * it works, we store the info for later use.
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100143 */
Willy Tarreau82a04562011-12-11 22:37:06 +0100144 splice_detects_close = 1;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100145 b->flags |= BF_READ_NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100146 retval = 1; /* no need for further polling */
147 break;
148 }
149
150 if (errno == EAGAIN) {
151 /* there are two reasons for EAGAIN :
152 * - nothing in the socket buffer (standard)
153 * - pipe is full
Willy Tarreau98b306b2009-01-25 11:11:32 +0100154 * - the connection is closed (kernel < 2.6.27.13)
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100155 * Since we don't know if pipe is full, we'll
156 * stop if the pipe is not empty. Anyway, we
157 * will almost always fill/empty the pipe.
158 */
159
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100160 if (b->pipe->data) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100161 si->flags |= SI_FL_WAIT_ROOM;
162 retval = 1;
163 break;
164 }
165
Willy Tarreau82a04562011-12-11 22:37:06 +0100166 /* We don't know if the connection was closed,
167 * but if we know splice detects close, then we
168 * know it for sure.
Willy Tarreau98b306b2009-01-25 11:11:32 +0100169 * But if we're called upon POLLIN with an empty
Willy Tarreau82a04562011-12-11 22:37:06 +0100170 * pipe and get EAGAIN, it is suspect enough to
Willy Tarreau98b306b2009-01-25 11:11:32 +0100171 * try to fall back to the normal recv scheme
172 * which will be able to deal with the situation.
173 */
Willy Tarreau82a04562011-12-11 22:37:06 +0100174 if (splice_detects_close)
175 retval = 0; /* we know for sure that it's EAGAIN */
176 else
177 retval = -1;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100178 break;
179 }
Willy Tarreaudc340a92009-06-28 23:10:19 +0200180
Willy Tarreaua9de3332009-11-28 07:47:10 +0100181 if (errno == ENOSYS || errno == EINVAL) {
Willy Tarreaudc340a92009-06-28 23:10:19 +0200182 /* splice not supported on this end, disable it */
183 b->flags &= ~BF_KERN_SPLICING;
184 si->flags &= ~SI_FL_CAP_SPLICE;
185 put_pipe(b->pipe);
186 b->pipe = NULL;
187 return -1;
188 }
189
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100190 /* here we have another error */
191 si->flags |= SI_FL_ERR;
192 retval = 1;
193 break;
194 } /* ret <= 0 */
195
Willy Tarreau31971e52009-09-20 12:07:52 +0200196 if (b->to_forward != BUF_INFINITE_FORWARD)
197 b->to_forward -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100198 b->total += ret;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100199 b->pipe->data += ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100200 b->flags |= BF_READ_PARTIAL;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200201 b->flags &= ~BF_OUT_EMPTY;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100202
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100203 if (b->pipe->data >= SPLICE_FULL_HINT ||
204 ret >= global.tune.recv_enough) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100205 /* We've read enough of it for this time. */
206 retval = 1;
207 break;
208 }
209 } /* while */
210
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100211 if (unlikely(!b->pipe->data)) {
212 put_pipe(b->pipe);
213 b->pipe = NULL;
214 }
215
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100216 return retval;
217}
218
Willy Tarreau6b4aad42009-01-18 21:59:13 +0100219#endif /* CONFIG_HAP_LINUX_SPLICE */
220
221
Willy Tarreaubaaee002006-06-26 02:48:02 +0200222/*
Willy Tarreaud7971282006-07-29 18:36:34 +0200223 * this function is called on a read event from a stream socket.
Willy Tarreau83749182007-04-15 20:56:27 +0200224 * It returns 0 if we have a high confidence that we will not be
225 * able to read more data without polling first. Returns non-zero
226 * otherwise.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200227 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200228static int sock_raw_read(int fd)
229{
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200230 struct stream_interface *si = fdtab[fd].owner;
Willy Tarreau48adac52008-08-30 04:58:38 +0200231 struct buffer *b = si->ib;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200232 int ret, max, retval, cur_read;
Willy Tarreaub8949f12007-03-23 22:39:59 +0100233 int read_poll = MAX_READ_POLL_LOOPS;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200234
235#ifdef DEBUG_FULL
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200236 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 +0200237#endif
238
Willy Tarreau83749182007-04-15 20:56:27 +0200239 retval = 1;
240
Willy Tarreau71543652009-07-14 19:55:05 +0200241 /* stop immediately on errors. Note that we DON'T want to stop on
242 * POLL_ERR, as the poller might report a write error while there
243 * are still data available in the recv buffer. This typically
244 * happens when we send too large a request to a backend server
245 * which rejects it before reading it all.
246 */
247 if (fdtab[fd].state == FD_STERROR)
Willy Tarreau6996e152007-04-30 14:37:43 +0200248 goto out_error;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100249
250 /* stop here if we reached the end of data */
251 if ((fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP)) == FD_POLL_HUP)
252 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200253
Willy Tarreaud06e7112009-03-29 10:18:41 +0200254 /* maybe we were called immediately after an asynchronous shutr */
255 if (b->flags & BF_SHUTR)
256 goto out_wakeup;
257
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100258#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau14acc702011-05-11 20:47:24 +0200259 if (b->to_forward >= MIN_SPLICE_FORWARD && b->flags & BF_KERN_SPLICING) {
Willy Tarreau98b306b2009-01-25 11:11:32 +0100260
261 /* Under Linux, if FD_POLL_HUP is set, we have reached the end.
262 * Since older splice() implementations were buggy and returned
263 * EAGAIN on end of read, let's bypass the call to splice() now.
264 */
265 if (fdtab[fd].ev & FD_POLL_HUP)
266 goto out_shutdown_r;
267
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200268 retval = sock_raw_splice_in(b, si);
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100269
270 if (retval >= 0) {
271 if (si->flags & SI_FL_ERR)
272 goto out_error;
273 if (b->flags & BF_READ_NULL)
274 goto out_shutdown_r;
275 goto out_wakeup;
276 }
277 /* splice not possible (anymore), let's go on on standard copy */
278 }
279#endif
Willy Tarreau8a7af602008-05-03 23:07:14 +0200280 cur_read = 0;
Willy Tarreau6996e152007-04-30 14:37:43 +0200281 while (1) {
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200282 max = bi_avail(b);
Willy Tarreau864e8252009-12-28 17:36:37 +0100283
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200284 if (!max) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100285 b->flags |= BF_FULL;
286 si->flags |= SI_FL_WAIT_ROOM;
287 break;
288 }
289
Willy Tarreau6996e152007-04-30 14:37:43 +0200290 /*
291 * 1. compute the maximum block size we can read at once.
292 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100293 if (buffer_empty(b)) {
Willy Tarreau03d60bb2009-01-09 11:13:00 +0100294 /* let's realign the buffer to optimize I/O */
Willy Tarreaua458b672012-03-05 11:17:50 +0100295 b->p = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200296 }
Willy Tarreau89fa7062012-03-02 16:13:16 +0100297 else if (b->data + b->o < b->p &&
298 b->p + b->i < b->data + b->size) {
Willy Tarreau864e8252009-12-28 17:36:37 +0100299 /* remaining space wraps at the end, with a moving limit */
Willy Tarreau363a5bb2012-03-02 20:14:45 +0100300 if (max > b->data + b->size - (b->p + b->i))
301 max = b->data + b->size - (b->p + b->i);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100302 }
Willy Tarreau864e8252009-12-28 17:36:37 +0100303 /* else max is already OK */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200304
Willy Tarreau6996e152007-04-30 14:37:43 +0200305 /*
306 * 2. read the largest possible block
307 */
Willy Tarreaucc5cfcb2012-05-04 21:35:27 +0200308 ret = recv(fd, bi_end(b), max, 0);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200309
Willy Tarreau83749182007-04-15 20:56:27 +0200310 if (ret > 0) {
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100311 b->i += ret;
Willy Tarreau8a7af602008-05-03 23:07:14 +0200312 cur_read += ret;
Willy Tarreaub38903c2008-11-23 21:33:29 +0100313
Willy Tarreau2e046c62012-03-01 16:08:30 +0100314 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreau31971e52009-09-20 12:07:52 +0200315 if (b->to_forward && !(b->flags & (BF_SHUTW|BF_SHUTW_NOW))) {
316 unsigned long fwd = ret;
317 if (b->to_forward != BUF_INFINITE_FORWARD) {
318 if (fwd > b->to_forward)
319 fwd = b->to_forward;
320 b->to_forward -= fwd;
321 }
Willy Tarreau328582c2012-05-05 23:32:27 +0200322 b_adv(b, fwd);
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100323 }
Willy Tarreauf890dc92008-12-13 21:12:26 +0100324
Willy Tarreau8ae52cb2012-05-20 10:38:46 +0200325 if (fdtab[fd].state == FD_STCONN) {
Willy Tarreaub38903c2008-11-23 21:33:29 +0100326 fdtab[fd].state = FD_STREADY;
Willy Tarreau8ae52cb2012-05-20 10:38:46 +0200327 si->exp = TICK_ETERNITY;
328 }
Willy Tarreaub38903c2008-11-23 21:33:29 +0100329
Willy Tarreau3da77c52008-08-29 09:58:42 +0200330 b->flags |= BF_READ_PARTIAL;
Willy Tarreau83749182007-04-15 20:56:27 +0200331 b->total += ret;
Willy Tarreau9641e8f2007-03-23 23:02:09 +0100332
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200333 if (bi_full(b)) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200334 /* The buffer is now full, there's no point in going through
335 * the loop again.
336 */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100337 if (!(b->flags & BF_STREAMER_FAST) && (cur_read == buffer_len(b))) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200338 b->xfer_small = 0;
339 b->xfer_large++;
340 if (b->xfer_large >= 3) {
341 /* we call this buffer a fast streamer if it manages
342 * to be filled in one call 3 consecutive times.
343 */
344 b->flags |= (BF_STREAMER | BF_STREAMER_FAST);
345 //fputc('+', stderr);
346 }
347 }
348 else if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200349 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200350 b->xfer_large = 0;
351 b->xfer_small++;
352 if (b->xfer_small >= 2) {
353 /* if the buffer has been at least half full twice,
354 * we receive faster than we send, so at least it
355 * is not a "fast streamer".
356 */
357 b->flags &= ~BF_STREAMER_FAST;
358 //fputc('-', stderr);
359 }
360 }
361 else {
362 b->xfer_small = 0;
363 b->xfer_large = 0;
364 }
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100365
366 b->flags |= BF_FULL;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100367 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100368 break;
Willy Tarreau6996e152007-04-30 14:37:43 +0200369 }
370
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200371 /* if too many bytes were missing from last read, it means that
372 * it's pointless trying to read again because the system does
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100373 * not have them in buffers. BTW, if FD_POLL_HUP was present,
374 * it means that we have reached the end and that the connection
375 * is closed.
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200376 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100377 if (ret < max) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200378 if ((b->flags & (BF_STREAMER | BF_STREAMER_FAST)) &&
Willy Tarreaua07a34e2009-08-16 23:27:46 +0200379 (cur_read <= b->size / 2)) {
Willy Tarreau8a7af602008-05-03 23:07:14 +0200380 b->xfer_large = 0;
381 b->xfer_small++;
382 if (b->xfer_small >= 3) {
383 /* we have read less than half of the buffer in
384 * one pass, and this happened at least 3 times.
385 * This is definitely not a streamer.
386 */
387 b->flags &= ~(BF_STREAMER | BF_STREAMER_FAST);
388 //fputc('!', stderr);
389 }
390 }
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200391 /* unfortunately, on level-triggered events, POLL_HUP
392 * is generally delivered AFTER the system buffer is
393 * empty, so this one might never match.
394 */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100395 if (fdtab[fd].ev & FD_POLL_HUP)
396 goto out_shutdown_r;
Willy Tarreau2bea3a12008-08-28 09:47:43 +0200397
398 /* if a streamer has read few data, it may be because we
399 * have exhausted system buffers. It's not worth trying
400 * again.
401 */
402 if (b->flags & BF_STREAMER)
403 break;
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200404
Willy Tarreau6f4a82c2009-03-21 20:43:57 +0100405 /* generally if we read something smaller than 1 or 2 MSS,
406 * it means that either we have exhausted the system's
407 * buffers (streamer or question-response protocol) or
408 * that the connection will be closed. Streamers are
409 * easily detected so we return early. For other cases,
410 * it's still better to perform a last read to be sure,
411 * because it may save one complete poll/read/wakeup cycle
412 * in case of shutdown.
413 */
414 if (ret < MIN_RET_FOR_READ_LOOP && b->flags & BF_STREAMER)
415 break;
416
417 /* if we read a large block smaller than what we requested,
418 * it's almost certain we'll never get anything more.
419 */
420 if (ret >= global.tune.recv_enough)
421 break;
422 }
Willy Tarreau83749182007-04-15 20:56:27 +0200423
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100424 if ((b->flags & BF_READ_DONTWAIT) || --read_poll <= 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200425 break;
Willy Tarreau83749182007-04-15 20:56:27 +0200426 }
427 else if (ret == 0) {
Willy Tarreau6996e152007-04-30 14:37:43 +0200428 /* connection closed */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100429 goto out_shutdown_r;
Willy Tarreau83749182007-04-15 20:56:27 +0200430 }
Willy Tarreau9f195292007-04-15 21:26:58 +0200431 else if (errno == EAGAIN) {
432 /* Ignore EAGAIN but inform the poller that there is
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100433 * nothing to read left if we did not read much, ie
434 * less than what we were still expecting to read.
435 * But we may have done some work justifying to notify
436 * the task.
Willy Tarreau9f195292007-04-15 21:26:58 +0200437 */
Willy Tarreauaf78d0f2009-01-08 10:09:08 +0100438 if (cur_read < MIN_RET_FOR_READ_LOOP)
439 retval = 0;
Willy Tarreau83749182007-04-15 20:56:27 +0200440 break;
441 }
442 else {
Willy Tarreau6996e152007-04-30 14:37:43 +0200443 goto out_error;
Willy Tarreau83749182007-04-15 20:56:27 +0200444 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200445 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200446
Willy Tarreau6996e152007-04-30 14:37:43 +0200447 out_wakeup:
Willy Tarreau22be90b2011-05-11 20:32:36 +0200448 /* We might have some data the consumer is waiting for.
449 * We can do fast-forwarding, but we avoid doing this for partial
450 * buffers, because it is very likely that it will be done again
451 * immediately afterwards once the following data is parsed (eg:
452 * HTTP chunking).
453 */
Willy Tarreaueb9fd512011-12-11 22:11:47 +0100454 if (b->pipe || /* always try to send spliced data */
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100455 (b->i == 0 && (b->cons->flags & SI_FL_WAIT_DATA))) {
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100456 int last_len = b->pipe ? b->pipe->data : 0;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100457
Willy Tarreau060781f2012-05-07 16:50:03 +0200458 b->cons->sock.chk_snd(b->cons);
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100459
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100460 /* check if the consumer has freed some space */
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100461 if (!(b->flags & BF_FULL) &&
462 (!last_len || !b->pipe || b->pipe->data < last_len))
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100463 si->flags &= ~SI_FL_WAIT_ROOM;
464 }
465
466 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100467 EV_FD_CLR(fd, DIR_RD);
468 b->rex = TICK_ETERNITY;
469 }
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200470 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 +0100471 b->rex = tick_add_ifset(now_ms, b->rto);
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100472
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100473 /* we have to wake up if there is a special event or if we don't have
474 * any more data to forward.
475 */
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200476 if ((b->flags & (BF_READ_NULL|BF_READ_ERROR)) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100477 si->state != SI_ST_EST ||
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200478 (si->flags & SI_FL_ERR) ||
479 ((b->flags & BF_READ_PARTIAL) && (!b->to_forward || b->cons->state != SI_ST_EST)))
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100480 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreau5af1fa12010-07-19 18:16:03 +0200481
482 if (b->flags & BF_READ_ACTIVITY)
483 b->flags &= ~BF_READ_DONTWAIT;
484
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100485 fdtab[fd].ev &= ~FD_POLL_IN;
Willy Tarreau83749182007-04-15 20:56:27 +0200486 return retval;
Willy Tarreau6996e152007-04-30 14:37:43 +0200487
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100488 out_shutdown_r:
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200489 /* we received a shutdown */
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100490 fdtab[fd].ev &= ~FD_POLL_HUP;
491 b->flags |= BF_READ_NULL;
Willy Tarreau520d95e2009-09-19 21:04:57 +0200492 if (b->flags & BF_AUTO_CLOSE)
Willy Tarreau418fd472009-09-06 21:37:23 +0200493 buffer_shutw_now(b);
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200494 sock_raw_shutr(si);
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200495 goto out_wakeup;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100496
Willy Tarreau6996e152007-04-30 14:37:43 +0200497 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100498 /* Read error on the file descriptor. We mark the FD as STERROR so
499 * that we don't use it anymore. The error is reported to the stream
500 * interface which will take proper action. We must not perturbate the
501 * buffer because the stream interface wants to ensure transparent
502 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200503 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100504
Willy Tarreau6996e152007-04-30 14:37:43 +0200505 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100506 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100507 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100508 si->flags |= SI_FL_ERR;
Willy Tarreau9c0fe592009-01-18 16:25:31 +0100509 retval = 1;
510 goto out_wakeup;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200511}
512
513
514/*
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100515 * This function is called to send buffer data to a stream socket.
516 * It returns -1 in case of unrecoverable error, 0 if the caller needs to poll
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100517 * before calling it again, otherwise 1. If a pipe was associated with the
518 * buffer and it empties it, it releases it as well.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200519 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200520static int sock_raw_write_loop(struct stream_interface *si, struct buffer *b)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100521{
Willy Tarreau83749182007-04-15 20:56:27 +0200522 int write_poll = MAX_WRITE_POLL_LOOPS;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100523 int retval = 1;
524 int ret, max;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200525
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100526#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100527 while (b->pipe) {
528 ret = splice(b->pipe->cons, NULL, si->fd, NULL, b->pipe->data,
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100529 SPLICE_F_MOVE|SPLICE_F_NONBLOCK);
530 if (ret <= 0) {
531 if (ret == 0 || errno == EAGAIN) {
532 retval = 0;
533 return retval;
534 }
535 /* here we have another error */
536 retval = -1;
537 return retval;
538 }
539
540 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100541 b->pipe->data -= ret;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100542
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100543 if (!b->pipe->data) {
544 put_pipe(b->pipe);
545 b->pipe = NULL;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100546 break;
Willy Tarreau3eba98a2009-01-25 13:56:13 +0100547 }
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100548
549 if (--write_poll <= 0)
550 return retval;
Willy Tarreaueb9fd512011-12-11 22:11:47 +0100551
552 /* The only reason we did not empty the pipe is that the output
553 * buffer is full.
554 */
555 return 0;
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100556 }
557
558 /* At this point, the pipe is empty, but we may still have data pending
559 * in the normal buffer.
560 */
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100561#endif
Willy Tarreau2e046c62012-03-01 16:08:30 +0100562 if (!b->o) {
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200563 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100564 return retval;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200565 }
Willy Tarreau83749182007-04-15 20:56:27 +0200566
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100567 /* when we're in this loop, we already know that there is no spliced
568 * data left, and that there are sendable buffered data.
569 */
Willy Tarreau6996e152007-04-30 14:37:43 +0200570 while (1) {
Willy Tarreau89fa7062012-03-02 16:13:16 +0100571 max = b->o;
Willy Tarreau83749182007-04-15 20:56:27 +0200572
Willy Tarreau89fa7062012-03-02 16:13:16 +0100573 /* outgoing data may wrap at the end */
574 if (b->data + max > b->p)
575 max = b->data + max - b->p;
Willy Tarreauf890dc92008-12-13 21:12:26 +0100576
Willy Tarreau6db06d32009-08-19 11:14:11 +0200577 /* check if we want to inform the kernel that we're interested in
578 * sending more data after this call. We want this if :
579 * - we're about to close after this last send and want to merge
580 * the ongoing FIN with the last segment.
581 * - we know we can't send everything at once and must get back
582 * here because of unaligned data
Willy Tarreaud38b53b2010-01-03 11:18:34 +0100583 * - there is still a finite amount of data to forward
Willy Tarreau6db06d32009-08-19 11:14:11 +0200584 * The test is arranged so that the most common case does only 2
585 * tests.
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200586 */
Willy Tarreaufb14edc2009-06-14 15:24:37 +0200587
Willy Tarreauface8392010-01-03 11:37:54 +0100588 if (MSG_NOSIGNAL && MSG_MORE) {
Willy Tarreau6db06d32009-08-19 11:14:11 +0200589 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
590
Willy Tarreau96e31212011-05-30 18:10:30 +0200591 if ((!(b->flags & BF_NEVER_WAIT) &&
592 ((b->to_forward && b->to_forward != BUF_INFINITE_FORWARD) ||
593 (b->flags & BF_EXPECT_MORE))) ||
Willy Tarreau2e046c62012-03-01 16:08:30 +0100594 ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_HIJACK)) == BF_SHUTW_NOW && (max == b->o)) ||
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100595 (max != b->o)) {
Willy Tarreauface8392010-01-03 11:37:54 +0100596 send_flag |= MSG_MORE;
597 }
Willy Tarreau6db06d32009-08-19 11:14:11 +0200598
Willy Tarreau2be39392010-01-03 17:24:51 +0100599 /* this flag has precedence over the rest */
600 if (b->flags & BF_SEND_DONTWAIT)
601 send_flag &= ~MSG_MORE;
602
Willy Tarreaucc5cfcb2012-05-04 21:35:27 +0200603 ret = send(si->fd, bo_ptr(b), max, send_flag);
Willy Tarreaud6d06902009-08-19 11:22:33 +0200604 } else {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200605 int skerr;
606 socklen_t lskerr = sizeof(skerr);
607
Willy Tarreau87bed622009-03-08 22:25:28 +0100608 ret = getsockopt(si->fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr);
Willy Tarreauc6423482006-10-15 14:59:03 +0200609 if (ret == -1 || skerr)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200610 ret = -1;
611 else
Willy Tarreaucc5cfcb2012-05-04 21:35:27 +0200612 ret = send(si->fd, bo_ptr(b), max, MSG_DONTWAIT);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200613 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200614
615 if (ret > 0) {
Willy Tarreau8ae52cb2012-05-20 10:38:46 +0200616 if (fdtab[si->fd].state == FD_STCONN) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100617 fdtab[si->fd].state = FD_STREADY;
Willy Tarreau8ae52cb2012-05-20 10:38:46 +0200618 si->exp = TICK_ETERNITY;
619 }
Willy Tarreaub38903c2008-11-23 21:33:29 +0100620
Willy Tarreau3da77c52008-08-29 09:58:42 +0200621 b->flags |= BF_WRITE_PARTIAL;
Willy Tarreaue393fe22008-08-16 22:18:07 +0200622
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100623 b->o -= ret;
624 if (likely(!buffer_len(b)))
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100625 /* optimize data alignment in the buffer */
Willy Tarreaua458b672012-03-05 11:17:50 +0100626 b->p = b->data;
Willy Tarreau83749182007-04-15 20:56:27 +0200627
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200628 if (likely(!bi_full(b)))
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100629 b->flags &= ~BF_FULL;
630
Willy Tarreau2e046c62012-03-01 16:08:30 +0100631 if (!b->o) {
Willy Tarreauf17810e2012-03-09 18:10:44 +0100632 /* Always clear both flags once everything has been sent, they're one-shot */
633 b->flags &= ~(BF_EXPECT_MORE | BF_SEND_DONTWAIT);
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200634 if (likely(!b->pipe))
635 b->flags |= BF_OUT_EMPTY;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100636 break;
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200637 }
Willy Tarreau83749182007-04-15 20:56:27 +0200638
Willy Tarreauab3e1d32007-06-03 14:10:36 +0200639 /* if the system buffer is full, don't insist */
640 if (ret < max)
641 break;
642
Willy Tarreau6996e152007-04-30 14:37:43 +0200643 if (--write_poll <= 0)
644 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200645 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200646 else if (ret == 0 || errno == EAGAIN) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100647 /* nothing written, we need to poll for write first */
Willy Tarreau83749182007-04-15 20:56:27 +0200648 retval = 0;
649 break;
650 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200651 else {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100652 /* bad, we got an error */
653 retval = -1;
654 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200655 }
Willy Tarreau6996e152007-04-30 14:37:43 +0200656 } /* while (1) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200657
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100658 return retval;
659}
Willy Tarreau6996e152007-04-30 14:37:43 +0200660
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100661
662/*
663 * This function is called on a write event from a stream socket.
664 * It returns 0 if the caller needs to poll before calling it again, otherwise
665 * non-zero.
666 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200667static int sock_raw_write(int fd)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100668{
669 struct stream_interface *si = fdtab[fd].owner;
670 struct buffer *b = si->ob;
671 int retval = 1;
672
673#ifdef DEBUG_FULL
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200674 fprintf(stderr,"sock_raw_write : fd=%d, owner=%p\n", fd, fdtab[fd].owner);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100675#endif
676
677 retval = 1;
Willy Tarreau71543652009-07-14 19:55:05 +0200678 if (fdtab[fd].state == FD_STERROR)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100679 goto out_error;
680
Willy Tarreaud06e7112009-03-29 10:18:41 +0200681 /* we might have been called just after an asynchronous shutw */
682 if (b->flags & BF_SHUTW)
683 goto out_wakeup;
684
Willy Tarreaueeda90e2012-05-11 19:53:32 +0200685 retval = sock_raw_write_loop(si, b);
686 if (retval < 0)
687 goto out_error;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100688
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200689 if (b->flags & BF_OUT_EMPTY) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100690 /* the connection is established but we can't write. Either the
691 * buffer is empty, or we just refrain from sending because the
Willy Tarreau2e046c62012-03-01 16:08:30 +0100692 * ->o limit was reached. Maybe we just wrote the last
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100693 * chunk and need to close.
694 */
Willy Tarreau520d95e2009-09-19 21:04:57 +0200695 if (((b->flags & (BF_SHUTW|BF_HIJACK|BF_SHUTW_NOW)) == BF_SHUTW_NOW) &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100696 (si->state == SI_ST_EST)) {
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200697 sock_raw_shutw(si);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100698 goto out_wakeup;
699 }
700
Willy Tarreau59454bf2009-09-20 11:13:40 +0200701 if ((b->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreauac128fe2009-01-09 13:05:19 +0100702 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100703
Willy Tarreauac128fe2009-01-09 13:05:19 +0100704 EV_FD_CLR(fd, DIR_WR);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100705 b->wex = TICK_ETERNITY;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100706 }
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100707
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100708 if (b->flags & BF_WRITE_ACTIVITY) {
709 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200710 if ((b->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100711 b->wex = tick_add_ifset(now_ms, b->wto);
712
713 out_wakeup:
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200714 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100715 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200716 * during writes, we refresh it. We only do this if the
717 * interface is not configured for "independant streams",
718 * because for some applications it's better not to do this,
719 * for instance when continuously exchanging small amounts
720 * of data which can full the socket buffers long before a
721 * write timeout is detected.
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100722 */
723 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
724 }
725
726 /* the producer might be waiting for more room to store data */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200727 if (likely((b->flags & (BF_SHUTW|BF_WRITE_PARTIAL|BF_FULL|BF_DONT_READ)) == BF_WRITE_PARTIAL &&
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100728 (b->prod->flags & SI_FL_WAIT_ROOM)))
Willy Tarreau060781f2012-05-07 16:50:03 +0200729 b->prod->sock.chk_rcv(b->prod);
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100730
731 /* we have to wake up if there is a special event or if we don't have
732 * any more data to forward and it's not planned to send any more.
733 */
734 if (likely((b->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200735 ((b->flags & BF_OUT_EMPTY) && !b->to_forward) ||
Willy Tarreau0c2fc1f2009-01-18 15:30:37 +0100736 si->state != SI_ST_EST ||
737 b->prod->state != SI_ST_EST))
738 task_wakeup(si->owner, TASK_WOKEN_IO);
739 }
740
741 fdtab[fd].ev &= ~FD_POLL_OUT;
742 return retval;
Willy Tarreauac128fe2009-01-09 13:05:19 +0100743
Willy Tarreau6996e152007-04-30 14:37:43 +0200744 out_error:
Willy Tarreaucff64112008-11-03 06:26:53 +0100745 /* Write error on the file descriptor. We mark the FD as STERROR so
746 * that we don't use it anymore. The error is reported to the stream
747 * interface which will take proper action. We must not perturbate the
748 * buffer because the stream interface wants to ensure transparent
749 * connection retries.
Willy Tarreau6996e152007-04-30 14:37:43 +0200750 */
Willy Tarreaucff64112008-11-03 06:26:53 +0100751
Willy Tarreau6996e152007-04-30 14:37:43 +0200752 fdtab[fd].state = FD_STERROR;
Willy Tarreaud6f087e2008-01-18 17:20:13 +0100753 fdtab[fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +0100754 EV_FD_REM(fd);
Willy Tarreaucff64112008-11-03 06:26:53 +0100755 si->flags |= SI_FL_ERR;
Willy Tarreaue5ed4062008-08-30 03:17:31 +0200756 task_wakeup(si->owner, TASK_WOKEN_IO);
757 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200758}
759
Willy Tarreau48adac52008-08-30 04:58:38 +0200760/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200761 * This function performs a shutdown-write on a stream interface in a connected or
762 * init state (it does nothing for other states). It either shuts the write side
Willy Tarreau99126c32008-11-27 10:30:51 +0100763 * or closes the file descriptor and marks itself as closed. The buffer flags are
Willy Tarreau7340ca52010-01-16 10:03:45 +0100764 * updated to reflect the new state. It does also close everything is the SI was
765 * marked as being in error state.
Willy Tarreau48adac52008-08-30 04:58:38 +0200766 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200767static void sock_raw_shutw(struct stream_interface *si)
Willy Tarreau48adac52008-08-30 04:58:38 +0200768{
Willy Tarreau418fd472009-09-06 21:37:23 +0200769 si->ob->flags &= ~BF_SHUTW_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100770 if (si->ob->flags & BF_SHUTW)
771 return;
772 si->ob->flags |= BF_SHUTW;
773 si->ob->wex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100774 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau99126c32008-11-27 10:30:51 +0100775
Willy Tarreaub38903c2008-11-23 21:33:29 +0100776 switch (si->state) {
Willy Tarreaub38903c2008-11-23 21:33:29 +0100777 case SI_ST_EST:
Willy Tarreau720058c2009-07-14 19:21:50 +0200778 /* we have to shut before closing, otherwise some short messages
779 * may never leave the system, especially when there are remaining
780 * unread data in the socket input buffer, or when nolinger is set.
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100781 * However, if SI_FL_NOLINGER is explicitly set, we know there is
782 * no risk so we close both sides immediately.
Willy Tarreau720058c2009-07-14 19:21:50 +0200783 */
Willy Tarreau7340ca52010-01-16 10:03:45 +0100784 if (si->flags & SI_FL_ERR) {
785 /* quick close, the socket is already shut. Remove pending flags. */
786 si->flags &= ~SI_FL_NOLINGER;
Willy Tarreau7bb68ab2012-05-13 14:48:59 +0200787 }
788 else if (si->flags & SI_FL_NOLINGER) {
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100789 si->flags &= ~SI_FL_NOLINGER;
790 setsockopt(si->fd, SOL_SOCKET, SO_LINGER,
791 (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreau7bb68ab2012-05-13 14:48:59 +0200792 }
793 else if (!(si->flags & SI_FL_NOHALF)) {
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100794 EV_FD_CLR(si->fd, DIR_WR);
795 shutdown(si->fd, SHUT_WR);
Willy Tarreau720058c2009-07-14 19:21:50 +0200796
Willy Tarreau4c283dc2009-12-29 14:36:34 +0100797 if (!(si->ib->flags & (BF_SHUTR|BF_DONT_READ)))
798 return;
799 }
Willy Tarreau5d707e12009-06-28 11:09:07 +0200800
Willy Tarreaub38903c2008-11-23 21:33:29 +0100801 /* fall through */
802 case SI_ST_CON:
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100803 /* we may have to close a pending connection, and mark the
804 * response buffer as shutr
805 */
Willy Tarreau48adac52008-08-30 04:58:38 +0200806 fd_delete(si->fd);
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100807 /* fall through */
808 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100809 case SI_ST_QUE:
810 case SI_ST_TAR:
Willy Tarreau7f006512008-12-07 14:04:04 +0100811 si->state = SI_ST_DIS;
Willy Tarreauad4cd582012-03-10 13:42:32 +0100812
813 if (si->release)
814 si->release(si);
Willy Tarreau7f006512008-12-07 14:04:04 +0100815 default:
Willy Tarreaud06e7112009-03-29 10:18:41 +0200816 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100817 si->ib->flags |= BF_SHUTR;
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100818 si->ib->rex = TICK_ETERNITY;
Willy Tarreau127334e2009-03-28 10:47:26 +0100819 si->exp = TICK_ETERNITY;
Willy Tarreau48adac52008-08-30 04:58:38 +0200820 }
Willy Tarreau48adac52008-08-30 04:58:38 +0200821}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200822
Willy Tarreau2d212792008-08-27 21:41:35 +0200823/*
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200824 * This function performs a shutdown-read on a stream interface in a connected or
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100825 * init state (it does nothing for other states). It either shuts the read side
Willy Tarreau99126c32008-11-27 10:30:51 +0100826 * or closes the file descriptor and marks itself as closed. The buffer flags are
Willy Tarreau7bb68ab2012-05-13 14:48:59 +0200827 * updated to reflect the new state. If the stream interface has SI_FL_NOHALF,
828 * we also forward the close to the write side.
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200829 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200830static void sock_raw_shutr(struct stream_interface *si)
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200831{
Willy Tarreau418fd472009-09-06 21:37:23 +0200832 si->ib->flags &= ~BF_SHUTR_NOW;
Willy Tarreau99126c32008-11-27 10:30:51 +0100833 if (si->ib->flags & BF_SHUTR)
834 return;
835 si->ib->flags |= BF_SHUTR;
836 si->ib->rex = TICK_ETERNITY;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100837 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau99126c32008-11-27 10:30:51 +0100838
Willy Tarreau8bfa4262008-11-27 09:25:45 +0100839 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100840 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200841
Willy Tarreaucff64112008-11-03 06:26:53 +0100842 if (si->ob->flags & BF_SHUTW) {
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200843 fd_delete(si->fd);
Willy Tarreau74ab2ac2008-11-23 17:23:07 +0100844 si->state = SI_ST_DIS;
Willy Tarreau127334e2009-03-28 10:47:26 +0100845 si->exp = TICK_ETERNITY;
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200846
847 if (si->release)
848 si->release(si);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100849 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200850 }
Willy Tarreau7bb68ab2012-05-13 14:48:59 +0200851 else if (si->flags & SI_FL_NOHALF) {
852 /* we want to immediately forward this close to the write side */
853 return sock_raw_shutw(si);
854 }
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200855 EV_FD_CLR(si->fd, DIR_RD);
Willy Tarreau0a5d5dd2008-11-23 19:31:35 +0100856 return;
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +0200857}
858
859/*
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200860 * Updates a connected sock_raw file descriptor status and timeouts
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200861 * according to the buffers' flags. It should only be called once after the
862 * buffer flags have settled down, and before they are cleared. It doesn't
863 * harm to call it as often as desired (it just slightly hurts performance).
864 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200865static void sock_raw_data_finish(struct stream_interface *si)
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200866{
Willy Tarreaub0253252008-11-30 21:37:12 +0100867 struct buffer *ib = si->ib;
868 struct buffer *ob = si->ob;
869 int fd = si->fd;
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200870
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100871 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 +0200872 now_ms, __FUNCTION__,
873 fd, fdtab[fd].owner,
874 ib, ob,
875 ib->rex, ob->wex,
876 ib->flags, ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100877 ib->i, ib->o, ob->i, ob->o, si->state);
Willy Tarreau3a16b2c2008-08-28 08:54:27 +0200878
879 /* Check if we need to close the read side */
880 if (!(ib->flags & BF_SHUTR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200881 /* Read not closed, update FD status and timeout for reads */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200882 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200883 /* stop reading */
Willy Tarreau11f49402010-11-11 23:08:17 +0100884 if (!(si->flags & SI_FL_WAIT_ROOM)) {
885 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
886 si->flags |= SI_FL_WAIT_ROOM;
887 EV_FD_COND_C(fd, DIR_RD);
888 ib->rex = TICK_ETERNITY;
889 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200890 }
891 else {
892 /* (re)start reading and update timeout. Note: we don't recompute the timeout
893 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200894 * update it if is was not yet set. The stream socket handler will already
895 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200896 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100897 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau2d212792008-08-27 21:41:35 +0200898 EV_FD_COND_S(fd, DIR_RD);
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200899 if (!(ib->flags & (BF_READ_NOEXP|BF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau2d212792008-08-27 21:41:35 +0200900 ib->rex = tick_add_ifset(now_ms, ib->rto);
901 }
902 }
903
904 /* Check if we need to close the write side */
905 if (!(ob->flags & BF_SHUTW)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200906 /* Write not closed, update FD status and timeout for writes */
Willy Tarreauba0b63d2009-09-20 08:09:44 +0200907 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200908 /* stop writing */
Willy Tarreau11f49402010-11-11 23:08:17 +0100909 if (!(si->flags & SI_FL_WAIT_DATA)) {
910 if ((ob->flags & (BF_FULL|BF_HIJACK|BF_SHUTW_NOW)) == 0)
911 si->flags |= SI_FL_WAIT_DATA;
912 EV_FD_COND_C(fd, DIR_WR);
913 ob->wex = TICK_ETERNITY;
914 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200915 }
916 else {
917 /* (re)start writing and update timeout. Note: we don't recompute the timeout
918 * everytime we get here, otherwise it would risk never to expire. We only
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200919 * update it if is was not yet set. The stream socket handler will already
920 * have updated it if there has been a completed I/O.
Willy Tarreau2d212792008-08-27 21:41:35 +0200921 */
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100922 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreau2d212792008-08-27 21:41:35 +0200923 EV_FD_COND_S(fd, DIR_WR);
Willy Tarreaufe8903c2009-10-04 10:56:08 +0200924 if (!tick_isset(ob->wex)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200925 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200926 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau2d212792008-08-27 21:41:35 +0200927 /* Note: depending on the protocol, we don't know if we're waiting
928 * for incoming data or not. So in order to prevent the socket from
929 * expiring read timeouts during writes, we refresh the read timeout,
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200930 * except if it was already infinite or if we have explicitly setup
931 * independant streams.
Willy Tarreau2d212792008-08-27 21:41:35 +0200932 */
Willy Tarreaud06e7112009-03-29 10:18:41 +0200933 ib->rex = tick_add_ifset(now_ms, ib->rto);
Willy Tarreau2d212792008-08-27 21:41:35 +0200934 }
935 }
936 }
937 }
Willy Tarreau2d212792008-08-27 21:41:35 +0200938}
939
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100940/* This function is used for inter-stream-interface calls. It is called by the
941 * consumer to inform the producer side that it may be interested in checking
942 * for free space in the buffer. Note that it intentionally does not update
943 * timeouts, so that we can still check them later at wake-up.
944 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200945static void sock_raw_chk_rcv(struct stream_interface *si)
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100946{
947 struct buffer *ib = si->ib;
948
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100949 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 +0100950 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +0000951 si->fd, fdtab[si->fd].owner,
952 ib, si->ob,
953 ib->rex, si->ob->wex,
954 ib->flags, si->ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100955 ib->i, ib->o, si->ob->i, si->ob->o, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100956
957 if (unlikely(si->state != SI_ST_EST || (ib->flags & BF_SHUTR)))
958 return;
959
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200960 if (ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) {
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100961 /* stop reading */
Willy Tarreauf1ba4b32009-10-17 14:37:52 +0200962 if ((ib->flags & (BF_FULL|BF_HIJACK|BF_DONT_READ)) == BF_FULL)
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100963 si->flags |= SI_FL_WAIT_ROOM;
964 EV_FD_COND_C(si->fd, DIR_RD);
965 }
966 else {
967 /* (re)start reading */
968 si->flags &= ~SI_FL_WAIT_ROOM;
969 EV_FD_COND_S(si->fd, DIR_RD);
970 }
971}
972
973
974/* This function is used for inter-stream-interface calls. It is called by the
975 * producer to inform the consumer side that it may be interested in checking
976 * for data in the buffer. Note that it intentionally does not update timeouts,
977 * so that we can still check them later at wake-up.
978 */
Willy Tarreaub277d6e2012-05-11 16:59:14 +0200979static void sock_raw_chk_snd(struct stream_interface *si)
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100980{
981 struct buffer *ob = si->ob;
Willy Tarreaua456f2a2009-01-18 17:38:44 +0100982 int retval;
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100983
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100984 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 +0100985 now_ms, __FUNCTION__,
Vincenzo Farruggia9b97cff2009-01-30 16:49:10 +0000986 si->fd, fdtab[si->fd].owner,
987 si->ib, ob,
988 si->ib->rex, ob->wex,
989 si->ib->flags, ob->flags,
Willy Tarreau02d6cfc2012-03-01 18:19:58 +0100990 si->ib->i, si->ib->o, ob->i, ob->o, si->state);
Willy Tarreau3ffeba12008-12-14 14:42:35 +0100991
992 if (unlikely(si->state != SI_ST_EST || (ob->flags & BF_SHUTW)))
993 return;
994
Willy Tarreaua190d592012-05-20 18:35:19 +0200995 if (unlikely(ob->flags & BF_OUT_EMPTY)) /* called with nothing to send ! */
Willy Tarreaueb9fd512011-12-11 22:11:47 +0100996 return;
997
998 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
999 (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
1000 (fdtab[si->fd].ev & FD_POLL_OUT))) /* we'll be called anyway */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001001 return;
1002
Willy Tarreaub277d6e2012-05-11 16:59:14 +02001003 retval = sock_raw_write_loop(si, ob);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001004 /* here, we have :
1005 * retval < 0 if an error was encountered during write.
1006 * retval = 0 if we can't write anymore without polling
1007 * retval = 1 if we're invited to come back when desired
1008 */
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001009 if (retval < 0) {
1010 /* Write error on the file descriptor. We mark the FD as STERROR so
1011 * that we don't use it anymore and we notify the task.
1012 */
1013 fdtab[si->fd].state = FD_STERROR;
1014 fdtab[si->fd].ev &= ~FD_POLL_STICKY;
Willy Tarreau1714e0f2009-03-28 20:54:53 +01001015 EV_FD_REM(si->fd);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001016 si->flags |= SI_FL_ERR;
1017 goto out_wakeup;
1018 }
1019
Willy Tarreauc54aef32009-07-27 20:08:06 +02001020 /* OK, so now we know that retval >= 0 means that some data might have
1021 * been sent, and that we may have to poll first. We have to do that
1022 * too if the buffer is not empty.
1023 */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001024 if (ob->flags & BF_OUT_EMPTY) {
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001025 /* the connection is established but we can't write. Either the
1026 * buffer is empty, or we just refrain from sending because the
Willy Tarreau2e046c62012-03-01 16:08:30 +01001027 * ->o limit was reached. Maybe we just wrote the last
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001028 * chunk and need to close.
1029 */
Willy Tarreau520d95e2009-09-19 21:04:57 +02001030 if (((ob->flags & (BF_SHUTW|BF_HIJACK|BF_AUTO_CLOSE|BF_SHUTW_NOW)) ==
1031 (BF_AUTO_CLOSE|BF_SHUTW_NOW)) &&
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001032 (si->state == SI_ST_EST)) {
Willy Tarreaub277d6e2012-05-11 16:59:14 +02001033 sock_raw_shutw(si);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001034 goto out_wakeup;
1035 }
Willy Tarreaud06e7112009-03-29 10:18:41 +02001036
Willy Tarreau59454bf2009-09-20 11:13:40 +02001037 if ((ob->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_FULL|BF_HIJACK)) == 0)
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001038 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001039 ob->wex = TICK_ETERNITY;
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001040 }
1041 else {
Willy Tarreauc54aef32009-07-27 20:08:06 +02001042 /* Otherwise there are remaining data to be sent in the buffer,
1043 * which means we have to poll before doing so.
1044 */
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001045 EV_FD_COND_S(si->fd, DIR_WR);
Willy Tarreauc54aef32009-07-27 20:08:06 +02001046 si->flags &= ~SI_FL_WAIT_DATA;
1047 if (!tick_isset(ob->wex))
1048 ob->wex = tick_add_ifset(now_ms, ob->wto);
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001049 }
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001050
Willy Tarreauc9619462009-03-09 22:40:57 +01001051 if (likely(ob->flags & BF_WRITE_ACTIVITY)) {
1052 /* update timeout if we have written something */
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001053 if ((ob->flags & (BF_OUT_EMPTY|BF_SHUTW|BF_WRITE_PARTIAL)) == BF_WRITE_PARTIAL)
Willy Tarreauc9619462009-03-09 22:40:57 +01001054 ob->wex = tick_add_ifset(now_ms, ob->wto);
1055
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001056 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreauc9619462009-03-09 22:40:57 +01001057 /* Note: to prevent the client from expiring read timeouts
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001058 * during writes, we refresh it. We only do this if the
1059 * interface is not configured for "independant streams",
1060 * because for some applications it's better not to do this,
1061 * for instance when continuously exchanging small amounts
1062 * of data which can full the socket buffers long before a
1063 * write timeout is detected.
Willy Tarreauc9619462009-03-09 22:40:57 +01001064 */
1065 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
1066 }
1067 }
1068
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001069 /* in case of special condition (error, shutdown, end of write...), we
1070 * have to notify the task.
1071 */
1072 if (likely((ob->flags & (BF_WRITE_NULL|BF_WRITE_ERROR|BF_SHUTW)) ||
Willy Tarreauba0b63d2009-09-20 08:09:44 +02001073 ((ob->flags & BF_OUT_EMPTY) && !ob->to_forward) ||
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001074 si->state != SI_ST_EST)) {
1075 out_wakeup:
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001076 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
1077 task_wakeup(si->owner, TASK_WOKEN_IO);
Willy Tarreaua456f2a2009-01-18 17:38:44 +01001078 }
Willy Tarreau3ffeba12008-12-14 14:42:35 +01001079}
1080
Willy Tarreau5c979a92012-05-07 17:15:39 +02001081/* stream sock operations */
Willy Tarreaub277d6e2012-05-11 16:59:14 +02001082struct sock_ops sock_raw = {
1083 .update = sock_raw_data_finish,
1084 .shutr = sock_raw_shutr,
1085 .shutw = sock_raw_shutw,
1086 .chk_rcv = sock_raw_chk_rcv,
1087 .chk_snd = sock_raw_chk_snd,
1088 .read = sock_raw_read,
1089 .write = sock_raw_write,
Willy Tarreau5c979a92012-05-07 17:15:39 +02001090};
Willy Tarreaubaaee002006-06-26 02:48:02 +02001091
1092/*
1093 * Local variables:
1094 * c-indent-level: 8
1095 * c-basic-offset: 8
1096 * End:
1097 */