blob: 9025851d96c16bf92f9304c98c758a4b2472066c [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 Tarreau03cdb7c2012-08-27 23:14:58 +0200109 si->ob->flags |= CF_WRITE_ERROR;
110 si->ib->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 Tarreau8263d2b2012-08-28 00:06:31 +0200124 channel_auto_read(si->ib);
125 channel_abort(si->ib);
126 channel_auto_close(si->ib);
127 channel_erase(si->ib);
Willy Tarreau319f7452015-01-14 20:32:59 +0100128 channel_truncate(si->ob);
Willy Tarreau798e1282010-12-12 13:06:00 +0100129
Willy Tarreau148d0992010-01-10 10:21:21 +0100130 if (likely(msg && msg->len))
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200131 bo_inject(si->ob, msg->str, msg->len);
Willy Tarreaudded32d2008-11-30 19:48:07 +0100132
133 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200134 channel_auto_read(si->ob);
135 channel_auto_close(si->ob);
136 channel_shutr_now(si->ob);
Willy Tarreau5d881d02009-12-27 22:51:06 +0100137}
138
Willy Tarreaufb90d942009-09-05 20:57:35 +0200139/* default update function for embedded tasks, to be used at the end of the i/o handler */
Willy Tarreauf873d752012-05-11 17:47:17 +0200140static void stream_int_update_embedded(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200141{
Willy Tarreau3488e252010-08-09 16:24:56 +0200142 int old_flags = si->flags;
143
Willy Tarreaufb90d942009-09-05 20:57:35 +0200144 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
145 __FUNCTION__,
146 si, si->state, si->ib->flags, si->ob->flags);
147
148 if (si->state != SI_ST_EST)
149 return;
150
Willy Tarreaub31c9712012-11-11 23:05:39 +0100151 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200152 channel_is_empty(si->ob))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200153 si_shutw(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200154
Willy Tarreau3889fff2015-01-13 20:20:10 +0100155 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && channel_may_recv(si->ob))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200156 si->flags |= SI_FL_WAIT_DATA;
157
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200158 /* we're almost sure that we need some space if the buffer is not
159 * empty, even if it's not full, because the applets can't fill it.
160 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200161 if ((si->ib->flags & (CF_SHUTR|CF_DONT_READ)) == 0 && !channel_is_empty(si->ib))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200162 si->flags |= SI_FL_WAIT_ROOM;
163
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200164 if (si->ob->flags & CF_WRITE_ACTIVITY) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200165 if (tick_isset(si->ob->wex))
166 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
167 }
168
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200169 if (si->ib->flags & CF_READ_ACTIVITY ||
170 (si->ob->flags & CF_WRITE_ACTIVITY && !(si->flags & SI_FL_INDEP_STR))) {
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200171 if (tick_isset(si->ib->rex))
172 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
173 }
174
Willy Tarreau3488e252010-08-09 16:24:56 +0200175 /* save flags to detect changes */
176 old_flags = si->flags;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200177 if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
Willy Tarreau3889fff2015-01-13 20:20:10 +0100178 channel_may_recv(si->ob) &&
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200179 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200180 si_chk_rcv(si->ob->prod);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200181
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200182 if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) &&
Willy Tarreau56efc482014-12-09 19:56:47 +0100183 (si->ib->pipe /* always try to send spliced data */ ||
184 (si->ib->buf->i == 0 && (si->ib->cons->flags & SI_FL_WAIT_DATA)))) {
Willy Tarreau73b013b2012-05-21 16:31:45 +0200185 si_chk_snd(si->ib->cons);
Willy Tarreau3488e252010-08-09 16:24:56 +0200186 /* check if the consumer has freed some space */
Willy Tarreau3889fff2015-01-13 20:20:10 +0100187 if (channel_may_recv(si->ib) && !si->ib->pipe)
Willy Tarreau3488e252010-08-09 16:24:56 +0200188 si->flags &= ~SI_FL_WAIT_ROOM;
189 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200190
191 /* Note that we're trying to wake up in two conditions here :
192 * - special event, which needs the holder task attention
193 * - status indicating that the applet can go on working. This
194 * is rather hard because we might be blocking on output and
195 * don't want to wake up on input and vice-versa. The idea is
Willy Tarreau3488e252010-08-09 16:24:56 +0200196 * to only rely on the changes the chk_* might have performed.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200197 */
198 if (/* check stream interface changes */
Willy Tarreau3488e252010-08-09 16:24:56 +0200199 ((old_flags & ~si->flags) & (SI_FL_WAIT_ROOM|SI_FL_WAIT_DATA)) ||
200
201 /* changes on the production side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200202 (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200203 si->state != SI_ST_EST ||
204 (si->flags & SI_FL_ERR) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200205 ((si->ib->flags & CF_READ_PARTIAL) &&
Willy Tarreau3488e252010-08-09 16:24:56 +0200206 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
207
208 /* changes on the consumption side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200209 (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
210 ((si->ob->flags & CF_WRITE_ACTIVITY) &&
Willy Tarreaue6300be2014-01-25 02:33:21 +0100211 ((si->ob->flags & CF_SHUTW) ||
212 ((si->ob->flags & CF_WAKE_WRITE) &&
213 (si->ob->prod->state != SI_ST_EST ||
214 (channel_is_empty(si->ob) && !si->ob->to_forward)))))) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200215 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
216 task_wakeup(si->owner, TASK_WOKEN_IO);
217 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200218 if (si->ib->flags & CF_READ_ACTIVITY)
219 si->ib->flags &= ~CF_READ_DONTWAIT;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200220}
221
Willy Tarreau4a36b562012-08-06 19:31:45 +0200222/*
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200223 * This function performs a shutdown-read on a stream interface attached to an
224 * applet in a connected or init state (it does nothing for other states). It
225 * either shuts the read side or marks itself as closed. The buffer flags are
226 * updated to reflect the new state. If the stream interface has SI_FL_NOHALF,
227 * we also forward the close to the write side. The owner task is woken up if
Willy Tarreau6fe15412013-09-29 15:16:03 +0200228 * it exists.
Willy Tarreau4a36b562012-08-06 19:31:45 +0200229 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200230static void stream_int_shutr(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200231{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200232 si->ib->flags &= ~CF_SHUTR_NOW;
233 if (si->ib->flags & CF_SHUTR)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200234 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200235 si->ib->flags |= CF_SHUTR;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200236 si->ib->rex = TICK_ETERNITY;
237 si->flags &= ~SI_FL_WAIT_ROOM;
238
239 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200240 return;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200241
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200242 if (si->ob->flags & CF_SHUTW) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200243 si->state = SI_ST_DIS;
244 si->exp = TICK_ETERNITY;
Willy Tarreau4a59f2f2013-10-24 20:10:45 +0200245 si_applet_release(si);
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200246 }
Willy Tarreau4a36b562012-08-06 19:31:45 +0200247 else if (si->flags & SI_FL_NOHALF) {
248 /* we want to immediately forward this close to the write side */
249 return stream_int_shutw(si);
250 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200251
Willy Tarreau4a36b562012-08-06 19:31:45 +0200252 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200253 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200254 task_wakeup(si->owner, TASK_WOKEN_IO);
255}
256
Willy Tarreau4a36b562012-08-06 19:31:45 +0200257/*
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200258 * This function performs a shutdown-write on a stream interface attached to an
259 * applet in a connected or init state (it does nothing for other states). It
260 * either shuts the write side or marks itself as closed. The buffer flags are
261 * updated to reflect the new state. It does also close everything if the SI
262 * was marked as being in error state. The owner task is woken up if it exists.
Willy Tarreau4a36b562012-08-06 19:31:45 +0200263 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200264static void stream_int_shutw(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200265{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200266 si->ob->flags &= ~CF_SHUTW_NOW;
267 if (si->ob->flags & CF_SHUTW)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200268 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200269 si->ob->flags |= CF_SHUTW;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200270 si->ob->wex = TICK_ETERNITY;
271 si->flags &= ~SI_FL_WAIT_DATA;
272
273 switch (si->state) {
274 case SI_ST_EST:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200275 /* we have to shut before closing, otherwise some short messages
276 * may never leave the system, especially when there are remaining
277 * unread data in the socket input buffer, or when nolinger is set.
278 * However, if SI_FL_NOLINGER is explicitly set, we know there is
279 * no risk so we close both sides immediately.
280 */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200281 if (!(si->flags & (SI_FL_ERR | SI_FL_NOLINGER)) &&
282 !(si->ib->flags & (CF_SHUTR|CF_DONT_READ)))
Willy Tarreau6fe15412013-09-29 15:16:03 +0200283 return;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200284
285 /* fall through */
286 case SI_ST_CON:
287 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100288 case SI_ST_QUE:
289 case SI_ST_TAR:
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200290 /* Note that none of these states may happen with applets */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200291 si->state = SI_ST_DIS;
Willy Tarreau4a59f2f2013-10-24 20:10:45 +0200292 si_applet_release(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200293 default:
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200294 si->flags &= ~(SI_FL_WAIT_ROOM | SI_FL_NOLINGER);
295 si->ib->flags &= ~CF_SHUTR_NOW;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200296 si->ib->flags |= CF_SHUTR;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200297 si->ib->rex = TICK_ETERNITY;
298 si->exp = TICK_ETERNITY;
299 }
300
Willy Tarreau4a36b562012-08-06 19:31:45 +0200301 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200302 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200303 task_wakeup(si->owner, TASK_WOKEN_IO);
304}
305
306/* default chk_rcv function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200307static void stream_int_chk_rcv(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200308{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200309 struct channel *ib = si->ib;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200310
311 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
312 __FUNCTION__,
313 si, si->state, si->ib->flags, si->ob->flags);
314
Willy Tarreaub31c9712012-11-11 23:05:39 +0100315 if (unlikely(si->state != SI_ST_EST || (ib->flags & (CF_SHUTR|CF_DONT_READ))))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200316 return;
317
Willy Tarreau3889fff2015-01-13 20:20:10 +0100318 if (!channel_may_recv(ib) || ib->pipe) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200319 /* stop reading */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200320 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200321 }
322 else {
323 /* (re)start reading */
324 si->flags &= ~SI_FL_WAIT_ROOM;
325 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
326 task_wakeup(si->owner, TASK_WOKEN_IO);
327 }
328}
329
330/* default chk_snd function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200331static void stream_int_chk_snd(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200332{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200333 struct channel *ob = si->ob;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200334
335 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
336 __FUNCTION__,
337 si, si->state, si->ib->flags, si->ob->flags);
338
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200339 if (unlikely(si->state != SI_ST_EST || (si->ob->flags & CF_SHUTW)))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200340 return;
341
342 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200343 channel_is_empty(ob)) /* called with nothing to send ! */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200344 return;
345
346 /* Otherwise there are remaining data to be sent in the buffer,
347 * so we tell the handler.
348 */
349 si->flags &= ~SI_FL_WAIT_DATA;
350 if (!tick_isset(ob->wex))
351 ob->wex = tick_add_ifset(now_ms, ob->wto);
352
353 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
354 task_wakeup(si->owner, TASK_WOKEN_IO);
355}
356
Willy Tarreau1fbe1c92013-12-01 09:35:41 +0100357/* Register an applet to handle a stream_interface as part of the
358 * stream interface's owner task. The SI will wake it up everytime it
359 * is solicited. The task's processing function must call the applet's
360 * function before returning. It must be deleted by the task handler
361 * using stream_int_unregister_handler(), possibly from within the
362 * function itself. It also pre-initializes the applet's context and
363 * returns it (or NULL in case it could not be allocated).
Willy Tarreaufb90d942009-09-05 20:57:35 +0200364 */
Willy Tarreau1fbe1c92013-12-01 09:35:41 +0100365struct appctx *stream_int_register_handler(struct stream_interface *si, struct si_applet *app)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200366{
Willy Tarreau0a23bcb2013-12-01 11:31:38 +0100367 struct appctx *appctx;
368
Simon Horman7abd00d2011-08-13 08:03:51 +0900369 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si->owner);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200370
Willy Tarreau0a23bcb2013-12-01 11:31:38 +0100371 appctx = si_alloc_appctx(si);
Willy Tarreaua69fc9f2014-12-22 19:34:00 +0100372 if (!appctx)
Willy Tarreau0a23bcb2013-12-01 11:31:38 +0100373 return NULL;
374
375 appctx_set_applet(appctx, app);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200376 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreau1fbe1c92013-12-01 09:35:41 +0100377 return si_appctx(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200378}
379
Willy Tarreaufb90d942009-09-05 20:57:35 +0200380/* Unregister a stream interface handler. This must be called by the handler task
Willy Tarreau128b03c2012-11-11 23:14:16 +0100381 * itself when it detects that it is in the SI_ST_DIS state.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200382 */
383void stream_int_unregister_handler(struct stream_interface *si)
384{
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200385 si_detach(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200386}
387
Willy Tarreau2c6be842012-07-06 17:12:34 +0200388/* This callback is used to send a valid PROXY protocol line to a socket being
Willy Tarreauafad0e02012-08-09 14:45:22 +0200389 * established. It returns 0 if it fails in a fatal way or needs to poll to go
390 * further, otherwise it returns non-zero and removes itself from the connection's
Willy Tarreaua1a74742012-08-24 12:14:49 +0200391 * flags (the bit is provided in <flag> by the caller). It is designed to be
392 * called by the connection handler and relies on it to commit polling changes.
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200393 * Note that it can emit a PROXY line by relying on the other end's address
394 * when the connection is attached to a stream interface, or by resolving the
395 * local address otherwise (also called a LOCAL line).
Willy Tarreau2c6be842012-07-06 17:12:34 +0200396 */
397int conn_si_send_proxy(struct connection *conn, unsigned int flag)
398{
Willy Tarreau2c6be842012-07-06 17:12:34 +0200399 /* we might have been called just after an asynchronous shutw */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200400 if (conn->flags & CO_FL_SOCK_WR_SH)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200401 goto out_error;
402
Willy Tarreaud02cdd22013-12-15 10:23:20 +0100403 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +0200404 goto out_error;
405
Willy Tarreaufd803bb2014-01-20 15:13:07 +0100406 if (!fd_send_ready(conn->t.sock.fd))
407 goto out_wait;
408
Willy Tarreau2c6be842012-07-06 17:12:34 +0200409 /* If we have a PROXY line to send, we'll use this to validate the
410 * connection, in which case the connection is validated only once
411 * we've sent the whole proxy line. Otherwise we use connect().
412 */
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200413 while (conn->send_proxy_ofs) {
Willy Tarreau2c6be842012-07-06 17:12:34 +0200414 int ret;
415
416 /* The target server expects a PROXY line to be sent first.
417 * If the send_proxy_ofs is negative, it corresponds to the
418 * offset to start sending from then end of the proxy string
419 * (which is recomputed every time since it's constant). If
420 * it is positive, it means we have to send from the start.
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200421 * We can only send a "normal" PROXY line when the connection
422 * is attached to a stream interface. Otherwise we can only
423 * send a LOCAL line (eg: for use with health checks).
Willy Tarreau2c6be842012-07-06 17:12:34 +0200424 */
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200425 if (conn->data == &si_conn_cb) {
426 struct stream_interface *si = conn->owner;
427 struct connection *remote = objt_conn(si->ob->prod->end);
David Safb76832014-05-08 23:42:08 -0400428 ret = make_proxy_line(trash.str, trash.size, objt_server(conn->target), remote);
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200429 }
430 else {
431 /* The target server expects a LOCAL line to be sent first. Retrieving
432 * local or remote addresses may fail until the connection is established.
433 */
434 conn_get_from_addr(conn);
435 if (!(conn->flags & CO_FL_ADDR_FROM_SET))
436 goto out_wait;
437
438 conn_get_to_addr(conn);
439 if (!(conn->flags & CO_FL_ADDR_TO_SET))
440 goto out_wait;
441
David Safb76832014-05-08 23:42:08 -0400442 ret = make_proxy_line(trash.str, trash.size, objt_server(conn->target), conn);
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200443 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200444
Willy Tarreau2c6be842012-07-06 17:12:34 +0200445 if (!ret)
446 goto out_error;
447
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200448 if (conn->send_proxy_ofs > 0)
449 conn->send_proxy_ofs = -ret; /* first call */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200450
Willy Tarreaua1a74742012-08-24 12:14:49 +0200451 /* we have to send trash from (ret+sp for -sp bytes). If the
452 * data layer has a pending write, we'll also set MSG_MORE.
453 */
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200454 ret = send(conn->t.sock.fd, trash.str + ret + conn->send_proxy_ofs, -conn->send_proxy_ofs,
Willy Tarreaua1a74742012-08-24 12:14:49 +0200455 (conn->flags & CO_FL_DATA_WR_ENA) ? MSG_MORE : 0);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200456
457 if (ret == 0)
458 goto out_wait;
459
460 if (ret < 0) {
Willy Tarreau95742a42013-09-03 09:02:11 +0200461 if (errno == EAGAIN || errno == ENOTCONN)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200462 goto out_wait;
Willy Tarreau7fe45692013-12-04 23:37:56 +0100463 if (errno == EINTR)
464 continue;
Willy Tarreau26f4a042013-12-04 23:44:10 +0100465 conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200466 goto out_error;
467 }
468
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200469 conn->send_proxy_ofs += ret; /* becomes zero once complete */
470 if (conn->send_proxy_ofs != 0)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200471 goto out_wait;
472
473 /* OK we've sent the whole line, we're connected */
Willy Tarreau7fe45692013-12-04 23:37:56 +0100474 break;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200475 }
476
Willy Tarreaua1a74742012-08-24 12:14:49 +0200477 /* The connection is ready now, simply return and let the connection
478 * handler notify upper layers if needed.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200479 */
480 if (conn->flags & CO_FL_WAIT_L4_CONN)
481 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200482 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200483 return 1;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200484
485 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200486 /* Write error on the file descriptor */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200487 conn->flags |= CO_FL_ERROR;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200488 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200489
490 out_wait:
Willy Tarreaua1a74742012-08-24 12:14:49 +0200491 __conn_sock_stop_recv(conn);
Willy Tarreaue1f50c42014-01-22 20:02:06 +0100492 fd_cant_send(conn->t.sock.fd);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200493 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200494}
495
Willy Tarreau27375622013-12-17 00:00:28 +0100496
497/* Tiny I/O callback called on recv/send I/O events on idle connections.
498 * It simply sets the CO_FL_SOCK_RD_SH flag so that si_idle_conn_wake_cb()
499 * is notified and can kill the connection.
500 */
501static void si_idle_conn_null_cb(struct connection *conn)
502{
503 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH))
504 return;
505
Willy Tarreau46be2e52014-01-20 12:10:52 +0100506 if (fdtab[conn->t.sock.fd].ev & (FD_POLL_ERR|FD_POLL_HUP)) {
507 fdtab[conn->t.sock.fd].linger_risk = 0;
Willy Tarreau27375622013-12-17 00:00:28 +0100508 conn->flags |= CO_FL_SOCK_RD_SH;
Willy Tarreau46be2e52014-01-20 12:10:52 +0100509 }
510 else {
511 conn_drain(conn);
512 }
Willy Tarreau27375622013-12-17 00:00:28 +0100513
514 /* disable draining if we were called and have no drain function */
515 if (!conn->ctrl->drain)
516 __conn_data_stop_recv(conn);
517}
518
519/* Callback to be used by connection I/O handlers when some activity is detected
520 * on an idle server connection. Its main purpose is to kill the connection once
521 * a close was detected on it. It returns 0 if it did nothing serious, or -1 if
522 * it killed the connection.
523 */
524static int si_idle_conn_wake_cb(struct connection *conn)
525{
526 struct stream_interface *si = conn->owner;
527
528 if (!conn_ctrl_ready(conn))
529 return 0;
530
531 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH)) {
532 /* warning, we can't do anything on <conn> after this call ! */
533 conn_force_close(conn);
534 conn_free(conn);
535 si->end = NULL;
536 return -1;
537 }
538 return 0;
539}
540
Willy Tarreau100c4672012-08-20 12:06:26 +0200541/* Callback to be used by connection I/O handlers upon completion. It differs from
Willy Tarreau4aa36832012-10-02 20:07:22 +0200542 * the update function in that it is designed to be called by lower layers after I/O
Willy Tarreau100c4672012-08-20 12:06:26 +0200543 * events have been completed. It will also try to wake the associated task up if
Willy Tarreauf16723e2012-08-24 12:52:22 +0200544 * an important event requires special handling. It relies on the connection handler
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200545 * to commit any polling updates. The function always returns 0.
Willy Tarreau100c4672012-08-20 12:06:26 +0200546 */
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200547static int si_conn_wake_cb(struct connection *conn)
Willy Tarreaufd31e532012-07-23 18:24:25 +0200548{
Willy Tarreaue603e692012-09-27 22:20:41 +0200549 struct stream_interface *si = conn->owner;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200550
551 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
552 __FUNCTION__,
553 si, si->state, si->ib->flags, si->ob->flags);
554
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200555 if (conn->flags & CO_FL_ERROR)
556 si->flags |= SI_FL_ERR;
557
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200558 /* check for recent connection establishment */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200559 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200560 si->exp = TICK_ETERNITY;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200561 si->ob->flags |= CF_WRITE_NULL;
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200562 }
563
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200564 /* process consumer side */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200565 if (channel_is_empty(si->ob)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100566 if (((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200567 (si->state == SI_ST_EST))
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200568 stream_int_shutw_conn(si);
Willy Tarreauf16723e2012-08-24 12:52:22 +0200569 __conn_data_stop_send(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200570 si->ob->wex = TICK_ETERNITY;
571 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200572
Willy Tarreau3889fff2015-01-13 20:20:10 +0100573 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && channel_may_recv(si->ob))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200574 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200575
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200576 if (si->ob->flags & CF_WRITE_ACTIVITY) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200577 /* update timeouts if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200578 if ((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200579 !channel_is_empty(si->ob))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200580 if (tick_isset(si->ob->wex))
581 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200582
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200583 if (!(si->flags & SI_FL_INDEP_STR))
584 if (tick_isset(si->ib->rex))
585 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200586
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200587 if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
Willy Tarreau3889fff2015-01-13 20:20:10 +0100588 channel_may_recv(si->ob) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200589 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
590 si_chk_rcv(si->ob->prod);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200591 }
592
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200593 /* process producer side.
594 * We might have some data the consumer is waiting for.
595 * We can do fast-forwarding, but we avoid doing this for partial
596 * buffers, because it is very likely that it will be done again
597 * immediately afterwards once the following data is parsed (eg:
598 * HTTP chunking).
599 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200600 if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200601 (si->ib->pipe /* always try to send spliced data */ ||
Willy Tarreau9b28e032012-10-12 23:49:43 +0200602 (si->ib->buf->i == 0 && (si->ib->cons->flags & SI_FL_WAIT_DATA)))) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200603 int last_len = si->ib->pipe ? si->ib->pipe->data : 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200604
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200605 si_chk_snd(si->ib->cons);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200606
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200607 /* check if the consumer has freed some space either in the
608 * buffer or in the pipe.
609 */
Willy Tarreau3889fff2015-01-13 20:20:10 +0100610 if (channel_may_recv(si->ib) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200611 (!last_len || !si->ib->pipe || si->ib->pipe->data < last_len))
612 si->flags &= ~SI_FL_WAIT_ROOM;
613 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200614
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200615 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreauf16723e2012-08-24 12:52:22 +0200616 __conn_data_stop_recv(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200617 si->ib->rex = TICK_ETERNITY;
618 }
Willy Tarreau66572762012-12-19 17:34:17 +0100619 else if ((si->ib->flags & (CF_SHUTR|CF_READ_PARTIAL|CF_DONT_READ)) == CF_READ_PARTIAL &&
Willy Tarreau3889fff2015-01-13 20:20:10 +0100620 channel_may_recv(si->ib)) {
Willy Tarreau9f7c6a12012-11-19 16:43:14 +0100621 /* we must re-enable reading if si_chk_snd() has freed some space */
622 __conn_data_want_recv(conn);
Willy Tarreau66572762012-12-19 17:34:17 +0100623 if (!(si->ib->flags & CF_READ_NOEXP) && tick_isset(si->ib->rex))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200624 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200625 }
626
627 /* wake the task up only when needed */
628 if (/* changes on the production side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200629 (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200630 si->state != SI_ST_EST ||
631 (si->flags & SI_FL_ERR) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200632 ((si->ib->flags & CF_READ_PARTIAL) &&
Willy Tarreaufd31e532012-07-23 18:24:25 +0200633 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
634
635 /* changes on the consumption side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200636 (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
637 ((si->ob->flags & CF_WRITE_ACTIVITY) &&
Willy Tarreaue6300be2014-01-25 02:33:21 +0100638 ((si->ob->flags & CF_SHUTW) ||
639 ((si->ob->flags & CF_WAKE_WRITE) &&
640 (si->ob->prod->state != SI_ST_EST ||
641 (channel_is_empty(si->ob) && !si->ob->to_forward)))))) {
Willy Tarreaufd31e532012-07-23 18:24:25 +0200642 task_wakeup(si->owner, TASK_WOKEN_IO);
643 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200644 if (si->ib->flags & CF_READ_ACTIVITY)
645 si->ib->flags &= ~CF_READ_DONTWAIT;
Willy Tarreau10fc09e2014-11-25 19:46:36 +0100646
647 session_release_buffers(si_sess(si));
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200648 return 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200649}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200650
Willy Tarreau5368d802012-08-21 18:22:06 +0200651/*
652 * This function is called to send buffer data to a stream socket.
Godbache68e02d2013-10-11 15:48:29 +0800653 * It calls the transport layer's snd_buf function. It relies on the
Godbach4f489902013-12-04 17:24:06 +0800654 * caller to commit polling changes. The caller should check conn->flags
655 * for errors.
Willy Tarreau5368d802012-08-21 18:22:06 +0200656 */
Godbach4f489902013-12-04 17:24:06 +0800657static void si_conn_send(struct connection *conn)
Willy Tarreau5368d802012-08-21 18:22:06 +0200658{
Willy Tarreaue603e692012-09-27 22:20:41 +0200659 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200660 struct channel *chn = si->ob;
Willy Tarreau5368d802012-08-21 18:22:06 +0200661 int ret;
662
Willy Tarreaucb76e592012-10-12 23:56:57 +0200663 if (chn->pipe && conn->xprt->snd_pipe) {
664 ret = conn->xprt->snd_pipe(conn, chn->pipe);
Willy Tarreau96199b12012-08-24 00:46:52 +0200665 if (ret > 0)
Willy Tarreau9dc1c612014-09-01 20:35:55 +0200666 chn->flags |= CF_WRITE_PARTIAL | CF_WROTE_DATA;
Willy Tarreau5368d802012-08-21 18:22:06 +0200667
Willy Tarreaucb76e592012-10-12 23:56:57 +0200668 if (!chn->pipe->data) {
669 put_pipe(chn->pipe);
670 chn->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200671 }
672
Willy Tarreau96199b12012-08-24 00:46:52 +0200673 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +0800674 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200675 }
676
677 /* At this point, the pipe is empty, but we may still have data pending
678 * in the normal buffer.
679 */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200680 if (!chn->buf->o)
Godbach4f489902013-12-04 17:24:06 +0800681 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200682
Godbache68e02d2013-10-11 15:48:29 +0800683 /* when we're here, we already know that there is no spliced
Willy Tarreau5368d802012-08-21 18:22:06 +0200684 * data left, and that there are sendable buffered data.
685 */
Willy Tarreau310987a2014-01-22 19:46:33 +0100686 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 +0200687 /* check if we want to inform the kernel that we're interested in
688 * sending more data after this call. We want this if :
689 * - we're about to close after this last send and want to merge
690 * the ongoing FIN with the last segment.
691 * - we know we can't send everything at once and must get back
692 * here because of unaligned data
693 * - there is still a finite amount of data to forward
694 * The test is arranged so that the most common case does only 2
695 * tests.
696 */
Willy Tarreau1049b1f2014-02-02 01:51:17 +0100697 unsigned int send_flag = 0;
Willy Tarreau5368d802012-08-21 18:22:06 +0200698
Willy Tarreaucb76e592012-10-12 23:56:57 +0200699 if ((!(chn->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) &&
700 ((chn->to_forward && chn->to_forward != CHN_INFINITE_FORWARD) ||
701 (chn->flags & CF_EXPECT_MORE))) ||
Willy Tarreaub31c9712012-11-11 23:05:39 +0100702 ((chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW))
Willy Tarreau1049b1f2014-02-02 01:51:17 +0100703 send_flag |= CO_SFL_MSG_MORE;
Willy Tarreau5368d802012-08-21 18:22:06 +0200704
Willy Tarreau7bed9452014-02-02 02:00:24 +0100705 if (chn->flags & CF_STREAMER)
706 send_flag |= CO_SFL_STREAMER;
707
Willy Tarreau9b28e032012-10-12 23:49:43 +0200708 ret = conn->xprt->snd_buf(conn, chn->buf, send_flag);
Godbache68e02d2013-10-11 15:48:29 +0800709 if (ret > 0) {
Willy Tarreau9dc1c612014-09-01 20:35:55 +0200710 chn->flags |= CF_WRITE_PARTIAL | CF_WROTE_DATA;
Willy Tarreau5368d802012-08-21 18:22:06 +0200711
Godbache68e02d2013-10-11 15:48:29 +0800712 if (!chn->buf->o) {
713 /* Always clear both flags once everything has been sent, they're one-shot */
714 chn->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT);
715 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200716
Godbache68e02d2013-10-11 15:48:29 +0800717 /* if some data remain in the buffer, it's only because the
718 * system buffers are full, we will try next time.
719 */
Willy Tarreau5368d802012-08-21 18:22:06 +0200720 }
Godbache68e02d2013-10-11 15:48:29 +0800721 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200722
Godbach4f489902013-12-04 17:24:06 +0800723 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200724}
725
726
Willy Tarreau100c4672012-08-20 12:06:26 +0200727/* Updates the timers and flags of a stream interface attached to a connection,
728 * depending on the buffers' flags. It should only be called once after the
729 * buffer flags have settled down, and before they are cleared. It doesn't
730 * harm to call it as often as desired (it just slightly hurts performance).
731 * It is only meant to be called by upper layers after buffer flags have been
732 * manipulated by analysers.
733 */
734void stream_int_update_conn(struct stream_interface *si)
735{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200736 struct channel *ib = si->ib;
737 struct channel *ob = si->ob;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200738 struct connection *conn = __objt_conn(si->end);
Willy Tarreau100c4672012-08-20 12:06:26 +0200739
Willy Tarreau100c4672012-08-20 12:06:26 +0200740 /* Check if we need to close the read side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200741 if (!(ib->flags & CF_SHUTR)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200742 /* Read not closed, update FD status and timeout for reads */
Willy Tarreau3889fff2015-01-13 20:20:10 +0100743 if ((ib->flags & CF_DONT_READ) || !channel_may_recv(ib)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200744 /* stop reading */
745 if (!(si->flags & SI_FL_WAIT_ROOM)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100746 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau100c4672012-08-20 12:06:26 +0200747 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200748 conn_data_stop_recv(conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200749 ib->rex = TICK_ETERNITY;
750 }
751 }
752 else {
753 /* (re)start reading and update timeout. Note: we don't recompute the timeout
754 * everytime we get here, otherwise it would risk never to expire. We only
755 * update it if is was not yet set. The stream socket handler will already
756 * have updated it if there has been a completed I/O.
757 */
758 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200759 conn_data_want_recv(conn);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200760 if (!(ib->flags & (CF_READ_NOEXP|CF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau100c4672012-08-20 12:06:26 +0200761 ib->rex = tick_add_ifset(now_ms, ib->rto);
762 }
763 }
764
765 /* Check if we need to close the write side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200766 if (!(ob->flags & CF_SHUTW)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200767 /* Write not closed, update FD status and timeout for writes */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200768 if (channel_is_empty(ob)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200769 /* stop writing */
770 if (!(si->flags & SI_FL_WAIT_DATA)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100771 if ((ob->flags & CF_SHUTW_NOW) == 0)
Willy Tarreau100c4672012-08-20 12:06:26 +0200772 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200773 conn_data_stop_send(conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200774 ob->wex = TICK_ETERNITY;
775 }
776 }
777 else {
778 /* (re)start writing and update timeout. Note: we don't recompute the timeout
779 * everytime we get here, otherwise it would risk never to expire. We only
780 * update it if is was not yet set. The stream socket handler will already
781 * have updated it if there has been a completed I/O.
782 */
783 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200784 conn_data_want_send(conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200785 if (!tick_isset(ob->wex)) {
786 ob->wex = tick_add_ifset(now_ms, ob->wto);
787 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
788 /* Note: depending on the protocol, we don't know if we're waiting
789 * for incoming data or not. So in order to prevent the socket from
790 * expiring read timeouts during writes, we refresh the read timeout,
791 * except if it was already infinite or if we have explicitly setup
792 * independent streams.
793 */
794 ib->rex = tick_add_ifset(now_ms, ib->rto);
795 }
796 }
797 }
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200798 }
799}
800
801/*
802 * This function performs a shutdown-read on a stream interface attached to
803 * a connection in a connected or init state (it does nothing for other
804 * states). It either shuts the read side or marks itself as closed. The buffer
805 * flags are updated to reflect the new state. If the stream interface has
806 * SI_FL_NOHALF, we also forward the close to the write side. If a control
807 * layer is defined, then it is supposed to be a socket layer and file
Willy Tarreau6fe15412013-09-29 15:16:03 +0200808 * descriptors are then shutdown or closed accordingly. The function
809 * automatically disables polling if needed.
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200810 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200811static void stream_int_shutr_conn(struct stream_interface *si)
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200812{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200813 struct connection *conn = __objt_conn(si->end);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200814
815 si->ib->flags &= ~CF_SHUTR_NOW;
816 if (si->ib->flags & CF_SHUTR)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200817 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200818 si->ib->flags |= CF_SHUTR;
819 si->ib->rex = TICK_ETERNITY;
820 si->flags &= ~SI_FL_WAIT_ROOM;
821
822 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200823 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200824
825 if (si->ob->flags & CF_SHUTW) {
Willy Tarreau6fe15412013-09-29 15:16:03 +0200826 conn_full_close(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200827 si->state = SI_ST_DIS;
828 si->exp = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200829 }
830 else if (si->flags & SI_FL_NOHALF) {
831 /* we want to immediately forward this close to the write side */
832 return stream_int_shutw_conn(si);
833 }
834 else if (conn->ctrl) {
835 /* we want the caller to disable polling on this FD */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200836 conn_data_stop_recv(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200837 }
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200838}
839
840/*
841 * This function performs a shutdown-write on a stream interface attached to
842 * a connection in a connected or init state (it does nothing for other
843 * states). It either shuts the write side or marks itself as closed. The
844 * buffer flags are updated to reflect the new state. It does also close
845 * everything if the SI was marked as being in error state. If there is a
846 * data-layer shutdown, it is called. If a control layer is defined, then it is
847 * supposed to be a socket layer and file descriptors are then shutdown or
Willy Tarreau6fe15412013-09-29 15:16:03 +0200848 * closed accordingly. The function automatically disables polling if needed.
849 * Note: at the moment, we continue to check conn->ctrl eventhough we *know* it
850 * is valid. This will help selecting the proper shutdown() and setsockopt()
851 * calls if/when we implement remote sockets later.
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200852 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200853static void stream_int_shutw_conn(struct stream_interface *si)
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200854{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200855 struct connection *conn = __objt_conn(si->end);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200856
857 si->ob->flags &= ~CF_SHUTW_NOW;
858 if (si->ob->flags & CF_SHUTW)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200859 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200860 si->ob->flags |= CF_SHUTW;
861 si->ob->wex = TICK_ETERNITY;
862 si->flags &= ~SI_FL_WAIT_DATA;
863
864 switch (si->state) {
865 case SI_ST_EST:
866 /* we have to shut before closing, otherwise some short messages
867 * may never leave the system, especially when there are remaining
868 * unread data in the socket input buffer, or when nolinger is set.
869 * However, if SI_FL_NOLINGER is explicitly set, we know there is
870 * no risk so we close both sides immediately.
871 */
872 if (si->flags & SI_FL_ERR) {
873 /* quick close, the socket is alredy shut anyway */
874 }
875 else if (si->flags & SI_FL_NOLINGER) {
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200876 /* unclean data-layer shutdown */
877 if (conn->xprt && conn->xprt->shutw)
878 conn->xprt->shutw(conn, 0);
879 }
880 else {
881 /* clean data-layer shutdown */
882 if (conn->xprt && conn->xprt->shutw)
883 conn->xprt->shutw(conn, 1);
884
885 /* If the stream interface is configured to disable half-open
886 * connections, we'll skip the shutdown(), but only if the
887 * read size is already closed. Otherwise we can't support
888 * closed write with pending read (eg: abortonclose while
889 * waiting for the server).
890 */
891 if (!(si->flags & SI_FL_NOHALF) || !(si->ib->flags & (CF_SHUTR|CF_DONT_READ))) {
892 /* We shutdown transport layer */
Willy Tarreaud02cdd22013-12-15 10:23:20 +0100893 if (conn_ctrl_ready(conn))
Willy Tarreau6fe15412013-09-29 15:16:03 +0200894 shutdown(conn->t.sock.fd, SHUT_WR);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200895
896 if (!(si->ib->flags & (CF_SHUTR|CF_DONT_READ))) {
897 /* OK just a shutw, but we want the caller
898 * to disable polling on this FD if exists.
899 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200900 if (conn->ctrl)
901 conn_data_stop_send(conn);
902 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200903 }
904 }
905 }
906
907 /* fall through */
908 case SI_ST_CON:
909 /* we may have to close a pending connection, and mark the
910 * response buffer as shutr
911 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200912 conn_full_close(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200913 /* fall through */
914 case SI_ST_CER:
915 case SI_ST_QUE:
916 case SI_ST_TAR:
917 si->state = SI_ST_DIS;
Willy Tarreau4a59f2f2013-10-24 20:10:45 +0200918 /* fall through */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200919 default:
920 si->flags &= ~(SI_FL_WAIT_ROOM | SI_FL_NOLINGER);
921 si->ib->flags &= ~CF_SHUTR_NOW;
922 si->ib->flags |= CF_SHUTR;
923 si->ib->rex = TICK_ETERNITY;
924 si->exp = TICK_ETERNITY;
Willy Tarreau100c4672012-08-20 12:06:26 +0200925 }
926}
927
Willy Tarreau46a8d922012-08-20 12:38:36 +0200928/* This function is used for inter-stream-interface calls. It is called by the
929 * consumer to inform the producer side that it may be interested in checking
930 * for free space in the buffer. Note that it intentionally does not update
931 * timeouts, so that we can still check them later at wake-up. This function is
932 * dedicated to connection-based stream interfaces.
933 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200934static void stream_int_chk_rcv_conn(struct stream_interface *si)
Willy Tarreau46a8d922012-08-20 12:38:36 +0200935{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200936 struct channel *ib = si->ib;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200937 struct connection *conn = __objt_conn(si->end);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200938
Willy Tarreau34ffd772012-09-03 16:51:27 +0200939 if (unlikely(si->state > SI_ST_EST || (ib->flags & CF_SHUTR)))
Willy Tarreau46a8d922012-08-20 12:38:36 +0200940 return;
941
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200942 conn_refresh_polling_flags(conn);
Willy Tarreau7d281492012-12-16 19:19:13 +0100943
Willy Tarreau3889fff2015-01-13 20:20:10 +0100944 if ((ib->flags & CF_DONT_READ) || !channel_may_recv(ib)) {
Willy Tarreau46a8d922012-08-20 12:38:36 +0200945 /* stop reading */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100946 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau46a8d922012-08-20 12:38:36 +0200947 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200948 __conn_data_stop_recv(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200949 }
950 else {
951 /* (re)start reading */
952 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200953 __conn_data_want_recv(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200954 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200955 conn_cond_update_data_polling(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200956}
957
958
Willy Tarreaude5722c2012-08-20 15:01:10 +0200959/* This function is used for inter-stream-interface calls. It is called by the
960 * producer to inform the consumer side that it may be interested in checking
961 * for data in the buffer. Note that it intentionally does not update timeouts,
962 * so that we can still check them later at wake-up.
963 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200964static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200965{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200966 struct channel *ob = si->ob;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200967 struct connection *conn = __objt_conn(si->end);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200968
Willy Tarreau34ffd772012-09-03 16:51:27 +0200969 if (unlikely(si->state > SI_ST_EST || (ob->flags & CF_SHUTW)))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200970 return;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200971
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200972 if (unlikely(channel_is_empty(ob))) /* called with nothing to send ! */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200973 return;
974
975 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
Willy Tarreaub0165872012-12-15 10:12:39 +0100976 !(si->flags & SI_FL_WAIT_DATA)) /* not waiting for data */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200977 return;
978
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200979 if (conn->flags & (CO_FL_DATA_WR_ENA|CO_FL_CURR_WR_ENA)) {
Willy Tarreau5007d2a2013-07-18 22:09:48 +0200980 /* already subscribed to write notifications, will be called
981 * anyway, so let's avoid calling it especially if the reader
982 * is not ready.
983 */
984 return;
985 }
986
Willy Tarreau708e7172014-01-21 10:27:49 +0100987 /* Before calling the data-level operations, we have to prepare
988 * the polling flags to ensure we properly detect changes.
989 */
990 conn_refresh_polling_flags(conn);
991 __conn_data_want_send(conn);
Willy Tarreaud29a0662012-12-10 16:33:38 +0100992
Willy Tarreau708e7172014-01-21 10:27:49 +0100993 if (!(conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN))) {
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200994 si_conn_send(conn);
Willy Tarreau798c3c92014-01-21 10:30:08 +0100995 if (conn->flags & CO_FL_ERROR) {
Willy Tarreaud29a0662012-12-10 16:33:38 +0100996 /* Write error on the file descriptor */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200997 __conn_data_stop_both(conn);
Willy Tarreaud29a0662012-12-10 16:33:38 +0100998 si->flags |= SI_FL_ERR;
Willy Tarreaud29a0662012-12-10 16:33:38 +0100999 goto out_wakeup;
1000 }
Willy Tarreaude5722c2012-08-20 15:01:10 +02001001 }
1002
1003 /* OK, so now we know that some data might have been sent, and that we may
1004 * have to poll first. We have to do that too if the buffer is not empty.
1005 */
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001006 if (channel_is_empty(ob)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001007 /* the connection is established but we can't write. Either the
1008 * buffer is empty, or we just refrain from sending because the
1009 * ->o limit was reached. Maybe we just wrote the last
1010 * chunk and need to close.
1011 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001012 __conn_data_stop_send(conn);
Willy Tarreaub31c9712012-11-11 23:05:39 +01001013 if (((ob->flags & (CF_SHUTW|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001014 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreaude5722c2012-08-20 15:01:10 +02001015 (si->state == SI_ST_EST)) {
1016 si_shutw(si);
1017 goto out_wakeup;
1018 }
1019
Willy Tarreaub31c9712012-11-11 23:05:39 +01001020 if ((ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0)
Willy Tarreaude5722c2012-08-20 15:01:10 +02001021 si->flags |= SI_FL_WAIT_DATA;
1022 ob->wex = TICK_ETERNITY;
1023 }
1024 else {
1025 /* Otherwise there are remaining data to be sent in the buffer,
1026 * which means we have to poll before doing so.
1027 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001028 __conn_data_want_send(conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001029 si->flags &= ~SI_FL_WAIT_DATA;
1030 if (!tick_isset(ob->wex))
1031 ob->wex = tick_add_ifset(now_ms, ob->wto);
1032 }
1033
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001034 if (likely(ob->flags & CF_WRITE_ACTIVITY)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001035 /* update timeout if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001036 if ((ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +02001037 !channel_is_empty(ob))
Willy Tarreaude5722c2012-08-20 15:01:10 +02001038 ob->wex = tick_add_ifset(now_ms, ob->wto);
1039
1040 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
1041 /* Note: to prevent the client from expiring read timeouts
1042 * during writes, we refresh it. We only do this if the
1043 * interface is not configured for "independent streams",
1044 * because for some applications it's better not to do this,
1045 * for instance when continuously exchanging small amounts
1046 * of data which can full the socket buffers long before a
1047 * write timeout is detected.
1048 */
1049 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
1050 }
1051 }
1052
1053 /* in case of special condition (error, shutdown, end of write...), we
1054 * have to notify the task.
1055 */
Willy Tarreaue6300be2014-01-25 02:33:21 +01001056 if (likely((ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) ||
1057 ((ob->flags & CF_WAKE_WRITE) &&
1058 ((channel_is_empty(si->ob) && !ob->to_forward) ||
1059 si->state != SI_ST_EST)))) {
Willy Tarreaude5722c2012-08-20 15:01:10 +02001060 out_wakeup:
1061 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
1062 task_wakeup(si->owner, TASK_WOKEN_IO);
1063 }
Willy Tarreauf16723e2012-08-24 12:52:22 +02001064
1065 /* commit possible polling changes */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001066 conn_cond_update_polling(conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001067}
1068
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001069/*
Willy Tarreauce323de2012-08-20 21:41:06 +02001070 * This is the callback which is called by the connection layer to receive data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001071 * into the buffer from the connection. It iterates over the transport layer's
1072 * rcv_buf function.
Willy Tarreauce323de2012-08-20 21:41:06 +02001073 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001074static void si_conn_recv_cb(struct connection *conn)
Willy Tarreauce323de2012-08-20 21:41:06 +02001075{
Willy Tarreaue603e692012-09-27 22:20:41 +02001076 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001077 struct channel *chn = si->ib;
Willy Tarreauce323de2012-08-20 21:41:06 +02001078 int ret, max, cur_read;
1079 int read_poll = MAX_READ_POLL_LOOPS;
1080
1081 /* stop immediately on errors. Note that we DON'T want to stop on
1082 * POLL_ERR, as the poller might report a write error while there
1083 * are still data available in the recv buffer. This typically
1084 * happens when we send too large a request to a backend server
1085 * which rejects it before reading it all.
1086 */
1087 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001088 return;
Willy Tarreauce323de2012-08-20 21:41:06 +02001089
1090 /* stop here if we reached the end of data */
1091 if (conn_data_read0_pending(conn))
1092 goto out_shutdown_r;
1093
1094 /* maybe we were called immediately after an asynchronous shutr */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001095 if (chn->flags & CF_SHUTR)
Willy Tarreauce323de2012-08-20 21:41:06 +02001096 return;
1097
Willy Tarreau96199b12012-08-24 00:46:52 +02001098 cur_read = 0;
Willy Tarreau96199b12012-08-24 00:46:52 +02001099
Willy Tarreauc5890e62014-02-09 17:47:01 +01001100 if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) && !chn->buf->o &&
Willy Tarreau7e312732014-02-12 16:35:14 +01001101 global.tune.idle_timer &&
1102 (unsigned short)(now_ms - chn->last_read) >= global.tune.idle_timer) {
Willy Tarreauc5890e62014-02-09 17:47:01 +01001103 /* The buffer was empty and nothing was transferred for more
1104 * than one second. This was caused by a pause and not by
1105 * congestion. Reset any streaming mode to reduce latency.
1106 */
1107 chn->xfer_small = 0;
1108 chn->xfer_large = 0;
1109 chn->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
1110 }
1111
Willy Tarreau96199b12012-08-24 00:46:52 +02001112 /* First, let's see if we may splice data across the channel without
1113 * using a buffer.
1114 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001115 if (conn->xprt->rcv_pipe &&
Willy Tarreaufa8e2bc2013-07-18 22:21:54 +02001116 (chn->pipe || chn->to_forward >= MIN_SPLICE_FORWARD) &&
1117 chn->flags & CF_KERN_SPLICING) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02001118 if (buffer_not_empty(chn->buf)) {
Willy Tarreau96199b12012-08-24 00:46:52 +02001119 /* We're embarrassed, there are already data pending in
1120 * the buffer and we don't want to have them at two
1121 * locations at a time. Let's indicate we need some
1122 * place and ask the consumer to hurry.
1123 */
1124 goto abort_splice;
1125 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001126
Willy Tarreaucb76e592012-10-12 23:56:57 +02001127 if (unlikely(chn->pipe == NULL)) {
1128 if (pipes_used >= global.maxpipes || !(chn->pipe = get_pipe())) {
1129 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +02001130 goto abort_splice;
1131 }
1132 }
1133
Willy Tarreaucb76e592012-10-12 23:56:57 +02001134 ret = conn->xprt->rcv_pipe(conn, chn->pipe, chn->to_forward);
Willy Tarreau96199b12012-08-24 00:46:52 +02001135 if (ret < 0) {
1136 /* splice not supported on this end, let's disable it */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001137 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +02001138 goto abort_splice;
1139 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001140
Willy Tarreau96199b12012-08-24 00:46:52 +02001141 if (ret > 0) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001142 if (chn->to_forward != CHN_INFINITE_FORWARD)
1143 chn->to_forward -= ret;
1144 chn->total += ret;
Willy Tarreau96199b12012-08-24 00:46:52 +02001145 cur_read += ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001146 chn->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +02001147 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001148
1149 if (conn_data_read0_pending(conn))
1150 goto out_shutdown_r;
1151
1152 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001153 return;
Willy Tarreau96199b12012-08-24 00:46:52 +02001154
Willy Tarreau61d39a02013-07-18 21:49:32 +02001155 if (conn->flags & CO_FL_WAIT_ROOM) {
1156 /* the pipe is full or we have read enough data that it
1157 * could soon be full. Let's stop before needing to poll.
1158 */
Willy Tarreau56a77e52012-09-02 18:34:44 +02001159 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau61d39a02013-07-18 21:49:32 +02001160 __conn_data_stop_recv(conn);
1161 }
Willy Tarreau56a77e52012-09-02 18:34:44 +02001162
Willy Tarreauce323de2012-08-20 21:41:06 +02001163 /* splice not possible (anymore), let's go on on standard copy */
1164 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001165
1166 abort_splice:
Willy Tarreau61d39a02013-07-18 21:49:32 +02001167 if (chn->pipe && unlikely(!chn->pipe->data)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001168 put_pipe(chn->pipe);
1169 chn->pipe = NULL;
Willy Tarreau96199b12012-08-24 00:46:52 +02001170 }
1171
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001172 /* now we'll need a buffer */
1173 if (!session_alloc_recv_buffer(si_sess(si), &chn->buf)) {
1174 si->flags |= SI_FL_WAIT_ROOM;
1175 goto end_recv;
1176 }
1177
Willy Tarreau61d39a02013-07-18 21:49:32 +02001178 /* Important note : if we're called with POLL_IN|POLL_HUP, it means the read polling
1179 * was enabled, which implies that the recv buffer was not full. So we have a guarantee
1180 * that if such an event is not handled above in splice, it will be handled here by
1181 * recv().
1182 */
Willy Tarreau310987a2014-01-22 19:46:33 +01001183 while (!(conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_DATA_RD_SH | CO_FL_WAIT_ROOM | CO_FL_HANDSHAKE))) {
Willy Tarreaub5051f82015-01-14 20:25:34 +01001184 max = channel_recv_max(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001185
1186 if (!max) {
Willy Tarreau56a77e52012-09-02 18:34:44 +02001187 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +02001188 break;
1189 }
1190
Willy Tarreau9b28e032012-10-12 23:49:43 +02001191 ret = conn->xprt->rcv_buf(conn, chn->buf, max);
Willy Tarreauce323de2012-08-20 21:41:06 +02001192 if (ret <= 0)
1193 break;
1194
1195 cur_read += ret;
1196
1197 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001198 if (chn->to_forward && !(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001199 unsigned long fwd = ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001200 if (chn->to_forward != CHN_INFINITE_FORWARD) {
1201 if (fwd > chn->to_forward)
1202 fwd = chn->to_forward;
1203 chn->to_forward -= fwd;
Willy Tarreauce323de2012-08-20 21:41:06 +02001204 }
Willy Tarreau9b28e032012-10-12 23:49:43 +02001205 b_adv(chn->buf, fwd);
Willy Tarreauce323de2012-08-20 21:41:06 +02001206 }
1207
Willy Tarreaucb76e592012-10-12 23:56:57 +02001208 chn->flags |= CF_READ_PARTIAL;
1209 chn->total += ret;
Willy Tarreauce323de2012-08-20 21:41:06 +02001210
Willy Tarreau3889fff2015-01-13 20:20:10 +01001211 if (!channel_may_recv(chn)) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001212 si->flags |= SI_FL_WAIT_ROOM;
1213 break;
1214 }
1215
Willy Tarreau5fddab02012-11-09 18:27:26 +01001216 if ((chn->flags & CF_READ_DONTWAIT) || --read_poll <= 0) {
Willy Tarreau34ac5662012-12-19 18:01:02 +01001217 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaud486ef52012-12-10 17:03:52 +01001218 __conn_data_stop_recv(conn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001219 break;
Willy Tarreau5fddab02012-11-09 18:27:26 +01001220 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001221
1222 /* if too many bytes were missing from last read, it means that
1223 * it's pointless trying to read again because the system does
1224 * not have them in buffers.
1225 */
1226 if (ret < max) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001227 /* if a streamer has read few data, it may be because we
1228 * have exhausted system buffers. It's not worth trying
1229 * again.
1230 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001231 if (chn->flags & CF_STREAMER)
Willy Tarreauce323de2012-08-20 21:41:06 +02001232 break;
1233
1234 /* if we read a large block smaller than what we requested,
1235 * it's almost certain we'll never get anything more.
1236 */
1237 if (ret >= global.tune.recv_enough)
1238 break;
1239 }
1240 } /* while !flags */
1241
Willy Tarreauc5890e62014-02-09 17:47:01 +01001242 if (cur_read) {
1243 if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
1244 (cur_read <= chn->buf->size / 2)) {
1245 chn->xfer_large = 0;
1246 chn->xfer_small++;
1247 if (chn->xfer_small >= 3) {
1248 /* we have read less than half of the buffer in
1249 * one pass, and this happened at least 3 times.
1250 * This is definitely not a streamer.
1251 */
1252 chn->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
1253 }
1254 else if (chn->xfer_small >= 2) {
1255 /* if the buffer has been at least half full twice,
1256 * we receive faster than we send, so at least it
1257 * is not a "fast streamer".
1258 */
1259 chn->flags &= ~CF_STREAMER_FAST;
1260 }
1261 }
1262 else if (!(chn->flags & CF_STREAMER_FAST) &&
1263 (cur_read >= chn->buf->size - global.tune.maxrewrite)) {
1264 /* we read a full buffer at once */
1265 chn->xfer_small = 0;
1266 chn->xfer_large++;
1267 if (chn->xfer_large >= 3) {
1268 /* we call this buffer a fast streamer if it manages
1269 * to be filled in one call 3 consecutive times.
1270 */
1271 chn->flags |= (CF_STREAMER | CF_STREAMER_FAST);
1272 }
1273 }
1274 else {
1275 chn->xfer_small = 0;
1276 chn->xfer_large = 0;
1277 }
1278 chn->last_read = now_ms;
1279 }
1280
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001281 end_recv:
1282 if (conn->flags & CO_FL_ERROR)
1283 return;
1284
Willy Tarreauce323de2012-08-20 21:41:06 +02001285 if (conn_data_read0_pending(conn))
1286 /* connection closed */
1287 goto out_shutdown_r;
1288
1289 return;
1290
1291 out_shutdown_r:
1292 /* we received a shutdown */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001293 chn->flags |= CF_READ_NULL;
1294 if (chn->flags & CF_AUTO_CLOSE)
1295 channel_shutw_now(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001296 stream_sock_read0(si);
1297 conn_data_read0(conn);
1298 return;
Willy Tarreauce323de2012-08-20 21:41:06 +02001299}
1300
1301/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001302 * This is the callback which is called by the connection layer to send data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001303 * from the buffer to the connection. It iterates over the transport layer's
1304 * snd_buf function.
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001305 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001306static void si_conn_send_cb(struct connection *conn)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001307{
Willy Tarreaue603e692012-09-27 22:20:41 +02001308 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001309 struct channel *chn = si->ob;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001310
1311 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001312 return;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001313
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001314 if (conn->flags & CO_FL_HANDSHAKE)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001315 /* a handshake was requested */
1316 return;
1317
1318 /* we might have been called just after an asynchronous shutw */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001319 if (chn->flags & CF_SHUTW)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001320 return;
1321
1322 /* OK there are data waiting to be sent */
Godbach4f489902013-12-04 17:24:06 +08001323 si_conn_send(conn);
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001324
1325 /* OK all done */
1326 return;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001327}
1328
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001329/*
1330 * This function propagates a null read received on a socket-based connection.
1331 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
1332 * the close is also forwarded to the write side as an abort. This function is
1333 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
1334 * state on the socket.
1335 */
1336void stream_sock_read0(struct stream_interface *si)
1337{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001338 struct connection *conn = __objt_conn(si->end);
1339
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001340 si->ib->flags &= ~CF_SHUTR_NOW;
1341 if (si->ib->flags & CF_SHUTR)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001342 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001343 si->ib->flags |= CF_SHUTR;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001344 si->ib->rex = TICK_ETERNITY;
1345 si->flags &= ~SI_FL_WAIT_ROOM;
1346
1347 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1348 return;
1349
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001350 if (si->ob->flags & CF_SHUTW)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001351 goto do_close;
1352
1353 if (si->flags & SI_FL_NOHALF) {
1354 /* we want to immediately forward this close to the write side */
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001355 /* force flag on ssl to keep session in cache */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001356 if (conn->xprt->shutw)
1357 conn->xprt->shutw(conn, 0);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001358 goto do_close;
1359 }
1360
1361 /* otherwise that's just a normal read shutdown */
Willy Tarreauad38ace2013-12-15 14:19:38 +01001362 if (conn_ctrl_ready(conn))
1363 fdtab[conn->t.sock.fd].linger_risk = 0;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001364 __conn_data_stop_recv(conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001365 return;
1366
1367 do_close:
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001368 /* OK we completely close the socket here just as if we went through si_shut[rw]() */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001369 conn_full_close(conn);
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001370
1371 si->ib->flags &= ~CF_SHUTR_NOW;
1372 si->ib->flags |= CF_SHUTR;
1373 si->ib->rex = TICK_ETERNITY;
1374
1375 si->ob->flags &= ~CF_SHUTW_NOW;
1376 si->ob->flags |= CF_SHUTW;
1377 si->ob->wex = TICK_ETERNITY;
1378
1379 si->flags &= ~(SI_FL_WAIT_DATA | SI_FL_WAIT_ROOM);
1380
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001381 si->state = SI_ST_DIS;
1382 si->exp = TICK_ETERNITY;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001383 return;
1384}
1385
Willy Tarreaudded32d2008-11-30 19:48:07 +01001386/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001387 * Local variables:
1388 * c-indent-level: 8
1389 * c-basic-offset: 8
1390 * End:
1391 */