vhost.c 38.6 KB
Newer Older
M
Michael S. Tsirkin 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * vhost support
 *
 * Copyright Red Hat, Inc. 2010
 *
 * Authors:
 *  Michael S. Tsirkin <mst@redhat.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
11 12 13
 *
 * Contributions after 2012-01-13 are licensed under the terms of the
 * GNU GPL, version 2 or (at your option) any later version.
M
Michael S. Tsirkin 已提交
14 15
 */

P
Peter Maydell 已提交
16
#include "qemu/osdep.h"
P
Paolo Bonzini 已提交
17
#include "hw/virtio/vhost.h"
M
Michael S. Tsirkin 已提交
18
#include "hw/hw.h"
19
#include "qemu/atomic.h"
20
#include "qemu/range.h"
21
#include "qemu/error-report.h"
M
Marc-André Lureau 已提交
22
#include "qemu/memfd.h"
23
#include <linux/vhost.h>
24
#include "exec/address-spaces.h"
K
KONRAD Frederic 已提交
25
#include "hw/virtio/virtio-bus.h"
26
#include "hw/virtio/virtio-access.h"
27
#include "migration/migration.h"
M
Michael S. Tsirkin 已提交
28

J
Jason Wang 已提交
29
static struct vhost_log *vhost_log;
M
Marc-André Lureau 已提交
30
static struct vhost_log *vhost_log_shm;
J
Jason Wang 已提交
31

32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
static unsigned int used_memslots;
static QLIST_HEAD(, vhost_dev) vhost_devices =
    QLIST_HEAD_INITIALIZER(vhost_devices);

bool vhost_has_free_slot(void)
{
    unsigned int slots_limit = ~0U;
    struct vhost_dev *hdev;

    QLIST_FOREACH(hdev, &vhost_devices, entry) {
        unsigned int r = hdev->vhost_ops->vhost_backend_memslots_limit(hdev);
        slots_limit = MIN(slots_limit, r);
    }
    return slots_limit > used_memslots;
}

M
Michael S. Tsirkin 已提交
48
static void vhost_dev_sync_region(struct vhost_dev *dev,
49
                                  MemoryRegionSection *section,
M
Michael S. Tsirkin 已提交
50 51 52
                                  uint64_t mfirst, uint64_t mlast,
                                  uint64_t rfirst, uint64_t rlast)
{
J
Jason Wang 已提交
53 54
    vhost_log_chunk_t *log = dev->log->log;

M
Michael S. Tsirkin 已提交
55 56
    uint64_t start = MAX(mfirst, rfirst);
    uint64_t end = MIN(mlast, rlast);
J
Jason Wang 已提交
57 58
    vhost_log_chunk_t *from = log + start / VHOST_LOG_CHUNK;
    vhost_log_chunk_t *to = log + end / VHOST_LOG_CHUNK + 1;
M
Michael S. Tsirkin 已提交
59 60 61 62 63
    uint64_t addr = (start / VHOST_LOG_CHUNK) * VHOST_LOG_CHUNK;

    if (end < start) {
        return;
    }
64
    assert(end / VHOST_LOG_CHUNK < dev->log_size);
65
    assert(start / VHOST_LOG_CHUNK < dev->log_size);
66

M
Michael S. Tsirkin 已提交
67 68 69 70 71
    for (;from < to; ++from) {
        vhost_log_chunk_t log;
        /* We first check with non-atomic: much cheaper,
         * and we expect non-dirty to be the common case. */
        if (!*from) {
72
            addr += VHOST_LOG_CHUNK;
M
Michael S. Tsirkin 已提交
73 74
            continue;
        }
75 76 77
        /* Data must be read atomically. We don't really need barrier semantics
         * but it's easier to use atomic_* than roll our own. */
        log = atomic_xchg(from, 0);
N
Natanael Copa 已提交
78 79
        while (log) {
            int bit = ctzl(log);
M
Michael S. Tsirkin 已提交
80 81 82 83 84 85 86
            hwaddr page_addr;
            hwaddr section_offset;
            hwaddr mr_offset;
            page_addr = addr + bit * VHOST_LOG_PAGE;
            section_offset = page_addr - section->offset_within_address_space;
            mr_offset = section_offset + section->offset_within_region;
            memory_region_set_dirty(section->mr, mr_offset, VHOST_LOG_PAGE);
M
Michael S. Tsirkin 已提交
87 88 89 90 91 92
            log &= ~(0x1ull << bit);
        }
        addr += VHOST_LOG_CHUNK;
    }
}

A
Avi Kivity 已提交
93
static int vhost_sync_dirty_bitmap(struct vhost_dev *dev,
94
                                   MemoryRegionSection *section,
M
Michael S. Tsirkin 已提交
95 96
                                   hwaddr first,
                                   hwaddr last)
M
Michael S. Tsirkin 已提交
97 98
{
    int i;
M
Michael S. Tsirkin 已提交
99 100
    hwaddr start_addr;
    hwaddr end_addr;
A
Avi Kivity 已提交
101

M
Michael S. Tsirkin 已提交
102 103 104
    if (!dev->log_enabled || !dev->started) {
        return 0;
    }
M
Michael S. Tsirkin 已提交
105
    start_addr = section->offset_within_address_space;
106
    end_addr = range_get_last(start_addr, int128_get64(section->size));
M
Michael S. Tsirkin 已提交
107 108 109
    start_addr = MAX(first, start_addr);
    end_addr = MIN(last, end_addr);

M
Michael S. Tsirkin 已提交
110 111
    for (i = 0; i < dev->mem->nregions; ++i) {
        struct vhost_memory_region *reg = dev->mem->regions + i;
112
        vhost_dev_sync_region(dev, section, start_addr, end_addr,
M
Michael S. Tsirkin 已提交
113 114 115 116 117 118
                              reg->guest_phys_addr,
                              range_get_last(reg->guest_phys_addr,
                                             reg->memory_size));
    }
    for (i = 0; i < dev->nvqs; ++i) {
        struct vhost_virtqueue *vq = dev->vqs + i;
119
        vhost_dev_sync_region(dev, section, start_addr, end_addr, vq->used_phys,
M
Michael S. Tsirkin 已提交
120 121 122 123 124
                              range_get_last(vq->used_phys, vq->used_size));
    }
    return 0;
}

A
Avi Kivity 已提交
125 126 127 128 129
static void vhost_log_sync(MemoryListener *listener,
                          MemoryRegionSection *section)
{
    struct vhost_dev *dev = container_of(listener, struct vhost_dev,
                                         memory_listener);
M
Michael S. Tsirkin 已提交
130 131
    vhost_sync_dirty_bitmap(dev, section, 0x0, ~0x0ULL);
}
A
Avi Kivity 已提交
132

M
Michael S. Tsirkin 已提交
133 134 135 136 137 138 139 140 141
static void vhost_log_sync_range(struct vhost_dev *dev,
                                 hwaddr first, hwaddr last)
{
    int i;
    /* FIXME: this is N^2 in number of sections */
    for (i = 0; i < dev->n_mem_sections; ++i) {
        MemoryRegionSection *section = &dev->mem_sections[i];
        vhost_sync_dirty_bitmap(dev, section, first, last);
    }
A
Avi Kivity 已提交
142 143
}

M
Michael S. Tsirkin 已提交
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
/* Assign/unassign. Keep an unsorted array of non-overlapping
 * memory regions in dev->mem. */
static void vhost_dev_unassign_memory(struct vhost_dev *dev,
                                      uint64_t start_addr,
                                      uint64_t size)
{
    int from, to, n = dev->mem->nregions;
    /* Track overlapping/split regions for sanity checking. */
    int overlap_start = 0, overlap_end = 0, overlap_middle = 0, split = 0;

    for (from = 0, to = 0; from < n; ++from, ++to) {
        struct vhost_memory_region *reg = dev->mem->regions + to;
        uint64_t reglast;
        uint64_t memlast;
        uint64_t change;

        /* clone old region */
        if (to != from) {
            memcpy(reg, dev->mem->regions + from, sizeof *reg);
        }

        /* No overlap is simple */
        if (!ranges_overlap(reg->guest_phys_addr, reg->memory_size,
                            start_addr, size)) {
            continue;
        }

        /* Split only happens if supplied region
         * is in the middle of an existing one. Thus it can not
         * overlap with any other existing region. */
        assert(!split);

        reglast = range_get_last(reg->guest_phys_addr, reg->memory_size);
        memlast = range_get_last(start_addr, size);

        /* Remove whole region */
        if (start_addr <= reg->guest_phys_addr && memlast >= reglast) {
            --dev->mem->nregions;
            --to;
            ++overlap_middle;
            continue;
        }

        /* Shrink region */
        if (memlast >= reglast) {
            reg->memory_size = start_addr - reg->guest_phys_addr;
            assert(reg->memory_size);
            assert(!overlap_end);
            ++overlap_end;
            continue;
        }

        /* Shift region */
        if (start_addr <= reg->guest_phys_addr) {
            change = memlast + 1 - reg->guest_phys_addr;
            reg->memory_size -= change;
            reg->guest_phys_addr += change;
            reg->userspace_addr += change;
            assert(reg->memory_size);
            assert(!overlap_start);
            ++overlap_start;
            continue;
        }

        /* This only happens if supplied region
         * is in the middle of an existing one. Thus it can not
         * overlap with any other existing region. */
        assert(!overlap_start);
        assert(!overlap_end);
        assert(!overlap_middle);
        /* Split region: shrink first part, shift second part. */
        memcpy(dev->mem->regions + n, reg, sizeof *reg);
        reg->memory_size = start_addr - reg->guest_phys_addr;
        assert(reg->memory_size);
        change = memlast + 1 - reg->guest_phys_addr;
        reg = dev->mem->regions + n;
        reg->memory_size -= change;
        assert(reg->memory_size);
        reg->guest_phys_addr += change;
        reg->userspace_addr += change;
        /* Never add more than 1 region */
        assert(dev->mem->nregions == n);
        ++dev->mem->nregions;
        ++split;
    }
}

/* Called after unassign, so no regions overlap the given range. */
static void vhost_dev_assign_memory(struct vhost_dev *dev,
                                    uint64_t start_addr,
                                    uint64_t size,
                                    uint64_t uaddr)
{
    int from, to;
    struct vhost_memory_region *merged = NULL;
    for (from = 0, to = 0; from < dev->mem->nregions; ++from, ++to) {
        struct vhost_memory_region *reg = dev->mem->regions + to;
        uint64_t prlast, urlast;
        uint64_t pmlast, umlast;
        uint64_t s, e, u;

        /* clone old region */
        if (to != from) {
            memcpy(reg, dev->mem->regions + from, sizeof *reg);
        }
        prlast = range_get_last(reg->guest_phys_addr, reg->memory_size);
        pmlast = range_get_last(start_addr, size);
        urlast = range_get_last(reg->userspace_addr, reg->memory_size);
        umlast = range_get_last(uaddr, size);

        /* check for overlapping regions: should never happen. */
        assert(prlast < start_addr || pmlast < reg->guest_phys_addr);
        /* Not an adjacent or overlapping region - do not merge. */
        if ((prlast + 1 != start_addr || urlast + 1 != uaddr) &&
            (pmlast + 1 != reg->guest_phys_addr ||
             umlast + 1 != reg->userspace_addr)) {
            continue;
        }

        if (merged) {
            --to;
            assert(to >= 0);
        } else {
            merged = reg;
        }
        u = MIN(uaddr, reg->userspace_addr);
        s = MIN(start_addr, reg->guest_phys_addr);
        e = MAX(pmlast, prlast);
        uaddr = merged->userspace_addr = u;
        start_addr = merged->guest_phys_addr = s;
        size = merged->memory_size = e - s + 1;
        assert(merged->memory_size);
    }

    if (!merged) {
        struct vhost_memory_region *reg = dev->mem->regions + to;
        memset(reg, 0, sizeof *reg);
        reg->memory_size = size;
        assert(reg->memory_size);
        reg->guest_phys_addr = start_addr;
        reg->userspace_addr = uaddr;
        ++to;
    }
    assert(to <= dev->mem->nregions + 1);
    dev->mem->nregions = to;
}

static uint64_t vhost_get_log_size(struct vhost_dev *dev)
{
    uint64_t log_size = 0;
    int i;
    for (i = 0; i < dev->mem->nregions; ++i) {
        struct vhost_memory_region *reg = dev->mem->regions + i;
        uint64_t last = range_get_last(reg->guest_phys_addr,
                                       reg->memory_size);
        log_size = MAX(log_size, last / VHOST_LOG_CHUNK + 1);
    }
    for (i = 0; i < dev->nvqs; ++i) {
        struct vhost_virtqueue *vq = dev->vqs + i;
        uint64_t last = vq->used_phys + vq->used_size - 1;
        log_size = MAX(log_size, last / VHOST_LOG_CHUNK + 1);
    }
    return log_size;
}
M
Marc-André Lureau 已提交
308 309

static struct vhost_log *vhost_log_alloc(uint64_t size, bool share)
J
Jason Wang 已提交
310
{
M
Marc-André Lureau 已提交
311 312 313 314 315 316 317 318 319 320 321 322 323
    struct vhost_log *log;
    uint64_t logsize = size * sizeof(*(log->log));
    int fd = -1;

    log = g_new0(struct vhost_log, 1);
    if (share) {
        log->log = qemu_memfd_alloc("vhost-log", logsize,
                                    F_SEAL_GROW | F_SEAL_SHRINK | F_SEAL_SEAL,
                                    &fd);
        memset(log->log, 0, logsize);
    } else {
        log->log = g_malloc0(logsize);
    }
J
Jason Wang 已提交
324 325 326

    log->size = size;
    log->refcnt = 1;
M
Marc-André Lureau 已提交
327
    log->fd = fd;
J
Jason Wang 已提交
328 329 330 331

    return log;
}

M
Marc-André Lureau 已提交
332
static struct vhost_log *vhost_log_get(uint64_t size, bool share)
J
Jason Wang 已提交
333
{
M
Marc-André Lureau 已提交
334 335 336 337 338 339 340 341 342
    struct vhost_log *log = share ? vhost_log_shm : vhost_log;

    if (!log || log->size != size) {
        log = vhost_log_alloc(size, share);
        if (share) {
            vhost_log_shm = log;
        } else {
            vhost_log = log;
        }
J
Jason Wang 已提交
343
    } else {
M
Marc-André Lureau 已提交
344
        ++log->refcnt;
J
Jason Wang 已提交
345 346
    }

M
Marc-André Lureau 已提交
347
    return log;
J
Jason Wang 已提交
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
}

static void vhost_log_put(struct vhost_dev *dev, bool sync)
{
    struct vhost_log *log = dev->log;

    if (!log) {
        return;
    }

    --log->refcnt;
    if (log->refcnt == 0) {
        /* Sync only the range covered by the old log */
        if (dev->log_size && sync) {
            vhost_log_sync_range(dev, 0, dev->log_size * VHOST_LOG_CHUNK - 1);
        }
M
Marc-André Lureau 已提交
364

J
Jason Wang 已提交
365
        if (vhost_log == log) {
M
Marc-André Lureau 已提交
366
            g_free(log->log);
J
Jason Wang 已提交
367
            vhost_log = NULL;
M
Marc-André Lureau 已提交
368 369 370 371
        } else if (vhost_log_shm == log) {
            qemu_memfd_free(log->log, log->size * sizeof(*(log->log)),
                            log->fd);
            vhost_log_shm = NULL;
J
Jason Wang 已提交
372
        }
M
Marc-André Lureau 已提交
373

J
Jason Wang 已提交
374 375 376
        g_free(log);
    }
}
M
Michael S. Tsirkin 已提交
377

M
Marc-André Lureau 已提交
378 379 380 381 382 383 384
static bool vhost_dev_log_is_shared(struct vhost_dev *dev)
{
    return dev->vhost_ops->vhost_requires_shm_log &&
           dev->vhost_ops->vhost_requires_shm_log(dev);
}

static inline void vhost_dev_log_resize(struct vhost_dev *dev, uint64_t size)
M
Michael S. Tsirkin 已提交
385
{
M
Marc-André Lureau 已提交
386
    struct vhost_log *log = vhost_log_get(size, vhost_dev_log_is_shared(dev));
J
Jason Wang 已提交
387
    uint64_t log_base = (uintptr_t)log->log;
M
Michael S. Tsirkin 已提交
388
    int r;
389

M
Marc-André Lureau 已提交
390 391
    /* inform backend of log switching, this must be done before
       releasing the current log, to ensure no logging is lost */
392
    r = dev->vhost_ops->vhost_set_log_base(dev, log_base, log);
M
Michael S. Tsirkin 已提交
393
    assert(r >= 0);
J
Jason Wang 已提交
394
    vhost_log_put(dev, true);
M
Michael S. Tsirkin 已提交
395 396 397 398 399 400 401 402 403
    dev->log = log;
    dev->log_size = size;
}

static int vhost_verify_ring_mappings(struct vhost_dev *dev,
                                      uint64_t start_addr,
                                      uint64_t size)
{
    int i;
404 405 406
    int r = 0;

    for (i = 0; !r && i < dev->nvqs; ++i) {
M
Michael S. Tsirkin 已提交
407
        struct vhost_virtqueue *vq = dev->vqs + i;
A
Avi Kivity 已提交
408
        hwaddr l;
M
Michael S. Tsirkin 已提交
409 410 411 412 413 414 415 416 417
        void *p;

        if (!ranges_overlap(start_addr, size, vq->ring_phys, vq->ring_size)) {
            continue;
        }
        l = vq->ring_size;
        p = cpu_physical_memory_map(vq->ring_phys, &l, 1);
        if (!p || l != vq->ring_size) {
            fprintf(stderr, "Unable to map ring buffer for ring %d\n", i);
418
            r = -ENOMEM;
M
Michael S. Tsirkin 已提交
419 420 421
        }
        if (p != vq->ring) {
            fprintf(stderr, "Ring buffer relocated for ring %d\n", i);
422
            r = -EBUSY;
M
Michael S. Tsirkin 已提交
423 424 425
        }
        cpu_physical_memory_unmap(p, l, 0, 0);
    }
426
    return r;
M
Michael S. Tsirkin 已提交
427 428
}

429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
static struct vhost_memory_region *vhost_dev_find_reg(struct vhost_dev *dev,
						      uint64_t start_addr,
						      uint64_t size)
{
    int i, n = dev->mem->nregions;
    for (i = 0; i < n; ++i) {
        struct vhost_memory_region *reg = dev->mem->regions + i;
        if (ranges_overlap(reg->guest_phys_addr, reg->memory_size,
                           start_addr, size)) {
            return reg;
        }
    }
    return NULL;
}

static bool vhost_dev_cmp_memory(struct vhost_dev *dev,
                                 uint64_t start_addr,
                                 uint64_t size,
                                 uint64_t uaddr)
{
    struct vhost_memory_region *reg = vhost_dev_find_reg(dev, start_addr, size);
    uint64_t reglast;
    uint64_t memlast;

    if (!reg) {
        return true;
    }

    reglast = range_get_last(reg->guest_phys_addr, reg->memory_size);
    memlast = range_get_last(start_addr, size);

    /* Need to extend region? */
    if (start_addr < reg->guest_phys_addr || memlast > reglast) {
        return true;
    }
    /* userspace_addr changed? */
    return uaddr != reg->userspace_addr + start_addr - reg->guest_phys_addr;
}

A
Avi Kivity 已提交
468 469 470
static void vhost_set_memory(MemoryListener *listener,
                             MemoryRegionSection *section,
                             bool add)
M
Michael S. Tsirkin 已提交
471
{
A
Avi Kivity 已提交
472 473
    struct vhost_dev *dev = container_of(listener, struct vhost_dev,
                                         memory_listener);
A
Avi Kivity 已提交
474
    hwaddr start_addr = section->offset_within_address_space;
475
    ram_addr_t size = int128_get64(section->size);
476 477
    bool log_dirty =
        memory_region_get_dirty_log_mask(section->mr) & ~(1 << DIRTY_MEMORY_MIGRATION);
M
Michael S. Tsirkin 已提交
478 479
    int s = offsetof(struct vhost_memory, regions) +
        (dev->mem->nregions + 1) * sizeof dev->mem->regions[0];
A
Avi Kivity 已提交
480 481
    void *ram;

482
    dev->mem = g_realloc(dev->mem, s);
M
Michael S. Tsirkin 已提交
483

484
    if (log_dirty) {
A
Avi Kivity 已提交
485
        add = false;
486 487
    }

M
Michael S. Tsirkin 已提交
488 489
    assert(size);

490
    /* Optimize no-change case. At least cirrus_vga does this a lot at this time. */
491
    ram = memory_region_get_ram_ptr(section->mr) + section->offset_within_region;
A
Avi Kivity 已提交
492 493
    if (add) {
        if (!vhost_dev_cmp_memory(dev, start_addr, size, (uintptr_t)ram)) {
494 495 496 497 498 499 500 501 502 503
            /* Region exists with same address. Nothing to do. */
            return;
        }
    } else {
        if (!vhost_dev_find_reg(dev, start_addr, size)) {
            /* Removing region that we don't access. Nothing to do. */
            return;
        }
    }

M
Michael S. Tsirkin 已提交
504
    vhost_dev_unassign_memory(dev, start_addr, size);
A
Avi Kivity 已提交
505
    if (add) {
M
Michael S. Tsirkin 已提交
506
        /* Add given mapping, merging adjacent regions if any */
A
Avi Kivity 已提交
507
        vhost_dev_assign_memory(dev, start_addr, size, (uintptr_t)ram);
M
Michael S. Tsirkin 已提交
508 509 510 511
    } else {
        /* Remove old mapping for this memory, if any. */
        vhost_dev_unassign_memory(dev, start_addr, size);
    }
512 513 514
    dev->mem_changed_start_addr = MIN(dev->mem_changed_start_addr, start_addr);
    dev->mem_changed_end_addr = MAX(dev->mem_changed_end_addr, start_addr + size - 1);
    dev->memory_changed = true;
515
    used_memslots = dev->mem->nregions;
516 517 518 519 520 521 522 523 524 525 526 527 528 529
}

static bool vhost_section(MemoryRegionSection *section)
{
    return memory_region_is_ram(section->mr);
}

static void vhost_begin(MemoryListener *listener)
{
    struct vhost_dev *dev = container_of(listener, struct vhost_dev,
                                         memory_listener);
    dev->mem_changed_end_addr = 0;
    dev->mem_changed_start_addr = -1;
}
M
Michael S. Tsirkin 已提交
530

531 532 533 534 535 536 537 538 539 540 541 542
static void vhost_commit(MemoryListener *listener)
{
    struct vhost_dev *dev = container_of(listener, struct vhost_dev,
                                         memory_listener);
    hwaddr start_addr = 0;
    ram_addr_t size = 0;
    uint64_t log_size;
    int r;

    if (!dev->memory_changed) {
        return;
    }
M
Michael S. Tsirkin 已提交
543 544 545
    if (!dev->started) {
        return;
    }
546 547 548
    if (dev->mem_changed_start_addr > dev->mem_changed_end_addr) {
        return;
    }
M
Michael S. Tsirkin 已提交
549 550

    if (dev->started) {
551 552 553
        start_addr = dev->mem_changed_start_addr;
        size = dev->mem_changed_end_addr - dev->mem_changed_start_addr + 1;

M
Michael S. Tsirkin 已提交
554 555 556 557 558
        r = vhost_verify_ring_mappings(dev, start_addr, size);
        assert(r >= 0);
    }

    if (!dev->log_enabled) {
559
        r = dev->vhost_ops->vhost_set_mem_table(dev, dev->mem);
M
Michael S. Tsirkin 已提交
560
        assert(r >= 0);
561
        dev->memory_changed = false;
M
Michael S. Tsirkin 已提交
562 563 564 565 566 567 568 569 570 571
        return;
    }
    log_size = vhost_get_log_size(dev);
    /* We allocate an extra 4K bytes to log,
     * to reduce the * number of reallocations. */
#define VHOST_LOG_BUFFER (0x1000 / sizeof *dev->log)
    /* To log more, must increase log size before table update. */
    if (dev->log_size < log_size) {
        vhost_dev_log_resize(dev, log_size + VHOST_LOG_BUFFER);
    }
572
    r = dev->vhost_ops->vhost_set_mem_table(dev, dev->mem);
M
Michael S. Tsirkin 已提交
573 574 575 576 577
    assert(r >= 0);
    /* To log less, can only decrease log size after table update. */
    if (dev->log_size > log_size + VHOST_LOG_BUFFER) {
        vhost_dev_log_resize(dev, log_size);
    }
578
    dev->memory_changed = false;
579 580
}

A
Avi Kivity 已提交
581 582 583
static void vhost_region_add(MemoryListener *listener,
                             MemoryRegionSection *section)
{
584 585 586
    struct vhost_dev *dev = container_of(listener, struct vhost_dev,
                                         memory_listener);

A
Avi Kivity 已提交
587 588 589 590
    if (!vhost_section(section)) {
        return;
    }

591 592 593 594
    ++dev->n_mem_sections;
    dev->mem_sections = g_renew(MemoryRegionSection, dev->mem_sections,
                                dev->n_mem_sections);
    dev->mem_sections[dev->n_mem_sections - 1] = *section;
P
Paolo Bonzini 已提交
595
    memory_region_ref(section->mr);
A
Avi Kivity 已提交
596 597 598 599 600 601
    vhost_set_memory(listener, section, true);
}

static void vhost_region_del(MemoryListener *listener,
                             MemoryRegionSection *section)
{
602 603 604 605
    struct vhost_dev *dev = container_of(listener, struct vhost_dev,
                                         memory_listener);
    int i;

A
Avi Kivity 已提交
606 607 608 609
    if (!vhost_section(section)) {
        return;
    }

A
Avi Kivity 已提交
610
    vhost_set_memory(listener, section, false);
P
Paolo Bonzini 已提交
611
    memory_region_unref(section->mr);
612 613 614 615 616
    for (i = 0; i < dev->n_mem_sections; ++i) {
        if (dev->mem_sections[i].offset_within_address_space
            == section->offset_within_address_space) {
            --dev->n_mem_sections;
            memmove(&dev->mem_sections[i], &dev->mem_sections[i+1],
617
                    (dev->n_mem_sections - i) * sizeof(*dev->mem_sections));
618 619 620
            break;
        }
    }
A
Avi Kivity 已提交
621 622
}

623 624 625 626 627
static void vhost_region_nop(MemoryListener *listener,
                             MemoryRegionSection *section)
{
}

M
Michael S. Tsirkin 已提交
628 629 630 631 632 633
static int vhost_virtqueue_set_addr(struct vhost_dev *dev,
                                    struct vhost_virtqueue *vq,
                                    unsigned idx, bool enable_log)
{
    struct vhost_vring_addr addr = {
        .index = idx,
634 635 636
        .desc_user_addr = (uint64_t)(unsigned long)vq->desc,
        .avail_user_addr = (uint64_t)(unsigned long)vq->avail,
        .used_user_addr = (uint64_t)(unsigned long)vq->used,
M
Michael S. Tsirkin 已提交
637 638 639
        .log_guest_addr = vq->used_phys,
        .flags = enable_log ? (1 << VHOST_VRING_F_LOG) : 0,
    };
640
    int r = dev->vhost_ops->vhost_set_vring_addr(dev, &addr);
M
Michael S. Tsirkin 已提交
641 642 643 644 645 646 647 648 649 650 651
    if (r < 0) {
        return -errno;
    }
    return 0;
}

static int vhost_dev_set_features(struct vhost_dev *dev, bool enable_log)
{
    uint64_t features = dev->acked_features;
    int r;
    if (enable_log) {
C
Cornelia Huck 已提交
652
        features |= 0x1ULL << VHOST_F_LOG_ALL;
M
Michael S. Tsirkin 已提交
653
    }
654
    r = dev->vhost_ops->vhost_set_features(dev, features);
M
Michael S. Tsirkin 已提交
655 656 657 658 659
    return r < 0 ? -errno : 0;
}

static int vhost_dev_set_log(struct vhost_dev *dev, bool enable_log)
{
660
    int r, t, i, idx;
M
Michael S. Tsirkin 已提交
661 662 663 664 665
    r = vhost_dev_set_features(dev, enable_log);
    if (r < 0) {
        goto err_features;
    }
    for (i = 0; i < dev->nvqs; ++i) {
666 667
        idx = dev->vhost_ops->vhost_get_vq_index(dev, dev->vq_index + i);
        r = vhost_virtqueue_set_addr(dev, dev->vqs + i, idx,
M
Michael S. Tsirkin 已提交
668 669 670 671 672 673 674 675
                                     enable_log);
        if (r < 0) {
            goto err_vq;
        }
    }
    return 0;
err_vq:
    for (; i >= 0; --i) {
676 677
        idx = dev->vhost_ops->vhost_get_vq_index(dev, dev->vq_index + i);
        t = vhost_virtqueue_set_addr(dev, dev->vqs + i, idx,
M
Michael S. Tsirkin 已提交
678 679 680 681 682 683 684 685 686
                                     dev->log_enabled);
        assert(t >= 0);
    }
    t = vhost_dev_set_features(dev, dev->log_enabled);
    assert(t >= 0);
err_features:
    return r;
}

A
Avi Kivity 已提交
687
static int vhost_migration_log(MemoryListener *listener, int enable)
M
Michael S. Tsirkin 已提交
688
{
A
Avi Kivity 已提交
689 690
    struct vhost_dev *dev = container_of(listener, struct vhost_dev,
                                         memory_listener);
M
Michael S. Tsirkin 已提交
691 692 693 694 695 696 697 698 699 700 701 702 703
    int r;
    if (!!enable == dev->log_enabled) {
        return 0;
    }
    if (!dev->started) {
        dev->log_enabled = enable;
        return 0;
    }
    if (!enable) {
        r = vhost_dev_set_log(dev, false);
        if (r < 0) {
            return r;
        }
J
Jason Wang 已提交
704
        vhost_log_put(dev, false);
M
Michael S. Tsirkin 已提交
705 706 707 708 709 710 711 712 713 714 715 716 717
        dev->log = NULL;
        dev->log_size = 0;
    } else {
        vhost_dev_log_resize(dev, vhost_get_log_size(dev));
        r = vhost_dev_set_log(dev, true);
        if (r < 0) {
            return r;
        }
    }
    dev->log_enabled = enable;
    return 0;
}

A
Avi Kivity 已提交
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738
static void vhost_log_global_start(MemoryListener *listener)
{
    int r;

    r = vhost_migration_log(listener, true);
    if (r < 0) {
        abort();
    }
}

static void vhost_log_global_stop(MemoryListener *listener)
{
    int r;

    r = vhost_migration_log(listener, false);
    if (r < 0) {
        abort();
    }
}

static void vhost_log_start(MemoryListener *listener,
739 740
                            MemoryRegionSection *section,
                            int old, int new)
A
Avi Kivity 已提交
741 742 743 744 745
{
    /* FIXME: implement */
}

static void vhost_log_stop(MemoryListener *listener,
746 747
                           MemoryRegionSection *section,
                           int old, int new)
A
Avi Kivity 已提交
748 749 750 751
{
    /* FIXME: implement */
}

752 753
static inline bool vhost_needs_vring_endian(VirtIODevice *vdev)
{
754 755 756
    if (virtio_vdev_has_feature(vdev, VIRTIO_F_VERSION_1)) {
        return false;
    }
757 758 759 760 761 762 763 764 765 766 767
#ifdef TARGET_IS_BIENDIAN
#ifdef HOST_WORDS_BIGENDIAN
    return !virtio_is_big_endian(vdev);
#else
    return virtio_is_big_endian(vdev);
#endif
#else
    return false;
#endif
}

768 769 770 771 772 773 774 775 776
static int vhost_virtqueue_set_vring_endian_legacy(struct vhost_dev *dev,
                                                   bool is_big_endian,
                                                   int vhost_vq_index)
{
    struct vhost_vring_state s = {
        .index = vhost_vq_index,
        .num = is_big_endian
    };

777
    if (!dev->vhost_ops->vhost_set_vring_endian(dev, &s)) {
778 779 780 781 782 783 784 785 786 787 788
        return 0;
    }

    if (errno == ENOTTY) {
        error_report("vhost does not support cross-endian");
        return -ENOSYS;
    }

    return -errno;
}

789
static int vhost_virtqueue_start(struct vhost_dev *dev,
M
Michael S. Tsirkin 已提交
790 791 792 793
                                struct VirtIODevice *vdev,
                                struct vhost_virtqueue *vq,
                                unsigned idx)
{
A
Avi Kivity 已提交
794
    hwaddr s, l, a;
M
Michael S. Tsirkin 已提交
795
    int r;
796
    int vhost_vq_index = dev->vhost_ops->vhost_get_vq_index(dev, idx);
M
Michael S. Tsirkin 已提交
797
    struct vhost_vring_file file = {
J
Jason Wang 已提交
798
        .index = vhost_vq_index
M
Michael S. Tsirkin 已提交
799 800
    };
    struct vhost_vring_state state = {
J
Jason Wang 已提交
801
        .index = vhost_vq_index
M
Michael S. Tsirkin 已提交
802 803 804
    };
    struct VirtQueue *vvq = virtio_get_queue(vdev, idx);

J
Jason Wang 已提交
805

M
Michael S. Tsirkin 已提交
806
    vq->num = state.num = virtio_queue_get_num(vdev, idx);
807
    r = dev->vhost_ops->vhost_set_vring_num(dev, &state);
M
Michael S. Tsirkin 已提交
808 809 810 811 812
    if (r) {
        return -errno;
    }

    state.num = virtio_queue_get_last_avail_idx(vdev, idx);
813
    r = dev->vhost_ops->vhost_set_vring_base(dev, &state);
M
Michael S. Tsirkin 已提交
814 815 816 817
    if (r) {
        return -errno;
    }

818
    if (vhost_needs_vring_endian(vdev)) {
819 820 821 822 823 824 825 826
        r = vhost_virtqueue_set_vring_endian_legacy(dev,
                                                    virtio_is_big_endian(vdev),
                                                    vhost_vq_index);
        if (r) {
            return -errno;
        }
    }

M
Michael S. Tsirkin 已提交
827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856
    s = l = virtio_queue_get_desc_size(vdev, idx);
    a = virtio_queue_get_desc_addr(vdev, idx);
    vq->desc = cpu_physical_memory_map(a, &l, 0);
    if (!vq->desc || l != s) {
        r = -ENOMEM;
        goto fail_alloc_desc;
    }
    s = l = virtio_queue_get_avail_size(vdev, idx);
    a = virtio_queue_get_avail_addr(vdev, idx);
    vq->avail = cpu_physical_memory_map(a, &l, 0);
    if (!vq->avail || l != s) {
        r = -ENOMEM;
        goto fail_alloc_avail;
    }
    vq->used_size = s = l = virtio_queue_get_used_size(vdev, idx);
    vq->used_phys = a = virtio_queue_get_used_addr(vdev, idx);
    vq->used = cpu_physical_memory_map(a, &l, 1);
    if (!vq->used || l != s) {
        r = -ENOMEM;
        goto fail_alloc_used;
    }

    vq->ring_size = s = l = virtio_queue_get_ring_size(vdev, idx);
    vq->ring_phys = a = virtio_queue_get_ring_addr(vdev, idx);
    vq->ring = cpu_physical_memory_map(a, &l, 1);
    if (!vq->ring || l != s) {
        r = -ENOMEM;
        goto fail_alloc_ring;
    }

J
Jason Wang 已提交
857
    r = vhost_virtqueue_set_addr(dev, vq, vhost_vq_index, dev->log_enabled);
M
Michael S. Tsirkin 已提交
858 859 860 861
    if (r < 0) {
        r = -errno;
        goto fail_alloc;
    }
J
Jason Wang 已提交
862

M
Michael S. Tsirkin 已提交
863
    file.fd = event_notifier_get_fd(virtio_queue_get_host_notifier(vvq));
864
    r = dev->vhost_ops->vhost_set_vring_kick(dev, &file);
M
Michael S. Tsirkin 已提交
865
    if (r) {
M
Michael S. Tsirkin 已提交
866
        r = -errno;
M
Michael S. Tsirkin 已提交
867 868 869
        goto fail_kick;
    }

870 871
    /* Clear and discard previous events if any. */
    event_notifier_test_and_clear(&vq->masked_notifier);
M
Michael S. Tsirkin 已提交
872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891

    return 0;

fail_kick:
fail_alloc:
    cpu_physical_memory_unmap(vq->ring, virtio_queue_get_ring_size(vdev, idx),
                              0, 0);
fail_alloc_ring:
    cpu_physical_memory_unmap(vq->used, virtio_queue_get_used_size(vdev, idx),
                              0, 0);
fail_alloc_used:
    cpu_physical_memory_unmap(vq->avail, virtio_queue_get_avail_size(vdev, idx),
                              0, 0);
fail_alloc_avail:
    cpu_physical_memory_unmap(vq->desc, virtio_queue_get_desc_size(vdev, idx),
                              0, 0);
fail_alloc_desc:
    return r;
}

892
static void vhost_virtqueue_stop(struct vhost_dev *dev,
M
Michael S. Tsirkin 已提交
893 894 895 896
                                    struct VirtIODevice *vdev,
                                    struct vhost_virtqueue *vq,
                                    unsigned idx)
{
897
    int vhost_vq_index = dev->vhost_ops->vhost_get_vq_index(dev, idx);
M
Michael S. Tsirkin 已提交
898
    struct vhost_vring_state state = {
899
        .index = vhost_vq_index,
M
Michael S. Tsirkin 已提交
900 901
    };
    int r;
902

903
    r = dev->vhost_ops->vhost_get_vring_base(dev, &state);
M
Michael S. Tsirkin 已提交
904 905 906 907 908
    if (r < 0) {
        fprintf(stderr, "vhost VQ %d ring restore failed: %d\n", idx, r);
        fflush(stderr);
    }
    virtio_queue_set_last_avail_idx(vdev, idx, state.num);
909
    virtio_queue_invalidate_signalled_used(vdev, idx);
910 911 912 913

    /* In the cross-endian case, we need to reset the vring endianness to
     * native as legacy devices expect so by default.
     */
914
    if (vhost_needs_vring_endian(vdev)) {
915 916 917 918 919 920 921 922
        r = vhost_virtqueue_set_vring_endian_legacy(dev,
                                                    !virtio_is_big_endian(vdev),
                                                    vhost_vq_index);
        if (r < 0) {
            error_report("failed to reset vring endianness");
        }
    }

M
Michael S. Tsirkin 已提交
923 924 925 926 927 928 929 930 931 932 933
    assert (r >= 0);
    cpu_physical_memory_unmap(vq->ring, virtio_queue_get_ring_size(vdev, idx),
                              0, virtio_queue_get_ring_size(vdev, idx));
    cpu_physical_memory_unmap(vq->used, virtio_queue_get_used_size(vdev, idx),
                              1, virtio_queue_get_used_size(vdev, idx));
    cpu_physical_memory_unmap(vq->avail, virtio_queue_get_avail_size(vdev, idx),
                              0, virtio_queue_get_avail_size(vdev, idx));
    cpu_physical_memory_unmap(vq->desc, virtio_queue_get_desc_size(vdev, idx),
                              0, virtio_queue_get_desc_size(vdev, idx));
}

934 935
static void vhost_eventfd_add(MemoryListener *listener,
                              MemoryRegionSection *section,
936
                              bool match_data, uint64_t data, EventNotifier *e)
937 938 939 940 941
{
}

static void vhost_eventfd_del(MemoryListener *listener,
                              MemoryRegionSection *section,
942
                              bool match_data, uint64_t data, EventNotifier *e)
943 944 945
{
}

946 947 948
static int vhost_virtqueue_init(struct vhost_dev *dev,
                                struct vhost_virtqueue *vq, int n)
{
949
    int vhost_vq_index = dev->vhost_ops->vhost_get_vq_index(dev, n);
950
    struct vhost_vring_file file = {
951
        .index = vhost_vq_index,
952 953 954 955 956 957 958
    };
    int r = event_notifier_init(&vq->masked_notifier, 0);
    if (r < 0) {
        return r;
    }

    file.fd = event_notifier_get_fd(&vq->masked_notifier);
959
    r = dev->vhost_ops->vhost_set_vring_call(dev, &file);
960 961 962 963 964 965 966 967 968 969 970 971 972 973 974
    if (r) {
        r = -errno;
        goto fail_call;
    }
    return 0;
fail_call:
    event_notifier_cleanup(&vq->masked_notifier);
    return r;
}

static void vhost_virtqueue_cleanup(struct vhost_virtqueue *vq)
{
    event_notifier_cleanup(&vq->masked_notifier);
}

975
int vhost_dev_init(struct vhost_dev *hdev, void *opaque,
976
                   VhostBackendType backend_type)
M
Michael S. Tsirkin 已提交
977 978
{
    uint64_t features;
979
    int i, r;
980

981 982
    hdev->migration_blocker = NULL;

983
    if (vhost_set_backend_type(hdev, backend_type) < 0) {
G
Gonglei 已提交
984
        close((uintptr_t)opaque);
985 986 987
        return -1;
    }

988
    if (hdev->vhost_ops->vhost_backend_init(hdev, opaque) < 0) {
G
Gonglei 已提交
989
        close((uintptr_t)opaque);
990 991 992
        return -errno;
    }

993 994 995 996 997 998
    if (used_memslots > hdev->vhost_ops->vhost_backend_memslots_limit(hdev)) {
        fprintf(stderr, "vhost backend memory slots limit is less"
                " than current number of present memory slots\n");
        close((uintptr_t)opaque);
        return -1;
    }
999 1000
    QLIST_INSERT_HEAD(&vhost_devices, hdev, entry);

1001
    r = hdev->vhost_ops->vhost_set_owner(hdev);
M
Michael S. Tsirkin 已提交
1002 1003 1004 1005
    if (r < 0) {
        goto fail;
    }

1006
    r = hdev->vhost_ops->vhost_get_features(hdev, &features);
M
Michael S. Tsirkin 已提交
1007 1008 1009
    if (r < 0) {
        goto fail;
    }
1010 1011

    for (i = 0; i < hdev->nvqs; ++i) {
1012
        r = vhost_virtqueue_init(hdev, hdev->vqs + i, hdev->vq_index + i);
1013 1014 1015 1016
        if (r < 0) {
            goto fail_vq;
        }
    }
M
Michael S. Tsirkin 已提交
1017 1018
    hdev->features = features;

A
Avi Kivity 已提交
1019
    hdev->memory_listener = (MemoryListener) {
1020 1021
        .begin = vhost_begin,
        .commit = vhost_commit,
A
Avi Kivity 已提交
1022 1023
        .region_add = vhost_region_add,
        .region_del = vhost_region_del,
1024
        .region_nop = vhost_region_nop,
A
Avi Kivity 已提交
1025 1026 1027 1028 1029
        .log_start = vhost_log_start,
        .log_stop = vhost_log_stop,
        .log_sync = vhost_log_sync,
        .log_global_start = vhost_log_global_start,
        .log_global_stop = vhost_log_global_stop,
1030 1031
        .eventfd_add = vhost_eventfd_add,
        .eventfd_del = vhost_eventfd_del,
1032
        .priority = 10
A
Avi Kivity 已提交
1033
    };
1034 1035 1036 1037 1038

    if (hdev->migration_blocker == NULL) {
        if (!(hdev->features & (0x1ULL << VHOST_F_LOG_ALL))) {
            error_setg(&hdev->migration_blocker,
                       "Migration disabled: vhost lacks VHOST_F_LOG_ALL feature.");
1039 1040 1041
        } else if (!qemu_memfd_check()) {
            error_setg(&hdev->migration_blocker,
                       "Migration disabled: failed to allocate shared memory");
1042 1043 1044 1045
        }
    }

    if (hdev->migration_blocker != NULL) {
1046 1047
        migrate_add_blocker(hdev->migration_blocker);
    }
1048

1049
    hdev->mem = g_malloc0(offsetof(struct vhost_memory, regions));
1050 1051
    hdev->n_mem_sections = 0;
    hdev->mem_sections = NULL;
M
Michael S. Tsirkin 已提交
1052 1053 1054 1055
    hdev->log = NULL;
    hdev->log_size = 0;
    hdev->log_enabled = false;
    hdev->started = false;
1056
    hdev->memory_changed = false;
1057
    memory_listener_register(&hdev->memory_listener, &address_space_memory);
M
Michael S. Tsirkin 已提交
1058
    return 0;
1059 1060 1061 1062
fail_vq:
    while (--i >= 0) {
        vhost_virtqueue_cleanup(hdev->vqs + i);
    }
M
Michael S. Tsirkin 已提交
1063 1064
fail:
    r = -errno;
1065
    hdev->vhost_ops->vhost_backend_cleanup(hdev);
1066
    QLIST_REMOVE(hdev, entry);
M
Michael S. Tsirkin 已提交
1067 1068 1069 1070 1071
    return r;
}

void vhost_dev_cleanup(struct vhost_dev *hdev)
{
1072 1073 1074 1075
    int i;
    for (i = 0; i < hdev->nvqs; ++i) {
        vhost_virtqueue_cleanup(hdev->vqs + i);
    }
A
Avi Kivity 已提交
1076
    memory_listener_unregister(&hdev->memory_listener);
1077 1078 1079 1080
    if (hdev->migration_blocker) {
        migrate_del_blocker(hdev->migration_blocker);
        error_free(hdev->migration_blocker);
    }
1081
    g_free(hdev->mem);
1082
    g_free(hdev->mem_sections);
1083
    hdev->vhost_ops->vhost_backend_cleanup(hdev);
1084
    QLIST_REMOVE(hdev, entry);
M
Michael S. Tsirkin 已提交
1085 1086
}

1087 1088 1089 1090 1091
/* Stop processing guest IO notifications in qemu.
 * Start processing them in vhost in kernel.
 */
int vhost_dev_enable_notifiers(struct vhost_dev *hdev, VirtIODevice *vdev)
{
K
KONRAD Frederic 已提交
1092 1093 1094
    BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(vdev)));
    VirtioBusState *vbus = VIRTIO_BUS(qbus);
    VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(vbus);
1095
    int i, r, e;
K
KONRAD Frederic 已提交
1096
    if (!k->set_host_notifier) {
1097 1098 1099 1100 1101 1102
        fprintf(stderr, "binding does not support host notifiers\n");
        r = -ENOSYS;
        goto fail;
    }

    for (i = 0; i < hdev->nvqs; ++i) {
K
KONRAD Frederic 已提交
1103
        r = k->set_host_notifier(qbus->parent, hdev->vq_index + i, true);
1104 1105 1106 1107 1108 1109 1110 1111 1112
        if (r < 0) {
            fprintf(stderr, "vhost VQ %d notifier binding failed: %d\n", i, -r);
            goto fail_vq;
        }
    }

    return 0;
fail_vq:
    while (--i >= 0) {
1113 1114
        e = k->set_host_notifier(qbus->parent, hdev->vq_index + i, false);
        if (e < 0) {
1115 1116 1117
            fprintf(stderr, "vhost VQ %d notifier cleanup error: %d\n", i, -r);
            fflush(stderr);
        }
1118
        assert (e >= 0);
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
    }
fail:
    return r;
}

/* Stop processing guest IO notifications in vhost.
 * Start processing them in qemu.
 * This might actually run the qemu handlers right away,
 * so virtio in qemu must be completely setup when this is called.
 */
void vhost_dev_disable_notifiers(struct vhost_dev *hdev, VirtIODevice *vdev)
{
K
KONRAD Frederic 已提交
1131 1132 1133
    BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(vdev)));
    VirtioBusState *vbus = VIRTIO_BUS(qbus);
    VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(vbus);
1134 1135 1136
    int i, r;

    for (i = 0; i < hdev->nvqs; ++i) {
K
KONRAD Frederic 已提交
1137
        r = k->set_host_notifier(qbus->parent, hdev->vq_index + i, false);
1138 1139 1140 1141 1142 1143 1144 1145
        if (r < 0) {
            fprintf(stderr, "vhost VQ %d notifier cleanup failed: %d\n", i, -r);
            fflush(stderr);
        }
        assert (r >= 0);
    }
}

1146 1147 1148 1149 1150
/* Test and clear event pending status.
 * Should be called after unmask to avoid losing events.
 */
bool vhost_virtqueue_pending(struct vhost_dev *hdev, int n)
{
J
Jason Wang 已提交
1151 1152
    struct vhost_virtqueue *vq = hdev->vqs + n - hdev->vq_index;
    assert(n >= hdev->vq_index && n < hdev->vq_index + hdev->nvqs);
1153 1154 1155 1156 1157 1158 1159 1160
    return event_notifier_test_and_clear(&vq->masked_notifier);
}

/* Mask/unmask events from this vq. */
void vhost_virtqueue_mask(struct vhost_dev *hdev, VirtIODevice *vdev, int n,
                         bool mask)
{
    struct VirtQueue *vvq = virtio_get_queue(vdev, n);
J
Jason Wang 已提交
1161
    int r, index = n - hdev->vq_index;
1162
    struct vhost_vring_file file;
1163 1164

    if (mask) {
J
Jason Wang 已提交
1165
        file.fd = event_notifier_get_fd(&hdev->vqs[index].masked_notifier);
1166 1167 1168
    } else {
        file.fd = event_notifier_get_fd(virtio_queue_get_guest_notifier(vvq));
    }
1169

1170 1171
    file.index = hdev->vhost_ops->vhost_get_vq_index(hdev, n);
    r = hdev->vhost_ops->vhost_set_vring_call(hdev, &file);
1172 1173 1174
    assert(r >= 0);
}

C
Cornelia Huck 已提交
1175 1176
uint64_t vhost_get_features(struct vhost_dev *hdev, const int *feature_bits,
                            uint64_t features)
1177 1178 1179
{
    const int *bit = feature_bits;
    while (*bit != VHOST_INVALID_FEATURE_BIT) {
C
Cornelia Huck 已提交
1180
        uint64_t bit_mask = (1ULL << *bit);
1181 1182 1183 1184 1185 1186 1187 1188 1189
        if (!(hdev->features & bit_mask)) {
            features &= ~bit_mask;
        }
        bit++;
    }
    return features;
}

void vhost_ack_features(struct vhost_dev *hdev, const int *feature_bits,
C
Cornelia Huck 已提交
1190
                        uint64_t features)
1191 1192 1193
{
    const int *bit = feature_bits;
    while (*bit != VHOST_INVALID_FEATURE_BIT) {
C
Cornelia Huck 已提交
1194
        uint64_t bit_mask = (1ULL << *bit);
1195 1196 1197 1198 1199 1200 1201
        if (features & bit_mask) {
            hdev->acked_features |= bit_mask;
        }
        bit++;
    }
}

1202
/* Host notifiers must be enabled at this point. */
M
Michael S. Tsirkin 已提交
1203 1204 1205
int vhost_dev_start(struct vhost_dev *hdev, VirtIODevice *vdev)
{
    int i, r;
1206 1207 1208

    hdev->started = true;

M
Michael S. Tsirkin 已提交
1209 1210
    r = vhost_dev_set_features(hdev, hdev->log_enabled);
    if (r < 0) {
1211
        goto fail_features;
M
Michael S. Tsirkin 已提交
1212
    }
1213
    r = hdev->vhost_ops->vhost_set_mem_table(hdev, hdev->mem);
M
Michael S. Tsirkin 已提交
1214 1215
    if (r < 0) {
        r = -errno;
1216
        goto fail_mem;
M
Michael S. Tsirkin 已提交
1217
    }
1218
    for (i = 0; i < hdev->nvqs; ++i) {
1219
        r = vhost_virtqueue_start(hdev,
J
Jason Wang 已提交
1220 1221 1222
                                  vdev,
                                  hdev->vqs + i,
                                  hdev->vq_index + i);
1223 1224 1225 1226 1227
        if (r < 0) {
            goto fail_vq;
        }
    }

M
Michael S. Tsirkin 已提交
1228
    if (hdev->log_enabled) {
M
Michael S. Tsirkin 已提交
1229 1230
        uint64_t log_base;

M
Michael S. Tsirkin 已提交
1231
        hdev->log_size = vhost_get_log_size(hdev);
M
Marc-André Lureau 已提交
1232 1233
        hdev->log = vhost_log_get(hdev->log_size,
                                  vhost_dev_log_is_shared(hdev));
J
Jason Wang 已提交
1234
        log_base = (uintptr_t)hdev->log->log;
1235
        r = hdev->vhost_ops->vhost_set_log_base(hdev,
1236 1237
                                                hdev->log_size ? log_base : 0,
                                                hdev->log);
M
Michael S. Tsirkin 已提交
1238 1239
        if (r < 0) {
            r = -errno;
1240
            goto fail_log;
M
Michael S. Tsirkin 已提交
1241 1242
        }
    }
1243

M
Michael S. Tsirkin 已提交
1244
    return 0;
1245
fail_log:
1246
    vhost_log_put(hdev, false);
M
Michael S. Tsirkin 已提交
1247 1248
fail_vq:
    while (--i >= 0) {
1249
        vhost_virtqueue_stop(hdev,
J
Jason Wang 已提交
1250 1251 1252
                             vdev,
                             hdev->vqs + i,
                             hdev->vq_index + i);
M
Michael S. Tsirkin 已提交
1253
    }
J
Jason Wang 已提交
1254
    i = hdev->nvqs;
1255 1256
fail_mem:
fail_features:
1257 1258

    hdev->started = false;
M
Michael S. Tsirkin 已提交
1259 1260 1261
    return r;
}

1262
/* Host notifiers must be enabled at this point. */
M
Michael S. Tsirkin 已提交
1263 1264
void vhost_dev_stop(struct vhost_dev *hdev, VirtIODevice *vdev)
{
J
Jason Wang 已提交
1265
    int i;
1266

M
Michael S. Tsirkin 已提交
1267
    for (i = 0; i < hdev->nvqs; ++i) {
1268
        vhost_virtqueue_stop(hdev,
J
Jason Wang 已提交
1269 1270 1271
                             vdev,
                             hdev->vqs + i,
                             hdev->vq_index + i);
M
Michael S. Tsirkin 已提交
1272
    }
1273

J
Jason Wang 已提交
1274
    vhost_log_put(hdev, true);
M
Michael S. Tsirkin 已提交
1275
    hdev->started = false;
1276
    hdev->log = NULL;
M
Michael S. Tsirkin 已提交
1277 1278
    hdev->log_size = 0;
}
J
Jason Wang 已提交
1279