aboutsummaryrefslogtreecommitdiff
path: root/samples/shadow_ioeventfd_server.c
blob: a73783171f1d8be145230b2af1663b728b402abb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
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
/*
 * Copyright (c) 2022, Nutanix Inc. All rights reserved.
 *     Author: Thanos Makatos <thanos@nutanix.com>
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *      * Redistributions of source code must retain the above copyright
 *        notice, this list of conditions and the following disclaimer.
 *      * Redistributions in binary form must reproduce the above copyright
 *        notice, this list of conditions and the following disclaimer in the
 *        documentation and/or other materials provided with the distribution.
 *      * Neither the name of Nutanix nor the names of its contributors may be
 *        used to endorse or promote products derived from this software without
 *        specific prior written permission.
 *
 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 *  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 *  ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
 *  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 *  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 *  SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 *  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 *  OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
 *  DAMAGE.
 *
 */

/*
 * shadow_ioeventfd_server.c: an example of how to use a shadow ioeventfd.
 * There is no Linux kernel driver, use samples/shadow_ioeventfd_speed_test.c
 * in the guest instead.
 */

#include <stdio.h>
#include <err.h>
#include <stdlib.h>
#include <errno.h>
#include <assert.h>
#include <sys/poll.h>
#include <sys/eventfd.h>
#include <sys/mman.h>
#include <sys/syscall.h>

#include "libvfio-user.h"
#include "common.h"

static void
_log(vfu_ctx_t *vfu_ctx UNUSED, int level UNUSED, char const *msg)
{
    fprintf(stderr, "%s\n", msg);
}

static ssize_t
bar0_cb(vfu_ctx_t *vfu_ctx UNUSED, char * const buf UNUSED,
        size_t count UNUSED, loff_t offset UNUSED,
        const bool is_write UNUSED)
{
    return count;
}

int
main(int argc, char *argv[])
{
    int ret;
    vfu_ctx_t *vfu_ctx;
    struct pollfd fds[2]; /* one for vfu_ctx, one for shadow_ioeventfd */
    int fd, bar0_fd;

    if (argc != 2) {
        errx(EXIT_FAILURE, "missing vfio-user socket path");
    }

    vfu_ctx = vfu_create_ctx(VFU_TRANS_SOCK, argv[1],
                             LIBVFIO_USER_FLAG_ATTACH_NB, NULL,
                             VFU_DEV_TYPE_PCI);

    if (vfu_ctx == NULL) {
        err(EXIT_FAILURE, "failed to initialize device emulation");
    }

    ret = vfu_setup_log(vfu_ctx, _log, LOG_ERR);
    if (ret < 0) {
        err(EXIT_FAILURE, "failed to setup log");
    }

    ret = vfu_pci_init(vfu_ctx, VFU_PCI_TYPE_CONVENTIONAL,
                       PCI_HEADER_TYPE_NORMAL, 0);
    if (ret < 0) {
        err(EXIT_FAILURE, "vfu_pci_init() failed");
    }

    vfu_pci_set_id(vfu_ctx, 0x4e58, 0, 0x0, 0x0);

    ret = vfu_setup_region(vfu_ctx, VFU_PCI_DEV_BAR0_REGION_IDX,
                           sysconf(_SC_PAGE_SIZE), &bar0_cb,
                           VFU_REGION_FLAG_RW | VFU_REGION_FLAG_MEM, NULL, 0,
                           -1, 0);
    if (ret < 0) {
        err(EXIT_FAILURE, "failed to setup region");
    }

    ret = vfu_realize_ctx(vfu_ctx);
    if (ret < 0) {
        err(EXIT_FAILURE, "failed to realize device");
    }

    fds[0] = (struct pollfd) {
        .fd = vfu_get_poll_fd(vfu_ctx),
        .events = POLLIN | POLLOUT
    };
    ret = poll(fds, 1, -1);
    assert(ret == 1);
    ret = vfu_attach_ctx(vfu_ctx);
    if (ret < 0) {
         err(EXIT_FAILURE, "failed to attach device");
    }

    fd = eventfd(0, 0);
    if (fd == -1) {
        err(EXIT_FAILURE, "failed to create eventfd");
    }
    bar0_fd = syscall(SYS_memfd_create, "BAR0", 0);
    if (bar0_fd == -1) {
        err(EXIT_FAILURE, "failed to create BAR0 file");
    }
    ret = ftruncate(bar0_fd, sysconf(_SC_PAGESIZE));
    if (ret == -1) {
        err(EXIT_FAILURE, "failed to truncate BAR0 file");
    }
    ret = vfu_create_ioeventfd(vfu_ctx, VFU_PCI_DEV_BAR0_REGION_IDX,
                               fd, 0, 4,
                               0, false, bar0_fd, 0);
    if (ret == -1) {
        err(EXIT_FAILURE, "failed to create shadow ioeventfd");
    }

    fds[0] = (struct pollfd) {
        .fd = vfu_get_poll_fd(vfu_ctx),
        .events = POLLIN
    };
    fds[1] = (struct pollfd) {
        .fd = fd,
        .events = POLLIN
    };

    do {
        ret = poll(fds, 2, -1);
        if (ret < 0) {
            err(EXIT_FAILURE, "failed to poll(2)");
        }
        assert(ret > 0);
        if (fds[0].revents & (POLLIN)) {
            ret = vfu_run_ctx(vfu_ctx);
            if (ret < 0) {
                if (errno == EAGAIN) {
                    continue;
                }
                if (errno == ENOTCONN) {
                    return 0;
                }
                err(EXIT_FAILURE, "vfu_run_ctx() failed");
            }
        }
        if (fds[1].revents & POLLIN) {
            eventfd_t value;
            eventfd_read(fd, &value);
            bar0_cb(vfu_ctx, NULL, 4, 0, true);
        }
    } while (true);
    return 0;
}

/* ex: set tabstop=4 shiftwidth=4 softtabstop=4 expandtab: */