Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Shared Memory Communications over RDMA (SMC-R) and RoCE |
| 4 | * |
| 5 | * Connection Data Control (CDC) |
| 6 | * handles flow control |
| 7 | * |
| 8 | * Copyright IBM Corp. 2016 |
| 9 | * |
| 10 | * Author(s): Ursula Braun <ubraun@linux.vnet.ibm.com> |
| 11 | */ |
| 12 | |
| 13 | #include <linux/spinlock.h> |
| 14 | |
| 15 | #include "smc.h" |
| 16 | #include "smc_wr.h" |
| 17 | #include "smc_cdc.h" |
Ursula Braun | e6727f3 | 2017-01-09 16:55:23 +0100 | [diff] [blame] | 18 | #include "smc_tx.h" |
Ursula Braun | 952310c | 2017-01-09 16:55:24 +0100 | [diff] [blame] | 19 | #include "smc_rx.h" |
Ursula Braun | b38d732 | 2017-01-09 16:55:25 +0100 | [diff] [blame] | 20 | #include "smc_close.h" |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 21 | |
| 22 | /********************************** send *************************************/ |
| 23 | |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 24 | /* handler for send/transmission completion of a CDC msg */ |
| 25 | static void smc_cdc_tx_handler(struct smc_wr_tx_pend_priv *pnd_snd, |
| 26 | struct smc_link *link, |
| 27 | enum ib_wc_status wc_status) |
| 28 | { |
| 29 | struct smc_cdc_tx_pend *cdcpend = (struct smc_cdc_tx_pend *)pnd_snd; |
Stefan Raspl | bac6de7 | 2018-07-23 13:53:09 +0200 | [diff] [blame] | 30 | struct smc_connection *conn = cdcpend->conn; |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 31 | struct smc_sock *smc; |
| 32 | int diff; |
| 33 | |
Stefan Raspl | bac6de7 | 2018-07-23 13:53:09 +0200 | [diff] [blame] | 34 | if (!conn) |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 35 | /* already dismissed */ |
| 36 | return; |
| 37 | |
Stefan Raspl | bac6de7 | 2018-07-23 13:53:09 +0200 | [diff] [blame] | 38 | smc = container_of(conn, struct smc_sock, conn); |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 39 | bh_lock_sock(&smc->sk); |
| 40 | if (!wc_status) { |
Hans Wippel | 69cb7dc | 2018-05-18 09:34:10 +0200 | [diff] [blame] | 41 | diff = smc_curs_diff(cdcpend->conn->sndbuf_desc->len, |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 42 | &cdcpend->conn->tx_curs_fin, |
| 43 | &cdcpend->cursor); |
| 44 | /* sndbuf_space is decreased in smc_sendmsg */ |
| 45 | smp_mb__before_atomic(); |
| 46 | atomic_add(diff, &cdcpend->conn->sndbuf_space); |
Hans Wippel | 69cb7dc | 2018-05-18 09:34:10 +0200 | [diff] [blame] | 47 | /* guarantee 0 <= sndbuf_space <= sndbuf_desc->len */ |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 48 | smp_mb__after_atomic(); |
Stefan Raspl | bac6de7 | 2018-07-23 13:53:09 +0200 | [diff] [blame] | 49 | smc_curs_copy(&conn->tx_curs_fin, &cdcpend->cursor, conn); |
Karsten Graul | f0ec4f1 | 2020-05-04 14:18:37 +0200 | [diff] [blame] | 50 | smc_curs_copy(&conn->local_tx_ctrl_fin, &cdcpend->p_cursor, |
| 51 | conn); |
| 52 | conn->tx_cdc_seq_fin = cdcpend->ctrl_seq; |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 53 | } |
Ursula Braun | e6727f3 | 2017-01-09 16:55:23 +0100 | [diff] [blame] | 54 | smc_tx_sndbuf_nonfull(smc); |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 55 | bh_unlock_sock(&smc->sk); |
| 56 | } |
| 57 | |
Ursula Braun | 51957bc | 2017-09-21 09:17:34 +0200 | [diff] [blame] | 58 | int smc_cdc_get_free_slot(struct smc_connection *conn, |
Karsten Graul | c6f02eb | 2020-05-04 14:18:38 +0200 | [diff] [blame] | 59 | struct smc_link *link, |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 60 | struct smc_wr_buf **wr_buf, |
Ursula Braun | ad6f317 | 2019-02-04 13:44:44 +0100 | [diff] [blame] | 61 | struct smc_rdma_wr **wr_rdma_buf, |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 62 | struct smc_cdc_tx_pend **pend) |
| 63 | { |
Ursula Braun | 1a0a04c | 2018-01-25 11:15:36 +0100 | [diff] [blame] | 64 | int rc; |
Ursula Braun | 51957bc | 2017-09-21 09:17:34 +0200 | [diff] [blame] | 65 | |
Ursula Braun | 1a0a04c | 2018-01-25 11:15:36 +0100 | [diff] [blame] | 66 | rc = smc_wr_tx_get_free_slot(link, smc_cdc_tx_handler, wr_buf, |
Ursula Braun | ad6f317 | 2019-02-04 13:44:44 +0100 | [diff] [blame] | 67 | wr_rdma_buf, |
Ursula Braun | 1a0a04c | 2018-01-25 11:15:36 +0100 | [diff] [blame] | 68 | (struct smc_wr_tx_pend_priv **)pend); |
Karsten Graul | 2bced6a | 2020-07-20 16:24:28 +0200 | [diff] [blame] | 69 | if (conn->killed) { |
Ursula Braun | 1a0a04c | 2018-01-25 11:15:36 +0100 | [diff] [blame] | 70 | /* abnormal termination */ |
Karsten Graul | 2bced6a | 2020-07-20 16:24:28 +0200 | [diff] [blame] | 71 | if (!rc) |
| 72 | smc_wr_tx_put_slot(link, |
| 73 | (struct smc_wr_tx_pend_priv *)pend); |
Ursula Braun | 1a0a04c | 2018-01-25 11:15:36 +0100 | [diff] [blame] | 74 | rc = -EPIPE; |
Karsten Graul | 2bced6a | 2020-07-20 16:24:28 +0200 | [diff] [blame] | 75 | } |
Ursula Braun | 1a0a04c | 2018-01-25 11:15:36 +0100 | [diff] [blame] | 76 | return rc; |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | static inline void smc_cdc_add_pending_send(struct smc_connection *conn, |
| 80 | struct smc_cdc_tx_pend *pend) |
| 81 | { |
| 82 | BUILD_BUG_ON_MSG( |
| 83 | sizeof(struct smc_cdc_msg) > SMC_WR_BUF_SIZE, |
| 84 | "must increase SMC_WR_BUF_SIZE to at least sizeof(struct smc_cdc_msg)"); |
| 85 | BUILD_BUG_ON_MSG( |
Ursula Braun | b9a22dd | 2018-11-20 16:46:42 +0100 | [diff] [blame] | 86 | offsetofend(struct smc_cdc_msg, reserved) > SMC_WR_TX_SIZE, |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 87 | "must adapt SMC_WR_TX_SIZE to sizeof(struct smc_cdc_msg); if not all smc_wr upper layer protocols use the same message size any more, must start to set link->wr_tx_sges[i].length on each individual smc_wr_tx_send()"); |
| 88 | BUILD_BUG_ON_MSG( |
| 89 | sizeof(struct smc_cdc_tx_pend) > SMC_WR_TX_PEND_PRIV_SIZE, |
| 90 | "must increase SMC_WR_TX_PEND_PRIV_SIZE to at least sizeof(struct smc_cdc_tx_pend)"); |
| 91 | pend->conn = conn; |
| 92 | pend->cursor = conn->tx_curs_sent; |
| 93 | pend->p_cursor = conn->local_tx_ctrl.prod; |
| 94 | pend->ctrl_seq = conn->tx_cdc_seq; |
| 95 | } |
| 96 | |
| 97 | int smc_cdc_msg_send(struct smc_connection *conn, |
| 98 | struct smc_wr_buf *wr_buf, |
| 99 | struct smc_cdc_tx_pend *pend) |
| 100 | { |
Karsten Graul | 387707f | 2020-04-29 17:10:40 +0200 | [diff] [blame] | 101 | struct smc_link *link = conn->lnk; |
Ursula Braun | b8649ef | 2019-02-04 13:44:45 +0100 | [diff] [blame] | 102 | union smc_host_cursor cfed; |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 103 | int rc; |
| 104 | |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 105 | smc_cdc_add_pending_send(conn, pend); |
| 106 | |
| 107 | conn->tx_cdc_seq++; |
| 108 | conn->local_tx_ctrl.seqno = conn->tx_cdc_seq; |
Ursula Braun | ccc8ca9 | 2019-02-07 14:52:54 +0100 | [diff] [blame] | 109 | smc_host_msg_to_cdc((struct smc_cdc_msg *)wr_buf, conn, &cfed); |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 110 | rc = smc_wr_tx_send(link, (struct smc_wr_tx_pend_priv *)pend); |
Karsten Graul | 4dff63c | 2019-02-12 16:29:50 +0100 | [diff] [blame] | 111 | if (!rc) { |
Ursula Braun | b8649ef | 2019-02-04 13:44:45 +0100 | [diff] [blame] | 112 | smc_curs_copy(&conn->rx_curs_confirmed, &cfed, conn); |
Karsten Graul | 4dff63c | 2019-02-12 16:29:50 +0100 | [diff] [blame] | 113 | conn->local_rx_ctrl.prod_flags.cons_curs_upd_req = 0; |
Karsten Graul | f0ec4f1 | 2020-05-04 14:18:37 +0200 | [diff] [blame] | 114 | } else { |
| 115 | conn->tx_cdc_seq--; |
| 116 | conn->local_tx_ctrl.seqno = conn->tx_cdc_seq; |
Karsten Graul | 4dff63c | 2019-02-12 16:29:50 +0100 | [diff] [blame] | 117 | } |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 118 | |
| 119 | return rc; |
| 120 | } |
| 121 | |
Karsten Graul | 29bd73d | 2020-05-04 14:18:39 +0200 | [diff] [blame] | 122 | /* send a validation msg indicating the move of a conn to an other QP link */ |
Karsten Graul | b8ded9d | 2020-05-30 16:42:37 +0200 | [diff] [blame] | 123 | int smcr_cdc_msg_send_validation(struct smc_connection *conn, |
| 124 | struct smc_cdc_tx_pend *pend, |
| 125 | struct smc_wr_buf *wr_buf) |
Karsten Graul | 29bd73d | 2020-05-04 14:18:39 +0200 | [diff] [blame] | 126 | { |
| 127 | struct smc_host_cdc_msg *local = &conn->local_tx_ctrl; |
| 128 | struct smc_link *link = conn->lnk; |
Karsten Graul | 29bd73d | 2020-05-04 14:18:39 +0200 | [diff] [blame] | 129 | struct smc_cdc_msg *peer; |
| 130 | int rc; |
| 131 | |
Karsten Graul | 29bd73d | 2020-05-04 14:18:39 +0200 | [diff] [blame] | 132 | peer = (struct smc_cdc_msg *)wr_buf; |
| 133 | peer->common.type = local->common.type; |
| 134 | peer->len = local->len; |
| 135 | peer->seqno = htons(conn->tx_cdc_seq_fin); /* seqno last compl. tx */ |
| 136 | peer->token = htonl(local->token); |
| 137 | peer->prod_flags.failover_validation = 1; |
| 138 | |
| 139 | rc = smc_wr_tx_send(link, (struct smc_wr_tx_pend_priv *)pend); |
| 140 | return rc; |
| 141 | } |
| 142 | |
Hans Wippel | be244f2 | 2018-06-28 19:05:10 +0200 | [diff] [blame] | 143 | static int smcr_cdc_get_slot_and_msg_send(struct smc_connection *conn) |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 144 | { |
| 145 | struct smc_cdc_tx_pend *pend; |
| 146 | struct smc_wr_buf *wr_buf; |
Karsten Graul | c6f02eb | 2020-05-04 14:18:38 +0200 | [diff] [blame] | 147 | struct smc_link *link; |
| 148 | bool again = false; |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 149 | int rc; |
| 150 | |
Karsten Graul | c6f02eb | 2020-05-04 14:18:38 +0200 | [diff] [blame] | 151 | again: |
| 152 | link = conn->lnk; |
| 153 | rc = smc_cdc_get_free_slot(conn, link, &wr_buf, NULL, &pend); |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 154 | if (rc) |
| 155 | return rc; |
| 156 | |
Karsten Graul | 2dee25a | 2019-01-30 18:51:06 +0100 | [diff] [blame] | 157 | spin_lock_bh(&conn->send_lock); |
Karsten Graul | c6f02eb | 2020-05-04 14:18:38 +0200 | [diff] [blame] | 158 | if (link != conn->lnk) { |
| 159 | /* link of connection changed, try again one time*/ |
| 160 | spin_unlock_bh(&conn->send_lock); |
| 161 | smc_wr_tx_put_slot(link, |
| 162 | (struct smc_wr_tx_pend_priv *)pend); |
| 163 | if (again) |
| 164 | return -ENOLINK; |
| 165 | again = true; |
| 166 | goto again; |
| 167 | } |
Karsten Graul | 2dee25a | 2019-01-30 18:51:06 +0100 | [diff] [blame] | 168 | rc = smc_cdc_msg_send(conn, wr_buf, pend); |
| 169 | spin_unlock_bh(&conn->send_lock); |
| 170 | return rc; |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 171 | } |
| 172 | |
Hans Wippel | be244f2 | 2018-06-28 19:05:10 +0200 | [diff] [blame] | 173 | int smc_cdc_get_slot_and_msg_send(struct smc_connection *conn) |
| 174 | { |
| 175 | int rc; |
| 176 | |
Ursula Braun | 50c6b20 | 2019-11-14 13:02:40 +0100 | [diff] [blame] | 177 | if (!conn->lgr || (conn->lgr->is_smcd && conn->lgr->peer_shutdown)) |
| 178 | return -EPIPE; |
| 179 | |
Hans Wippel | be244f2 | 2018-06-28 19:05:10 +0200 | [diff] [blame] | 180 | if (conn->lgr->is_smcd) { |
| 181 | spin_lock_bh(&conn->send_lock); |
| 182 | rc = smcd_cdc_msg_send(conn); |
| 183 | spin_unlock_bh(&conn->send_lock); |
| 184 | } else { |
| 185 | rc = smcr_cdc_get_slot_and_msg_send(conn); |
| 186 | } |
| 187 | |
| 188 | return rc; |
| 189 | } |
| 190 | |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 191 | static bool smc_cdc_tx_filter(struct smc_wr_tx_pend_priv *tx_pend, |
| 192 | unsigned long data) |
| 193 | { |
| 194 | struct smc_connection *conn = (struct smc_connection *)data; |
| 195 | struct smc_cdc_tx_pend *cdc_pend = |
| 196 | (struct smc_cdc_tx_pend *)tx_pend; |
| 197 | |
| 198 | return cdc_pend->conn == conn; |
| 199 | } |
| 200 | |
| 201 | static void smc_cdc_tx_dismisser(struct smc_wr_tx_pend_priv *tx_pend) |
| 202 | { |
| 203 | struct smc_cdc_tx_pend *cdc_pend = |
| 204 | (struct smc_cdc_tx_pend *)tx_pend; |
| 205 | |
| 206 | cdc_pend->conn = NULL; |
| 207 | } |
| 208 | |
| 209 | void smc_cdc_tx_dismiss_slots(struct smc_connection *conn) |
| 210 | { |
Karsten Graul | 387707f | 2020-04-29 17:10:40 +0200 | [diff] [blame] | 211 | struct smc_link *link = conn->lnk; |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 212 | |
| 213 | smc_wr_tx_dismiss_slots(link, SMC_CDC_MSG_TYPE, |
| 214 | smc_cdc_tx_filter, smc_cdc_tx_dismisser, |
| 215 | (unsigned long)conn); |
| 216 | } |
| 217 | |
Hans Wippel | be244f2 | 2018-06-28 19:05:10 +0200 | [diff] [blame] | 218 | /* Send a SMC-D CDC header. |
| 219 | * This increments the free space available in our send buffer. |
| 220 | * Also update the confirmed receive buffer with what was sent to the peer. |
| 221 | */ |
| 222 | int smcd_cdc_msg_send(struct smc_connection *conn) |
| 223 | { |
| 224 | struct smc_sock *smc = container_of(conn, struct smc_sock, conn); |
Ursula Braun | b9a22dd | 2018-11-20 16:46:42 +0100 | [diff] [blame] | 225 | union smc_host_cursor curs; |
Hans Wippel | be244f2 | 2018-06-28 19:05:10 +0200 | [diff] [blame] | 226 | struct smcd_cdc_msg cdc; |
| 227 | int rc, diff; |
| 228 | |
| 229 | memset(&cdc, 0, sizeof(cdc)); |
| 230 | cdc.common.type = SMC_CDC_MSG_TYPE; |
Ursula Braun | b9a22dd | 2018-11-20 16:46:42 +0100 | [diff] [blame] | 231 | curs.acurs.counter = atomic64_read(&conn->local_tx_ctrl.prod.acurs); |
| 232 | cdc.prod.wrap = curs.wrap; |
| 233 | cdc.prod.count = curs.count; |
| 234 | curs.acurs.counter = atomic64_read(&conn->local_tx_ctrl.cons.acurs); |
| 235 | cdc.cons.wrap = curs.wrap; |
| 236 | cdc.cons.count = curs.count; |
| 237 | cdc.cons.prod_flags = conn->local_tx_ctrl.prod_flags; |
| 238 | cdc.cons.conn_state_flags = conn->local_tx_ctrl.conn_state_flags; |
Hans Wippel | be244f2 | 2018-06-28 19:05:10 +0200 | [diff] [blame] | 239 | rc = smcd_tx_ism_write(conn, &cdc, sizeof(cdc), 0, 1); |
| 240 | if (rc) |
| 241 | return rc; |
Ursula Braun | b9a22dd | 2018-11-20 16:46:42 +0100 | [diff] [blame] | 242 | smc_curs_copy(&conn->rx_curs_confirmed, &curs, conn); |
Karsten Graul | 4dff63c | 2019-02-12 16:29:50 +0100 | [diff] [blame] | 243 | conn->local_rx_ctrl.prod_flags.cons_curs_upd_req = 0; |
Hans Wippel | be244f2 | 2018-06-28 19:05:10 +0200 | [diff] [blame] | 244 | /* Calculate transmitted data and increment free send buffer space */ |
| 245 | diff = smc_curs_diff(conn->sndbuf_desc->len, &conn->tx_curs_fin, |
| 246 | &conn->tx_curs_sent); |
| 247 | /* increased by confirmed number of bytes */ |
| 248 | smp_mb__before_atomic(); |
| 249 | atomic_add(diff, &conn->sndbuf_space); |
| 250 | /* guarantee 0 <= sndbuf_space <= sndbuf_desc->len */ |
| 251 | smp_mb__after_atomic(); |
Stefan Raspl | bac6de7 | 2018-07-23 13:53:09 +0200 | [diff] [blame] | 252 | smc_curs_copy(&conn->tx_curs_fin, &conn->tx_curs_sent, conn); |
Hans Wippel | be244f2 | 2018-06-28 19:05:10 +0200 | [diff] [blame] | 253 | |
| 254 | smc_tx_sndbuf_nonfull(smc); |
| 255 | return rc; |
| 256 | } |
| 257 | |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 258 | /********************************* receive ***********************************/ |
| 259 | |
| 260 | static inline bool smc_cdc_before(u16 seq1, u16 seq2) |
| 261 | { |
| 262 | return (s16)(seq1 - seq2) < 0; |
| 263 | } |
| 264 | |
Stefan Raspl | de8474e | 2018-05-23 16:38:11 +0200 | [diff] [blame] | 265 | static void smc_cdc_handle_urg_data_arrival(struct smc_sock *smc, |
| 266 | int *diff_prod) |
| 267 | { |
| 268 | struct smc_connection *conn = &smc->conn; |
| 269 | char *base; |
| 270 | |
| 271 | /* new data included urgent business */ |
Stefan Raspl | bac6de7 | 2018-07-23 13:53:09 +0200 | [diff] [blame] | 272 | smc_curs_copy(&conn->urg_curs, &conn->local_rx_ctrl.prod, conn); |
Stefan Raspl | de8474e | 2018-05-23 16:38:11 +0200 | [diff] [blame] | 273 | conn->urg_state = SMC_URG_VALID; |
| 274 | if (!sock_flag(&smc->sk, SOCK_URGINLINE)) |
| 275 | /* we'll skip the urgent byte, so don't account for it */ |
| 276 | (*diff_prod)--; |
Hans Wippel | be244f2 | 2018-06-28 19:05:10 +0200 | [diff] [blame] | 277 | base = (char *)conn->rmb_desc->cpu_addr + conn->rx_off; |
Stefan Raspl | de8474e | 2018-05-23 16:38:11 +0200 | [diff] [blame] | 278 | if (conn->urg_curs.count) |
| 279 | conn->urg_rx_byte = *(base + conn->urg_curs.count - 1); |
| 280 | else |
| 281 | conn->urg_rx_byte = *(base + conn->rmb_desc->len - 1); |
| 282 | sk_send_sigurg(&smc->sk); |
| 283 | } |
| 284 | |
Karsten Graul | b286a06 | 2020-05-04 14:18:40 +0200 | [diff] [blame] | 285 | static void smc_cdc_msg_validate(struct smc_sock *smc, struct smc_cdc_msg *cdc, |
| 286 | struct smc_link *link) |
| 287 | { |
| 288 | struct smc_connection *conn = &smc->conn; |
| 289 | u16 recv_seq = ntohs(cdc->seqno); |
| 290 | s16 diff; |
| 291 | |
| 292 | /* check that seqnum was seen before */ |
| 293 | diff = conn->local_rx_ctrl.seqno - recv_seq; |
| 294 | if (diff < 0) { /* diff larger than 0x7fff */ |
| 295 | /* drop connection */ |
| 296 | conn->out_of_sync = 1; /* prevent any further receives */ |
| 297 | spin_lock_bh(&conn->send_lock); |
| 298 | conn->local_tx_ctrl.conn_state_flags.peer_conn_abort = 1; |
| 299 | conn->lnk = link; |
| 300 | spin_unlock_bh(&conn->send_lock); |
| 301 | sock_hold(&smc->sk); /* sock_put in abort_work */ |
Karsten Graul | 22ef473 | 2020-09-10 18:48:29 +0200 | [diff] [blame] | 302 | if (!queue_work(smc_close_wq, &conn->abort_work)) |
Karsten Graul | b286a06 | 2020-05-04 14:18:40 +0200 | [diff] [blame] | 303 | sock_put(&smc->sk); |
| 304 | } |
| 305 | } |
| 306 | |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 307 | static void smc_cdc_msg_recv_action(struct smc_sock *smc, |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 308 | struct smc_cdc_msg *cdc) |
| 309 | { |
| 310 | union smc_host_cursor cons_old, prod_old; |
| 311 | struct smc_connection *conn = &smc->conn; |
| 312 | int diff_cons, diff_prod; |
| 313 | |
Stefan Raspl | bac6de7 | 2018-07-23 13:53:09 +0200 | [diff] [blame] | 314 | smc_curs_copy(&prod_old, &conn->local_rx_ctrl.prod, conn); |
| 315 | smc_curs_copy(&cons_old, &conn->local_rx_ctrl.cons, conn); |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 316 | smc_cdc_msg_to_host(&conn->local_rx_ctrl, cdc, conn); |
| 317 | |
| 318 | diff_cons = smc_curs_diff(conn->peer_rmbe_size, &cons_old, |
| 319 | &conn->local_rx_ctrl.cons); |
| 320 | if (diff_cons) { |
| 321 | /* peer_rmbe_space is decreased during data transfer with RDMA |
| 322 | * write |
| 323 | */ |
| 324 | smp_mb__before_atomic(); |
| 325 | atomic_add(diff_cons, &conn->peer_rmbe_space); |
| 326 | /* guarantee 0 <= peer_rmbe_space <= peer_rmbe_size */ |
| 327 | smp_mb__after_atomic(); |
| 328 | } |
| 329 | |
Hans Wippel | 69cb7dc | 2018-05-18 09:34:10 +0200 | [diff] [blame] | 330 | diff_prod = smc_curs_diff(conn->rmb_desc->len, &prod_old, |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 331 | &conn->local_rx_ctrl.prod); |
| 332 | if (diff_prod) { |
Stefan Raspl | de8474e | 2018-05-23 16:38:11 +0200 | [diff] [blame] | 333 | if (conn->local_rx_ctrl.prod_flags.urg_data_present) |
| 334 | smc_cdc_handle_urg_data_arrival(smc, &diff_prod); |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 335 | /* bytes_to_rcv is decreased in smc_recvmsg */ |
| 336 | smp_mb__before_atomic(); |
| 337 | atomic_add(diff_prod, &conn->bytes_to_rcv); |
Hans Wippel | 69cb7dc | 2018-05-18 09:34:10 +0200 | [diff] [blame] | 338 | /* guarantee 0 <= bytes_to_rcv <= rmb_desc->len */ |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 339 | smp_mb__after_atomic(); |
Ursula Braun | 952310c | 2017-01-09 16:55:24 +0100 | [diff] [blame] | 340 | smc->sk.sk_data_ready(&smc->sk); |
Stefan Raspl | de8474e | 2018-05-23 16:38:11 +0200 | [diff] [blame] | 341 | } else { |
Karsten Graul | cf0cfe5 | 2019-02-12 16:29:53 +0100 | [diff] [blame] | 342 | if (conn->local_rx_ctrl.prod_flags.write_blocked) |
| 343 | smc->sk.sk_data_ready(&smc->sk); |
| 344 | if (conn->local_rx_ctrl.prod_flags.urg_data_pending) |
| 345 | conn->urg_state = SMC_URG_NOTYET; |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 346 | } |
| 347 | |
Ursula Braun | 51f1de7 | 2018-01-26 09:28:48 +0100 | [diff] [blame] | 348 | /* trigger sndbuf consumer: RDMA write into peer RMBE and CDC */ |
Karsten Graul | cf0cfe5 | 2019-02-12 16:29:53 +0100 | [diff] [blame] | 349 | if ((diff_cons && smc_tx_prepared_sends(conn)) || |
| 350 | conn->local_rx_ctrl.prod_flags.cons_curs_upd_req || |
| 351 | conn->local_rx_ctrl.prod_flags.urg_data_pending) |
Ursula Braun | 51f1de7 | 2018-01-26 09:28:48 +0100 | [diff] [blame] | 352 | smc_tx_sndbuf_nonempty(conn); |
Karsten Graul | cf0cfe5 | 2019-02-12 16:29:53 +0100 | [diff] [blame] | 353 | |
Stefan Raspl | de8474e | 2018-05-23 16:38:11 +0200 | [diff] [blame] | 354 | if (diff_cons && conn->urg_tx_pend && |
| 355 | atomic_read(&conn->peer_rmbe_space) == conn->peer_rmbe_size) { |
| 356 | /* urg data confirmed by peer, indicate we're ready for more */ |
| 357 | conn->urg_tx_pend = false; |
| 358 | smc->sk.sk_write_space(&smc->sk); |
| 359 | } |
Ursula Braun | 51f1de7 | 2018-01-26 09:28:48 +0100 | [diff] [blame] | 360 | |
Ursula Braun | b38d732 | 2017-01-09 16:55:25 +0100 | [diff] [blame] | 361 | if (conn->local_rx_ctrl.conn_state_flags.peer_conn_abort) { |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 362 | smc->sk.sk_err = ECONNRESET; |
Ursula Braun | b38d732 | 2017-01-09 16:55:25 +0100 | [diff] [blame] | 363 | conn->local_tx_ctrl.conn_state_flags.peer_conn_abort = 1; |
| 364 | } |
Ursula Braun | 46c28db | 2017-04-10 14:58:01 +0200 | [diff] [blame] | 365 | if (smc_cdc_rxed_any_close_or_senddone(conn)) { |
| 366 | smc->sk.sk_shutdown |= RCV_SHUTDOWN; |
| 367 | if (smc->clcsock && smc->clcsock->sk) |
| 368 | smc->clcsock->sk->sk_shutdown |= RCV_SHUTDOWN; |
| 369 | sock_set_flag(&smc->sk, SOCK_DONE); |
Ursula Braun | 51f1de7 | 2018-01-26 09:28:48 +0100 | [diff] [blame] | 370 | sock_hold(&smc->sk); /* sock_put in close_work */ |
Karsten Graul | 22ef473 | 2020-09-10 18:48:29 +0200 | [diff] [blame] | 371 | if (!queue_work(smc_close_wq, &conn->close_work)) |
Ursula Braun | 51f1de7 | 2018-01-26 09:28:48 +0100 | [diff] [blame] | 372 | sock_put(&smc->sk); |
Ursula Braun | b38d732 | 2017-01-09 16:55:25 +0100 | [diff] [blame] | 373 | } |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | /* called under tasklet context */ |
Hans Wippel | d7b0e37 | 2018-05-18 09:34:15 +0200 | [diff] [blame] | 377 | static void smc_cdc_msg_recv(struct smc_sock *smc, struct smc_cdc_msg *cdc) |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 378 | { |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 379 | sock_hold(&smc->sk); |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 380 | bh_lock_sock(&smc->sk); |
Hans Wippel | d7b0e37 | 2018-05-18 09:34:15 +0200 | [diff] [blame] | 381 | smc_cdc_msg_recv_action(smc, cdc); |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 382 | bh_unlock_sock(&smc->sk); |
| 383 | sock_put(&smc->sk); /* no free sk in softirq-context */ |
| 384 | } |
| 385 | |
Hans Wippel | be244f2 | 2018-06-28 19:05:10 +0200 | [diff] [blame] | 386 | /* Schedule a tasklet for this connection. Triggered from the ISM device IRQ |
| 387 | * handler to indicate update in the DMBE. |
| 388 | * |
| 389 | * Context: |
| 390 | * - tasklet context |
| 391 | */ |
| 392 | static void smcd_cdc_rx_tsklet(unsigned long data) |
| 393 | { |
| 394 | struct smc_connection *conn = (struct smc_connection *)data; |
Ursula Braun | b9a22dd | 2018-11-20 16:46:42 +0100 | [diff] [blame] | 395 | struct smcd_cdc_msg *data_cdc; |
Hans Wippel | be244f2 | 2018-06-28 19:05:10 +0200 | [diff] [blame] | 396 | struct smcd_cdc_msg cdc; |
| 397 | struct smc_sock *smc; |
| 398 | |
Ursula Braun | b290098 | 2019-10-21 16:13:08 +0200 | [diff] [blame] | 399 | if (!conn || conn->killed) |
Hans Wippel | be244f2 | 2018-06-28 19:05:10 +0200 | [diff] [blame] | 400 | return; |
| 401 | |
Ursula Braun | b9a22dd | 2018-11-20 16:46:42 +0100 | [diff] [blame] | 402 | data_cdc = (struct smcd_cdc_msg *)conn->rmb_desc->cpu_addr; |
| 403 | smcd_curs_copy(&cdc.prod, &data_cdc->prod, conn); |
| 404 | smcd_curs_copy(&cdc.cons, &data_cdc->cons, conn); |
Hans Wippel | be244f2 | 2018-06-28 19:05:10 +0200 | [diff] [blame] | 405 | smc = container_of(conn, struct smc_sock, conn); |
| 406 | smc_cdc_msg_recv(smc, (struct smc_cdc_msg *)&cdc); |
| 407 | } |
| 408 | |
| 409 | /* Initialize receive tasklet. Called from ISM device IRQ handler to start |
| 410 | * receiver side. |
| 411 | */ |
| 412 | void smcd_cdc_rx_init(struct smc_connection *conn) |
| 413 | { |
| 414 | tasklet_init(&conn->rx_tsklet, smcd_cdc_rx_tsklet, (unsigned long)conn); |
| 415 | } |
| 416 | |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 417 | /***************************** init, exit, misc ******************************/ |
| 418 | |
| 419 | static void smc_cdc_rx_handler(struct ib_wc *wc, void *buf) |
| 420 | { |
| 421 | struct smc_link *link = (struct smc_link *)wc->qp->qp_context; |
| 422 | struct smc_cdc_msg *cdc = buf; |
Hans Wippel | d7b0e37 | 2018-05-18 09:34:15 +0200 | [diff] [blame] | 423 | struct smc_connection *conn; |
| 424 | struct smc_link_group *lgr; |
| 425 | struct smc_sock *smc; |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 426 | |
| 427 | if (wc->byte_len < offsetof(struct smc_cdc_msg, reserved)) |
| 428 | return; /* short message */ |
Karsten Graul | cbba07a | 2018-02-28 12:44:07 +0100 | [diff] [blame] | 429 | if (cdc->len != SMC_WR_TX_SIZE) |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 430 | return; /* invalid message */ |
Hans Wippel | d7b0e37 | 2018-05-18 09:34:15 +0200 | [diff] [blame] | 431 | |
| 432 | /* lookup connection */ |
Stefan Raspl | 00e5fb2 | 2018-07-23 13:53:10 +0200 | [diff] [blame] | 433 | lgr = smc_get_lgr(link); |
Hans Wippel | d7b0e37 | 2018-05-18 09:34:15 +0200 | [diff] [blame] | 434 | read_lock_bh(&lgr->conns_lock); |
| 435 | conn = smc_lgr_find_conn(ntohl(cdc->token), lgr); |
| 436 | read_unlock_bh(&lgr->conns_lock); |
Karsten Graul | b286a06 | 2020-05-04 14:18:40 +0200 | [diff] [blame] | 437 | if (!conn || conn->out_of_sync) |
Hans Wippel | d7b0e37 | 2018-05-18 09:34:15 +0200 | [diff] [blame] | 438 | return; |
| 439 | smc = container_of(conn, struct smc_sock, conn); |
| 440 | |
Karsten Graul | b286a06 | 2020-05-04 14:18:40 +0200 | [diff] [blame] | 441 | if (cdc->prod_flags.failover_validation) { |
| 442 | smc_cdc_msg_validate(smc, cdc, link); |
| 443 | return; |
Hans Wippel | d7b0e37 | 2018-05-18 09:34:15 +0200 | [diff] [blame] | 444 | } |
Karsten Graul | b286a06 | 2020-05-04 14:18:40 +0200 | [diff] [blame] | 445 | if (smc_cdc_before(ntohs(cdc->seqno), |
| 446 | conn->local_rx_ctrl.seqno)) |
| 447 | /* received seqno is old */ |
| 448 | return; |
| 449 | |
Hans Wippel | d7b0e37 | 2018-05-18 09:34:15 +0200 | [diff] [blame] | 450 | smc_cdc_msg_recv(smc, cdc); |
Ursula Braun | 5f08318 | 2017-01-09 16:55:22 +0100 | [diff] [blame] | 451 | } |
| 452 | |
| 453 | static struct smc_wr_rx_handler smc_cdc_rx_handlers[] = { |
| 454 | { |
| 455 | .handler = smc_cdc_rx_handler, |
| 456 | .type = SMC_CDC_MSG_TYPE |
| 457 | }, |
| 458 | { |
| 459 | .handler = NULL, |
| 460 | } |
| 461 | }; |
| 462 | |
| 463 | int __init smc_cdc_init(void) |
| 464 | { |
| 465 | struct smc_wr_rx_handler *handler; |
| 466 | int rc = 0; |
| 467 | |
| 468 | for (handler = smc_cdc_rx_handlers; handler->handler; handler++) { |
| 469 | INIT_HLIST_NODE(&handler->list); |
| 470 | rc = smc_wr_rx_register_handler(handler); |
| 471 | if (rc) |
| 472 | break; |
| 473 | } |
| 474 | return rc; |
| 475 | } |