smc_clc.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /* SPDX-License-Identifier: GPL-2.0 */
  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 <ubraun@linux.vnet.ibm.com>
  11. */
  12. #ifndef _SMC_CLC_H
  13. #define _SMC_CLC_H
  14. #include <rdma/ib_verbs.h>
  15. #include "smc.h"
  16. #define SMC_CLC_PROPOSAL 0x01
  17. #define SMC_CLC_ACCEPT 0x02
  18. #define SMC_CLC_CONFIRM 0x03
  19. #define SMC_CLC_DECLINE 0x04
  20. #define SMC_CLC_V1 0x1 /* SMC version */
  21. #define CLC_WAIT_TIME (6 * HZ) /* max. wait time on clcsock */
  22. #define SMC_CLC_DECL_MEM 0x01010000 /* insufficient memory resources */
  23. #define SMC_CLC_DECL_TIMEOUT 0x02000000 /* timeout */
  24. #define SMC_CLC_DECL_CNFERR 0x03000000 /* configuration error */
  25. #define SMC_CLC_DECL_IPSEC 0x03030000 /* IPsec usage */
  26. #define SMC_CLC_DECL_SYNCERR 0x04000000 /* synchronization error */
  27. #define SMC_CLC_DECL_REPLY 0x06000000 /* reply to a received decline */
  28. #define SMC_CLC_DECL_INTERR 0x99990000 /* internal error */
  29. #define SMC_CLC_DECL_TCL 0x02040000 /* timeout w4 QP confirm */
  30. #define SMC_CLC_DECL_SEND 0x07000000 /* sending problem */
  31. #define SMC_CLC_DECL_RMBE_EC 0x08000000 /* peer has eyecatcher in RMBE */
  32. struct smc_clc_msg_hdr { /* header1 of clc messages */
  33. u8 eyecatcher[4]; /* eye catcher */
  34. u8 type; /* proposal / accept / confirm / decline */
  35. __be16 length;
  36. #if defined(__BIG_ENDIAN_BITFIELD)
  37. u8 version : 4,
  38. flag : 1,
  39. rsvd : 3;
  40. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  41. u8 rsvd : 3,
  42. flag : 1,
  43. version : 4;
  44. #endif
  45. } __packed; /* format defined in RFC7609 */
  46. struct smc_clc_msg_trail { /* trailer of clc messages */
  47. u8 eyecatcher[4];
  48. };
  49. struct smc_clc_msg_local { /* header2 of clc messages */
  50. u8 id_for_peer[SMC_SYSTEMID_LEN]; /* unique system id */
  51. u8 gid[16]; /* gid of ib_device port */
  52. u8 mac[6]; /* mac of ib_device port */
  53. };
  54. #define SMC_CLC_MAX_V6_PREFIX 8
  55. /* Struct would be 4 byte aligned, but it is used in an array that is sent
  56. * to peers and must conform to RFC7609, hence we need to use packed here.
  57. */
  58. struct smc_clc_ipv6_prefix {
  59. struct in6_addr prefix;
  60. u8 prefix_len;
  61. } __packed; /* format defined in RFC7609 */
  62. struct smc_clc_msg_proposal_prefix { /* prefix part of clc proposal message*/
  63. __be32 outgoing_subnet; /* subnet mask */
  64. u8 prefix_len; /* number of significant bits in mask */
  65. u8 reserved[2];
  66. u8 ipv6_prefixes_cnt; /* number of IPv6 prefixes in prefix array */
  67. } __aligned(4);
  68. struct smc_clc_msg_proposal { /* clc proposal message sent by Linux */
  69. struct smc_clc_msg_hdr hdr;
  70. struct smc_clc_msg_local lcl;
  71. __be16 iparea_offset; /* offset to IP address information area */
  72. } __aligned(4);
  73. #define SMC_CLC_PROPOSAL_MAX_OFFSET 0x28
  74. #define SMC_CLC_PROPOSAL_MAX_PREFIX (SMC_CLC_MAX_V6_PREFIX * \
  75. sizeof(struct smc_clc_ipv6_prefix))
  76. #define SMC_CLC_MAX_LEN (sizeof(struct smc_clc_msg_proposal) + \
  77. SMC_CLC_PROPOSAL_MAX_OFFSET + \
  78. sizeof(struct smc_clc_msg_proposal_prefix) + \
  79. SMC_CLC_PROPOSAL_MAX_PREFIX + \
  80. sizeof(struct smc_clc_msg_trail))
  81. struct smc_clc_msg_accept_confirm { /* clc accept / confirm message */
  82. struct smc_clc_msg_hdr hdr;
  83. struct smc_clc_msg_local lcl;
  84. u8 qpn[3]; /* QP number */
  85. __be32 rmb_rkey; /* RMB rkey */
  86. u8 rmbe_idx; /* Index of RMBE in RMB */
  87. __be32 rmbe_alert_token;/* unique connection id */
  88. #if defined(__BIG_ENDIAN_BITFIELD)
  89. u8 rmbe_size : 4, /* RMBE buf size (compressed notation) */
  90. qp_mtu : 4; /* QP mtu */
  91. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  92. u8 qp_mtu : 4,
  93. rmbe_size : 4;
  94. #endif
  95. u8 reserved;
  96. __be64 rmb_dma_addr; /* RMB virtual address */
  97. u8 reserved2;
  98. u8 psn[3]; /* initial packet sequence number */
  99. struct smc_clc_msg_trail trl; /* eye catcher "SMCR" EBCDIC */
  100. } __packed; /* format defined in RFC7609 */
  101. struct smc_clc_msg_decline { /* clc decline message */
  102. struct smc_clc_msg_hdr hdr;
  103. u8 id_for_peer[SMC_SYSTEMID_LEN]; /* sender peer_id */
  104. __be32 peer_diagnosis; /* diagnosis information */
  105. u8 reserved2[4];
  106. struct smc_clc_msg_trail trl; /* eye catcher "SMCR" EBCDIC */
  107. } __aligned(4);
  108. /* determine start of the prefix area within the proposal message */
  109. static inline struct smc_clc_msg_proposal_prefix *
  110. smc_clc_proposal_get_prefix(struct smc_clc_msg_proposal *pclc)
  111. {
  112. return (struct smc_clc_msg_proposal_prefix *)
  113. ((u8 *)pclc + sizeof(*pclc) + ntohs(pclc->iparea_offset));
  114. }
  115. int smc_clc_prfx_match(struct socket *clcsock,
  116. struct smc_clc_msg_proposal_prefix *prop);
  117. int smc_clc_wait_msg(struct smc_sock *smc, void *buf, int buflen,
  118. u8 expected_type);
  119. int smc_clc_send_decline(struct smc_sock *smc, u32 peer_diag_info);
  120. int smc_clc_send_proposal(struct smc_sock *smc, struct smc_ib_device *smcibdev,
  121. u8 ibport);
  122. int smc_clc_send_confirm(struct smc_sock *smc);
  123. int smc_clc_send_accept(struct smc_sock *smc, int srv_first_contact);
  124. #endif