blob: 0d1e78ebad05154097ffa8b3bfb8708f5c7a0cb3 [file] [log] [blame]
Jason Gunthorped50e14a2018-04-20 09:49:10 -06001/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR Linux-OpenIB) */
Sean Hefty75216632006-11-30 16:53:41 -08002/*
3 * Copyright (c) 2005-2006 Intel Corporation. All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 */
33
34#ifndef RDMA_USER_CM_H
35#define RDMA_USER_CM_H
36
37#include <linux/types.h>
Doug Ledforddb1044d2014-08-12 19:20:11 -040038#include <linux/socket.h>
Sean Hefty75216632006-11-30 16:53:41 -080039#include <linux/in6.h>
40#include <rdma/ib_user_verbs.h>
41#include <rdma/ib_user_sa.h>
42
Sean Heftyc8f6a362007-02-15 17:00:18 -080043#define RDMA_USER_CM_ABI_VERSION 4
Sean Hefty75216632006-11-30 16:53:41 -080044
45#define RDMA_MAX_PRIVATE_DATA 256
46
47enum {
48 RDMA_USER_CM_CMD_CREATE_ID,
49 RDMA_USER_CM_CMD_DESTROY_ID,
Sean Hefty05ad9452013-05-29 10:09:30 -070050 RDMA_USER_CM_CMD_BIND_IP,
51 RDMA_USER_CM_CMD_RESOLVE_IP,
Sean Hefty75216632006-11-30 16:53:41 -080052 RDMA_USER_CM_CMD_RESOLVE_ROUTE,
53 RDMA_USER_CM_CMD_QUERY_ROUTE,
54 RDMA_USER_CM_CMD_CONNECT,
55 RDMA_USER_CM_CMD_LISTEN,
56 RDMA_USER_CM_CMD_ACCEPT,
57 RDMA_USER_CM_CMD_REJECT,
58 RDMA_USER_CM_CMD_DISCONNECT,
59 RDMA_USER_CM_CMD_INIT_QP_ATTR,
60 RDMA_USER_CM_CMD_GET_EVENT,
61 RDMA_USER_CM_CMD_GET_OPTION,
62 RDMA_USER_CM_CMD_SET_OPTION,
Sean Heftyc8f6a362007-02-15 17:00:18 -080063 RDMA_USER_CM_CMD_NOTIFY,
Sean Hefty05ad9452013-05-29 10:09:30 -070064 RDMA_USER_CM_CMD_JOIN_IP_MCAST,
Sean Hefty88314e42007-11-14 00:29:50 -080065 RDMA_USER_CM_CMD_LEAVE_MCAST,
Sean Heftyee7aed42013-05-29 10:09:25 -070066 RDMA_USER_CM_CMD_MIGRATE_ID,
Sean Heftyeebe4c32013-05-29 10:09:31 -070067 RDMA_USER_CM_CMD_QUERY,
Sean Hefty209cf2a2013-05-29 10:09:32 -070068 RDMA_USER_CM_CMD_BIND,
Sean Hefty5bc2b7b2013-05-29 10:09:33 -070069 RDMA_USER_CM_CMD_RESOLVE_ADDR,
70 RDMA_USER_CM_CMD_JOIN_MCAST
Sean Hefty75216632006-11-30 16:53:41 -080071};
72
Steve Wise2253fc02018-03-27 08:38:07 -070073/* See IBTA Annex A11, servies ID bytes 4 & 5 */
74enum rdma_ucm_port_space {
75 RDMA_PS_IPOIB = 0x0002,
76 RDMA_PS_IB = 0x013F,
77 RDMA_PS_TCP = 0x0106,
78 RDMA_PS_UDP = 0x0111,
79};
80
Sean Hefty75216632006-11-30 16:53:41 -080081/*
82 * command ABI structures.
83 */
84struct rdma_ucm_cmd_hdr {
85 __u32 cmd;
86 __u16 in;
87 __u16 out;
88};
89
90struct rdma_ucm_create_id {
Jason Gunthorpe26b99062018-03-20 14:19:51 -060091 __aligned_u64 uid;
92 __aligned_u64 response;
Steve Wise2253fc02018-03-27 08:38:07 -070093 __u16 ps; /* use enum rdma_ucm_port_space */
Sean Hefty638ef7a2011-06-14 16:31:53 -070094 __u8 qp_type;
95 __u8 reserved[5];
Sean Hefty75216632006-11-30 16:53:41 -080096};
97
98struct rdma_ucm_create_id_resp {
99 __u32 id;
100};
101
102struct rdma_ucm_destroy_id {
Jason Gunthorpe26b99062018-03-20 14:19:51 -0600103 __aligned_u64 response;
Sean Hefty75216632006-11-30 16:53:41 -0800104 __u32 id;
105 __u32 reserved;
106};
107
108struct rdma_ucm_destroy_id_resp {
109 __u32 events_reported;
110};
111
Sean Hefty05ad9452013-05-29 10:09:30 -0700112struct rdma_ucm_bind_ip {
Jason Gunthorpe26b99062018-03-20 14:19:51 -0600113 __aligned_u64 response;
Sean Hefty75216632006-11-30 16:53:41 -0800114 struct sockaddr_in6 addr;
115 __u32 id;
116};
117
Sean Heftyeebe4c32013-05-29 10:09:31 -0700118struct rdma_ucm_bind {
119 __u32 id;
120 __u16 addr_size;
121 __u16 reserved;
Jason Gunthorpe35493292016-10-27 10:51:17 -0600122 struct __kernel_sockaddr_storage addr;
Sean Heftyeebe4c32013-05-29 10:09:31 -0700123};
124
Sean Hefty05ad9452013-05-29 10:09:30 -0700125struct rdma_ucm_resolve_ip {
Sean Hefty75216632006-11-30 16:53:41 -0800126 struct sockaddr_in6 src_addr;
127 struct sockaddr_in6 dst_addr;
128 __u32 id;
129 __u32 timeout_ms;
130};
131
Sean Hefty209cf2a2013-05-29 10:09:32 -0700132struct rdma_ucm_resolve_addr {
133 __u32 id;
134 __u32 timeout_ms;
135 __u16 src_size;
136 __u16 dst_size;
137 __u32 reserved;
Jason Gunthorpe35493292016-10-27 10:51:17 -0600138 struct __kernel_sockaddr_storage src_addr;
139 struct __kernel_sockaddr_storage dst_addr;
Sean Hefty209cf2a2013-05-29 10:09:32 -0700140};
141
Sean Hefty75216632006-11-30 16:53:41 -0800142struct rdma_ucm_resolve_route {
143 __u32 id;
144 __u32 timeout_ms;
145};
146
Sean Heftyee7aed42013-05-29 10:09:25 -0700147enum {
Sean Heftyac53b262013-05-29 10:09:27 -0700148 RDMA_USER_CM_QUERY_ADDR,
Sean Heftyedaa7a52013-05-29 10:09:29 -0700149 RDMA_USER_CM_QUERY_PATH,
150 RDMA_USER_CM_QUERY_GID
Sean Heftyee7aed42013-05-29 10:09:25 -0700151};
152
153struct rdma_ucm_query {
Jason Gunthorpe26b99062018-03-20 14:19:51 -0600154 __aligned_u64 response;
Sean Hefty75216632006-11-30 16:53:41 -0800155 __u32 id;
Sean Heftyee7aed42013-05-29 10:09:25 -0700156 __u32 option;
Sean Hefty75216632006-11-30 16:53:41 -0800157};
158
159struct rdma_ucm_query_route_resp {
Jason Gunthorpe26b99062018-03-20 14:19:51 -0600160 __aligned_u64 node_guid;
Sean Hefty75216632006-11-30 16:53:41 -0800161 struct ib_user_path_rec ib_route[2];
162 struct sockaddr_in6 src_addr;
163 struct sockaddr_in6 dst_addr;
164 __u32 num_paths;
165 __u8 port_num;
166 __u8 reserved[3];
167};
168
Sean Heftyee7aed42013-05-29 10:09:25 -0700169struct rdma_ucm_query_addr_resp {
Jason Gunthorpe26b99062018-03-20 14:19:51 -0600170 __aligned_u64 node_guid;
Sean Heftyee7aed42013-05-29 10:09:25 -0700171 __u8 port_num;
172 __u8 reserved;
173 __u16 pkey;
174 __u16 src_size;
175 __u16 dst_size;
Jason Gunthorpe35493292016-10-27 10:51:17 -0600176 struct __kernel_sockaddr_storage src_addr;
177 struct __kernel_sockaddr_storage dst_addr;
Sean Heftyee7aed42013-05-29 10:09:25 -0700178};
179
Sean Heftyac53b262013-05-29 10:09:27 -0700180struct rdma_ucm_query_path_resp {
181 __u32 num_paths;
182 __u32 reserved;
183 struct ib_path_rec_data path_data[0];
184};
185
Sean Hefty75216632006-11-30 16:53:41 -0800186struct rdma_ucm_conn_param {
187 __u32 qp_num;
Sean Hefty5c438132013-05-29 10:09:23 -0700188 __u32 qkey;
Sean Hefty75216632006-11-30 16:53:41 -0800189 __u8 private_data[RDMA_MAX_PRIVATE_DATA];
190 __u8 private_data_len;
191 __u8 srq;
192 __u8 responder_resources;
193 __u8 initiator_depth;
194 __u8 flow_control;
195 __u8 retry_count;
196 __u8 rnr_retry_count;
197 __u8 valid;
198};
199
200struct rdma_ucm_ud_param {
201 __u32 qp_num;
202 __u32 qkey;
203 struct ib_uverbs_ah_attr ah_attr;
204 __u8 private_data[RDMA_MAX_PRIVATE_DATA];
205 __u8 private_data_len;
206 __u8 reserved[7];
207};
208
209struct rdma_ucm_connect {
210 struct rdma_ucm_conn_param conn_param;
211 __u32 id;
212 __u32 reserved;
213};
214
215struct rdma_ucm_listen {
216 __u32 id;
217 __u32 backlog;
218};
219
220struct rdma_ucm_accept {
Jason Gunthorpe26b99062018-03-20 14:19:51 -0600221 __aligned_u64 uid;
Sean Hefty75216632006-11-30 16:53:41 -0800222 struct rdma_ucm_conn_param conn_param;
223 __u32 id;
224 __u32 reserved;
225};
226
227struct rdma_ucm_reject {
228 __u32 id;
229 __u8 private_data_len;
230 __u8 reserved[3];
231 __u8 private_data[RDMA_MAX_PRIVATE_DATA];
232};
233
234struct rdma_ucm_disconnect {
235 __u32 id;
236};
237
238struct rdma_ucm_init_qp_attr {
Jason Gunthorpe26b99062018-03-20 14:19:51 -0600239 __aligned_u64 response;
Sean Hefty75216632006-11-30 16:53:41 -0800240 __u32 id;
241 __u32 qp_state;
242};
243
244struct rdma_ucm_notify {
245 __u32 id;
246 __u32 event;
247};
248
Sean Hefty05ad9452013-05-29 10:09:30 -0700249struct rdma_ucm_join_ip_mcast {
Jason Gunthorpe26b99062018-03-20 14:19:51 -0600250 __aligned_u64 response; /* rdma_ucm_create_id_resp */
251 __aligned_u64 uid;
Sean Heftyc8f6a362007-02-15 17:00:18 -0800252 struct sockaddr_in6 addr;
253 __u32 id;
254};
255
Alex Veskerab15c952016-07-06 16:36:35 +0300256/* Multicast join flags */
257enum {
258 RDMA_MC_JOIN_FLAG_FULLMEMBER,
259 RDMA_MC_JOIN_FLAG_SENDONLY_FULLMEMBER,
260 RDMA_MC_JOIN_FLAG_RESERVED,
261};
262
Sean Hefty5bc2b7b2013-05-29 10:09:33 -0700263struct rdma_ucm_join_mcast {
Jason Gunthorpe26b99062018-03-20 14:19:51 -0600264 __aligned_u64 response; /* rdma_ucma_create_id_resp */
265 __aligned_u64 uid;
Sean Hefty5bc2b7b2013-05-29 10:09:33 -0700266 __u32 id;
267 __u16 addr_size;
Alex Veskerab15c952016-07-06 16:36:35 +0300268 __u16 join_flags;
Jason Gunthorpe35493292016-10-27 10:51:17 -0600269 struct __kernel_sockaddr_storage addr;
Sean Hefty5bc2b7b2013-05-29 10:09:33 -0700270};
271
Sean Hefty75216632006-11-30 16:53:41 -0800272struct rdma_ucm_get_event {
Jason Gunthorpe26b99062018-03-20 14:19:51 -0600273 __aligned_u64 response;
Sean Hefty75216632006-11-30 16:53:41 -0800274};
275
276struct rdma_ucm_event_resp {
Jason Gunthorpe26b99062018-03-20 14:19:51 -0600277 __aligned_u64 uid;
Sean Hefty75216632006-11-30 16:53:41 -0800278 __u32 id;
279 __u32 event;
280 __u32 status;
Jason Gunthorpe611cb922018-03-20 14:19:47 -0600281 /*
282 * NOTE: This union is not aligned to 8 bytes so none of the union
283 * members may contain a u64 or anything with higher alignment than 4.
284 */
Sean Hefty75216632006-11-30 16:53:41 -0800285 union {
286 struct rdma_ucm_conn_param conn;
287 struct rdma_ucm_ud_param ud;
288 } param;
Jason Gunthorpe611cb922018-03-20 14:19:47 -0600289 __u32 reserved;
Sean Hefty75216632006-11-30 16:53:41 -0800290};
291
Sean Hefty7ce86402007-08-08 15:51:13 -0700292/* Option levels */
293enum {
Sean Heftya7ca1f02009-11-16 09:30:33 -0800294 RDMA_OPTION_ID = 0,
295 RDMA_OPTION_IB = 1
Sean Hefty7ce86402007-08-08 15:51:13 -0700296};
297
298/* Option details */
299enum {
Hefty, Seana9bb7912011-05-09 22:06:10 -0700300 RDMA_OPTION_ID_TOS = 0,
301 RDMA_OPTION_ID_REUSEADDR = 1,
Sean Hefty68602122012-06-14 20:31:39 +0000302 RDMA_OPTION_ID_AFONLY = 2,
Hefty, Seana9bb7912011-05-09 22:06:10 -0700303 RDMA_OPTION_IB_PATH = 1
Sean Hefty7ce86402007-08-08 15:51:13 -0700304};
305
306struct rdma_ucm_set_option {
Jason Gunthorpe26b99062018-03-20 14:19:51 -0600307 __aligned_u64 optval;
Sean Hefty7ce86402007-08-08 15:51:13 -0700308 __u32 id;
309 __u32 level;
310 __u32 optname;
311 __u32 optlen;
312};
313
Sean Hefty88314e42007-11-14 00:29:50 -0800314struct rdma_ucm_migrate_id {
Jason Gunthorpe26b99062018-03-20 14:19:51 -0600315 __aligned_u64 response;
Sean Hefty88314e42007-11-14 00:29:50 -0800316 __u32 id;
317 __u32 fd;
318};
319
320struct rdma_ucm_migrate_resp {
321 __u32 events_reported;
322};
323
Sean Hefty75216632006-11-30 16:53:41 -0800324#endif /* RDMA_USER_CM_H */