vhost: support MTU protocol feature
[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         /* Used to notify the guest (trigger interrupt) */
95         int                     callfd;
96         /* Currently unused as polling mode is enabled */
97         int                     kickfd;
98         int                     enabled;
99
100         /* Physical address of used ring, for logging */
101         uint64_t                log_guest_addr;
102
103         uint16_t                nr_zmbuf;
104         uint16_t                zmbuf_size;
105         uint16_t                last_zmbuf_idx;
106         struct zcopy_mbuf       *zmbufs;
107         struct zcopy_mbuf_list  zmbuf_list;
108
109         struct vring_used_elem  *shadow_used_ring;
110         uint16_t                shadow_used_idx;
111 } __rte_cache_aligned;
112
113 /* Old kernels have no such macros defined */
114 #ifndef VIRTIO_NET_F_GUEST_ANNOUNCE
115  #define VIRTIO_NET_F_GUEST_ANNOUNCE 21
116 #endif
117
118 #ifndef VIRTIO_NET_F_MQ
119  #define VIRTIO_NET_F_MQ                22
120 #endif
121 #define VHOST_MAX_QUEUE_PAIRS           0x80
122
123 #ifndef VIRTIO_NET_F_MTU
124  #define VIRTIO_NET_F_MTU 3
125 #endif
126
127 /*
128  * Define virtio 1.0 for older kernels
129  */
130 #ifndef VIRTIO_F_VERSION_1
131  #define VIRTIO_F_VERSION_1 32
132 #endif
133
134 struct guest_page {
135         uint64_t guest_phys_addr;
136         uint64_t host_phys_addr;
137         uint64_t size;
138 };
139
140 /**
141  * Device structure contains all configuration information relating
142  * to the device.
143  */
144 struct virtio_net {
145         /* Frontend (QEMU) memory and memory region information */
146         struct virtio_memory    *mem;
147         uint64_t                features;
148         uint64_t                protocol_features;
149         int                     vid;
150         uint32_t                flags;
151         uint16_t                vhost_hlen;
152         /* to tell if we need broadcast rarp packet */
153         rte_atomic16_t          broadcast_rarp;
154         uint32_t                virt_qp_nb;
155         int                     dequeue_zero_copy;
156         struct vhost_virtqueue  *virtqueue[VHOST_MAX_QUEUE_PAIRS * 2];
157 #define IF_NAME_SZ (PATH_MAX > IFNAMSIZ ? PATH_MAX : IFNAMSIZ)
158         char                    ifname[IF_NAME_SZ];
159         uint64_t                log_size;
160         uint64_t                log_base;
161         uint64_t                log_addr;
162         struct ether_addr       mac;
163         uint16_t                mtu;
164
165         uint32_t                nr_guest_pages;
166         uint32_t                max_guest_pages;
167         struct guest_page       *guest_pages;
168 } __rte_cache_aligned;
169
170 /**
171  * Information relating to memory regions including offsets to
172  * addresses in QEMUs memory file.
173  */
174 struct virtio_memory_region {
175         uint64_t guest_phys_addr;
176         uint64_t guest_user_addr;
177         uint64_t host_user_addr;
178         uint64_t size;
179         void     *mmap_addr;
180         uint64_t mmap_size;
181         int fd;
182 };
183
184
185 /**
186  * Memory structure includes region and mapping information.
187  */
188 struct virtio_memory {
189         uint32_t nregions;
190         struct virtio_memory_region regions[0];
191 };
192
193
194 /* Macros for printing using RTE_LOG */
195 #define RTE_LOGTYPE_VHOST_CONFIG RTE_LOGTYPE_USER1
196 #define RTE_LOGTYPE_VHOST_DATA   RTE_LOGTYPE_USER1
197
198 #ifdef RTE_LIBRTE_VHOST_DEBUG
199 #define VHOST_MAX_PRINT_BUFF 6072
200 #define LOG_LEVEL RTE_LOG_DEBUG
201 #define LOG_DEBUG(log_type, fmt, args...) RTE_LOG(DEBUG, log_type, fmt, ##args)
202 #define PRINT_PACKET(device, addr, size, header) do { \
203         char *pkt_addr = (char *)(addr); \
204         unsigned int index; \
205         char packet[VHOST_MAX_PRINT_BUFF]; \
206         \
207         if ((header)) \
208                 snprintf(packet, VHOST_MAX_PRINT_BUFF, "(%d) Header size %d: ", (device->vid), (size)); \
209         else \
210                 snprintf(packet, VHOST_MAX_PRINT_BUFF, "(%d) Packet size %d: ", (device->vid), (size)); \
211         for (index = 0; index < (size); index++) { \
212                 snprintf(packet + strnlen(packet, VHOST_MAX_PRINT_BUFF), VHOST_MAX_PRINT_BUFF - strnlen(packet, VHOST_MAX_PRINT_BUFF), \
213                         "%02hhx ", pkt_addr[index]); \
214         } \
215         snprintf(packet + strnlen(packet, VHOST_MAX_PRINT_BUFF), VHOST_MAX_PRINT_BUFF - strnlen(packet, VHOST_MAX_PRINT_BUFF), "\n"); \
216         \
217         LOG_DEBUG(VHOST_DATA, "%s", packet); \
218 } while (0)
219 #else
220 #define LOG_LEVEL RTE_LOG_INFO
221 #define LOG_DEBUG(log_type, fmt, args...) do {} while (0)
222 #define PRINT_PACKET(device, addr, size, header) do {} while (0)
223 #endif
224
225 extern uint64_t VHOST_FEATURES;
226 #define MAX_VHOST_DEVICE        1024
227 extern struct virtio_net *vhost_devices[MAX_VHOST_DEVICE];
228
229 /* Convert guest physical Address to host virtual address */
230 static inline uint64_t __attribute__((always_inline))
231 gpa_to_vva(struct virtio_net *dev, uint64_t gpa)
232 {
233         struct virtio_memory_region *reg;
234         uint32_t i;
235
236         for (i = 0; i < dev->mem->nregions; i++) {
237                 reg = &dev->mem->regions[i];
238                 if (gpa >= reg->guest_phys_addr &&
239                     gpa <  reg->guest_phys_addr + reg->size) {
240                         return gpa - reg->guest_phys_addr +
241                                reg->host_user_addr;
242                 }
243         }
244
245         return 0;
246 }
247
248 /* Convert guest physical address to host physical address */
249 static inline phys_addr_t __attribute__((always_inline))
250 gpa_to_hpa(struct virtio_net *dev, uint64_t gpa, uint64_t size)
251 {
252         uint32_t i;
253         struct guest_page *page;
254
255         for (i = 0; i < dev->nr_guest_pages; i++) {
256                 page = &dev->guest_pages[i];
257
258                 if (gpa >= page->guest_phys_addr &&
259                     gpa + size < page->guest_phys_addr + page->size) {
260                         return gpa - page->guest_phys_addr +
261                                page->host_phys_addr;
262                 }
263         }
264
265         return 0;
266 }
267
268 struct virtio_net_device_ops const *notify_ops;
269 struct virtio_net *get_device(int vid);
270
271 int vhost_new_device(void);
272 void cleanup_device(struct virtio_net *dev, int destroy);
273 void reset_device(struct virtio_net *dev);
274 void vhost_destroy_device(int);
275
276 int alloc_vring_queue_pair(struct virtio_net *dev, uint32_t qp_idx);
277
278 void vhost_set_ifname(int, const char *if_name, unsigned int if_len);
279 void vhost_enable_dequeue_zero_copy(int vid);
280
281 /*
282  * Backend-specific cleanup.
283  *
284  * TODO: fix it; we have one backend now
285  */
286 void vhost_backend_cleanup(struct virtio_net *dev);
287
288 #endif /* _VHOST_NET_CDEV_H_ */