2 * Kernel/userspace transport abstraction for Hyper-V util driver.
4 * Copyright (C) 2015, Vitaly Kuznetsov <vkuznets@redhat.com>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
13 * NON INFRINGEMENT. See the GNU General Public License for more
18 #include <linux/slab.h>
20 #include <linux/poll.h>
22 #include "hyperv_vmbus.h"
23 #include "hv_utils_transport.h"
25 static DEFINE_SPINLOCK(hvt_list_lock
);
26 static struct list_head hvt_list
= LIST_HEAD_INIT(hvt_list
);
28 static void hvt_reset(struct hvutil_transport
*hvt
)
37 static ssize_t
hvt_op_read(struct file
*file
, char __user
*buf
,
38 size_t count
, loff_t
*ppos
)
40 struct hvutil_transport
*hvt
;
43 hvt
= container_of(file
->f_op
, struct hvutil_transport
, fops
);
45 if (wait_event_interruptible(hvt
->outmsg_q
, hvt
->outmsg_len
> 0 ||
46 hvt
->mode
!= HVUTIL_TRANSPORT_CHARDEV
))
49 mutex_lock(&hvt
->lock
);
51 if (hvt
->mode
== HVUTIL_TRANSPORT_DESTROY
) {
61 if (count
< hvt
->outmsg_len
) {
66 if (!copy_to_user(buf
, hvt
->outmsg
, hvt
->outmsg_len
))
67 ret
= hvt
->outmsg_len
;
76 mutex_unlock(&hvt
->lock
);
80 static ssize_t
hvt_op_write(struct file
*file
, const char __user
*buf
,
81 size_t count
, loff_t
*ppos
)
83 struct hvutil_transport
*hvt
;
87 hvt
= container_of(file
->f_op
, struct hvutil_transport
, fops
);
89 inmsg
= memdup_user(buf
, count
);
91 return PTR_ERR(inmsg
);
93 if (hvt
->mode
== HVUTIL_TRANSPORT_DESTROY
)
96 ret
= hvt
->on_msg(inmsg
, count
);
100 return ret
? ret
: count
;
103 static unsigned int hvt_op_poll(struct file
*file
, poll_table
*wait
)
105 struct hvutil_transport
*hvt
;
107 hvt
= container_of(file
->f_op
, struct hvutil_transport
, fops
);
109 poll_wait(file
, &hvt
->outmsg_q
, wait
);
111 if (hvt
->mode
== HVUTIL_TRANSPORT_DESTROY
)
112 return POLLERR
| POLLHUP
;
114 if (hvt
->outmsg_len
> 0)
115 return POLLIN
| POLLRDNORM
;
120 static int hvt_op_open(struct inode
*inode
, struct file
*file
)
122 struct hvutil_transport
*hvt
;
124 bool issue_reset
= false;
126 hvt
= container_of(file
->f_op
, struct hvutil_transport
, fops
);
128 mutex_lock(&hvt
->lock
);
130 if (hvt
->mode
== HVUTIL_TRANSPORT_DESTROY
) {
132 } else if (hvt
->mode
== HVUTIL_TRANSPORT_INIT
) {
134 * Switching to CHARDEV mode. We switch bach to INIT when
135 * device gets released.
137 hvt
->mode
= HVUTIL_TRANSPORT_CHARDEV
;
139 else if (hvt
->mode
== HVUTIL_TRANSPORT_NETLINK
) {
141 * We're switching from netlink communication to using char
142 * device. Issue the reset first.
145 hvt
->mode
= HVUTIL_TRANSPORT_CHARDEV
;
153 mutex_unlock(&hvt
->lock
);
158 static void hvt_transport_free(struct hvutil_transport
*hvt
)
160 misc_deregister(&hvt
->mdev
);
165 static int hvt_op_release(struct inode
*inode
, struct file
*file
)
167 struct hvutil_transport
*hvt
;
170 hvt
= container_of(file
->f_op
, struct hvutil_transport
, fops
);
172 mutex_lock(&hvt
->lock
);
173 mode_old
= hvt
->mode
;
174 if (hvt
->mode
!= HVUTIL_TRANSPORT_DESTROY
)
175 hvt
->mode
= HVUTIL_TRANSPORT_INIT
;
177 * Cleanup message buffers to avoid spurious messages when the daemon
181 mutex_unlock(&hvt
->lock
);
183 if (mode_old
== HVUTIL_TRANSPORT_DESTROY
)
184 hvt_transport_free(hvt
);
189 static void hvt_cn_callback(struct cn_msg
*msg
, struct netlink_skb_parms
*nsp
)
191 struct hvutil_transport
*hvt
, *hvt_found
= NULL
;
193 spin_lock(&hvt_list_lock
);
194 list_for_each_entry(hvt
, &hvt_list
, list
) {
195 if (hvt
->cn_id
.idx
== msg
->id
.idx
&&
196 hvt
->cn_id
.val
== msg
->id
.val
) {
201 spin_unlock(&hvt_list_lock
);
203 pr_warn("hvt_cn_callback: spurious message received!\n");
208 * Switching to NETLINK mode. Switching to CHARDEV happens when someone
211 mutex_lock(&hvt
->lock
);
212 if (hvt
->mode
== HVUTIL_TRANSPORT_INIT
)
213 hvt
->mode
= HVUTIL_TRANSPORT_NETLINK
;
215 if (hvt
->mode
== HVUTIL_TRANSPORT_NETLINK
)
216 hvt_found
->on_msg(msg
->data
, msg
->len
);
218 pr_warn("hvt_cn_callback: unexpected netlink message!\n");
219 mutex_unlock(&hvt
->lock
);
222 int hvutil_transport_send(struct hvutil_transport
*hvt
, void *msg
, int len
)
224 struct cn_msg
*cn_msg
;
227 if (hvt
->mode
== HVUTIL_TRANSPORT_INIT
||
228 hvt
->mode
== HVUTIL_TRANSPORT_DESTROY
) {
230 } else if (hvt
->mode
== HVUTIL_TRANSPORT_NETLINK
) {
231 cn_msg
= kzalloc(sizeof(*cn_msg
) + len
, GFP_ATOMIC
);
234 cn_msg
->id
.idx
= hvt
->cn_id
.idx
;
235 cn_msg
->id
.val
= hvt
->cn_id
.val
;
237 memcpy(cn_msg
->data
, msg
, len
);
238 ret
= cn_netlink_send(cn_msg
, 0, 0, GFP_ATOMIC
);
242 /* HVUTIL_TRANSPORT_CHARDEV */
243 mutex_lock(&hvt
->lock
);
244 if (hvt
->mode
!= HVUTIL_TRANSPORT_CHARDEV
) {
250 /* Previous message wasn't received */
254 hvt
->outmsg
= kzalloc(len
, GFP_KERNEL
);
256 memcpy(hvt
->outmsg
, msg
, len
);
257 hvt
->outmsg_len
= len
;
258 wake_up_interruptible(&hvt
->outmsg_q
);
262 mutex_unlock(&hvt
->lock
);
266 struct hvutil_transport
*hvutil_transport_init(const char *name
,
267 u32 cn_idx
, u32 cn_val
,
268 int (*on_msg
)(void *, int),
269 void (*on_reset
)(void))
271 struct hvutil_transport
*hvt
;
273 hvt
= kzalloc(sizeof(*hvt
), GFP_KERNEL
);
277 hvt
->cn_id
.idx
= cn_idx
;
278 hvt
->cn_id
.val
= cn_val
;
280 hvt
->mdev
.minor
= MISC_DYNAMIC_MINOR
;
281 hvt
->mdev
.name
= name
;
283 hvt
->fops
.owner
= THIS_MODULE
;
284 hvt
->fops
.read
= hvt_op_read
;
285 hvt
->fops
.write
= hvt_op_write
;
286 hvt
->fops
.poll
= hvt_op_poll
;
287 hvt
->fops
.open
= hvt_op_open
;
288 hvt
->fops
.release
= hvt_op_release
;
290 hvt
->mdev
.fops
= &hvt
->fops
;
292 init_waitqueue_head(&hvt
->outmsg_q
);
293 mutex_init(&hvt
->lock
);
295 spin_lock(&hvt_list_lock
);
296 list_add(&hvt
->list
, &hvt_list
);
297 spin_unlock(&hvt_list_lock
);
299 hvt
->on_msg
= on_msg
;
300 hvt
->on_reset
= on_reset
;
302 if (misc_register(&hvt
->mdev
))
305 /* Use cn_id.idx/cn_id.val to determine if we need to setup netlink */
306 if (hvt
->cn_id
.idx
> 0 && hvt
->cn_id
.val
> 0 &&
307 cn_add_callback(&hvt
->cn_id
, name
, hvt_cn_callback
))
313 spin_lock(&hvt_list_lock
);
314 list_del(&hvt
->list
);
315 spin_unlock(&hvt_list_lock
);
320 void hvutil_transport_destroy(struct hvutil_transport
*hvt
)
324 mutex_lock(&hvt
->lock
);
325 mode_old
= hvt
->mode
;
326 hvt
->mode
= HVUTIL_TRANSPORT_DESTROY
;
327 wake_up_interruptible(&hvt
->outmsg_q
);
328 mutex_unlock(&hvt
->lock
);
331 * In case we were in 'chardev' mode we still have an open fd so we
332 * have to defer freeing the device. Netlink interface can be freed
335 spin_lock(&hvt_list_lock
);
336 list_del(&hvt
->list
);
337 spin_unlock(&hvt_list_lock
);
338 if (hvt
->cn_id
.idx
> 0 && hvt
->cn_id
.val
> 0)
339 cn_del_callback(&hvt
->cn_id
);
341 if (mode_old
!= HVUTIL_TRANSPORT_CHARDEV
)
342 hvt_transport_free(hvt
);