]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
a046d57d UB |
2 | /* |
3 | * Shared Memory Communications over RDMA (SMC-R) and RoCE | |
4 | * | |
5 | * CLC (connection layer control) handshake over initial TCP socket to | |
6 | * prepare for RDMA traffic | |
7 | * | |
8 | * Copyright IBM Corp. 2016 | |
9 | * | |
10 | * Author(s): Ursula Braun <[email protected]> | |
11 | */ | |
12 | ||
13 | #ifndef _SMC_CLC_H | |
14 | #define _SMC_CLC_H | |
15 | ||
16 | #include <rdma/ib_verbs.h> | |
17 | ||
18 | #include "smc.h" | |
19 | ||
20 | #define SMC_CLC_PROPOSAL 0x01 | |
21 | #define SMC_CLC_ACCEPT 0x02 | |
22 | #define SMC_CLC_CONFIRM 0x03 | |
23 | #define SMC_CLC_DECLINE 0x04 | |
24 | ||
a046d57d | 25 | #define SMC_CLC_V1 0x1 /* SMC version */ |
c758dfdd HW |
26 | #define SMC_TYPE_R 0 /* SMC-R only */ |
27 | #define SMC_TYPE_D 1 /* SMC-D only */ | |
28 | #define SMC_TYPE_B 3 /* SMC-R and SMC-D */ | |
a046d57d | 29 | #define CLC_WAIT_TIME (6 * HZ) /* max. wait time on clcsock */ |
2b59f58e | 30 | #define CLC_WAIT_TIME_SHORT HZ /* short wait time on clcsock */ |
a046d57d | 31 | #define SMC_CLC_DECL_MEM 0x01010000 /* insufficient memory resources */ |
603cc149 KG |
32 | #define SMC_CLC_DECL_TIMEOUT_CL 0x02010000 /* timeout w4 QP confirm link */ |
33 | #define SMC_CLC_DECL_TIMEOUT_AL 0x02020000 /* timeout w4 QP add link */ | |
a046d57d | 34 | #define SMC_CLC_DECL_CNFERR 0x03000000 /* configuration error */ |
603cc149 KG |
35 | #define SMC_CLC_DECL_PEERNOSMC 0x03010000 /* peer did not indicate SMC */ |
36 | #define SMC_CLC_DECL_IPSEC 0x03020000 /* IPsec usage */ | |
9aa68d29 KG |
37 | #define SMC_CLC_DECL_NOSMCDEV 0x03030000 /* no SMC device found (R or D) */ |
38 | #define SMC_CLC_DECL_NOSMCDDEV 0x03030001 /* no SMC-D device found */ | |
39 | #define SMC_CLC_DECL_NOSMCRDEV 0x03030002 /* no SMC-R device found */ | |
40 | #define SMC_CLC_DECL_SMCDNOTALK 0x03030003 /* SMC-D dev can't talk to peer */ | |
603cc149 KG |
41 | #define SMC_CLC_DECL_MODEUNSUPP 0x03040000 /* smc modes do not match (R or D)*/ |
42 | #define SMC_CLC_DECL_RMBE_EC 0x03050000 /* peer has eyecatcher in RMBE */ | |
43 | #define SMC_CLC_DECL_OPTUNSUPP 0x03060000 /* fastopen sockopt not supported */ | |
59886697 | 44 | #define SMC_CLC_DECL_DIFFPREFIX 0x03070000 /* IP prefix / subnet mismatch */ |
fba7e8ef | 45 | #define SMC_CLC_DECL_GETVLANERR 0x03080000 /* err to get vlan id of ip device*/ |
7a62725a | 46 | #define SMC_CLC_DECL_ISMVLANERR 0x03090000 /* err to reg vlan id on ism dev */ |
b9247544 | 47 | #define SMC_CLC_DECL_NOACTLINK 0x030a0000 /* no active smc-r link in lgr */ |
0fb0b02b | 48 | #define SMC_CLC_DECL_NOSRVLINK 0x030b0000 /* SMC-R link from srv not found */ |
a046d57d | 49 | #define SMC_CLC_DECL_SYNCERR 0x04000000 /* synchronization error */ |
603cc149 | 50 | #define SMC_CLC_DECL_PEERDECL 0x05000000 /* peer declined during handshake */ |
4ada81fd KG |
51 | #define SMC_CLC_DECL_INTERR 0x09990000 /* internal error */ |
52 | #define SMC_CLC_DECL_ERR_RTOK 0x09990001 /* rtoken handling failed */ | |
53 | #define SMC_CLC_DECL_ERR_RDYLNK 0x09990002 /* ib ready link failed */ | |
54 | #define SMC_CLC_DECL_ERR_REGRMB 0x09990003 /* reg rmb failed */ | |
a046d57d UB |
55 | |
56 | struct smc_clc_msg_hdr { /* header1 of clc messages */ | |
57 | u8 eyecatcher[4]; /* eye catcher */ | |
58 | u8 type; /* proposal / accept / confirm / decline */ | |
59 | __be16 length; | |
60 | #if defined(__BIG_ENDIAN_BITFIELD) | |
61 | u8 version : 4, | |
62 | flag : 1, | |
c758dfdd HW |
63 | rsvd : 1, |
64 | path : 2; | |
a046d57d | 65 | #elif defined(__LITTLE_ENDIAN_BITFIELD) |
c758dfdd HW |
66 | u8 path : 2, |
67 | rsvd : 1, | |
a046d57d UB |
68 | flag : 1, |
69 | version : 4; | |
70 | #endif | |
71 | } __packed; /* format defined in RFC7609 */ | |
72 | ||
73 | struct smc_clc_msg_trail { /* trailer of clc messages */ | |
74 | u8 eyecatcher[4]; | |
75 | }; | |
76 | ||
77 | struct smc_clc_msg_local { /* header2 of clc messages */ | |
78 | u8 id_for_peer[SMC_SYSTEMID_LEN]; /* unique system id */ | |
79 | u8 gid[16]; /* gid of ib_device port */ | |
80 | u8 mac[6]; /* mac of ib_device port */ | |
81 | }; | |
82 | ||
1a26d020 KG |
83 | #define SMC_CLC_MAX_V6_PREFIX 8 |
84 | ||
85 | /* Struct would be 4 byte aligned, but it is used in an array that is sent | |
86 | * to peers and must conform to RFC7609, hence we need to use packed here. | |
87 | */ | |
e7b7a64a | 88 | struct smc_clc_ipv6_prefix { |
1a26d020 | 89 | struct in6_addr prefix; |
e7b7a64a | 90 | u8 prefix_len; |
1a26d020 | 91 | } __packed; /* format defined in RFC7609 */ |
e7b7a64a UB |
92 | |
93 | struct smc_clc_msg_proposal_prefix { /* prefix part of clc proposal message*/ | |
a046d57d UB |
94 | __be32 outgoing_subnet; /* subnet mask */ |
95 | u8 prefix_len; /* number of significant bits in mask */ | |
96 | u8 reserved[2]; | |
97 | u8 ipv6_prefixes_cnt; /* number of IPv6 prefixes in prefix array */ | |
a046d57d UB |
98 | } __aligned(4); |
99 | ||
c758dfdd HW |
100 | struct smc_clc_msg_smcd { /* SMC-D GID information */ |
101 | u64 gid; /* ISM GID of requestor */ | |
102 | u8 res[32]; | |
103 | }; | |
104 | ||
e7b7a64a UB |
105 | struct smc_clc_msg_proposal { /* clc proposal message sent by Linux */ |
106 | struct smc_clc_msg_hdr hdr; | |
107 | struct smc_clc_msg_local lcl; | |
108 | __be16 iparea_offset; /* offset to IP address information area */ | |
109 | } __aligned(4); | |
110 | ||
111 | #define SMC_CLC_PROPOSAL_MAX_OFFSET 0x28 | |
1a26d020 KG |
112 | #define SMC_CLC_PROPOSAL_MAX_PREFIX (SMC_CLC_MAX_V6_PREFIX * \ |
113 | sizeof(struct smc_clc_ipv6_prefix)) | |
e7b7a64a UB |
114 | #define SMC_CLC_MAX_LEN (sizeof(struct smc_clc_msg_proposal) + \ |
115 | SMC_CLC_PROPOSAL_MAX_OFFSET + \ | |
1a26d020 | 116 | sizeof(struct smc_clc_msg_proposal_prefix) + \ |
e7b7a64a UB |
117 | SMC_CLC_PROPOSAL_MAX_PREFIX + \ |
118 | sizeof(struct smc_clc_msg_trail)) | |
119 | ||
a046d57d UB |
120 | struct smc_clc_msg_accept_confirm { /* clc accept / confirm message */ |
121 | struct smc_clc_msg_hdr hdr; | |
c758dfdd HW |
122 | union { |
123 | struct { /* SMC-R */ | |
124 | struct smc_clc_msg_local lcl; | |
125 | u8 qpn[3]; /* QP number */ | |
126 | __be32 rmb_rkey; /* RMB rkey */ | |
127 | u8 rmbe_idx; /* Index of RMBE in RMB */ | |
128 | __be32 rmbe_alert_token;/* unique connection id */ | |
a046d57d | 129 | #if defined(__BIG_ENDIAN_BITFIELD) |
c758dfdd HW |
130 | u8 rmbe_size : 4, /* buf size (compressed) */ |
131 | qp_mtu : 4; /* QP mtu */ | |
a046d57d | 132 | #elif defined(__LITTLE_ENDIAN_BITFIELD) |
c758dfdd HW |
133 | u8 qp_mtu : 4, |
134 | rmbe_size : 4; | |
a046d57d | 135 | #endif |
c758dfdd HW |
136 | u8 reserved; |
137 | __be64 rmb_dma_addr; /* RMB virtual address */ | |
138 | u8 reserved2; | |
139 | u8 psn[3]; /* packet sequence number */ | |
140 | struct smc_clc_msg_trail smcr_trl; | |
141 | /* eye catcher "SMCR" EBCDIC */ | |
142 | } __packed; | |
143 | struct { /* SMC-D */ | |
144 | u64 gid; /* Sender GID */ | |
145 | u64 token; /* DMB token */ | |
146 | u8 dmbe_idx; /* DMBE index */ | |
147 | #if defined(__BIG_ENDIAN_BITFIELD) | |
148 | u8 dmbe_size : 4, /* buf size (compressed) */ | |
149 | reserved3 : 4; | |
150 | #elif defined(__LITTLE_ENDIAN_BITFIELD) | |
151 | u8 reserved3 : 4, | |
152 | dmbe_size : 4; | |
153 | #endif | |
154 | u16 reserved4; | |
155 | u32 linkid; /* Link identifier */ | |
156 | u32 reserved5[3]; | |
157 | struct smc_clc_msg_trail smcd_trl; | |
158 | /* eye catcher "SMCD" EBCDIC */ | |
159 | } __packed; | |
160 | }; | |
a046d57d UB |
161 | } __packed; /* format defined in RFC7609 */ |
162 | ||
163 | struct smc_clc_msg_decline { /* clc decline message */ | |
164 | struct smc_clc_msg_hdr hdr; | |
165 | u8 id_for_peer[SMC_SYSTEMID_LEN]; /* sender peer_id */ | |
166 | __be32 peer_diagnosis; /* diagnosis information */ | |
167 | u8 reserved2[4]; | |
168 | struct smc_clc_msg_trail trl; /* eye catcher "SMCR" EBCDIC */ | |
169 | } __aligned(4); | |
170 | ||
e7b7a64a UB |
171 | /* determine start of the prefix area within the proposal message */ |
172 | static inline struct smc_clc_msg_proposal_prefix * | |
173 | smc_clc_proposal_get_prefix(struct smc_clc_msg_proposal *pclc) | |
174 | { | |
175 | return (struct smc_clc_msg_proposal_prefix *) | |
176 | ((u8 *)pclc + sizeof(*pclc) + ntohs(pclc->iparea_offset)); | |
177 | } | |
178 | ||
c758dfdd HW |
179 | /* get SMC-D info from proposal message */ |
180 | static inline struct smc_clc_msg_smcd * | |
181 | smc_get_clc_msg_smcd(struct smc_clc_msg_proposal *prop) | |
182 | { | |
183 | if (ntohs(prop->iparea_offset) != sizeof(struct smc_clc_msg_smcd)) | |
184 | return NULL; | |
185 | ||
186 | return (struct smc_clc_msg_smcd *)(prop + 1); | |
187 | } | |
188 | ||
189 | struct smcd_dev; | |
bc36d2fc | 190 | struct smc_init_info; |
c758dfdd | 191 | |
c246d942 KG |
192 | int smc_clc_prfx_match(struct socket *clcsock, |
193 | struct smc_clc_msg_proposal_prefix *prop); | |
a046d57d | 194 | int smc_clc_wait_msg(struct smc_sock *smc, void *buf, int buflen, |
2b59f58e | 195 | u8 expected_type, unsigned long timeout); |
bfbedfd3 | 196 | int smc_clc_send_decline(struct smc_sock *smc, u32 peer_diag_info); |
c758dfdd | 197 | int smc_clc_send_proposal(struct smc_sock *smc, int smc_type, |
bc36d2fc | 198 | struct smc_init_info *ini); |
a046d57d | 199 | int smc_clc_send_confirm(struct smc_sock *smc); |
0cfdd8f9 | 200 | int smc_clc_send_accept(struct smc_sock *smc, int srv_first_contact); |
a046d57d UB |
201 | |
202 | #endif |