2 * An implementation of host initiated guest snapshot.
5 * Copyright (C) 2013, Microsoft, Inc.
6 * Author : K. Y. Srinivasan <kys@microsoft.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published
10 * by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
15 * NON INFRINGEMENT. See the GNU General Public License for more
19 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21 #include <linux/net.h>
22 #include <linux/nls.h>
23 #include <linux/connector.h>
24 #include <linux/workqueue.h>
25 #include <linux/hyperv.h>
27 #include "hyperv_vmbus.h"
28 #include "hv_utils_transport.h"
32 #define VSS_VERSION (VSS_MAJOR << 16 | VSS_MINOR)
35 * Timeout values are based on expecations from host
37 #define VSS_FREEZE_TIMEOUT (15 * 60)
40 * Global state maintained for transaction that is being processed. For a class
41 * of integration services, including the "VSS service", the specified protocol
42 * is a "request/response" protocol which means that there can only be single
43 * outstanding transaction from the host at any given point in time. We use
44 * this to simplify memory management in this driver - we cache and process
45 * only one message at a time.
47 * While the request/response protocol is guaranteed by the host, we further
48 * ensure this by serializing packet processing in this driver - we do not
49 * read additional packets from the VMBUs until the current packet is fully
54 int state
; /* hvutil_device_state */
55 int recv_len
; /* number of bytes received. */
56 struct vmbus_channel
*recv_channel
; /* chn we got the request */
57 u64 recv_req_id
; /* request ID. */
58 struct hv_vss_msg
*msg
; /* current message */
62 static void vss_respond_to_host(int error
);
65 * This state maintains the version number registered by the daemon.
67 static int dm_reg_value
;
69 static const char vss_devname
[] = "vmbus/hv_vss";
70 static __u8
*recv_buffer
;
71 static struct hvutil_transport
*hvt
;
73 static void vss_timeout_func(struct work_struct
*dummy
);
74 static void vss_handle_request(struct work_struct
*dummy
);
76 static DECLARE_DELAYED_WORK(vss_timeout_work
, vss_timeout_func
);
77 static DECLARE_WORK(vss_handle_request_work
, vss_handle_request
);
79 static void vss_poll_wrapper(void *channel
)
81 /* Transaction is finished, reset the state here to avoid races. */
82 vss_transaction
.state
= HVUTIL_READY
;
83 hv_vss_onchannelcallback(channel
);
87 * Callback when data is received from user mode.
90 static void vss_timeout_func(struct work_struct
*dummy
)
93 * Timeout waiting for userspace component to reply happened.
95 pr_warn("VSS: timeout waiting for daemon to reply\n");
96 vss_respond_to_host(HV_E_FAIL
);
98 hv_poll_channel(vss_transaction
.recv_channel
, vss_poll_wrapper
);
101 static void vss_register_done(void)
103 hv_poll_channel(vss_transaction
.recv_channel
, vss_poll_wrapper
);
104 pr_debug("VSS: userspace daemon registered\n");
107 static int vss_handle_handshake(struct hv_vss_msg
*vss_msg
)
109 u32 our_ver
= VSS_OP_REGISTER1
;
111 switch (vss_msg
->vss_hdr
.operation
) {
112 case VSS_OP_REGISTER
:
113 /* Daemon doesn't expect us to reply */
114 dm_reg_value
= VSS_OP_REGISTER
;
116 case VSS_OP_REGISTER1
:
117 /* Daemon expects us to reply with our own version */
118 if (hvutil_transport_send(hvt
, &our_ver
, sizeof(our_ver
),
121 dm_reg_value
= VSS_OP_REGISTER1
;
126 pr_info("VSS: userspace daemon ver. %d connected\n", dm_reg_value
);
130 static int vss_on_msg(void *msg
, int len
)
132 struct hv_vss_msg
*vss_msg
= (struct hv_vss_msg
*)msg
;
134 if (len
!= sizeof(*vss_msg
)) {
135 pr_debug("VSS: Message size does not match length\n");
139 if (vss_msg
->vss_hdr
.operation
== VSS_OP_REGISTER
||
140 vss_msg
->vss_hdr
.operation
== VSS_OP_REGISTER1
) {
142 * Don't process registration messages if we're in the middle
143 * of a transaction processing.
145 if (vss_transaction
.state
> HVUTIL_READY
) {
146 pr_debug("VSS: Got unexpected registration request\n");
150 return vss_handle_handshake(vss_msg
);
151 } else if (vss_transaction
.state
== HVUTIL_USERSPACE_REQ
) {
152 vss_transaction
.state
= HVUTIL_USERSPACE_RECV
;
154 if (vss_msg
->vss_hdr
.operation
== VSS_OP_HOT_BACKUP
)
155 vss_transaction
.msg
->vss_cf
.flags
=
156 VSS_HBU_NO_AUTO_RECOVERY
;
158 if (cancel_delayed_work_sync(&vss_timeout_work
)) {
159 vss_respond_to_host(vss_msg
->error
);
160 /* Transaction is finished, reset the state. */
161 hv_poll_channel(vss_transaction
.recv_channel
,
165 /* This is a spurious call! */
166 pr_debug("VSS: Transaction not active\n");
172 static void vss_send_op(void)
174 int op
= vss_transaction
.msg
->vss_hdr
.operation
;
176 struct hv_vss_msg
*vss_msg
;
178 /* The transaction state is wrong. */
179 if (vss_transaction
.state
!= HVUTIL_HOSTMSG_RECEIVED
) {
180 pr_debug("VSS: Unexpected attempt to send to daemon\n");
184 vss_msg
= kzalloc(sizeof(*vss_msg
), GFP_KERNEL
);
188 vss_msg
->vss_hdr
.operation
= op
;
190 vss_transaction
.state
= HVUTIL_USERSPACE_REQ
;
192 schedule_delayed_work(&vss_timeout_work
, op
== VSS_OP_FREEZE
?
193 VSS_FREEZE_TIMEOUT
* HZ
: HV_UTIL_TIMEOUT
* HZ
);
195 rc
= hvutil_transport_send(hvt
, vss_msg
, sizeof(*vss_msg
), NULL
);
197 pr_warn("VSS: failed to communicate to the daemon: %d\n", rc
);
198 if (cancel_delayed_work_sync(&vss_timeout_work
)) {
199 vss_respond_to_host(HV_E_FAIL
);
200 vss_transaction
.state
= HVUTIL_READY
;
209 static void vss_handle_request(struct work_struct
*dummy
)
211 switch (vss_transaction
.msg
->vss_hdr
.operation
) {
213 * Initiate a "freeze/thaw" operation in the guest.
214 * We respond to the host once the operation is complete.
216 * We send the message to the user space daemon and the operation is
217 * performed in the daemon.
221 case VSS_OP_HOT_BACKUP
:
222 if (vss_transaction
.state
< HVUTIL_READY
) {
223 /* Userspace is not registered yet */
224 pr_debug("VSS: Not ready for request.\n");
225 vss_respond_to_host(HV_E_FAIL
);
229 pr_debug("VSS: Received request for op code: %d\n",
230 vss_transaction
.msg
->vss_hdr
.operation
);
231 vss_transaction
.state
= HVUTIL_HOSTMSG_RECEIVED
;
234 case VSS_OP_GET_DM_INFO
:
235 vss_transaction
.msg
->dm_info
.flags
= 0;
241 vss_respond_to_host(0);
242 hv_poll_channel(vss_transaction
.recv_channel
, vss_poll_wrapper
);
246 * Send a response back to the host.
250 vss_respond_to_host(int error
)
252 struct icmsg_hdr
*icmsghdrp
;
254 struct vmbus_channel
*channel
;
258 * Copy the global state for completing the transaction. Note that
259 * only one transaction can be active at a time.
262 buf_len
= vss_transaction
.recv_len
;
263 channel
= vss_transaction
.recv_channel
;
264 req_id
= vss_transaction
.recv_req_id
;
266 icmsghdrp
= (struct icmsg_hdr
*)
267 &recv_buffer
[sizeof(struct vmbuspipe_hdr
)];
269 if (channel
->onchannel_callback
== NULL
)
271 * We have raced with util driver being unloaded;
276 icmsghdrp
->status
= error
;
278 icmsghdrp
->icflags
= ICMSGHDRFLAG_TRANSACTION
| ICMSGHDRFLAG_RESPONSE
;
280 vmbus_sendpacket(channel
, recv_buffer
, buf_len
, req_id
,
281 VM_PKT_DATA_INBAND
, 0);
286 * This callback is invoked when we get a VSS message from the host.
287 * The host ensures that only one VSS transaction can be active at a time.
290 void hv_vss_onchannelcallback(void *context
)
292 struct vmbus_channel
*channel
= context
;
295 struct hv_vss_msg
*vss_msg
;
298 struct icmsg_hdr
*icmsghdrp
;
299 struct icmsg_negotiate
*negop
= NULL
;
301 if (vss_transaction
.state
> HVUTIL_READY
)
304 vmbus_recvpacket(channel
, recv_buffer
, PAGE_SIZE
* 2, &recvlen
,
308 icmsghdrp
= (struct icmsg_hdr
*)&recv_buffer
[
309 sizeof(struct vmbuspipe_hdr
)];
311 if (icmsghdrp
->icmsgtype
== ICMSGTYPE_NEGOTIATE
) {
312 vmbus_prep_negotiate_resp(icmsghdrp
, negop
,
313 recv_buffer
, UTIL_FW_VERSION
,
316 vss_msg
= (struct hv_vss_msg
*)&recv_buffer
[
317 sizeof(struct vmbuspipe_hdr
) +
318 sizeof(struct icmsg_hdr
)];
321 * Stash away this global state for completing the
322 * transaction; note transactions are serialized.
325 vss_transaction
.recv_len
= recvlen
;
326 vss_transaction
.recv_req_id
= requestid
;
327 vss_transaction
.msg
= (struct hv_vss_msg
*)vss_msg
;
329 schedule_work(&vss_handle_request_work
);
333 icmsghdrp
->icflags
= ICMSGHDRFLAG_TRANSACTION
334 | ICMSGHDRFLAG_RESPONSE
;
336 vmbus_sendpacket(channel
, recv_buffer
,
338 VM_PKT_DATA_INBAND
, 0);
343 static void vss_on_reset(void)
345 if (cancel_delayed_work_sync(&vss_timeout_work
))
346 vss_respond_to_host(HV_E_FAIL
);
347 vss_transaction
.state
= HVUTIL_DEVICE_INIT
;
351 hv_vss_init(struct hv_util_service
*srv
)
353 if (vmbus_proto_version
< VERSION_WIN8_1
) {
354 pr_warn("Integration service 'Backup (volume snapshot)'"
355 " not supported on this host version.\n");
358 recv_buffer
= srv
->recv_buffer
;
359 vss_transaction
.recv_channel
= srv
->channel
;
362 * When this driver loads, the user level daemon that
363 * processes the host requests may not yet be running.
364 * Defer processing channel callbacks until the daemon
367 vss_transaction
.state
= HVUTIL_DEVICE_INIT
;
369 hvt
= hvutil_transport_init(vss_devname
, CN_VSS_IDX
, CN_VSS_VAL
,
370 vss_on_msg
, vss_on_reset
);
372 pr_warn("VSS: Failed to initialize transport\n");
379 void hv_vss_deinit(void)
381 vss_transaction
.state
= HVUTIL_DEVICE_DYING
;
382 cancel_delayed_work_sync(&vss_timeout_work
);
383 cancel_work_sync(&vss_handle_request_work
);
384 hvutil_transport_destroy(hvt
);