Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Functions managing stream_interface structures |
| 3 | * |
Willy Tarreau | f873d75 | 2012-05-11 17:47:17 +0200 | [diff] [blame] | 4 | * Copyright 2000-2012 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 5 | * |
| 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 Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 29 | #include <proto/channel.h> |
Willy Tarreau | 8b11708 | 2012-08-06 15:06:49 +0200 | [diff] [blame] | 30 | #include <proto/connection.h> |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 31 | #include <proto/fd.h> |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 32 | #include <proto/frontend.h> |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 33 | #include <proto/pipe.h> |
Willy Tarreau | 269358d | 2009-09-20 20:14:49 +0200 | [diff] [blame] | 34 | #include <proto/stream_interface.h> |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 35 | #include <proto/task.h> |
| 36 | |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 37 | #include <types/pipe.h> |
| 38 | |
Willy Tarreau | f873d75 | 2012-05-11 17:47:17 +0200 | [diff] [blame] | 39 | /* socket functions used when running a stream interface as a task */ |
| 40 | static void stream_int_update(struct stream_interface *si); |
| 41 | static void stream_int_update_embedded(struct stream_interface *si); |
Willy Tarreau | f873d75 | 2012-05-11 17:47:17 +0200 | [diff] [blame] | 42 | static void stream_int_chk_rcv(struct stream_interface *si); |
| 43 | static void stream_int_chk_snd(struct stream_interface *si); |
Willy Tarreau | c578891 | 2012-08-24 18:12:41 +0200 | [diff] [blame] | 44 | static void stream_int_update_conn(struct stream_interface *si); |
| 45 | static void stream_int_chk_rcv_conn(struct stream_interface *si); |
| 46 | static void stream_int_chk_snd_conn(struct stream_interface *si); |
Willy Tarreau | f873d75 | 2012-05-11 17:47:17 +0200 | [diff] [blame] | 47 | |
Willy Tarreau | c578891 | 2012-08-24 18:12:41 +0200 | [diff] [blame] | 48 | /* stream-interface operations for embedded tasks */ |
| 49 | struct si_ops si_embedded_ops = { |
Willy Tarreau | 5c979a9 | 2012-05-07 17:15:39 +0200 | [diff] [blame] | 50 | .update = stream_int_update_embedded, |
Willy Tarreau | 5c979a9 | 2012-05-07 17:15:39 +0200 | [diff] [blame] | 51 | .chk_rcv = stream_int_chk_rcv, |
| 52 | .chk_snd = stream_int_chk_snd, |
Willy Tarreau | 5c979a9 | 2012-05-07 17:15:39 +0200 | [diff] [blame] | 53 | }; |
| 54 | |
Willy Tarreau | c578891 | 2012-08-24 18:12:41 +0200 | [diff] [blame] | 55 | /* stream-interface operations for external tasks */ |
| 56 | struct si_ops si_task_ops = { |
Willy Tarreau | 5c979a9 | 2012-05-07 17:15:39 +0200 | [diff] [blame] | 57 | .update = stream_int_update, |
Willy Tarreau | 5c979a9 | 2012-05-07 17:15:39 +0200 | [diff] [blame] | 58 | .chk_rcv = stream_int_chk_rcv, |
| 59 | .chk_snd = stream_int_chk_snd, |
Willy Tarreau | 5c979a9 | 2012-05-07 17:15:39 +0200 | [diff] [blame] | 60 | }; |
| 61 | |
Willy Tarreau | c578891 | 2012-08-24 18:12:41 +0200 | [diff] [blame] | 62 | /* stream-interface operations for connections */ |
| 63 | struct 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, |
| 67 | }; |
| 68 | |
| 69 | struct app_cb si_conn_cb = { |
| 70 | .recv = si_conn_recv_cb, |
| 71 | .send = si_conn_send_cb, |
| 72 | }; |
| 73 | |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 74 | /* |
| 75 | * This function only has to be called once after a wakeup event in case of |
| 76 | * suspected timeout. It controls the stream interface timeouts and sets |
| 77 | * si->flags accordingly. It does NOT close anything, as this timeout may |
| 78 | * be used for any purpose. It returns 1 if the timeout fired, otherwise |
| 79 | * zero. |
| 80 | */ |
| 81 | int stream_int_check_timeouts(struct stream_interface *si) |
| 82 | { |
| 83 | if (tick_is_expired(si->exp, now_ms)) { |
| 84 | si->flags |= SI_FL_EXP; |
| 85 | return 1; |
| 86 | } |
| 87 | return 0; |
| 88 | } |
| 89 | |
Willy Tarreau | fe3718a | 2008-11-30 18:14:12 +0100 | [diff] [blame] | 90 | /* to be called only when in SI_ST_DIS with SI_FL_ERR */ |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 91 | void stream_int_report_error(struct stream_interface *si) |
| 92 | { |
| 93 | if (!si->err_type) |
| 94 | si->err_type = SI_ET_DATA_ERR; |
| 95 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 96 | si->ob->flags |= CF_WRITE_ERROR; |
| 97 | si->ib->flags |= CF_READ_ERROR; |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | /* |
Willy Tarreau | dded32d | 2008-11-30 19:48:07 +0100 | [diff] [blame] | 101 | * Returns a message to the client ; the connection is shut down for read, |
| 102 | * and the request is cleared so that no server connection can be initiated. |
| 103 | * The buffer is marked for read shutdown on the other side to protect the |
| 104 | * message, and the buffer write is enabled. The message is contained in a |
Willy Tarreau | 148d099 | 2010-01-10 10:21:21 +0100 | [diff] [blame] | 105 | * "chunk". If it is null, then an empty message is used. The reply buffer does |
| 106 | * not need to be empty before this, and its contents will not be overwritten. |
| 107 | * The primary goal of this function is to return error messages to a client. |
Willy Tarreau | dded32d | 2008-11-30 19:48:07 +0100 | [diff] [blame] | 108 | */ |
| 109 | void stream_int_retnclose(struct stream_interface *si, const struct chunk *msg) |
| 110 | { |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame^] | 111 | channel_auto_read(si->ib); |
| 112 | channel_abort(si->ib); |
| 113 | channel_auto_close(si->ib); |
| 114 | channel_erase(si->ib); |
Willy Tarreau | 798e128 | 2010-12-12 13:06:00 +0100 | [diff] [blame] | 115 | |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 116 | bi_erase(si->ob); |
Willy Tarreau | 148d099 | 2010-01-10 10:21:21 +0100 | [diff] [blame] | 117 | if (likely(msg && msg->len)) |
Willy Tarreau | 9dab5fc | 2012-05-07 11:56:55 +0200 | [diff] [blame] | 118 | bo_inject(si->ob, msg->str, msg->len); |
Willy Tarreau | dded32d | 2008-11-30 19:48:07 +0100 | [diff] [blame] | 119 | |
| 120 | si->ob->wex = tick_add_ifset(now_ms, si->ob->wto); |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame^] | 121 | channel_auto_read(si->ob); |
| 122 | channel_auto_close(si->ob); |
| 123 | channel_shutr_now(si->ob); |
Willy Tarreau | 5d881d0 | 2009-12-27 22:51:06 +0100 | [diff] [blame] | 124 | } |
| 125 | |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 126 | /* default update function for scheduled tasks, not used for embedded tasks */ |
Willy Tarreau | f873d75 | 2012-05-11 17:47:17 +0200 | [diff] [blame] | 127 | static void stream_int_update(struct stream_interface *si) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 128 | { |
| 129 | DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n", |
| 130 | __FUNCTION__, |
| 131 | si, si->state, si->ib->flags, si->ob->flags); |
| 132 | |
| 133 | if (!(si->flags & SI_FL_DONT_WAKE) && si->owner) |
| 134 | task_wakeup(si->owner, TASK_WOKEN_IO); |
| 135 | } |
| 136 | |
| 137 | /* default update function for embedded tasks, to be used at the end of the i/o handler */ |
Willy Tarreau | f873d75 | 2012-05-11 17:47:17 +0200 | [diff] [blame] | 138 | static void stream_int_update_embedded(struct stream_interface *si) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 139 | { |
Willy Tarreau | 3488e25 | 2010-08-09 16:24:56 +0200 | [diff] [blame] | 140 | int old_flags = si->flags; |
| 141 | |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 142 | DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n", |
| 143 | __FUNCTION__, |
| 144 | si, si->state, si->ib->flags, si->ob->flags); |
| 145 | |
| 146 | if (si->state != SI_ST_EST) |
| 147 | return; |
| 148 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 149 | if ((si->ob->flags & (CF_SHUTW|CF_HIJACK|CF_SHUTW_NOW)) == CF_SHUTW_NOW && |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 150 | channel_is_empty(si->ob)) |
Willy Tarreau | 73b013b | 2012-05-21 16:31:45 +0200 | [diff] [blame] | 151 | si_shutw(si); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 152 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 153 | if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK)) == 0 && !channel_full(si->ob)) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 154 | si->flags |= SI_FL_WAIT_DATA; |
| 155 | |
Willy Tarreau | 96fd4b5 | 2009-10-04 17:18:35 +0200 | [diff] [blame] | 156 | /* we're almost sure that we need some space if the buffer is not |
| 157 | * empty, even if it's not full, because the applets can't fill it. |
| 158 | */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 159 | if ((si->ib->flags & (CF_SHUTR|CF_DONT_READ)) == 0 && !channel_is_empty(si->ib)) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 160 | si->flags |= SI_FL_WAIT_ROOM; |
| 161 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 162 | if (si->ob->flags & CF_WRITE_ACTIVITY) { |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 163 | if (tick_isset(si->ob->wex)) |
| 164 | si->ob->wex = tick_add_ifset(now_ms, si->ob->wto); |
| 165 | } |
| 166 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 167 | if (si->ib->flags & CF_READ_ACTIVITY || |
| 168 | (si->ob->flags & CF_WRITE_ACTIVITY && !(si->flags & SI_FL_INDEP_STR))) { |
Willy Tarreau | f27b5ea | 2009-10-03 22:01:18 +0200 | [diff] [blame] | 169 | if (tick_isset(si->ib->rex)) |
| 170 | si->ib->rex = tick_add_ifset(now_ms, si->ib->rto); |
| 171 | } |
| 172 | |
Willy Tarreau | 3488e25 | 2010-08-09 16:24:56 +0200 | [diff] [blame] | 173 | /* save flags to detect changes */ |
| 174 | old_flags = si->flags; |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 175 | if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL && |
Willy Tarreau | 3bf1b2b | 2012-08-27 20:46:07 +0200 | [diff] [blame] | 176 | !channel_full(si->ob) && |
Willy Tarreau | 96fd4b5 | 2009-10-04 17:18:35 +0200 | [diff] [blame] | 177 | (si->ob->prod->flags & SI_FL_WAIT_ROOM))) |
Willy Tarreau | 73b013b | 2012-05-21 16:31:45 +0200 | [diff] [blame] | 178 | si_chk_rcv(si->ob->prod); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 179 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 180 | if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) && |
Willy Tarreau | 3488e25 | 2010-08-09 16:24:56 +0200 | [diff] [blame] | 181 | (si->ib->cons->flags & SI_FL_WAIT_DATA)) { |
Willy Tarreau | 73b013b | 2012-05-21 16:31:45 +0200 | [diff] [blame] | 182 | si_chk_snd(si->ib->cons); |
Willy Tarreau | 3488e25 | 2010-08-09 16:24:56 +0200 | [diff] [blame] | 183 | /* check if the consumer has freed some space */ |
Willy Tarreau | 3bf1b2b | 2012-08-27 20:46:07 +0200 | [diff] [blame] | 184 | if (!channel_full(si->ib)) |
Willy Tarreau | 3488e25 | 2010-08-09 16:24:56 +0200 | [diff] [blame] | 185 | si->flags &= ~SI_FL_WAIT_ROOM; |
| 186 | } |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 187 | |
| 188 | /* Note that we're trying to wake up in two conditions here : |
| 189 | * - special event, which needs the holder task attention |
| 190 | * - status indicating that the applet can go on working. This |
| 191 | * is rather hard because we might be blocking on output and |
| 192 | * don't want to wake up on input and vice-versa. The idea is |
Willy Tarreau | 3488e25 | 2010-08-09 16:24:56 +0200 | [diff] [blame] | 193 | * to only rely on the changes the chk_* might have performed. |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 194 | */ |
| 195 | if (/* check stream interface changes */ |
Willy Tarreau | 3488e25 | 2010-08-09 16:24:56 +0200 | [diff] [blame] | 196 | ((old_flags & ~si->flags) & (SI_FL_WAIT_ROOM|SI_FL_WAIT_DATA)) || |
| 197 | |
| 198 | /* changes on the production side */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 199 | (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) || |
Willy Tarreau | 3488e25 | 2010-08-09 16:24:56 +0200 | [diff] [blame] | 200 | si->state != SI_ST_EST || |
| 201 | (si->flags & SI_FL_ERR) || |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 202 | ((si->ib->flags & CF_READ_PARTIAL) && |
Willy Tarreau | 3488e25 | 2010-08-09 16:24:56 +0200 | [diff] [blame] | 203 | (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) || |
| 204 | |
| 205 | /* changes on the consumption side */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 206 | (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) || |
| 207 | ((si->ob->flags & CF_WRITE_ACTIVITY) && |
| 208 | ((si->ob->flags & CF_SHUTW) || |
Willy Tarreau | 3488e25 | 2010-08-09 16:24:56 +0200 | [diff] [blame] | 209 | si->ob->prod->state != SI_ST_EST || |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 210 | (channel_is_empty(si->ob) && !si->ob->to_forward)))) { |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 211 | if (!(si->flags & SI_FL_DONT_WAKE) && si->owner) |
| 212 | task_wakeup(si->owner, TASK_WOKEN_IO); |
| 213 | } |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 214 | if (si->ib->flags & CF_READ_ACTIVITY) |
| 215 | si->ib->flags &= ~CF_READ_DONTWAIT; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 216 | } |
| 217 | |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 218 | /* |
| 219 | * This function performs a shutdown-read on a stream interface in a connected |
| 220 | * or init state (it does nothing for other states). It either shuts the read |
| 221 | * side or marks itself as closed. The buffer flags are updated to reflect the |
| 222 | * new state. If the stream interface has SI_FL_NOHALF, we also forward the |
| 223 | * close to the write side. If a control layer is defined, then it is supposed |
| 224 | * to be a socket layer and file descriptors are then shutdown or closed |
| 225 | * accordingly. If no control layer is defined, then the SI is supposed to be |
| 226 | * an embedded one and the owner task is woken up if it exists. The function |
| 227 | * does not disable polling on the FD by itself, it returns non-zero instead |
| 228 | * if the caller needs to do so (except when the FD is deleted where this is |
| 229 | * implicit). |
| 230 | */ |
| 231 | int stream_int_shutr(struct stream_interface *si) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 232 | { |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 233 | struct connection *conn = &si->conn; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 234 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 235 | si->ib->flags &= ~CF_SHUTR_NOW; |
| 236 | if (si->ib->flags & CF_SHUTR) |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 237 | return 0; |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 238 | si->ib->flags |= CF_SHUTR; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 239 | si->ib->rex = TICK_ETERNITY; |
| 240 | si->flags &= ~SI_FL_WAIT_ROOM; |
| 241 | |
| 242 | if (si->state != SI_ST_EST && si->state != SI_ST_CON) |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 243 | return 0; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 244 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 245 | if (si->ob->flags & CF_SHUTW) { |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 246 | conn_data_close(&si->conn); |
| 247 | if (conn->ctrl) |
| 248 | fd_delete(si_fd(si)); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 249 | si->state = SI_ST_DIS; |
| 250 | si->exp = TICK_ETERNITY; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 251 | |
Willy Tarreau | d8ccffe | 2010-09-07 16:16:50 +0200 | [diff] [blame] | 252 | if (si->release) |
| 253 | si->release(si); |
| 254 | } |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 255 | else if (si->flags & SI_FL_NOHALF) { |
| 256 | /* we want to immediately forward this close to the write side */ |
| 257 | return stream_int_shutw(si); |
| 258 | } |
| 259 | else if (conn->ctrl) { |
| 260 | /* we want the caller to disable polling on this FD */ |
| 261 | return 1; |
| 262 | } |
Willy Tarreau | 0bd05ea | 2010-07-02 11:18:03 +0200 | [diff] [blame] | 263 | |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 264 | /* note that if the task exists, it must unregister itself once it runs */ |
| 265 | if (!conn->ctrl && !(si->flags & SI_FL_DONT_WAKE) && si->owner) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 266 | task_wakeup(si->owner, TASK_WOKEN_IO); |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 267 | return 0; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 268 | } |
| 269 | |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 270 | /* |
| 271 | * This function performs a shutdown-write on a stream interface in a connected or |
| 272 | * init state (it does nothing for other states). It either shuts the write side |
| 273 | * or marks itself as closed. The buffer flags are updated to reflect the new state. |
| 274 | * It does also close everything if the SI was marked as being in error state. If |
| 275 | * there is a data-layer shutdown, it is called. If a control layer is defined, then |
| 276 | * it is supposed to be a socket layer and file descriptors are then shutdown or |
| 277 | * closed accordingly. If no control layer is defined, then the SI is supposed to |
| 278 | * be an embedded one and the owner task is woken up if it exists. The function |
| 279 | * does not disable polling on the FD by itself, it returns non-zero instead if |
| 280 | * the caller needs to do so (except when the FD is deleted where this is implicit). |
| 281 | */ |
| 282 | int stream_int_shutw(struct stream_interface *si) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 283 | { |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 284 | struct connection *conn = &si->conn; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 285 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 286 | si->ob->flags &= ~CF_SHUTW_NOW; |
| 287 | if (si->ob->flags & CF_SHUTW) |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 288 | return 0; |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 289 | si->ob->flags |= CF_SHUTW; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 290 | si->ob->wex = TICK_ETERNITY; |
| 291 | si->flags &= ~SI_FL_WAIT_DATA; |
| 292 | |
| 293 | switch (si->state) { |
| 294 | case SI_ST_EST: |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 295 | /* we have to shut before closing, otherwise some short messages |
| 296 | * may never leave the system, especially when there are remaining |
| 297 | * unread data in the socket input buffer, or when nolinger is set. |
| 298 | * However, if SI_FL_NOLINGER is explicitly set, we know there is |
| 299 | * no risk so we close both sides immediately. |
| 300 | */ |
| 301 | if (si->flags & SI_FL_ERR) { |
| 302 | /* quick close, the socket is already shut. Remove pending flags. */ |
| 303 | si->flags &= ~SI_FL_NOLINGER; |
| 304 | } else if (si->flags & SI_FL_NOLINGER) { |
| 305 | si->flags &= ~SI_FL_NOLINGER; |
| 306 | if (conn->ctrl) { |
| 307 | setsockopt(si_fd(si), SOL_SOCKET, SO_LINGER, |
| 308 | (struct linger *) &nolinger, sizeof(struct linger)); |
| 309 | } |
| 310 | /* unclean data-layer shutdown */ |
| 311 | if (conn->data && conn->data->shutw) |
| 312 | conn->data->shutw(conn, 0); |
| 313 | } else { |
| 314 | /* clean data-layer shutdown */ |
| 315 | if (conn->data && conn->data->shutw) |
| 316 | conn->data->shutw(conn, 1); |
| 317 | |
| 318 | if (!(si->flags & SI_FL_NOHALF)) { |
| 319 | /* We shutdown transport layer */ |
| 320 | if (conn->ctrl) |
| 321 | shutdown(si_fd(si), SHUT_WR); |
| 322 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 323 | if (!(si->ib->flags & (CF_SHUTR|CF_DONT_READ))) { |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 324 | /* OK just a shutw, but we want the caller |
| 325 | * to disable polling on this FD if exists. |
| 326 | */ |
| 327 | return !!conn->ctrl; |
| 328 | } |
| 329 | } |
| 330 | } |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 331 | |
| 332 | /* fall through */ |
| 333 | case SI_ST_CON: |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 334 | /* we may have to close a pending connection, and mark the |
| 335 | * response buffer as shutr |
| 336 | */ |
| 337 | conn_data_close(&si->conn); |
| 338 | if (conn->ctrl) |
| 339 | fd_delete(si_fd(si)); |
| 340 | /* fall through */ |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 341 | case SI_ST_CER: |
Willy Tarreau | 32d3ee9 | 2010-12-29 14:03:02 +0100 | [diff] [blame] | 342 | case SI_ST_QUE: |
| 343 | case SI_ST_TAR: |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 344 | si->state = SI_ST_DIS; |
Willy Tarreau | d8ccffe | 2010-09-07 16:16:50 +0200 | [diff] [blame] | 345 | |
| 346 | if (si->release) |
| 347 | si->release(si); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 348 | default: |
| 349 | si->flags &= ~SI_FL_WAIT_ROOM; |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 350 | si->ib->flags |= CF_SHUTR; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 351 | si->ib->rex = TICK_ETERNITY; |
| 352 | si->exp = TICK_ETERNITY; |
| 353 | } |
| 354 | |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 355 | /* note that if the task exists, it must unregister itself once it runs */ |
| 356 | if (!conn->ctrl && !(si->flags & SI_FL_DONT_WAKE) && si->owner) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 357 | task_wakeup(si->owner, TASK_WOKEN_IO); |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 358 | return 0; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | /* default chk_rcv function for scheduled tasks */ |
Willy Tarreau | f873d75 | 2012-05-11 17:47:17 +0200 | [diff] [blame] | 362 | static void stream_int_chk_rcv(struct stream_interface *si) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 363 | { |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 364 | struct channel *ib = si->ib; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 365 | |
| 366 | DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n", |
| 367 | __FUNCTION__, |
| 368 | si, si->state, si->ib->flags, si->ob->flags); |
| 369 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 370 | if (unlikely(si->state != SI_ST_EST || (ib->flags & (CF_SHUTR|CF_HIJACK|CF_DONT_READ)))) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 371 | return; |
| 372 | |
Willy Tarreau | 3bf1b2b | 2012-08-27 20:46:07 +0200 | [diff] [blame] | 373 | if (channel_full(ib)) { |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 374 | /* stop reading */ |
Willy Tarreau | 3bf1b2b | 2012-08-27 20:46:07 +0200 | [diff] [blame] | 375 | si->flags |= SI_FL_WAIT_ROOM; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 376 | } |
| 377 | else { |
| 378 | /* (re)start reading */ |
| 379 | si->flags &= ~SI_FL_WAIT_ROOM; |
| 380 | if (!(si->flags & SI_FL_DONT_WAKE) && si->owner) |
| 381 | task_wakeup(si->owner, TASK_WOKEN_IO); |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | /* default chk_snd function for scheduled tasks */ |
Willy Tarreau | f873d75 | 2012-05-11 17:47:17 +0200 | [diff] [blame] | 386 | static void stream_int_chk_snd(struct stream_interface *si) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 387 | { |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 388 | struct channel *ob = si->ob; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 389 | |
| 390 | DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n", |
| 391 | __FUNCTION__, |
| 392 | si, si->state, si->ib->flags, si->ob->flags); |
| 393 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 394 | if (unlikely(si->state != SI_ST_EST || (si->ob->flags & CF_SHUTW))) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 395 | return; |
| 396 | |
| 397 | if (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */ |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 398 | channel_is_empty(ob)) /* called with nothing to send ! */ |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 399 | return; |
| 400 | |
| 401 | /* Otherwise there are remaining data to be sent in the buffer, |
| 402 | * so we tell the handler. |
| 403 | */ |
| 404 | si->flags &= ~SI_FL_WAIT_DATA; |
| 405 | if (!tick_isset(ob->wex)) |
| 406 | ob->wex = tick_add_ifset(now_ms, ob->wto); |
| 407 | |
| 408 | if (!(si->flags & SI_FL_DONT_WAKE) && si->owner) |
| 409 | task_wakeup(si->owner, TASK_WOKEN_IO); |
| 410 | } |
| 411 | |
Willy Tarreau | b24281b | 2011-02-13 13:16:36 +0100 | [diff] [blame] | 412 | /* Register an applet to handle a stream_interface as part of the stream |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 413 | * interface's owner task, which is returned. The SI will wake it up everytime |
Willy Tarreau | b24281b | 2011-02-13 13:16:36 +0100 | [diff] [blame] | 414 | * it is solicited. The task's processing function must call the applet's |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 415 | * function before returning. It must be deleted by the task handler using |
Willy Tarreau | b24281b | 2011-02-13 13:16:36 +0100 | [diff] [blame] | 416 | * stream_int_unregister_handler(), possibly from within the function itself. |
Willy Tarreau | fa6bac6 | 2012-05-31 14:16:59 +0200 | [diff] [blame] | 417 | * It also pre-initializes applet.state to zero and the connection context |
| 418 | * to NULL. |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 419 | */ |
Willy Tarreau | b24281b | 2011-02-13 13:16:36 +0100 | [diff] [blame] | 420 | struct task *stream_int_register_handler(struct stream_interface *si, struct si_applet *app) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 421 | { |
Simon Horman | 7abd00d | 2011-08-13 08:03:51 +0900 | [diff] [blame] | 422 | DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si->owner); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 423 | |
Willy Tarreau | c578891 | 2012-08-24 18:12:41 +0200 | [diff] [blame] | 424 | si_prepare_embedded(si); |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 425 | set_target_applet(&si->target, app); |
Aman Gupta | 9a13e84 | 2012-04-02 18:57:53 -0700 | [diff] [blame] | 426 | si->release = app->release; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 427 | si->flags |= SI_FL_WAIT_DATA; |
| 428 | return si->owner; |
| 429 | } |
| 430 | |
| 431 | /* Register a function to handle a stream_interface as a standalone task. The |
| 432 | * new task itself is returned and is assigned as si->owner. The stream_interface |
| 433 | * pointer will be pointed to by the task's context. The handler can be detached |
| 434 | * by using stream_int_unregister_handler(). |
Willy Tarreau | 7c0a151 | 2011-03-10 11:17:02 +0100 | [diff] [blame] | 435 | * FIXME: the code should be updated to ensure that we don't change si->owner |
| 436 | * anymore as this is not needed. However, process_session still relies on it. |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 437 | */ |
| 438 | struct task *stream_int_register_handler_task(struct stream_interface *si, |
| 439 | struct task *(*fct)(struct task *)) |
| 440 | { |
| 441 | struct task *t; |
| 442 | |
| 443 | DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", fct, si, si->owner); |
| 444 | |
Willy Tarreau | c578891 | 2012-08-24 18:12:41 +0200 | [diff] [blame] | 445 | si_prepare_task(si); |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 446 | clear_target(&si->target); |
Willy Tarreau | 0bd05ea | 2010-07-02 11:18:03 +0200 | [diff] [blame] | 447 | si->release = NULL; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 448 | si->flags |= SI_FL_WAIT_DATA; |
| 449 | |
| 450 | t = task_new(); |
| 451 | si->owner = t; |
| 452 | if (!t) |
| 453 | return t; |
Willy Tarreau | 7c0a151 | 2011-03-10 11:17:02 +0100 | [diff] [blame] | 454 | |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 455 | set_target_task(&si->target, t); |
Willy Tarreau | 7c0a151 | 2011-03-10 11:17:02 +0100 | [diff] [blame] | 456 | |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 457 | t->process = fct; |
| 458 | t->context = si; |
| 459 | task_wakeup(si->owner, TASK_WOKEN_INIT); |
| 460 | |
| 461 | return t; |
| 462 | } |
| 463 | |
| 464 | /* Unregister a stream interface handler. This must be called by the handler task |
| 465 | * itself when it detects that it is in the SI_ST_DIS state. This function can |
| 466 | * both detach standalone handlers and embedded handlers. |
| 467 | */ |
| 468 | void stream_int_unregister_handler(struct stream_interface *si) |
| 469 | { |
Willy Tarreau | 7c0a151 | 2011-03-10 11:17:02 +0100 | [diff] [blame] | 470 | if (si->target.type == TARG_TYPE_TASK) { |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 471 | /* external handler : kill the task */ |
Willy Tarreau | 7c0a151 | 2011-03-10 11:17:02 +0100 | [diff] [blame] | 472 | task_delete(si->target.ptr.t); |
| 473 | task_free(si->target.ptr.t); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 474 | } |
Willy Tarreau | 0bd05ea | 2010-07-02 11:18:03 +0200 | [diff] [blame] | 475 | si->release = NULL; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 476 | si->owner = NULL; |
Willy Tarreau | 9e000c6 | 2011-03-10 14:03:36 +0100 | [diff] [blame] | 477 | clear_target(&si->target); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 478 | } |
| 479 | |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 480 | /* This callback is used to send a valid PROXY protocol line to a socket being |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 481 | * established. It returns 0 if it fails in a fatal way or needs to poll to go |
| 482 | * further, otherwise it returns non-zero and removes itself from the connection's |
Willy Tarreau | a1a7474 | 2012-08-24 12:14:49 +0200 | [diff] [blame] | 483 | * flags (the bit is provided in <flag> by the caller). It is designed to be |
| 484 | * called by the connection handler and relies on it to commit polling changes. |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 485 | */ |
| 486 | int conn_si_send_proxy(struct connection *conn, unsigned int flag) |
| 487 | { |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 488 | struct stream_interface *si = container_of(conn, struct stream_interface, conn); |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 489 | |
| 490 | /* we might have been called just after an asynchronous shutw */ |
Willy Tarreau | a1a7474 | 2012-08-24 12:14:49 +0200 | [diff] [blame] | 491 | if (conn->flags & CO_FL_SOCK_WR_SH) |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 492 | goto out_error; |
| 493 | |
| 494 | /* If we have a PROXY line to send, we'll use this to validate the |
| 495 | * connection, in which case the connection is validated only once |
| 496 | * we've sent the whole proxy line. Otherwise we use connect(). |
| 497 | */ |
| 498 | if (si->send_proxy_ofs) { |
| 499 | int ret; |
| 500 | |
| 501 | /* The target server expects a PROXY line to be sent first. |
| 502 | * If the send_proxy_ofs is negative, it corresponds to the |
| 503 | * offset to start sending from then end of the proxy string |
| 504 | * (which is recomputed every time since it's constant). If |
| 505 | * it is positive, it means we have to send from the start. |
| 506 | */ |
Willy Tarreau | a1a7474 | 2012-08-24 12:14:49 +0200 | [diff] [blame] | 507 | ret = make_proxy_line(trash, trashlen, &si->ob->prod->addr.from, &si->ob->prod->addr.to); |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 508 | if (!ret) |
| 509 | goto out_error; |
| 510 | |
| 511 | if (si->send_proxy_ofs > 0) |
| 512 | si->send_proxy_ofs = -ret; /* first call */ |
| 513 | |
Willy Tarreau | a1a7474 | 2012-08-24 12:14:49 +0200 | [diff] [blame] | 514 | /* we have to send trash from (ret+sp for -sp bytes). If the |
| 515 | * data layer has a pending write, we'll also set MSG_MORE. |
| 516 | */ |
| 517 | ret = send(conn->t.sock.fd, trash + ret + si->send_proxy_ofs, -si->send_proxy_ofs, |
| 518 | (conn->flags & CO_FL_DATA_WR_ENA) ? MSG_MORE : 0); |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 519 | |
| 520 | if (ret == 0) |
| 521 | goto out_wait; |
| 522 | |
| 523 | if (ret < 0) { |
| 524 | if (errno == EAGAIN) |
| 525 | goto out_wait; |
| 526 | goto out_error; |
| 527 | } |
| 528 | |
| 529 | si->send_proxy_ofs += ret; /* becomes zero once complete */ |
| 530 | if (si->send_proxy_ofs != 0) |
| 531 | goto out_wait; |
| 532 | |
| 533 | /* OK we've sent the whole line, we're connected */ |
| 534 | } |
| 535 | |
Willy Tarreau | a1a7474 | 2012-08-24 12:14:49 +0200 | [diff] [blame] | 536 | /* The connection is ready now, simply return and let the connection |
| 537 | * handler notify upper layers if needed. |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 538 | */ |
| 539 | if (conn->flags & CO_FL_WAIT_L4_CONN) |
| 540 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 541 | conn->flags &= ~flag; |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 542 | return 1; |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 543 | |
| 544 | out_error: |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 545 | /* Write error on the file descriptor */ |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 546 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 547 | conn->flags &= ~flag; |
Willy Tarreau | a1a7474 | 2012-08-24 12:14:49 +0200 | [diff] [blame] | 548 | __conn_sock_stop_both(conn); |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 549 | return 0; |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 550 | |
| 551 | out_wait: |
Willy Tarreau | a1a7474 | 2012-08-24 12:14:49 +0200 | [diff] [blame] | 552 | __conn_sock_stop_recv(conn); |
| 553 | __conn_sock_poll_send(conn); |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 554 | return 0; |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 555 | } |
| 556 | |
Willy Tarreau | 100c467 | 2012-08-20 12:06:26 +0200 | [diff] [blame] | 557 | /* Callback to be used by connection I/O handlers upon completion. It differs from |
| 558 | * the function below in that it is designed to be called by lower layers after I/O |
| 559 | * events have been completed. It will also try to wake the associated task up if |
Willy Tarreau | f16723e | 2012-08-24 12:52:22 +0200 | [diff] [blame] | 560 | * an important event requires special handling. It relies on the connection handler |
| 561 | * to commit any polling updates. |
Willy Tarreau | 100c467 | 2012-08-20 12:06:26 +0200 | [diff] [blame] | 562 | */ |
| 563 | void conn_notify_si(struct connection *conn) |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 564 | { |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 565 | struct stream_interface *si = container_of(conn, struct stream_interface, conn); |
| 566 | |
| 567 | DPRINTF(stderr, "%s: si=%p, si->state=%d ib->flags=%08x ob->flags=%08x\n", |
| 568 | __FUNCTION__, |
| 569 | si, si->state, si->ib->flags, si->ob->flags); |
| 570 | |
Willy Tarreau | 3c55ec2 | 2012-07-23 19:19:51 +0200 | [diff] [blame] | 571 | if (conn->flags & CO_FL_ERROR) |
| 572 | si->flags |= SI_FL_ERR; |
| 573 | |
Willy Tarreau | 8f8c92f | 2012-07-23 19:45:44 +0200 | [diff] [blame] | 574 | /* check for recent connection establishment */ |
Willy Tarreau | c76ae33 | 2012-07-12 15:32:13 +0200 | [diff] [blame] | 575 | if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) { |
Willy Tarreau | 8f8c92f | 2012-07-23 19:45:44 +0200 | [diff] [blame] | 576 | si->exp = TICK_ETERNITY; |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 577 | si->ob->flags |= CF_WRITE_NULL; |
Willy Tarreau | 8f8c92f | 2012-07-23 19:45:44 +0200 | [diff] [blame] | 578 | } |
| 579 | |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 580 | /* process consumer side */ |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 581 | if (channel_is_empty(si->ob)) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 582 | if (((si->ob->flags & (CF_SHUTW|CF_HIJACK|CF_SHUTW_NOW)) == CF_SHUTW_NOW) && |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 583 | (si->state == SI_ST_EST)) |
| 584 | stream_int_shutw(si); |
Willy Tarreau | f16723e | 2012-08-24 12:52:22 +0200 | [diff] [blame] | 585 | __conn_data_stop_send(conn); |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 586 | si->ob->wex = TICK_ETERNITY; |
| 587 | } |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 588 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 589 | if ((si->ob->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK)) == 0 && !channel_full(si->ob)) |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 590 | si->flags |= SI_FL_WAIT_DATA; |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 591 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 592 | if (si->ob->flags & CF_WRITE_ACTIVITY) { |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 593 | /* update timeouts if we have written something */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 594 | if ((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL && |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 595 | !channel_is_empty(si->ob)) |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 596 | if (tick_isset(si->ob->wex)) |
| 597 | si->ob->wex = tick_add_ifset(now_ms, si->ob->wto); |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 598 | |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 599 | if (!(si->flags & SI_FL_INDEP_STR)) |
| 600 | if (tick_isset(si->ib->rex)) |
| 601 | si->ib->rex = tick_add_ifset(now_ms, si->ib->rto); |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 602 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 603 | if (likely((si->ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL|CF_DONT_READ)) == CF_WRITE_PARTIAL && |
Willy Tarreau | 3bf1b2b | 2012-08-27 20:46:07 +0200 | [diff] [blame] | 604 | !channel_full(si->ob) && |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 605 | (si->ob->prod->flags & SI_FL_WAIT_ROOM))) |
| 606 | si_chk_rcv(si->ob->prod); |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 607 | } |
| 608 | |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 609 | /* process producer side. |
| 610 | * We might have some data the consumer is waiting for. |
| 611 | * We can do fast-forwarding, but we avoid doing this for partial |
| 612 | * buffers, because it is very likely that it will be done again |
| 613 | * immediately afterwards once the following data is parsed (eg: |
| 614 | * HTTP chunking). |
| 615 | */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 616 | if (((si->ib->flags & CF_READ_PARTIAL) && !channel_is_empty(si->ib)) && |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 617 | (si->ib->pipe /* always try to send spliced data */ || |
| 618 | (si->ib->buf.i == 0 && (si->ib->cons->flags & SI_FL_WAIT_DATA)))) { |
| 619 | int last_len = si->ib->pipe ? si->ib->pipe->data : 0; |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 620 | |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 621 | si_chk_snd(si->ib->cons); |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 622 | |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 623 | /* check if the consumer has freed some space either in the |
| 624 | * buffer or in the pipe. |
| 625 | */ |
Willy Tarreau | 3bf1b2b | 2012-08-27 20:46:07 +0200 | [diff] [blame] | 626 | if (!channel_full(si->ib) && |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 627 | (!last_len || !si->ib->pipe || si->ib->pipe->data < last_len)) |
| 628 | si->flags &= ~SI_FL_WAIT_ROOM; |
| 629 | } |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 630 | |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 631 | if (si->flags & SI_FL_WAIT_ROOM) { |
Willy Tarreau | f16723e | 2012-08-24 12:52:22 +0200 | [diff] [blame] | 632 | __conn_data_stop_recv(conn); |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 633 | si->ib->rex = TICK_ETERNITY; |
| 634 | } |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 635 | else if ((si->ib->flags & (CF_SHUTR|CF_READ_PARTIAL|CF_DONT_READ|CF_READ_NOEXP)) == CF_READ_PARTIAL && |
Willy Tarreau | 3bf1b2b | 2012-08-27 20:46:07 +0200 | [diff] [blame] | 636 | !channel_full(si->ib)) { |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 637 | if (tick_isset(si->ib->rex)) |
| 638 | si->ib->rex = tick_add_ifset(now_ms, si->ib->rto); |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | /* wake the task up only when needed */ |
| 642 | if (/* changes on the production side */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 643 | (si->ib->flags & (CF_READ_NULL|CF_READ_ERROR)) || |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 644 | si->state != SI_ST_EST || |
| 645 | (si->flags & SI_FL_ERR) || |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 646 | ((si->ib->flags & CF_READ_PARTIAL) && |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 647 | (!si->ib->to_forward || si->ib->cons->state != SI_ST_EST)) || |
| 648 | |
| 649 | /* changes on the consumption side */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 650 | (si->ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) || |
| 651 | ((si->ob->flags & CF_WRITE_ACTIVITY) && |
| 652 | ((si->ob->flags & CF_SHUTW) || |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 653 | si->ob->prod->state != SI_ST_EST || |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 654 | (channel_is_empty(si->ob) && !si->ob->to_forward)))) { |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 655 | task_wakeup(si->owner, TASK_WOKEN_IO); |
| 656 | } |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 657 | if (si->ib->flags & CF_READ_ACTIVITY) |
| 658 | si->ib->flags &= ~CF_READ_DONTWAIT; |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 659 | } |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 660 | |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 661 | /* |
| 662 | * This function is called to send buffer data to a stream socket. |
| 663 | * It returns -1 in case of unrecoverable error, otherwise zero. |
Willy Tarreau | f16723e | 2012-08-24 12:52:22 +0200 | [diff] [blame] | 664 | * It iterates the data layer's snd_buf function. It relies on the |
| 665 | * caller to commit polling changes. |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 666 | */ |
| 667 | static int si_conn_send_loop(struct connection *conn) |
| 668 | { |
| 669 | struct stream_interface *si = container_of(conn, struct stream_interface, conn); |
| 670 | struct channel *b = si->ob; |
| 671 | int write_poll = MAX_WRITE_POLL_LOOPS; |
| 672 | int ret; |
| 673 | |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 674 | conn->flags &= ~(CO_FL_WAIT_DATA | CO_FL_WAIT_ROOM); |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 675 | |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 676 | if (b->pipe && conn->data->snd_pipe) { |
| 677 | ret = conn->data->snd_pipe(conn, b->pipe); |
| 678 | if (ret > 0) |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 679 | b->flags |= CF_WRITE_PARTIAL; |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 680 | |
| 681 | if (!b->pipe->data) { |
| 682 | put_pipe(b->pipe); |
| 683 | b->pipe = NULL; |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 684 | } |
| 685 | |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 686 | if (conn->flags & CO_FL_ERROR) |
| 687 | return -1; |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 688 | |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 689 | if (conn->flags & CO_FL_WAIT_ROOM) { |
Willy Tarreau | f16723e | 2012-08-24 12:52:22 +0200 | [diff] [blame] | 690 | __conn_data_poll_send(conn); |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 691 | return 0; |
| 692 | } |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 693 | } |
| 694 | |
| 695 | /* At this point, the pipe is empty, but we may still have data pending |
| 696 | * in the normal buffer. |
| 697 | */ |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 698 | if (!b->buf.o) |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 699 | return 0; |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 700 | |
| 701 | /* when we're in this loop, we already know that there is no spliced |
| 702 | * data left, and that there are sendable buffered data. |
| 703 | */ |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 704 | while (!(conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH | CO_FL_DATA_WR_SH | CO_FL_WAIT_DATA | CO_FL_WAIT_ROOM | CO_FL_HANDSHAKE))) { |
| 705 | /* check if we want to inform the kernel that we're interested in |
| 706 | * sending more data after this call. We want this if : |
| 707 | * - we're about to close after this last send and want to merge |
| 708 | * the ongoing FIN with the last segment. |
| 709 | * - we know we can't send everything at once and must get back |
| 710 | * here because of unaligned data |
| 711 | * - there is still a finite amount of data to forward |
| 712 | * The test is arranged so that the most common case does only 2 |
| 713 | * tests. |
| 714 | */ |
| 715 | unsigned int send_flag = MSG_DONTWAIT | MSG_NOSIGNAL; |
| 716 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 717 | if ((!(b->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) && |
| 718 | ((b->to_forward && b->to_forward != CHN_INFINITE_FORWARD) || |
| 719 | (b->flags & CF_EXPECT_MORE))) || |
| 720 | ((b->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK)) == CF_SHUTW_NOW)) |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 721 | send_flag |= MSG_MORE; |
| 722 | |
| 723 | ret = conn->data->snd_buf(conn, &b->buf, send_flag); |
| 724 | if (ret <= 0) |
| 725 | break; |
| 726 | |
| 727 | if (si->conn.flags & CO_FL_WAIT_L4_CONN) |
| 728 | si->conn.flags &= ~CO_FL_WAIT_L4_CONN; |
| 729 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 730 | b->flags |= CF_WRITE_PARTIAL; |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 731 | |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 732 | if (!b->buf.o) { |
| 733 | /* Always clear both flags once everything has been sent, they're one-shot */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 734 | b->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT); |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 735 | break; |
| 736 | } |
| 737 | |
| 738 | if (--write_poll <= 0) |
| 739 | break; |
| 740 | } /* while */ |
| 741 | |
| 742 | if (conn->flags & CO_FL_ERROR) |
| 743 | return -1; |
| 744 | |
| 745 | if (conn->flags & CO_FL_WAIT_ROOM) { |
| 746 | /* we need to poll before going on */ |
Willy Tarreau | f16723e | 2012-08-24 12:52:22 +0200 | [diff] [blame] | 747 | __conn_data_poll_send(&si->conn); |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 748 | return 0; |
| 749 | } |
| 750 | return 0; |
| 751 | } |
| 752 | |
| 753 | |
Willy Tarreau | 100c467 | 2012-08-20 12:06:26 +0200 | [diff] [blame] | 754 | /* Updates the timers and flags of a stream interface attached to a connection, |
| 755 | * depending on the buffers' flags. It should only be called once after the |
| 756 | * buffer flags have settled down, and before they are cleared. It doesn't |
| 757 | * harm to call it as often as desired (it just slightly hurts performance). |
| 758 | * It is only meant to be called by upper layers after buffer flags have been |
| 759 | * manipulated by analysers. |
| 760 | */ |
| 761 | void stream_int_update_conn(struct stream_interface *si) |
| 762 | { |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 763 | struct channel *ib = si->ib; |
| 764 | struct channel *ob = si->ob; |
Willy Tarreau | 100c467 | 2012-08-20 12:06:26 +0200 | [diff] [blame] | 765 | |
| 766 | if (si->conn.flags & CO_FL_HANDSHAKE) { |
| 767 | /* a handshake is in progress */ |
Willy Tarreau | 100c467 | 2012-08-20 12:06:26 +0200 | [diff] [blame] | 768 | return; |
| 769 | } |
| 770 | |
| 771 | /* Check if we need to close the read side */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 772 | if (!(ib->flags & CF_SHUTR)) { |
Willy Tarreau | 100c467 | 2012-08-20 12:06:26 +0200 | [diff] [blame] | 773 | /* Read not closed, update FD status and timeout for reads */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 774 | if ((ib->flags & (CF_HIJACK|CF_DONT_READ)) || channel_full(ib)) { |
Willy Tarreau | 100c467 | 2012-08-20 12:06:26 +0200 | [diff] [blame] | 775 | /* stop reading */ |
| 776 | if (!(si->flags & SI_FL_WAIT_ROOM)) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 777 | if (!(ib->flags & (CF_HIJACK|CF_DONT_READ))) /* full */ |
Willy Tarreau | 100c467 | 2012-08-20 12:06:26 +0200 | [diff] [blame] | 778 | si->flags |= SI_FL_WAIT_ROOM; |
| 779 | conn_data_stop_recv(&si->conn); |
| 780 | ib->rex = TICK_ETERNITY; |
| 781 | } |
| 782 | } |
| 783 | else { |
| 784 | /* (re)start reading and update timeout. Note: we don't recompute the timeout |
| 785 | * everytime we get here, otherwise it would risk never to expire. We only |
| 786 | * update it if is was not yet set. The stream socket handler will already |
| 787 | * have updated it if there has been a completed I/O. |
| 788 | */ |
| 789 | si->flags &= ~SI_FL_WAIT_ROOM; |
| 790 | conn_data_want_recv(&si->conn); |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 791 | if (!(ib->flags & (CF_READ_NOEXP|CF_DONT_READ)) && !tick_isset(ib->rex)) |
Willy Tarreau | 100c467 | 2012-08-20 12:06:26 +0200 | [diff] [blame] | 792 | ib->rex = tick_add_ifset(now_ms, ib->rto); |
| 793 | } |
| 794 | } |
| 795 | |
| 796 | /* Check if we need to close the write side */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 797 | if (!(ob->flags & CF_SHUTW)) { |
Willy Tarreau | 100c467 | 2012-08-20 12:06:26 +0200 | [diff] [blame] | 798 | /* Write not closed, update FD status and timeout for writes */ |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 799 | if (channel_is_empty(ob)) { |
Willy Tarreau | 100c467 | 2012-08-20 12:06:26 +0200 | [diff] [blame] | 800 | /* stop writing */ |
| 801 | if (!(si->flags & SI_FL_WAIT_DATA)) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 802 | if ((ob->flags & (CF_HIJACK|CF_SHUTW_NOW)) == 0) |
Willy Tarreau | 100c467 | 2012-08-20 12:06:26 +0200 | [diff] [blame] | 803 | si->flags |= SI_FL_WAIT_DATA; |
| 804 | conn_data_stop_send(&si->conn); |
| 805 | ob->wex = TICK_ETERNITY; |
| 806 | } |
| 807 | } |
| 808 | else { |
| 809 | /* (re)start writing and update timeout. Note: we don't recompute the timeout |
| 810 | * everytime we get here, otherwise it would risk never to expire. We only |
| 811 | * update it if is was not yet set. The stream socket handler will already |
| 812 | * have updated it if there has been a completed I/O. |
| 813 | */ |
| 814 | si->flags &= ~SI_FL_WAIT_DATA; |
| 815 | conn_data_want_send(&si->conn); |
| 816 | if (!tick_isset(ob->wex)) { |
| 817 | ob->wex = tick_add_ifset(now_ms, ob->wto); |
| 818 | if (tick_isset(ib->rex) && !(si->flags & SI_FL_INDEP_STR)) { |
| 819 | /* Note: depending on the protocol, we don't know if we're waiting |
| 820 | * for incoming data or not. So in order to prevent the socket from |
| 821 | * expiring read timeouts during writes, we refresh the read timeout, |
| 822 | * except if it was already infinite or if we have explicitly setup |
| 823 | * independent streams. |
| 824 | */ |
| 825 | ib->rex = tick_add_ifset(now_ms, ib->rto); |
| 826 | } |
| 827 | } |
| 828 | } |
| 829 | } |
| 830 | } |
| 831 | |
Willy Tarreau | 46a8d92 | 2012-08-20 12:38:36 +0200 | [diff] [blame] | 832 | /* This function is used for inter-stream-interface calls. It is called by the |
| 833 | * consumer to inform the producer side that it may be interested in checking |
| 834 | * for free space in the buffer. Note that it intentionally does not update |
| 835 | * timeouts, so that we can still check them later at wake-up. This function is |
| 836 | * dedicated to connection-based stream interfaces. |
| 837 | */ |
Willy Tarreau | c578891 | 2012-08-24 18:12:41 +0200 | [diff] [blame] | 838 | static void stream_int_chk_rcv_conn(struct stream_interface *si) |
Willy Tarreau | 46a8d92 | 2012-08-20 12:38:36 +0200 | [diff] [blame] | 839 | { |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 840 | struct channel *ib = si->ib; |
Willy Tarreau | 46a8d92 | 2012-08-20 12:38:36 +0200 | [diff] [blame] | 841 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 842 | if (unlikely(si->state != SI_ST_EST || (ib->flags & CF_SHUTR))) |
Willy Tarreau | 46a8d92 | 2012-08-20 12:38:36 +0200 | [diff] [blame] | 843 | return; |
| 844 | |
| 845 | if (si->conn.flags & CO_FL_HANDSHAKE) { |
| 846 | /* a handshake is in progress */ |
| 847 | return; |
| 848 | } |
| 849 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 850 | if ((ib->flags & (CF_HIJACK|CF_DONT_READ)) || channel_full(ib)) { |
Willy Tarreau | 46a8d92 | 2012-08-20 12:38:36 +0200 | [diff] [blame] | 851 | /* stop reading */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 852 | if (!(ib->flags & (CF_HIJACK|CF_DONT_READ))) /* full */ |
Willy Tarreau | 46a8d92 | 2012-08-20 12:38:36 +0200 | [diff] [blame] | 853 | si->flags |= SI_FL_WAIT_ROOM; |
| 854 | conn_data_stop_recv(&si->conn); |
| 855 | } |
| 856 | else { |
| 857 | /* (re)start reading */ |
| 858 | si->flags &= ~SI_FL_WAIT_ROOM; |
| 859 | conn_data_want_recv(&si->conn); |
| 860 | } |
| 861 | } |
| 862 | |
| 863 | |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 864 | /* This function is used for inter-stream-interface calls. It is called by the |
| 865 | * producer to inform the consumer side that it may be interested in checking |
| 866 | * for data in the buffer. Note that it intentionally does not update timeouts, |
| 867 | * so that we can still check them later at wake-up. |
| 868 | */ |
Willy Tarreau | c578891 | 2012-08-24 18:12:41 +0200 | [diff] [blame] | 869 | static void stream_int_chk_snd_conn(struct stream_interface *si) |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 870 | { |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 871 | struct channel *ob = si->ob; |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 872 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 873 | if (unlikely(si->state != SI_ST_EST || (ob->flags & CF_SHUTW))) |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 874 | return; |
| 875 | |
| 876 | /* handshake running on producer */ |
| 877 | if (si->conn.flags & CO_FL_HANDSHAKE) { |
| 878 | /* a handshake is in progress */ |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 879 | return; |
| 880 | } |
| 881 | |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 882 | if (unlikely(channel_is_empty(ob))) /* called with nothing to send ! */ |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 883 | return; |
| 884 | |
| 885 | if (!ob->pipe && /* spliced data wants to be forwarded ASAP */ |
| 886 | (!(si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */ |
| 887 | (fdtab[si_fd(si)].ev & FD_POLL_OUT))) /* we'll be called anyway */ |
| 888 | return; |
| 889 | |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 890 | if (si_conn_send_loop(&si->conn) < 0) { |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 891 | /* Write error on the file descriptor. We mark the FD as STERROR so |
| 892 | * that we don't use it anymore and we notify the task. |
| 893 | */ |
| 894 | fdtab[si_fd(si)].ev &= ~FD_POLL_STICKY; |
Willy Tarreau | f16723e | 2012-08-24 12:52:22 +0200 | [diff] [blame] | 895 | __conn_data_stop_both(&si->conn); |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 896 | si->flags |= SI_FL_ERR; |
| 897 | si->conn.flags |= CO_FL_ERROR; |
| 898 | goto out_wakeup; |
| 899 | } |
| 900 | |
| 901 | /* OK, so now we know that some data might have been sent, and that we may |
| 902 | * have to poll first. We have to do that too if the buffer is not empty. |
| 903 | */ |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 904 | if (channel_is_empty(ob)) { |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 905 | /* the connection is established but we can't write. Either the |
| 906 | * buffer is empty, or we just refrain from sending because the |
| 907 | * ->o limit was reached. Maybe we just wrote the last |
| 908 | * chunk and need to close. |
| 909 | */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 910 | if (((ob->flags & (CF_SHUTW|CF_HIJACK|CF_AUTO_CLOSE|CF_SHUTW_NOW)) == |
| 911 | (CF_AUTO_CLOSE|CF_SHUTW_NOW)) && |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 912 | (si->state == SI_ST_EST)) { |
| 913 | si_shutw(si); |
| 914 | goto out_wakeup; |
| 915 | } |
| 916 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 917 | if ((ob->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_HIJACK)) == 0) |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 918 | si->flags |= SI_FL_WAIT_DATA; |
| 919 | ob->wex = TICK_ETERNITY; |
| 920 | } |
| 921 | else { |
| 922 | /* Otherwise there are remaining data to be sent in the buffer, |
| 923 | * which means we have to poll before doing so. |
| 924 | */ |
Willy Tarreau | f16723e | 2012-08-24 12:52:22 +0200 | [diff] [blame] | 925 | __conn_data_want_send(&si->conn); |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 926 | si->flags &= ~SI_FL_WAIT_DATA; |
| 927 | if (!tick_isset(ob->wex)) |
| 928 | ob->wex = tick_add_ifset(now_ms, ob->wto); |
| 929 | } |
| 930 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 931 | if (likely(ob->flags & CF_WRITE_ACTIVITY)) { |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 932 | /* update timeout if we have written something */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 933 | if ((ob->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL && |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 934 | !channel_is_empty(ob)) |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 935 | ob->wex = tick_add_ifset(now_ms, ob->wto); |
| 936 | |
| 937 | if (tick_isset(si->ib->rex) && !(si->flags & SI_FL_INDEP_STR)) { |
| 938 | /* Note: to prevent the client from expiring read timeouts |
| 939 | * during writes, we refresh it. We only do this if the |
| 940 | * interface is not configured for "independent streams", |
| 941 | * because for some applications it's better not to do this, |
| 942 | * for instance when continuously exchanging small amounts |
| 943 | * of data which can full the socket buffers long before a |
| 944 | * write timeout is detected. |
| 945 | */ |
| 946 | si->ib->rex = tick_add_ifset(now_ms, si->ib->rto); |
| 947 | } |
| 948 | } |
| 949 | |
| 950 | /* in case of special condition (error, shutdown, end of write...), we |
| 951 | * have to notify the task. |
| 952 | */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 953 | if (likely((ob->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) || |
Willy Tarreau | 8e21bb9 | 2012-08-24 22:40:29 +0200 | [diff] [blame] | 954 | (channel_is_empty(ob) && !ob->to_forward) || |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 955 | si->state != SI_ST_EST)) { |
| 956 | out_wakeup: |
| 957 | if (!(si->flags & SI_FL_DONT_WAKE) && si->owner) |
| 958 | task_wakeup(si->owner, TASK_WOKEN_IO); |
| 959 | } |
Willy Tarreau | f16723e | 2012-08-24 12:52:22 +0200 | [diff] [blame] | 960 | |
| 961 | /* commit possible polling changes */ |
| 962 | conn_cond_update_polling(&si->conn); |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 963 | } |
| 964 | |
Willy Tarreau | eecf6ca | 2012-08-20 15:09:53 +0200 | [diff] [blame] | 965 | /* |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 966 | * This is the callback which is called by the connection layer to receive data |
| 967 | * into the buffer from the connection. It iterates over the data layer's rcv_buf |
| 968 | * function. |
| 969 | */ |
| 970 | void si_conn_recv_cb(struct connection *conn) |
| 971 | { |
| 972 | struct stream_interface *si = container_of(conn, struct stream_interface, conn); |
| 973 | struct channel *b = si->ib; |
| 974 | int ret, max, cur_read; |
| 975 | int read_poll = MAX_READ_POLL_LOOPS; |
| 976 | |
| 977 | /* stop immediately on errors. Note that we DON'T want to stop on |
| 978 | * POLL_ERR, as the poller might report a write error while there |
| 979 | * are still data available in the recv buffer. This typically |
| 980 | * happens when we send too large a request to a backend server |
| 981 | * which rejects it before reading it all. |
| 982 | */ |
| 983 | if (conn->flags & CO_FL_ERROR) |
| 984 | goto out_error; |
| 985 | |
| 986 | /* stop here if we reached the end of data */ |
| 987 | if (conn_data_read0_pending(conn)) |
| 988 | goto out_shutdown_r; |
| 989 | |
| 990 | /* maybe we were called immediately after an asynchronous shutr */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 991 | if (b->flags & CF_SHUTR) |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 992 | return; |
| 993 | |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 994 | cur_read = 0; |
| 995 | conn->flags &= ~(CO_FL_WAIT_DATA | CO_FL_WAIT_ROOM); |
| 996 | |
| 997 | /* First, let's see if we may splice data across the channel without |
| 998 | * using a buffer. |
| 999 | */ |
| 1000 | if (conn->data->rcv_pipe && |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1001 | b->to_forward >= MIN_SPLICE_FORWARD && b->flags & CF_KERN_SPLICING) { |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1002 | if (buffer_not_empty(&b->buf)) { |
| 1003 | /* We're embarrassed, there are already data pending in |
| 1004 | * the buffer and we don't want to have them at two |
| 1005 | * locations at a time. Let's indicate we need some |
| 1006 | * place and ask the consumer to hurry. |
| 1007 | */ |
| 1008 | goto abort_splice; |
| 1009 | } |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1010 | |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1011 | if (unlikely(b->pipe == NULL)) { |
| 1012 | if (pipes_used >= global.maxpipes || !(b->pipe = get_pipe())) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1013 | b->flags &= ~CF_KERN_SPLICING; |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1014 | goto abort_splice; |
| 1015 | } |
| 1016 | } |
| 1017 | |
| 1018 | ret = conn->data->rcv_pipe(conn, b->pipe, b->to_forward); |
| 1019 | if (ret < 0) { |
| 1020 | /* splice not supported on this end, let's disable it */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1021 | b->flags &= ~CF_KERN_SPLICING; |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1022 | si->flags &= ~SI_FL_CAP_SPLICE; |
| 1023 | goto abort_splice; |
| 1024 | } |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1025 | |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1026 | if (ret > 0) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1027 | if (b->to_forward != CHN_INFINITE_FORWARD) |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1028 | b->to_forward -= ret; |
| 1029 | b->total += ret; |
| 1030 | cur_read += ret; |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1031 | b->flags |= CF_READ_PARTIAL; |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1032 | } |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1033 | |
| 1034 | if (conn_data_read0_pending(conn)) |
| 1035 | goto out_shutdown_r; |
| 1036 | |
| 1037 | if (conn->flags & CO_FL_ERROR) |
| 1038 | goto out_error; |
| 1039 | |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1040 | /* splice not possible (anymore), let's go on on standard copy */ |
| 1041 | } |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1042 | |
| 1043 | abort_splice: |
| 1044 | /* release the pipe if we can, which is almost always the case */ |
| 1045 | if (b->pipe && !b->pipe->data) { |
| 1046 | put_pipe(b->pipe); |
| 1047 | b->pipe = NULL; |
| 1048 | } |
| 1049 | |
| 1050 | while (!b->pipe && !(conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_DATA_RD_SH | CO_FL_WAIT_DATA | CO_FL_WAIT_ROOM | CO_FL_HANDSHAKE))) { |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1051 | max = bi_avail(b); |
| 1052 | |
| 1053 | if (!max) { |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1054 | conn->flags |= CO_FL_WAIT_ROOM; |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1055 | break; |
| 1056 | } |
| 1057 | |
| 1058 | ret = conn->data->rcv_buf(conn, &b->buf, max); |
| 1059 | if (ret <= 0) |
| 1060 | break; |
| 1061 | |
| 1062 | cur_read += ret; |
| 1063 | |
| 1064 | /* if we're allowed to directly forward data, we must update ->o */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1065 | if (b->to_forward && !(b->flags & (CF_SHUTW|CF_SHUTW_NOW))) { |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1066 | unsigned long fwd = ret; |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1067 | if (b->to_forward != CHN_INFINITE_FORWARD) { |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1068 | if (fwd > b->to_forward) |
| 1069 | fwd = b->to_forward; |
| 1070 | b->to_forward -= fwd; |
| 1071 | } |
Willy Tarreau | a75bcef | 2012-08-24 22:56:11 +0200 | [diff] [blame] | 1072 | b_adv(&b->buf, fwd); |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1073 | } |
| 1074 | |
| 1075 | if (conn->flags & CO_FL_WAIT_L4_CONN) |
| 1076 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 1077 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1078 | b->flags |= CF_READ_PARTIAL; |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1079 | b->total += ret; |
| 1080 | |
Willy Tarreau | ad1cc3d | 2012-08-27 18:54:20 +0200 | [diff] [blame] | 1081 | if (channel_full(b)) { |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1082 | /* The buffer is now full, there's no point in going through |
| 1083 | * the loop again. |
| 1084 | */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1085 | if (!(b->flags & CF_STREAMER_FAST) && (cur_read == buffer_len(&b->buf))) { |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1086 | b->xfer_small = 0; |
| 1087 | b->xfer_large++; |
| 1088 | if (b->xfer_large >= 3) { |
| 1089 | /* we call this buffer a fast streamer if it manages |
| 1090 | * to be filled in one call 3 consecutive times. |
| 1091 | */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1092 | b->flags |= (CF_STREAMER | CF_STREAMER_FAST); |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1093 | //fputc('+', stderr); |
| 1094 | } |
| 1095 | } |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1096 | else if ((b->flags & (CF_STREAMER | CF_STREAMER_FAST)) && |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1097 | (cur_read <= b->buf.size / 2)) { |
| 1098 | b->xfer_large = 0; |
| 1099 | b->xfer_small++; |
| 1100 | if (b->xfer_small >= 2) { |
| 1101 | /* if the buffer has been at least half full twice, |
| 1102 | * we receive faster than we send, so at least it |
| 1103 | * is not a "fast streamer". |
| 1104 | */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1105 | b->flags &= ~CF_STREAMER_FAST; |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1106 | //fputc('-', stderr); |
| 1107 | } |
| 1108 | } |
| 1109 | else { |
| 1110 | b->xfer_small = 0; |
| 1111 | b->xfer_large = 0; |
| 1112 | } |
| 1113 | |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1114 | si->flags |= SI_FL_WAIT_ROOM; |
| 1115 | break; |
| 1116 | } |
| 1117 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1118 | if ((b->flags & CF_READ_DONTWAIT) || --read_poll <= 0) |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1119 | break; |
| 1120 | |
| 1121 | /* if too many bytes were missing from last read, it means that |
| 1122 | * it's pointless trying to read again because the system does |
| 1123 | * not have them in buffers. |
| 1124 | */ |
| 1125 | if (ret < max) { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1126 | if ((b->flags & (CF_STREAMER | CF_STREAMER_FAST)) && |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1127 | (cur_read <= b->buf.size / 2)) { |
| 1128 | b->xfer_large = 0; |
| 1129 | b->xfer_small++; |
| 1130 | if (b->xfer_small >= 3) { |
| 1131 | /* we have read less than half of the buffer in |
| 1132 | * one pass, and this happened at least 3 times. |
| 1133 | * This is definitely not a streamer. |
| 1134 | */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1135 | b->flags &= ~(CF_STREAMER | CF_STREAMER_FAST); |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1136 | //fputc('!', stderr); |
| 1137 | } |
| 1138 | } |
| 1139 | |
| 1140 | /* if a streamer has read few data, it may be because we |
| 1141 | * have exhausted system buffers. It's not worth trying |
| 1142 | * again. |
| 1143 | */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1144 | if (b->flags & CF_STREAMER) |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1145 | break; |
| 1146 | |
| 1147 | /* if we read a large block smaller than what we requested, |
| 1148 | * it's almost certain we'll never get anything more. |
| 1149 | */ |
| 1150 | if (ret >= global.tune.recv_enough) |
| 1151 | break; |
| 1152 | } |
| 1153 | } /* while !flags */ |
| 1154 | |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1155 | if (conn->flags & CO_FL_ERROR) |
| 1156 | goto out_error; |
| 1157 | |
| 1158 | if (conn->flags & CO_FL_WAIT_ROOM) { |
Willy Tarreau | 2c05208 | 2012-08-24 12:53:56 +0200 | [diff] [blame] | 1159 | si->flags |= SI_FL_WAIT_ROOM; |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1160 | } |
| 1161 | else if (conn->flags & CO_FL_WAIT_DATA) { |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1162 | /* we don't automatically ask for polling if we have |
| 1163 | * read enough data, as it saves some syscalls with |
| 1164 | * speculative pollers. |
| 1165 | */ |
| 1166 | if (cur_read < MIN_RET_FOR_READ_LOOP) |
| 1167 | __conn_data_poll_recv(conn); |
| 1168 | else |
| 1169 | __conn_data_want_recv(conn); |
| 1170 | } |
| 1171 | |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1172 | if (conn_data_read0_pending(conn)) |
| 1173 | /* connection closed */ |
| 1174 | goto out_shutdown_r; |
| 1175 | |
| 1176 | return; |
| 1177 | |
| 1178 | out_shutdown_r: |
| 1179 | /* we received a shutdown */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1180 | b->flags |= CF_READ_NULL; |
| 1181 | if (b->flags & CF_AUTO_CLOSE) |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame^] | 1182 | channel_shutw_now(b); |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1183 | stream_sock_read0(si); |
| 1184 | conn_data_read0(conn); |
| 1185 | return; |
| 1186 | |
| 1187 | out_error: |
| 1188 | /* Read error on the connection, report the error and stop I/O */ |
| 1189 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | f16723e | 2012-08-24 12:52:22 +0200 | [diff] [blame] | 1190 | __conn_data_stop_both(conn); |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1191 | } |
| 1192 | |
| 1193 | /* |
Willy Tarreau | eecf6ca | 2012-08-20 15:09:53 +0200 | [diff] [blame] | 1194 | * This is the callback which is called by the connection layer to send data |
| 1195 | * from the buffer to the connection. It iterates over the data layer's snd_buf |
| 1196 | * function. |
| 1197 | */ |
| 1198 | void si_conn_send_cb(struct connection *conn) |
| 1199 | { |
| 1200 | struct stream_interface *si = container_of(conn, struct stream_interface, conn); |
Willy Tarreau | 7421efb | 2012-07-02 15:11:27 +0200 | [diff] [blame] | 1201 | struct channel *b = si->ob; |
Willy Tarreau | eecf6ca | 2012-08-20 15:09:53 +0200 | [diff] [blame] | 1202 | |
| 1203 | if (conn->flags & CO_FL_ERROR) |
| 1204 | goto out_error; |
| 1205 | |
| 1206 | if (si->conn.flags & CO_FL_HANDSHAKE) |
| 1207 | /* a handshake was requested */ |
| 1208 | return; |
| 1209 | |
| 1210 | /* we might have been called just after an asynchronous shutw */ |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1211 | if (b->flags & CF_SHUTW) |
Willy Tarreau | eecf6ca | 2012-08-20 15:09:53 +0200 | [diff] [blame] | 1212 | return; |
| 1213 | |
| 1214 | /* OK there are data waiting to be sent */ |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 1215 | if (si_conn_send_loop(conn) < 0) |
Willy Tarreau | eecf6ca | 2012-08-20 15:09:53 +0200 | [diff] [blame] | 1216 | goto out_error; |
| 1217 | |
| 1218 | /* OK all done */ |
| 1219 | return; |
| 1220 | |
| 1221 | out_error: |
| 1222 | /* Write error on the connection, report the error and stop I/O */ |
| 1223 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | f16723e | 2012-08-24 12:52:22 +0200 | [diff] [blame] | 1224 | __conn_data_stop_both(conn); |
Willy Tarreau | eecf6ca | 2012-08-20 15:09:53 +0200 | [diff] [blame] | 1225 | } |
| 1226 | |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1227 | /* |
| 1228 | * This function propagates a null read received on a socket-based connection. |
| 1229 | * It updates the stream interface. If the stream interface has SI_FL_NOHALF, |
| 1230 | * the close is also forwarded to the write side as an abort. This function is |
| 1231 | * still socket-specific as it handles a setsockopt() call to set the SO_LINGER |
| 1232 | * state on the socket. |
| 1233 | */ |
| 1234 | void stream_sock_read0(struct stream_interface *si) |
| 1235 | { |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1236 | si->ib->flags &= ~CF_SHUTR_NOW; |
| 1237 | if (si->ib->flags & CF_SHUTR) |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1238 | return; |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1239 | si->ib->flags |= CF_SHUTR; |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1240 | si->ib->rex = TICK_ETERNITY; |
| 1241 | si->flags &= ~SI_FL_WAIT_ROOM; |
| 1242 | |
| 1243 | if (si->state != SI_ST_EST && si->state != SI_ST_CON) |
| 1244 | return; |
| 1245 | |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1246 | if (si->ob->flags & CF_SHUTW) |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1247 | goto do_close; |
| 1248 | |
| 1249 | if (si->flags & SI_FL_NOHALF) { |
| 1250 | /* we want to immediately forward this close to the write side */ |
| 1251 | if (si->flags & SI_FL_NOLINGER) { |
| 1252 | si->flags &= ~SI_FL_NOLINGER; |
| 1253 | setsockopt(si_fd(si), SOL_SOCKET, SO_LINGER, |
| 1254 | (struct linger *) &nolinger, sizeof(struct linger)); |
| 1255 | } |
| 1256 | /* force flag on ssl to keep session in cache */ |
| 1257 | if (si->conn.data->shutw) |
| 1258 | si->conn.data->shutw(&si->conn, 0); |
| 1259 | goto do_close; |
| 1260 | } |
| 1261 | |
| 1262 | /* otherwise that's just a normal read shutdown */ |
Willy Tarreau | f16723e | 2012-08-24 12:52:22 +0200 | [diff] [blame] | 1263 | __conn_data_stop_recv(&si->conn); |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1264 | return; |
| 1265 | |
| 1266 | do_close: |
| 1267 | conn_data_close(&si->conn); |
| 1268 | fd_delete(si_fd(si)); |
| 1269 | si->state = SI_ST_DIS; |
| 1270 | si->exp = TICK_ETERNITY; |
| 1271 | if (si->release) |
| 1272 | si->release(si); |
| 1273 | return; |
| 1274 | } |
| 1275 | |
Willy Tarreau | dded32d | 2008-11-30 19:48:07 +0100 | [diff] [blame] | 1276 | /* |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 1277 | * Local variables: |
| 1278 | * c-indent-level: 8 |
| 1279 | * c-basic-offset: 8 |
| 1280 | * End: |
| 1281 | */ |