blob: d14f10b924a0aba355f743784160369efe81080e [file] [log] [blame]
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -07001/*
2 * An implementation of host initiated guest snapshot.
3 *
4 *
5 * Copyright (C) 2013, Microsoft, Inc.
6 * Author : K. Y. Srinivasan <kys@microsoft.com>
7 *
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.
11 *
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
16 * details.
17 *
18 */
19#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
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>
26
Vitaly Kuznetsov3647a832015-04-11 18:07:39 -070027#include "hyperv_vmbus.h"
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -070028#include "hv_utils_transport.h"
Vitaly Kuznetsov3647a832015-04-11 18:07:39 -070029
K. Y. Srinivasan67413352013-07-02 10:31:30 -070030#define VSS_MAJOR 5
31#define VSS_MINOR 0
K. Y. Srinivasan3a491602013-09-06 11:49:56 -070032#define VSS_VERSION (VSS_MAJOR << 16 | VSS_MINOR)
K. Y. Srinivasan67413352013-07-02 10:31:30 -070033
Alex Nga1656452017-01-28 12:37:17 -070034#define VSS_VER_COUNT 1
35static const int vss_versions[] = {
36 VSS_VERSION
37};
38
39#define FW_VER_COUNT 1
40static const int fw_versions[] = {
41 UTIL_FW_VERSION
42};
43
Alex Ngb357fd32016-11-06 13:14:11 -080044/*
45 * Timeout values are based on expecations from host
46 */
47#define VSS_FREEZE_TIMEOUT (15 * 60)
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070048
49/*
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -070050 * Global state maintained for transaction that is being processed. For a class
51 * of integration services, including the "VSS service", the specified protocol
52 * is a "request/response" protocol which means that there can only be single
53 * outstanding transaction from the host at any given point in time. We use
54 * this to simplify memory management in this driver - we cache and process
55 * only one message at a time.
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070056 *
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -070057 * While the request/response protocol is guaranteed by the host, we further
58 * ensure this by serializing packet processing in this driver - we do not
59 * read additional packets from the VMBUs until the current packet is fully
60 * handled.
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070061 */
62
63static struct {
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -070064 int state; /* hvutil_device_state */
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070065 int recv_len; /* number of bytes received. */
66 struct vmbus_channel *recv_channel; /* chn we got the request */
67 u64 recv_req_id; /* request ID. */
68 struct hv_vss_msg *msg; /* current message */
69} vss_transaction;
70
71
72static void vss_respond_to_host(int error);
73
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -070074/*
75 * This state maintains the version number registered by the daemon.
76 */
77static int dm_reg_value;
78
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -070079static const char vss_devname[] = "vmbus/hv_vss";
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070080static __u8 *recv_buffer;
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -070081static struct hvutil_transport *hvt;
K. Y. Srinivasand77044d2016-12-22 16:54:03 -080082static struct completion release_event;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070083
Vitaly Kuznetsov64914202014-11-06 18:21:24 +010084static void vss_timeout_func(struct work_struct *dummy);
Alex Ng497af842016-09-02 05:58:24 -070085static void vss_handle_request(struct work_struct *dummy);
Vitaly Kuznetsov64914202014-11-06 18:21:24 +010086
87static DECLARE_DELAYED_WORK(vss_timeout_work, vss_timeout_func);
Alex Ng497af842016-09-02 05:58:24 -070088static DECLARE_WORK(vss_handle_request_work, vss_handle_request);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070089
Olaf Hering3cace4a2015-12-14 16:01:33 -080090static void vss_poll_wrapper(void *channel)
91{
92 /* Transaction is finished, reset the state here to avoid races. */
93 vss_transaction.state = HVUTIL_READY;
94 hv_vss_onchannelcallback(channel);
95}
96
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070097/*
98 * Callback when data is received from user mode.
99 */
100
Vitaly Kuznetsov64914202014-11-06 18:21:24 +0100101static void vss_timeout_func(struct work_struct *dummy)
102{
103 /*
104 * Timeout waiting for userspace component to reply happened.
105 */
106 pr_warn("VSS: timeout waiting for daemon to reply\n");
107 vss_respond_to_host(HV_E_FAIL);
Vitaly Kuznetsov38c06c22015-04-11 18:07:43 -0700108
Olaf Hering3cace4a2015-12-14 16:01:33 -0800109 hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper);
Vitaly Kuznetsov64914202014-11-06 18:21:24 +0100110}
111
Vitaly Kuznetsove0fa3e52016-06-09 17:08:57 -0700112static void vss_register_done(void)
113{
114 hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper);
115 pr_debug("VSS: userspace daemon registered\n");
116}
117
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700118static int vss_handle_handshake(struct hv_vss_msg *vss_msg)
119{
120 u32 our_ver = VSS_OP_REGISTER1;
121
122 switch (vss_msg->vss_hdr.operation) {
123 case VSS_OP_REGISTER:
124 /* Daemon doesn't expect us to reply */
125 dm_reg_value = VSS_OP_REGISTER;
126 break;
127 case VSS_OP_REGISTER1:
Vitaly Kuznetsove0fa3e52016-06-09 17:08:57 -0700128 /* Daemon expects us to reply with our own version */
129 if (hvutil_transport_send(hvt, &our_ver, sizeof(our_ver),
130 vss_register_done))
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700131 return -EFAULT;
132 dm_reg_value = VSS_OP_REGISTER1;
133 break;
134 default:
135 return -EINVAL;
136 }
Alex Ng23d2cc02016-11-06 13:14:10 -0800137 pr_info("VSS: userspace daemon ver. %d connected\n", dm_reg_value);
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700138 return 0;
139}
140
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700141static int vss_on_msg(void *msg, int len)
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700142{
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700143 struct hv_vss_msg *vss_msg = (struct hv_vss_msg *)msg;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700144
Alex Ng23d2cc02016-11-06 13:14:10 -0800145 if (len != sizeof(*vss_msg)) {
146 pr_debug("VSS: Message size does not match length\n");
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700147 return -EINVAL;
Alex Ng23d2cc02016-11-06 13:14:10 -0800148 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700149
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700150 if (vss_msg->vss_hdr.operation == VSS_OP_REGISTER ||
151 vss_msg->vss_hdr.operation == VSS_OP_REGISTER1) {
152 /*
153 * Don't process registration messages if we're in the middle
154 * of a transaction processing.
155 */
Alex Ng23d2cc02016-11-06 13:14:10 -0800156 if (vss_transaction.state > HVUTIL_READY) {
157 pr_debug("VSS: Got unexpected registration request\n");
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700158 return -EINVAL;
Alex Ng23d2cc02016-11-06 13:14:10 -0800159 }
160
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700161 return vss_handle_handshake(vss_msg);
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700162 } else if (vss_transaction.state == HVUTIL_USERSPACE_REQ) {
163 vss_transaction.state = HVUTIL_USERSPACE_RECV;
Alex Ngdb886e42016-09-02 05:58:25 -0700164
165 if (vss_msg->vss_hdr.operation == VSS_OP_HOT_BACKUP)
166 vss_transaction.msg->vss_cf.flags =
167 VSS_HBU_NO_AUTO_RECOVERY;
168
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700169 if (cancel_delayed_work_sync(&vss_timeout_work)) {
170 vss_respond_to_host(vss_msg->error);
171 /* Transaction is finished, reset the state. */
Olaf Hering3cace4a2015-12-14 16:01:33 -0800172 hv_poll_channel(vss_transaction.recv_channel,
173 vss_poll_wrapper);
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700174 }
175 } else {
176 /* This is a spurious call! */
Alex Ng23d2cc02016-11-06 13:14:10 -0800177 pr_debug("VSS: Transaction not active\n");
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700178 return -EINVAL;
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700179 }
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700180 return 0;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700181}
182
Alex Ng497af842016-09-02 05:58:24 -0700183static void vss_send_op(void)
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700184{
185 int op = vss_transaction.msg->vss_hdr.operation;
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100186 int rc;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700187 struct hv_vss_msg *vss_msg;
188
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700189 /* The transaction state is wrong. */
Alex Ng23d2cc02016-11-06 13:14:10 -0800190 if (vss_transaction.state != HVUTIL_HOSTMSG_RECEIVED) {
191 pr_debug("VSS: Unexpected attempt to send to daemon\n");
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700192 return;
Alex Ng23d2cc02016-11-06 13:14:10 -0800193 }
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700194
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700195 vss_msg = kzalloc(sizeof(*vss_msg), GFP_KERNEL);
196 if (!vss_msg)
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700197 return;
198
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700199 vss_msg->vss_hdr.operation = op;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700200
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700201 vss_transaction.state = HVUTIL_USERSPACE_REQ;
Alex Ng497af842016-09-02 05:58:24 -0700202
Alex Ngb357fd32016-11-06 13:14:11 -0800203 schedule_delayed_work(&vss_timeout_work, op == VSS_OP_FREEZE ?
204 VSS_FREEZE_TIMEOUT * HZ : HV_UTIL_TIMEOUT * HZ);
Alex Ng497af842016-09-02 05:58:24 -0700205
Vitaly Kuznetsove0fa3e52016-06-09 17:08:57 -0700206 rc = hvutil_transport_send(hvt, vss_msg, sizeof(*vss_msg), NULL);
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100207 if (rc) {
208 pr_warn("VSS: failed to communicate to the daemon: %d\n", rc);
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700209 if (cancel_delayed_work_sync(&vss_timeout_work)) {
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100210 vss_respond_to_host(HV_E_FAIL);
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700211 vss_transaction.state = HVUTIL_READY;
212 }
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100213 }
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700214
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700215 kfree(vss_msg);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700216
217 return;
218}
219
Alex Ng497af842016-09-02 05:58:24 -0700220static void vss_handle_request(struct work_struct *dummy)
221{
222 switch (vss_transaction.msg->vss_hdr.operation) {
223 /*
224 * Initiate a "freeze/thaw" operation in the guest.
225 * We respond to the host once the operation is complete.
226 *
227 * We send the message to the user space daemon and the operation is
228 * performed in the daemon.
229 */
230 case VSS_OP_THAW:
231 case VSS_OP_FREEZE:
Alex Ngdb886e42016-09-02 05:58:25 -0700232 case VSS_OP_HOT_BACKUP:
Alex Ng497af842016-09-02 05:58:24 -0700233 if (vss_transaction.state < HVUTIL_READY) {
234 /* Userspace is not registered yet */
Alex Ng23d2cc02016-11-06 13:14:10 -0800235 pr_debug("VSS: Not ready for request.\n");
Alex Ng497af842016-09-02 05:58:24 -0700236 vss_respond_to_host(HV_E_FAIL);
237 return;
238 }
Alex Ng23d2cc02016-11-06 13:14:10 -0800239
240 pr_debug("VSS: Received request for op code: %d\n",
241 vss_transaction.msg->vss_hdr.operation);
Alex Ng497af842016-09-02 05:58:24 -0700242 vss_transaction.state = HVUTIL_HOSTMSG_RECEIVED;
243 vss_send_op();
244 return;
Alex Ng497af842016-09-02 05:58:24 -0700245 case VSS_OP_GET_DM_INFO:
246 vss_transaction.msg->dm_info.flags = 0;
247 break;
248 default:
249 break;
250 }
251
252 vss_respond_to_host(0);
253 hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper);
254}
255
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700256/*
257 * Send a response back to the host.
258 */
259
260static void
261vss_respond_to_host(int error)
262{
263 struct icmsg_hdr *icmsghdrp;
264 u32 buf_len;
265 struct vmbus_channel *channel;
266 u64 req_id;
267
268 /*
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700269 * Copy the global state for completing the transaction. Note that
270 * only one transaction can be active at a time.
271 */
272
273 buf_len = vss_transaction.recv_len;
274 channel = vss_transaction.recv_channel;
275 req_id = vss_transaction.recv_req_id;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700276
277 icmsghdrp = (struct icmsg_hdr *)
278 &recv_buffer[sizeof(struct vmbuspipe_hdr)];
279
280 if (channel->onchannel_callback == NULL)
281 /*
282 * We have raced with util driver being unloaded;
283 * silently return.
284 */
285 return;
286
287 icmsghdrp->status = error;
288
289 icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION | ICMSGHDRFLAG_RESPONSE;
290
291 vmbus_sendpacket(channel, recv_buffer, buf_len, req_id,
292 VM_PKT_DATA_INBAND, 0);
293
294}
295
296/*
297 * This callback is invoked when we get a VSS message from the host.
298 * The host ensures that only one VSS transaction can be active at a time.
299 */
300
301void hv_vss_onchannelcallback(void *context)
302{
303 struct vmbus_channel *channel = context;
304 u32 recvlen;
305 u64 requestid;
306 struct hv_vss_msg *vss_msg;
307
308
309 struct icmsg_hdr *icmsghdrp;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700310
Olaf Hering3cace4a2015-12-14 16:01:33 -0800311 if (vss_transaction.state > HVUTIL_READY)
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700312 return;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700313
314 vmbus_recvpacket(channel, recv_buffer, PAGE_SIZE * 2, &recvlen,
315 &requestid);
316
317 if (recvlen > 0) {
318 icmsghdrp = (struct icmsg_hdr *)&recv_buffer[
319 sizeof(struct vmbuspipe_hdr)];
320
321 if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) {
Alex Nga1656452017-01-28 12:37:17 -0700322 vmbus_prep_negotiate_resp(icmsghdrp,
323 recv_buffer, fw_versions, FW_VER_COUNT,
324 vss_versions, VSS_VER_COUNT,
325 NULL, NULL);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700326 } else {
327 vss_msg = (struct hv_vss_msg *)&recv_buffer[
328 sizeof(struct vmbuspipe_hdr) +
329 sizeof(struct icmsg_hdr)];
330
331 /*
332 * Stash away this global state for completing the
333 * transaction; note transactions are serialized.
334 */
335
336 vss_transaction.recv_len = recvlen;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700337 vss_transaction.recv_req_id = requestid;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700338 vss_transaction.msg = (struct hv_vss_msg *)vss_msg;
339
Alex Ng497af842016-09-02 05:58:24 -0700340 schedule_work(&vss_handle_request_work);
341 return;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700342 }
343
344 icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION
345 | ICMSGHDRFLAG_RESPONSE;
346
347 vmbus_sendpacket(channel, recv_buffer,
348 recvlen, requestid,
349 VM_PKT_DATA_INBAND, 0);
350 }
351
352}
353
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700354static void vss_on_reset(void)
355{
356 if (cancel_delayed_work_sync(&vss_timeout_work))
357 vss_respond_to_host(HV_E_FAIL);
358 vss_transaction.state = HVUTIL_DEVICE_INIT;
K. Y. Srinivasand77044d2016-12-22 16:54:03 -0800359 complete(&release_event);
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700360}
361
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700362int
363hv_vss_init(struct hv_util_service *srv)
364{
K. Y. Srinivasand77044d2016-12-22 16:54:03 -0800365 init_completion(&release_event);
Olaf Heringed9ba602015-12-14 16:01:42 -0800366 if (vmbus_proto_version < VERSION_WIN8_1) {
367 pr_warn("Integration service 'Backup (volume snapshot)'"
368 " not supported on this host version.\n");
369 return -ENOTSUPP;
370 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700371 recv_buffer = srv->recv_buffer;
K. Y. Srinivasanb9830d12016-02-26 15:13:19 -0800372 vss_transaction.recv_channel = srv->channel;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700373
374 /*
375 * When this driver loads, the user level daemon that
376 * processes the host requests may not yet be running.
377 * Defer processing channel callbacks until the daemon
378 * has registered.
379 */
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700380 vss_transaction.state = HVUTIL_DEVICE_INIT;
381
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700382 hvt = hvutil_transport_init(vss_devname, CN_VSS_IDX, CN_VSS_VAL,
383 vss_on_msg, vss_on_reset);
Alex Ng23d2cc02016-11-06 13:14:10 -0800384 if (!hvt) {
385 pr_warn("VSS: Failed to initialize transport\n");
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700386 return -EFAULT;
Alex Ng23d2cc02016-11-06 13:14:10 -0800387 }
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700388
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700389 return 0;
390}
391
392void hv_vss_deinit(void)
393{
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700394 vss_transaction.state = HVUTIL_DEVICE_DYING;
Vitaly Kuznetsov64914202014-11-06 18:21:24 +0100395 cancel_delayed_work_sync(&vss_timeout_work);
Alex Ng497af842016-09-02 05:58:24 -0700396 cancel_work_sync(&vss_handle_request_work);
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700397 hvutil_transport_destroy(hvt);
K. Y. Srinivasand77044d2016-12-22 16:54:03 -0800398 wait_for_completion(&release_event);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700399}