blob: 1c13d42ced3b706324903a724e39f782bbb8fedf [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
22#include <common/compat.h>
23#include <common/config.h>
24#include <common/debug.h>
25#include <common/standard.h>
26#include <common/ticks.h>
27#include <common/time.h>
28
Willy Tarreauc7e42382012-08-24 19:22:53 +020029#include <proto/channel.h>
Willy Tarreau8b117082012-08-06 15:06:49 +020030#include <proto/connection.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010031#include <proto/fd.h>
Willy Tarreau96199b12012-08-24 00:46:52 +020032#include <proto/pipe.h>
Willy Tarreau269358d2009-09-20 20:14:49 +020033#include <proto/stream_interface.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010034#include <proto/task.h>
35
Willy Tarreaufd31e532012-07-23 18:24:25 +020036#include <types/pipe.h>
37
Willy Tarreauf873d752012-05-11 17:47:17 +020038/* socket functions used when running a stream interface as a task */
Willy Tarreauf873d752012-05-11 17:47:17 +020039static void stream_int_update_embedded(struct stream_interface *si);
Willy Tarreau6fe15412013-09-29 15:16:03 +020040static void stream_int_shutr(struct stream_interface *si);
41static void stream_int_shutw(struct stream_interface *si);
Willy Tarreauf873d752012-05-11 17:47:17 +020042static void stream_int_chk_rcv(struct stream_interface *si);
43static void stream_int_chk_snd(struct stream_interface *si);
Willy Tarreauc5788912012-08-24 18:12:41 +020044static void stream_int_update_conn(struct stream_interface *si);
Willy Tarreau6fe15412013-09-29 15:16:03 +020045static void stream_int_shutr_conn(struct stream_interface *si);
46static void stream_int_shutw_conn(struct stream_interface *si);
Willy Tarreauc5788912012-08-24 18:12:41 +020047static void stream_int_chk_rcv_conn(struct stream_interface *si);
48static void stream_int_chk_snd_conn(struct stream_interface *si);
Willy Tarreau4aa36832012-10-02 20:07:22 +020049static void si_conn_recv_cb(struct connection *conn);
50static void si_conn_send_cb(struct connection *conn);
Willy Tarreau2396c1c2012-10-03 21:12:16 +020051static int si_conn_wake_cb(struct connection *conn);
Willy Tarreauf873d752012-05-11 17:47:17 +020052
Willy Tarreauc5788912012-08-24 18:12:41 +020053/* stream-interface operations for embedded tasks */
54struct si_ops si_embedded_ops = {
Willy Tarreau5c979a92012-05-07 17:15:39 +020055 .update = stream_int_update_embedded,
Willy Tarreau5c979a92012-05-07 17:15:39 +020056 .chk_rcv = stream_int_chk_rcv,
57 .chk_snd = stream_int_chk_snd,
Willy Tarreau8b3d7df2013-09-29 14:51:58 +020058 .shutr = stream_int_shutr,
59 .shutw = stream_int_shutw,
Willy Tarreau5c979a92012-05-07 17:15:39 +020060};
61
Willy Tarreauc5788912012-08-24 18:12:41 +020062/* stream-interface operations for connections */
63struct si_ops si_conn_ops = {
64 .update = stream_int_update_conn,
65 .chk_rcv = stream_int_chk_rcv_conn,
66 .chk_snd = stream_int_chk_snd_conn,
Willy Tarreau8b3d7df2013-09-29 14:51:58 +020067 .shutr = stream_int_shutr_conn,
68 .shutw = stream_int_shutw_conn,
Willy Tarreauc5788912012-08-24 18:12:41 +020069};
70
Willy Tarreau74beec32012-10-03 00:41:04 +020071struct data_cb si_conn_cb = {
Willy Tarreauc5788912012-08-24 18:12:41 +020072 .recv = si_conn_recv_cb,
73 .send = si_conn_send_cb,
Willy Tarreau4aa36832012-10-02 20:07:22 +020074 .wake = si_conn_wake_cb,
Willy Tarreauc5788912012-08-24 18:12:41 +020075};
76
Willy Tarreaucff64112008-11-03 06:26:53 +010077/*
78 * This function only has to be called once after a wakeup event in case of
79 * suspected timeout. It controls the stream interface timeouts and sets
80 * si->flags accordingly. It does NOT close anything, as this timeout may
81 * be used for any purpose. It returns 1 if the timeout fired, otherwise
82 * zero.
83 */
84int stream_int_check_timeouts(struct stream_interface *si)
85{
86 if (tick_is_expired(si->exp, now_ms)) {
87 si->flags |= SI_FL_EXP;
88 return 1;
89 }
90 return 0;
91}
92
Willy Tarreaufe3718a2008-11-30 18:14:12 +010093/* to be called only when in SI_ST_DIS with SI_FL_ERR */
Willy Tarreaucff64112008-11-03 06:26:53 +010094void stream_int_report_error(struct stream_interface *si)
95{
96 if (!si->err_type)
97 si->err_type = SI_ET_DATA_ERR;
98
Willy Tarreau03cdb7c2012-08-27 23:14:58 +020099 si->ob->flags |= CF_WRITE_ERROR;
100 si->ib->flags |= CF_READ_ERROR;
Willy Tarreaucff64112008-11-03 06:26:53 +0100101}
102
103/*
Willy Tarreaudded32d2008-11-30 19:48:07 +0100104 * Returns a message to the client ; the connection is shut down for read,
105 * and the request is cleared so that no server connection can be initiated.
106 * The buffer is marked for read shutdown on the other side to protect the
107 * message, and the buffer write is enabled. The message is contained in a
Willy Tarreau148d0992010-01-10 10:21:21 +0100108 * "chunk". If it is null, then an empty message is used. The reply buffer does
109 * not need to be empty before this, and its contents will not be overwritten.
110 * The primary goal of this function is to return error messages to a client.
Willy Tarreaudded32d2008-11-30 19:48:07 +0100111 */
112void stream_int_retnclose(struct stream_interface *si, const struct chunk *msg)
113{
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200114 channel_auto_read(si->ib);
115 channel_abort(si->ib);
116 channel_auto_close(si->ib);
117 channel_erase(si->ib);
Willy Tarreau798e1282010-12-12 13:06:00 +0100118
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200119 bi_erase(si->ob);
Willy Tarreau148d0992010-01-10 10:21:21 +0100120 if (likely(msg && msg->len))
Willy Tarreau9dab5fc2012-05-07 11:56:55 +0200121 bo_inject(si->ob, msg->str, msg->len);
Willy Tarreaudded32d2008-11-30 19:48:07 +0100122
123 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200124 channel_auto_read(si->ob);
125 channel_auto_close(si->ob);
126 channel_shutr_now(si->ob);
Willy Tarreau5d881d02009-12-27 22:51:06 +0100127}
128
Willy Tarreaufb90d942009-09-05 20:57:35 +0200129/* default update function for embedded tasks, to be used at the end of the i/o handler */
Willy Tarreauf873d752012-05-11 17:47:17 +0200130static void stream_int_update_embedded(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200131{
Willy Tarreau3488e252010-08-09 16:24:56 +0200132 int old_flags = si->flags;
133
Willy Tarreaufb90d942009-09-05 20:57:35 +0200134 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
135 __FUNCTION__,
136 si, si->state, si->ib->flags, si->ob->flags);
137
138 if (si->state != SI_ST_EST)
139 return;
140
Willy Tarreaub31c9712012-11-11 23:05:39 +0100141 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200142 channel_is_empty(si->ob))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200143 si_shutw(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200144
Willy Tarreaub31c9712012-11-11 23:05:39 +0100145 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && !channel_full(si->ob))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200146 si->flags |= SI_FL_WAIT_DATA;
147
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200148 /* we're almost sure that we need some space if the buffer is not
149 * empty, even if it's not full, because the applets can't fill it.
150 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200151 if ((si->ib->flags & (CF_SHUTR|CF_DONT_READ)) == 0 && !channel_is_empty(si->ib))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200152 si->flags |= SI_FL_WAIT_ROOM;
153
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200154 if (si->ob->flags & CF_WRITE_ACTIVITY) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200155 if (tick_isset(si->ob->wex))
156 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
157 }
158
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200159 if (si->ib->flags & CF_READ_ACTIVITY ||
160 (si->ob->flags & CF_WRITE_ACTIVITY && !(si->flags & SI_FL_INDEP_STR))) {
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200161 if (tick_isset(si->ib->rex))
162 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
163 }
164
Willy Tarreau3488e252010-08-09 16:24:56 +0200165 /* save flags to detect changes */
166 old_flags = si->flags;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200167 if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200168 !channel_full(si->ob) &&
Willy Tarreau96fd4b52009-10-04 17:18:35 +0200169 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
Willy Tarreau73b013b2012-05-21 16:31:45 +0200170 si_chk_rcv(si->ob->prod);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200171
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200172 if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) &&
Willy Tarreau3488e252010-08-09 16:24:56 +0200173 (si->ib->cons->flags & SI_FL_WAIT_DATA)) {
Willy Tarreau73b013b2012-05-21 16:31:45 +0200174 si_chk_snd(si->ib->cons);
Willy Tarreau3488e252010-08-09 16:24:56 +0200175 /* check if the consumer has freed some space */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200176 if (!channel_full(si->ib))
Willy Tarreau3488e252010-08-09 16:24:56 +0200177 si->flags &= ~SI_FL_WAIT_ROOM;
178 }
Willy Tarreaufb90d942009-09-05 20:57:35 +0200179
180 /* Note that we're trying to wake up in two conditions here :
181 * - special event, which needs the holder task attention
182 * - status indicating that the applet can go on working. This
183 * is rather hard because we might be blocking on output and
184 * don't want to wake up on input and vice-versa. The idea is
Willy Tarreau3488e252010-08-09 16:24:56 +0200185 * to only rely on the changes the chk_* might have performed.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200186 */
187 if (/* check stream interface changes */
Willy Tarreau3488e252010-08-09 16:24:56 +0200188 ((old_flags & ~si->flags) & (SI_FL_WAIT_ROOM|SI_FL_WAIT_DATA)) ||
189
190 /* changes on the production side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200191 (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200192 si->state != SI_ST_EST ||
193 (si->flags & SI_FL_ERR) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200194 ((si->ib->flags & CF_READ_PARTIAL) &&
Willy Tarreau3488e252010-08-09 16:24:56 +0200195 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
196
197 /* changes on the consumption side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200198 (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
199 ((si->ob->flags & CF_WRITE_ACTIVITY) &&
200 ((si->ob->flags & CF_SHUTW) ||
Willy Tarreau3488e252010-08-09 16:24:56 +0200201 si->ob->prod->state != SI_ST_EST ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200202 (channel_is_empty(si->ob) && !si->ob->to_forward)))) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200203 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
204 task_wakeup(si->owner, TASK_WOKEN_IO);
205 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200206 if (si->ib->flags & CF_READ_ACTIVITY)
207 si->ib->flags &= ~CF_READ_DONTWAIT;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200208}
209
Willy Tarreau4a36b562012-08-06 19:31:45 +0200210/*
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200211 * This function performs a shutdown-read on a stream interface attached to an
212 * applet in a connected or init state (it does nothing for other states). It
213 * either shuts the read side or marks itself as closed. The buffer flags are
214 * updated to reflect the new state. If the stream interface has SI_FL_NOHALF,
215 * we also forward the close to the write side. The owner task is woken up if
Willy Tarreau6fe15412013-09-29 15:16:03 +0200216 * it exists.
Willy Tarreau4a36b562012-08-06 19:31:45 +0200217 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200218static void stream_int_shutr(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200219{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200220 si->ib->flags &= ~CF_SHUTR_NOW;
221 if (si->ib->flags & CF_SHUTR)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200222 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200223 si->ib->flags |= CF_SHUTR;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200224 si->ib->rex = TICK_ETERNITY;
225 si->flags &= ~SI_FL_WAIT_ROOM;
226
227 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200228 return;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200229
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200230 if (si->ob->flags & CF_SHUTW) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200231 si->state = SI_ST_DIS;
232 si->exp = TICK_ETERNITY;
Willy Tarreau4a59f2f2013-10-24 20:10:45 +0200233 si_applet_release(si);
Willy Tarreaud8ccffe2010-09-07 16:16:50 +0200234 }
Willy Tarreau4a36b562012-08-06 19:31:45 +0200235 else if (si->flags & SI_FL_NOHALF) {
236 /* we want to immediately forward this close to the write side */
237 return stream_int_shutw(si);
238 }
Willy Tarreau0bd05ea2010-07-02 11:18:03 +0200239
Willy Tarreau4a36b562012-08-06 19:31:45 +0200240 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200241 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200242 task_wakeup(si->owner, TASK_WOKEN_IO);
243}
244
Willy Tarreau4a36b562012-08-06 19:31:45 +0200245/*
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200246 * This function performs a shutdown-write on a stream interface attached to an
247 * applet in a connected or init state (it does nothing for other states). It
248 * either shuts the write side or marks itself as closed. The buffer flags are
249 * updated to reflect the new state. It does also close everything if the SI
250 * was marked as being in error state. The owner task is woken up if it exists.
Willy Tarreau4a36b562012-08-06 19:31:45 +0200251 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200252static void stream_int_shutw(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200253{
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200254 si->ob->flags &= ~CF_SHUTW_NOW;
255 if (si->ob->flags & CF_SHUTW)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200256 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200257 si->ob->flags |= CF_SHUTW;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200258 si->ob->wex = TICK_ETERNITY;
259 si->flags &= ~SI_FL_WAIT_DATA;
260
261 switch (si->state) {
262 case SI_ST_EST:
Willy Tarreau4a36b562012-08-06 19:31:45 +0200263 /* we have to shut before closing, otherwise some short messages
264 * may never leave the system, especially when there are remaining
265 * unread data in the socket input buffer, or when nolinger is set.
266 * However, if SI_FL_NOLINGER is explicitly set, we know there is
267 * no risk so we close both sides immediately.
268 */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200269 if (!(si->flags & (SI_FL_ERR | SI_FL_NOLINGER)) &&
270 !(si->ib->flags & (CF_SHUTR|CF_DONT_READ)))
Willy Tarreau6fe15412013-09-29 15:16:03 +0200271 return;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200272
273 /* fall through */
274 case SI_ST_CON:
275 case SI_ST_CER:
Willy Tarreau32d3ee92010-12-29 14:03:02 +0100276 case SI_ST_QUE:
277 case SI_ST_TAR:
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200278 /* Note that none of these states may happen with applets */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200279 si->state = SI_ST_DIS;
Willy Tarreau4a59f2f2013-10-24 20:10:45 +0200280 si_applet_release(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200281 default:
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200282 si->flags &= ~(SI_FL_WAIT_ROOM | SI_FL_NOLINGER);
283 si->ib->flags &= ~CF_SHUTR_NOW;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200284 si->ib->flags |= CF_SHUTR;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200285 si->ib->rex = TICK_ETERNITY;
286 si->exp = TICK_ETERNITY;
287 }
288
Willy Tarreau4a36b562012-08-06 19:31:45 +0200289 /* note that if the task exists, it must unregister itself once it runs */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200290 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200291 task_wakeup(si->owner, TASK_WOKEN_IO);
292}
293
294/* default chk_rcv function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200295static void stream_int_chk_rcv(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200296{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200297 struct channel *ib = si->ib;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200298
299 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
300 __FUNCTION__,
301 si, si->state, si->ib->flags, si->ob->flags);
302
Willy Tarreaub31c9712012-11-11 23:05:39 +0100303 if (unlikely(si->state != SI_ST_EST || (ib->flags & (CF_SHUTR|CF_DONT_READ))))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200304 return;
305
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200306 if (channel_full(ib)) {
Willy Tarreaufb90d942009-09-05 20:57:35 +0200307 /* stop reading */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200308 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200309 }
310 else {
311 /* (re)start reading */
312 si->flags &= ~SI_FL_WAIT_ROOM;
313 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
314 task_wakeup(si->owner, TASK_WOKEN_IO);
315 }
316}
317
318/* default chk_snd function for scheduled tasks */
Willy Tarreauf873d752012-05-11 17:47:17 +0200319static void stream_int_chk_snd(struct stream_interface *si)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200320{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200321 struct channel *ob = si->ob;
Willy Tarreaufb90d942009-09-05 20:57:35 +0200322
323 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
324 __FUNCTION__,
325 si, si->state, si->ib->flags, si->ob->flags);
326
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200327 if (unlikely(si->state != SI_ST_EST || (si->ob->flags & CF_SHUTW)))
Willy Tarreaufb90d942009-09-05 20:57:35 +0200328 return;
329
330 if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200331 channel_is_empty(ob)) /* called with nothing to send ! */
Willy Tarreaufb90d942009-09-05 20:57:35 +0200332 return;
333
334 /* Otherwise there are remaining data to be sent in the buffer,
335 * so we tell the handler.
336 */
337 si->flags &= ~SI_FL_WAIT_DATA;
338 if (!tick_isset(ob->wex))
339 ob->wex = tick_add_ifset(now_ms, ob->wto);
340
341 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
342 task_wakeup(si->owner, TASK_WOKEN_IO);
343}
344
Willy Tarreaub24281b2011-02-13 13:16:36 +0100345/* Register an applet to handle a stream_interface as part of the stream
Willy Tarreaufb90d942009-09-05 20:57:35 +0200346 * interface's owner task, which is returned. The SI will wake it up everytime
Willy Tarreaub24281b2011-02-13 13:16:36 +0100347 * it is solicited. The task's processing function must call the applet's
Willy Tarreaufb90d942009-09-05 20:57:35 +0200348 * function before returning. It must be deleted by the task handler using
Willy Tarreaub24281b2011-02-13 13:16:36 +0100349 * stream_int_unregister_handler(), possibly from within the function itself.
Willy Tarreaufa6bac62012-05-31 14:16:59 +0200350 * It also pre-initializes applet.state to zero and the connection context
351 * to NULL.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200352 */
Willy Tarreaub24281b2011-02-13 13:16:36 +0100353struct task *stream_int_register_handler(struct stream_interface *si, struct si_applet *app)
Willy Tarreaufb90d942009-09-05 20:57:35 +0200354{
Simon Horman7abd00d2011-08-13 08:03:51 +0900355 DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si->owner);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200356
Willy Tarreau2a6e8802013-10-24 15:50:53 +0200357 si_attach_applet(si, app);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200358 si->flags |= SI_FL_WAIT_DATA;
359 return si->owner;
360}
361
Willy Tarreaufb90d942009-09-05 20:57:35 +0200362/* Unregister a stream interface handler. This must be called by the handler task
Willy Tarreau128b03c2012-11-11 23:14:16 +0100363 * itself when it detects that it is in the SI_ST_DIS state.
Willy Tarreaufb90d942009-09-05 20:57:35 +0200364 */
365void stream_int_unregister_handler(struct stream_interface *si)
366{
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200367 si_detach(si);
Willy Tarreaufb90d942009-09-05 20:57:35 +0200368 si->owner = NULL;
369}
370
Willy Tarreau2c6be842012-07-06 17:12:34 +0200371/* This callback is used to send a valid PROXY protocol line to a socket being
Willy Tarreauafad0e02012-08-09 14:45:22 +0200372 * established. It returns 0 if it fails in a fatal way or needs to poll to go
373 * further, otherwise it returns non-zero and removes itself from the connection's
Willy Tarreaua1a74742012-08-24 12:14:49 +0200374 * flags (the bit is provided in <flag> by the caller). It is designed to be
375 * called by the connection handler and relies on it to commit polling changes.
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200376 * Note that it can emit a PROXY line by relying on the other end's address
377 * when the connection is attached to a stream interface, or by resolving the
378 * local address otherwise (also called a LOCAL line).
Willy Tarreau2c6be842012-07-06 17:12:34 +0200379 */
380int conn_si_send_proxy(struct connection *conn, unsigned int flag)
381{
Willy Tarreau2c6be842012-07-06 17:12:34 +0200382 /* we might have been called just after an asynchronous shutw */
Willy Tarreaua1a74742012-08-24 12:14:49 +0200383 if (conn->flags & CO_FL_SOCK_WR_SH)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200384 goto out_error;
385
Willy Tarreauf79c8172013-10-21 16:30:56 +0200386 if (!(conn->flags & CO_FL_CTRL_READY))
387 goto out_error;
388
Willy Tarreau2c6be842012-07-06 17:12:34 +0200389 /* If we have a PROXY line to send, we'll use this to validate the
390 * connection, in which case the connection is validated only once
391 * we've sent the whole proxy line. Otherwise we use connect().
392 */
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200393 while (conn->send_proxy_ofs) {
Willy Tarreau2c6be842012-07-06 17:12:34 +0200394 int ret;
395
396 /* The target server expects a PROXY line to be sent first.
397 * If the send_proxy_ofs is negative, it corresponds to the
398 * offset to start sending from then end of the proxy string
399 * (which is recomputed every time since it's constant). If
400 * it is positive, it means we have to send from the start.
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200401 * We can only send a "normal" PROXY line when the connection
402 * is attached to a stream interface. Otherwise we can only
403 * send a LOCAL line (eg: for use with health checks).
Willy Tarreau2c6be842012-07-06 17:12:34 +0200404 */
Willy Tarreau57cd3e42013-10-24 22:01:26 +0200405 if (conn->data == &si_conn_cb) {
406 struct stream_interface *si = conn->owner;
407 struct connection *remote = objt_conn(si->ob->prod->end);
408
409 if (remote)
410 ret = make_proxy_line(trash.str, trash.size, &remote->addr.from, &remote->addr.to);
411 else
412 ret = make_proxy_line(trash.str, trash.size, NULL, NULL);
413 }
414 else {
415 /* The target server expects a LOCAL line to be sent first. Retrieving
416 * local or remote addresses may fail until the connection is established.
417 */
418 conn_get_from_addr(conn);
419 if (!(conn->flags & CO_FL_ADDR_FROM_SET))
420 goto out_wait;
421
422 conn_get_to_addr(conn);
423 if (!(conn->flags & CO_FL_ADDR_TO_SET))
424 goto out_wait;
425
426 ret = make_proxy_line(trash.str, trash.size, &conn->addr.from, &conn->addr.to);
427 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200428
Willy Tarreau2c6be842012-07-06 17:12:34 +0200429 if (!ret)
430 goto out_error;
431
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200432 if (conn->send_proxy_ofs > 0)
433 conn->send_proxy_ofs = -ret; /* first call */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200434
Willy Tarreaua1a74742012-08-24 12:14:49 +0200435 /* we have to send trash from (ret+sp for -sp bytes). If the
436 * data layer has a pending write, we'll also set MSG_MORE.
437 */
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200438 ret = send(conn->t.sock.fd, trash.str + ret + conn->send_proxy_ofs, -conn->send_proxy_ofs,
Willy Tarreaua1a74742012-08-24 12:14:49 +0200439 (conn->flags & CO_FL_DATA_WR_ENA) ? MSG_MORE : 0);
Willy Tarreau2c6be842012-07-06 17:12:34 +0200440
441 if (ret == 0)
442 goto out_wait;
443
444 if (ret < 0) {
Willy Tarreau95742a42013-09-03 09:02:11 +0200445 if (errno == EAGAIN || errno == ENOTCONN)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200446 goto out_wait;
Willy Tarreau7fe45692013-12-04 23:37:56 +0100447 if (errno == EINTR)
448 continue;
Willy Tarreau26f4a042013-12-04 23:44:10 +0100449 conn->flags |= CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200450 goto out_error;
451 }
452
Willy Tarreaub8020ce2013-10-24 21:10:08 +0200453 conn->send_proxy_ofs += ret; /* becomes zero once complete */
454 if (conn->send_proxy_ofs != 0)
Willy Tarreau2c6be842012-07-06 17:12:34 +0200455 goto out_wait;
456
457 /* OK we've sent the whole line, we're connected */
Willy Tarreau7fe45692013-12-04 23:37:56 +0100458 break;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200459 }
460
Willy Tarreaua1a74742012-08-24 12:14:49 +0200461 /* The connection is ready now, simply return and let the connection
462 * handler notify upper layers if needed.
Willy Tarreau2c6be842012-07-06 17:12:34 +0200463 */
464 if (conn->flags & CO_FL_WAIT_L4_CONN)
465 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200466 conn->flags &= ~flag;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200467 return 1;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200468
469 out_error:
Willy Tarreauafad0e02012-08-09 14:45:22 +0200470 /* Write error on the file descriptor */
Willy Tarreau2c6be842012-07-06 17:12:34 +0200471 conn->flags |= CO_FL_ERROR;
Willy Tarreauafad0e02012-08-09 14:45:22 +0200472 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200473
474 out_wait:
Willy Tarreaua1a74742012-08-24 12:14:49 +0200475 __conn_sock_stop_recv(conn);
476 __conn_sock_poll_send(conn);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200477 return 0;
Willy Tarreau2c6be842012-07-06 17:12:34 +0200478}
479
Willy Tarreau100c4672012-08-20 12:06:26 +0200480/* Callback to be used by connection I/O handlers upon completion. It differs from
Willy Tarreau4aa36832012-10-02 20:07:22 +0200481 * the update function in that it is designed to be called by lower layers after I/O
Willy Tarreau100c4672012-08-20 12:06:26 +0200482 * events have been completed. It will also try to wake the associated task up if
Willy Tarreauf16723e2012-08-24 12:52:22 +0200483 * an important event requires special handling. It relies on the connection handler
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200484 * to commit any polling updates. The function always returns 0.
Willy Tarreau100c4672012-08-20 12:06:26 +0200485 */
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200486static int si_conn_wake_cb(struct connection *conn)
Willy Tarreaufd31e532012-07-23 18:24:25 +0200487{
Willy Tarreaue603e692012-09-27 22:20:41 +0200488 struct stream_interface *si = conn->owner;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200489
490 DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n",
491 __FUNCTION__,
492 si, si->state, si->ib->flags, si->ob->flags);
493
Willy Tarreau3c55ec22012-07-23 19:19:51 +0200494 if (conn->flags & CO_FL_ERROR)
495 si->flags |= SI_FL_ERR;
496
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200497 /* check for recent connection establishment */
Willy Tarreauc76ae332012-07-12 15:32:13 +0200498 if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) {
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200499 si->exp = TICK_ETERNITY;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200500 si->ob->flags |= CF_WRITE_NULL;
Willy Tarreau8f8c92f2012-07-23 19:45:44 +0200501 }
502
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200503 /* process consumer side */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200504 if (channel_is_empty(si->ob)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100505 if (((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200506 (si->state == SI_ST_EST))
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200507 stream_int_shutw_conn(si);
Willy Tarreauf16723e2012-08-24 12:52:22 +0200508 __conn_data_stop_send(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200509 si->ob->wex = TICK_ETERNITY;
510 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200511
Willy Tarreaub31c9712012-11-11 23:05:39 +0100512 if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0 && !channel_full(si->ob))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200513 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200514
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200515 if (si->ob->flags & CF_WRITE_ACTIVITY) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200516 /* update timeouts if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200517 if ((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200518 !channel_is_empty(si->ob))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200519 if (tick_isset(si->ob->wex))
520 si->ob->wex = tick_add_ifset(now_ms, si->ob->wto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200521
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200522 if (!(si->flags & SI_FL_INDEP_STR))
523 if (tick_isset(si->ib->rex))
524 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200525
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200526 if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200527 !channel_full(si->ob) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200528 (si->ob->prod->flags & SI_FL_WAIT_ROOM)))
529 si_chk_rcv(si->ob->prod);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200530 }
531
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200532 /* process producer side.
533 * We might have some data the consumer is waiting for.
534 * We can do fast-forwarding, but we avoid doing this for partial
535 * buffers, because it is very likely that it will be done again
536 * immediately afterwards once the following data is parsed (eg:
537 * HTTP chunking).
538 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200539 if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200540 (si->ib->pipe /* always try to send spliced data */ ||
Willy Tarreau9b28e032012-10-12 23:49:43 +0200541 (si->ib->buf->i == 0 && (si->ib->cons->flags & SI_FL_WAIT_DATA)))) {
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200542 int last_len = si->ib->pipe ? si->ib->pipe->data : 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200543
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200544 si_chk_snd(si->ib->cons);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200545
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200546 /* check if the consumer has freed some space either in the
547 * buffer or in the pipe.
548 */
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200549 if (!channel_full(si->ib) &&
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200550 (!last_len || !si->ib->pipe || si->ib->pipe->data < last_len))
551 si->flags &= ~SI_FL_WAIT_ROOM;
552 }
Willy Tarreaufd31e532012-07-23 18:24:25 +0200553
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200554 if (si->flags & SI_FL_WAIT_ROOM) {
Willy Tarreauf16723e2012-08-24 12:52:22 +0200555 __conn_data_stop_recv(conn);
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200556 si->ib->rex = TICK_ETERNITY;
557 }
Willy Tarreau66572762012-12-19 17:34:17 +0100558 else if ((si->ib->flags & (CF_SHUTR|CF_READ_PARTIAL|CF_DONT_READ)) == CF_READ_PARTIAL &&
Willy Tarreau3bf1b2b2012-08-27 20:46:07 +0200559 !channel_full(si->ib)) {
Willy Tarreau9f7c6a12012-11-19 16:43:14 +0100560 /* we must re-enable reading if si_chk_snd() has freed some space */
561 __conn_data_want_recv(conn);
Willy Tarreau66572762012-12-19 17:34:17 +0100562 if (!(si->ib->flags & CF_READ_NOEXP) && tick_isset(si->ib->rex))
Willy Tarreau44b5dc62012-08-24 12:12:53 +0200563 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
Willy Tarreaufd31e532012-07-23 18:24:25 +0200564 }
565
566 /* wake the task up only when needed */
567 if (/* changes on the production side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200568 (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200569 si->state != SI_ST_EST ||
570 (si->flags & SI_FL_ERR) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200571 ((si->ib->flags & CF_READ_PARTIAL) &&
Willy Tarreaufd31e532012-07-23 18:24:25 +0200572 (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) ||
573
574 /* changes on the consumption side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200575 (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) ||
576 ((si->ob->flags & CF_WRITE_ACTIVITY) &&
577 ((si->ob->flags & CF_SHUTW) ||
Willy Tarreaufd31e532012-07-23 18:24:25 +0200578 si->ob->prod->state != SI_ST_EST ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200579 (channel_is_empty(si->ob) && !si->ob->to_forward)))) {
Willy Tarreaufd31e532012-07-23 18:24:25 +0200580 task_wakeup(si->owner, TASK_WOKEN_IO);
581 }
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200582 if (si->ib->flags & CF_READ_ACTIVITY)
583 si->ib->flags &= ~CF_READ_DONTWAIT;
Willy Tarreau2396c1c2012-10-03 21:12:16 +0200584 return 0;
Willy Tarreaufd31e532012-07-23 18:24:25 +0200585}
Willy Tarreau2c6be842012-07-06 17:12:34 +0200586
Willy Tarreau5368d802012-08-21 18:22:06 +0200587/*
588 * This function is called to send buffer data to a stream socket.
Godbache68e02d2013-10-11 15:48:29 +0800589 * It calls the transport layer's snd_buf function. It relies on the
Godbach4f489902013-12-04 17:24:06 +0800590 * caller to commit polling changes. The caller should check conn->flags
591 * for errors.
Willy Tarreau5368d802012-08-21 18:22:06 +0200592 */
Godbach4f489902013-12-04 17:24:06 +0800593static void si_conn_send(struct connection *conn)
Willy Tarreau5368d802012-08-21 18:22:06 +0200594{
Willy Tarreaue603e692012-09-27 22:20:41 +0200595 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +0200596 struct channel *chn = si->ob;
Willy Tarreau5368d802012-08-21 18:22:06 +0200597 int ret;
598
Willy Tarreaucb76e592012-10-12 23:56:57 +0200599 if (chn->pipe && conn->xprt->snd_pipe) {
600 ret = conn->xprt->snd_pipe(conn, chn->pipe);
Willy Tarreau96199b12012-08-24 00:46:52 +0200601 if (ret > 0)
Willy Tarreaucb76e592012-10-12 23:56:57 +0200602 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200603
Willy Tarreaucb76e592012-10-12 23:56:57 +0200604 if (!chn->pipe->data) {
605 put_pipe(chn->pipe);
606 chn->pipe = NULL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200607 }
608
Willy Tarreau96199b12012-08-24 00:46:52 +0200609 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +0800610 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200611 }
612
613 /* At this point, the pipe is empty, but we may still have data pending
614 * in the normal buffer.
615 */
Willy Tarreau9b28e032012-10-12 23:49:43 +0200616 if (!chn->buf->o)
Godbach4f489902013-12-04 17:24:06 +0800617 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200618
Godbache68e02d2013-10-11 15:48:29 +0800619 /* when we're here, we already know that there is no spliced
Willy Tarreau5368d802012-08-21 18:22:06 +0200620 * data left, and that there are sendable buffered data.
621 */
Godbache68e02d2013-10-11 15:48:29 +0800622 if (!(conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_DATA_WR_SH | CO_FL_WAIT_DATA | CO_FL_WAIT_WR | CO_FL_HANDSHAKE))) {
Willy Tarreau5368d802012-08-21 18:22:06 +0200623 /* check if we want to inform the kernel that we're interested in
624 * sending more data after this call. We want this if :
625 * - we're about to close after this last send and want to merge
626 * the ongoing FIN with the last segment.
627 * - we know we can't send everything at once and must get back
628 * here because of unaligned data
629 * - there is still a finite amount of data to forward
630 * The test is arranged so that the most common case does only 2
631 * tests.
632 */
633 unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
634
Willy Tarreaucb76e592012-10-12 23:56:57 +0200635 if ((!(chn->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) &&
636 ((chn->to_forward && chn->to_forward != CHN_INFINITE_FORWARD) ||
637 (chn->flags & CF_EXPECT_MORE))) ||
Willy Tarreaub31c9712012-11-11 23:05:39 +0100638 ((chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW))
Willy Tarreau5368d802012-08-21 18:22:06 +0200639 send_flag |= MSG_MORE;
640
Willy Tarreau9b28e032012-10-12 23:49:43 +0200641 ret = conn->xprt->snd_buf(conn, chn->buf, send_flag);
Godbache68e02d2013-10-11 15:48:29 +0800642 if (ret > 0) {
643 chn->flags |= CF_WRITE_PARTIAL;
Willy Tarreau5368d802012-08-21 18:22:06 +0200644
Godbache68e02d2013-10-11 15:48:29 +0800645 if (!chn->buf->o) {
646 /* Always clear both flags once everything has been sent, they're one-shot */
647 chn->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT);
648 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200649
Godbache68e02d2013-10-11 15:48:29 +0800650 /* if some data remain in the buffer, it's only because the
651 * system buffers are full, we will try next time.
652 */
Willy Tarreau5368d802012-08-21 18:22:06 +0200653 }
Godbache68e02d2013-10-11 15:48:29 +0800654 }
Willy Tarreau5368d802012-08-21 18:22:06 +0200655
Godbach4f489902013-12-04 17:24:06 +0800656 return;
Willy Tarreau5368d802012-08-21 18:22:06 +0200657}
658
659
Willy Tarreau100c4672012-08-20 12:06:26 +0200660/* Updates the timers and flags of a stream interface attached to a connection,
661 * depending on the buffers' flags. It should only be called once after the
662 * buffer flags have settled down, and before they are cleared. It doesn't
663 * harm to call it as often as desired (it just slightly hurts performance).
664 * It is only meant to be called by upper layers after buffer flags have been
665 * manipulated by analysers.
666 */
667void stream_int_update_conn(struct stream_interface *si)
668{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200669 struct channel *ib = si->ib;
670 struct channel *ob = si->ob;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200671 struct connection *conn = __objt_conn(si->end);
Willy Tarreau100c4672012-08-20 12:06:26 +0200672
Willy Tarreau100c4672012-08-20 12:06:26 +0200673 /* Check if we need to close the read side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200674 if (!(ib->flags & CF_SHUTR)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200675 /* Read not closed, update FD status and timeout for reads */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100676 if ((ib->flags & CF_DONT_READ) || channel_full(ib)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200677 /* stop reading */
678 if (!(si->flags & SI_FL_WAIT_ROOM)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100679 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau100c4672012-08-20 12:06:26 +0200680 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200681 conn_data_stop_recv(conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200682 ib->rex = TICK_ETERNITY;
683 }
684 }
685 else {
686 /* (re)start reading and update timeout. Note: we don't recompute the timeout
687 * everytime we get here, otherwise it would risk never to expire. We only
688 * update it if is was not yet set. The stream socket handler will already
689 * have updated it if there has been a completed I/O.
690 */
691 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200692 conn_data_want_recv(conn);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200693 if (!(ib->flags & (CF_READ_NOEXP|CF_DONT_READ)) && !tick_isset(ib->rex))
Willy Tarreau100c4672012-08-20 12:06:26 +0200694 ib->rex = tick_add_ifset(now_ms, ib->rto);
695 }
696 }
697
698 /* Check if we need to close the write side */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200699 if (!(ob->flags & CF_SHUTW)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200700 /* Write not closed, update FD status and timeout for writes */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200701 if (channel_is_empty(ob)) {
Willy Tarreau100c4672012-08-20 12:06:26 +0200702 /* stop writing */
703 if (!(si->flags & SI_FL_WAIT_DATA)) {
Willy Tarreaub31c9712012-11-11 23:05:39 +0100704 if ((ob->flags & CF_SHUTW_NOW) == 0)
Willy Tarreau100c4672012-08-20 12:06:26 +0200705 si->flags |= SI_FL_WAIT_DATA;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200706 conn_data_stop_send(conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200707 ob->wex = TICK_ETERNITY;
708 }
709 }
710 else {
711 /* (re)start writing and update timeout. Note: we don't recompute the timeout
712 * everytime we get here, otherwise it would risk never to expire. We only
713 * update it if is was not yet set. The stream socket handler will already
714 * have updated it if there has been a completed I/O.
715 */
716 si->flags &= ~SI_FL_WAIT_DATA;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200717 conn_data_want_send(conn);
Willy Tarreau100c4672012-08-20 12:06:26 +0200718 if (!tick_isset(ob->wex)) {
719 ob->wex = tick_add_ifset(now_ms, ob->wto);
720 if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
721 /* Note: depending on the protocol, we don't know if we're waiting
722 * for incoming data or not. So in order to prevent the socket from
723 * expiring read timeouts during writes, we refresh the read timeout,
724 * except if it was already infinite or if we have explicitly setup
725 * independent streams.
726 */
727 ib->rex = tick_add_ifset(now_ms, ib->rto);
728 }
729 }
730 }
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200731 }
732}
733
734/*
735 * This function performs a shutdown-read on a stream interface attached to
736 * a connection in a connected or init state (it does nothing for other
737 * states). It either shuts the read side or marks itself as closed. The buffer
738 * flags are updated to reflect the new state. If the stream interface has
739 * SI_FL_NOHALF, we also forward the close to the write side. If a control
740 * layer is defined, then it is supposed to be a socket layer and file
Willy Tarreau6fe15412013-09-29 15:16:03 +0200741 * descriptors are then shutdown or closed accordingly. The function
742 * automatically disables polling if needed.
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200743 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200744static void stream_int_shutr_conn(struct stream_interface *si)
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200745{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200746 struct connection *conn = __objt_conn(si->end);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200747
748 si->ib->flags &= ~CF_SHUTR_NOW;
749 if (si->ib->flags & CF_SHUTR)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200750 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200751 si->ib->flags |= CF_SHUTR;
752 si->ib->rex = TICK_ETERNITY;
753 si->flags &= ~SI_FL_WAIT_ROOM;
754
755 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200756 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200757
758 if (si->ob->flags & CF_SHUTW) {
Willy Tarreau6fe15412013-09-29 15:16:03 +0200759 conn_full_close(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200760 si->state = SI_ST_DIS;
761 si->exp = TICK_ETERNITY;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200762 }
763 else if (si->flags & SI_FL_NOHALF) {
764 /* we want to immediately forward this close to the write side */
765 return stream_int_shutw_conn(si);
766 }
767 else if (conn->ctrl) {
768 /* we want the caller to disable polling on this FD */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200769 conn_data_stop_recv(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200770 }
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200771}
772
773/*
774 * This function performs a shutdown-write on a stream interface attached to
775 * a connection in a connected or init state (it does nothing for other
776 * states). It either shuts the write side or marks itself as closed. The
777 * buffer flags are updated to reflect the new state. It does also close
778 * everything if the SI was marked as being in error state. If there is a
779 * data-layer shutdown, it is called. If a control layer is defined, then it is
780 * supposed to be a socket layer and file descriptors are then shutdown or
Willy Tarreau6fe15412013-09-29 15:16:03 +0200781 * closed accordingly. The function automatically disables polling if needed.
782 * Note: at the moment, we continue to check conn->ctrl eventhough we *know* it
783 * is valid. This will help selecting the proper shutdown() and setsockopt()
784 * calls if/when we implement remote sockets later.
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200785 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200786static void stream_int_shutw_conn(struct stream_interface *si)
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200787{
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200788 struct connection *conn = __objt_conn(si->end);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200789
790 si->ob->flags &= ~CF_SHUTW_NOW;
791 if (si->ob->flags & CF_SHUTW)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200792 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200793 si->ob->flags |= CF_SHUTW;
794 si->ob->wex = TICK_ETERNITY;
795 si->flags &= ~SI_FL_WAIT_DATA;
796
797 switch (si->state) {
798 case SI_ST_EST:
799 /* we have to shut before closing, otherwise some short messages
800 * may never leave the system, especially when there are remaining
801 * unread data in the socket input buffer, or when nolinger is set.
802 * However, if SI_FL_NOLINGER is explicitly set, we know there is
803 * no risk so we close both sides immediately.
804 */
805 if (si->flags & SI_FL_ERR) {
806 /* quick close, the socket is alredy shut anyway */
807 }
808 else if (si->flags & SI_FL_NOLINGER) {
Willy Tarreauf79c8172013-10-21 16:30:56 +0200809 if ((conn->flags & CO_FL_CTRL_READY) && conn->ctrl) {
Willy Tarreau6fe15412013-09-29 15:16:03 +0200810 setsockopt(conn->t.sock.fd, SOL_SOCKET, SO_LINGER,
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200811 (struct linger *) &nolinger, sizeof(struct linger));
812 }
813 /* unclean data-layer shutdown */
814 if (conn->xprt && conn->xprt->shutw)
815 conn->xprt->shutw(conn, 0);
816 }
817 else {
818 /* clean data-layer shutdown */
819 if (conn->xprt && conn->xprt->shutw)
820 conn->xprt->shutw(conn, 1);
821
822 /* If the stream interface is configured to disable half-open
823 * connections, we'll skip the shutdown(), but only if the
824 * read size is already closed. Otherwise we can't support
825 * closed write with pending read (eg: abortonclose while
826 * waiting for the server).
827 */
828 if (!(si->flags & SI_FL_NOHALF) || !(si->ib->flags & (CF_SHUTR|CF_DONT_READ))) {
829 /* We shutdown transport layer */
Willy Tarreauf79c8172013-10-21 16:30:56 +0200830 if ((conn->flags & CO_FL_CTRL_READY) && conn->ctrl)
Willy Tarreau6fe15412013-09-29 15:16:03 +0200831 shutdown(conn->t.sock.fd, SHUT_WR);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200832
833 if (!(si->ib->flags & (CF_SHUTR|CF_DONT_READ))) {
834 /* OK just a shutw, but we want the caller
835 * to disable polling on this FD if exists.
836 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200837 if (conn->ctrl)
838 conn_data_stop_send(conn);
839 return;
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200840 }
841 }
842 }
843
844 /* fall through */
845 case SI_ST_CON:
846 /* we may have to close a pending connection, and mark the
847 * response buffer as shutr
848 */
Willy Tarreau6fe15412013-09-29 15:16:03 +0200849 conn_full_close(conn);
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200850 /* fall through */
851 case SI_ST_CER:
852 case SI_ST_QUE:
853 case SI_ST_TAR:
854 si->state = SI_ST_DIS;
Willy Tarreau4a59f2f2013-10-24 20:10:45 +0200855 /* fall through */
Willy Tarreau8b3d7df2013-09-29 14:51:58 +0200856 default:
857 si->flags &= ~(SI_FL_WAIT_ROOM | SI_FL_NOLINGER);
858 si->ib->flags &= ~CF_SHUTR_NOW;
859 si->ib->flags |= CF_SHUTR;
860 si->ib->rex = TICK_ETERNITY;
861 si->exp = TICK_ETERNITY;
Willy Tarreau100c4672012-08-20 12:06:26 +0200862 }
863}
864
Willy Tarreau46a8d922012-08-20 12:38:36 +0200865/* This function is used for inter-stream-interface calls. It is called by the
866 * consumer to inform the producer side that it may be interested in checking
867 * for free space in the buffer. Note that it intentionally does not update
868 * timeouts, so that we can still check them later at wake-up. This function is
869 * dedicated to connection-based stream interfaces.
870 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200871static void stream_int_chk_rcv_conn(struct stream_interface *si)
Willy Tarreau46a8d922012-08-20 12:38:36 +0200872{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200873 struct channel *ib = si->ib;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200874 struct connection *conn = __objt_conn(si->end);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200875
Willy Tarreau34ffd772012-09-03 16:51:27 +0200876 if (unlikely(si->state > SI_ST_EST || (ib->flags & CF_SHUTR)))
Willy Tarreau46a8d922012-08-20 12:38:36 +0200877 return;
878
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200879 conn_refresh_polling_flags(conn);
Willy Tarreau7d281492012-12-16 19:19:13 +0100880
Willy Tarreaub31c9712012-11-11 23:05:39 +0100881 if ((ib->flags & CF_DONT_READ) || channel_full(ib)) {
Willy Tarreau46a8d922012-08-20 12:38:36 +0200882 /* stop reading */
Willy Tarreaub31c9712012-11-11 23:05:39 +0100883 if (!(ib->flags & CF_DONT_READ)) /* full */
Willy Tarreau46a8d922012-08-20 12:38:36 +0200884 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200885 __conn_data_stop_recv(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200886 }
887 else {
888 /* (re)start reading */
889 si->flags &= ~SI_FL_WAIT_ROOM;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200890 __conn_data_want_recv(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200891 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200892 conn_cond_update_data_polling(conn);
Willy Tarreau46a8d922012-08-20 12:38:36 +0200893}
894
895
Willy Tarreaude5722c2012-08-20 15:01:10 +0200896/* This function is used for inter-stream-interface calls. It is called by the
897 * producer to inform the consumer side that it may be interested in checking
898 * for data in the buffer. Note that it intentionally does not update timeouts,
899 * so that we can still check them later at wake-up.
900 */
Willy Tarreauc5788912012-08-24 18:12:41 +0200901static void stream_int_chk_snd_conn(struct stream_interface *si)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200902{
Willy Tarreau7421efb2012-07-02 15:11:27 +0200903 struct channel *ob = si->ob;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200904 struct connection *conn = __objt_conn(si->end);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200905
Willy Tarreau34ffd772012-09-03 16:51:27 +0200906 if (unlikely(si->state > SI_ST_EST || (ob->flags & CF_SHUTW)))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200907 return;
Willy Tarreaude5722c2012-08-20 15:01:10 +0200908
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200909 if (unlikely(channel_is_empty(ob))) /* called with nothing to send ! */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200910 return;
911
912 if (!ob->pipe && /* spliced data wants to be forwarded ASAP */
Willy Tarreaub0165872012-12-15 10:12:39 +0100913 !(si->flags & SI_FL_WAIT_DATA)) /* not waiting for data */
Willy Tarreaude5722c2012-08-20 15:01:10 +0200914 return;
915
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200916 if (conn->flags & (CO_FL_DATA_WR_ENA|CO_FL_CURR_WR_ENA)) {
Willy Tarreau5007d2a2013-07-18 22:09:48 +0200917 /* already subscribed to write notifications, will be called
918 * anyway, so let's avoid calling it especially if the reader
919 * is not ready.
920 */
921 return;
922 }
923
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200924 if (!(conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN))) {
Willy Tarreaud29a0662012-12-10 16:33:38 +0100925 /* Before calling the data-level operations, we have to prepare
926 * the polling flags to ensure we properly detect changes.
Willy Tarreaude5722c2012-08-20 15:01:10 +0200927 */
Willy Tarreauf79c8172013-10-21 16:30:56 +0200928 if ((conn->flags & CO_FL_CTRL_READY) && conn->ctrl)
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200929 fd_want_send(conn->t.sock.fd);
Willy Tarreau7d281492012-12-16 19:19:13 +0100930
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200931 conn_refresh_polling_flags(conn);
Willy Tarreaud29a0662012-12-10 16:33:38 +0100932
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200933 si_conn_send(conn);
Willy Tarreauf79c8172013-10-21 16:30:56 +0200934 if ((conn->flags & CO_FL_CTRL_READY) && (conn->flags & CO_FL_ERROR)) {
Willy Tarreaud29a0662012-12-10 16:33:38 +0100935 /* Write error on the file descriptor */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200936 fd_stop_both(conn->t.sock.fd);
937 __conn_data_stop_both(conn);
Willy Tarreaud29a0662012-12-10 16:33:38 +0100938 si->flags |= SI_FL_ERR;
Willy Tarreaud29a0662012-12-10 16:33:38 +0100939 goto out_wakeup;
940 }
Willy Tarreaude5722c2012-08-20 15:01:10 +0200941 }
942
943 /* OK, so now we know that some data might have been sent, and that we may
944 * have to poll first. We have to do that too if the buffer is not empty.
945 */
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200946 if (channel_is_empty(ob)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200947 /* the connection is established but we can't write. Either the
948 * buffer is empty, or we just refrain from sending because the
949 * ->o limit was reached. Maybe we just wrote the last
950 * chunk and need to close.
951 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200952 __conn_data_stop_send(conn);
Willy Tarreaub31c9712012-11-11 23:05:39 +0100953 if (((ob->flags & (CF_SHUTW|CF_AUTO_CLOSE|CF_SHUTW_NOW)) ==
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200954 (CF_AUTO_CLOSE|CF_SHUTW_NOW)) &&
Willy Tarreaude5722c2012-08-20 15:01:10 +0200955 (si->state == SI_ST_EST)) {
956 si_shutw(si);
957 goto out_wakeup;
958 }
959
Willy Tarreaub31c9712012-11-11 23:05:39 +0100960 if ((ob->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0)
Willy Tarreaude5722c2012-08-20 15:01:10 +0200961 si->flags |= SI_FL_WAIT_DATA;
962 ob->wex = TICK_ETERNITY;
963 }
964 else {
965 /* Otherwise there are remaining data to be sent in the buffer,
966 * which means we have to poll before doing so.
967 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200968 __conn_data_want_send(conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +0200969 si->flags &= ~SI_FL_WAIT_DATA;
970 if (!tick_isset(ob->wex))
971 ob->wex = tick_add_ifset(now_ms, ob->wto);
972 }
973
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200974 if (likely(ob->flags & CF_WRITE_ACTIVITY)) {
Willy Tarreaude5722c2012-08-20 15:01:10 +0200975 /* update timeout if we have written something */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200976 if ((ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL &&
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200977 !channel_is_empty(ob))
Willy Tarreaude5722c2012-08-20 15:01:10 +0200978 ob->wex = tick_add_ifset(now_ms, ob->wto);
979
980 if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) {
981 /* Note: to prevent the client from expiring read timeouts
982 * during writes, we refresh it. We only do this if the
983 * interface is not configured for "independent streams",
984 * because for some applications it's better not to do this,
985 * for instance when continuously exchanging small amounts
986 * of data which can full the socket buffers long before a
987 * write timeout is detected.
988 */
989 si->ib->rex = tick_add_ifset(now_ms, si->ib->rto);
990 }
991 }
992
993 /* in case of special condition (error, shutdown, end of write...), we
994 * have to notify the task.
995 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200996 if (likely((ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) ||
Willy Tarreau8e21bb92012-08-24 22:40:29 +0200997 (channel_is_empty(ob) && !ob->to_forward) ||
Willy Tarreaude5722c2012-08-20 15:01:10 +0200998 si->state != SI_ST_EST)) {
999 out_wakeup:
1000 if (!(si->flags & SI_FL_DONT_WAKE) && si->owner)
1001 task_wakeup(si->owner, TASK_WOKEN_IO);
1002 }
Willy Tarreauf16723e2012-08-24 12:52:22 +02001003
1004 /* commit possible polling changes */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001005 conn_cond_update_polling(conn);
Willy Tarreaude5722c2012-08-20 15:01:10 +02001006}
1007
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001008/*
Willy Tarreauce323de2012-08-20 21:41:06 +02001009 * This is the callback which is called by the connection layer to receive data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001010 * into the buffer from the connection. It iterates over the transport layer's
1011 * rcv_buf function.
Willy Tarreauce323de2012-08-20 21:41:06 +02001012 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001013static void si_conn_recv_cb(struct connection *conn)
Willy Tarreauce323de2012-08-20 21:41:06 +02001014{
Willy Tarreaue603e692012-09-27 22:20:41 +02001015 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001016 struct channel *chn = si->ib;
Willy Tarreauce323de2012-08-20 21:41:06 +02001017 int ret, max, cur_read;
1018 int read_poll = MAX_READ_POLL_LOOPS;
1019
1020 /* stop immediately on errors. Note that we DON'T want to stop on
1021 * POLL_ERR, as the poller might report a write error while there
1022 * are still data available in the recv buffer. This typically
1023 * happens when we send too large a request to a backend server
1024 * which rejects it before reading it all.
1025 */
1026 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001027 return;
Willy Tarreauce323de2012-08-20 21:41:06 +02001028
1029 /* stop here if we reached the end of data */
1030 if (conn_data_read0_pending(conn))
1031 goto out_shutdown_r;
1032
1033 /* maybe we were called immediately after an asynchronous shutr */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001034 if (chn->flags & CF_SHUTR)
Willy Tarreauce323de2012-08-20 21:41:06 +02001035 return;
1036
Willy Tarreau96199b12012-08-24 00:46:52 +02001037 cur_read = 0;
Willy Tarreau96199b12012-08-24 00:46:52 +02001038
1039 /* First, let's see if we may splice data across the channel without
1040 * using a buffer.
1041 */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001042 if (conn->xprt->rcv_pipe &&
Willy Tarreaufa8e2bc2013-07-18 22:21:54 +02001043 (chn->pipe || chn->to_forward >= MIN_SPLICE_FORWARD) &&
1044 chn->flags & CF_KERN_SPLICING) {
Willy Tarreau9b28e032012-10-12 23:49:43 +02001045 if (buffer_not_empty(chn->buf)) {
Willy Tarreau96199b12012-08-24 00:46:52 +02001046 /* We're embarrassed, there are already data pending in
1047 * the buffer and we don't want to have them at two
1048 * locations at a time. Let's indicate we need some
1049 * place and ask the consumer to hurry.
1050 */
1051 goto abort_splice;
1052 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001053
Willy Tarreaucb76e592012-10-12 23:56:57 +02001054 if (unlikely(chn->pipe == NULL)) {
1055 if (pipes_used >= global.maxpipes || !(chn->pipe = get_pipe())) {
1056 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +02001057 goto abort_splice;
1058 }
1059 }
1060
Willy Tarreaucb76e592012-10-12 23:56:57 +02001061 ret = conn->xprt->rcv_pipe(conn, chn->pipe, chn->to_forward);
Willy Tarreau96199b12012-08-24 00:46:52 +02001062 if (ret < 0) {
1063 /* splice not supported on this end, let's disable it */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001064 chn->flags &= ~CF_KERN_SPLICING;
Willy Tarreau96199b12012-08-24 00:46:52 +02001065 goto abort_splice;
1066 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001067
Willy Tarreau96199b12012-08-24 00:46:52 +02001068 if (ret > 0) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001069 if (chn->to_forward != CHN_INFINITE_FORWARD)
1070 chn->to_forward -= ret;
1071 chn->total += ret;
Willy Tarreau96199b12012-08-24 00:46:52 +02001072 cur_read += ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001073 chn->flags |= CF_READ_PARTIAL;
Willy Tarreauce323de2012-08-20 21:41:06 +02001074 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001075
1076 if (conn_data_read0_pending(conn))
1077 goto out_shutdown_r;
1078
1079 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001080 return;
Willy Tarreau96199b12012-08-24 00:46:52 +02001081
Willy Tarreau61d39a02013-07-18 21:49:32 +02001082 if (conn->flags & CO_FL_WAIT_ROOM) {
1083 /* the pipe is full or we have read enough data that it
1084 * could soon be full. Let's stop before needing to poll.
1085 */
Willy Tarreau56a77e52012-09-02 18:34:44 +02001086 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreau61d39a02013-07-18 21:49:32 +02001087 __conn_data_stop_recv(conn);
1088 }
Willy Tarreau56a77e52012-09-02 18:34:44 +02001089
Willy Tarreauce323de2012-08-20 21:41:06 +02001090 /* splice not possible (anymore), let's go on on standard copy */
1091 }
Willy Tarreau96199b12012-08-24 00:46:52 +02001092
1093 abort_splice:
Willy Tarreau61d39a02013-07-18 21:49:32 +02001094 if (chn->pipe && unlikely(!chn->pipe->data)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001095 put_pipe(chn->pipe);
1096 chn->pipe = NULL;
Willy Tarreau96199b12012-08-24 00:46:52 +02001097 }
1098
Willy Tarreau61d39a02013-07-18 21:49:32 +02001099 /* Important note : if we're called with POLL_IN|POLL_HUP, it means the read polling
1100 * was enabled, which implies that the recv buffer was not full. So we have a guarantee
1101 * that if such an event is not handled above in splice, it will be handled here by
1102 * recv().
1103 */
1104 while (!(conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_DATA_RD_SH | CO_FL_WAIT_RD | CO_FL_WAIT_ROOM | CO_FL_HANDSHAKE))) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001105 max = bi_avail(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001106
1107 if (!max) {
Willy Tarreau56a77e52012-09-02 18:34:44 +02001108 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreauce323de2012-08-20 21:41:06 +02001109 break;
1110 }
1111
Willy Tarreau9b28e032012-10-12 23:49:43 +02001112 ret = conn->xprt->rcv_buf(conn, chn->buf, max);
Willy Tarreauce323de2012-08-20 21:41:06 +02001113 if (ret <= 0)
1114 break;
1115
1116 cur_read += ret;
1117
1118 /* if we're allowed to directly forward data, we must update ->o */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001119 if (chn->to_forward && !(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001120 unsigned long fwd = ret;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001121 if (chn->to_forward != CHN_INFINITE_FORWARD) {
1122 if (fwd > chn->to_forward)
1123 fwd = chn->to_forward;
1124 chn->to_forward -= fwd;
Willy Tarreauce323de2012-08-20 21:41:06 +02001125 }
Willy Tarreau9b28e032012-10-12 23:49:43 +02001126 b_adv(chn->buf, fwd);
Willy Tarreauce323de2012-08-20 21:41:06 +02001127 }
1128
Willy Tarreaucb76e592012-10-12 23:56:57 +02001129 chn->flags |= CF_READ_PARTIAL;
1130 chn->total += ret;
Willy Tarreauce323de2012-08-20 21:41:06 +02001131
Willy Tarreaucb76e592012-10-12 23:56:57 +02001132 if (channel_full(chn)) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001133 /* The buffer is now full, there's no point in going through
1134 * the loop again.
1135 */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001136 if (!(chn->flags & CF_STREAMER_FAST) && (cur_read == buffer_len(chn->buf))) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001137 chn->xfer_small = 0;
1138 chn->xfer_large++;
1139 if (chn->xfer_large >= 3) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001140 /* we call this buffer a fast streamer if it manages
1141 * to be filled in one call 3 consecutive times.
1142 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001143 chn->flags |= (CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001144 //fputc('+', stderr);
1145 }
1146 }
Willy Tarreaucb76e592012-10-12 23:56:57 +02001147 else if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001148 (cur_read <= chn->buf->size / 2)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001149 chn->xfer_large = 0;
1150 chn->xfer_small++;
1151 if (chn->xfer_small >= 2) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001152 /* if the buffer has been at least half full twice,
1153 * we receive faster than we send, so at least it
1154 * is not a "fast streamer".
1155 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001156 chn->flags &= ~CF_STREAMER_FAST;
Willy Tarreauce323de2012-08-20 21:41:06 +02001157 //fputc('-', stderr);
1158 }
1159 }
1160 else {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001161 chn->xfer_small = 0;
1162 chn->xfer_large = 0;
Willy Tarreauce323de2012-08-20 21:41:06 +02001163 }
1164
Willy Tarreauce323de2012-08-20 21:41:06 +02001165 si->flags |= SI_FL_WAIT_ROOM;
1166 break;
1167 }
1168
Willy Tarreau5fddab02012-11-09 18:27:26 +01001169 if ((chn->flags & CF_READ_DONTWAIT) || --read_poll <= 0) {
Willy Tarreau34ac5662012-12-19 18:01:02 +01001170 si->flags |= SI_FL_WAIT_ROOM;
Willy Tarreaud486ef52012-12-10 17:03:52 +01001171 __conn_data_stop_recv(conn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001172 break;
Willy Tarreau5fddab02012-11-09 18:27:26 +01001173 }
Willy Tarreauce323de2012-08-20 21:41:06 +02001174
1175 /* if too many bytes were missing from last read, it means that
1176 * it's pointless trying to read again because the system does
1177 * not have them in buffers.
1178 */
1179 if (ret < max) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001180 if ((chn->flags & (CF_STREAMER | CF_STREAMER_FAST)) &&
Willy Tarreau9b28e032012-10-12 23:49:43 +02001181 (cur_read <= chn->buf->size / 2)) {
Willy Tarreaucb76e592012-10-12 23:56:57 +02001182 chn->xfer_large = 0;
1183 chn->xfer_small++;
1184 if (chn->xfer_small >= 3) {
Willy Tarreauce323de2012-08-20 21:41:06 +02001185 /* we have read less than half of the buffer in
1186 * one pass, and this happened at least 3 times.
1187 * This is definitely not a streamer.
1188 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001189 chn->flags &= ~(CF_STREAMER | CF_STREAMER_FAST);
Willy Tarreauce323de2012-08-20 21:41:06 +02001190 //fputc('!', stderr);
1191 }
1192 }
1193
1194 /* if a streamer has read few data, it may be because we
1195 * have exhausted system buffers. It's not worth trying
1196 * again.
1197 */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001198 if (chn->flags & CF_STREAMER)
Willy Tarreauce323de2012-08-20 21:41:06 +02001199 break;
1200
1201 /* if we read a large block smaller than what we requested,
1202 * it's almost certain we'll never get anything more.
1203 */
1204 if (ret >= global.tune.recv_enough)
1205 break;
1206 }
1207 } /* while !flags */
1208
Willy Tarreau96199b12012-08-24 00:46:52 +02001209 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001210 return;
Willy Tarreau96199b12012-08-24 00:46:52 +02001211
Willy Tarreauce323de2012-08-20 21:41:06 +02001212 if (conn_data_read0_pending(conn))
1213 /* connection closed */
1214 goto out_shutdown_r;
1215
1216 return;
1217
1218 out_shutdown_r:
1219 /* we received a shutdown */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001220 chn->flags |= CF_READ_NULL;
1221 if (chn->flags & CF_AUTO_CLOSE)
1222 channel_shutw_now(chn);
Willy Tarreauce323de2012-08-20 21:41:06 +02001223 stream_sock_read0(si);
1224 conn_data_read0(conn);
1225 return;
Willy Tarreauce323de2012-08-20 21:41:06 +02001226}
1227
1228/*
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001229 * This is the callback which is called by the connection layer to send data
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02001230 * from the buffer to the connection. It iterates over the transport layer's
1231 * snd_buf function.
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001232 */
Willy Tarreau4aa36832012-10-02 20:07:22 +02001233static void si_conn_send_cb(struct connection *conn)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001234{
Willy Tarreaue603e692012-09-27 22:20:41 +02001235 struct stream_interface *si = conn->owner;
Willy Tarreaucb76e592012-10-12 23:56:57 +02001236 struct channel *chn = si->ob;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001237
1238 if (conn->flags & CO_FL_ERROR)
Godbach4f489902013-12-04 17:24:06 +08001239 return;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001240
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001241 if (conn->flags & CO_FL_HANDSHAKE)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001242 /* a handshake was requested */
1243 return;
1244
1245 /* we might have been called just after an asynchronous shutw */
Willy Tarreaucb76e592012-10-12 23:56:57 +02001246 if (chn->flags & CF_SHUTW)
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001247 return;
1248
1249 /* OK there are data waiting to be sent */
Godbach4f489902013-12-04 17:24:06 +08001250 si_conn_send(conn);
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001251
1252 /* OK all done */
1253 return;
Willy Tarreaueecf6ca2012-08-20 15:09:53 +02001254}
1255
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001256/*
1257 * This function propagates a null read received on a socket-based connection.
1258 * It updates the stream interface. If the stream interface has SI_FL_NOHALF,
1259 * the close is also forwarded to the write side as an abort. This function is
1260 * still socket-specific as it handles a setsockopt() call to set the SO_LINGER
1261 * state on the socket.
1262 */
1263void stream_sock_read0(struct stream_interface *si)
1264{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001265 struct connection *conn = __objt_conn(si->end);
1266
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001267 si->ib->flags &= ~CF_SHUTR_NOW;
1268 if (si->ib->flags & CF_SHUTR)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001269 return;
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001270 si->ib->flags |= CF_SHUTR;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001271 si->ib->rex = TICK_ETERNITY;
1272 si->flags &= ~SI_FL_WAIT_ROOM;
1273
1274 if (si->state != SI_ST_EST && si->state != SI_ST_CON)
1275 return;
1276
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02001277 if (si->ob->flags & CF_SHUTW)
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001278 goto do_close;
1279
1280 if (si->flags & SI_FL_NOHALF) {
1281 /* we want to immediately forward this close to the write side */
1282 if (si->flags & SI_FL_NOLINGER) {
1283 si->flags &= ~SI_FL_NOLINGER;
Willy Tarreauf79c8172013-10-21 16:30:56 +02001284 if (conn->flags & CO_FL_CTRL_READY)
1285 setsockopt(conn->t.sock.fd, SOL_SOCKET, SO_LINGER,
1286 (struct linger *) &nolinger, sizeof(struct linger));
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001287 }
1288 /* force flag on ssl to keep session in cache */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001289 if (conn->xprt->shutw)
1290 conn->xprt->shutw(conn, 0);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001291 goto do_close;
1292 }
1293
1294 /* otherwise that's just a normal read shutdown */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001295 __conn_data_stop_recv(conn);
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001296 return;
1297
1298 do_close:
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001299 /* OK we completely close the socket here just as if we went through si_shut[rw]() */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02001300 conn_full_close(conn);
Willy Tarreauf9fbfe82012-11-21 21:51:53 +01001301
1302 si->ib->flags &= ~CF_SHUTR_NOW;
1303 si->ib->flags |= CF_SHUTR;
1304 si->ib->rex = TICK_ETERNITY;
1305
1306 si->ob->flags &= ~CF_SHUTW_NOW;
1307 si->ob->flags |= CF_SHUTW;
1308 si->ob->wex = TICK_ETERNITY;
1309
1310 si->flags &= ~(SI_FL_WAIT_DATA | SI_FL_WAIT_ROOM);
1311
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001312 si->state = SI_ST_DIS;
1313 si->exp = TICK_ETERNITY;
Willy Tarreau9bf9c142012-08-20 15:38:41 +02001314 return;
1315}
1316
Willy Tarreaudded32d2008-11-30 19:48:07 +01001317/*
Willy Tarreaucff64112008-11-03 06:26:53 +01001318 * Local variables:
1319 * c-indent-level: 8
1320 * c-basic-offset: 8
1321 * End:
1322 */