]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - net/smc/smc.h
net/smc: move link group list to smc_core
[thirdparty/kernel/stable.git] / net / smc / smc.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
ac713874
UB
2/*
3 * Shared Memory Communications over RDMA (SMC-R) and RoCE
4 *
5 * Definitions for the SMC module (socket related)
6 *
7 * Copyright IBM Corp. 2016
8 *
9 * Author(s): Ursula Braun <ubraun@linux.vnet.ibm.com>
10 */
11#ifndef __SMC_H
12#define __SMC_H
13
14#include <linux/socket.h>
15#include <linux/types.h>
f38ba179 16#include <linux/compiler.h> /* __aligned */
ac713874
UB
17#include <net/sock.h>
18
0cfdd8f9
UB
19#include "smc_ib.h"
20
aaa4d33f
KG
21#define SMCPROTO_SMC 0 /* SMC protocol, IPv4 */
22#define SMCPROTO_SMC6 1 /* SMC protocol, IPv6 */
ac713874 23
a4cf0443
UB
24#define SMC_MAX_PORTS 2 /* Max # of ports */
25
f16a7dd5 26extern struct proto smc_proto;
aaa4d33f 27extern struct proto smc_proto6;
f16a7dd5 28
5f08318f
UB
29#ifdef ATOMIC64_INIT
30#define KERNEL_HAS_ATOMIC64
31#endif
32
ac713874
UB
33enum smc_state { /* possible states of an SMC socket */
34 SMC_ACTIVE = 1,
35 SMC_INIT = 2,
36 SMC_CLOSED = 7,
37 SMC_LISTEN = 10,
b38d7324
UB
38 /* normal close */
39 SMC_PEERCLOSEWAIT1 = 20,
40 SMC_PEERCLOSEWAIT2 = 21,
41 SMC_APPFINCLOSEWAIT = 24,
42 SMC_APPCLOSEWAIT1 = 22,
43 SMC_APPCLOSEWAIT2 = 23,
44 SMC_PEERFINCLOSEWAIT = 25,
45 /* abnormal close */
46 SMC_PEERABORTWAIT = 26,
47 SMC_PROCESSABORT = 27,
ac713874
UB
48};
49
0cfdd8f9
UB
50struct smc_link_group;
51
f38ba179
UB
52struct smc_wr_rx_hdr { /* common prefix part of LLC and CDC to demultiplex */
53 u8 type;
54} __aligned(1);
55
5f08318f
UB
56struct smc_cdc_conn_state_flags {
57#if defined(__BIG_ENDIAN_BITFIELD)
58 u8 peer_done_writing : 1; /* Sending done indicator */
59 u8 peer_conn_closed : 1; /* Peer connection closed indicator */
60 u8 peer_conn_abort : 1; /* Abnormal close indicator */
61 u8 reserved : 5;
62#elif defined(__LITTLE_ENDIAN_BITFIELD)
63 u8 reserved : 5;
64 u8 peer_conn_abort : 1;
65 u8 peer_conn_closed : 1;
66 u8 peer_done_writing : 1;
67#endif
68};
69
70struct smc_cdc_producer_flags {
71#if defined(__BIG_ENDIAN_BITFIELD)
72 u8 write_blocked : 1; /* Writing Blocked, no rx buf space */
73 u8 urg_data_pending : 1; /* Urgent Data Pending */
74 u8 urg_data_present : 1; /* Urgent Data Present */
75 u8 cons_curs_upd_req : 1; /* cursor update requested */
76 u8 failover_validation : 1;/* message replay due to failover */
77 u8 reserved : 3;
78#elif defined(__LITTLE_ENDIAN_BITFIELD)
79 u8 reserved : 3;
80 u8 failover_validation : 1;
81 u8 cons_curs_upd_req : 1;
82 u8 urg_data_present : 1;
83 u8 urg_data_pending : 1;
84 u8 write_blocked : 1;
85#endif
86};
87
88/* in host byte order */
89union smc_host_cursor { /* SMC cursor - an offset in an RMBE */
90 struct {
91 u16 reserved;
92 u16 wrap; /* window wrap sequence number */
93 u32 count; /* cursor (= offset) part */
94 };
95#ifdef KERNEL_HAS_ATOMIC64
96 atomic64_t acurs; /* for atomic processing */
97#else
98 u64 acurs; /* for atomic processing */
99#endif
100} __aligned(8);
101
102/* in host byte order, except for flag bitfields in network byte order */
103struct smc_host_cdc_msg { /* Connection Data Control message */
104 struct smc_wr_rx_hdr common; /* .type = 0xFE */
105 u8 len; /* length = 44 */
106 u16 seqno; /* connection seq # */
107 u32 token; /* alert_token */
108 union smc_host_cursor prod; /* producer cursor */
109 union smc_host_cursor cons; /* consumer cursor,
110 * piggy backed "ack"
111 */
112 struct smc_cdc_producer_flags prod_flags; /* conn. tx/rx status */
113 struct smc_cdc_conn_state_flags conn_state_flags; /* peer conn. status*/
114 u8 reserved[18];
115} __aligned(8);
116
0cfdd8f9
UB
117struct smc_connection {
118 struct rb_node alert_node;
119 struct smc_link_group *lgr; /* link group of connection */
120 u32 alert_token_local; /* unique conn. id */
121 u8 peer_conn_idx; /* from tcp handshake */
cd6851f3
UB
122 int peer_rmbe_size; /* size of peer rx buffer */
123 atomic_t peer_rmbe_space;/* remaining free bytes in peer
124 * rmbe
125 */
bd4ad577 126 int rtoken_idx; /* idx to peer RMB rkey/addr */
cd6851f3
UB
127
128 struct smc_buf_desc *sndbuf_desc; /* send buffer descriptor */
cd6851f3 129 struct smc_buf_desc *rmb_desc; /* RMBE descriptor */
cd6851f3 130 int rmbe_size_short;/* compressed notation */
952310cc
UB
131 int rmbe_update_limit;
132 /* lower limit for consumer
133 * cursor update
134 */
5f08318f
UB
135
136 struct smc_host_cdc_msg local_tx_ctrl; /* host byte order staging
137 * buffer for CDC msg send
138 * .prod cf. TCP snd_nxt
139 * .cons cf. TCP sends ack
140 */
141 union smc_host_cursor tx_curs_prep; /* tx - prepared data
142 * snd_max..wmem_alloc
143 */
144 union smc_host_cursor tx_curs_sent; /* tx - sent data
145 * snd_nxt ?
146 */
147 union smc_host_cursor tx_curs_fin; /* tx - confirmed by peer
148 * snd-wnd-begin ?
149 */
150 atomic_t sndbuf_space; /* remaining space in sndbuf */
151 u16 tx_cdc_seq; /* sequence # for CDC send */
152 spinlock_t send_lock; /* protect wr_sends */
18e537cd 153 struct delayed_work tx_work; /* retry of smc_cdc_msg_send */
5f08318f
UB
154
155 struct smc_host_cdc_msg local_rx_ctrl; /* filled during event_handl.
156 * .prod cf. TCP rcv_nxt
157 * .cons cf. TCP snd_una
158 */
159 union smc_host_cursor rx_curs_confirmed; /* confirmed to peer
160 * source of snd_una ?
161 */
162 atomic_t bytes_to_rcv; /* arrived data,
163 * not yet received
164 */
9014db20
SR
165 atomic_t splice_pending; /* number of spliced bytes
166 * pending processing
167 */
5f08318f
UB
168#ifndef KERNEL_HAS_ATOMIC64
169 spinlock_t acurs_lock; /* protect cursors */
170#endif
46c28dbd 171 struct work_struct close_work; /* peer sent some closing */
0cfdd8f9
UB
172};
173
ac713874
UB
174struct smc_sock { /* smc sock container */
175 struct sock sk;
176 struct socket *clcsock; /* internal tcp socket */
0cfdd8f9 177 struct smc_connection conn; /* smc connection */
a046d57d
UB
178 struct smc_sock *listen_smc; /* listen parent */
179 struct work_struct tcp_listen_work;/* handle tcp socket accepts */
180 struct work_struct smc_listen_work;/* prepare new accept socket */
181 struct list_head accept_q; /* sockets to be accepted */
182 spinlock_t accept_q_lock; /* protects accept_q */
ac713874 183 bool use_fallback; /* fallback to tcp */
abb190f1
UB
184 int sockopt_defer_accept;
185 /* sockopt TCP_DEFER_ACCEPT
186 * value
187 */
b38d7324
UB
188 u8 wait_close_tx_prepared : 1;
189 /* shutdown wr or close
190 * started, waiting for unsent
191 * data to be sent
192 */
ac713874
UB
193};
194
195static inline struct smc_sock *smc_sk(const struct sock *sk)
196{
197 return (struct smc_sock *)sk;
198}
199
a4cf0443
UB
200#define SMC_SYSTEMID_LEN 8
201
202extern u8 local_systemid[SMC_SYSTEMID_LEN]; /* unique system identifier */
203
0cfdd8f9
UB
204/* convert an u32 value into network byte order, store it into a 3 byte field */
205static inline void hton24(u8 *net, u32 host)
206{
207 __be32 t;
208
209 t = cpu_to_be32(host);
210 memcpy(net, ((u8 *)&t) + 1, 3);
211}
212
213/* convert a received 3 byte field into host byte order*/
214static inline u32 ntoh24(u8 *net)
215{
216 __be32 t = 0;
217
218 memcpy(((u8 *)&t) + 1, net, 3);
219 return be32_to_cpu(t);
220}
221
cd6851f3
UB
222#define SMC_BUF_MIN_SIZE 16384 /* minimum size of an RMB */
223
224#define SMC_RMBE_SIZES 16 /* number of distinct sizes for an RMBE */
225/* theoretically, the RFC states that largest size would be 512K,
226 * i.e. compressed 5 and thus 6 sizes (0..5), despite
227 * struct smc_clc_msg_accept_confirm.rmbe_size being a 4 bit value (0..15)
228 */
229
230/* convert the RMB size into the compressed notation - minimum 16K.
231 * In contrast to plain ilog2, this rounds towards the next power of 2,
232 * so the socket application gets at least its desired sndbuf / rcvbuf size.
233 */
234static inline u8 smc_compress_bufsize(int size)
235{
236 u8 compressed;
237
238 if (size <= SMC_BUF_MIN_SIZE)
239 return 0;
240
241 size = (size - 1) >> 14;
242 compressed = ilog2(size) + 1;
243 if (compressed >= SMC_RMBE_SIZES)
244 compressed = SMC_RMBE_SIZES - 1;
245 return compressed;
246}
247
248/* convert the RMB size from compressed notation into integer */
249static inline int smc_uncompress_bufsize(u8 compressed)
250{
251 u32 size;
252
253 size = 0x00000001 << (((int)compressed) + 14);
254 return (int)size;
255}
256
a046d57d
UB
257#ifdef CONFIG_XFRM
258static inline bool using_ipsec(struct smc_sock *smc)
259{
260 return (smc->clcsock->sk->sk_policy[0] ||
a8fbf8e7 261 smc->clcsock->sk->sk_policy[1]) ? true : false;
a046d57d
UB
262}
263#else
264static inline bool using_ipsec(struct smc_sock *smc)
265{
a8fbf8e7 266 return false;
a046d57d
UB
267}
268#endif
269
0cfdd8f9
UB
270struct smc_clc_msg_local;
271
0cfdd8f9 272void smc_conn_free(struct smc_connection *conn);
be6d467b 273int smc_conn_create(struct smc_sock *smc,
0cfdd8f9
UB
274 struct smc_ib_device *smcibdev, u8 ibport,
275 struct smc_clc_msg_local *lcl, int srv_first_contact);
b38d7324
UB
276struct sock *smc_accept_dequeue(struct sock *parent, struct socket *new_sock);
277void smc_close_non_accepted(struct sock *sk);
a046d57d 278
ac713874 279#endif /* __SMC_H */