blob: 4f2e150a2be1763ff192c80972a331362468902c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Ursula Brauna046d572017-01-09 16:55:16 +01002/*
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 <ubraun@linux.vnet.ibm.com>
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
Ursula Brauna046d572017-01-09 16:55:16 +010025#define SMC_CLC_V1 0x1 /* SMC version */
Hans Wippelc758dfd2018-06-28 19:05:09 +020026#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 */
Ursula Brauna046d572017-01-09 16:55:16 +010029#define CLC_WAIT_TIME (6 * HZ) /* max. wait time on clcsock */
Ursula Braun2b59f582018-11-22 10:26:39 +010030#define CLC_WAIT_TIME_SHORT HZ /* short wait time on clcsock */
Ursula Brauna046d572017-01-09 16:55:16 +010031#define SMC_CLC_DECL_MEM 0x01010000 /* insufficient memory resources */
Karsten Graul603cc142018-07-25 16:35:32 +020032#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 */
Ursula Brauna046d572017-01-09 16:55:16 +010034#define SMC_CLC_DECL_CNFERR 0x03000000 /* configuration error */
Karsten Graul603cc142018-07-25 16:35:32 +020035#define SMC_CLC_DECL_PEERNOSMC 0x03010000 /* peer did not indicate SMC */
36#define SMC_CLC_DECL_IPSEC 0x03020000 /* IPsec usage */
Karsten Graul9aa68d22019-04-12 12:57:29 +020037#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 */
Karsten Graul603cc142018-07-25 16:35:32 +020041#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 */
Karsten Graul59886692019-04-12 12:57:25 +020044#define SMC_CLC_DECL_DIFFPREFIX 0x03070000 /* IP prefix / subnet mismatch */
Karsten Graulfba7e8e2019-04-12 12:57:27 +020045#define SMC_CLC_DECL_GETVLANERR 0x03080000 /* err to get vlan id of ip device*/
Karsten Graul7a627252019-04-12 12:57:30 +020046#define SMC_CLC_DECL_ISMVLANERR 0x03090000 /* err to reg vlan id on ism dev */
Karsten Graulb9247542020-04-29 17:10:41 +020047#define SMC_CLC_DECL_NOACTLINK 0x030a0000 /* no active smc-r link in lgr */
Ursula Brauna046d572017-01-09 16:55:16 +010048#define SMC_CLC_DECL_SYNCERR 0x04000000 /* synchronization error */
Karsten Graul603cc142018-07-25 16:35:32 +020049#define SMC_CLC_DECL_PEERDECL 0x05000000 /* peer declined during handshake */
Karsten Graul4ada81f2019-04-12 12:57:24 +020050#define SMC_CLC_DECL_INTERR 0x09990000 /* internal error */
51#define SMC_CLC_DECL_ERR_RTOK 0x09990001 /* rtoken handling failed */
52#define SMC_CLC_DECL_ERR_RDYLNK 0x09990002 /* ib ready link failed */
53#define SMC_CLC_DECL_ERR_REGRMB 0x09990003 /* reg rmb failed */
Ursula Brauna046d572017-01-09 16:55:16 +010054
55struct smc_clc_msg_hdr { /* header1 of clc messages */
56 u8 eyecatcher[4]; /* eye catcher */
57 u8 type; /* proposal / accept / confirm / decline */
58 __be16 length;
59#if defined(__BIG_ENDIAN_BITFIELD)
60 u8 version : 4,
61 flag : 1,
Hans Wippelc758dfd2018-06-28 19:05:09 +020062 rsvd : 1,
63 path : 2;
Ursula Brauna046d572017-01-09 16:55:16 +010064#elif defined(__LITTLE_ENDIAN_BITFIELD)
Hans Wippelc758dfd2018-06-28 19:05:09 +020065 u8 path : 2,
66 rsvd : 1,
Ursula Brauna046d572017-01-09 16:55:16 +010067 flag : 1,
68 version : 4;
69#endif
70} __packed; /* format defined in RFC7609 */
71
72struct smc_clc_msg_trail { /* trailer of clc messages */
73 u8 eyecatcher[4];
74};
75
76struct smc_clc_msg_local { /* header2 of clc messages */
77 u8 id_for_peer[SMC_SYSTEMID_LEN]; /* unique system id */
78 u8 gid[16]; /* gid of ib_device port */
79 u8 mac[6]; /* mac of ib_device port */
80};
81
Karsten Graul1a26d022018-03-16 15:06:40 +010082#define SMC_CLC_MAX_V6_PREFIX 8
83
84/* Struct would be 4 byte aligned, but it is used in an array that is sent
85 * to peers and must conform to RFC7609, hence we need to use packed here.
86 */
Ursula Braune7b7a642017-12-07 13:38:49 +010087struct smc_clc_ipv6_prefix {
Karsten Graul1a26d022018-03-16 15:06:40 +010088 struct in6_addr prefix;
Ursula Braune7b7a642017-12-07 13:38:49 +010089 u8 prefix_len;
Karsten Graul1a26d022018-03-16 15:06:40 +010090} __packed; /* format defined in RFC7609 */
Ursula Braune7b7a642017-12-07 13:38:49 +010091
92struct smc_clc_msg_proposal_prefix { /* prefix part of clc proposal message*/
Ursula Brauna046d572017-01-09 16:55:16 +010093 __be32 outgoing_subnet; /* subnet mask */
94 u8 prefix_len; /* number of significant bits in mask */
95 u8 reserved[2];
96 u8 ipv6_prefixes_cnt; /* number of IPv6 prefixes in prefix array */
Ursula Brauna046d572017-01-09 16:55:16 +010097} __aligned(4);
98
Hans Wippelc758dfd2018-06-28 19:05:09 +020099struct smc_clc_msg_smcd { /* SMC-D GID information */
100 u64 gid; /* ISM GID of requestor */
101 u8 res[32];
102};
103
Ursula Braune7b7a642017-12-07 13:38:49 +0100104struct smc_clc_msg_proposal { /* clc proposal message sent by Linux */
105 struct smc_clc_msg_hdr hdr;
106 struct smc_clc_msg_local lcl;
107 __be16 iparea_offset; /* offset to IP address information area */
108} __aligned(4);
109
110#define SMC_CLC_PROPOSAL_MAX_OFFSET 0x28
Karsten Graul1a26d022018-03-16 15:06:40 +0100111#define SMC_CLC_PROPOSAL_MAX_PREFIX (SMC_CLC_MAX_V6_PREFIX * \
112 sizeof(struct smc_clc_ipv6_prefix))
Ursula Braune7b7a642017-12-07 13:38:49 +0100113#define SMC_CLC_MAX_LEN (sizeof(struct smc_clc_msg_proposal) + \
114 SMC_CLC_PROPOSAL_MAX_OFFSET + \
Karsten Graul1a26d022018-03-16 15:06:40 +0100115 sizeof(struct smc_clc_msg_proposal_prefix) + \
Ursula Braune7b7a642017-12-07 13:38:49 +0100116 SMC_CLC_PROPOSAL_MAX_PREFIX + \
117 sizeof(struct smc_clc_msg_trail))
118
Ursula Brauna046d572017-01-09 16:55:16 +0100119struct smc_clc_msg_accept_confirm { /* clc accept / confirm message */
120 struct smc_clc_msg_hdr hdr;
Hans Wippelc758dfd2018-06-28 19:05:09 +0200121 union {
122 struct { /* SMC-R */
123 struct smc_clc_msg_local lcl;
124 u8 qpn[3]; /* QP number */
125 __be32 rmb_rkey; /* RMB rkey */
126 u8 rmbe_idx; /* Index of RMBE in RMB */
127 __be32 rmbe_alert_token;/* unique connection id */
Ursula Brauna046d572017-01-09 16:55:16 +0100128#if defined(__BIG_ENDIAN_BITFIELD)
Hans Wippelc758dfd2018-06-28 19:05:09 +0200129 u8 rmbe_size : 4, /* buf size (compressed) */
130 qp_mtu : 4; /* QP mtu */
Ursula Brauna046d572017-01-09 16:55:16 +0100131#elif defined(__LITTLE_ENDIAN_BITFIELD)
Hans Wippelc758dfd2018-06-28 19:05:09 +0200132 u8 qp_mtu : 4,
133 rmbe_size : 4;
Ursula Brauna046d572017-01-09 16:55:16 +0100134#endif
Hans Wippelc758dfd2018-06-28 19:05:09 +0200135 u8 reserved;
136 __be64 rmb_dma_addr; /* RMB virtual address */
137 u8 reserved2;
138 u8 psn[3]; /* packet sequence number */
139 struct smc_clc_msg_trail smcr_trl;
140 /* eye catcher "SMCR" EBCDIC */
141 } __packed;
142 struct { /* SMC-D */
143 u64 gid; /* Sender GID */
144 u64 token; /* DMB token */
145 u8 dmbe_idx; /* DMBE index */
146#if defined(__BIG_ENDIAN_BITFIELD)
147 u8 dmbe_size : 4, /* buf size (compressed) */
148 reserved3 : 4;
149#elif defined(__LITTLE_ENDIAN_BITFIELD)
150 u8 reserved3 : 4,
151 dmbe_size : 4;
152#endif
153 u16 reserved4;
154 u32 linkid; /* Link identifier */
155 u32 reserved5[3];
156 struct smc_clc_msg_trail smcd_trl;
157 /* eye catcher "SMCD" EBCDIC */
158 } __packed;
159 };
Ursula Brauna046d572017-01-09 16:55:16 +0100160} __packed; /* format defined in RFC7609 */
161
162struct smc_clc_msg_decline { /* clc decline message */
163 struct smc_clc_msg_hdr hdr;
164 u8 id_for_peer[SMC_SYSTEMID_LEN]; /* sender peer_id */
165 __be32 peer_diagnosis; /* diagnosis information */
166 u8 reserved2[4];
167 struct smc_clc_msg_trail trl; /* eye catcher "SMCR" EBCDIC */
168} __aligned(4);
169
Ursula Braune7b7a642017-12-07 13:38:49 +0100170/* determine start of the prefix area within the proposal message */
171static inline struct smc_clc_msg_proposal_prefix *
172smc_clc_proposal_get_prefix(struct smc_clc_msg_proposal *pclc)
173{
174 return (struct smc_clc_msg_proposal_prefix *)
175 ((u8 *)pclc + sizeof(*pclc) + ntohs(pclc->iparea_offset));
176}
177
Hans Wippelc758dfd2018-06-28 19:05:09 +0200178/* get SMC-D info from proposal message */
179static inline struct smc_clc_msg_smcd *
180smc_get_clc_msg_smcd(struct smc_clc_msg_proposal *prop)
181{
182 if (ntohs(prop->iparea_offset) != sizeof(struct smc_clc_msg_smcd))
183 return NULL;
184
185 return (struct smc_clc_msg_smcd *)(prop + 1);
186}
187
188struct smcd_dev;
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200189struct smc_init_info;
Hans Wippelc758dfd2018-06-28 19:05:09 +0200190
Karsten Graulc246d942018-03-16 15:06:39 +0100191int smc_clc_prfx_match(struct socket *clcsock,
192 struct smc_clc_msg_proposal_prefix *prop);
Ursula Brauna046d572017-01-09 16:55:16 +0100193int smc_clc_wait_msg(struct smc_sock *smc, void *buf, int buflen,
Ursula Braun2b59f582018-11-22 10:26:39 +0100194 u8 expected_type, unsigned long timeout);
Ursula Braunbfbedfd2017-09-21 09:16:32 +0200195int smc_clc_send_decline(struct smc_sock *smc, u32 peer_diag_info);
Hans Wippelc758dfd2018-06-28 19:05:09 +0200196int smc_clc_send_proposal(struct smc_sock *smc, int smc_type,
Karsten Graulbc36d2f2019-04-12 12:57:26 +0200197 struct smc_init_info *ini);
Ursula Brauna046d572017-01-09 16:55:16 +0100198int smc_clc_send_confirm(struct smc_sock *smc);
Ursula Braun0cfdd8f2017-01-09 16:55:17 +0100199int smc_clc_send_accept(struct smc_sock *smc, int srv_first_contact);
Ursula Brauna046d572017-01-09 16:55:16 +0100200
201#endif