smc_clc.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * Shared Memory Communications over RDMA (SMC-R) and RoCE
  3. *
  4. * CLC (connection layer control) handshake over initial TCP socket to
  5. * prepare for RDMA traffic
  6. *
  7. * Copyright IBM Corp. 2016
  8. *
  9. * Author(s): Ursula Braun <ubraun@linux.vnet.ibm.com>
  10. */
  11. #ifndef _SMC_CLC_H
  12. #define _SMC_CLC_H
  13. #include <rdma/ib_verbs.h>
  14. #include "smc.h"
  15. #define SMC_CLC_PROPOSAL 0x01
  16. #define SMC_CLC_ACCEPT 0x02
  17. #define SMC_CLC_CONFIRM 0x03
  18. #define SMC_CLC_DECLINE 0x04
  19. /* eye catcher "SMCR" EBCDIC for CLC messages */
  20. static const char SMC_EYECATCHER[4] = {'\xe2', '\xd4', '\xc3', '\xd9'};
  21. #define SMC_CLC_V1 0x1 /* SMC version */
  22. #define CLC_WAIT_TIME (6 * HZ) /* max. wait time on clcsock */
  23. #define SMC_CLC_DECL_MEM 0x01010000 /* insufficient memory resources */
  24. #define SMC_CLC_DECL_TIMEOUT 0x02000000 /* timeout */
  25. #define SMC_CLC_DECL_CNFERR 0x03000000 /* configuration error */
  26. #define SMC_CLC_DECL_IPSEC 0x03030000 /* IPsec usage */
  27. #define SMC_CLC_DECL_SYNCERR 0x04000000 /* synchronization error */
  28. #define SMC_CLC_DECL_REPLY 0x06000000 /* reply to a received decline */
  29. #define SMC_CLC_DECL_INTERR 0x99990000 /* internal error */
  30. #define SMC_CLC_DECL_TCL 0x02040000 /* timeout w4 QP confirm */
  31. #define SMC_CLC_DECL_SEND 0x07000000 /* sending problem */
  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. struct smc_clc_msg_proposal { /* clc proposal message */
  55. struct smc_clc_msg_hdr hdr;
  56. struct smc_clc_msg_local lcl;
  57. __be16 iparea_offset; /* offset to IP address information area */
  58. __be32 outgoing_subnet; /* subnet mask */
  59. u8 prefix_len; /* number of significant bits in mask */
  60. u8 reserved[2];
  61. u8 ipv6_prefixes_cnt; /* number of IPv6 prefixes in prefix array */
  62. struct smc_clc_msg_trail trl; /* eye catcher "SMCR" EBCDIC */
  63. } __aligned(4);
  64. struct smc_clc_msg_accept_confirm { /* clc accept / confirm message */
  65. struct smc_clc_msg_hdr hdr;
  66. struct smc_clc_msg_local lcl;
  67. u8 qpn[3]; /* QP number */
  68. __be32 rmb_rkey; /* RMB rkey */
  69. u8 conn_idx; /* Connection index, which RMBE in RMB */
  70. __be32 rmbe_alert_token;/* unique connection id */
  71. #if defined(__BIG_ENDIAN_BITFIELD)
  72. u8 rmbe_size : 4, /* RMBE buf size (compressed notation) */
  73. qp_mtu : 4; /* QP mtu */
  74. #elif defined(__LITTLE_ENDIAN_BITFIELD)
  75. u8 qp_mtu : 4,
  76. rmbe_size : 4;
  77. #endif
  78. u8 reserved;
  79. __be64 rmb_dma_addr; /* RMB virtual address */
  80. u8 reserved2;
  81. u8 psn[3]; /* initial packet sequence number */
  82. struct smc_clc_msg_trail trl; /* eye catcher "SMCR" EBCDIC */
  83. } __packed; /* format defined in RFC7609 */
  84. struct smc_clc_msg_decline { /* clc decline message */
  85. struct smc_clc_msg_hdr hdr;
  86. u8 id_for_peer[SMC_SYSTEMID_LEN]; /* sender peer_id */
  87. __be32 peer_diagnosis; /* diagnosis information */
  88. u8 reserved2[4];
  89. struct smc_clc_msg_trail trl; /* eye catcher "SMCR" EBCDIC */
  90. } __aligned(4);
  91. struct smc_sock;
  92. struct smc_ib_device;
  93. int smc_clc_wait_msg(struct smc_sock *smc, void *buf, int buflen,
  94. u8 expected_type);
  95. int smc_clc_send_decline(struct smc_sock *smc, u32 peer_diag_info,
  96. u8 out_of_sync);
  97. int smc_clc_send_proposal(struct smc_sock *smc, struct smc_ib_device *smcibdev,
  98. u8 ibport);
  99. int smc_clc_send_confirm(struct smc_sock *smc);
  100. int smc_clc_send_accept(struct smc_sock *smc, int srv_first_contact);
  101. #endif