blob: 1c162393c27b989277fb8e698d6f073cd5c19399 [file] [log] [blame]
Thomas Gleixner43aa3132019-05-29 07:17:54 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Vitaly Kuznetsov14b50f82015-04-11 18:07:51 -07002/*
3 * Kernel/userspace transport abstraction for Hyper-V util driver.
4 *
5 * Copyright (C) 2015, Vitaly Kuznetsov <vkuznets@redhat.com>
Vitaly Kuznetsov14b50f82015-04-11 18:07:51 -07006 */
7
8#ifndef _HV_UTILS_TRANSPORT_H
9#define _HV_UTILS_TRANSPORT_H
10
11#include <linux/connector.h>
12#include <linux/miscdevice.h>
13
14enum hvutil_transport_mode {
15 HVUTIL_TRANSPORT_INIT = 0,
16 HVUTIL_TRANSPORT_NETLINK,
17 HVUTIL_TRANSPORT_CHARDEV,
Vitaly Kuznetsova1502562015-12-14 19:01:55 -080018 HVUTIL_TRANSPORT_DESTROY,
Vitaly Kuznetsov14b50f82015-04-11 18:07:51 -070019};
20
21struct hvutil_transport {
22 int mode; /* hvutil_transport_mode */
23 struct file_operations fops; /* file operations */
24 struct miscdevice mdev; /* misc device */
25 struct cb_id cn_id; /* CN_*_IDX/CN_*_VAL */
26 struct list_head list; /* hvt_list */
27 int (*on_msg)(void *, int); /* callback on new user message */
28 void (*on_reset)(void); /* callback when userspace drops */
Vitaly Kuznetsove0fa3e52016-06-09 17:08:57 -070029 void (*on_read)(void); /* callback on message read */
Vitaly Kuznetsov14b50f82015-04-11 18:07:51 -070030 u8 *outmsg; /* message to the userspace */
31 int outmsg_len; /* its length */
32 wait_queue_head_t outmsg_q; /* poll/read wait queue */
Vitaly Kuznetsova72f3a42015-12-14 19:01:54 -080033 struct mutex lock; /* protects struct members */
Vitaly Kuznetsove9c18ae2017-03-04 18:13:59 -070034 struct completion release; /* synchronize with fd release */
Vitaly Kuznetsov14b50f82015-04-11 18:07:51 -070035};
36
37struct hvutil_transport *hvutil_transport_init(const char *name,
38 u32 cn_idx, u32 cn_val,
39 int (*on_msg)(void *, int),
40 void (*on_reset)(void));
Vitaly Kuznetsove0fa3e52016-06-09 17:08:57 -070041int hvutil_transport_send(struct hvutil_transport *hvt, void *msg, int len,
42 void (*on_read_cb)(void));
Vitaly Kuznetsov14b50f82015-04-11 18:07:51 -070043void hvutil_transport_destroy(struct hvutil_transport *hvt);
44
45#endif /* _HV_UTILS_TRANSPORT_H */