rdma_user_cm.h 7.0 KB
Newer Older
1
/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR Linux-OpenIB) */
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
/*
 * Copyright (c) 2005-2006 Intel Corporation.  All rights reserved.
 *
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL) Version 2, available from the file
 * COPYING in the main directory of this source tree, or the
 * OpenIB.org BSD license below:
 *
 *     Redistribution and use in source and binary forms, with or
 *     without modification, are permitted provided that the following
 *     conditions are met:
 *
 *      - Redistributions of source code must retain the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer.
 *
 *      - Redistributions in binary form must reproduce the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer in the documentation and/or other materials
 *        provided with the distribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#ifndef RDMA_USER_CM_H
#define RDMA_USER_CM_H

#include <linux/types.h>
38
#include <linux/socket.h>
39 40 41 42
#include <linux/in6.h>
#include <rdma/ib_user_verbs.h>
#include <rdma/ib_user_sa.h>

43
#define RDMA_USER_CM_ABI_VERSION	4
44 45 46 47 48 49

#define RDMA_MAX_PRIVATE_DATA		256

enum {
	RDMA_USER_CM_CMD_CREATE_ID,
	RDMA_USER_CM_CMD_DESTROY_ID,
50 51
	RDMA_USER_CM_CMD_BIND_IP,
	RDMA_USER_CM_CMD_RESOLVE_IP,
52 53 54 55 56 57 58 59 60 61 62
	RDMA_USER_CM_CMD_RESOLVE_ROUTE,
	RDMA_USER_CM_CMD_QUERY_ROUTE,
	RDMA_USER_CM_CMD_CONNECT,
	RDMA_USER_CM_CMD_LISTEN,
	RDMA_USER_CM_CMD_ACCEPT,
	RDMA_USER_CM_CMD_REJECT,
	RDMA_USER_CM_CMD_DISCONNECT,
	RDMA_USER_CM_CMD_INIT_QP_ATTR,
	RDMA_USER_CM_CMD_GET_EVENT,
	RDMA_USER_CM_CMD_GET_OPTION,
	RDMA_USER_CM_CMD_SET_OPTION,
63
	RDMA_USER_CM_CMD_NOTIFY,
64
	RDMA_USER_CM_CMD_JOIN_IP_MCAST,
65
	RDMA_USER_CM_CMD_LEAVE_MCAST,
66
	RDMA_USER_CM_CMD_MIGRATE_ID,
67
	RDMA_USER_CM_CMD_QUERY,
68
	RDMA_USER_CM_CMD_BIND,
69 70
	RDMA_USER_CM_CMD_RESOLVE_ADDR,
	RDMA_USER_CM_CMD_JOIN_MCAST
71 72
};

73 74 75 76 77 78 79 80
/* See IBTA Annex A11, servies ID bytes 4 & 5 */
enum rdma_ucm_port_space {
	RDMA_PS_IPOIB = 0x0002,
	RDMA_PS_IB    = 0x013F,
	RDMA_PS_TCP   = 0x0106,
	RDMA_PS_UDP   = 0x0111,
};

81 82 83 84 85 86 87 88 89 90
/*
 * command ABI structures.
 */
struct rdma_ucm_cmd_hdr {
	__u32 cmd;
	__u16 in;
	__u16 out;
};

struct rdma_ucm_create_id {
91 92
	__aligned_u64 uid;
	__aligned_u64 response;
93
	__u16 ps;                  /* use enum rdma_ucm_port_space */
94 95
	__u8  qp_type;
	__u8  reserved[5];
96 97 98 99 100 101 102
};

struct rdma_ucm_create_id_resp {
	__u32 id;
};

struct rdma_ucm_destroy_id {
103
	__aligned_u64 response;
104 105 106 107 108 109 110 111
	__u32 id;
	__u32 reserved;
};

struct rdma_ucm_destroy_id_resp {
	__u32 events_reported;
};

112
struct rdma_ucm_bind_ip {
113
	__aligned_u64 response;
114 115 116 117
	struct sockaddr_in6 addr;
	__u32 id;
};

118 119 120 121
struct rdma_ucm_bind {
	__u32 id;
	__u16 addr_size;
	__u16 reserved;
122
	struct __kernel_sockaddr_storage addr;
123 124
};

125
struct rdma_ucm_resolve_ip {
126 127 128 129 130 131
	struct sockaddr_in6 src_addr;
	struct sockaddr_in6 dst_addr;
	__u32 id;
	__u32 timeout_ms;
};

132 133 134 135 136 137
struct rdma_ucm_resolve_addr {
	__u32 id;
	__u32 timeout_ms;
	__u16 src_size;
	__u16 dst_size;
	__u32 reserved;
138 139
	struct __kernel_sockaddr_storage src_addr;
	struct __kernel_sockaddr_storage dst_addr;
140 141
};

142 143 144 145 146
struct rdma_ucm_resolve_route {
	__u32 id;
	__u32 timeout_ms;
};

147
enum {
148
	RDMA_USER_CM_QUERY_ADDR,
149 150
	RDMA_USER_CM_QUERY_PATH,
	RDMA_USER_CM_QUERY_GID
151 152 153
};

struct rdma_ucm_query {
154
	__aligned_u64 response;
155
	__u32 id;
156
	__u32 option;
157 158 159
};

struct rdma_ucm_query_route_resp {
160
	__aligned_u64 node_guid;
161 162 163 164 165 166
	struct ib_user_path_rec ib_route[2];
	struct sockaddr_in6 src_addr;
	struct sockaddr_in6 dst_addr;
	__u32 num_paths;
	__u8 port_num;
	__u8 reserved[3];
167 168
	__u32 ibdev_index;
	__u32 reserved1;
169 170
};

171
struct rdma_ucm_query_addr_resp {
172
	__aligned_u64 node_guid;
173 174 175 176 177
	__u8  port_num;
	__u8  reserved;
	__u16 pkey;
	__u16 src_size;
	__u16 dst_size;
178 179
	struct __kernel_sockaddr_storage src_addr;
	struct __kernel_sockaddr_storage dst_addr;
180 181
	__u32 ibdev_index;
	__u32 reserved1;
182 183
};

184 185 186
struct rdma_ucm_query_path_resp {
	__u32 num_paths;
	__u32 reserved;
187
	struct ib_path_rec_data path_data[];
188 189
};

190 191
struct rdma_ucm_conn_param {
	__u32 qp_num;
S
Sean Hefty 已提交
192
	__u32 qkey;
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
	__u8  private_data[RDMA_MAX_PRIVATE_DATA];
	__u8  private_data_len;
	__u8  srq;
	__u8  responder_resources;
	__u8  initiator_depth;
	__u8  flow_control;
	__u8  retry_count;
	__u8  rnr_retry_count;
	__u8  valid;
};

struct rdma_ucm_ud_param {
	__u32 qp_num;
	__u32 qkey;
	struct ib_uverbs_ah_attr ah_attr;
	__u8  private_data[RDMA_MAX_PRIVATE_DATA];
	__u8  private_data_len;
	__u8  reserved[7];
};

213 214 215 216 217
struct rdma_ucm_ece {
	__u32 vendor_id;
	__u32 attr_mod;
};

218 219 220 221
struct rdma_ucm_connect {
	struct rdma_ucm_conn_param conn_param;
	__u32 id;
	__u32 reserved;
222
	struct rdma_ucm_ece ece;
223 224 225 226 227 228 229 230
};

struct rdma_ucm_listen {
	__u32 id;
	__u32 backlog;
};

struct rdma_ucm_accept {
231
	__aligned_u64 uid;
232 233 234
	struct rdma_ucm_conn_param conn_param;
	__u32 id;
	__u32 reserved;
235
	struct rdma_ucm_ece ece;
236 237 238 239 240
};

struct rdma_ucm_reject {
	__u32 id;
	__u8  private_data_len;
241 242
	__u8  reason;
	__u8  reserved[2];
243 244 245 246 247 248 249 250
	__u8  private_data[RDMA_MAX_PRIVATE_DATA];
};

struct rdma_ucm_disconnect {
	__u32 id;
};

struct rdma_ucm_init_qp_attr {
251
	__aligned_u64 response;
252 253 254 255 256 257 258 259 260
	__u32 id;
	__u32 qp_state;
};

struct rdma_ucm_notify {
	__u32 id;
	__u32 event;
};

261
struct rdma_ucm_join_ip_mcast {
262 263
	__aligned_u64 response;		/* rdma_ucm_create_id_resp */
	__aligned_u64 uid;
264 265 266 267
	struct sockaddr_in6 addr;
	__u32 id;
};

268 269 270 271 272 273 274
/* Multicast join flags */
enum {
	RDMA_MC_JOIN_FLAG_FULLMEMBER,
	RDMA_MC_JOIN_FLAG_SENDONLY_FULLMEMBER,
	RDMA_MC_JOIN_FLAG_RESERVED,
};

275
struct rdma_ucm_join_mcast {
276 277
	__aligned_u64 response;		/* rdma_ucma_create_id_resp */
	__aligned_u64 uid;
278 279
	__u32 id;
	__u16 addr_size;
280
	__u16 join_flags;
281
	struct __kernel_sockaddr_storage addr;
282 283
};

284
struct rdma_ucm_get_event {
285
	__aligned_u64 response;
286 287 288
};

struct rdma_ucm_event_resp {
289
	__aligned_u64 uid;
290 291 292
	__u32 id;
	__u32 event;
	__u32 status;
293 294 295 296
	/*
	 * NOTE: This union is not aligned to 8 bytes so none of the union
	 * members may contain a u64 or anything with higher alignment than 4.
	 */
297 298 299 300
	union {
		struct rdma_ucm_conn_param conn;
		struct rdma_ucm_ud_param   ud;
	} param;
301
	__u32 reserved;
302
	struct rdma_ucm_ece ece;
303 304
};

305 306
/* Option levels */
enum {
307 308
	RDMA_OPTION_ID		= 0,
	RDMA_OPTION_IB		= 1
309 310 311 312
};

/* Option details */
enum {
313 314
	RDMA_OPTION_ID_TOS	 = 0,
	RDMA_OPTION_ID_REUSEADDR = 1,
315
	RDMA_OPTION_ID_AFONLY	 = 2,
316 317 318 319
	RDMA_OPTION_ID_ACK_TIMEOUT = 3
};

enum {
320
	RDMA_OPTION_IB_PATH	 = 1
321 322 323
};

struct rdma_ucm_set_option {
324
	__aligned_u64 optval;
325 326 327 328 329 330
	__u32 id;
	__u32 level;
	__u32 optname;
	__u32 optlen;
};

331
struct rdma_ucm_migrate_id {
332
	__aligned_u64 response;
333 334 335 336 337 338 339 340
	__u32 id;
	__u32 fd;
};

struct rdma_ucm_migrate_resp {
	__u32 events_reported;
};

341
#endif /* RDMA_USER_CM_H */