blob: a76e3db0d01f9791e0e4dab7db3fb3ce99f13fc0 [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
Vitaly Kuznetsov64914202014-11-06 18:21:24 +010034#define VSS_USERSPACE_TIMEOUT (msecs_to_jiffies(10 * 1000))
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070035
36/*
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -070037 * Global state maintained for transaction that is being processed. For a class
38 * of integration services, including the "VSS service", the specified protocol
39 * is a "request/response" protocol which means that there can only be single
40 * outstanding transaction from the host at any given point in time. We use
41 * this to simplify memory management in this driver - we cache and process
42 * only one message at a time.
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070043 *
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -070044 * While the request/response protocol is guaranteed by the host, we further
45 * ensure this by serializing packet processing in this driver - we do not
46 * read additional packets from the VMBUs until the current packet is fully
47 * handled.
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070048 */
49
50static struct {
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -070051 int state; /* hvutil_device_state */
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070052 int recv_len; /* number of bytes received. */
53 struct vmbus_channel *recv_channel; /* chn we got the request */
54 u64 recv_req_id; /* request ID. */
55 struct hv_vss_msg *msg; /* current message */
56} vss_transaction;
57
58
59static void vss_respond_to_host(int error);
60
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -070061/*
62 * This state maintains the version number registered by the daemon.
63 */
64static int dm_reg_value;
65
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -070066static const char vss_devname[] = "vmbus/hv_vss";
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070067static __u8 *recv_buffer;
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -070068static struct hvutil_transport *hvt;
K. Y. Srinivasanfbff9942016-12-22 16:54:03 -080069static struct completion release_event;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070070
Vitaly Kuznetsov64914202014-11-06 18:21:24 +010071static void vss_timeout_func(struct work_struct *dummy);
Alex Ng497af842016-09-02 05:58:24 -070072static void vss_handle_request(struct work_struct *dummy);
Vitaly Kuznetsov64914202014-11-06 18:21:24 +010073
74static DECLARE_DELAYED_WORK(vss_timeout_work, vss_timeout_func);
Alex Ng497af842016-09-02 05:58:24 -070075static DECLARE_WORK(vss_handle_request_work, vss_handle_request);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070076
Olaf Hering3cace4a2015-12-14 16:01:33 -080077static void vss_poll_wrapper(void *channel)
78{
79 /* Transaction is finished, reset the state here to avoid races. */
80 vss_transaction.state = HVUTIL_READY;
81 hv_vss_onchannelcallback(channel);
82}
83
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -070084/*
85 * Callback when data is received from user mode.
86 */
87
Vitaly Kuznetsov64914202014-11-06 18:21:24 +010088static void vss_timeout_func(struct work_struct *dummy)
89{
90 /*
91 * Timeout waiting for userspace component to reply happened.
92 */
93 pr_warn("VSS: timeout waiting for daemon to reply\n");
94 vss_respond_to_host(HV_E_FAIL);
Vitaly Kuznetsov38c06c22015-04-11 18:07:43 -070095
Olaf Hering3cace4a2015-12-14 16:01:33 -080096 hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper);
Vitaly Kuznetsov64914202014-11-06 18:21:24 +010097}
98
Vitaly Kuznetsove0fa3e52016-06-09 17:08:57 -070099static void vss_register_done(void)
100{
101 hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper);
102 pr_debug("VSS: userspace daemon registered\n");
103}
104
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700105static int vss_handle_handshake(struct hv_vss_msg *vss_msg)
106{
107 u32 our_ver = VSS_OP_REGISTER1;
108
109 switch (vss_msg->vss_hdr.operation) {
110 case VSS_OP_REGISTER:
111 /* Daemon doesn't expect us to reply */
112 dm_reg_value = VSS_OP_REGISTER;
113 break;
114 case VSS_OP_REGISTER1:
Vitaly Kuznetsove0fa3e52016-06-09 17:08:57 -0700115 /* Daemon expects us to reply with our own version */
116 if (hvutil_transport_send(hvt, &our_ver, sizeof(our_ver),
117 vss_register_done))
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700118 return -EFAULT;
119 dm_reg_value = VSS_OP_REGISTER1;
120 break;
121 default:
122 return -EINVAL;
123 }
Vitaly Kuznetsove0fa3e52016-06-09 17:08:57 -0700124 pr_debug("VSS: userspace daemon ver. %d connected\n", dm_reg_value);
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700125 return 0;
126}
127
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700128static int vss_on_msg(void *msg, int len)
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700129{
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700130 struct hv_vss_msg *vss_msg = (struct hv_vss_msg *)msg;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700131
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700132 if (len != sizeof(*vss_msg))
133 return -EINVAL;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700134
Vitaly Kuznetsovcd8dc052015-04-11 18:07:57 -0700135 if (vss_msg->vss_hdr.operation == VSS_OP_REGISTER ||
136 vss_msg->vss_hdr.operation == VSS_OP_REGISTER1) {
137 /*
138 * Don't process registration messages if we're in the middle
139 * of a transaction processing.
140 */
141 if (vss_transaction.state > HVUTIL_READY)
142 return -EINVAL;
143 return vss_handle_handshake(vss_msg);
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700144 } else if (vss_transaction.state == HVUTIL_USERSPACE_REQ) {
145 vss_transaction.state = HVUTIL_USERSPACE_RECV;
Alex Ngdb886e42016-09-02 05:58:25 -0700146
147 if (vss_msg->vss_hdr.operation == VSS_OP_HOT_BACKUP)
148 vss_transaction.msg->vss_cf.flags =
149 VSS_HBU_NO_AUTO_RECOVERY;
150
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700151 if (cancel_delayed_work_sync(&vss_timeout_work)) {
152 vss_respond_to_host(vss_msg->error);
153 /* Transaction is finished, reset the state. */
Olaf Hering3cace4a2015-12-14 16:01:33 -0800154 hv_poll_channel(vss_transaction.recv_channel,
155 vss_poll_wrapper);
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700156 }
157 } else {
158 /* This is a spurious call! */
159 pr_warn("VSS: Transaction not active\n");
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700160 return -EINVAL;
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700161 }
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700162 return 0;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700163}
164
Alex Ng497af842016-09-02 05:58:24 -0700165static void vss_send_op(void)
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700166{
167 int op = vss_transaction.msg->vss_hdr.operation;
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100168 int rc;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700169 struct hv_vss_msg *vss_msg;
170
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700171 /* The transaction state is wrong. */
172 if (vss_transaction.state != HVUTIL_HOSTMSG_RECEIVED)
173 return;
174
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700175 vss_msg = kzalloc(sizeof(*vss_msg), GFP_KERNEL);
176 if (!vss_msg)
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700177 return;
178
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700179 vss_msg->vss_hdr.operation = op;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700180
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700181 vss_transaction.state = HVUTIL_USERSPACE_REQ;
Alex Ng497af842016-09-02 05:58:24 -0700182
183 schedule_delayed_work(&vss_timeout_work, VSS_USERSPACE_TIMEOUT);
184
Vitaly Kuznetsove0fa3e52016-06-09 17:08:57 -0700185 rc = hvutil_transport_send(hvt, vss_msg, sizeof(*vss_msg), NULL);
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100186 if (rc) {
187 pr_warn("VSS: failed to communicate to the daemon: %d\n", rc);
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700188 if (cancel_delayed_work_sync(&vss_timeout_work)) {
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100189 vss_respond_to_host(HV_E_FAIL);
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700190 vss_transaction.state = HVUTIL_READY;
191 }
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100192 }
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700193
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700194 kfree(vss_msg);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700195
196 return;
197}
198
Alex Ng497af842016-09-02 05:58:24 -0700199static void vss_handle_request(struct work_struct *dummy)
200{
201 switch (vss_transaction.msg->vss_hdr.operation) {
202 /*
203 * Initiate a "freeze/thaw" operation in the guest.
204 * We respond to the host once the operation is complete.
205 *
206 * We send the message to the user space daemon and the operation is
207 * performed in the daemon.
208 */
209 case VSS_OP_THAW:
210 case VSS_OP_FREEZE:
Alex Ngdb886e42016-09-02 05:58:25 -0700211 case VSS_OP_HOT_BACKUP:
Alex Ng497af842016-09-02 05:58:24 -0700212 if (vss_transaction.state < HVUTIL_READY) {
213 /* Userspace is not registered yet */
214 vss_respond_to_host(HV_E_FAIL);
215 return;
216 }
217 vss_transaction.state = HVUTIL_HOSTMSG_RECEIVED;
218 vss_send_op();
219 return;
Alex Ng497af842016-09-02 05:58:24 -0700220 case VSS_OP_GET_DM_INFO:
221 vss_transaction.msg->dm_info.flags = 0;
222 break;
223 default:
224 break;
225 }
226
227 vss_respond_to_host(0);
228 hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper);
229}
230
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700231/*
232 * Send a response back to the host.
233 */
234
235static void
236vss_respond_to_host(int error)
237{
238 struct icmsg_hdr *icmsghdrp;
239 u32 buf_len;
240 struct vmbus_channel *channel;
241 u64 req_id;
242
243 /*
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700244 * Copy the global state for completing the transaction. Note that
245 * only one transaction can be active at a time.
246 */
247
248 buf_len = vss_transaction.recv_len;
249 channel = vss_transaction.recv_channel;
250 req_id = vss_transaction.recv_req_id;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700251
252 icmsghdrp = (struct icmsg_hdr *)
253 &recv_buffer[sizeof(struct vmbuspipe_hdr)];
254
255 if (channel->onchannel_callback == NULL)
256 /*
257 * We have raced with util driver being unloaded;
258 * silently return.
259 */
260 return;
261
262 icmsghdrp->status = error;
263
264 icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION | ICMSGHDRFLAG_RESPONSE;
265
266 vmbus_sendpacket(channel, recv_buffer, buf_len, req_id,
267 VM_PKT_DATA_INBAND, 0);
268
269}
270
271/*
272 * This callback is invoked when we get a VSS message from the host.
273 * The host ensures that only one VSS transaction can be active at a time.
274 */
275
276void hv_vss_onchannelcallback(void *context)
277{
278 struct vmbus_channel *channel = context;
279 u32 recvlen;
280 u64 requestid;
281 struct hv_vss_msg *vss_msg;
282
283
284 struct icmsg_hdr *icmsghdrp;
285 struct icmsg_negotiate *negop = NULL;
286
Olaf Hering3cace4a2015-12-14 16:01:33 -0800287 if (vss_transaction.state > HVUTIL_READY)
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700288 return;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700289
290 vmbus_recvpacket(channel, recv_buffer, PAGE_SIZE * 2, &recvlen,
291 &requestid);
292
293 if (recvlen > 0) {
294 icmsghdrp = (struct icmsg_hdr *)&recv_buffer[
295 sizeof(struct vmbuspipe_hdr)];
296
297 if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) {
298 vmbus_prep_negotiate_resp(icmsghdrp, negop,
K. Y. Srinivasan3a491602013-09-06 11:49:56 -0700299 recv_buffer, UTIL_FW_VERSION,
300 VSS_VERSION);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700301 } else {
302 vss_msg = (struct hv_vss_msg *)&recv_buffer[
303 sizeof(struct vmbuspipe_hdr) +
304 sizeof(struct icmsg_hdr)];
305
306 /*
307 * Stash away this global state for completing the
308 * transaction; note transactions are serialized.
309 */
310
311 vss_transaction.recv_len = recvlen;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700312 vss_transaction.recv_req_id = requestid;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700313 vss_transaction.msg = (struct hv_vss_msg *)vss_msg;
314
Alex Ng497af842016-09-02 05:58:24 -0700315 schedule_work(&vss_handle_request_work);
316 return;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700317 }
318
319 icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION
320 | ICMSGHDRFLAG_RESPONSE;
321
322 vmbus_sendpacket(channel, recv_buffer,
323 recvlen, requestid,
324 VM_PKT_DATA_INBAND, 0);
325 }
326
327}
328
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700329static void vss_on_reset(void)
330{
331 if (cancel_delayed_work_sync(&vss_timeout_work))
332 vss_respond_to_host(HV_E_FAIL);
333 vss_transaction.state = HVUTIL_DEVICE_INIT;
K. Y. Srinivasanfbff9942016-12-22 16:54:03 -0800334 complete(&release_event);
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700335}
336
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700337int
338hv_vss_init(struct hv_util_service *srv)
339{
K. Y. Srinivasanfbff9942016-12-22 16:54:03 -0800340 init_completion(&release_event);
Olaf Heringed9ba602015-12-14 16:01:42 -0800341 if (vmbus_proto_version < VERSION_WIN8_1) {
342 pr_warn("Integration service 'Backup (volume snapshot)'"
343 " not supported on this host version.\n");
344 return -ENOTSUPP;
345 }
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700346 recv_buffer = srv->recv_buffer;
K. Y. Srinivasanb9830d12016-02-26 15:13:19 -0800347 vss_transaction.recv_channel = srv->channel;
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700348
349 /*
350 * When this driver loads, the user level daemon that
351 * processes the host requests may not yet be running.
352 * Defer processing channel callbacks until the daemon
353 * has registered.
354 */
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700355 vss_transaction.state = HVUTIL_DEVICE_INIT;
356
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700357 hvt = hvutil_transport_init(vss_devname, CN_VSS_IDX, CN_VSS_VAL,
358 vss_on_msg, vss_on_reset);
359 if (!hvt)
360 return -EFAULT;
361
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700362 return 0;
363}
364
365void hv_vss_deinit(void)
366{
Vitaly Kuznetsov086a6f62015-04-11 18:07:48 -0700367 vss_transaction.state = HVUTIL_DEVICE_DYING;
Vitaly Kuznetsov64914202014-11-06 18:21:24 +0100368 cancel_delayed_work_sync(&vss_timeout_work);
Alex Ng497af842016-09-02 05:58:24 -0700369 cancel_work_sync(&vss_handle_request_work);
Vitaly Kuznetsov6472f802015-04-11 18:07:52 -0700370 hvutil_transport_destroy(hvt);
K. Y. Srinivasanfbff9942016-12-22 16:54:03 -0800371 wait_for_completion(&release_event);
K. Y. Srinivasan96dd86f2013-03-15 12:30:06 -0700372}