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