1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2018 Intel Corporation
5 #ifndef _VHOST_NET_USER_H
6 #define _VHOST_NET_USER_H
9 #include <linux/vhost.h>
11 #include "rte_vhost.h"
13 /* refer to hw/virtio/vhost-user.c */
15 #define VHOST_MEMORY_MAX_NREGIONS 8
17 #define VHOST_USER_PROTOCOL_FEATURES ((1ULL << VHOST_USER_PROTOCOL_F_MQ) | \
18 (1ULL << VHOST_USER_PROTOCOL_F_LOG_SHMFD) |\
19 (1ULL << VHOST_USER_PROTOCOL_F_RARP) | \
20 (1ULL << VHOST_USER_PROTOCOL_F_REPLY_ACK) | \
21 (1ULL << VHOST_USER_PROTOCOL_F_NET_MTU) | \
22 (1ULL << VHOST_USER_PROTOCOL_F_SLAVE_REQ) | \
23 (1ULL << VHOST_USER_PROTOCOL_F_CRYPTO_SESSION) | \
24 (1ULL << VHOST_USER_PROTOCOL_F_SLAVE_SEND_FD) | \
25 (1ULL << VHOST_USER_PROTOCOL_F_HOST_NOTIFIER) | \
26 (1ULL << VHOST_USER_PROTOCOL_F_PAGEFAULT) | \
27 (1ULL << VHOST_USER_PROTOCOL_F_STATUS))
29 typedef enum VhostUserRequest {
31 VHOST_USER_GET_FEATURES = 1,
32 VHOST_USER_SET_FEATURES = 2,
33 VHOST_USER_SET_OWNER = 3,
34 VHOST_USER_RESET_OWNER = 4,
35 VHOST_USER_SET_MEM_TABLE = 5,
36 VHOST_USER_SET_LOG_BASE = 6,
37 VHOST_USER_SET_LOG_FD = 7,
38 VHOST_USER_SET_VRING_NUM = 8,
39 VHOST_USER_SET_VRING_ADDR = 9,
40 VHOST_USER_SET_VRING_BASE = 10,
41 VHOST_USER_GET_VRING_BASE = 11,
42 VHOST_USER_SET_VRING_KICK = 12,
43 VHOST_USER_SET_VRING_CALL = 13,
44 VHOST_USER_SET_VRING_ERR = 14,
45 VHOST_USER_GET_PROTOCOL_FEATURES = 15,
46 VHOST_USER_SET_PROTOCOL_FEATURES = 16,
47 VHOST_USER_GET_QUEUE_NUM = 17,
48 VHOST_USER_SET_VRING_ENABLE = 18,
49 VHOST_USER_SEND_RARP = 19,
50 VHOST_USER_NET_SET_MTU = 20,
51 VHOST_USER_SET_SLAVE_REQ_FD = 21,
52 VHOST_USER_IOTLB_MSG = 22,
53 VHOST_USER_CRYPTO_CREATE_SESS = 26,
54 VHOST_USER_CRYPTO_CLOSE_SESS = 27,
55 VHOST_USER_POSTCOPY_ADVISE = 28,
56 VHOST_USER_POSTCOPY_LISTEN = 29,
57 VHOST_USER_POSTCOPY_END = 30,
58 VHOST_USER_GET_INFLIGHT_FD = 31,
59 VHOST_USER_SET_INFLIGHT_FD = 32,
60 VHOST_USER_SET_STATUS = 39,
61 VHOST_USER_GET_STATUS = 40,
65 typedef enum VhostUserSlaveRequest {
66 VHOST_USER_SLAVE_NONE = 0,
67 VHOST_USER_SLAVE_IOTLB_MSG = 1,
68 VHOST_USER_SLAVE_CONFIG_CHANGE_MSG = 2,
69 VHOST_USER_SLAVE_VRING_HOST_NOTIFIER_MSG = 3,
71 } VhostUserSlaveRequest;
73 typedef struct VhostUserMemoryRegion {
74 uint64_t guest_phys_addr;
76 uint64_t userspace_addr;
78 } VhostUserMemoryRegion;
80 typedef struct VhostUserMemory {
83 VhostUserMemoryRegion regions[VHOST_MEMORY_MAX_NREGIONS];
86 typedef struct VhostUserLog {
91 /* Comply with Cryptodev-Linux */
92 #define VHOST_USER_CRYPTO_MAX_HMAC_KEY_LENGTH 512
93 #define VHOST_USER_CRYPTO_MAX_CIPHER_KEY_LENGTH 64
95 /* Same structure as vhost-user backend session info */
96 typedef struct VhostUserCryptoSessionParam {
100 uint32_t cipher_key_len;
103 uint32_t auth_key_len;
108 uint8_t chaining_dir;
111 uint8_t cipher_key_buf[VHOST_USER_CRYPTO_MAX_CIPHER_KEY_LENGTH];
112 uint8_t auth_key_buf[VHOST_USER_CRYPTO_MAX_HMAC_KEY_LENGTH];
113 } VhostUserCryptoSessionParam;
115 typedef struct VhostUserVringArea {
119 } VhostUserVringArea;
121 typedef struct VhostUserInflight {
123 uint64_t mmap_offset;
128 typedef struct VhostUserMsg {
130 uint32_t master; /* a VhostUserRequest value */
131 uint32_t slave; /* a VhostUserSlaveRequest value*/
134 #define VHOST_USER_VERSION_MASK 0x3
135 #define VHOST_USER_REPLY_MASK (0x1 << 2)
136 #define VHOST_USER_NEED_REPLY (0x1 << 3)
138 uint32_t size; /* the following payload size */
140 #define VHOST_USER_VRING_IDX_MASK 0xff
141 #define VHOST_USER_VRING_NOFD_MASK (0x1<<8)
143 struct vhost_vring_state state;
144 struct vhost_vring_addr addr;
145 VhostUserMemory memory;
147 struct vhost_iotlb_msg iotlb;
148 VhostUserCryptoSessionParam crypto_session;
149 VhostUserVringArea area;
150 VhostUserInflight inflight;
152 int fds[VHOST_MEMORY_MAX_NREGIONS];
154 } __rte_packed VhostUserMsg;
156 #define VHOST_USER_HDR_SIZE offsetof(VhostUserMsg, payload.u64)
158 /* The version of the protocol we support */
159 #define VHOST_USER_VERSION 0x1
163 int vhost_user_msg_handler(int vid, int fd);
164 int vhost_user_iotlb_miss(struct virtio_net *dev, uint64_t iova, uint8_t perm);
167 int read_fd_message(int sockfd, char *buf, int buflen, int *fds, int max_fds,
169 int send_fd_message(int sockfd, char *buf, int buflen, int *fds, int fd_num);