tcp: Change reference to experimental CWND RFC.
[linux-2.6/btrfs-unstable.git] / drivers / hv / hv_snapshot.c
blob67def4a831c80461bd50c9ae867b112f12af414a
1 /*
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
16 * details.
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"
30 #define VSS_MAJOR 5
31 #define VSS_MINOR 0
32 #define VSS_VERSION (VSS_MAJOR << 16 | VSS_MINOR)
34 #define VSS_USERSPACE_TIMEOUT (msecs_to_jiffies(10 * 1000))
37 * 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.
44 * 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.
50 static struct {
51 int state; /* hvutil_device_state */
52 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;
59 static void vss_respond_to_host(int error);
62 * This state maintains the version number registered by the daemon.
64 static int dm_reg_value;
66 static const char vss_devname[] = "vmbus/hv_vss";
67 static __u8 *recv_buffer;
68 static struct hvutil_transport *hvt;
70 static void vss_send_op(struct work_struct *dummy);
71 static void vss_timeout_func(struct work_struct *dummy);
73 static DECLARE_DELAYED_WORK(vss_timeout_work, vss_timeout_func);
74 static DECLARE_WORK(vss_send_op_work, vss_send_op);
76 static void vss_poll_wrapper(void *channel)
78 /* Transaction is finished, reset the state here to avoid races. */
79 vss_transaction.state = HVUTIL_READY;
80 hv_vss_onchannelcallback(channel);
84 * Callback when data is received from user mode.
87 static void vss_timeout_func(struct work_struct *dummy)
90 * Timeout waiting for userspace component to reply happened.
92 pr_warn("VSS: timeout waiting for daemon to reply\n");
93 vss_respond_to_host(HV_E_FAIL);
95 hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper);
98 static int vss_handle_handshake(struct hv_vss_msg *vss_msg)
100 u32 our_ver = VSS_OP_REGISTER1;
102 switch (vss_msg->vss_hdr.operation) {
103 case VSS_OP_REGISTER:
104 /* Daemon doesn't expect us to reply */
105 dm_reg_value = VSS_OP_REGISTER;
106 break;
107 case VSS_OP_REGISTER1:
108 /* Daemon expects us to reply with our own version*/
109 if (hvutil_transport_send(hvt, &our_ver, sizeof(our_ver)))
110 return -EFAULT;
111 dm_reg_value = VSS_OP_REGISTER1;
112 break;
113 default:
114 return -EINVAL;
116 hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper);
117 pr_debug("VSS: userspace daemon ver. %d registered\n", dm_reg_value);
118 return 0;
121 static int vss_on_msg(void *msg, int len)
123 struct hv_vss_msg *vss_msg = (struct hv_vss_msg *)msg;
125 if (len != sizeof(*vss_msg))
126 return -EINVAL;
128 if (vss_msg->vss_hdr.operation == VSS_OP_REGISTER ||
129 vss_msg->vss_hdr.operation == VSS_OP_REGISTER1) {
131 * Don't process registration messages if we're in the middle
132 * of a transaction processing.
134 if (vss_transaction.state > HVUTIL_READY)
135 return -EINVAL;
136 return vss_handle_handshake(vss_msg);
137 } else if (vss_transaction.state == HVUTIL_USERSPACE_REQ) {
138 vss_transaction.state = HVUTIL_USERSPACE_RECV;
139 if (cancel_delayed_work_sync(&vss_timeout_work)) {
140 vss_respond_to_host(vss_msg->error);
141 /* Transaction is finished, reset the state. */
142 hv_poll_channel(vss_transaction.recv_channel,
143 vss_poll_wrapper);
145 } else {
146 /* This is a spurious call! */
147 pr_warn("VSS: Transaction not active\n");
148 return -EINVAL;
150 return 0;
154 static void vss_send_op(struct work_struct *dummy)
156 int op = vss_transaction.msg->vss_hdr.operation;
157 int rc;
158 struct hv_vss_msg *vss_msg;
160 /* The transaction state is wrong. */
161 if (vss_transaction.state != HVUTIL_HOSTMSG_RECEIVED)
162 return;
164 vss_msg = kzalloc(sizeof(*vss_msg), GFP_KERNEL);
165 if (!vss_msg)
166 return;
168 vss_msg->vss_hdr.operation = op;
170 vss_transaction.state = HVUTIL_USERSPACE_REQ;
171 rc = hvutil_transport_send(hvt, vss_msg, sizeof(*vss_msg));
172 if (rc) {
173 pr_warn("VSS: failed to communicate to the daemon: %d\n", rc);
174 if (cancel_delayed_work_sync(&vss_timeout_work)) {
175 vss_respond_to_host(HV_E_FAIL);
176 vss_transaction.state = HVUTIL_READY;
180 kfree(vss_msg);
182 return;
186 * Send a response back to the host.
189 static void
190 vss_respond_to_host(int error)
192 struct icmsg_hdr *icmsghdrp;
193 u32 buf_len;
194 struct vmbus_channel *channel;
195 u64 req_id;
198 * Copy the global state for completing the transaction. Note that
199 * only one transaction can be active at a time.
202 buf_len = vss_transaction.recv_len;
203 channel = vss_transaction.recv_channel;
204 req_id = vss_transaction.recv_req_id;
206 icmsghdrp = (struct icmsg_hdr *)
207 &recv_buffer[sizeof(struct vmbuspipe_hdr)];
209 if (channel->onchannel_callback == NULL)
211 * We have raced with util driver being unloaded;
212 * silently return.
214 return;
216 icmsghdrp->status = error;
218 icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION | ICMSGHDRFLAG_RESPONSE;
220 vmbus_sendpacket(channel, recv_buffer, buf_len, req_id,
221 VM_PKT_DATA_INBAND, 0);
226 * This callback is invoked when we get a VSS message from the host.
227 * The host ensures that only one VSS transaction can be active at a time.
230 void hv_vss_onchannelcallback(void *context)
232 struct vmbus_channel *channel = context;
233 u32 recvlen;
234 u64 requestid;
235 struct hv_vss_msg *vss_msg;
238 struct icmsg_hdr *icmsghdrp;
239 struct icmsg_negotiate *negop = NULL;
241 if (vss_transaction.state > HVUTIL_READY)
242 return;
244 vmbus_recvpacket(channel, recv_buffer, PAGE_SIZE * 2, &recvlen,
245 &requestid);
247 if (recvlen > 0) {
248 icmsghdrp = (struct icmsg_hdr *)&recv_buffer[
249 sizeof(struct vmbuspipe_hdr)];
251 if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) {
252 vmbus_prep_negotiate_resp(icmsghdrp, negop,
253 recv_buffer, UTIL_FW_VERSION,
254 VSS_VERSION);
255 } else {
256 vss_msg = (struct hv_vss_msg *)&recv_buffer[
257 sizeof(struct vmbuspipe_hdr) +
258 sizeof(struct icmsg_hdr)];
261 * Stash away this global state for completing the
262 * transaction; note transactions are serialized.
265 vss_transaction.recv_len = recvlen;
266 vss_transaction.recv_channel = channel;
267 vss_transaction.recv_req_id = requestid;
268 vss_transaction.msg = (struct hv_vss_msg *)vss_msg;
270 switch (vss_msg->vss_hdr.operation) {
272 * Initiate a "freeze/thaw"
273 * operation in the guest.
274 * We respond to the host once
275 * the operation is complete.
277 * We send the message to the
278 * user space daemon and the
279 * operation is performed in
280 * the daemon.
282 case VSS_OP_FREEZE:
283 case VSS_OP_THAW:
284 if (vss_transaction.state < HVUTIL_READY) {
285 /* Userspace is not registered yet */
286 vss_respond_to_host(HV_E_FAIL);
287 return;
289 vss_transaction.state = HVUTIL_HOSTMSG_RECEIVED;
290 schedule_work(&vss_send_op_work);
291 schedule_delayed_work(&vss_timeout_work,
292 VSS_USERSPACE_TIMEOUT);
293 return;
295 case VSS_OP_HOT_BACKUP:
296 vss_msg->vss_cf.flags =
297 VSS_HBU_NO_AUTO_RECOVERY;
298 vss_respond_to_host(0);
299 return;
301 case VSS_OP_GET_DM_INFO:
302 vss_msg->dm_info.flags = 0;
303 vss_respond_to_host(0);
304 return;
306 default:
307 vss_respond_to_host(0);
308 return;
314 icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION
315 | ICMSGHDRFLAG_RESPONSE;
317 vmbus_sendpacket(channel, recv_buffer,
318 recvlen, requestid,
319 VM_PKT_DATA_INBAND, 0);
324 static void vss_on_reset(void)
326 if (cancel_delayed_work_sync(&vss_timeout_work))
327 vss_respond_to_host(HV_E_FAIL);
328 vss_transaction.state = HVUTIL_DEVICE_INIT;
332 hv_vss_init(struct hv_util_service *srv)
334 if (vmbus_proto_version < VERSION_WIN8_1) {
335 pr_warn("Integration service 'Backup (volume snapshot)'"
336 " not supported on this host version.\n");
337 return -ENOTSUPP;
339 recv_buffer = srv->recv_buffer;
342 * When this driver loads, the user level daemon that
343 * processes the host requests may not yet be running.
344 * Defer processing channel callbacks until the daemon
345 * has registered.
347 vss_transaction.state = HVUTIL_DEVICE_INIT;
349 hvt = hvutil_transport_init(vss_devname, CN_VSS_IDX, CN_VSS_VAL,
350 vss_on_msg, vss_on_reset);
351 if (!hvt)
352 return -EFAULT;
354 return 0;
357 void hv_vss_deinit(void)
359 vss_transaction.state = HVUTIL_DEVICE_DYING;
360 cancel_delayed_work_sync(&vss_timeout_work);
361 cancel_work_sync(&vss_send_op_work);
362 hvutil_transport_destroy(hvt);