202e1969430bba06814b86500c65b840d194c751
[dpdk.git] / lib / librte_vhost / virtio-net.c
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 #include <linux/vhost.h>
35 #include <linux/virtio_net.h>
36 #include <stddef.h>
37 #include <stdint.h>
38 #include <stdlib.h>
39 #include <assert.h>
40 #include <sys/mman.h>
41 #include <unistd.h>
42 #ifdef RTE_LIBRTE_VHOST_NUMA
43 #include <numaif.h>
44 #endif
45
46 #include <sys/socket.h>
47
48 #include <rte_ethdev.h>
49 #include <rte_log.h>
50 #include <rte_string_fns.h>
51 #include <rte_memory.h>
52 #include <rte_malloc.h>
53 #include <rte_virtio_net.h>
54
55 #include "vhost-net.h"
56 #include "virtio-net.h"
57
58 #define MAX_VHOST_DEVICE        1024
59 static struct virtio_net *vhost_devices[MAX_VHOST_DEVICE];
60
61 /* device ops to add/remove device to/from data core. */
62 struct virtio_net_device_ops const *notify_ops;
63
64 #define VHOST_USER_F_PROTOCOL_FEATURES  30
65
66 /* Features supported by this lib. */
67 #define VHOST_SUPPORTED_FEATURES ((1ULL << VIRTIO_NET_F_MRG_RXBUF) | \
68                                 (1ULL << VIRTIO_NET_F_CTRL_VQ) | \
69                                 (1ULL << VIRTIO_NET_F_CTRL_RX) | \
70                                 (1ULL << VIRTIO_NET_F_GUEST_ANNOUNCE) | \
71                                 (VHOST_SUPPORTS_MQ)            | \
72                                 (1ULL << VIRTIO_F_VERSION_1)   | \
73                                 (1ULL << VHOST_F_LOG_ALL)      | \
74                                 (1ULL << VHOST_USER_F_PROTOCOL_FEATURES) | \
75                                 (1ULL << VIRTIO_NET_F_HOST_TSO4) | \
76                                 (1ULL << VIRTIO_NET_F_HOST_TSO6) | \
77                                 (1ULL << VIRTIO_NET_F_CSUM)    | \
78                                 (1ULL << VIRTIO_NET_F_GUEST_CSUM) | \
79                                 (1ULL << VIRTIO_NET_F_GUEST_TSO4) | \
80                                 (1ULL << VIRTIO_NET_F_GUEST_TSO6))
81
82 static uint64_t VHOST_FEATURES = VHOST_SUPPORTED_FEATURES;
83
84
85 /*
86  * Converts QEMU virtual address to Vhost virtual address. This function is
87  * used to convert the ring addresses to our address space.
88  */
89 static uint64_t
90 qva_to_vva(struct virtio_net *dev, uint64_t qemu_va)
91 {
92         struct virtio_memory_regions *region;
93         uint64_t vhost_va = 0;
94         uint32_t regionidx = 0;
95
96         /* Find the region where the address lives. */
97         for (regionidx = 0; regionidx < dev->mem->nregions; regionidx++) {
98                 region = &dev->mem->regions[regionidx];
99                 if ((qemu_va >= region->userspace_address) &&
100                         (qemu_va <= region->userspace_address +
101                         region->memory_size)) {
102                         vhost_va = qemu_va + region->guest_phys_address +
103                                 region->address_offset -
104                                 region->userspace_address;
105                         break;
106                 }
107         }
108         return vhost_va;
109 }
110
111
112 struct virtio_net *
113 get_device(struct vhost_device_ctx ctx)
114 {
115         struct virtio_net *dev = vhost_devices[ctx.fh];
116
117         if (unlikely(!dev)) {
118                 RTE_LOG(ERR, VHOST_CONFIG,
119                         "(%d) device not found.\n", ctx.fh);
120         }
121
122         return dev;
123 }
124
125 static void
126 cleanup_vq(struct vhost_virtqueue *vq, int destroy)
127 {
128         if ((vq->callfd >= 0) && (destroy != 0))
129                 close(vq->callfd);
130         if (vq->kickfd >= 0)
131                 close(vq->kickfd);
132 }
133
134 /*
135  * Unmap any memory, close any file descriptors and
136  * free any memory owned by a device.
137  */
138 static void
139 cleanup_device(struct virtio_net *dev, int destroy)
140 {
141         uint32_t i;
142
143         vhost_backend_cleanup(dev);
144
145         for (i = 0; i < dev->virt_qp_nb; i++) {
146                 cleanup_vq(dev->virtqueue[i * VIRTIO_QNUM + VIRTIO_RXQ], destroy);
147                 cleanup_vq(dev->virtqueue[i * VIRTIO_QNUM + VIRTIO_TXQ], destroy);
148         }
149 }
150
151 /*
152  * Release virtqueues and device memory.
153  */
154 static void
155 free_device(struct virtio_net *dev)
156 {
157         uint32_t i;
158
159         for (i = 0; i < dev->virt_qp_nb; i++)
160                 rte_free(dev->virtqueue[i * VIRTIO_QNUM]);
161
162         rte_free(dev);
163 }
164
165 static void
166 init_vring_queue(struct vhost_virtqueue *vq, int qp_idx)
167 {
168         memset(vq, 0, sizeof(struct vhost_virtqueue));
169
170         vq->kickfd = VIRTIO_UNINITIALIZED_EVENTFD;
171         vq->callfd = VIRTIO_UNINITIALIZED_EVENTFD;
172
173         /* Backends are set to -1 indicating an inactive device. */
174         vq->backend = -1;
175
176         /* always set the default vq pair to enabled */
177         if (qp_idx == 0)
178                 vq->enabled = 1;
179 }
180
181 static void
182 init_vring_queue_pair(struct virtio_net *dev, uint32_t qp_idx)
183 {
184         uint32_t base_idx = qp_idx * VIRTIO_QNUM;
185
186         init_vring_queue(dev->virtqueue[base_idx + VIRTIO_RXQ], qp_idx);
187         init_vring_queue(dev->virtqueue[base_idx + VIRTIO_TXQ], qp_idx);
188 }
189
190 static void
191 reset_vring_queue(struct vhost_virtqueue *vq, int qp_idx)
192 {
193         int callfd;
194
195         callfd = vq->callfd;
196         init_vring_queue(vq, qp_idx);
197         vq->callfd = callfd;
198 }
199
200 static void
201 reset_vring_queue_pair(struct virtio_net *dev, uint32_t qp_idx)
202 {
203         uint32_t base_idx = qp_idx * VIRTIO_QNUM;
204
205         reset_vring_queue(dev->virtqueue[base_idx + VIRTIO_RXQ], qp_idx);
206         reset_vring_queue(dev->virtqueue[base_idx + VIRTIO_TXQ], qp_idx);
207 }
208
209 static int
210 alloc_vring_queue_pair(struct virtio_net *dev, uint32_t qp_idx)
211 {
212         struct vhost_virtqueue *virtqueue = NULL;
213         uint32_t virt_rx_q_idx = qp_idx * VIRTIO_QNUM + VIRTIO_RXQ;
214         uint32_t virt_tx_q_idx = qp_idx * VIRTIO_QNUM + VIRTIO_TXQ;
215
216         virtqueue = rte_malloc(NULL,
217                                sizeof(struct vhost_virtqueue) * VIRTIO_QNUM, 0);
218         if (virtqueue == NULL) {
219                 RTE_LOG(ERR, VHOST_CONFIG,
220                         "Failed to allocate memory for virt qp:%d.\n", qp_idx);
221                 return -1;
222         }
223
224         dev->virtqueue[virt_rx_q_idx] = virtqueue;
225         dev->virtqueue[virt_tx_q_idx] = virtqueue + VIRTIO_TXQ;
226
227         init_vring_queue_pair(dev, qp_idx);
228
229         dev->virt_qp_nb += 1;
230
231         return 0;
232 }
233
234 /*
235  * Reset some variables in device structure, while keeping few
236  * others untouched, such as device_fh, ifname, virt_qp_nb: they
237  * should be same unless the device is removed.
238  */
239 static void
240 reset_device(struct virtio_net *dev)
241 {
242         uint32_t i;
243
244         dev->features = 0;
245         dev->protocol_features = 0;
246         dev->flags = 0;
247
248         for (i = 0; i < dev->virt_qp_nb; i++)
249                 reset_vring_queue_pair(dev, i);
250 }
251
252 /*
253  * Function is called from the CUSE open function. The device structure is
254  * initialised and a new entry is added to the device configuration linked
255  * list.
256  */
257 int
258 vhost_new_device(struct vhost_device_ctx ctx)
259 {
260         struct virtio_net *dev;
261         int i;
262
263         dev = rte_zmalloc(NULL, sizeof(struct virtio_net), 0);
264         if (dev == NULL) {
265                 RTE_LOG(ERR, VHOST_CONFIG,
266                         "(%d) failed to allocate memory for dev.\n", ctx.fh);
267                 return -1;
268         }
269
270         for (i = 0; i < MAX_VHOST_DEVICE; i++) {
271                 if (vhost_devices[i] == NULL)
272                         break;
273         }
274         if (i == MAX_VHOST_DEVICE) {
275                 RTE_LOG(ERR, VHOST_CONFIG,
276                         "Failed to find a free slot for new device.\n");
277                 return -1;
278         }
279
280         vhost_devices[i] = dev;
281         dev->device_fh   = i;
282
283         return i;
284 }
285
286 /*
287  * Function is called from the CUSE release function. This function will
288  * cleanup the device and remove it from device configuration linked list.
289  */
290 void
291 vhost_destroy_device(struct vhost_device_ctx ctx)
292 {
293         struct virtio_net *dev = get_device(ctx);
294
295         if (dev == NULL)
296                 return;
297
298         if (dev->flags & VIRTIO_DEV_RUNNING) {
299                 dev->flags &= ~VIRTIO_DEV_RUNNING;
300                 notify_ops->destroy_device(dev);
301         }
302
303         cleanup_device(dev, 1);
304         free_device(dev);
305
306         vhost_devices[ctx.fh] = NULL;
307 }
308
309 void
310 vhost_set_ifname(struct vhost_device_ctx ctx,
311         const char *if_name, unsigned int if_len)
312 {
313         struct virtio_net *dev;
314         unsigned int len;
315
316         dev = get_device(ctx);
317         if (dev == NULL)
318                 return;
319
320         len = if_len > sizeof(dev->ifname) ?
321                 sizeof(dev->ifname) : if_len;
322
323         strncpy(dev->ifname, if_name, len);
324         dev->ifname[sizeof(dev->ifname) - 1] = '\0';
325 }
326
327
328 /*
329  * Called from CUSE IOCTL: VHOST_SET_OWNER
330  * This function just returns success at the moment unless
331  * the device hasn't been initialised.
332  */
333 int
334 vhost_set_owner(struct vhost_device_ctx ctx)
335 {
336         struct virtio_net *dev;
337
338         dev = get_device(ctx);
339         if (dev == NULL)
340                 return -1;
341
342         return 0;
343 }
344
345 /*
346  * Called from CUSE IOCTL: VHOST_RESET_OWNER
347  */
348 int
349 vhost_reset_owner(struct vhost_device_ctx ctx)
350 {
351         struct virtio_net *dev;
352
353         dev = get_device(ctx);
354         if (dev == NULL)
355                 return -1;
356
357         if (dev->flags & VIRTIO_DEV_RUNNING) {
358                 dev->flags &= ~VIRTIO_DEV_RUNNING;
359                 notify_ops->destroy_device(dev);
360         }
361
362         cleanup_device(dev, 0);
363         reset_device(dev);
364         return 0;
365 }
366
367 /*
368  * Called from CUSE IOCTL: VHOST_GET_FEATURES
369  * The features that we support are requested.
370  */
371 int
372 vhost_get_features(struct vhost_device_ctx ctx, uint64_t *pu)
373 {
374         struct virtio_net *dev;
375
376         dev = get_device(ctx);
377         if (dev == NULL)
378                 return -1;
379
380         /* Send our supported features. */
381         *pu = VHOST_FEATURES;
382         return 0;
383 }
384
385 /*
386  * Called from CUSE IOCTL: VHOST_SET_FEATURES
387  * We receive the negotiated features supported by us and the virtio device.
388  */
389 int
390 vhost_set_features(struct vhost_device_ctx ctx, uint64_t *pu)
391 {
392         struct virtio_net *dev;
393         uint16_t vhost_hlen;
394         uint16_t i;
395
396         dev = get_device(ctx);
397         if (dev == NULL)
398                 return -1;
399         if (*pu & ~VHOST_FEATURES)
400                 return -1;
401
402         dev->features = *pu;
403         if (dev->features &
404                 ((1 << VIRTIO_NET_F_MRG_RXBUF) | (1ULL << VIRTIO_F_VERSION_1))) {
405                 vhost_hlen = sizeof(struct virtio_net_hdr_mrg_rxbuf);
406         } else {
407                 vhost_hlen = sizeof(struct virtio_net_hdr);
408         }
409         LOG_DEBUG(VHOST_CONFIG,
410                 "(%d) mergeable RX buffers %s, virtio 1 %s\n",
411                 dev->device_fh,
412                 (dev->features & (1 << VIRTIO_NET_F_MRG_RXBUF)) ? "on" : "off",
413                 (dev->features & (1ULL << VIRTIO_F_VERSION_1)) ? "on" : "off");
414
415         for (i = 0; i < dev->virt_qp_nb; i++) {
416                 uint16_t base_idx = i * VIRTIO_QNUM;
417
418                 dev->virtqueue[base_idx + VIRTIO_RXQ]->vhost_hlen = vhost_hlen;
419                 dev->virtqueue[base_idx + VIRTIO_TXQ]->vhost_hlen = vhost_hlen;
420         }
421
422         return 0;
423 }
424
425 /*
426  * Called from CUSE IOCTL: VHOST_SET_VRING_NUM
427  * The virtio device sends us the size of the descriptor ring.
428  */
429 int
430 vhost_set_vring_num(struct vhost_device_ctx ctx,
431         struct vhost_vring_state *state)
432 {
433         struct virtio_net *dev;
434
435         dev = get_device(ctx);
436         if (dev == NULL)
437                 return -1;
438
439         /* State->index refers to the queue index. The txq is 1, rxq is 0. */
440         dev->virtqueue[state->index]->size = state->num;
441
442         return 0;
443 }
444
445 /*
446  * Reallocate virtio_dev and vhost_virtqueue data structure to make them on the
447  * same numa node as the memory of vring descriptor.
448  */
449 #ifdef RTE_LIBRTE_VHOST_NUMA
450 static struct virtio_net*
451 numa_realloc(struct virtio_net *dev, int index)
452 {
453         int oldnode, newnode;
454         struct virtio_net *old_dev;
455         struct vhost_virtqueue *old_vq, *vq;
456         int ret;
457
458         /*
459          * vq is allocated on pairs, we should try to do realloc
460          * on first queue of one queue pair only.
461          */
462         if (index % VIRTIO_QNUM != 0)
463                 return dev;
464
465         old_dev = dev;
466         vq = old_vq = dev->virtqueue[index];
467
468         ret = get_mempolicy(&newnode, NULL, 0, old_vq->desc,
469                             MPOL_F_NODE | MPOL_F_ADDR);
470
471         /* check if we need to reallocate vq */
472         ret |= get_mempolicy(&oldnode, NULL, 0, old_vq,
473                              MPOL_F_NODE | MPOL_F_ADDR);
474         if (ret) {
475                 RTE_LOG(ERR, VHOST_CONFIG,
476                         "Unable to get vq numa information.\n");
477                 return dev;
478         }
479         if (oldnode != newnode) {
480                 RTE_LOG(INFO, VHOST_CONFIG,
481                         "reallocate vq from %d to %d node\n", oldnode, newnode);
482                 vq = rte_malloc_socket(NULL, sizeof(*vq) * VIRTIO_QNUM, 0,
483                                        newnode);
484                 if (!vq)
485                         return dev;
486
487                 memcpy(vq, old_vq, sizeof(*vq) * VIRTIO_QNUM);
488                 rte_free(old_vq);
489         }
490
491         /* check if we need to reallocate dev */
492         ret = get_mempolicy(&oldnode, NULL, 0, old_dev,
493                             MPOL_F_NODE | MPOL_F_ADDR);
494         if (ret) {
495                 RTE_LOG(ERR, VHOST_CONFIG,
496                         "Unable to get dev numa information.\n");
497                 goto out;
498         }
499         if (oldnode != newnode) {
500                 RTE_LOG(INFO, VHOST_CONFIG,
501                         "reallocate dev from %d to %d node\n",
502                         oldnode, newnode);
503                 dev = rte_malloc_socket(NULL, sizeof(*dev), 0, newnode);
504                 if (!dev) {
505                         dev = old_dev;
506                         goto out;
507                 }
508
509                 memcpy(dev, old_dev, sizeof(*dev));
510                 rte_free(old_dev);
511         }
512
513 out:
514         dev->virtqueue[index] = vq;
515         dev->virtqueue[index + 1] = vq + 1;
516         vhost_devices[dev->device_fh] = dev;
517
518         return dev;
519 }
520 #else
521 static struct virtio_net*
522 numa_realloc(struct virtio_net *dev, int index __rte_unused)
523 {
524         return dev;
525 }
526 #endif
527
528 /*
529  * Called from CUSE IOCTL: VHOST_SET_VRING_ADDR
530  * The virtio device sends us the desc, used and avail ring addresses.
531  * This function then converts these to our address space.
532  */
533 int
534 vhost_set_vring_addr(struct vhost_device_ctx ctx, struct vhost_vring_addr *addr)
535 {
536         struct virtio_net *dev;
537         struct vhost_virtqueue *vq;
538
539         dev = get_device(ctx);
540         if ((dev == NULL) || (dev->mem == NULL))
541                 return -1;
542
543         /* addr->index refers to the queue index. The txq 1, rxq is 0. */
544         vq = dev->virtqueue[addr->index];
545
546         /* The addresses are converted from QEMU virtual to Vhost virtual. */
547         vq->desc = (struct vring_desc *)(uintptr_t)qva_to_vva(dev,
548                         addr->desc_user_addr);
549         if (vq->desc == 0) {
550                 RTE_LOG(ERR, VHOST_CONFIG,
551                         "(%d) failed to find desc ring address.\n",
552                         dev->device_fh);
553                 return -1;
554         }
555
556         dev = numa_realloc(dev, addr->index);
557         vq = dev->virtqueue[addr->index];
558
559         vq->avail = (struct vring_avail *)(uintptr_t)qva_to_vva(dev,
560                         addr->avail_user_addr);
561         if (vq->avail == 0) {
562                 RTE_LOG(ERR, VHOST_CONFIG,
563                         "(%d) failed to find avail ring address.\n",
564                         dev->device_fh);
565                 return -1;
566         }
567
568         vq->used = (struct vring_used *)(uintptr_t)qva_to_vva(dev,
569                         addr->used_user_addr);
570         if (vq->used == 0) {
571                 RTE_LOG(ERR, VHOST_CONFIG,
572                         "(%d) failed to find used ring address.\n",
573                         dev->device_fh);
574                 return -1;
575         }
576
577         vq->log_guest_addr = addr->log_guest_addr;
578
579         LOG_DEBUG(VHOST_CONFIG, "(%d) mapped address desc: %p\n",
580                         dev->device_fh, vq->desc);
581         LOG_DEBUG(VHOST_CONFIG, "(%d) mapped address avail: %p\n",
582                         dev->device_fh, vq->avail);
583         LOG_DEBUG(VHOST_CONFIG, "(%d) mapped address used: %p\n",
584                         dev->device_fh, vq->used);
585         LOG_DEBUG(VHOST_CONFIG, "(%d) log_guest_addr: %" PRIx64 "\n",
586                         dev->device_fh, vq->log_guest_addr);
587
588         return 0;
589 }
590
591 /*
592  * Called from CUSE IOCTL: VHOST_SET_VRING_BASE
593  * The virtio device sends us the available ring last used index.
594  */
595 int
596 vhost_set_vring_base(struct vhost_device_ctx ctx,
597         struct vhost_vring_state *state)
598 {
599         struct virtio_net *dev;
600
601         dev = get_device(ctx);
602         if (dev == NULL)
603                 return -1;
604
605         /* State->index refers to the queue index. The txq is 1, rxq is 0. */
606         dev->virtqueue[state->index]->last_used_idx = state->num;
607         dev->virtqueue[state->index]->last_used_idx_res = state->num;
608
609         return 0;
610 }
611
612 /*
613  * Called from CUSE IOCTL: VHOST_GET_VRING_BASE
614  * We send the virtio device our available ring last used index.
615  */
616 int
617 vhost_get_vring_base(struct vhost_device_ctx ctx, uint32_t index,
618         struct vhost_vring_state *state)
619 {
620         struct virtio_net *dev;
621
622         dev = get_device(ctx);
623         if (dev == NULL)
624                 return -1;
625
626         state->index = index;
627         /* State->index refers to the queue index. The txq is 1, rxq is 0. */
628         state->num = dev->virtqueue[state->index]->last_used_idx;
629
630         return 0;
631 }
632
633
634 /*
635  * Called from CUSE IOCTL: VHOST_SET_VRING_CALL
636  * The virtio device sends an eventfd to interrupt the guest. This fd gets
637  * copied into our process space.
638  */
639 int
640 vhost_set_vring_call(struct vhost_device_ctx ctx, struct vhost_vring_file *file)
641 {
642         struct virtio_net *dev;
643         struct vhost_virtqueue *vq;
644         uint32_t cur_qp_idx = file->index / VIRTIO_QNUM;
645
646         dev = get_device(ctx);
647         if (dev == NULL)
648                 return -1;
649
650         /*
651          * FIXME: VHOST_SET_VRING_CALL is the first per-vring message
652          * we get, so we do vring queue pair allocation here.
653          */
654         if (cur_qp_idx + 1 > dev->virt_qp_nb) {
655                 if (alloc_vring_queue_pair(dev, cur_qp_idx) < 0)
656                         return -1;
657         }
658
659         /* file->index refers to the queue index. The txq is 1, rxq is 0. */
660         vq = dev->virtqueue[file->index];
661         assert(vq != NULL);
662
663         if (vq->callfd >= 0)
664                 close(vq->callfd);
665
666         vq->callfd = file->fd;
667
668         return 0;
669 }
670
671 /*
672  * Called from CUSE IOCTL: VHOST_SET_VRING_KICK
673  * The virtio device sends an eventfd that it can use to notify us.
674  * This fd gets copied into our process space.
675  */
676 int
677 vhost_set_vring_kick(struct vhost_device_ctx ctx, struct vhost_vring_file *file)
678 {
679         struct virtio_net *dev;
680         struct vhost_virtqueue *vq;
681
682         dev = get_device(ctx);
683         if (dev == NULL)
684                 return -1;
685
686         /* file->index refers to the queue index. The txq is 1, rxq is 0. */
687         vq = dev->virtqueue[file->index];
688
689         if (vq->kickfd >= 0)
690                 close(vq->kickfd);
691
692         vq->kickfd = file->fd;
693
694         return 0;
695 }
696
697 /*
698  * Called from CUSE IOCTL: VHOST_NET_SET_BACKEND
699  * To complete device initialisation when the virtio driver is loaded,
700  * we are provided with a valid fd for a tap device (not used by us).
701  * If this happens then we can add the device to a data core.
702  * When the virtio driver is removed we get fd=-1.
703  * At that point we remove the device from the data core.
704  * The device will still exist in the device configuration linked list.
705  */
706 int
707 vhost_set_backend(struct vhost_device_ctx ctx, struct vhost_vring_file *file)
708 {
709         struct virtio_net *dev;
710
711         dev = get_device(ctx);
712         if (dev == NULL)
713                 return -1;
714
715         /* file->index refers to the queue index. The txq is 1, rxq is 0. */
716         dev->virtqueue[file->index]->backend = file->fd;
717
718         /*
719          * If the device isn't already running and both backend fds are set,
720          * we add the device.
721          */
722         if (!(dev->flags & VIRTIO_DEV_RUNNING)) {
723                 if (dev->virtqueue[VIRTIO_TXQ]->backend != VIRTIO_DEV_STOPPED &&
724                     dev->virtqueue[VIRTIO_RXQ]->backend != VIRTIO_DEV_STOPPED) {
725                         if (notify_ops->new_device(dev) < 0)
726                                 return -1;
727                         dev->flags |= VIRTIO_DEV_RUNNING;
728                 }
729         } else if (file->fd == VIRTIO_DEV_STOPPED) {
730                 dev->flags &= ~VIRTIO_DEV_RUNNING;
731                 notify_ops->destroy_device(dev);
732         }
733
734         return 0;
735 }
736
737 int rte_vhost_enable_guest_notification(struct virtio_net *dev,
738         uint16_t queue_id, int enable)
739 {
740         if (enable) {
741                 RTE_LOG(ERR, VHOST_CONFIG,
742                         "guest notification isn't supported.\n");
743                 return -1;
744         }
745
746         dev->virtqueue[queue_id]->used->flags = VRING_USED_F_NO_NOTIFY;
747         return 0;
748 }
749
750 uint64_t rte_vhost_feature_get(void)
751 {
752         return VHOST_FEATURES;
753 }
754
755 int rte_vhost_feature_disable(uint64_t feature_mask)
756 {
757         VHOST_FEATURES = VHOST_FEATURES & ~feature_mask;
758         return 0;
759 }
760
761 int rte_vhost_feature_enable(uint64_t feature_mask)
762 {
763         if ((feature_mask & VHOST_SUPPORTED_FEATURES) == feature_mask) {
764                 VHOST_FEATURES = VHOST_FEATURES | feature_mask;
765                 return 0;
766         }
767         return -1;
768 }
769
770 /*
771  * Register ops so that we can add/remove device to data core.
772  */
773 int
774 rte_vhost_driver_callback_register(struct virtio_net_device_ops const * const ops)
775 {
776         notify_ops = ops;
777
778         return 0;
779 }