c49db0c03428a15f455160c3828235cf28d2047a
[deb_dpdk.git] / lib / librte_vhost / vhost.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 _VHOST_NET_CDEV_H_
35 #define _VHOST_NET_CDEV_H_
36 #include <stdint.h>
37 #include <stdio.h>
38 #include <sys/types.h>
39 #include <sys/queue.h>
40 #include <unistd.h>
41 #include <linux/vhost.h>
42
43 #include <rte_log.h>
44
45 #include "rte_virtio_net.h"
46
47 /* Used to indicate that the device is running on a data core */
48 #define VIRTIO_DEV_RUNNING 1
49
50 /* Backend value set by guest. */
51 #define VIRTIO_DEV_STOPPED -1
52
53 #define BUF_VECTOR_MAX 256
54
55 /**
56  * Structure contains buffer address, length and descriptor index
57  * from vring to do scatter RX.
58  */
59 struct buf_vector {
60         uint64_t buf_addr;
61         uint32_t buf_len;
62         uint32_t desc_idx;
63 };
64
65 /*
66  * A structure to hold some fields needed in zero copy code path,
67  * mainly for associating an mbuf with the right desc_idx.
68  */
69 struct zcopy_mbuf {
70         struct rte_mbuf *mbuf;
71         uint32_t desc_idx;
72         uint16_t in_use;
73
74         TAILQ_ENTRY(zcopy_mbuf) next;
75 };
76 TAILQ_HEAD(zcopy_mbuf_list, zcopy_mbuf);
77
78 /**
79  * Structure contains variables relevant to RX/TX virtqueues.
80  */
81 struct vhost_virtqueue {
82         struct vring_desc       *desc;
83         struct vring_avail      *avail;
84         struct vring_used       *used;
85         uint32_t                size;
86
87         uint16_t                last_avail_idx;
88         uint16_t                last_used_idx;
89 #define VIRTIO_INVALID_EVENTFD          (-1)
90 #define VIRTIO_UNINITIALIZED_EVENTFD    (-2)
91
92         /* Backend value to determine if device should started/stopped */
93         int                     backend;
94         rte_spinlock_t          access_lock;
95
96         /* Used to notify the guest (trigger interrupt) */
97         int                     callfd;
98         /* Currently unused as polling mode is enabled */
99         int                     kickfd;
100         int                     enabled;
101
102         /* Physical address of used ring, for logging */
103         uint64_t                log_guest_addr;
104
105         uint16_t                nr_zmbuf;
106         uint16_t                zmbuf_size;
107         uint16_t                last_zmbuf_idx;
108         struct zcopy_mbuf       *zmbufs;
109         struct zcopy_mbuf_list  zmbuf_list;
110
111         struct vring_used_elem  *shadow_used_ring;
112         uint16_t                shadow_used_idx;
113 } __rte_cache_aligned;
114
115 /* Old kernels have no such macros defined */
116 #ifndef VIRTIO_NET_F_GUEST_ANNOUNCE
117  #define VIRTIO_NET_F_GUEST_ANNOUNCE 21
118 #endif
119
120 #ifndef VIRTIO_NET_F_MQ
121  #define VIRTIO_NET_F_MQ                22
122 #endif
123 #define VHOST_MAX_QUEUE_PAIRS           0x80
124
125 /*
126  * Define virtio 1.0 for older kernels
127  */
128 #ifndef VIRTIO_F_VERSION_1
129  #define VIRTIO_F_VERSION_1 32
130 #endif
131
132 struct guest_page {
133         uint64_t guest_phys_addr;
134         uint64_t host_phys_addr;
135         uint64_t size;
136 };
137
138 /**
139  * Device structure contains all configuration information relating
140  * to the device.
141  */
142 struct virtio_net {
143         /* Frontend (QEMU) memory and memory region information */
144         struct virtio_memory    *mem;
145         uint64_t                features;
146         uint64_t                protocol_features;
147         int                     vid;
148         uint32_t                flags;
149         uint16_t                vhost_hlen;
150         /* to tell if we need broadcast rarp packet */
151         rte_atomic16_t          broadcast_rarp;
152         uint32_t                virt_qp_nb;
153         int                     dequeue_zero_copy;
154         struct vhost_virtqueue  *virtqueue[VHOST_MAX_QUEUE_PAIRS * 2];
155 #define IF_NAME_SZ (PATH_MAX > IFNAMSIZ ? PATH_MAX : IFNAMSIZ)
156         char                    ifname[IF_NAME_SZ];
157         uint64_t                log_size;
158         uint64_t                log_base;
159         uint64_t                log_addr;
160         struct ether_addr       mac;
161
162         uint32_t                nr_guest_pages;
163         uint32_t                max_guest_pages;
164         struct guest_page       *guest_pages;
165 } __rte_cache_aligned;
166
167 /**
168  * Information relating to memory regions including offsets to
169  * addresses in QEMUs memory file.
170  */
171 struct virtio_memory_region {
172         uint64_t guest_phys_addr;
173         uint64_t guest_user_addr;
174         uint64_t host_user_addr;
175         uint64_t size;
176         void     *mmap_addr;
177         uint64_t mmap_size;
178         int fd;
179 };
180
181
182 /**
183  * Memory structure includes region and mapping information.
184  */
185 struct virtio_memory {
186         uint32_t nregions;
187         struct virtio_memory_region regions[0];
188 };
189
190
191 /* Macros for printing using RTE_LOG */
192 #define RTE_LOGTYPE_VHOST_CONFIG RTE_LOGTYPE_USER1
193 #define RTE_LOGTYPE_VHOST_DATA   RTE_LOGTYPE_USER1
194
195 #ifdef RTE_LIBRTE_VHOST_DEBUG
196 #define VHOST_MAX_PRINT_BUFF 6072
197 #define LOG_LEVEL RTE_LOG_DEBUG
198 #define LOG_DEBUG(log_type, fmt, args...) RTE_LOG(DEBUG, log_type, fmt, ##args)
199 #define PRINT_PACKET(device, addr, size, header) do { \
200         char *pkt_addr = (char *)(addr); \
201         unsigned int index; \
202         char packet[VHOST_MAX_PRINT_BUFF]; \
203         \
204         if ((header)) \
205                 snprintf(packet, VHOST_MAX_PRINT_BUFF, "(%d) Header size %d: ", (device->vid), (size)); \
206         else \
207                 snprintf(packet, VHOST_MAX_PRINT_BUFF, "(%d) Packet size %d: ", (device->vid), (size)); \
208         for (index = 0; index < (size); index++) { \
209                 snprintf(packet + strnlen(packet, VHOST_MAX_PRINT_BUFF), VHOST_MAX_PRINT_BUFF - strnlen(packet, VHOST_MAX_PRINT_BUFF), \
210                         "%02hhx ", pkt_addr[index]); \
211         } \
212         snprintf(packet + strnlen(packet, VHOST_MAX_PRINT_BUFF), VHOST_MAX_PRINT_BUFF - strnlen(packet, VHOST_MAX_PRINT_BUFF), "\n"); \
213         \
214         LOG_DEBUG(VHOST_DATA, "%s", packet); \
215 } while (0)
216 #else
217 #define LOG_LEVEL RTE_LOG_INFO
218 #define LOG_DEBUG(log_type, fmt, args...) do {} while (0)
219 #define PRINT_PACKET(device, addr, size, header) do {} while (0)
220 #endif
221
222 extern uint64_t VHOST_FEATURES;
223 #define MAX_VHOST_DEVICE        1024
224 extern struct virtio_net *vhost_devices[MAX_VHOST_DEVICE];
225
226 /* Convert guest physical Address to host virtual address */
227 static inline uint64_t __attribute__((always_inline))
228 gpa_to_vva(struct virtio_net *dev, uint64_t gpa, uint64_t *len)
229 {
230         struct virtio_memory_region *r;
231         uint32_t i;
232
233         for (i = 0; i < dev->mem->nregions; i++) {
234                 r = &dev->mem->regions[i];
235                 if (gpa >= r->guest_phys_addr &&
236                     gpa <  r->guest_phys_addr + r->size) {
237
238                         if (unlikely(*len > r->guest_phys_addr + r->size - gpa))
239                                 *len = r->guest_phys_addr + r->size - gpa;
240
241                         return gpa - r->guest_phys_addr +
242                                r->host_user_addr;
243                 }
244         }
245         *len = 0;
246
247         return 0;
248 }
249
250 /* Convert guest physical address to host physical address */
251 static inline phys_addr_t __attribute__((always_inline))
252 gpa_to_hpa(struct virtio_net *dev, uint64_t gpa, uint64_t size)
253 {
254         uint32_t i;
255         struct guest_page *page;
256
257         for (i = 0; i < dev->nr_guest_pages; i++) {
258                 page = &dev->guest_pages[i];
259
260                 if (gpa >= page->guest_phys_addr &&
261                     gpa + size < page->guest_phys_addr + page->size) {
262                         return gpa - page->guest_phys_addr +
263                                page->host_phys_addr;
264                 }
265         }
266
267         return 0;
268 }
269
270 struct virtio_net_device_ops const *notify_ops;
271 struct virtio_net *get_device(int vid);
272
273 int vhost_new_device(void);
274 void cleanup_device(struct virtio_net *dev, int destroy);
275 void reset_device(struct virtio_net *dev);
276 void vhost_destroy_device(int);
277
278 int alloc_vring_queue_pair(struct virtio_net *dev, uint32_t qp_idx);
279
280 void vhost_set_ifname(int, const char *if_name, unsigned int if_len);
281 void vhost_enable_dequeue_zero_copy(int vid);
282
283 /*
284  * Backend-specific cleanup.
285  *
286  * TODO: fix it; we have one backend now
287  */
288 void vhost_backend_cleanup(struct virtio_net *dev);
289
290 #endif /* _VHOST_NET_CDEV_H_ */