blob: eee238cc60bd09da1e260863f5d0532a893cbd7d [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 Ngb357fd32016-11-06 13:14:11 -080034/*
35 * Timeout values are based on expecations from host
36 */
37#define VSS_FREEZE_TIMEOUT (15 * 60)
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070038
39/*
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -070040 * 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.
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070046 *
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -070047 * 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
50 * handled.
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070051 */
52
53static struct {
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -070054 int state; /* hvutil_device_state */
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070055 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 */
59} vss_transaction;
60
61
62static void vss_respond_to_host(int error);
63
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -070064/*
65 * This state maintains the version number registered by the daemon.
66 */
67static int dm_reg_value;
68
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -070069static const char vss_devname[] = "vmbus/hv_vss";
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070070static __u8 *recv_buffer;
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -070071static struct hvutil_transport *hvt;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070072
Vitaly Kuznetsov64914202014-11-06 18:21:24 +010073static void vss_timeout_func(struct work_struct *dummy);
Alex Ng497af842016-09-02 05:58:24 -070074static void vss_handle_request(struct work_struct *dummy);
Vitaly Kuznetsov64914202014-11-06 18:21:24 +010075
76static DECLARE_DELAYED_WORK(vss_timeout_work, vss_timeout_func);
Alex Ng497af842016-09-02 05:58:24 -070077static DECLARE_WORK(vss_handle_request_work, vss_handle_request);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070078
Olaf Hering3cace4a2015-12-14 16:01:33 -080079static void vss_poll_wrapper(void *channel)
80{
81 /* Transaction is finished, reset the state here to avoid races. */
82 vss_transaction.state = HVUTIL_READY;
83 hv_vss_onchannelcallback(channel);
84}
85
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070086/*
87 * Callback when data is received from user mode.
88 */
89
Vitaly Kuznetsov64914202014-11-06 18:21:24 +010090static void vss_timeout_func(struct work_struct *dummy)
91{
92 /*
93 * Timeout waiting for userspace component to reply happened.
94 */
95 pr_warn("VSS: timeout waiting for daemon to reply\n");
96 vss_respond_to_host(HV_E_FAIL);
Vitaly Kuznetsov38c06c22015-04-11 18:07:43 -070097
Olaf Hering3cace4a2015-12-14 16:01:33 -080098 hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper);
Vitaly Kuznetsov64914202014-11-06 18:21:24 +010099}
100
Vitaly Kuznetsove0fa3e52016-06-09 17:08:57 -0700101static void vss_register_done(void)
102{
103 hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper);
104 pr_debug("VSS: userspace daemon registered\n");
105}
106
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700107static int vss_handle_handshake(struct hv_vss_msg *vss_msg)
108{
109 u32 our_ver = VSS_OP_REGISTER1;
110
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;
115 break;
116 case VSS_OP_REGISTER1:
Vitaly Kuznetsove0fa3e52016-06-09 17:08:57 -0700117 /* Daemon expects us to reply with our own version */
118 if (hvutil_transport_send(hvt, &our_ver, sizeof(our_ver),
119 vss_register_done))
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700120 return -EFAULT;
121 dm_reg_value = VSS_OP_REGISTER1;
122 break;
123 default:
124 return -EINVAL;
125 }
Alex Ng23d2cc02016-11-06 13:14:10 -0800126 pr_info("VSS: userspace daemon ver. %d connected\n", dm_reg_value);
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700127 return 0;
128}
129
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700130static int vss_on_msg(void *msg, int len)
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700131{
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700132 struct hv_vss_msg *vss_msg = (struct hv_vss_msg *)msg;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700133
Alex Ng23d2cc02016-11-06 13:14:10 -0800134 if (len != sizeof(*vss_msg)) {
135 pr_debug("VSS: Message size does not match length\n");
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700136 return -EINVAL;
Alex Ng23d2cc02016-11-06 13:14:10 -0800137 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700138
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700139 if (vss_msg->vss_hdr.operation == VSS_OP_REGISTER ||
140 vss_msg->vss_hdr.operation == VSS_OP_REGISTER1) {
141 /*
142 * Don't process registration messages if we're in the middle
143 * of a transaction processing.
144 */
Alex Ng23d2cc02016-11-06 13:14:10 -0800145 if (vss_transaction.state > HVUTIL_READY) {
146 pr_debug("VSS: Got unexpected registration request\n");
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700147 return -EINVAL;
Alex Ng23d2cc02016-11-06 13:14:10 -0800148 }
149
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700150 return vss_handle_handshake(vss_msg);
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700151 } else if (vss_transaction.state == HVUTIL_USERSPACE_REQ) {
152 vss_transaction.state = HVUTIL_USERSPACE_RECV;
Alex Ngdb886e42016-09-02 05:58:25 -0700153
154 if (vss_msg->vss_hdr.operation == VSS_OP_HOT_BACKUP)
155 vss_transaction.msg->vss_cf.flags =
156 VSS_HBU_NO_AUTO_RECOVERY;
157
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700158 if (cancel_delayed_work_sync(&vss_timeout_work)) {
159 vss_respond_to_host(vss_msg->error);
160 /* Transaction is finished, reset the state. */
Olaf Hering3cace4a2015-12-14 16:01:33 -0800161 hv_poll_channel(vss_transaction.recv_channel,
162 vss_poll_wrapper);
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700163 }
164 } else {
165 /* This is a spurious call! */
Alex Ng23d2cc02016-11-06 13:14:10 -0800166 pr_debug("VSS: Transaction not active\n");
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700167 return -EINVAL;
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700168 }
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700169 return 0;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700170}
171
Alex Ng497af842016-09-02 05:58:24 -0700172static void vss_send_op(void)
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700173{
174 int op = vss_transaction.msg->vss_hdr.operation;
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100175 int rc;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700176 struct hv_vss_msg *vss_msg;
177
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700178 /* The transaction state is wrong. */
Alex Ng23d2cc02016-11-06 13:14:10 -0800179 if (vss_transaction.state != HVUTIL_HOSTMSG_RECEIVED) {
180 pr_debug("VSS: Unexpected attempt to send to daemon\n");
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700181 return;
Alex Ng23d2cc02016-11-06 13:14:10 -0800182 }
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700183
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700184 vss_msg = kzalloc(sizeof(*vss_msg), GFP_KERNEL);
185 if (!vss_msg)
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700186 return;
187
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700188 vss_msg->vss_hdr.operation = op;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700189
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700190 vss_transaction.state = HVUTIL_USERSPACE_REQ;
Alex Ng497af842016-09-02 05:58:24 -0700191
Alex Ngb357fd32016-11-06 13:14:11 -0800192 schedule_delayed_work(&vss_timeout_work, op == VSS_OP_FREEZE ?
193 VSS_FREEZE_TIMEOUT * HZ : HV_UTIL_TIMEOUT * HZ);
Alex Ng497af842016-09-02 05:58:24 -0700194
Vitaly Kuznetsove0fa3e52016-06-09 17:08:57 -0700195 rc = hvutil_transport_send(hvt, vss_msg, sizeof(*vss_msg), NULL);
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100196 if (rc) {
197 pr_warn("VSS: failed to communicate to the daemon: %d\n", rc);
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700198 if (cancel_delayed_work_sync(&vss_timeout_work)) {
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100199 vss_respond_to_host(HV_E_FAIL);
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700200 vss_transaction.state = HVUTIL_READY;
201 }
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100202 }
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700203
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700204 kfree(vss_msg);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700205
206 return;
207}
208
Alex Ng497af842016-09-02 05:58:24 -0700209static void vss_handle_request(struct work_struct *dummy)
210{
211 switch (vss_transaction.msg->vss_hdr.operation) {
212 /*
213 * Initiate a "freeze/thaw" operation in the guest.
214 * We respond to the host once the operation is complete.
215 *
216 * We send the message to the user space daemon and the operation is
217 * performed in the daemon.
218 */
219 case VSS_OP_THAW:
220 case VSS_OP_FREEZE:
Alex Ngdb886e42016-09-02 05:58:25 -0700221 case VSS_OP_HOT_BACKUP:
Alex Ng497af842016-09-02 05:58:24 -0700222 if (vss_transaction.state < HVUTIL_READY) {
223 /* Userspace is not registered yet */
Alex Ng23d2cc02016-11-06 13:14:10 -0800224 pr_debug("VSS: Not ready for request.\n");
Alex Ng497af842016-09-02 05:58:24 -0700225 vss_respond_to_host(HV_E_FAIL);
226 return;
227 }
Alex Ng23d2cc02016-11-06 13:14:10 -0800228
229 pr_debug("VSS: Received request for op code: %d\n",
230 vss_transaction.msg->vss_hdr.operation);
Alex Ng497af842016-09-02 05:58:24 -0700231 vss_transaction.state = HVUTIL_HOSTMSG_RECEIVED;
232 vss_send_op();
233 return;
Alex Ng497af842016-09-02 05:58:24 -0700234 case VSS_OP_GET_DM_INFO:
235 vss_transaction.msg->dm_info.flags = 0;
236 break;
237 default:
238 break;
239 }
240
241 vss_respond_to_host(0);
242 hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper);
243}
244
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700245/*
246 * Send a response back to the host.
247 */
248
249static void
250vss_respond_to_host(int error)
251{
252 struct icmsg_hdr *icmsghdrp;
253 u32 buf_len;
254 struct vmbus_channel *channel;
255 u64 req_id;
256
257 /*
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700258 * Copy the global state for completing the transaction. Note that
259 * only one transaction can be active at a time.
260 */
261
262 buf_len = vss_transaction.recv_len;
263 channel = vss_transaction.recv_channel;
264 req_id = vss_transaction.recv_req_id;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700265
266 icmsghdrp = (struct icmsg_hdr *)
267 &recv_buffer[sizeof(struct vmbuspipe_hdr)];
268
269 if (channel->onchannel_callback == NULL)
270 /*
271 * We have raced with util driver being unloaded;
272 * silently return.
273 */
274 return;
275
276 icmsghdrp->status = error;
277
278 icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION | ICMSGHDRFLAG_RESPONSE;
279
280 vmbus_sendpacket(channel, recv_buffer, buf_len, req_id,
281 VM_PKT_DATA_INBAND, 0);
282
283}
284
285/*
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.
288 */
289
290void hv_vss_onchannelcallback(void *context)
291{
292 struct vmbus_channel *channel = context;
293 u32 recvlen;
294 u64 requestid;
295 struct hv_vss_msg *vss_msg;
296
297
298 struct icmsg_hdr *icmsghdrp;
299 struct icmsg_negotiate *negop = NULL;
300
Olaf Hering3cace4a2015-12-14 16:01:33 -0800301 if (vss_transaction.state > HVUTIL_READY)
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700302 return;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700303
304 vmbus_recvpacket(channel, recv_buffer, PAGE_SIZE * 2, &recvlen,
305 &requestid);
306
307 if (recvlen > 0) {
308 icmsghdrp = (struct icmsg_hdr *)&recv_buffer[
309 sizeof(struct vmbuspipe_hdr)];
310
311 if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) {
312 vmbus_prep_negotiate_resp(icmsghdrp, negop,
K. Y. Srinivasan3a491602013-09-06 11:49:56 -0700313 recv_buffer, UTIL_FW_VERSION,
314 VSS_VERSION);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700315 } else {
316 vss_msg = (struct hv_vss_msg *)&recv_buffer[
317 sizeof(struct vmbuspipe_hdr) +
318 sizeof(struct icmsg_hdr)];
319
320 /*
321 * Stash away this global state for completing the
322 * transaction; note transactions are serialized.
323 */
324
325 vss_transaction.recv_len = recvlen;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700326 vss_transaction.recv_req_id = requestid;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700327 vss_transaction.msg = (struct hv_vss_msg *)vss_msg;
328
Alex Ng497af842016-09-02 05:58:24 -0700329 schedule_work(&vss_handle_request_work);
330 return;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700331 }
332
333 icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION
334 | ICMSGHDRFLAG_RESPONSE;
335
336 vmbus_sendpacket(channel, recv_buffer,
337 recvlen, requestid,
338 VM_PKT_DATA_INBAND, 0);
339 }
340
341}
342
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700343static void vss_on_reset(void)
344{
345 if (cancel_delayed_work_sync(&vss_timeout_work))
346 vss_respond_to_host(HV_E_FAIL);
347 vss_transaction.state = HVUTIL_DEVICE_INIT;
348}
349
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700350int
351hv_vss_init(struct hv_util_service *srv)
352{
Olaf Heringed9ba602015-12-14 16:01:42 -0800353 if (vmbus_proto_version < VERSION_WIN8_1) {
354 pr_warn("Integration service 'Backup (volume snapshot)'"
355 " not supported on this host version.\n");
356 return -ENOTSUPP;
357 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700358 recv_buffer = srv->recv_buffer;
K. Y. Srinivasanb9830d12016-02-26 15:13:19 -0800359 vss_transaction.recv_channel = srv->channel;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700360
361 /*
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
365 * has registered.
366 */
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700367 vss_transaction.state = HVUTIL_DEVICE_INIT;
368
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700369 hvt = hvutil_transport_init(vss_devname, CN_VSS_IDX, CN_VSS_VAL,
370 vss_on_msg, vss_on_reset);
Alex Ng23d2cc02016-11-06 13:14:10 -0800371 if (!hvt) {
372 pr_warn("VSS: Failed to initialize transport\n");
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700373 return -EFAULT;
Alex Ng23d2cc02016-11-06 13:14:10 -0800374 }
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700375
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700376 return 0;
377}
378
379void hv_vss_deinit(void)
380{
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700381 vss_transaction.state = HVUTIL_DEVICE_DYING;
Vitaly Kuznetsov64914202014-11-06 18:21:24 +0100382 cancel_delayed_work_sync(&vss_timeout_work);
Alex Ng497af842016-09-02 05:58:24 -0700383 cancel_work_sync(&vss_handle_request_work);
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700384 hvutil_transport_destroy(hvt);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700385}