Willy Tarreau | b1ec8c4 | 2015-04-03 13:53:24 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 2 | * Session management functions. |
Willy Tarreau | b1ec8c4 | 2015-04-03 13:53:24 +0200 | [diff] [blame] | 3 | * |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 4 | * Copyright 2000-2015 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | b1ec8c4 | 2015-04-03 13:53:24 +0200 | [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 <common/config.h> |
| 14 | #include <common/buffer.h> |
| 15 | #include <common/debug.h> |
Willy Tarreau | 35b51c6 | 2018-09-10 15:38:55 +0200 | [diff] [blame] | 16 | #include <common/http.h> |
Willy Tarreau | b1ec8c4 | 2015-04-03 13:53:24 +0200 | [diff] [blame] | 17 | #include <common/memory.h> |
| 18 | |
| 19 | #include <types/global.h> |
| 20 | #include <types/session.h> |
| 21 | |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 22 | #include <proto/connection.h> |
| 23 | #include <proto/listener.h> |
| 24 | #include <proto/log.h> |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 25 | #include <proto/proxy.h> |
Willy Tarreau | bb2ef12 | 2015-04-04 16:31:16 +0200 | [diff] [blame] | 26 | #include <proto/session.h> |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 27 | #include <proto/stream.h> |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 28 | #include <proto/tcp_rules.h> |
Willy Tarreau | ebcd484 | 2015-06-19 11:59:02 +0200 | [diff] [blame] | 29 | #include <proto/vars.h> |
Willy Tarreau | bb2ef12 | 2015-04-04 16:31:16 +0200 | [diff] [blame] | 30 | |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 31 | DECLARE_POOL(pool_head_session, "session", sizeof(struct session)); |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 32 | DECLARE_POOL(pool_head_sess_srv_list, "session server list", |
| 33 | sizeof(struct sess_srv_list)); |
Willy Tarreau | b1ec8c4 | 2015-04-03 13:53:24 +0200 | [diff] [blame] | 34 | |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 35 | static int conn_complete_session(struct connection *conn); |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 36 | static struct task *session_expire_embryonic(struct task *t, void *context, unsigned short state); |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 37 | |
Willy Tarreau | c38f71c | 2015-04-05 00:38:48 +0200 | [diff] [blame] | 38 | /* Create a a new session and assign it to frontend <fe>, listener <li>, |
| 39 | * origin <origin>, set the current date and clear the stick counters pointers. |
| 40 | * Returns the session upon success or NULL. The session may be released using |
Willy Tarreau | 0bf6fa5 | 2017-09-15 10:25:14 +0200 | [diff] [blame] | 41 | * session_free(). Note: <li> may be NULL. |
Willy Tarreau | c38f71c | 2015-04-05 00:38:48 +0200 | [diff] [blame] | 42 | */ |
| 43 | struct session *session_new(struct proxy *fe, struct listener *li, enum obj_type *origin) |
| 44 | { |
| 45 | struct session *sess; |
| 46 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 47 | sess = pool_alloc(pool_head_session); |
Willy Tarreau | c38f71c | 2015-04-05 00:38:48 +0200 | [diff] [blame] | 48 | if (sess) { |
| 49 | sess->listener = li; |
| 50 | sess->fe = fe; |
| 51 | sess->origin = origin; |
| 52 | sess->accept_date = date; /* user-visible date for logging */ |
| 53 | sess->tv_accept = now; /* corrected date for internal use */ |
| 54 | memset(sess->stkctr, 0, sizeof(sess->stkctr)); |
Willy Tarreau | ebcd484 | 2015-06-19 11:59:02 +0200 | [diff] [blame] | 55 | vars_init(&sess->vars, SCOPE_SESS); |
Willy Tarreau | 0b74eae | 2017-08-28 19:02:51 +0200 | [diff] [blame] | 56 | sess->task = NULL; |
Willy Tarreau | 590a051 | 2018-09-05 11:56:48 +0200 | [diff] [blame] | 57 | sess->t_handshake = -1; /* handshake not done yet */ |
Olivier Houchard | d5b3d30 | 2019-03-08 18:54:34 +0100 | [diff] [blame] | 58 | _HA_ATOMIC_ADD(&totalconn, 1); |
| 59 | _HA_ATOMIC_ADD(&jobs, 1); |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 60 | LIST_INIT(&sess->srv_list); |
Olivier Houchard | a2dbeb2 | 2018-12-28 18:50:57 +0100 | [diff] [blame] | 61 | sess->idle_conns = 0; |
Olivier Houchard | 250031e | 2019-05-29 15:01:50 +0200 | [diff] [blame] | 62 | sess->flags = SESS_FL_NONE; |
Willy Tarreau | c38f71c | 2015-04-05 00:38:48 +0200 | [diff] [blame] | 63 | } |
| 64 | return sess; |
| 65 | } |
| 66 | |
Willy Tarreau | 11c3624 | 2015-04-04 15:54:03 +0200 | [diff] [blame] | 67 | void session_free(struct session *sess) |
| 68 | { |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 69 | struct connection *conn, *conn_back; |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 70 | struct sess_srv_list *srv_list, *srv_list_back; |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 71 | |
Willy Tarreau | 4f0c64c | 2017-10-18 15:01:14 +0200 | [diff] [blame] | 72 | if (sess->listener) |
| 73 | listener_release(sess->listener); |
Willy Tarreau | bb2ef12 | 2015-04-04 16:31:16 +0200 | [diff] [blame] | 74 | session_store_counters(sess); |
Willy Tarreau | ebcd484 | 2015-06-19 11:59:02 +0200 | [diff] [blame] | 75 | vars_prune_per_sess(&sess->vars); |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 76 | conn = objt_conn(sess->origin); |
| 77 | if (conn != NULL && conn->mux) |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 78 | conn->mux->destroy(conn->ctx); |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 79 | list_for_each_entry_safe(srv_list, srv_list_back, &sess->srv_list, srv_list) { |
| 80 | list_for_each_entry_safe(conn, conn_back, &srv_list->conn_list, session_list) { |
Willy Tarreau | 6571828 | 2019-11-15 07:04:24 +0100 | [diff] [blame] | 81 | LIST_DEL_INIT(&conn->session_list); |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 82 | if (conn->mux) { |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 83 | conn->owner = NULL; |
Olivier Houchard | 8788b41 | 2019-01-31 19:31:19 +0100 | [diff] [blame] | 84 | conn->flags &= ~CO_FL_SESS_IDLE; |
Olivier Houchard | a4d4fdf | 2018-12-14 19:27:06 +0100 | [diff] [blame] | 85 | if (!srv_add_to_idle_list(objt_server(conn->target), conn)) |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 86 | conn->mux->destroy(conn->ctx); |
Olivier Houchard | 00cf70f | 2018-11-30 17:24:55 +0100 | [diff] [blame] | 87 | } else { |
| 88 | /* We have a connection, but not yet an associated mux. |
| 89 | * So destroy it now. |
| 90 | */ |
| 91 | conn_stop_tracking(conn); |
| 92 | conn_full_close(conn); |
| 93 | conn_free(conn); |
| 94 | } |
| 95 | } |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 96 | pool_free(pool_head_sess_srv_list, srv_list); |
Olivier Houchard | 201b9f4 | 2018-11-21 00:16:29 +0100 | [diff] [blame] | 97 | } |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 98 | pool_free(pool_head_session, sess); |
Olivier Houchard | d5b3d30 | 2019-03-08 18:54:34 +0100 | [diff] [blame] | 99 | _HA_ATOMIC_SUB(&jobs, 1); |
Willy Tarreau | 11c3624 | 2015-04-04 15:54:03 +0200 | [diff] [blame] | 100 | } |
| 101 | |
Willy Tarreau | 3e13cba | 2017-10-08 11:26:30 +0200 | [diff] [blame] | 102 | /* callback used from the connection/mux layer to notify that a connection is |
Joseph Herlant | d091bfb | 2018-11-25 11:22:10 -0800 | [diff] [blame] | 103 | * going to be released. |
Willy Tarreau | 3e13cba | 2017-10-08 11:26:30 +0200 | [diff] [blame] | 104 | */ |
| 105 | void conn_session_free(struct connection *conn) |
| 106 | { |
| 107 | session_free(conn->owner); |
| 108 | } |
| 109 | |
Willy Tarreau | 042cd75 | 2015-04-08 18:10:49 +0200 | [diff] [blame] | 110 | /* count a new session to keep frontend, listener and track stats up to date */ |
| 111 | static void session_count_new(struct session *sess) |
| 112 | { |
| 113 | struct stkctr *stkctr; |
| 114 | void *ptr; |
| 115 | int i; |
| 116 | |
| 117 | proxy_inc_fe_sess_ctr(sess->listener, sess->fe); |
| 118 | |
| 119 | for (i = 0; i < MAX_SESS_STKCTR; i++) { |
| 120 | stkctr = &sess->stkctr[i]; |
| 121 | if (!stkctr_entry(stkctr)) |
| 122 | continue; |
| 123 | |
| 124 | ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_CNT); |
| 125 | if (ptr) |
| 126 | stktable_data_cast(ptr, sess_cnt)++; |
| 127 | |
| 128 | ptr = stktable_data_ptr(stkctr->table, stkctr_entry(stkctr), STKTABLE_DT_SESS_RATE); |
| 129 | if (ptr) |
| 130 | update_freq_ctr_period(&stktable_data_cast(ptr, sess_rate), |
| 131 | stkctr->table->data_arg[STKTABLE_DT_SESS_RATE].u, 1); |
| 132 | } |
| 133 | } |
| 134 | |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 135 | /* This function is called from the protocol layer accept() in order to |
Dave Chiluk | 8618a6a | 2018-06-21 11:03:20 -0500 | [diff] [blame] | 136 | * instantiate a new session on behalf of a given listener and frontend. It |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 137 | * returns a positive value upon success, 0 if the connection can be ignored, |
| 138 | * or a negative value upon critical failure. The accepted file descriptor is |
| 139 | * closed if we return <= 0. If no handshake is needed, it immediately tries |
Dave Chiluk | 8618a6a | 2018-06-21 11:03:20 -0500 | [diff] [blame] | 140 | * to instantiate a new stream. The created connection's owner points to the |
Willy Tarreau | 0b74eae | 2017-08-28 19:02:51 +0200 | [diff] [blame] | 141 | * new session until the upper layers are created. |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 142 | */ |
| 143 | int session_accept_fd(struct listener *l, int cfd, struct sockaddr_storage *addr) |
| 144 | { |
| 145 | struct connection *cli_conn; |
Willy Tarreau | c95bad5 | 2016-12-22 00:13:31 +0100 | [diff] [blame] | 146 | struct proxy *p = l->bind_conf->frontend; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 147 | struct session *sess; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 148 | int ret; |
| 149 | |
| 150 | |
| 151 | ret = -1; /* assume unrecoverable error by default */ |
| 152 | |
| 153 | if (unlikely((cli_conn = conn_new()) == NULL)) |
| 154 | goto out_close; |
| 155 | |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 156 | cli_conn->handle.fd = cfd; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 157 | cli_conn->addr.from = *addr; |
| 158 | cli_conn->flags |= CO_FL_ADDR_FROM_SET; |
| 159 | cli_conn->target = &l->obj_type; |
| 160 | cli_conn->proxy_netns = l->netns; |
| 161 | |
Willy Tarreau | be37315 | 2018-09-06 11:45:30 +0200 | [diff] [blame] | 162 | conn_prepare(cli_conn, l->proto, l->bind_conf->xprt); |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 163 | conn_ctrl_init(cli_conn); |
| 164 | |
| 165 | /* wait for a PROXY protocol header */ |
Olivier Houchard | fe50bfb | 2019-05-27 12:09:19 +0200 | [diff] [blame] | 166 | if (l->options & LI_O_ACC_PROXY) |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 167 | cli_conn->flags |= CO_FL_ACCEPT_PROXY; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 168 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 169 | /* wait for a NetScaler client IP insertion protocol header */ |
Olivier Houchard | fe50bfb | 2019-05-27 12:09:19 +0200 | [diff] [blame] | 170 | if (l->options & LI_O_ACC_CIP) |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 171 | cli_conn->flags |= CO_FL_ACCEPT_CIP; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 172 | |
Olivier Houchard | 1a0545f | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 173 | conn_xprt_want_recv(cli_conn); |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 174 | if (conn_xprt_init(cli_conn) < 0) |
| 175 | goto out_free_conn; |
| 176 | |
Olivier Houchard | fe50bfb | 2019-05-27 12:09:19 +0200 | [diff] [blame] | 177 | /* Add the handshake pseudo-XPRT */ |
| 178 | if (cli_conn->flags & (CO_FL_ACCEPT_PROXY | CO_FL_ACCEPT_CIP)) { |
| 179 | if (xprt_add_hs(cli_conn) != 0) |
| 180 | goto out_free_conn; |
| 181 | } |
Willy Tarreau | 64beab2 | 2015-04-05 00:39:16 +0200 | [diff] [blame] | 182 | sess = session_new(p, l, &cli_conn->obj_type); |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 183 | if (!sess) |
| 184 | goto out_free_conn; |
| 185 | |
Willy Tarreau | 436d333 | 2017-10-08 11:16:46 +0200 | [diff] [blame] | 186 | conn_set_owner(cli_conn, sess, NULL); |
Willy Tarreau | 0b74eae | 2017-08-28 19:02:51 +0200 | [diff] [blame] | 187 | |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 188 | /* now evaluate the tcp-request layer4 rules. We only need a session |
| 189 | * and no stream for these rules. |
| 190 | */ |
Willy Tarreau | 7d9736f | 2016-10-21 16:34:21 +0200 | [diff] [blame] | 191 | if ((l->options & LI_O_TCP_L4_RULES) && !tcp_exec_l4_rules(sess)) { |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 192 | /* let's do a no-linger now to close with a single RST. */ |
| 193 | setsockopt(cfd, SOL_SOCKET, SO_LINGER, (struct linger *) &nolinger, sizeof(struct linger)); |
| 194 | ret = 0; /* successful termination */ |
| 195 | goto out_free_sess; |
| 196 | } |
| 197 | |
| 198 | /* monitor-net and health mode are processed immediately after TCP |
| 199 | * connection rules. This way it's possible to block them, but they |
| 200 | * never use the lower data layers, they send directly over the socket, |
| 201 | * as they were designed for. We first flush the socket receive buffer |
| 202 | * in order to avoid emission of an RST by the system. We ignore any |
| 203 | * error. |
| 204 | */ |
| 205 | if (unlikely((p->mode == PR_MODE_HEALTH) || |
| 206 | ((l->options & LI_O_CHK_MONNET) && |
| 207 | addr->ss_family == AF_INET && |
| 208 | (((struct sockaddr_in *)addr)->sin_addr.s_addr & p->mon_mask.s_addr) == p->mon_net.s_addr))) { |
| 209 | /* we have 4 possibilities here : |
| 210 | * - HTTP mode, from monitoring address => send "HTTP/1.0 200 OK" |
| 211 | * - HEALTH mode with HTTP check => send "HTTP/1.0 200 OK" |
| 212 | * - HEALTH mode without HTTP check => just send "OK" |
| 213 | * - TCP mode from monitoring address => just close |
| 214 | */ |
| 215 | if (l->proto->drain) |
| 216 | l->proto->drain(cfd); |
| 217 | if (p->mode == PR_MODE_HTTP || |
| 218 | (p->mode == PR_MODE_HEALTH && (p->options2 & PR_O2_CHK_ANY) == PR_O2_HTTP_CHK)) |
| 219 | send(cfd, "HTTP/1.0 200 OK\r\n\r\n", 19, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE); |
| 220 | else if (p->mode == PR_MODE_HEALTH) |
| 221 | send(cfd, "OK\n", 3, MSG_DONTWAIT|MSG_NOSIGNAL|MSG_MORE); |
| 222 | ret = 0; |
| 223 | goto out_free_sess; |
| 224 | } |
| 225 | |
Willy Tarreau | f9d1bc6 | 2015-04-05 17:56:47 +0200 | [diff] [blame] | 226 | /* Adjust some socket options */ |
| 227 | if (l->addr.ss_family == AF_INET || l->addr.ss_family == AF_INET6) { |
| 228 | setsockopt(cfd, IPPROTO_TCP, TCP_NODELAY, (char *) &one, sizeof(one)); |
| 229 | |
| 230 | if (p->options & PR_O_TCP_CLI_KA) |
| 231 | setsockopt(cfd, SOL_SOCKET, SO_KEEPALIVE, (char *) &one, sizeof(one)); |
| 232 | |
| 233 | if (p->options & PR_O_TCP_NOLING) |
| 234 | fdtab[cfd].linger_risk = 1; |
| 235 | |
| 236 | #if defined(TCP_MAXSEG) |
| 237 | if (l->maxseg < 0) { |
| 238 | /* we just want to reduce the current MSS by that value */ |
| 239 | int mss; |
| 240 | socklen_t mss_len = sizeof(mss); |
| 241 | if (getsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, &mss_len) == 0) { |
| 242 | mss += l->maxseg; /* remember, it's < 0 */ |
| 243 | setsockopt(cfd, IPPROTO_TCP, TCP_MAXSEG, &mss, sizeof(mss)); |
| 244 | } |
| 245 | } |
| 246 | #endif |
| 247 | } |
| 248 | |
| 249 | if (global.tune.client_sndbuf) |
| 250 | setsockopt(cfd, SOL_SOCKET, SO_SNDBUF, &global.tune.client_sndbuf, sizeof(global.tune.client_sndbuf)); |
| 251 | |
| 252 | if (global.tune.client_rcvbuf) |
| 253 | setsockopt(cfd, SOL_SOCKET, SO_RCVBUF, &global.tune.client_rcvbuf, sizeof(global.tune.client_rcvbuf)); |
| 254 | |
Willy Tarreau | 0b74eae | 2017-08-28 19:02:51 +0200 | [diff] [blame] | 255 | /* OK, now either we have a pending handshake to execute with and then |
| 256 | * we must return to the I/O layer, or we can proceed with the end of |
| 257 | * the stream initialization. In case of handshake, we also set the I/O |
| 258 | * timeout to the frontend's client timeout and register a task in the |
| 259 | * session for this purpose. The connection's owner is left to the |
| 260 | * session during this period. |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 261 | * |
| 262 | * At this point we set the relation between sess/task/conn this way : |
| 263 | * |
Willy Tarreau | 0b74eae | 2017-08-28 19:02:51 +0200 | [diff] [blame] | 264 | * +----------------- task |
| 265 | * | | |
| 266 | * orig -- sess <-- context | |
| 267 | * | ^ | | |
| 268 | * v | | | |
| 269 | * conn -- owner ---> task <-----+ |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 270 | */ |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 271 | if (cli_conn->flags & (CO_FL_HANDSHAKE | CO_FL_EARLY_SSL_HS)) { |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 272 | if (unlikely((sess->task = task_new(tid_bit)) == NULL)) |
Willy Tarreau | 87787ac | 2017-08-28 16:22:54 +0200 | [diff] [blame] | 273 | goto out_free_sess; |
| 274 | |
Willy Tarreau | 8e3c6ce | 2017-08-28 15:46:01 +0200 | [diff] [blame] | 275 | conn_set_xprt_done_cb(cli_conn, conn_complete_session); |
Willy Tarreau | 87787ac | 2017-08-28 16:22:54 +0200 | [diff] [blame] | 276 | |
Willy Tarreau | 0b74eae | 2017-08-28 19:02:51 +0200 | [diff] [blame] | 277 | sess->task->context = sess; |
| 278 | sess->task->nice = l->nice; |
| 279 | sess->task->process = session_expire_embryonic; |
| 280 | sess->task->expire = tick_add_ifset(now_ms, p->timeout.client); |
| 281 | task_queue(sess->task); |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 282 | return 1; |
| 283 | } |
| 284 | |
Willy Tarreau | 18b95a4 | 2015-04-05 01:04:01 +0200 | [diff] [blame] | 285 | /* OK let's complete stream initialization since there is no handshake */ |
Willy Tarreau | 0c4ed35 | 2017-09-15 10:06:28 +0200 | [diff] [blame] | 286 | if (conn_complete_session(cli_conn) >= 0) |
| 287 | return 1; |
Willy Tarreau | d1769b8 | 2015-04-06 00:25:48 +0200 | [diff] [blame] | 288 | |
Willy Tarreau | d07fc4b | 2020-01-07 18:03:09 +0100 | [diff] [blame] | 289 | /* if we reach here we have deliberately decided not to keep this |
| 290 | * session (e.g. tcp-request rule), so that's not an error we should |
| 291 | * try to protect against. |
| 292 | */ |
| 293 | ret = 0; |
| 294 | |
Willy Tarreau | 0c4ed35 | 2017-09-15 10:06:28 +0200 | [diff] [blame] | 295 | /* error unrolling */ |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 296 | out_free_sess: |
Christopher Faulet | fe23428 | 2018-03-23 15:11:55 +0100 | [diff] [blame] | 297 | /* prevent call to listener_release during session_free. It will be |
| 298 | * done below, for all errors. */ |
| 299 | sess->listener = NULL; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 300 | session_free(sess); |
| 301 | out_free_conn: |
Willy Tarreau | 5b78a9d | 2017-10-05 18:12:51 +0200 | [diff] [blame] | 302 | conn_stop_tracking(cli_conn); |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 303 | conn_xprt_close(cli_conn); |
| 304 | conn_free(cli_conn); |
| 305 | out_close: |
Christopher Faulet | fe23428 | 2018-03-23 15:11:55 +0100 | [diff] [blame] | 306 | listener_release(l); |
Christopher Faulet | 469a7b4 | 2019-07-17 16:53:19 +0200 | [diff] [blame] | 307 | if (ret < 0 && l->bind_conf->xprt == xprt_get(XPRT_RAW) && |
| 308 | p->mode == PR_MODE_HTTP && l->bind_conf->mux_proto == NULL) { |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 309 | /* critical error, no more memory, try to emit a 500 response */ |
Christopher Faulet | bc09329 | 2019-07-17 21:36:33 +0200 | [diff] [blame] | 310 | send(cfd, http_err_msgs[HTTP_ERR_500], strlen(http_err_msgs[HTTP_ERR_500]), |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 311 | MSG_DONTWAIT|MSG_NOSIGNAL); |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | if (fdtab[cfd].owner) |
| 315 | fd_delete(cfd); |
| 316 | else |
| 317 | close(cfd); |
| 318 | return ret; |
| 319 | } |
| 320 | |
| 321 | |
| 322 | /* prepare the trash with a log prefix for session <sess>. It only works with |
| 323 | * embryonic sessions based on a real connection. This function requires that |
| 324 | * at sess->origin points to the incoming connection. |
| 325 | */ |
| 326 | static void session_prepare_log_prefix(struct session *sess) |
| 327 | { |
| 328 | struct tm tm; |
| 329 | char pn[INET6_ADDRSTRLEN]; |
| 330 | int ret; |
| 331 | char *end; |
| 332 | struct connection *cli_conn = __objt_conn(sess->origin); |
| 333 | |
| 334 | ret = addr_to_str(&cli_conn->addr.from, pn, sizeof(pn)); |
| 335 | if (ret <= 0) |
| 336 | chunk_printf(&trash, "unknown ["); |
| 337 | else if (ret == AF_UNIX) |
| 338 | chunk_printf(&trash, "%s:%d [", pn, sess->listener->luid); |
| 339 | else |
| 340 | chunk_printf(&trash, "%s:%d [", pn, get_host_port(&cli_conn->addr.from)); |
| 341 | |
| 342 | get_localtime(sess->accept_date.tv_sec, &tm); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 343 | end = date2str_log(trash.area + trash.data, &tm, &(sess->accept_date), |
| 344 | trash.size - trash.data); |
| 345 | trash.data = end - trash.area; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 346 | if (sess->listener->name) |
| 347 | chunk_appendf(&trash, "] %s/%s", sess->fe->id, sess->listener->name); |
| 348 | else |
| 349 | chunk_appendf(&trash, "] %s/%d", sess->fe->id, sess->listener->luid); |
| 350 | } |
| 351 | |
| 352 | /* This function kills an existing embryonic session. It stops the connection's |
| 353 | * transport layer, releases assigned resources, resumes the listener if it was |
| 354 | * disabled and finally kills the file descriptor. This function requires that |
| 355 | * sess->origin points to the incoming connection. |
| 356 | */ |
Willy Tarreau | 086735a | 2018-11-05 15:09:47 +0100 | [diff] [blame] | 357 | static void session_kill_embryonic(struct session *sess, unsigned short state) |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 358 | { |
| 359 | int level = LOG_INFO; |
| 360 | struct connection *conn = __objt_conn(sess->origin); |
Willy Tarreau | 0b74eae | 2017-08-28 19:02:51 +0200 | [diff] [blame] | 361 | struct task *task = sess->task; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 362 | unsigned int log = sess->fe->to_log; |
| 363 | const char *err_msg; |
| 364 | |
| 365 | if (sess->fe->options2 & PR_O2_LOGERRORS) |
| 366 | level = LOG_ERR; |
| 367 | |
| 368 | if (log && (sess->fe->options & PR_O_NULLNOLOG)) { |
| 369 | /* with "option dontlognull", we don't log connections with no transfer */ |
| 370 | if (!conn->err_code || |
| 371 | conn->err_code == CO_ER_PRX_EMPTY || conn->err_code == CO_ER_PRX_ABORT || |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 372 | conn->err_code == CO_ER_CIP_EMPTY || conn->err_code == CO_ER_CIP_ABORT || |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 373 | conn->err_code == CO_ER_SSL_EMPTY || conn->err_code == CO_ER_SSL_ABORT) |
| 374 | log = 0; |
| 375 | } |
| 376 | |
| 377 | if (log) { |
Willy Tarreau | 086735a | 2018-11-05 15:09:47 +0100 | [diff] [blame] | 378 | if (!conn->err_code && (state & TASK_WOKEN_TIMER)) { |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 379 | if (conn->flags & CO_FL_ACCEPT_PROXY) |
| 380 | conn->err_code = CO_ER_PRX_TIMEOUT; |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 381 | else if (conn->flags & CO_FL_ACCEPT_CIP) |
| 382 | conn->err_code = CO_ER_CIP_TIMEOUT; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 383 | else if (conn->flags & CO_FL_SSL_WAIT_HS) |
| 384 | conn->err_code = CO_ER_SSL_TIMEOUT; |
| 385 | } |
| 386 | |
| 387 | session_prepare_log_prefix(sess); |
| 388 | err_msg = conn_err_code_str(conn); |
| 389 | if (err_msg) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 390 | send_log(sess->fe, level, "%s: %s\n", trash.area, |
| 391 | err_msg); |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 392 | else |
| 393 | send_log(sess->fe, level, "%s: unknown connection error (code=%d flags=%08x)\n", |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 394 | trash.area, conn->err_code, conn->flags); |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | /* kill the connection now */ |
Willy Tarreau | 5b78a9d | 2017-10-05 18:12:51 +0200 | [diff] [blame] | 398 | conn_stop_tracking(conn); |
| 399 | conn_full_close(conn); |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 400 | conn_free(conn); |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 401 | sess->origin = NULL; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 402 | |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 403 | task_destroy(task); |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 404 | session_free(sess); |
| 405 | } |
| 406 | |
| 407 | /* Manages the embryonic session timeout. It is only called when the timeout |
| 408 | * strikes and performs the required cleanup. |
| 409 | */ |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 410 | static struct task *session_expire_embryonic(struct task *t, void *context, unsigned short state) |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 411 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 412 | struct session *sess = context; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 413 | |
Olivier Houchard | fde2a09 | 2018-08-16 19:03:50 +0200 | [diff] [blame] | 414 | if (!(state & TASK_WOKEN_TIMER)) |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 415 | return t; |
| 416 | |
Willy Tarreau | 086735a | 2018-11-05 15:09:47 +0100 | [diff] [blame] | 417 | session_kill_embryonic(sess, state); |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 418 | return NULL; |
| 419 | } |
| 420 | |
| 421 | /* Finish initializing a session from a connection, or kills it if the |
Willy Tarreau | 0c4ed35 | 2017-09-15 10:06:28 +0200 | [diff] [blame] | 422 | * connection shows and error. Returns <0 if the connection was killed. It may |
| 423 | * be called either asynchronously as an xprt_done callback with an embryonic |
| 424 | * session, or synchronously to finalize the session. The distinction is made |
| 425 | * on sess->task which is only set in the embryonic session case. |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 426 | */ |
| 427 | static int conn_complete_session(struct connection *conn) |
| 428 | { |
Willy Tarreau | 0b74eae | 2017-08-28 19:02:51 +0200 | [diff] [blame] | 429 | struct session *sess = conn->owner; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 430 | |
Willy Tarreau | 590a051 | 2018-09-05 11:56:48 +0200 | [diff] [blame] | 431 | sess->t_handshake = tv_ms_elapsed(&sess->tv_accept, &now); |
| 432 | |
Willy Tarreau | 8e3c6ce | 2017-08-28 15:46:01 +0200 | [diff] [blame] | 433 | conn_clear_xprt_done_cb(conn); |
| 434 | |
Emeric Brun | 1738e86 | 2018-03-05 17:46:16 +0100 | [diff] [blame] | 435 | /* Verify if the connection just established. */ |
| 436 | if (unlikely(!(conn->flags & (CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN | CO_FL_CONNECTED)))) |
| 437 | conn->flags |= CO_FL_CONNECTED; |
| 438 | |
Willy Tarreau | d1769b8 | 2015-04-06 00:25:48 +0200 | [diff] [blame] | 439 | if (conn->flags & CO_FL_ERROR) |
| 440 | goto fail; |
| 441 | |
Willy Tarreau | 678be62 | 2015-04-08 18:18:15 +0200 | [diff] [blame] | 442 | /* if logs require transport layer information, note it on the connection */ |
| 443 | if (sess->fe->to_log & LW_XPRT) |
| 444 | conn->flags |= CO_FL_XPRT_TRACKED; |
| 445 | |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 446 | /* we may have some tcp-request-session rules */ |
| 447 | if ((sess->listener->options & LI_O_TCP_L5_RULES) && !tcp_exec_l5_rules(sess)) |
| 448 | goto fail; |
| 449 | |
Willy Tarreau | 042cd75 | 2015-04-08 18:10:49 +0200 | [diff] [blame] | 450 | session_count_new(sess); |
Christopher Faulet | 7ce0c89 | 2018-04-10 15:01:45 +0200 | [diff] [blame] | 451 | if (conn_install_mux_fe(conn, NULL) < 0) |
Willy Tarreau | d1769b8 | 2015-04-06 00:25:48 +0200 | [diff] [blame] | 452 | goto fail; |
| 453 | |
Willy Tarreau | 87787ac | 2017-08-28 16:22:54 +0200 | [diff] [blame] | 454 | /* the embryonic session's task is not needed anymore */ |
Willy Tarreau | f656279 | 2019-05-07 19:05:35 +0200 | [diff] [blame] | 455 | task_destroy(sess->task); |
| 456 | sess->task = NULL; |
Willy Tarreau | 3e13cba | 2017-10-08 11:26:30 +0200 | [diff] [blame] | 457 | conn_set_owner(conn, sess, conn_session_free); |
| 458 | |
Willy Tarreau | d1769b8 | 2015-04-06 00:25:48 +0200 | [diff] [blame] | 459 | return 0; |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 460 | |
Willy Tarreau | d1769b8 | 2015-04-06 00:25:48 +0200 | [diff] [blame] | 461 | fail: |
Willy Tarreau | 0c4ed35 | 2017-09-15 10:06:28 +0200 | [diff] [blame] | 462 | if (sess->task) |
Willy Tarreau | 086735a | 2018-11-05 15:09:47 +0100 | [diff] [blame] | 463 | session_kill_embryonic(sess, 0); |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 464 | return -1; |
| 465 | } |
| 466 | |
Willy Tarreau | b1ec8c4 | 2015-04-03 13:53:24 +0200 | [diff] [blame] | 467 | /* |
| 468 | * Local variables: |
| 469 | * c-indent-level: 8 |
| 470 | * c-basic-offset: 8 |
| 471 | * End: |
| 472 | */ |