rdma_user_cm.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. /*
  2. * Copyright (c) 2005-2006 Intel Corporation. All rights reserved.
  3. *
  4. * This software is available to you under a choice of one of two
  5. * licenses. You may choose to be licensed under the terms of the GNU
  6. * General Public License (GPL) Version 2, available from the file
  7. * COPYING in the main directory of this source tree, or the
  8. * OpenIB.org BSD license below:
  9. *
  10. * Redistribution and use in source and binary forms, with or
  11. * without modification, are permitted provided that the following
  12. * conditions are met:
  13. *
  14. * - Redistributions of source code must retain the above
  15. * copyright notice, this list of conditions and the following
  16. * disclaimer.
  17. *
  18. * - Redistributions in binary form must reproduce the above
  19. * copyright notice, this list of conditions and the following
  20. * disclaimer in the documentation and/or other materials
  21. * provided with the distribution.
  22. *
  23. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  24. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  25. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  26. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  27. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  28. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  29. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  30. * SOFTWARE.
  31. */
  32. #ifndef RDMA_USER_CM_H
  33. #define RDMA_USER_CM_H
  34. #include <linux/types.h>
  35. #include <linux/in6.h>
  36. #include <rdma/ib_user_verbs.h>
  37. #include <rdma/ib_user_sa.h>
  38. #define RDMA_USER_CM_ABI_VERSION 3
  39. #define RDMA_MAX_PRIVATE_DATA 256
  40. enum {
  41. RDMA_USER_CM_CMD_CREATE_ID,
  42. RDMA_USER_CM_CMD_DESTROY_ID,
  43. RDMA_USER_CM_CMD_BIND_ADDR,
  44. RDMA_USER_CM_CMD_RESOLVE_ADDR,
  45. RDMA_USER_CM_CMD_RESOLVE_ROUTE,
  46. RDMA_USER_CM_CMD_QUERY_ROUTE,
  47. RDMA_USER_CM_CMD_CONNECT,
  48. RDMA_USER_CM_CMD_LISTEN,
  49. RDMA_USER_CM_CMD_ACCEPT,
  50. RDMA_USER_CM_CMD_REJECT,
  51. RDMA_USER_CM_CMD_DISCONNECT,
  52. RDMA_USER_CM_CMD_INIT_QP_ATTR,
  53. RDMA_USER_CM_CMD_GET_EVENT,
  54. RDMA_USER_CM_CMD_GET_OPTION,
  55. RDMA_USER_CM_CMD_SET_OPTION,
  56. RDMA_USER_CM_CMD_NOTIFY
  57. };
  58. /*
  59. * command ABI structures.
  60. */
  61. struct rdma_ucm_cmd_hdr {
  62. __u32 cmd;
  63. __u16 in;
  64. __u16 out;
  65. };
  66. struct rdma_ucm_create_id {
  67. __u64 uid;
  68. __u64 response;
  69. __u16 ps;
  70. __u8 reserved[6];
  71. };
  72. struct rdma_ucm_create_id_resp {
  73. __u32 id;
  74. };
  75. struct rdma_ucm_destroy_id {
  76. __u64 response;
  77. __u32 id;
  78. __u32 reserved;
  79. };
  80. struct rdma_ucm_destroy_id_resp {
  81. __u32 events_reported;
  82. };
  83. struct rdma_ucm_bind_addr {
  84. __u64 response;
  85. struct sockaddr_in6 addr;
  86. __u32 id;
  87. };
  88. struct rdma_ucm_resolve_addr {
  89. struct sockaddr_in6 src_addr;
  90. struct sockaddr_in6 dst_addr;
  91. __u32 id;
  92. __u32 timeout_ms;
  93. };
  94. struct rdma_ucm_resolve_route {
  95. __u32 id;
  96. __u32 timeout_ms;
  97. };
  98. struct rdma_ucm_query_route {
  99. __u64 response;
  100. __u32 id;
  101. __u32 reserved;
  102. };
  103. struct rdma_ucm_query_route_resp {
  104. __u64 node_guid;
  105. struct ib_user_path_rec ib_route[2];
  106. struct sockaddr_in6 src_addr;
  107. struct sockaddr_in6 dst_addr;
  108. __u32 num_paths;
  109. __u8 port_num;
  110. __u8 reserved[3];
  111. };
  112. struct rdma_ucm_conn_param {
  113. __u32 qp_num;
  114. __u32 reserved;
  115. __u8 private_data[RDMA_MAX_PRIVATE_DATA];
  116. __u8 private_data_len;
  117. __u8 srq;
  118. __u8 responder_resources;
  119. __u8 initiator_depth;
  120. __u8 flow_control;
  121. __u8 retry_count;
  122. __u8 rnr_retry_count;
  123. __u8 valid;
  124. };
  125. struct rdma_ucm_ud_param {
  126. __u32 qp_num;
  127. __u32 qkey;
  128. struct ib_uverbs_ah_attr ah_attr;
  129. __u8 private_data[RDMA_MAX_PRIVATE_DATA];
  130. __u8 private_data_len;
  131. __u8 reserved[7];
  132. };
  133. struct rdma_ucm_connect {
  134. struct rdma_ucm_conn_param conn_param;
  135. __u32 id;
  136. __u32 reserved;
  137. };
  138. struct rdma_ucm_listen {
  139. __u32 id;
  140. __u32 backlog;
  141. };
  142. struct rdma_ucm_accept {
  143. __u64 uid;
  144. struct rdma_ucm_conn_param conn_param;
  145. __u32 id;
  146. __u32 reserved;
  147. };
  148. struct rdma_ucm_reject {
  149. __u32 id;
  150. __u8 private_data_len;
  151. __u8 reserved[3];
  152. __u8 private_data[RDMA_MAX_PRIVATE_DATA];
  153. };
  154. struct rdma_ucm_disconnect {
  155. __u32 id;
  156. };
  157. struct rdma_ucm_init_qp_attr {
  158. __u64 response;
  159. __u32 id;
  160. __u32 qp_state;
  161. };
  162. struct rdma_ucm_notify {
  163. __u32 id;
  164. __u32 event;
  165. };
  166. struct rdma_ucm_get_event {
  167. __u64 response;
  168. };
  169. struct rdma_ucm_event_resp {
  170. __u64 uid;
  171. __u32 id;
  172. __u32 event;
  173. __u32 status;
  174. union {
  175. struct rdma_ucm_conn_param conn;
  176. struct rdma_ucm_ud_param ud;
  177. } param;
  178. };
  179. #endif /* RDMA_USER_CM_H */