blob: 1ba509e75056899800852ff8f4c84789d3e50782 [file] [log] [blame]
Willy Tarreaucff64112008-11-03 06:26:53 +01001/*
2 * Functions managing stream_interface structures
3 *
Willy Tarreauf873d752012-05-11 17:47:17 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Willy Tarreaucff64112008-11-03 06:26:53 +01005 *
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
13#include <errno.h>
14#include <fcntl.h>
15#include <stdio.h>
16#include <stdlib.h>
17
18#include <sys/socket.h>
19#include <sys/stat.h>
20#include <sys/types.h>
21
Willy Tarreaubf883e02014-11-25 21:10:35 +010022#include <common/buffer.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010023#include <common/compat.h>
24#include <common/config.h>
25#include <common/debug.h>
26#include <common/standard.h>
27#include <common/ticks.h>
28#include <common/time.h>
29
Willy Tarreauc7e42382012-08-24 19:22:53 +020030#include <proto/channel.h>
Willy Tarreau8b117082012-08-06 15:06:49 +020031#include <proto/connection.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010032#include <proto/fd.h>
Willy Tarreau96199b12012-08-24 00:46:52 +020033#include <proto/pipe.h>
Willy Tarreaubf883e02014-11-25 21:10:35 +010034#include <proto/session.h>
Willy Tarreau269358d2009-09-20 20:14:49 +020035#include <proto/stream_interface.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010036#include <proto/task.h>
37
Willy Tarreaufd31e532012-07-23 18:24:25 +020038#include <types/pipe.h>
39
Willy Tarreauf873d752012-05-11 17:47:17 +020040/* socket functions used when running a stream interface as a task */
Willy Tarreauf873d752012-05-11 17:47:17 +020041static void stream_int_update_embedded(struct stream_interface *si);
Willy Tarreau6fe15412013-09-29 15:16:03 +020042static void stream_int_shutr(struct stream_interface *si);
43static void stream_int_shutw(struct stream_interface *si);
Willy Tarreauf873d752012-05-11 17:47:17 +020044static void stream_int_chk_rcv(struct stream_interface *si);
45static void stream_int_chk_snd(struct stream_interface *si);
Willy Tarreauc5788912012-08-24 18:12:41 +020046static void stream_int_update_conn(struct stream_interface *si);
Willy Tarreau6fe15412013-09-29 15:16:03 +020047static void stream_int_shutr_conn(struct stream_interface *si);
48static void stream_int_shutw_conn(struct stream_interface *si);
Willy Tarreauc5788912012-08-24 18:12:41 +020049static void stream_int_chk_rcv_conn(struct stream_interface *si);
50static void stream_int_chk_snd_conn(struct stream_interface *si);
Willy Tarreau4aa36832012-10-02 20:07:22 +020051static void si_conn_recv_cb(struct connection *conn);
52static void si_conn_send_cb(struct connection *conn);
Willy Tarreau2396c1c2012-10-03 21:12:16 +020053static int si_conn_wake_cb(struct connection *conn);
Willy Tarreau27375622013-12-17 00:00:28 +010054static int si_idle_conn_wake_cb(struct connection *conn);
55static void si_idle_conn_null_cb(struct connection *conn);
Willy Tarreauf873d752012-05-11 17:47:17 +020056
Willy Tarreauc5788912012-08-24 18:12:41 +020057/* stream-interface operations for embedded tasks */
58struct si_ops si_embedded_ops = {
Willy Tarreau5c979a92012-05-07 17:15:39 +020059 .update = stream_int_update_embedded,
Willy Tarreau5c979a92012-05-07 17:15:39 +020060 .chk_rcv = stream_int_chk_rcv,
61 .chk_snd = stream_int_chk_snd,
Willy Tarreau8b3d7df2013-09-29 14:51:58 +020062 .shutr = stream_int_shutr,
63 .shutw = stream_int_shutw,
Willy Tarreau5c979a92012-05-07 17:15:39 +020064};
65
Willy Tarreauc5788912012-08-24 18:12:41 +020066/* stream-interface operations for connections */
67struct si_ops si_conn_ops = {
68 .update = stream_int_update_conn,
69 .chk_rcv = stream_int_chk_rcv_conn,
70 .chk_snd = stream_int_chk_snd_conn,
Willy Tarreau8b3d7df2013-09-29 14:51:58 +020071 .shutr = stream_int_shutr_conn,
72 .shutw = stream_int_shutw_conn,
Willy Tarreauc5788912012-08-24 18:12:41 +020073};
74
Willy Tarreau74beec32012-10-03 00:41:04 +020075struct data_cb si_conn_cb = {
Willy Tarreauc5788912012-08-24 18:12:41 +020076 .recv = si_conn_recv_cb,
77 .send = si_conn_send_cb,
Willy Tarreau4aa36832012-10-02 20:07:22 +020078 .wake = si_conn_wake_cb,
Willy Tarreauc5788912012-08-24 18:12:41 +020079};
80
Willy Tarreau27375622013-12-17 00:00:28 +010081struct data_cb si_idle_conn_cb = {
82 .recv = si_idle_conn_null_cb,
83 .send = si_idle_conn_null_cb,
84 .wake = si_idle_conn_wake_cb,
85};
86
Willy Tarreaucff64112008-11-03 06:26:53 +010087/*
88 * This function only has to be called once after a wakeup event in case of
89 * suspected timeout. It controls the stream interface timeouts and sets
90 * si->flags accordingly. It does NOT close anything, as this timeout may
91 * be used for any purpose. It returns 1 if the timeout fired, otherwise
92 * zero.
93 */
94int stream_int_check_timeouts(struct stream_interface *si)
95{
96 if (tick_is_expired(si->exp, now_ms)) {
97 si->flags |= SI_FL_EXP;
98 return 1;
99 }
100 return 0;
101}
102
Willy Tarreaufe3718a2008-11-30 18:14:12 +0100103/* to be called only when in SI_ST_DIS with SI_FL_ERR */
Willy Tarreaucff64112008-11-03 06:26:53 +0100104void stream_int_report_error(struct stream_interface *si)
105{
106 if (!si->err_type)
107 si->err_type = SI_ET_DATA_ERR;
108
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100109 si_oc(si)->flags |= CF_WRITE_ERROR;
110 si_ic(si)->flags |= CF_READ_ERROR;
Willy Tarreaucff64112008-11-03 06:26:53 +0100111}
112
113/*
Willy Tarreaudded32d2008-11-30 19:48:07 +0100114 * Returns a message to the client ; the connection is shut down for read,
115 * and the request is cleared so that no server connection can be initiated.
116 * The buffer is marked for read shutdown on the other side to protect the
117 * message, and the buffer write is enabled. The message is contained in a
Willy Tarreau148d0992010-01-10 10:21:21 +0100118 * "chunk". If it is null, then an empty message is used. The reply buffer does
119 * not need to be empty before this, and its contents will not be overwritten.
120 * The primary goal of this function is to return error messages to a client.
Willy Tarreaudded32d2008-11-30 19:48:07 +0100121 */
122void stream_int_retnclose(struct stream_interface *si, const struct chunk *msg)
123{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100124 struct channel *ic = si_ic(si);
125 struct channel *oc = si_oc(si);
126
127 channel_auto_read(ic);
128 channel_abort(ic);
129 channel_auto_close(ic);
130 channel_erase(ic);
131 channel_truncate(oc);
Willy Tarreau798e1282010-12-12 13:06:00 +0100132
Willy Tarreau148d0992010-01-10 10:21:21 +0100133 if (likely(msg && msg->len))
Willy Tarreauafc8a222014-11-28 15:46:27 +0100134 bo_inject(oc, msg->str, msg->len);
Willy Tarreaudded32d2008-11-30 19:48:07 +0100135
Willy Tarreauafc8a222014-11-28 15:46:27 +0100136 oc->wex = tick_add_ifset(now_ms, oc->wto);
137 channel_auto_read(oc);
138 channel_auto_close(oc);
139 channel_shutr_now(oc);
Willy Tarreau5d881d02009-12-27 22:51:06 +0100140}
141
Willy Tarreaufb90d942009-09-05 20:57:35 +0200142/* default update function for embedded tasks, to be used at the end of the i/o handler */
Willy Tarreauf873d752012-05-11 17:47:17 +0200143static void stream_int_update_embedded(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200144{
Willy Tarreau3488e252010-08-09 16:24:56 +0200145 int old_flags = si->flags;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100146 struct channel *ic = si_ic(si);
147 struct channel *oc = si_oc(si);
Willy Tarreau3488e252010-08-09 16:24:56 +0200148
Willy Tarreauafc8a222014-11-28 15:46:27 +0100149 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
Willy Tarreaufb90d942009-09-05 20:57:35 +0200150 __FUNCTION__,
Willy Tarreauafc8a222014-11-28 15:46:27 +0100151 si, si->state, ic->flags, oc->flags);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200152
153 if (si->state != SI_ST_EST)
154 return;
155
Willy Tarreauafc8a222014-11-28 15:46:27 +0100156 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
157 channel_is_empty(oc))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200158 si_shutw(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200159
Willy Tarreauafc8a222014-11-28 15:46:27 +0100160 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && channel_may_recv(oc))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200161 si->flags |= SI_FL_WAIT_DATA;
162
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200163 /* we're almost sure that we need some space if the buffer is not
164 * empty, even if it's not full, because the applets can't fill it.
165 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100166 if ((ic->flags & (CF_SHUTR|CF_DONT_READ)) == 0 && !channel_is_empty(ic))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200167 si->flags |= SI_FL_WAIT_ROOM;
168
Willy Tarreauafc8a222014-11-28 15:46:27 +0100169 if (oc->flags & CF_WRITE_ACTIVITY) {
170 if (tick_isset(oc->wex))
171 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200172 }
173
Willy Tarreauafc8a222014-11-28 15:46:27 +0100174 if (ic->flags & CF_READ_ACTIVITY ||
175 (oc->flags & CF_WRITE_ACTIVITY && !(si->flags & SI_FL_INDEP_STR))) {
176 if (tick_isset(ic->rex))
177 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200178 }
179
Willy Tarreau3488e252010-08-09 16:24:56 +0200180 /* save flags to detect changes */
181 old_flags = si->flags;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100182 if (likely((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
183 channel_may_recv(oc) &&
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100184 (si_opposite(si)->flags & SI_FL_WAIT_ROOM)))
185 si_chk_rcv(si_opposite(si));
Willy Tarreaufb90d942009-09-05 20:57:35 +0200186
Willy Tarreauafc8a222014-11-28 15:46:27 +0100187 if (((ic->flags & CF_READ_PARTIAL) && !channel_is_empty(ic)) &&
188 (ic->pipe /* always try to send spliced data */ ||
189 (ic->buf->i == 0 && (si_opposite(si)->flags & SI_FL_WAIT_DATA)))) {
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100190 si_chk_snd(si_opposite(si));
Willy Tarreau3488e252010-08-09 16:24:56 +0200191 /* check if the consumer has freed some space */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100192 if (channel_may_recv(ic) && !ic->pipe)
Willy Tarreau3488e252010-08-09 16:24:56 +0200193 si->flags &= ~SI_FL_WAIT_ROOM;
194 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200195
196 /* Note that we're trying to wake up in two conditions here :
197 * - special event, which needs the holder task attention
198 * - status indicating that the applet can go on working. This
199 * is rather hard because we might be blocking on output and
200 * don't want to wake up on input and vice-versa. The idea is
Willy Tarreau3488e252010-08-09 16:24:56 +0200201 * to only rely on the changes the chk_* might have performed.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200202 */
203 if (/* check stream interface changes */
Willy Tarreau3488e252010-08-09 16:24:56 +0200204 ((old_flags & ~si->flags) & (SI_FL_WAIT_ROOM|SI_FL_WAIT_DATA)) ||
205
206 /* changes on the production side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100207 (ic->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200208 si->state != SI_ST_EST ||
209 (si->flags & SI_FL_ERR) ||
Willy Tarreauafc8a222014-11-28 15:46:27 +0100210 ((ic->flags & CF_READ_PARTIAL) &&
211 (!ic->to_forward || si_opposite(si)->state != SI_ST_EST)) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200212
213 /* changes on the consumption side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100214 (oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
215 ((oc->flags & CF_WRITE_ACTIVITY) &&
216 ((oc->flags & CF_SHUTW) ||
217 ((oc->flags & CF_WAKE_WRITE) &&
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100218 (si_opposite(si)->state != SI_ST_EST ||
Willy Tarreauafc8a222014-11-28 15:46:27 +0100219 (channel_is_empty(oc) && !oc->to_forward)))))) {
Willy Tarreau07373b82014-11-28 12:08:47 +0100220 if (!(si->flags & SI_FL_DONT_WAKE))
221 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200222 }
Willy Tarreauafc8a222014-11-28 15:46:27 +0100223 if (ic->flags & CF_READ_ACTIVITY)
224 ic->flags &= ~CF_READ_DONTWAIT;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200225}
226
Willy Tarreau4a36b562012-08-06 19:31:45 +0200227/*
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200228 * This function performs a shutdown-read on a stream interface attached to an
229 * applet in a connected or init state (it does nothing for other states). It
230 * either shuts the read side or marks itself as closed. The buffer flags are
231 * updated to reflect the new state. If the stream interface has SI_FL_NOHALF,
232 * we also forward the close to the write side. The owner task is woken up if
Willy Tarreau6fe15412013-09-29 15:16:03 +0200233 * it exists.
Willy Tarreau4a36b562012-08-06 19:31:45 +0200234 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200235static void stream_int_shutr(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200236{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100237 struct channel *ic = si_ic(si);
238
239 ic->flags &= ~CF_SHUTR_NOW;
240 if (ic->flags & CF_SHUTR)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200241 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100242 ic->flags |= CF_SHUTR;
243 ic->rex = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200244 si->flags &= ~SI_FL_WAIT_ROOM;
245
246 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200247 return;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200248
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100249 if (si_oc(si)->flags & CF_SHUTW) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200250 si->state = SI_ST_DIS;
251 si->exp = TICK_ETERNITY;
Willy Tarreau4a59f2f2013-10-24 20:10:45 +0200252 si_applet_release(si);
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200253 }
Willy Tarreau4a36b562012-08-06 19:31:45 +0200254 else if (si->flags & SI_FL_NOHALF) {
255 /* we want to immediately forward this close to the write side */
256 return stream_int_shutw(si);
257 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200258
Willy Tarreau4a36b562012-08-06 19:31:45 +0200259 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau07373b82014-11-28 12:08:47 +0100260 if (!(si->flags & SI_FL_DONT_WAKE))
261 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200262}
263
Willy Tarreau4a36b562012-08-06 19:31:45 +0200264/*
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200265 * This function performs a shutdown-write on a stream interface attached to an
266 * applet in a connected or init state (it does nothing for other states). It
267 * either shuts the write side or marks itself as closed. The buffer flags are
268 * updated to reflect the new state. It does also close everything if the SI
269 * was marked as being in error state. The owner task is woken up if it exists.
Willy Tarreau4a36b562012-08-06 19:31:45 +0200270 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200271static void stream_int_shutw(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200272{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100273 struct channel *ic = si_ic(si);
274 struct channel *oc = si_oc(si);
275
276 oc->flags &= ~CF_SHUTW_NOW;
277 if (oc->flags & CF_SHUTW)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200278 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100279 oc->flags |= CF_SHUTW;
280 oc->wex = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200281 si->flags &= ~SI_FL_WAIT_DATA;
282
283 switch (si->state) {
284 case SI_ST_EST:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200285 /* we have to shut before closing, otherwise some short messages
286 * may never leave the system, especially when there are remaining
287 * unread data in the socket input buffer, or when nolinger is set.
288 * However, if SI_FL_NOLINGER is explicitly set, we know there is
289 * no risk so we close both sides immediately.
290 */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200291 if (!(si->flags & (SI_FL_ERR | SI_FL_NOLINGER)) &&
Willy Tarreauafc8a222014-11-28 15:46:27 +0100292 !(ic->flags & (CF_SHUTR|CF_DONT_READ)))
Willy Tarreau6fe15412013-09-29 15:16:03 +0200293 return;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200294
295 /* fall through */
296 case SI_ST_CON:
297 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100298 case SI_ST_QUE:
299 case SI_ST_TAR:
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200300 /* Note that none of these states may happen with applets */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200301 si->state = SI_ST_DIS;
Willy Tarreau4a59f2f2013-10-24 20:10:45 +0200302 si_applet_release(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200303 default:
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200304 si->flags &= ~(SI_FL_WAIT_ROOM | SI_FL_NOLINGER);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100305 ic->flags &= ~CF_SHUTR_NOW;
306 ic->flags |= CF_SHUTR;
307 ic->rex = TICK_ETERNITY;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200308 si->exp = TICK_ETERNITY;
309 }
310
Willy Tarreau4a36b562012-08-06 19:31:45 +0200311 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau07373b82014-11-28 12:08:47 +0100312 if (!(si->flags & SI_FL_DONT_WAKE))
313 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200314}
315
316/* default chk_rcv function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200317static void stream_int_chk_rcv(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200318{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100319 struct channel *ic = si_ic(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200320
Willy Tarreauafc8a222014-11-28 15:46:27 +0100321 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
Willy Tarreaufb90d942009-09-05 20:57:35 +0200322 __FUNCTION__,
Willy Tarreauafc8a222014-11-28 15:46:27 +0100323 si, si->state, ic->flags, si_oc(si)->flags);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200324
Willy Tarreauafc8a222014-11-28 15:46:27 +0100325 if (unlikely(si->state != SI_ST_EST || (ic->flags & (CF_SHUTR|CF_DONT_READ))))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200326 return;
327
Willy Tarreauafc8a222014-11-28 15:46:27 +0100328 if (!channel_may_recv(ic) || ic->pipe) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200329 /* stop reading */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200330 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200331 }
332 else {
333 /* (re)start reading */
334 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreau07373b82014-11-28 12:08:47 +0100335 if (!(si->flags & SI_FL_DONT_WAKE))
336 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200337 }
338}
339
340/* default chk_snd function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200341static void stream_int_chk_snd(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200342{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100343 struct channel *oc = si_oc(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200344
Willy Tarreauafc8a222014-11-28 15:46:27 +0100345 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
Willy Tarreaufb90d942009-09-05 20:57:35 +0200346 __FUNCTION__,
Willy Tarreauafc8a222014-11-28 15:46:27 +0100347 si, si->state, si_ic(si)->flags, oc->flags);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200348
Willy Tarreauafc8a222014-11-28 15:46:27 +0100349 if (unlikely(si->state != SI_ST_EST || (oc->flags & CF_SHUTW)))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200350 return;
351
352 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100353 channel_is_empty(oc)) /* called with nothing to send ! */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200354 return;
355
356 /* Otherwise there are remaining data to be sent in the buffer,
357 * so we tell the handler.
358 */
359 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100360 if (!tick_isset(oc->wex))
361 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200362
Willy Tarreau07373b82014-11-28 12:08:47 +0100363 if (!(si->flags & SI_FL_DONT_WAKE))
364 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200365}
366
Willy Tarreau1fbe1c92013-12-01 09:35:41 +0100367/* Register an applet to handle a stream_interface as part of the
368 * stream interface's owner task. The SI will wake it up everytime it
369 * is solicited. The task's processing function must call the applet's
370 * function before returning. It must be deleted by the task handler
371 * using stream_int_unregister_handler(), possibly from within the
372 * function itself. It also pre-initializes the applet's context and
373 * returns it (or NULL in case it could not be allocated).
Willy Tarreaufb90d942009-09-05 20:57:35 +0200374 */
Willy Tarreau1fbe1c92013-12-01 09:35:41 +0100375struct appctx *stream_int_register_handler(struct stream_interface *si, struct si_applet *app)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200376{
Willy Tarreau0a23bcb2013-12-01 11:31:38 +0100377 struct appctx *appctx;
378
Willy Tarreau07373b82014-11-28 12:08:47 +0100379 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si_task(si));
Willy Tarreaufb90d942009-09-05 20:57:35 +0200380
Willy Tarreau0a23bcb2013-12-01 11:31:38 +0100381 appctx = si_alloc_appctx(si);
Willy Tarreaua69fc9f2014-12-22 19:34:00 +0100382 if (!appctx)
Willy Tarreau0a23bcb2013-12-01 11:31:38 +0100383 return NULL;
384
385 appctx_set_applet(appctx, app);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200386 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau1fbe1c92013-12-01 09:35:41 +0100387 return si_appctx(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200388}
389
Willy Tarreaufb90d942009-09-05 20:57:35 +0200390/* Unregister a stream interface handler. This must be called by the handler task
Willy Tarreau128b03c2012-11-11 23:14:16 +0100391 * itself when it detects that it is in the SI_ST_DIS state.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200392 */
393void stream_int_unregister_handler(struct stream_interface *si)
394{
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200395 si_detach(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200396}
397
Willy Tarreau2c6be842012-07-06 17:12:34 +0200398/* This callback is used to send a valid PROXY protocol line to a socket being
Willy Tarreauafad0e02012-08-09 14:45:22 +0200399 * established. It returns 0 if it fails in a fatal way or needs to poll to go
400 * further, otherwise it returns non-zero and removes itself from the connection's
Willy Tarreaua1a74742012-08-24 12:14:49 +0200401 * flags (the bit is provided in <flag> by the caller). It is designed to be
402 * called by the connection handler and relies on it to commit polling changes.
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200403 * Note that it can emit a PROXY line by relying on the other end's address
404 * when the connection is attached to a stream interface, or by resolving the
405 * local address otherwise (also called a LOCAL line).
Willy Tarreau2c6be842012-07-06 17:12:34 +0200406 */
407int conn_si_send_proxy(struct connection *conn, unsigned int flag)
408{
Willy Tarreau2c6be842012-07-06 17:12:34 +0200409 /* we might have been called just after an asynchronous shutw */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200410 if (conn->flags & CO_FL_SOCK_WR_SH)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200411 goto out_error;
412
Willy Tarreaud02cdd22013-12-15 10:23:20 +0100413 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200414 goto out_error;
415
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100416 if (!fd_send_ready(conn->t.sock.fd))
417 goto out_wait;
418
Willy Tarreau2c6be842012-07-06 17:12:34 +0200419 /* If we have a PROXY line to send, we'll use this to validate the
420 * connection, in which case the connection is validated only once
421 * we've sent the whole proxy line. Otherwise we use connect().
422 */
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200423 while (conn->send_proxy_ofs) {
Willy Tarreau2c6be842012-07-06 17:12:34 +0200424 int ret;
425
426 /* The target server expects a PROXY line to be sent first.
427 * If the send_proxy_ofs is negative, it corresponds to the
428 * offset to start sending from then end of the proxy string
429 * (which is recomputed every time since it's constant). If
430 * it is positive, it means we have to send from the start.
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200431 * We can only send a "normal" PROXY line when the connection
432 * is attached to a stream interface. Otherwise we can only
433 * send a LOCAL line (eg: for use with health checks).
Willy Tarreau2c6be842012-07-06 17:12:34 +0200434 */
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200435 if (conn->data == &si_conn_cb) {
436 struct stream_interface *si = conn->owner;
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100437 struct connection *remote = objt_conn(si_opposite(si)->end);
David Safb76832014-05-08 23:42:08 -0400438 ret = make_proxy_line(trash.str, trash.size, objt_server(conn->target), remote);
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200439 }
440 else {
441 /* The target server expects a LOCAL line to be sent first. Retrieving
442 * local or remote addresses may fail until the connection is established.
443 */
444 conn_get_from_addr(conn);
445 if (!(conn->flags & CO_FL_ADDR_FROM_SET))
446 goto out_wait;
447
448 conn_get_to_addr(conn);
449 if (!(conn->flags & CO_FL_ADDR_TO_SET))
450 goto out_wait;
451
David Safb76832014-05-08 23:42:08 -0400452 ret = make_proxy_line(trash.str, trash.size, objt_server(conn->target), conn);
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200453 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200454
Willy Tarreau2c6be842012-07-06 17:12:34 +0200455 if (!ret)
456 goto out_error;
457
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200458 if (conn->send_proxy_ofs > 0)
459 conn->send_proxy_ofs = -ret; /* first call */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200460
Willy Tarreaua1a74742012-08-24 12:14:49 +0200461 /* we have to send trash from (ret+sp for -sp bytes). If the
462 * data layer has a pending write, we'll also set MSG_MORE.
463 */
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200464 ret = send(conn->t.sock.fd, trash.str + ret + conn->send_proxy_ofs, -conn->send_proxy_ofs,
Willy Tarreaua1a74742012-08-24 12:14:49 +0200465 (conn->flags & CO_FL_DATA_WR_ENA) ? MSG_MORE : 0);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200466
467 if (ret == 0)
468 goto out_wait;
469
470 if (ret < 0) {
Willy Tarreau95742a42013-09-03 09:02:11 +0200471 if (errno == EAGAIN || errno == ENOTCONN)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200472 goto out_wait;
Willy Tarreau7fe45692013-12-04 23:37:56 +0100473 if (errno == EINTR)
474 continue;
Willy Tarreau26f4a042013-12-04 23:44:10 +0100475 conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200476 goto out_error;
477 }
478
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200479 conn->send_proxy_ofs += ret; /* becomes zero once complete */
480 if (conn->send_proxy_ofs != 0)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200481 goto out_wait;
482
483 /* OK we've sent the whole line, we're connected */
Willy Tarreau7fe45692013-12-04 23:37:56 +0100484 break;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200485 }
486
Willy Tarreaua1a74742012-08-24 12:14:49 +0200487 /* The connection is ready now, simply return and let the connection
488 * handler notify upper layers if needed.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200489 */
490 if (conn->flags & CO_FL_WAIT_L4_CONN)
491 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200492 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200493 return 1;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200494
495 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200496 /* Write error on the file descriptor */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200497 conn->flags |= CO_FL_ERROR;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200498 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200499
500 out_wait:
Willy Tarreaua1a74742012-08-24 12:14:49 +0200501 __conn_sock_stop_recv(conn);
Willy Tarreaue1f50c42014-01-22 20:02:06 +0100502 fd_cant_send(conn->t.sock.fd);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200503 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200504}
505
Willy Tarreau27375622013-12-17 00:00:28 +0100506
507/* Tiny I/O callback called on recv/send I/O events on idle connections.
508 * It simply sets the CO_FL_SOCK_RD_SH flag so that si_idle_conn_wake_cb()
509 * is notified and can kill the connection.
510 */
511static void si_idle_conn_null_cb(struct connection *conn)
512{
513 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH))
514 return;
515
Willy Tarreau46be2e52014-01-20 12:10:52 +0100516 if (fdtab[conn->t.sock.fd].ev & (FD_POLL_ERR|FD_POLL_HUP)) {
517 fdtab[conn->t.sock.fd].linger_risk = 0;
Willy Tarreau27375622013-12-17 00:00:28 +0100518 conn->flags |= CO_FL_SOCK_RD_SH;
Willy Tarreau46be2e52014-01-20 12:10:52 +0100519 }
520 else {
521 conn_drain(conn);
522 }
Willy Tarreau27375622013-12-17 00:00:28 +0100523
524 /* disable draining if we were called and have no drain function */
525 if (!conn->ctrl->drain)
526 __conn_data_stop_recv(conn);
527}
528
529/* Callback to be used by connection I/O handlers when some activity is detected
530 * on an idle server connection. Its main purpose is to kill the connection once
531 * a close was detected on it. It returns 0 if it did nothing serious, or -1 if
532 * it killed the connection.
533 */
534static int si_idle_conn_wake_cb(struct connection *conn)
535{
536 struct stream_interface *si = conn->owner;
537
538 if (!conn_ctrl_ready(conn))
539 return 0;
540
541 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH)) {
542 /* warning, we can't do anything on <conn> after this call ! */
543 conn_force_close(conn);
544 conn_free(conn);
545 si->end = NULL;
546 return -1;
547 }
548 return 0;
549}
550
Willy Tarreau100c4672012-08-20 12:06:26 +0200551/* Callback to be used by connection I/O handlers upon completion. It differs from
Willy Tarreau4aa36832012-10-02 20:07:22 +0200552 * the update function in that it is designed to be called by lower layers after I/O
Willy Tarreau100c4672012-08-20 12:06:26 +0200553 * events have been completed. It will also try to wake the associated task up if
Willy Tarreauf16723e2012-08-24 12:52:22 +0200554 * an important event requires special handling. It relies on the connection handler
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200555 * to commit any polling updates. The function always returns 0.
Willy Tarreau100c4672012-08-20 12:06:26 +0200556 */
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200557static int si_conn_wake_cb(struct connection *conn)
Willy Tarreaufd31e532012-07-23 18:24:25 +0200558{
Willy Tarreaue603e692012-09-27 22:20:41 +0200559 struct stream_interface *si = conn->owner;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100560 struct channel *ic = si_ic(si);
561 struct channel *oc = si_oc(si);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200562
Willy Tarreauafc8a222014-11-28 15:46:27 +0100563 DPRINTF(stderr, "%s: si=%p, si->state=%d ic->flags=%08x oc->flags=%08x\n",
Willy Tarreaufd31e532012-07-23 18:24:25 +0200564 __FUNCTION__,
Willy Tarreauafc8a222014-11-28 15:46:27 +0100565 si, si->state, ic->flags, oc->flags);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200566
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200567 if (conn->flags & CO_FL_ERROR)
568 si->flags |= SI_FL_ERR;
569
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200570 /* check for recent connection establishment */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200571 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200572 si->exp = TICK_ETERNITY;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100573 oc->flags |= CF_WRITE_NULL;
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200574 }
575
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200576 /* process consumer side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100577 if (channel_is_empty(oc)) {
578 if (((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200579 (si->state == SI_ST_EST))
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200580 stream_int_shutw_conn(si);
Willy Tarreauf16723e2012-08-24 12:52:22 +0200581 __conn_data_stop_send(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100582 oc->wex = TICK_ETERNITY;
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200583 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200584
Willy Tarreauafc8a222014-11-28 15:46:27 +0100585 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && channel_may_recv(oc))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200586 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200587
Willy Tarreauafc8a222014-11-28 15:46:27 +0100588 if (oc->flags & CF_WRITE_ACTIVITY) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200589 /* update timeouts if we have written something */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100590 if ((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
591 !channel_is_empty(oc))
592 if (tick_isset(oc->wex))
593 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200594
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200595 if (!(si->flags & SI_FL_INDEP_STR))
Willy Tarreauafc8a222014-11-28 15:46:27 +0100596 if (tick_isset(ic->rex))
597 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200598
Willy Tarreauafc8a222014-11-28 15:46:27 +0100599 if (likely((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
600 channel_may_recv(oc) &&
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100601 (si_opposite(si)->flags & SI_FL_WAIT_ROOM)))
602 si_chk_rcv(si_opposite(si));
Willy Tarreaufd31e532012-07-23 18:24:25 +0200603 }
604
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200605 /* process producer side.
606 * We might have some data the consumer is waiting for.
607 * We can do fast-forwarding, but we avoid doing this for partial
608 * buffers, because it is very likely that it will be done again
609 * immediately afterwards once the following data is parsed (eg:
610 * HTTP chunking).
611 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100612 if (((ic->flags & CF_READ_PARTIAL) && !channel_is_empty(ic)) &&
613 (ic->pipe /* always try to send spliced data */ ||
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100614 (si_ib(si)->i == 0 && (si_opposite(si)->flags & SI_FL_WAIT_DATA)))) {
Willy Tarreauafc8a222014-11-28 15:46:27 +0100615 int last_len = ic->pipe ? ic->pipe->data : 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200616
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100617 si_chk_snd(si_opposite(si));
Willy Tarreaufd31e532012-07-23 18:24:25 +0200618
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200619 /* check if the consumer has freed some space either in the
620 * buffer or in the pipe.
621 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100622 if (channel_may_recv(ic) &&
623 (!last_len || !ic->pipe || ic->pipe->data < last_len))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200624 si->flags &= ~SI_FL_WAIT_ROOM;
625 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200626
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200627 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreauf16723e2012-08-24 12:52:22 +0200628 __conn_data_stop_recv(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100629 ic->rex = TICK_ETERNITY;
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200630 }
Willy Tarreauafc8a222014-11-28 15:46:27 +0100631 else if ((ic->flags & (CF_SHUTR|CF_READ_PARTIAL|CF_DONT_READ)) == CF_READ_PARTIAL &&
632 channel_may_recv(ic)) {
Willy Tarreau9f7c6a12012-11-19 16:43:14 +0100633 /* we must re-enable reading if si_chk_snd() has freed some space */
634 __conn_data_want_recv(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100635 if (!(ic->flags & CF_READ_NOEXP) && tick_isset(ic->rex))
636 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200637 }
638
639 /* wake the task up only when needed */
640 if (/* changes on the production side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100641 (ic->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200642 si->state != SI_ST_EST ||
643 (si->flags & SI_FL_ERR) ||
Willy Tarreauafc8a222014-11-28 15:46:27 +0100644 ((ic->flags & CF_READ_PARTIAL) &&
645 (!ic->to_forward || si_opposite(si)->state != SI_ST_EST)) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200646
647 /* changes on the consumption side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100648 (oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
649 ((oc->flags & CF_WRITE_ACTIVITY) &&
650 ((oc->flags & CF_SHUTW) ||
651 ((oc->flags & CF_WAKE_WRITE) &&
Willy Tarreau50fe03b2014-11-28 13:59:31 +0100652 (si_opposite(si)->state != SI_ST_EST ||
Willy Tarreauafc8a222014-11-28 15:46:27 +0100653 (channel_is_empty(oc) && !oc->to_forward)))))) {
Willy Tarreau07373b82014-11-28 12:08:47 +0100654 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200655 }
Willy Tarreauafc8a222014-11-28 15:46:27 +0100656 if (ic->flags & CF_READ_ACTIVITY)
657 ic->flags &= ~CF_READ_DONTWAIT;
Willy Tarreau10fc09e2014-11-25 19:46:36 +0100658
659 session_release_buffers(si_sess(si));
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200660 return 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200661}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200662
Willy Tarreau5368d802012-08-21 18:22:06 +0200663/*
664 * This function is called to send buffer data to a stream socket.
Godbache68e02d2013-10-11 15:48:29 +0800665 * It calls the transport layer's snd_buf function. It relies on the
Godbach4f489902013-12-04 17:24:06 +0800666 * caller to commit polling changes. The caller should check conn->flags
667 * for errors.
Willy Tarreau5368d802012-08-21 18:22:06 +0200668 */
Godbach4f489902013-12-04 17:24:06 +0800669static void si_conn_send(struct connection *conn)
Willy Tarreau5368d802012-08-21 18:22:06 +0200670{
Willy Tarreaue603e692012-09-27 22:20:41 +0200671 struct stream_interface *si = conn->owner;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100672 struct channel *oc = si_oc(si);
Willy Tarreau5368d802012-08-21 18:22:06 +0200673 int ret;
674
Willy Tarreauafc8a222014-11-28 15:46:27 +0100675 if (oc->pipe && conn->xprt->snd_pipe) {
676 ret = conn->xprt->snd_pipe(conn, oc->pipe);
Willy Tarreau96199b12012-08-24 00:46:52 +0200677 if (ret > 0)
Willy Tarreauafc8a222014-11-28 15:46:27 +0100678 oc->flags |= CF_WRITE_PARTIAL | CF_WROTE_DATA;
Willy Tarreau5368d802012-08-21 18:22:06 +0200679
Willy Tarreauafc8a222014-11-28 15:46:27 +0100680 if (!oc->pipe->data) {
681 put_pipe(oc->pipe);
682 oc->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200683 }
684
Willy Tarreau96199b12012-08-24 00:46:52 +0200685 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +0800686 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200687 }
688
689 /* At this point, the pipe is empty, but we may still have data pending
690 * in the normal buffer.
691 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100692 if (!oc->buf->o)
Godbach4f489902013-12-04 17:24:06 +0800693 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200694
Godbache68e02d2013-10-11 15:48:29 +0800695 /* when we're here, we already know that there is no spliced
Willy Tarreau5368d802012-08-21 18:22:06 +0200696 * data left, and that there are sendable buffered data.
697 */
Willy Tarreau310987a2014-01-22 19:46:33 +0100698 if (!(conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_DATA_WR_SH | CO_FL_WAIT_DATA | CO_FL_HANDSHAKE))) {
Willy Tarreau5368d802012-08-21 18:22:06 +0200699 /* check if we want to inform the kernel that we're interested in
700 * sending more data after this call. We want this if :
701 * - we're about to close after this last send and want to merge
702 * the ongoing FIN with the last segment.
703 * - we know we can't send everything at once and must get back
704 * here because of unaligned data
705 * - there is still a finite amount of data to forward
706 * The test is arranged so that the most common case does only 2
707 * tests.
708 */
Willy Tarreau1049b1f2014-02-02 01:51:17 +0100709 unsigned int send_flag = 0;
Willy Tarreau5368d802012-08-21 18:22:06 +0200710
Willy Tarreauafc8a222014-11-28 15:46:27 +0100711 if ((!(oc->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) &&
712 ((oc->to_forward && oc->to_forward != CHN_INFINITE_FORWARD) ||
713 (oc->flags & CF_EXPECT_MORE))) ||
714 ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW))
Willy Tarreau1049b1f2014-02-02 01:51:17 +0100715 send_flag |= CO_SFL_MSG_MORE;
Willy Tarreau5368d802012-08-21 18:22:06 +0200716
Willy Tarreauafc8a222014-11-28 15:46:27 +0100717 if (oc->flags & CF_STREAMER)
Willy Tarreau7bed9452014-02-02 02:00:24 +0100718 send_flag |= CO_SFL_STREAMER;
719
Willy Tarreauafc8a222014-11-28 15:46:27 +0100720 ret = conn->xprt->snd_buf(conn, oc->buf, send_flag);
Godbache68e02d2013-10-11 15:48:29 +0800721 if (ret > 0) {
Willy Tarreauafc8a222014-11-28 15:46:27 +0100722 oc->flags |= CF_WRITE_PARTIAL | CF_WROTE_DATA;
Willy Tarreau5368d802012-08-21 18:22:06 +0200723
Willy Tarreauafc8a222014-11-28 15:46:27 +0100724 if (!oc->buf->o) {
Godbache68e02d2013-10-11 15:48:29 +0800725 /* Always clear both flags once everything has been sent, they're one-shot */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100726 oc->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT);
Godbache68e02d2013-10-11 15:48:29 +0800727 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200728
Godbache68e02d2013-10-11 15:48:29 +0800729 /* if some data remain in the buffer, it's only because the
730 * system buffers are full, we will try next time.
731 */
Willy Tarreau5368d802012-08-21 18:22:06 +0200732 }
Godbache68e02d2013-10-11 15:48:29 +0800733 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200734}
735
736
Willy Tarreau100c4672012-08-20 12:06:26 +0200737/* Updates the timers and flags of a stream interface attached to a connection,
738 * depending on the buffers' flags. It should only be called once after the
739 * buffer flags have settled down, and before they are cleared. It doesn't
740 * harm to call it as often as desired (it just slightly hurts performance).
741 * It is only meant to be called by upper layers after buffer flags have been
742 * manipulated by analysers.
743 */
744void stream_int_update_conn(struct stream_interface *si)
745{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100746 struct channel *ic = si_ic(si);
747 struct channel *oc = si_oc(si);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200748 struct connection *conn = __objt_conn(si->end);
Willy Tarreau100c4672012-08-20 12:06:26 +0200749
Willy Tarreau100c4672012-08-20 12:06:26 +0200750 /* Check if we need to close the read side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100751 if (!(ic->flags & CF_SHUTR)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200752 /* Read not closed, update FD status and timeout for reads */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100753 if ((ic->flags & CF_DONT_READ) || !channel_may_recv(ic)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200754 /* stop reading */
755 if (!(si->flags & SI_FL_WAIT_ROOM)) {
Willy Tarreauafc8a222014-11-28 15:46:27 +0100756 if (!(ic->flags & CF_DONT_READ)) /* full */
Willy Tarreau100c4672012-08-20 12:06:26 +0200757 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200758 conn_data_stop_recv(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100759 ic->rex = TICK_ETERNITY;
Willy Tarreau100c4672012-08-20 12:06:26 +0200760 }
761 }
762 else {
763 /* (re)start reading and update timeout. Note: we don't recompute the timeout
764 * everytime we get here, otherwise it would risk never to expire. We only
765 * update it if is was not yet set. The stream socket handler will already
766 * have updated it if there has been a completed I/O.
767 */
768 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200769 conn_data_want_recv(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100770 if (!(ic->flags & (CF_READ_NOEXP|CF_DONT_READ)) && !tick_isset(ic->rex))
771 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreau100c4672012-08-20 12:06:26 +0200772 }
773 }
774
775 /* Check if we need to close the write side */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100776 if (!(oc->flags & CF_SHUTW)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200777 /* Write not closed, update FD status and timeout for writes */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100778 if (channel_is_empty(oc)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200779 /* stop writing */
780 if (!(si->flags & SI_FL_WAIT_DATA)) {
Willy Tarreauafc8a222014-11-28 15:46:27 +0100781 if ((oc->flags & CF_SHUTW_NOW) == 0)
Willy Tarreau100c4672012-08-20 12:06:26 +0200782 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200783 conn_data_stop_send(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100784 oc->wex = TICK_ETERNITY;
Willy Tarreau100c4672012-08-20 12:06:26 +0200785 }
786 }
787 else {
788 /* (re)start writing and update timeout. Note: we don't recompute the timeout
789 * everytime we get here, otherwise it would risk never to expire. We only
790 * update it if is was not yet set. The stream socket handler will already
791 * have updated it if there has been a completed I/O.
792 */
793 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200794 conn_data_want_send(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100795 if (!tick_isset(oc->wex)) {
796 oc->wex = tick_add_ifset(now_ms, oc->wto);
797 if (tick_isset(ic->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200798 /* Note: depending on the protocol, we don't know if we're waiting
799 * for incoming data or not. So in order to prevent the socket from
800 * expiring read timeouts during writes, we refresh the read timeout,
801 * except if it was already infinite or if we have explicitly setup
802 * independent streams.
803 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100804 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreau100c4672012-08-20 12:06:26 +0200805 }
806 }
807 }
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200808 }
809}
810
811/*
812 * This function performs a shutdown-read on a stream interface attached to
813 * a connection in a connected or init state (it does nothing for other
814 * states). It either shuts the read side or marks itself as closed. The buffer
815 * flags are updated to reflect the new state. If the stream interface has
816 * SI_FL_NOHALF, we also forward the close to the write side. If a control
817 * layer is defined, then it is supposed to be a socket layer and file
Willy Tarreau6fe15412013-09-29 15:16:03 +0200818 * descriptors are then shutdown or closed accordingly. The function
819 * automatically disables polling if needed.
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200820 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200821static void stream_int_shutr_conn(struct stream_interface *si)
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200822{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200823 struct connection *conn = __objt_conn(si->end);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100824 struct channel *ic = si_ic(si);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200825
Willy Tarreauafc8a222014-11-28 15:46:27 +0100826 ic->flags &= ~CF_SHUTR_NOW;
827 if (ic->flags & CF_SHUTR)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200828 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100829 ic->flags |= CF_SHUTR;
830 ic->rex = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200831 si->flags &= ~SI_FL_WAIT_ROOM;
832
833 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200834 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200835
Willy Tarreau2bb4a962014-11-28 11:11:05 +0100836 if (si_oc(si)->flags & CF_SHUTW) {
Willy Tarreau6fe15412013-09-29 15:16:03 +0200837 conn_full_close(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200838 si->state = SI_ST_DIS;
839 si->exp = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200840 }
841 else if (si->flags & SI_FL_NOHALF) {
842 /* we want to immediately forward this close to the write side */
843 return stream_int_shutw_conn(si);
844 }
845 else if (conn->ctrl) {
846 /* we want the caller to disable polling on this FD */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200847 conn_data_stop_recv(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200848 }
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200849}
850
851/*
852 * This function performs a shutdown-write on a stream interface attached to
853 * a connection in a connected or init state (it does nothing for other
854 * states). It either shuts the write side or marks itself as closed. The
855 * buffer flags are updated to reflect the new state. It does also close
856 * everything if the SI was marked as being in error state. If there is a
857 * data-layer shutdown, it is called. If a control layer is defined, then it is
858 * supposed to be a socket layer and file descriptors are then shutdown or
Willy Tarreau6fe15412013-09-29 15:16:03 +0200859 * closed accordingly. The function automatically disables polling if needed.
860 * Note: at the moment, we continue to check conn->ctrl eventhough we *know* it
861 * is valid. This will help selecting the proper shutdown() and setsockopt()
862 * calls if/when we implement remote sockets later.
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200863 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200864static void stream_int_shutw_conn(struct stream_interface *si)
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200865{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200866 struct connection *conn = __objt_conn(si->end);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100867 struct channel *ic = si_ic(si);
868 struct channel *oc = si_oc(si);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200869
Willy Tarreauafc8a222014-11-28 15:46:27 +0100870 oc->flags &= ~CF_SHUTW_NOW;
871 if (oc->flags & CF_SHUTW)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200872 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +0100873 oc->flags |= CF_SHUTW;
874 oc->wex = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200875 si->flags &= ~SI_FL_WAIT_DATA;
876
877 switch (si->state) {
878 case SI_ST_EST:
879 /* we have to shut before closing, otherwise some short messages
880 * may never leave the system, especially when there are remaining
881 * unread data in the socket input buffer, or when nolinger is set.
882 * However, if SI_FL_NOLINGER is explicitly set, we know there is
883 * no risk so we close both sides immediately.
884 */
885 if (si->flags & SI_FL_ERR) {
886 /* quick close, the socket is alredy shut anyway */
887 }
888 else if (si->flags & SI_FL_NOLINGER) {
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200889 /* unclean data-layer shutdown */
890 if (conn->xprt && conn->xprt->shutw)
891 conn->xprt->shutw(conn, 0);
892 }
893 else {
894 /* clean data-layer shutdown */
895 if (conn->xprt && conn->xprt->shutw)
896 conn->xprt->shutw(conn, 1);
897
898 /* If the stream interface is configured to disable half-open
899 * connections, we'll skip the shutdown(), but only if the
900 * read size is already closed. Otherwise we can't support
901 * closed write with pending read (eg: abortonclose while
902 * waiting for the server).
903 */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100904 if (!(si->flags & SI_FL_NOHALF) || !(ic->flags & (CF_SHUTR|CF_DONT_READ))) {
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200905 /* We shutdown transport layer */
Willy Tarreaud02cdd22013-12-15 10:23:20 +0100906 if (conn_ctrl_ready(conn))
Willy Tarreau6fe15412013-09-29 15:16:03 +0200907 shutdown(conn->t.sock.fd, SHUT_WR);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200908
Willy Tarreauafc8a222014-11-28 15:46:27 +0100909 if (!(ic->flags & (CF_SHUTR|CF_DONT_READ))) {
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200910 /* OK just a shutw, but we want the caller
911 * to disable polling on this FD if exists.
912 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200913 if (conn->ctrl)
914 conn_data_stop_send(conn);
915 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200916 }
917 }
918 }
919
920 /* fall through */
921 case SI_ST_CON:
922 /* we may have to close a pending connection, and mark the
923 * response buffer as shutr
924 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200925 conn_full_close(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200926 /* fall through */
927 case SI_ST_CER:
928 case SI_ST_QUE:
929 case SI_ST_TAR:
930 si->state = SI_ST_DIS;
Willy Tarreau4a59f2f2013-10-24 20:10:45 +0200931 /* fall through */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200932 default:
933 si->flags &= ~(SI_FL_WAIT_ROOM | SI_FL_NOLINGER);
Willy Tarreauafc8a222014-11-28 15:46:27 +0100934 ic->flags &= ~CF_SHUTR_NOW;
935 ic->flags |= CF_SHUTR;
936 ic->rex = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200937 si->exp = TICK_ETERNITY;
Willy Tarreau100c4672012-08-20 12:06:26 +0200938 }
939}
940
Willy Tarreau46a8d922012-08-20 12:38:36 +0200941/* This function is used for inter-stream-interface calls. It is called by the
942 * consumer to inform the producer side that it may be interested in checking
943 * for free space in the buffer. Note that it intentionally does not update
944 * timeouts, so that we can still check them later at wake-up. This function is
945 * dedicated to connection-based stream interfaces.
946 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200947static void stream_int_chk_rcv_conn(struct stream_interface *si)
Willy Tarreau46a8d922012-08-20 12:38:36 +0200948{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100949 struct channel *ic = si_ic(si);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200950 struct connection *conn = __objt_conn(si->end);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200951
Willy Tarreauafc8a222014-11-28 15:46:27 +0100952 if (unlikely(si->state > SI_ST_EST || (ic->flags & CF_SHUTR)))
Willy Tarreau46a8d922012-08-20 12:38:36 +0200953 return;
954
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200955 conn_refresh_polling_flags(conn);
Willy Tarreau7d281492012-12-16 19:19:13 +0100956
Willy Tarreauafc8a222014-11-28 15:46:27 +0100957 if ((ic->flags & CF_DONT_READ) || !channel_may_recv(ic)) {
Willy Tarreau46a8d922012-08-20 12:38:36 +0200958 /* stop reading */
Willy Tarreauafc8a222014-11-28 15:46:27 +0100959 if (!(ic->flags & CF_DONT_READ)) /* full */
Willy Tarreau46a8d922012-08-20 12:38:36 +0200960 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200961 __conn_data_stop_recv(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200962 }
963 else {
964 /* (re)start reading */
965 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200966 __conn_data_want_recv(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200967 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200968 conn_cond_update_data_polling(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200969}
970
971
Willy Tarreaude5722c2012-08-20 15:01:10 +0200972/* This function is used for inter-stream-interface calls. It is called by the
973 * producer to inform the consumer side that it may be interested in checking
974 * for data in the buffer. Note that it intentionally does not update timeouts,
975 * so that we can still check them later at wake-up.
976 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200977static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200978{
Willy Tarreauafc8a222014-11-28 15:46:27 +0100979 struct channel *oc = si_oc(si);
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200980 struct connection *conn = __objt_conn(si->end);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200981
Willy Tarreauafc8a222014-11-28 15:46:27 +0100982 if (unlikely(si->state > SI_ST_EST || (oc->flags & CF_SHUTW)))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200983 return;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200984
Willy Tarreauafc8a222014-11-28 15:46:27 +0100985 if (unlikely(channel_is_empty(oc))) /* called with nothing to send ! */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200986 return;
987
Willy Tarreauafc8a222014-11-28 15:46:27 +0100988 if (!oc->pipe && /* spliced data wants to be forwarded ASAP */
Willy Tarreaub0165872012-12-15 10:12:39 +0100989 !(si->flags & SI_FL_WAIT_DATA)) /* not waiting for data */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200990 return;
991
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200992 if (conn->flags & (CO_FL_DATA_WR_ENA|CO_FL_CURR_WR_ENA)) {
Willy Tarreau5007d2a2013-07-18 22:09:48 +0200993 /* already subscribed to write notifications, will be called
994 * anyway, so let's avoid calling it especially if the reader
995 * is not ready.
996 */
997 return;
998 }
999
Willy Tarreau708e7172014-01-21 10:27:49 +01001000 /* Before calling the data-level operations, we have to prepare
1001 * the polling flags to ensure we properly detect changes.
1002 */
1003 conn_refresh_polling_flags(conn);
1004 __conn_data_want_send(conn);
Willy Tarreaud29a0662012-12-10 16:33:38 +01001005
Willy Tarreau708e7172014-01-21 10:27:49 +01001006 if (!(conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN))) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001007 si_conn_send(conn);
Willy Tarreau798c3c92014-01-21 10:30:08 +01001008 if (conn->flags & CO_FL_ERROR) {
Willy Tarreaud29a0662012-12-10 16:33:38 +01001009 /* Write error on the file descriptor */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001010 __conn_data_stop_both(conn);
Willy Tarreaud29a0662012-12-10 16:33:38 +01001011 si->flags |= SI_FL_ERR;
Willy Tarreaud29a0662012-12-10 16:33:38 +01001012 goto out_wakeup;
1013 }
Willy Tarreaude5722c2012-08-20 15:01:10 +02001014 }
1015
1016 /* OK, so now we know that some data might have been sent, and that we may
1017 * have to poll first. We have to do that too if the buffer is not empty.
1018 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001019 if (channel_is_empty(oc)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001020 /* the connection is established but we can't write. Either the
1021 * buffer is empty, or we just refrain from sending because the
1022 * ->o limit was reached. Maybe we just wrote the last
1023 * chunk and need to close.
1024 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001025 __conn_data_stop_send(conn);
Willy Tarreauafc8a222014-11-28 15:46:27 +01001026 if (((oc->flags & (CF_SHUTW|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001027 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreaude5722c2012-08-20 15:01:10 +02001028 (si->state == SI_ST_EST)) {
1029 si_shutw(si);
1030 goto out_wakeup;
1031 }
1032
Willy Tarreauafc8a222014-11-28 15:46:27 +01001033 if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0)
Willy Tarreaude5722c2012-08-20 15:01:10 +02001034 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001035 oc->wex = TICK_ETERNITY;
Willy Tarreaude5722c2012-08-20 15:01:10 +02001036 }
1037 else {
1038 /* Otherwise there are remaining data to be sent in the buffer,
1039 * which means we have to poll before doing so.
1040 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001041 __conn_data_want_send(conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001042 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001043 if (!tick_isset(oc->wex))
1044 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001045 }
1046
Willy Tarreauafc8a222014-11-28 15:46:27 +01001047 if (likely(oc->flags & CF_WRITE_ACTIVITY)) {
1048 struct channel *ic = si_ic(si);
1049
Willy Tarreaude5722c2012-08-20 15:01:10 +02001050 /* update timeout if we have written something */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001051 if ((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
1052 !channel_is_empty(oc))
1053 oc->wex = tick_add_ifset(now_ms, oc->wto);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001054
Willy Tarreauafc8a222014-11-28 15:46:27 +01001055 if (tick_isset(ic->rex) && !(si->flags & SI_FL_INDEP_STR)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001056 /* Note: to prevent the client from expiring read timeouts
1057 * during writes, we refresh it. We only do this if the
1058 * interface is not configured for "independent streams",
1059 * because for some applications it's better not to do this,
1060 * for instance when continuously exchanging small amounts
1061 * of data which can full the socket buffers long before a
1062 * write timeout is detected.
1063 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001064 ic->rex = tick_add_ifset(now_ms, ic->rto);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001065 }
1066 }
1067
1068 /* in case of special condition (error, shutdown, end of write...), we
1069 * have to notify the task.
1070 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001071 if (likely((oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) ||
1072 ((oc->flags & CF_WAKE_WRITE) &&
1073 ((channel_is_empty(oc) && !oc->to_forward) ||
Willy Tarreaue6300be2014-01-25 02:33:21 +01001074 si->state != SI_ST_EST)))) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001075 out_wakeup:
Willy Tarreau07373b82014-11-28 12:08:47 +01001076 if (!(si->flags & SI_FL_DONT_WAKE))
1077 task_wakeup(si_task(si), TASK_WOKEN_IO);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001078 }
Willy Tarreauf16723e2012-08-24 12:52:22 +02001079
1080 /* commit possible polling changes */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001081 conn_cond_update_polling(conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001082}
1083
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001084/*
Willy Tarreauce323de2012-08-20 21:41:06 +02001085 * This is the callback which is called by the connection layer to receive data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001086 * into the buffer from the connection. It iterates over the transport layer's
1087 * rcv_buf function.
Willy Tarreauce323de2012-08-20 21:41:06 +02001088 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001089static void si_conn_recv_cb(struct connection *conn)
Willy Tarreauce323de2012-08-20 21:41:06 +02001090{
Willy Tarreaue603e692012-09-27 22:20:41 +02001091 struct stream_interface *si = conn->owner;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001092 struct channel *ic = si_ic(si);
Willy Tarreauce323de2012-08-20 21:41:06 +02001093 int ret, max, cur_read;
1094 int read_poll = MAX_READ_POLL_LOOPS;
1095
1096 /* stop immediately on errors. Note that we DON'T want to stop on
1097 * POLL_ERR, as the poller might report a write error while there
1098 * are still data available in the recv buffer. This typically
1099 * happens when we send too large a request to a backend server
1100 * which rejects it before reading it all.
1101 */
1102 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001103 return;
Willy Tarreauce323de2012-08-20 21:41:06 +02001104
1105 /* stop here if we reached the end of data */
1106 if (conn_data_read0_pending(conn))
1107 goto out_shutdown_r;
1108
1109 /* maybe we were called immediately after an asynchronous shutr */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001110 if (ic->flags & CF_SHUTR)
Willy Tarreauce323de2012-08-20 21:41:06 +02001111 return;
1112
Willy Tarreau96199b12012-08-24 00:46:52 +02001113 cur_read = 0;
Willy Tarreau96199b12012-08-24 00:46:52 +02001114
Willy Tarreauafc8a222014-11-28 15:46:27 +01001115 if ((ic->flags & (CF_STREAMER | CF_STREAMER_FAST)) && !ic->buf->o &&
Willy Tarreau7e312732014-02-12 16:35:14 +01001116 global.tune.idle_timer &&
Willy Tarreauafc8a222014-11-28 15:46:27 +01001117 (unsigned short)(now_ms - ic->last_read) >= global.tune.idle_timer) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001118 /* The buffer was empty and nothing was transferred for more
1119 * than one second. This was caused by a pause and not by
1120 * congestion. Reset any streaming mode to reduce latency.
1121 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001122 ic->xfer_small = 0;
1123 ic->xfer_large = 0;
1124 ic->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauc5890e62014-02-09 17:47:01 +01001125 }
1126
Willy Tarreau96199b12012-08-24 00:46:52 +02001127 /* First, let's see if we may splice data across the channel without
1128 * using a buffer.
1129 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001130 if (conn->xprt->rcv_pipe &&
Willy Tarreauafc8a222014-11-28 15:46:27 +01001131 (ic->pipe || ic->to_forward >= MIN_SPLICE_FORWARD) &&
1132 ic->flags & CF_KERN_SPLICING) {
1133 if (buffer_not_empty(ic->buf)) {
Willy Tarreau96199b12012-08-24 00:46:52 +02001134 /* We're embarrassed, there are already data pending in
1135 * the buffer and we don't want to have them at two
1136 * locations at a time. Let's indicate we need some
1137 * place and ask the consumer to hurry.
1138 */
1139 goto abort_splice;
1140 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001141
Willy Tarreauafc8a222014-11-28 15:46:27 +01001142 if (unlikely(ic->pipe == NULL)) {
1143 if (pipes_used >= global.maxpipes || !(ic->pipe = get_pipe())) {
1144 ic->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +02001145 goto abort_splice;
1146 }
1147 }
1148
Willy Tarreauafc8a222014-11-28 15:46:27 +01001149 ret = conn->xprt->rcv_pipe(conn, ic->pipe, ic->to_forward);
Willy Tarreau96199b12012-08-24 00:46:52 +02001150 if (ret < 0) {
1151 /* splice not supported on this end, let's disable it */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001152 ic->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +02001153 goto abort_splice;
1154 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001155
Willy Tarreau96199b12012-08-24 00:46:52 +02001156 if (ret > 0) {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001157 if (ic->to_forward != CHN_INFINITE_FORWARD)
1158 ic->to_forward -= ret;
1159 ic->total += ret;
Willy Tarreau96199b12012-08-24 00:46:52 +02001160 cur_read += ret;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001161 ic->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +02001162 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001163
1164 if (conn_data_read0_pending(conn))
1165 goto out_shutdown_r;
1166
1167 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001168 return;
Willy Tarreau96199b12012-08-24 00:46:52 +02001169
Willy Tarreau61d39a02013-07-18 21:49:32 +02001170 if (conn->flags & CO_FL_WAIT_ROOM) {
1171 /* the pipe is full or we have read enough data that it
1172 * could soon be full. Let's stop before needing to poll.
1173 */
Willy Tarreau56a77e52012-09-02 18:34:44 +02001174 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau61d39a02013-07-18 21:49:32 +02001175 __conn_data_stop_recv(conn);
1176 }
Willy Tarreau56a77e52012-09-02 18:34:44 +02001177
Willy Tarreauce323de2012-08-20 21:41:06 +02001178 /* splice not possible (anymore), let's go on on standard copy */
1179 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001180
1181 abort_splice:
Willy Tarreauafc8a222014-11-28 15:46:27 +01001182 if (ic->pipe && unlikely(!ic->pipe->data)) {
1183 put_pipe(ic->pipe);
1184 ic->pipe = NULL;
Willy Tarreau96199b12012-08-24 00:46:52 +02001185 }
1186
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001187 /* now we'll need a buffer */
Willy Tarreau78955f42014-12-28 13:09:02 +01001188 if (!session_alloc_recv_buffer(ic)) {
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001189 si->flags |= SI_FL_WAIT_ROOM;
1190 goto end_recv;
1191 }
1192
Willy Tarreau61d39a02013-07-18 21:49:32 +02001193 /* Important note : if we're called with POLL_IN|POLL_HUP, it means the read polling
1194 * was enabled, which implies that the recv buffer was not full. So we have a guarantee
1195 * that if such an event is not handled above in splice, it will be handled here by
1196 * recv().
1197 */
Willy Tarreau310987a2014-01-22 19:46:33 +01001198 while (!(conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_DATA_RD_SH | CO_FL_WAIT_ROOM | CO_FL_HANDSHAKE))) {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001199 max = channel_recv_max(ic);
Willy Tarreauce323de2012-08-20 21:41:06 +02001200
1201 if (!max) {
Willy Tarreau56a77e52012-09-02 18:34:44 +02001202 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +02001203 break;
1204 }
1205
Willy Tarreauafc8a222014-11-28 15:46:27 +01001206 ret = conn->xprt->rcv_buf(conn, ic->buf, max);
Willy Tarreauce323de2012-08-20 21:41:06 +02001207 if (ret <= 0)
1208 break;
1209
1210 cur_read += ret;
1211
1212 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001213 if (ic->to_forward && !(ic->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001214 unsigned long fwd = ret;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001215 if (ic->to_forward != CHN_INFINITE_FORWARD) {
1216 if (fwd > ic->to_forward)
1217 fwd = ic->to_forward;
1218 ic->to_forward -= fwd;
Willy Tarreauce323de2012-08-20 21:41:06 +02001219 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001220 b_adv(ic->buf, fwd);
Willy Tarreauce323de2012-08-20 21:41:06 +02001221 }
1222
Willy Tarreauafc8a222014-11-28 15:46:27 +01001223 ic->flags |= CF_READ_PARTIAL;
1224 ic->total += ret;
Willy Tarreauce323de2012-08-20 21:41:06 +02001225
Willy Tarreauafc8a222014-11-28 15:46:27 +01001226 if (!channel_may_recv(ic)) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001227 si->flags |= SI_FL_WAIT_ROOM;
1228 break;
1229 }
1230
Willy Tarreauafc8a222014-11-28 15:46:27 +01001231 if ((ic->flags & CF_READ_DONTWAIT) || --read_poll <= 0) {
Willy Tarreau34ac5662012-12-19 18:01:02 +01001232 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaud486ef52012-12-10 17:03:52 +01001233 __conn_data_stop_recv(conn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001234 break;
Willy Tarreau5fddab02012-11-09 18:27:26 +01001235 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001236
1237 /* if too many bytes were missing from last read, it means that
1238 * it's pointless trying to read again because the system does
1239 * not have them in buffers.
1240 */
1241 if (ret < max) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001242 /* if a streamer has read few data, it may be because we
1243 * have exhausted system buffers. It's not worth trying
1244 * again.
1245 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001246 if (ic->flags & CF_STREAMER)
Willy Tarreauce323de2012-08-20 21:41:06 +02001247 break;
1248
1249 /* if we read a large block smaller than what we requested,
1250 * it's almost certain we'll never get anything more.
1251 */
1252 if (ret >= global.tune.recv_enough)
1253 break;
1254 }
1255 } /* while !flags */
1256
Willy Tarreauc5890e62014-02-09 17:47:01 +01001257 if (cur_read) {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001258 if ((ic->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
1259 (cur_read <= ic->buf->size / 2)) {
1260 ic->xfer_large = 0;
1261 ic->xfer_small++;
1262 if (ic->xfer_small >= 3) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001263 /* we have read less than half of the buffer in
1264 * one pass, and this happened at least 3 times.
1265 * This is definitely not a streamer.
1266 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001267 ic->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauc5890e62014-02-09 17:47:01 +01001268 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001269 else if (ic->xfer_small >= 2) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001270 /* if the buffer has been at least half full twice,
1271 * we receive faster than we send, so at least it
1272 * is not a "fast streamer".
1273 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001274 ic->flags &= ~CF_STREAMER_FAST;
Willy Tarreauc5890e62014-02-09 17:47:01 +01001275 }
1276 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001277 else if (!(ic->flags & CF_STREAMER_FAST) &&
1278 (cur_read >= ic->buf->size - global.tune.maxrewrite)) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001279 /* we read a full buffer at once */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001280 ic->xfer_small = 0;
1281 ic->xfer_large++;
1282 if (ic->xfer_large >= 3) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001283 /* we call this buffer a fast streamer if it manages
1284 * to be filled in one call 3 consecutive times.
1285 */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001286 ic->flags |= (CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauc5890e62014-02-09 17:47:01 +01001287 }
1288 }
1289 else {
Willy Tarreauafc8a222014-11-28 15:46:27 +01001290 ic->xfer_small = 0;
1291 ic->xfer_large = 0;
Willy Tarreauc5890e62014-02-09 17:47:01 +01001292 }
Willy Tarreauafc8a222014-11-28 15:46:27 +01001293 ic->last_read = now_ms;
Willy Tarreauc5890e62014-02-09 17:47:01 +01001294 }
1295
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001296 end_recv:
1297 if (conn->flags & CO_FL_ERROR)
1298 return;
1299
Willy Tarreauce323de2012-08-20 21:41:06 +02001300 if (conn_data_read0_pending(conn))
1301 /* connection closed */
1302 goto out_shutdown_r;
1303
1304 return;
1305
1306 out_shutdown_r:
1307 /* we received a shutdown */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001308 ic->flags |= CF_READ_NULL;
1309 if (ic->flags & CF_AUTO_CLOSE)
1310 channel_shutw_now(ic);
Willy Tarreauce323de2012-08-20 21:41:06 +02001311 stream_sock_read0(si);
1312 conn_data_read0(conn);
1313 return;
Willy Tarreauce323de2012-08-20 21:41:06 +02001314}
1315
1316/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001317 * This is the callback which is called by the connection layer to send data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001318 * from the buffer to the connection. It iterates over the transport layer's
1319 * snd_buf function.
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001320 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001321static void si_conn_send_cb(struct connection *conn)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001322{
Willy Tarreaue603e692012-09-27 22:20:41 +02001323 struct stream_interface *si = conn->owner;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001324
1325 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001326 return;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001327
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001328 if (conn->flags & CO_FL_HANDSHAKE)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001329 /* a handshake was requested */
1330 return;
1331
1332 /* we might have been called just after an asynchronous shutw */
Willy Tarreauafc8a222014-11-28 15:46:27 +01001333 if (si_oc(si)->flags & CF_SHUTW)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001334 return;
1335
1336 /* OK there are data waiting to be sent */
Godbach4f489902013-12-04 17:24:06 +08001337 si_conn_send(conn);
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001338
1339 /* OK all done */
1340 return;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001341}
1342
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001343/*
1344 * This function propagates a null read received on a socket-based connection.
1345 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
1346 * the close is also forwarded to the write side as an abort. This function is
1347 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
1348 * state on the socket.
1349 */
1350void stream_sock_read0(struct stream_interface *si)
1351{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001352 struct connection *conn = __objt_conn(si->end);
Willy Tarreauafc8a222014-11-28 15:46:27 +01001353 struct channel *ic = si_ic(si);
1354 struct channel *oc = si_oc(si);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001355
Willy Tarreauafc8a222014-11-28 15:46:27 +01001356 ic->flags &= ~CF_SHUTR_NOW;
1357 if (ic->flags & CF_SHUTR)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001358 return;
Willy Tarreauafc8a222014-11-28 15:46:27 +01001359 ic->flags |= CF_SHUTR;
1360 ic->rex = TICK_ETERNITY;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001361 si->flags &= ~SI_FL_WAIT_ROOM;
1362
1363 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1364 return;
1365
Willy Tarreauafc8a222014-11-28 15:46:27 +01001366 if (oc->flags & CF_SHUTW)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001367 goto do_close;
1368
1369 if (si->flags & SI_FL_NOHALF) {
1370 /* we want to immediately forward this close to the write side */
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001371 /* force flag on ssl to keep session in cache */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001372 if (conn->xprt->shutw)
1373 conn->xprt->shutw(conn, 0);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001374 goto do_close;
1375 }
1376
1377 /* otherwise that's just a normal read shutdown */
Willy Tarreauad38ace2013-12-15 14:19:38 +01001378 if (conn_ctrl_ready(conn))
1379 fdtab[conn->t.sock.fd].linger_risk = 0;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001380 __conn_data_stop_recv(conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001381 return;
1382
1383 do_close:
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001384 /* OK we completely close the socket here just as if we went through si_shut[rw]() */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001385 conn_full_close(conn);
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001386
Willy Tarreauafc8a222014-11-28 15:46:27 +01001387 ic->flags &= ~CF_SHUTR_NOW;
1388 ic->flags |= CF_SHUTR;
1389 ic->rex = TICK_ETERNITY;
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001390
Willy Tarreauafc8a222014-11-28 15:46:27 +01001391 oc->flags &= ~CF_SHUTW_NOW;
1392 oc->flags |= CF_SHUTW;
1393 oc->wex = TICK_ETERNITY;
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001394
1395 si->flags &= ~(SI_FL_WAIT_DATA | SI_FL_WAIT_ROOM);
1396
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001397 si->state = SI_ST_DIS;
1398 si->exp = TICK_ETERNITY;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001399 return;
1400}
1401
Willy Tarreaudded32d2008-11-30 19:48:07 +01001402/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001403 * Local variables:
1404 * c-indent-level: 8
1405 * c-basic-offset: 8
1406 * End:
1407 */