diff mbox series

[3/5] tools/vhost-user-i2c: Add backend driver

Message ID c269da55e0b3ff984bf538e3001efc4732c6dea7.1616570702.git.viresh.kumar@linaro.org
State New
Headers show
Series virtio: Implement generic vhost-user-i2c backend | expand

Commit Message

Viresh Kumar March 24, 2021, 7:33 a.m. UTC
This adds the vhost-user backend driver to support virtio based I2C
devices.

vhost-user-i2c --help

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>

---
 hw/virtio/vhost-user-i2c.c               |   2 +-
 tools/meson.build                        |   8 +
 tools/vhost-user-i2c/50-qemu-i2c.json.in |   5 +
 tools/vhost-user-i2c/main.c              | 652 +++++++++++++++++++++++
 tools/vhost-user-i2c/meson.build         |  10 +
 5 files changed, 676 insertions(+), 1 deletion(-)
 create mode 100644 tools/vhost-user-i2c/50-qemu-i2c.json.in
 create mode 100644 tools/vhost-user-i2c/main.c
 create mode 100644 tools/vhost-user-i2c/meson.build

-- 
2.25.0.rc1.19.g042ed3e048af

Comments

Jie Deng March 25, 2021, 5:09 a.m. UTC | #1
On 2021/3/24 15:33, Viresh Kumar wrote:
> +

> +/* Definitions from virtio-i2c specifications */

> +#define VHOST_USER_I2C_MAX_QUEUES       1

> +

> +/* Status */

> +#define VIRTIO_I2C_MSG_OK               0

> +#define VIRTIO_I2C_MSG_ERR              1

> +

> +/* The bit 0 of the @virtio_i2c_out_hdr.@flags, used to group the requests */

> +#define VIRTIO_I2C_FLAGS_FAIL_NEXT      0x00000001

> +

> +/**

> + * struct virtio_i2c_out_hdr - the virtio I2C message OUT header

> + * @addr: the controlled device's address

> + * @padding: used to pad to full dword

> + * @flags: used for feature extensibility

> + */

> +struct virtio_i2c_out_hdr {

> +    uint16_t addr;

> +    uint16_t padding;

> +    uint32_t flags;

> +} __attribute__((packed));



__le16,  __le32 ?


> +

> +/**

> + * struct virtio_i2c_in_hdr - the virtio I2C message IN header

> + * @status: the processing result from the backend

> + */

> +struct virtio_i2c_in_hdr {

> +    uint8_t status;

> +} __attribute__((packed));

> +



I understand these definitions can be removed once the frontend driver 
is merged by the Linux ?


> +/* vhost-user-i2c definitions */

> +

> +#ifndef container_of

> +#define container_of(ptr, type, member) ({                      \

> +        const typeof(((type *) 0)->member) *__mptr = (ptr);     \

> +        (type *) ((char *) __mptr - offsetof(type, member));})

> +#endif



This seems to be a general interface.  I see there is a definition in 
qemu/compiler.h.

Can we reuse it ?
Viresh Kumar March 25, 2021, 5:22 a.m. UTC | #2
On 25-03-21, 13:09, Jie Deng wrote:
> 

> On 2021/3/24 15:33, Viresh Kumar wrote:

> > +

> > +/* Definitions from virtio-i2c specifications */

> > +#define VHOST_USER_I2C_MAX_QUEUES       1

> > +

> > +/* Status */

> > +#define VIRTIO_I2C_MSG_OK               0

> > +#define VIRTIO_I2C_MSG_ERR              1

> > +

> > +/* The bit 0 of the @virtio_i2c_out_hdr.@flags, used to group the requests */

> > +#define VIRTIO_I2C_FLAGS_FAIL_NEXT      0x00000001

> > +

> > +/**

> > + * struct virtio_i2c_out_hdr - the virtio I2C message OUT header

> > + * @addr: the controlled device's address

> > + * @padding: used to pad to full dword

> > + * @flags: used for feature extensibility

> > + */

> > +struct virtio_i2c_out_hdr {

> > +    uint16_t addr;

> > +    uint16_t padding;

> > +    uint32_t flags;

> > +} __attribute__((packed));

> 

> 

> __le16,  __le32 ?


Maybe, but I didn't do them because of this:

docs/devel/style.rst:

"Don't use Linux kernel internal types like u32, __u32 or __le32."
 
> > +

> > +/**

> > + * struct virtio_i2c_in_hdr - the virtio I2C message IN header

> > + * @status: the processing result from the backend

> > + */

> > +struct virtio_i2c_in_hdr {

> > +    uint8_t status;

> > +} __attribute__((packed));

> > +

> 

> I understand these definitions can be removed once the frontend driver is

> merged by the Linux ?


Yes, we would be required to somehow include the uapi header that
kernel is adding and then this won't be required.
 
> > +/* vhost-user-i2c definitions */

> > +

> > +#ifndef container_of

> > +#define container_of(ptr, type, member) ({                      \

> > +        const typeof(((type *) 0)->member) *__mptr = (ptr);     \

> > +        (type *) ((char *) __mptr - offsetof(type, member));})

> > +#endif

> 

> 

> This seems to be a general interface.  I see there is a definition in

> qemu/compiler.h.

> 

> Can we reuse it ?


Damn. My bad (maybe not). I picked this part from the RPMB patchset
that Alex sent and didn't bother looking for it.

Though on the other hand, we are looking to make this file independent
of qemu so it can be used by other hypervisors without any (or much)
modifications, and maybe so it was done so.

Alex ?

-- 
viresh
Jie Deng March 25, 2021, 6:17 a.m. UTC | #3
On 2021/3/24 15:33, Viresh Kumar wrote:
> +static int vi2c_parse(VuI2c *i2c)

> +{

> +    uint16_t client_addr[MAX_I2C_VDEV];

> +    int32_t n_adapter = 0, n_client;

> +    int64_t addr, bus;

> +    const char *cp, *t;

> +

> +    while (device_list) {

> +        /* Read <bus>:<client_addr>[:<client_addr>] entries one by one */

> +        cp = strsep(&device_list, ",");

> +

> +        if (!cp || *cp =='\0') {

> +            break;

> +        }

> +

> +        if (n_adapter == MAX_I2C_ADAPTER) {

> +            g_printerr("too many adapter (%d), only support %d \n", n_adapter,

> +                       MAX_I2C_ADAPTER);

> +            goto out;

> +        }

> +

> +        if (qemu_strtol(cp, &t, 10, &bus) || bus < 0) {

> +            g_printerr("Invalid bus number %s\n", cp);

> +            goto out;

> +        }

> +

> +        cp = t;

> +        n_client = 0;

> +

> +        /* Parse clients <client_addr>[:<client_addr>] entries one by one */

> +        while (cp != NULL && *cp !='\0') {

> +            if (*cp == ':')

> +                cp++;

> +

> +            if (n_client == MAX_I2C_VDEV) {

> +                g_printerr("too many devices (%d), only support %d \n",

> +                           n_client, MAX_I2C_VDEV);

> +                goto out;

> +            }

> +

> +            if (qemu_strtol(cp, &t, 16, &addr) || addr < 0 || addr > MAX_I2C_VDEV) {

> +                g_printerr("Invalid address %s : %lx\n", cp, addr);

> +                goto out;

> +            }

> +

> +            client_addr[n_client++] = addr;

> +            cp = t;

> +            if (verbose) {

> +                g_print("i2c adapter %ld:0x%lx\n", bus, addr);

> +            }

> +        }

> +

> +        i2c->adapter[n_adapter] = vi2c_create_adapter(bus, client_addr, n_client);

> +        if (!i2c->adapter[n_adapter])

> +            goto out;

> +        n_adapter++;

> +    }

> +

> +    if (!n_adapter) {

> +        g_printerr("Failed to add any adapters\n");

> +        return -1;

> +    }

> +

> +    i2c->adapter_num = n_adapter;



i2c->adapter_num is set here, but used in vi2c_remove_adapters.
when you goto out from while {...}, i2c->adapter_num is always 0,
May be a bug ?


> +

> +    if (!vi2c_map_adapters(i2c)) {

> +        return 0;

> +    }

> +

> +out:

> +    vi2c_remove_adapters(i2c);

> +    return -1;

> +}

> +

>
Viresh Kumar March 25, 2021, 6:36 a.m. UTC | #4
On 25-03-21, 14:17, Jie Deng wrote:
> i2c->adapter_num is set here, but used in vi2c_remove_adapters.

> when you goto out from while {...}, i2c->adapter_num is always 0,

> May be a bug ?


It certainly is, this should fix it:

diff --git a/tools/vhost-user-i2c/main.c b/tools/vhost-user-i2c/main.c
index 071493cbd5c5..65d27ef04d42 100644
--- a/tools/vhost-user-i2c/main.c
+++ b/tools/vhost-user-i2c/main.c
@@ -202,7 +202,7 @@ static void vi2c_remove_adapters(VuI2c *i2c)
     VI2cAdapter *adapter;
     int32_t i;
 
-    for (i = 0; i < i2c->adapter_num; i++) {
+    for (i = 0; i < MAX_I2C_ADAPTER; i++) {
         adapter = i2c->adapter[i];
         if (!adapter) {
             break;

-- 
viresh
Alex Bennée March 25, 2021, 12:22 p.m. UTC | #5
Viresh Kumar <viresh.kumar@linaro.org> writes:

> On 25-03-21, 13:09, Jie Deng wrote:

>> 

>> On 2021/3/24 15:33, Viresh Kumar wrote:

>> > +

>> > +/* Definitions from virtio-i2c specifications */

>> > +#define VHOST_USER_I2C_MAX_QUEUES       1

>> > +

>> > +/* Status */

>> > +#define VIRTIO_I2C_MSG_OK               0

>> > +#define VIRTIO_I2C_MSG_ERR              1

>> > +

>> > +/* The bit 0 of the @virtio_i2c_out_hdr.@flags, used to group the requests */

>> > +#define VIRTIO_I2C_FLAGS_FAIL_NEXT      0x00000001

>> > +

>> > +/**

>> > + * struct virtio_i2c_out_hdr - the virtio I2C message OUT header

>> > + * @addr: the controlled device's address

>> > + * @padding: used to pad to full dword

>> > + * @flags: used for feature extensibility

>> > + */

>> > +struct virtio_i2c_out_hdr {

>> > +    uint16_t addr;

>> > +    uint16_t padding;

>> > +    uint32_t flags;

>> > +} __attribute__((packed));

>> 

>> 

>> __le16,  __le32 ?

>

> Maybe, but I didn't do them because of this:

>

> docs/devel/style.rst:

>

> "Don't use Linux kernel internal types like u32, __u32 or __le32."

>  

>> > +

>> > +/**

>> > + * struct virtio_i2c_in_hdr - the virtio I2C message IN header

>> > + * @status: the processing result from the backend

>> > + */

>> > +struct virtio_i2c_in_hdr {

>> > +    uint8_t status;

>> > +} __attribute__((packed));

>> > +

>> 

>> I understand these definitions can be removed once the frontend driver is

>> merged by the Linux ?

>

> Yes, we would be required to somehow include the uapi header that

> kernel is adding and then this won't be required.


What I often do is include a temporary patch in my series that includes
the updated uapi headers from my Linux branch and mark it as not for
merge until the uapi headers make it into a released tree.

>  

>> > +/* vhost-user-i2c definitions */

>> > +

>> > +#ifndef container_of

>> > +#define container_of(ptr, type, member) ({                      \

>> > +        const typeof(((type *) 0)->member) *__mptr = (ptr);     \

>> > +        (type *) ((char *) __mptr - offsetof(type, member));})

>> > +#endif

>> 

>> 

>> This seems to be a general interface.  I see there is a definition in

>> qemu/compiler.h.

>> 

>> Can we reuse it ?

>

> Damn. My bad (maybe not). I picked this part from the RPMB patchset

> that Alex sent and didn't bother looking for it.

>

> Though on the other hand, we are looking to make this file independent

> of qemu so it can be used by other hypervisors without any (or much)

> modifications, and maybe so it was done so.

>

> Alex ?



-- 
Alex Bennée
Arnd Bergmann March 25, 2021, 4:16 p.m. UTC | #6
On Wed, Mar 24, 2021 at 8:33 AM Viresh Kumar <viresh.kumar@linaro.org> wrote:

> +static uint8_t vi2c_xfer(VuDev *dev, struct i2c_msg *msg)

> +{

> +    VuI2c *i2c = container_of(dev, VuI2c, dev.parent);

> +    struct i2c_rdwr_ioctl_data data;

> +    VI2cAdapter *adapter;

> +

> +    adapter = vi2c_find_adapter(i2c, msg->addr);

> +    if (!adapter) {

> +        g_printerr("Failed to find adapter for address: %x\n", msg->addr);

> +        return VIRTIO_I2C_MSG_ERR;

> +    }

> +

> +    data.nmsgs = 1;

> +    data.msgs = msg;

> +

> +    if (ioctl(adapter->fd, I2C_RDWR, &data) < 0) {

> +        g_printerr("Failed to transfer data to address %x : %d\n", msg->addr, errno);

> +        return VIRTIO_I2C_MSG_ERR;

> +    }


As you found during testing, this doesn't work for host kernels
that only implement the SMBUS protocol. Since most i2c clients
only need simple register read/write operations, I think you should
at least handle the common ones (and one two byte read/write)
here to make it more useful.

> +static void vi2c_handle_ctrl(VuDev *dev, int qidx)

> +{

> +    VuVirtq *vq = vu_get_queue(dev, qidx);

> +    struct i2c_msg msg;

> +    struct virtio_i2c_out_hdr *out_hdr;

> +    struct virtio_i2c_in_hdr *in_hdr;

> +    bool fail_next = false;

> +    size_t len, in_hdr_len;

> +

> +    for (;;) {

> +        VuVirtqElement *elem;

> +

> +        elem = vu_queue_pop(dev, vq, sizeof(VuVirtqElement));

> +        if (!elem) {

> +            break;

> +        }

> +

> +        g_debug("%s: got queue (in %d, out %d)", __func__, elem->in_num,

> +                elem->out_num);

> +

> +        /* Validate size of out header */

> +        if (elem->out_sg[0].iov_len != sizeof(*out_hdr)) {

> +            g_warning("%s: Invalid out hdr %zu : %zu\n", __func__,

> +                      elem->out_sg[0].iov_len, sizeof(*out_hdr));

> +            continue;

> +        }

> +

> +        out_hdr = elem->out_sg[0].iov_base;

> +

> +        /* Bit 0 is reserved in virtio spec */

> +        msg.addr = out_hdr->addr >> 1;

> +

> +        /* Read Operation */

> +        if (elem->out_num == 1 && elem->in_num == 2) {

> +            len = elem->in_sg[0].iov_len;

> +            if (!len) {

> +                g_warning("%s: Read buffer length can't be zero\n", __func__);

> +                continue;

> +            }



It looks like you are not handling endianness conversion here. As far as I
can tell, the protocol requires little-endian data, but the code might
run on a big-endian CPU.

Jie Deng also pointed out the type differences, but actually handling
them correctly is more important that describing them the right way.

        Arnd
Viresh Kumar March 26, 2021, 6:01 a.m. UTC | #7
On 25-03-21, 17:16, Arnd Bergmann wrote:
> On Wed, Mar 24, 2021 at 8:33 AM Viresh Kumar <viresh.kumar@linaro.org> wrote:

> 

> > +static uint8_t vi2c_xfer(VuDev *dev, struct i2c_msg *msg)

> > +{

> > +    VuI2c *i2c = container_of(dev, VuI2c, dev.parent);

> > +    struct i2c_rdwr_ioctl_data data;

> > +    VI2cAdapter *adapter;

> > +

> > +    adapter = vi2c_find_adapter(i2c, msg->addr);

> > +    if (!adapter) {

> > +        g_printerr("Failed to find adapter for address: %x\n", msg->addr);

> > +        return VIRTIO_I2C_MSG_ERR;

> > +    }

> > +

> > +    data.nmsgs = 1;

> > +    data.msgs = msg;

> > +

> > +    if (ioctl(adapter->fd, I2C_RDWR, &data) < 0) {

> > +        g_printerr("Failed to transfer data to address %x : %d\n", msg->addr, errno);

> > +        return VIRTIO_I2C_MSG_ERR;

> > +    }

> 

> As you found during testing, this doesn't work for host kernels

> that only implement the SMBUS protocol. Since most i2c clients

> only need simple register read/write operations, I think you should

> at least handle the common ones (and one two byte read/write)

> here to make it more useful.


I am thinking if that is what we really want to support, then
shouldn't the i2c virtio spec be updated first to support SMBUS type
transfers as well?

> > +static void vi2c_handle_ctrl(VuDev *dev, int qidx)

> > +{

> > +    VuVirtq *vq = vu_get_queue(dev, qidx);

> > +    struct i2c_msg msg;

> > +    struct virtio_i2c_out_hdr *out_hdr;

> > +    struct virtio_i2c_in_hdr *in_hdr;

> > +    bool fail_next = false;

> > +    size_t len, in_hdr_len;

> > +

> > +    for (;;) {

> > +        VuVirtqElement *elem;

> > +

> > +        elem = vu_queue_pop(dev, vq, sizeof(VuVirtqElement));

> > +        if (!elem) {

> > +            break;

> > +        }

> > +

> > +        g_debug("%s: got queue (in %d, out %d)", __func__, elem->in_num,

> > +                elem->out_num);

> > +

> > +        /* Validate size of out header */

> > +        if (elem->out_sg[0].iov_len != sizeof(*out_hdr)) {

> > +            g_warning("%s: Invalid out hdr %zu : %zu\n", __func__,

> > +                      elem->out_sg[0].iov_len, sizeof(*out_hdr));

> > +            continue;

> > +        }

> > +

> > +        out_hdr = elem->out_sg[0].iov_base;

> > +

> > +        /* Bit 0 is reserved in virtio spec */

> > +        msg.addr = out_hdr->addr >> 1;

> > +

> > +        /* Read Operation */

> > +        if (elem->out_num == 1 && elem->in_num == 2) {

> > +            len = elem->in_sg[0].iov_len;

> > +            if (!len) {

> > +                g_warning("%s: Read buffer length can't be zero\n", __func__);

> > +                continue;

> > +            }

> 

> 

> It looks like you are not handling endianness conversion here. As far as I

> can tell, the protocol requires little-endian data, but the code might

> run on a big-endian CPU.

> 

> Jie Deng also pointed out the type differences, but actually handling

> them correctly is more important that describing them the right way.


Right, I missed that.

-- 
viresh
Viresh Kumar March 26, 2021, 7:14 a.m. UTC | #8
On 25-03-21, 17:16, Arnd Bergmann wrote:
> On Wed, Mar 24, 2021 at 8:33 AM Viresh Kumar <viresh.kumar@linaro.org> wrote:

> > +static void vi2c_handle_ctrl(VuDev *dev, int qidx)

> > +{

> > +    VuVirtq *vq = vu_get_queue(dev, qidx);

> > +    struct i2c_msg msg;

> > +    struct virtio_i2c_out_hdr *out_hdr;

> > +    struct virtio_i2c_in_hdr *in_hdr;

> > +    bool fail_next = false;

> > +    size_t len, in_hdr_len;

> > +

> > +    for (;;) {

> > +        VuVirtqElement *elem;

> > +

> > +        elem = vu_queue_pop(dev, vq, sizeof(VuVirtqElement));

> > +        if (!elem) {

> > +            break;

> > +        }

> > +

> > +        g_debug("%s: got queue (in %d, out %d)", __func__, elem->in_num,

> > +                elem->out_num);

> > +

> > +        /* Validate size of out header */

> > +        if (elem->out_sg[0].iov_len != sizeof(*out_hdr)) {

> > +            g_warning("%s: Invalid out hdr %zu : %zu\n", __func__,

> > +                      elem->out_sg[0].iov_len, sizeof(*out_hdr));

> > +            continue;

> > +        }

> > +

> > +        out_hdr = elem->out_sg[0].iov_base;

> > +

> > +        /* Bit 0 is reserved in virtio spec */

> > +        msg.addr = out_hdr->addr >> 1;

> > +

> > +        /* Read Operation */

> > +        if (elem->out_num == 1 && elem->in_num == 2) {

> > +            len = elem->in_sg[0].iov_len;

> > +            if (!len) {

> > +                g_warning("%s: Read buffer length can't be zero\n", __func__);

> > +                continue;

> > +            }

> 

> 

> It looks like you are not handling endianness conversion here. As far as I

> can tell, the protocol requires little-endian data, but the code might

> run on a big-endian CPU.


I hope this is all we are required to do here, right ?

@@ -442,7 +421,7 @@ static void vi2c_handle_ctrl(VuDev *dev, int qidx)
         out_hdr = elem->out_sg[0].iov_base;
 
         /* Bit 0 is reserved in virtio spec */
-        msg.addr = out_hdr->addr >> 1;
+        msg.addr = le16toh(out_hdr->addr) >> 1;
 
         /* Read Operation */
         if (elem->out_num == 1 && elem->in_num == 2) {
@@ -489,7 +468,7 @@ static void vi2c_handle_ctrl(VuDev *dev, int qidx)
         in_hdr->status = fail_next ? VIRTIO_I2C_MSG_ERR : vi2c_xfer(dev, &msg);
         if (in_hdr->status == VIRTIO_I2C_MSG_ERR) {
             /* We need to fail remaining transfers as well */
-            fail_next = out_hdr->flags & VIRTIO_I2C_FLAGS_FAIL_NEXT;
+            fail_next = le32toh(out_hdr->flags) & VIRTIO_I2C_FLAGS_FAIL_NEXT;
         }
 
These are the only fields we are passing apart from buf, which goes
directly to the client device.

-- 
viresh
Arnd Bergmann March 26, 2021, 8:24 a.m. UTC | #9
On Fri, Mar 26, 2021 at 8:14 AM Viresh Kumar <viresh.kumar@linaro.org> wrote:
> On 25-03-21, 17:16, Arnd Bergmann wrote:

> > On Wed, Mar 24, 2021 at 8:33 AM Viresh Kumar <viresh.kumar@linaro.org> wrote:


> >

> > It looks like you are not handling endianness conversion here. As far as I

> > can tell, the protocol requires little-endian data, but the code might

> > run on a big-endian CPU.

>

> I hope this is all we are required to do here, right ?

>

> @@ -442,7 +421,7 @@ static void vi2c_handle_ctrl(VuDev *dev, int qidx)

>          out_hdr = elem->out_sg[0].iov_base;

>

>          /* Bit 0 is reserved in virtio spec */

> -        msg.addr = out_hdr->addr >> 1;

> +        msg.addr = le16toh(out_hdr->addr) >> 1;

>

>          /* Read Operation */

>          if (elem->out_num == 1 && elem->in_num == 2) {

> @@ -489,7 +468,7 @@ static void vi2c_handle_ctrl(VuDev *dev, int qidx)

>          in_hdr->status = fail_next ? VIRTIO_I2C_MSG_ERR : vi2c_xfer(dev, &msg);

>          if (in_hdr->status == VIRTIO_I2C_MSG_ERR) {

>              /* We need to fail remaining transfers as well */

> -            fail_next = out_hdr->flags & VIRTIO_I2C_FLAGS_FAIL_NEXT;

> +            fail_next = le32toh(out_hdr->flags) & VIRTIO_I2C_FLAGS_FAIL_NEXT;

>          }

>

> These are the only fields we are passing apart from buf, which goes

> directly to the client device.


I think so, the in_hdr is only one byte long, so it doesn't have an
endianness.

       Arnd
Arnd Bergmann March 26, 2021, 8:33 a.m. UTC | #10
On Fri, Mar 26, 2021 at 7:01 AM Viresh Kumar <viresh.kumar@linaro.org> wrote:
> On 25-03-21, 17:16, Arnd Bergmann wrote:

> > On Wed, Mar 24, 2021 at 8:33 AM Viresh Kumar <viresh.kumar@linaro.org> wrote:

> >

> > > +static uint8_t vi2c_xfer(VuDev *dev, struct i2c_msg *msg)

> > > +{

> > > +    VuI2c *i2c = container_of(dev, VuI2c, dev.parent);

> > > +    struct i2c_rdwr_ioctl_data data;

> > > +    VI2cAdapter *adapter;

> > > +

> > > +    adapter = vi2c_find_adapter(i2c, msg->addr);

> > > +    if (!adapter) {

> > > +        g_printerr("Failed to find adapter for address: %x\n", msg->addr);

> > > +        return VIRTIO_I2C_MSG_ERR;

> > > +    }

> > > +

> > > +    data.nmsgs = 1;

> > > +    data.msgs = msg;

> > > +

> > > +    if (ioctl(adapter->fd, I2C_RDWR, &data) < 0) {

> > > +        g_printerr("Failed to transfer data to address %x : %d\n", msg->addr, errno);

> > > +        return VIRTIO_I2C_MSG_ERR;

> > > +    }

> >

> > As you found during testing, this doesn't work for host kernels

> > that only implement the SMBUS protocol. Since most i2c clients

> > only need simple register read/write operations, I think you should

> > at least handle the common ones (and one two byte read/write)

> > here to make it more useful.

>

> I am thinking if that is what we really want to support, then

> shouldn't the i2c virtio spec be updated first to support SMBUS type

> transfers as well?


As far as I can tell, all the simple devices should just work, with
I2C_FUNC_SMBUS_READ_BLOCK_DATA being the main exception,
but it seems that has practically no users.

       Arnd
Alex Bennée March 30, 2021, 12:49 p.m. UTC | #11
Viresh Kumar <viresh.kumar@linaro.org> writes:

> On 25-03-21, 13:09, Jie Deng wrote:

>> 

>> On 2021/3/24 15:33, Viresh Kumar wrote:

<snip>
>  

>> > +/* vhost-user-i2c definitions */

>> > +

>> > +#ifndef container_of

>> > +#define container_of(ptr, type, member) ({                      \

>> > +        const typeof(((type *) 0)->member) *__mptr = (ptr);     \

>> > +        (type *) ((char *) __mptr - offsetof(type, member));})

>> > +#endif

>> 

>> 

>> This seems to be a general interface.  I see there is a definition in

>> qemu/compiler.h.

>> 

>> Can we reuse it ?

>

> Damn. My bad (maybe not). I picked this part from the RPMB patchset

> that Alex sent and didn't bother looking for it.

>

> Though on the other hand, we are looking to make this file independent

> of qemu so it can be used by other hypervisors without any (or much)

> modifications, and maybe so it was done so.

>

> Alex ?


Yes when doing virtio-rpmb I ended up copying a bunch of helper
functions from the core QEMU to avoid a dependency on the core code.
These included the vrpmb_iov_* functions as well as the HMAC-SHA-256
implementation (which QEMU has as well).

That said maybe this is futile because I ended up having to qemuutil to
the dependencies:

  dependencies: [qemuutil, glib, gio, vhost_user],

because it ends up failing to build due to the trace_ points that have
been added to the libvhost-user library. I'm sure this wouldn't be too
difficult to overcome if needed.

That said this is all build time dependencies - the final binary does
not rely on a QEMU library as everything it needs from qemu is
statically linked in. That doesn't stop it being portable to other
hypervisors or running independently of QEMU but it does tie it to being
built as part of the source tree.

-- 
Alex Bennée
diff mbox series

Patch

diff --git a/hw/virtio/vhost-user-i2c.c b/hw/virtio/vhost-user-i2c.c
index 7b0dc24412a4..c67c18ca00fc 100644
--- a/hw/virtio/vhost-user-i2c.c
+++ b/hw/virtio/vhost-user-i2c.c
@@ -218,7 +218,7 @@  static void vu_i2c_device_realize(DeviceState *dev, Error **errp)
 
     virtio_init(vdev, "vhost-user-i2c", VIRTIO_ID_I2C, 0);
 
-    i2c->req_vq = virtio_add_queue(vdev, 3, vu_i2c_handle_output);
+    i2c->req_vq = virtio_add_queue(vdev, 4, vu_i2c_handle_output);
     i2c->vhost_dev.nvqs = 1;
     i2c->vhost_dev.vqs = g_new0(struct vhost_virtqueue, i2c->vhost_dev.nvqs);
     ret = vhost_dev_init(&i2c->vhost_dev, &i2c->vhost_user,
diff --git a/tools/meson.build b/tools/meson.build
index 3e5a0abfa29f..8271e110978b 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -24,3 +24,11 @@  endif
 if have_virtiofsd
   subdir('virtiofsd')
 endif
+
+have_virtioi2c= (have_system and
+    have_tools and
+    'CONFIG_LINUX' in config_host)
+
+if have_virtioi2c
+  subdir('vhost-user-i2c')
+endif
diff --git a/tools/vhost-user-i2c/50-qemu-i2c.json.in b/tools/vhost-user-i2c/50-qemu-i2c.json.in
new file mode 100644
index 000000000000..dafd1337fa9c
--- /dev/null
+++ b/tools/vhost-user-i2c/50-qemu-i2c.json.in
@@ -0,0 +1,5 @@ 
+{
+  "description": "QEMU vhost-user-i2c",
+  "type": "bridge",
+  "binary": "@libexecdir@/vhost-user-i2c"
+}
diff --git a/tools/vhost-user-i2c/main.c b/tools/vhost-user-i2c/main.c
new file mode 100644
index 000000000000..20942aeb189a
--- /dev/null
+++ b/tools/vhost-user-i2c/main.c
@@ -0,0 +1,652 @@ 
+/*
+ * VIRTIO I2C Emulation via vhost-user
+ *
+ * Copyright (c) 2021 Viresh Kumar <viresh.kumar@linaro.org>
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#define G_LOG_DOMAIN "vhost-user-i2c"
+#define G_LOG_USE_STRUCTURED 1
+
+#include <glib.h>
+#include <gio/gio.h>
+#include <gio/gunixsocketaddress.h>
+#include <glib-unix.h>
+#include <glib/gstdio.h>
+#include <stdio.h>
+#include <stdbool.h>
+#include <string.h>
+#include <inttypes.h>
+#include <fcntl.h>
+#include <sys/ioctl.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <sys/mman.h>
+#include <unistd.h>
+#include <endian.h>
+#include <assert.h>
+#include <linux/i2c.h>
+#include <linux/i2c-dev.h>
+
+#include "qemu/cutils.h"
+#include "subprojects/libvhost-user/libvhost-user-glib.h"
+#include "subprojects/libvhost-user/libvhost-user.h"
+
+/* Definitions from virtio-i2c specifications */
+#define VHOST_USER_I2C_MAX_QUEUES       1
+
+/* Status */
+#define VIRTIO_I2C_MSG_OK               0
+#define VIRTIO_I2C_MSG_ERR              1
+
+/* The bit 0 of the @virtio_i2c_out_hdr.@flags, used to group the requests */
+#define VIRTIO_I2C_FLAGS_FAIL_NEXT      0x00000001
+
+/**
+ * struct virtio_i2c_out_hdr - the virtio I2C message OUT header
+ * @addr: the controlled device's address
+ * @padding: used to pad to full dword
+ * @flags: used for feature extensibility
+ */
+struct virtio_i2c_out_hdr {
+    uint16_t addr;
+    uint16_t padding;
+    uint32_t flags;
+} __attribute__((packed));
+
+/**
+ * struct virtio_i2c_in_hdr - the virtio I2C message IN header
+ * @status: the processing result from the backend
+ */
+struct virtio_i2c_in_hdr {
+    uint8_t status;
+} __attribute__((packed));
+
+/* vhost-user-i2c definitions */
+
+#ifndef container_of
+#define container_of(ptr, type, member) ({                      \
+        const typeof(((type *) 0)->member) *__mptr = (ptr);     \
+        (type *) ((char *) __mptr - offsetof(type, member));})
+#endif
+
+#define MAX_I2C_VDEV                    (1 << 7)
+#define MAX_I2C_ADAPTER                 16
+
+typedef struct {
+    int32_t fd;
+    int32_t bus;
+    bool clients[MAX_I2C_VDEV];
+} VI2cAdapter;
+
+typedef struct {
+    VugDev dev;
+    GMainLoop *loop;
+    VI2cAdapter *adapter[MAX_I2C_ADAPTER];
+    uint16_t adapter_map[MAX_I2C_VDEV];
+    uint32_t adapter_num;
+} VuI2c;
+
+static gboolean print_cap, verbose;
+static gchar *socket_path, *device_list;
+static gint socket_fd = -1;
+
+static GOptionEntry options[] = {
+    { "socket-path", 's', 0, G_OPTION_ARG_FILENAME, &socket_path, "Location of vhost-user Unix domain socket, incompatible with --fd", "PATH" },
+    { "fd", 'f', 0, G_OPTION_ARG_INT, &socket_fd, "Specify the file-descriptor of the backend, incompatible with --socket-path", "FD" },
+    { "device-list", 'l', 0, G_OPTION_ARG_STRING, &device_list, "List of i2c-dev bus and attached devices", "I2C Devices" },
+    { "print-capabilities", 'c', 0, G_OPTION_ARG_NONE, &print_cap, "Output to stdout the backend capabilities in JSON format and exit", NULL},
+    { "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose, "Be more verbose in output", NULL},
+    { NULL }
+};
+
+
+/* I2c helpers */
+static void fmt_bytes(GString *s, uint8_t *bytes, int len)
+{
+    int32_t i;
+    for (i = 0; i < len; i++) {
+        if (i && i % 16 == 0) {
+            g_string_append_c(s, '\n');
+        }
+        g_string_append_printf(s, "%x ", bytes[i]);
+    }
+}
+
+static void vi2c_dump_msg(struct i2c_msg *msg)
+{
+    g_autoptr(GString) s = g_string_new("\nI2c request: ");
+
+    g_string_append_printf(s, "addr: %x\n", msg->addr);
+    g_string_append_printf(s, "transfer len: %x\n", msg->len);
+
+    g_string_append_printf(s, "%s: ", msg->flags & I2C_M_RD ? "Data read" :
+                                                              "Data Written");
+    fmt_bytes(s, (uint8_t *)msg->buf, msg->len);
+    g_string_append_printf(s, "\n");
+
+    g_debug("%s: %s", __func__, s->str);
+}
+
+static int vi2c_map_adapters(VuI2c *i2c)
+{
+    VI2cAdapter *adapter;
+    int32_t i, client_addr;
+
+    /*
+     * Flatten the map for client address and adapter to the array:
+     *
+     * adapter_map[MAX_I2C_VDEV]:
+     *
+     * Adapter        | adapter2 | none  | adapter1 | adapter3 | none | none| (val)
+     *                |----------|-------|----------|----------|------|-----|
+     * Slave Address  | addr 1   | none  | addr 2   | addr 3   | none | none| (idx)
+     *                |<-----------------------MAX_I2C_VDEV---------------->|
+     */
+    for (i = 0; i < i2c->adapter_num; i++) {
+        adapter = i2c->adapter[i];
+
+        for (client_addr = 0; client_addr < MAX_I2C_VDEV; client_addr++) {
+            if (adapter->clients[client_addr]) {
+                if (i2c->adapter_map[client_addr]) {
+                    g_printerr("client addr %x repeated, not supported!\n",
+                               client_addr);
+                    return -1;
+                }
+
+                /* The array is initialized to 0, + 1 for index */
+                i2c->adapter_map[client_addr] = i + 1;
+                if (verbose) {
+                    g_print("client: 0x%x -> i2c adapter: %d\n", client_addr,
+                            adapter->bus);
+                }
+            }
+        }
+    }
+    return 0;
+}
+
+static VI2cAdapter *vi2c_find_adapter(VuI2c *i2c, uint16_t addr)
+{
+    int32_t idx;
+
+    if (addr < MAX_I2C_VDEV && ((idx = i2c->adapter_map[addr]) != 0)) {
+        return i2c->adapter[idx - 1];
+    }
+
+    return NULL;
+}
+
+static bool vi2c_client_access_ok(VI2cAdapter *adapter, uint16_t addr)
+{
+    if (ioctl(adapter->fd, I2C_SLAVE, addr) < 0) {
+        if (errno == EBUSY) {
+            g_printerr("client device %x is busy!\n", addr);
+        } else {
+            g_printerr("client device %d does not exist!\n", addr);
+        }
+        return false;
+    }
+    return true;
+}
+
+static void vi2c_remove_adapters(VuI2c *i2c)
+{
+    VI2cAdapter *adapter;
+    int32_t i;
+
+    for (i = 0; i < i2c->adapter_num; i++) {
+        adapter = i2c->adapter[i];
+        if (!adapter) {
+            break;
+        }
+
+        if (adapter->fd > 0) {
+            close(adapter->fd);
+        }
+
+        g_free(adapter);
+        i2c->adapter[i] = NULL;
+    }
+}
+
+static VI2cAdapter *vi2c_create_adapter(int32_t bus, uint16_t client_addr[],
+                                        int32_t n_client)
+{
+    VI2cAdapter *adapter;
+    char path[20];
+    int32_t fd, i;
+
+    if (bus < 0)
+        return NULL;
+
+    adapter = g_malloc0(sizeof(*adapter));
+    if (!adapter) {
+        g_printerr("failed to alloc adapter");
+        return NULL;
+    }
+
+    snprintf(path, sizeof(path), "/dev/i2c-%d", bus);
+    path[sizeof(path) - 1] = '\0';
+
+    fd = open(path, O_RDWR);
+    if (fd < 0) {
+        g_printerr("virtio_i2c: failed to open %s\n", path);
+        goto fail;
+    }
+
+    adapter->fd = fd;
+    adapter->bus = bus;
+
+    for (i = 0; i < n_client; i++) {
+        if (client_addr[i]) {
+            if (!vi2c_client_access_ok(adapter, client_addr[i])) {
+                goto fail;
+            }
+
+            if (adapter->clients[client_addr[i]]) {
+                g_printerr("client addr 0x%x repeat, not allowed.\n", client_addr[i]);
+                goto fail;
+            }
+
+            adapter->clients[client_addr[i]] = true;
+            if (verbose) {
+                g_print("Added client 0x%x to bus %u\n", client_addr[i], bus);
+            }
+        }
+    }
+    return adapter;
+
+fail:
+    g_free(adapter);
+    return NULL;
+}
+
+/*
+ * Virtio I2C device list format.
+ *
+ * <bus>:<client_addr>[:<client_addr>],
+ * [<bus>:<client_addr>[:<client_addr>]]
+ *
+ * bus (dec): adatper bus number.
+ * 	e.g. 2 for /dev/i2c-2
+ * client_addr (hex): address for client device
+ * 	e.g. 0x1C or 1C
+ *
+ * Example: --device-list="2:0x1c:0x20,3:0x10:0x2c"
+ *
+ * Note: client address can not repeat.
+ */
+static int vi2c_parse(VuI2c *i2c)
+{
+    uint16_t client_addr[MAX_I2C_VDEV];
+    int32_t n_adapter = 0, n_client;
+    int64_t addr, bus;
+    const char *cp, *t;
+
+    while (device_list) {
+        /* Read <bus>:<client_addr>[:<client_addr>] entries one by one */
+        cp = strsep(&device_list, ",");
+
+        if (!cp || *cp =='\0') {
+            break;
+        }
+
+        if (n_adapter == MAX_I2C_ADAPTER) {
+            g_printerr("too many adapter (%d), only support %d \n", n_adapter,
+                       MAX_I2C_ADAPTER);
+            goto out;
+        }
+
+        if (qemu_strtol(cp, &t, 10, &bus) || bus < 0) {
+            g_printerr("Invalid bus number %s\n", cp);
+            goto out;
+        }
+
+        cp = t;
+        n_client = 0;
+
+        /* Parse clients <client_addr>[:<client_addr>] entries one by one */
+        while (cp != NULL && *cp !='\0') {
+            if (*cp == ':')
+                cp++;
+
+            if (n_client == MAX_I2C_VDEV) {
+                g_printerr("too many devices (%d), only support %d \n",
+                           n_client, MAX_I2C_VDEV);
+                goto out;
+            }
+
+            if (qemu_strtol(cp, &t, 16, &addr) || addr < 0 || addr > MAX_I2C_VDEV) {
+                g_printerr("Invalid address %s : %lx\n", cp, addr);
+                goto out;
+            }
+
+            client_addr[n_client++] = addr;
+            cp = t;
+            if (verbose) {
+                g_print("i2c adapter %ld:0x%lx\n", bus, addr);
+            }
+        }
+
+        i2c->adapter[n_adapter] = vi2c_create_adapter(bus, client_addr, n_client);
+        if (!i2c->adapter[n_adapter])
+            goto out;
+        n_adapter++;
+    }
+
+    if (!n_adapter) {
+        g_printerr("Failed to add any adapters\n");
+        return -1;
+    }
+
+    i2c->adapter_num = n_adapter;
+
+    if (!vi2c_map_adapters(i2c)) {
+        return 0;
+    }
+
+out:
+    vi2c_remove_adapters(i2c);
+    return -1;
+}
+
+static uint8_t vi2c_xfer(VuDev *dev, struct i2c_msg *msg)
+{
+    VuI2c *i2c = container_of(dev, VuI2c, dev.parent);
+    struct i2c_rdwr_ioctl_data data;
+    VI2cAdapter *adapter;
+
+    adapter = vi2c_find_adapter(i2c, msg->addr);
+    if (!adapter) {
+        g_printerr("Failed to find adapter for address: %x\n", msg->addr);
+        return VIRTIO_I2C_MSG_ERR;
+    }
+
+    data.nmsgs = 1;
+    data.msgs = msg;
+
+    if (ioctl(adapter->fd, I2C_RDWR, &data) < 0) {
+        g_printerr("Failed to transfer data to address %x : %d\n", msg->addr, errno);
+        return VIRTIO_I2C_MSG_ERR;
+    }
+
+    if (verbose) {
+        vi2c_dump_msg(msg);
+    }
+
+    return VIRTIO_I2C_MSG_OK;
+}
+
+
+/* Virtio helpers */
+static uint64_t vi2c_get_features(VuDev *dev)
+{
+    if (verbose) {
+        g_info("%s: replying", __func__);
+    }
+    return 0;
+}
+
+static void vi2c_set_features(VuDev *dev, uint64_t features)
+{
+    if (verbose && features) {
+        g_autoptr(GString) s = g_string_new("Requested un-handled feature");
+        g_string_append_printf(s, " 0x%" PRIx64 "", features);
+        g_info("%s: %s", __func__, s->str);
+    }
+}
+
+static void vi2c_handle_ctrl(VuDev *dev, int qidx)
+{
+    VuVirtq *vq = vu_get_queue(dev, qidx);
+    struct i2c_msg msg;
+    struct virtio_i2c_out_hdr *out_hdr;
+    struct virtio_i2c_in_hdr *in_hdr;
+    bool fail_next = false;
+    size_t len, in_hdr_len;
+
+    for (;;) {
+        VuVirtqElement *elem;
+
+        elem = vu_queue_pop(dev, vq, sizeof(VuVirtqElement));
+        if (!elem) {
+            break;
+        }
+
+        g_debug("%s: got queue (in %d, out %d)", __func__, elem->in_num,
+                elem->out_num);
+
+        /* Validate size of out header */
+        if (elem->out_sg[0].iov_len != sizeof(*out_hdr)) {
+            g_warning("%s: Invalid out hdr %zu : %zu\n", __func__,
+                      elem->out_sg[0].iov_len, sizeof(*out_hdr));
+            continue;
+        }
+
+        out_hdr = elem->out_sg[0].iov_base;
+
+        /* Bit 0 is reserved in virtio spec */
+        msg.addr = out_hdr->addr >> 1;
+
+        /* Read Operation */
+        if (elem->out_num == 1 && elem->in_num == 2) {
+            len = elem->in_sg[0].iov_len;
+            if (!len) {
+                g_warning("%s: Read buffer length can't be zero\n", __func__);
+                continue;
+            }
+
+            msg.buf = elem->in_sg[0].iov_base;
+            msg.flags = I2C_M_RD;
+            msg.len = len;
+
+            in_hdr = elem->in_sg[1].iov_base;
+            in_hdr_len = elem->in_sg[1].iov_len;
+        } else if (elem->out_num == 2 && elem->in_num == 1) {
+            /* Write Operation */
+            len = elem->out_sg[1].iov_len;
+            if (!len) {
+                g_warning("%s: Write buffer length can't be zero\n", __func__);
+                continue;
+            }
+
+            msg.buf = elem->out_sg[1].iov_base;
+            msg.flags = 0;
+            msg.len = len;
+
+            in_hdr = elem->in_sg[0].iov_base;
+            in_hdr_len = elem->in_sg[0].iov_len;
+            len = 0;
+        } else {
+            g_warning("%s: Transfer type not supported (in %d, out %d)\n",
+                      __func__, elem->in_num, elem->out_num);
+            continue;
+        }
+
+        /* Validate size of in header */
+        if (in_hdr_len != sizeof(*in_hdr)) {
+            g_warning("%s: Invalid in hdr %zu : %zu\n", __func__, in_hdr_len,
+                      sizeof(*in_hdr));
+            continue;
+        }
+
+        in_hdr->status = fail_next ? VIRTIO_I2C_MSG_ERR : vi2c_xfer(dev, &msg);
+        if (in_hdr->status == VIRTIO_I2C_MSG_ERR) {
+            /* We need to fail remaining transfers as well */
+            fail_next = out_hdr->flags & VIRTIO_I2C_FLAGS_FAIL_NEXT;
+        }
+
+        vu_queue_push(dev, vq, elem, len + sizeof(*in_hdr));
+    }
+
+    vu_queue_notify(dev, vq);
+}
+
+static void
+vi2c_queue_set_started(VuDev *dev, int qidx, bool started)
+{
+    VuVirtq *vq = vu_get_queue(dev, qidx);
+
+    g_debug("queue started %d:%d\n", qidx, started);
+
+    if (!qidx) {
+        vu_set_queue_handler(dev, vq, started ? vi2c_handle_ctrl : NULL);
+    }
+}
+
+/*
+ * vi2c_process_msg: process messages of vhost-user interface
+ *
+ * Any that are not handled here are processed by the libvhost library
+ * itself.
+ */
+static int vi2c_process_msg(VuDev *dev, VhostUserMsg *msg, int *do_reply)
+{
+    VuI2c *i2c = container_of(dev, VuI2c, dev.parent);
+
+    if (msg->request == VHOST_USER_NONE) {
+        g_main_loop_quit(i2c->loop);
+        return 1;
+    }
+
+    return 0;
+}
+
+static const VuDevIface vuiface = {
+    .set_features = vi2c_set_features,
+    .get_features = vi2c_get_features,
+    .queue_set_started = vi2c_queue_set_started,
+    .process_msg = vi2c_process_msg,
+};
+
+static gboolean hangup(gpointer user_data)
+{
+    GMainLoop *loop = (GMainLoop *) user_data;
+    g_info("%s: caught hangup/quit signal, quitting main loop", __func__);
+    g_main_loop_quit(loop);
+    return true;
+}
+
+static void vi2c_panic(VuDev *dev, const char *msg)
+{
+    g_critical("%s\n", msg);
+    exit(EXIT_FAILURE);
+}
+
+/* Print vhost-user.json backend program capabilities */
+static void print_capabilities(void)
+{
+    printf("{\n");
+    printf("  \"type\": \"i2c\"\n");
+    printf("  \"device-list\"\n");
+    printf("}\n");
+}
+
+static void vi2c_destroy(VuI2c *i2c)
+{
+    vi2c_remove_adapters(i2c);
+    vug_deinit(&i2c->dev);
+    if (socket_path) {
+        unlink(socket_path);
+    }
+}
+
+int main(int argc, char *argv[])
+{
+    GError *error = NULL;
+    GOptionContext *context;
+    g_autoptr(GSocket) socket = NULL;
+    VuI2c i2c = {0};
+
+    context = g_option_context_new("vhost-user emulation of I2C device");
+    g_option_context_add_main_entries(context, options, "vhost-user-i2c");
+    if (!g_option_context_parse(context, &argc, &argv, &error))
+    {
+        g_printerr("option parsing failed: %s\n", error->message);
+        exit(1);
+    }
+
+    if (print_cap) {
+        print_capabilities();
+        exit(0);
+    }
+
+    if (!socket_path && socket_fd < 0) {
+        g_printerr("Please specify either --fd or --socket-path\n");
+        exit(EXIT_FAILURE);
+    }
+
+    if (verbose) {
+        g_log_set_handler(NULL, G_LOG_LEVEL_MASK, g_log_default_handler, NULL);
+        g_setenv("G_MESSAGES_DEBUG", "all", true);
+    } else {
+        g_log_set_handler(NULL,
+                          G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_ERROR,
+                          g_log_default_handler, NULL);
+    }
+
+    /*
+     * Now create a vhost-user socket that we will receive messages
+     * on. Once we have our handler set up we can enter the glib main
+     * loop.
+     */
+    if (socket_path) {
+        g_autoptr(GSocketAddress) addr = g_unix_socket_address_new(socket_path);
+        g_autoptr(GSocket) bind_socket = g_socket_new(G_SOCKET_FAMILY_UNIX, G_SOCKET_TYPE_STREAM,
+                                                      G_SOCKET_PROTOCOL_DEFAULT, &error);
+
+        if (!g_socket_bind(bind_socket, addr, false, &error)) {
+            g_printerr("Failed to bind to socket at %s (%s).\n",
+                       socket_path, error->message);
+            exit(EXIT_FAILURE);
+        }
+        if (!g_socket_listen(bind_socket, &error)) {
+            g_printerr("Failed to listen on socket %s (%s).\n",
+                       socket_path, error->message);
+        }
+        g_message("awaiting connection to %s", socket_path);
+        socket = g_socket_accept(bind_socket, NULL, &error);
+        if (!socket) {
+            g_printerr("Failed to accept on socket %s (%s).\n",
+                       socket_path, error->message);
+        }
+    } else {
+        socket = g_socket_new_from_fd(socket_fd, &error);
+        if (!socket) {
+            g_printerr("Failed to connect to FD %d (%s).\n",
+                       socket_fd, error->message);
+            exit(EXIT_FAILURE);
+        }
+    }
+
+    if (vi2c_parse(&i2c)) {
+        exit(EXIT_FAILURE);
+    }
+
+    /*
+     * Create the main loop first so all the various sources can be
+     * added. As well as catching signals we need to ensure vug_init
+     * can add it's GSource watches.
+     */
+
+    i2c.loop = g_main_loop_new(NULL, FALSE);
+    /* catch exit signals */
+    g_unix_signal_add(SIGHUP, hangup, i2c.loop);
+    g_unix_signal_add(SIGINT, hangup, i2c.loop);
+
+    if (!vug_init(&i2c.dev, VHOST_USER_I2C_MAX_QUEUES, g_socket_get_fd(socket),
+                  vi2c_panic, &vuiface)) {
+        g_printerr("Failed to initialize libvhost-user-glib.\n");
+        exit(EXIT_FAILURE);
+    }
+
+
+    g_message("entering main loop, awaiting messages");
+    g_main_loop_run(i2c.loop);
+    g_message("finished main loop, cleaning up");
+
+    g_main_loop_unref(i2c.loop);
+    vi2c_destroy(&i2c);
+}
diff --git a/tools/vhost-user-i2c/meson.build b/tools/vhost-user-i2c/meson.build
new file mode 100644
index 000000000000..f71e9fec7df6
--- /dev/null
+++ b/tools/vhost-user-i2c/meson.build
@@ -0,0 +1,10 @@ 
+executable('vhost-user-i2c', files(
+  'main.c'),
+  dependencies: [qemuutil, glib, gio],
+  install: true,
+  install_dir: get_option('libexecdir'))
+
+configure_file(input: '50-qemu-i2c.json.in',
+               output: '50-qemu-i2c.json',
+               configuration: config_host,
+               install_dir: qemu_datadir / 'vhost-user')