31e175b16c4c343f9f1b7728b888c1e8d7a6f1e6
[dpdk.git] / lib / librte_vhost / rte_virtio_net.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef _VIRTIO_NET_H_
35 #define _VIRTIO_NET_H_
36
37 /**
38  * @file
39  * Interface to vhost net
40  */
41
42 #include <stdint.h>
43 #include <linux/vhost.h>
44 #include <linux/virtio_ring.h>
45 #include <linux/virtio_net.h>
46 #include <sys/eventfd.h>
47 #include <sys/socket.h>
48 #include <linux/if.h>
49
50 #include <rte_memory.h>
51 #include <rte_mempool.h>
52 #include <rte_ether.h>
53
54 #define RTE_VHOST_USER_CLIENT           (1ULL << 0)
55 #define RTE_VHOST_USER_NO_RECONNECT     (1ULL << 1)
56 #define RTE_VHOST_USER_DEQUEUE_ZERO_COPY        (1ULL << 2)
57
58 /* Enum for virtqueue management. */
59 enum {VIRTIO_RXQ, VIRTIO_TXQ, VIRTIO_QNUM};
60
61 /**
62  * Information relating to memory regions including offsets to
63  * addresses in QEMUs memory file.
64  */
65 struct rte_vhost_mem_region {
66         uint64_t guest_phys_addr;
67         uint64_t guest_user_addr;
68         uint64_t host_user_addr;
69         uint64_t size;
70         void     *mmap_addr;
71         uint64_t mmap_size;
72         int fd;
73 };
74
75 /**
76  * Memory structure includes region and mapping information.
77  */
78 struct rte_vhost_memory {
79         uint32_t nregions;
80         struct rte_vhost_mem_region regions[0];
81 };
82
83 struct rte_vhost_vring {
84         struct vring_desc       *desc;
85         struct vring_avail      *avail;
86         struct vring_used       *used;
87         uint64_t                log_guest_addr;
88
89         int                     callfd;
90         int                     kickfd;
91         uint16_t                size;
92 };
93
94 /**
95  * Device and vring operations.
96  */
97 struct virtio_net_device_ops {
98         int (*new_device)(int vid);             /**< Add device. */
99         void (*destroy_device)(int vid);        /**< Remove device. */
100
101         int (*vring_state_changed)(int vid, uint16_t queue_id, int enable);     /**< triggered when a vring is enabled or disabled */
102
103         void *reserved[5]; /**< Reserved for future extension */
104 };
105
106 int rte_vhost_enable_guest_notification(int vid, uint16_t queue_id, int enable);
107
108 /**
109  * Register vhost driver. path could be different for multiple
110  * instance support.
111  */
112 int rte_vhost_driver_register(const char *path, uint64_t flags);
113
114 /* Unregister vhost driver. This is only meaningful to vhost user. */
115 int rte_vhost_driver_unregister(const char *path);
116
117 /**
118  * Set the feature bits the vhost-user driver supports.
119  *
120  * @param path
121  *  The vhost-user socket file path
122  * @param features
123  *  Supported features
124  * @return
125  *  0 on success, -1 on failure
126  */
127 int rte_vhost_driver_set_features(const char *path, uint64_t features);
128
129 /**
130  * Enable vhost-user driver features.
131  *
132  * Note that
133  * - the param features should be a subset of the feature bits provided
134  *   by rte_vhost_driver_set_features().
135  * - it must be invoked before vhost-user negotiation starts.
136  *
137  * @param path
138  *  The vhost-user socket file path
139  * @param features
140  *  Features to enable
141  * @return
142  *  0 on success, -1 on failure
143  */
144 int rte_vhost_driver_enable_features(const char *path, uint64_t features);
145
146 /**
147  * Disable vhost-user driver features.
148  *
149  * The two notes at rte_vhost_driver_enable_features() also apply here.
150  *
151  * @param path
152  *  The vhost-user socket file path
153  * @param features
154  *  Features to disable
155  * @return
156  *  0 on success, -1 on failure
157  */
158 int rte_vhost_driver_disable_features(const char *path, uint64_t features);
159
160 /**
161  * Get the feature bits before feature negotiation.
162  *
163  * @param path
164  *  The vhost-user socket file path
165  * @param features
166  *  A pointer to store the queried feature bits
167  * @return
168  *  0 on success, -1 on failure
169  */
170 int rte_vhost_driver_get_features(const char *path, uint64_t *features);
171
172 /**
173  * Get the feature bits after negotiation
174  *
175  * @param vid
176  *  Vhost device ID
177  * @param features
178  *  A pointer to store the queried feature bits
179  * @return
180  *  0 on success, -1 on failure
181  */
182 int rte_vhost_get_negotiated_features(int vid, uint64_t *features);
183
184 /* Register callbacks. */
185 int rte_vhost_driver_callback_register(const char *path,
186         struct virtio_net_device_ops const * const ops);
187 /* Start vhost driver session blocking loop. */
188 int rte_vhost_driver_session_start(void);
189
190 /**
191  * Get the MTU value of the device if set in QEMU.
192  *
193  * @param vid
194  *  virtio-net device ID
195  * @param mtu
196  *  The variable to store the MTU value
197  *
198  * @return
199  *  0: success
200  *  -EAGAIN: device not yet started
201  *  -ENOTSUP: device does not support MTU feature
202  */
203 int rte_vhost_get_mtu(int vid, uint16_t *mtu);
204
205 /**
206  * Get the numa node from which the virtio net device's memory
207  * is allocated.
208  *
209  * @param vid
210  *  virtio-net device ID
211  *
212  * @return
213  *  The numa node, -1 on failure
214  */
215 int rte_vhost_get_numa_node(int vid);
216
217 /**
218  * Get the number of queues the device supports.
219  *
220  * @param vid
221  *  virtio-net device ID
222  *
223  * @return
224  *  The number of queues, 0 on failure
225  */
226 uint32_t rte_vhost_get_queue_num(int vid);
227
228 /**
229  * Get the virtio net device's ifname, which is the vhost-user socket
230  * file path.
231  *
232  * @param vid
233  *  virtio-net device ID
234  * @param buf
235  *  The buffer to stored the queried ifname
236  * @param len
237  *  The length of buf
238  *
239  * @return
240  *  0 on success, -1 on failure
241  */
242 int rte_vhost_get_ifname(int vid, char *buf, size_t len);
243
244 /**
245  * Get how many avail entries are left in the queue
246  *
247  * @param vid
248  *  virtio-net device ID
249  * @param queue_id
250  *  virtio queue index
251  *
252  * @return
253  *  num of avail entires left
254  */
255 uint16_t rte_vhost_avail_entries(int vid, uint16_t queue_id);
256
257 /**
258  * This function adds buffers to the virtio devices RX virtqueue. Buffers can
259  * be received from the physical port or from another virtual device. A packet
260  * count is returned to indicate the number of packets that were succesfully
261  * added to the RX queue.
262  * @param vid
263  *  virtio-net device ID
264  * @param queue_id
265  *  virtio queue index in mq case
266  * @param pkts
267  *  array to contain packets to be enqueued
268  * @param count
269  *  packets num to be enqueued
270  * @return
271  *  num of packets enqueued
272  */
273 uint16_t rte_vhost_enqueue_burst(int vid, uint16_t queue_id,
274         struct rte_mbuf **pkts, uint16_t count);
275
276 /**
277  * This function gets guest buffers from the virtio device TX virtqueue,
278  * construct host mbufs, copies guest buffer content to host mbufs and
279  * store them in pkts to be processed.
280  * @param vid
281  *  virtio-net device
282  * @param queue_id
283  *  virtio queue index in mq case
284  * @param mbuf_pool
285  *  mbuf_pool where host mbuf is allocated.
286  * @param pkts
287  *  array to contain packets to be dequeued
288  * @param count
289  *  packets num to be dequeued
290  * @return
291  *  num of packets dequeued
292  */
293 uint16_t rte_vhost_dequeue_burst(int vid, uint16_t queue_id,
294         struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts, uint16_t count);
295
296 /**
297  * Get guest mem table: a list of memory regions.
298  *
299  * An rte_vhost_vhost_memory object will be allocated internaly, to hold the
300  * guest memory regions. Application should free it at destroy_device()
301  * callback.
302  *
303  * @param vid
304  *  vhost device ID
305  * @param mem
306  *  To store the returned mem regions
307  * @return
308  *  0 on success, -1 on failure
309  */
310 int rte_vhost_get_mem_table(int vid, struct rte_vhost_memory **mem);
311
312 /**
313  * Get guest vring info, including the vring address, vring size, etc.
314  *
315  * @param vid
316  *  vhost device ID
317  * @param vring_idx
318  *  vring index
319  * @param vring
320  *  the structure to hold the requested vring info
321  * @return
322  *  0 on success, -1 on failure
323  */
324 int rte_vhost_get_vhost_vring(int vid, uint16_t vring_idx,
325                               struct rte_vhost_vring *vring);
326
327 #endif /* _VIRTIO_NET_H_ */