K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 1 | /* |
| 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 Kuznetsov | 3647a83 | 2015-04-11 18:07:39 -0700 | [diff] [blame] | 27 | #include "hyperv_vmbus.h" |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 28 | #include "hv_utils_transport.h" |
Vitaly Kuznetsov | 3647a83 | 2015-04-11 18:07:39 -0700 | [diff] [blame] | 29 | |
K. Y. Srinivasan | 6741335 | 2013-07-02 10:31:30 -0700 | [diff] [blame] | 30 | #define VSS_MAJOR 5 |
| 31 | #define VSS_MINOR 0 |
K. Y. Srinivasan | 3a49160 | 2013-09-06 11:49:56 -0700 | [diff] [blame] | 32 | #define VSS_VERSION (VSS_MAJOR << 16 | VSS_MINOR) |
K. Y. Srinivasan | 6741335 | 2013-07-02 10:31:30 -0700 | [diff] [blame] | 33 | |
Alex Ng | a165645 | 2017-01-28 12:37:17 -0700 | [diff] [blame] | 34 | #define VSS_VER_COUNT 1 |
| 35 | static const int vss_versions[] = { |
| 36 | VSS_VERSION |
| 37 | }; |
| 38 | |
| 39 | #define FW_VER_COUNT 1 |
| 40 | static const int fw_versions[] = { |
| 41 | UTIL_FW_VERSION |
| 42 | }; |
| 43 | |
Alex Ng | b357fd3 | 2016-11-06 13:14:11 -0800 | [diff] [blame] | 44 | /* |
| 45 | * Timeout values are based on expecations from host |
| 46 | */ |
| 47 | #define VSS_FREEZE_TIMEOUT (15 * 60) |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 48 | |
| 49 | /* |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 50 | * 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. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 56 | * |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 57 | * 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. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 61 | */ |
| 62 | |
| 63 | static struct { |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 64 | int state; /* hvutil_device_state */ |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 65 | 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 | |
| 72 | static void vss_respond_to_host(int error); |
| 73 | |
Vitaly Kuznetsov | cd8dc05 | 2015-04-11 18:07:57 -0700 | [diff] [blame] | 74 | /* |
| 75 | * This state maintains the version number registered by the daemon. |
| 76 | */ |
| 77 | static int dm_reg_value; |
| 78 | |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 79 | static const char vss_devname[] = "vmbus/hv_vss"; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 80 | static __u8 *recv_buffer; |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 81 | static struct hvutil_transport *hvt; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 82 | |
Vitaly Kuznetsov | 6491420 | 2014-11-06 18:21:24 +0100 | [diff] [blame] | 83 | static void vss_timeout_func(struct work_struct *dummy); |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 84 | static void vss_handle_request(struct work_struct *dummy); |
Vitaly Kuznetsov | 6491420 | 2014-11-06 18:21:24 +0100 | [diff] [blame] | 85 | |
| 86 | static DECLARE_DELAYED_WORK(vss_timeout_work, vss_timeout_func); |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 87 | static DECLARE_WORK(vss_handle_request_work, vss_handle_request); |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 88 | |
Olaf Hering | 3cace4a | 2015-12-14 16:01:33 -0800 | [diff] [blame] | 89 | static void vss_poll_wrapper(void *channel) |
| 90 | { |
| 91 | /* Transaction is finished, reset the state here to avoid races. */ |
| 92 | vss_transaction.state = HVUTIL_READY; |
| 93 | hv_vss_onchannelcallback(channel); |
| 94 | } |
| 95 | |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 96 | /* |
| 97 | * Callback when data is received from user mode. |
| 98 | */ |
| 99 | |
Vitaly Kuznetsov | 6491420 | 2014-11-06 18:21:24 +0100 | [diff] [blame] | 100 | static void vss_timeout_func(struct work_struct *dummy) |
| 101 | { |
| 102 | /* |
| 103 | * Timeout waiting for userspace component to reply happened. |
| 104 | */ |
| 105 | pr_warn("VSS: timeout waiting for daemon to reply\n"); |
| 106 | vss_respond_to_host(HV_E_FAIL); |
Vitaly Kuznetsov | 38c06c2 | 2015-04-11 18:07:43 -0700 | [diff] [blame] | 107 | |
Olaf Hering | 3cace4a | 2015-12-14 16:01:33 -0800 | [diff] [blame] | 108 | hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper); |
Vitaly Kuznetsov | 6491420 | 2014-11-06 18:21:24 +0100 | [diff] [blame] | 109 | } |
| 110 | |
Vitaly Kuznetsov | e0fa3e5 | 2016-06-09 17:08:57 -0700 | [diff] [blame] | 111 | static void vss_register_done(void) |
| 112 | { |
| 113 | hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper); |
| 114 | pr_debug("VSS: userspace daemon registered\n"); |
| 115 | } |
| 116 | |
Vitaly Kuznetsov | cd8dc05 | 2015-04-11 18:07:57 -0700 | [diff] [blame] | 117 | static int vss_handle_handshake(struct hv_vss_msg *vss_msg) |
| 118 | { |
| 119 | u32 our_ver = VSS_OP_REGISTER1; |
| 120 | |
| 121 | switch (vss_msg->vss_hdr.operation) { |
| 122 | case VSS_OP_REGISTER: |
| 123 | /* Daemon doesn't expect us to reply */ |
| 124 | dm_reg_value = VSS_OP_REGISTER; |
| 125 | break; |
| 126 | case VSS_OP_REGISTER1: |
Vitaly Kuznetsov | e0fa3e5 | 2016-06-09 17:08:57 -0700 | [diff] [blame] | 127 | /* Daemon expects us to reply with our own version */ |
| 128 | if (hvutil_transport_send(hvt, &our_ver, sizeof(our_ver), |
| 129 | vss_register_done)) |
Vitaly Kuznetsov | cd8dc05 | 2015-04-11 18:07:57 -0700 | [diff] [blame] | 130 | return -EFAULT; |
| 131 | dm_reg_value = VSS_OP_REGISTER1; |
| 132 | break; |
| 133 | default: |
| 134 | return -EINVAL; |
| 135 | } |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 136 | pr_info("VSS: userspace daemon ver. %d connected\n", dm_reg_value); |
Vitaly Kuznetsov | cd8dc05 | 2015-04-11 18:07:57 -0700 | [diff] [blame] | 137 | return 0; |
| 138 | } |
| 139 | |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 140 | static int vss_on_msg(void *msg, int len) |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 141 | { |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 142 | struct hv_vss_msg *vss_msg = (struct hv_vss_msg *)msg; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 143 | |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 144 | if (len != sizeof(*vss_msg)) { |
| 145 | pr_debug("VSS: Message size does not match length\n"); |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 146 | return -EINVAL; |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 147 | } |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 148 | |
Vitaly Kuznetsov | cd8dc05 | 2015-04-11 18:07:57 -0700 | [diff] [blame] | 149 | if (vss_msg->vss_hdr.operation == VSS_OP_REGISTER || |
| 150 | vss_msg->vss_hdr.operation == VSS_OP_REGISTER1) { |
| 151 | /* |
| 152 | * Don't process registration messages if we're in the middle |
| 153 | * of a transaction processing. |
| 154 | */ |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 155 | if (vss_transaction.state > HVUTIL_READY) { |
| 156 | pr_debug("VSS: Got unexpected registration request\n"); |
Vitaly Kuznetsov | cd8dc05 | 2015-04-11 18:07:57 -0700 | [diff] [blame] | 157 | return -EINVAL; |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 158 | } |
| 159 | |
Vitaly Kuznetsov | cd8dc05 | 2015-04-11 18:07:57 -0700 | [diff] [blame] | 160 | return vss_handle_handshake(vss_msg); |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 161 | } else if (vss_transaction.state == HVUTIL_USERSPACE_REQ) { |
| 162 | vss_transaction.state = HVUTIL_USERSPACE_RECV; |
Alex Ng | db886e4 | 2016-09-02 05:58:25 -0700 | [diff] [blame] | 163 | |
| 164 | if (vss_msg->vss_hdr.operation == VSS_OP_HOT_BACKUP) |
| 165 | vss_transaction.msg->vss_cf.flags = |
| 166 | VSS_HBU_NO_AUTO_RECOVERY; |
| 167 | |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 168 | if (cancel_delayed_work_sync(&vss_timeout_work)) { |
| 169 | vss_respond_to_host(vss_msg->error); |
| 170 | /* Transaction is finished, reset the state. */ |
Olaf Hering | 3cace4a | 2015-12-14 16:01:33 -0800 | [diff] [blame] | 171 | hv_poll_channel(vss_transaction.recv_channel, |
| 172 | vss_poll_wrapper); |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 173 | } |
| 174 | } else { |
| 175 | /* This is a spurious call! */ |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 176 | pr_debug("VSS: Transaction not active\n"); |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 177 | return -EINVAL; |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 178 | } |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 179 | return 0; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 180 | } |
| 181 | |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 182 | static void vss_send_op(void) |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 183 | { |
| 184 | int op = vss_transaction.msg->vss_hdr.operation; |
Vitaly Kuznetsov | 8d9560e | 2014-11-06 18:21:25 +0100 | [diff] [blame] | 185 | int rc; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 186 | struct hv_vss_msg *vss_msg; |
| 187 | |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 188 | /* The transaction state is wrong. */ |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 189 | if (vss_transaction.state != HVUTIL_HOSTMSG_RECEIVED) { |
| 190 | pr_debug("VSS: Unexpected attempt to send to daemon\n"); |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 191 | return; |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 192 | } |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 193 | |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 194 | vss_msg = kzalloc(sizeof(*vss_msg), GFP_KERNEL); |
| 195 | if (!vss_msg) |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 196 | return; |
| 197 | |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 198 | vss_msg->vss_hdr.operation = op; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 199 | |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 200 | vss_transaction.state = HVUTIL_USERSPACE_REQ; |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 201 | |
Alex Ng | b357fd3 | 2016-11-06 13:14:11 -0800 | [diff] [blame] | 202 | schedule_delayed_work(&vss_timeout_work, op == VSS_OP_FREEZE ? |
| 203 | VSS_FREEZE_TIMEOUT * HZ : HV_UTIL_TIMEOUT * HZ); |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 204 | |
Vitaly Kuznetsov | e0fa3e5 | 2016-06-09 17:08:57 -0700 | [diff] [blame] | 205 | rc = hvutil_transport_send(hvt, vss_msg, sizeof(*vss_msg), NULL); |
Vitaly Kuznetsov | 8d9560e | 2014-11-06 18:21:25 +0100 | [diff] [blame] | 206 | if (rc) { |
| 207 | pr_warn("VSS: failed to communicate to the daemon: %d\n", rc); |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 208 | if (cancel_delayed_work_sync(&vss_timeout_work)) { |
Vitaly Kuznetsov | 8d9560e | 2014-11-06 18:21:25 +0100 | [diff] [blame] | 209 | vss_respond_to_host(HV_E_FAIL); |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 210 | vss_transaction.state = HVUTIL_READY; |
| 211 | } |
Vitaly Kuznetsov | 8d9560e | 2014-11-06 18:21:25 +0100 | [diff] [blame] | 212 | } |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 213 | |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 214 | kfree(vss_msg); |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 215 | |
| 216 | return; |
| 217 | } |
| 218 | |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 219 | static void vss_handle_request(struct work_struct *dummy) |
| 220 | { |
| 221 | switch (vss_transaction.msg->vss_hdr.operation) { |
| 222 | /* |
| 223 | * Initiate a "freeze/thaw" operation in the guest. |
| 224 | * We respond to the host once the operation is complete. |
| 225 | * |
| 226 | * We send the message to the user space daemon and the operation is |
| 227 | * performed in the daemon. |
| 228 | */ |
| 229 | case VSS_OP_THAW: |
| 230 | case VSS_OP_FREEZE: |
Alex Ng | db886e4 | 2016-09-02 05:58:25 -0700 | [diff] [blame] | 231 | case VSS_OP_HOT_BACKUP: |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 232 | if (vss_transaction.state < HVUTIL_READY) { |
| 233 | /* Userspace is not registered yet */ |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 234 | pr_debug("VSS: Not ready for request.\n"); |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 235 | vss_respond_to_host(HV_E_FAIL); |
| 236 | return; |
| 237 | } |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 238 | |
| 239 | pr_debug("VSS: Received request for op code: %d\n", |
| 240 | vss_transaction.msg->vss_hdr.operation); |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 241 | vss_transaction.state = HVUTIL_HOSTMSG_RECEIVED; |
| 242 | vss_send_op(); |
| 243 | return; |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 244 | case VSS_OP_GET_DM_INFO: |
| 245 | vss_transaction.msg->dm_info.flags = 0; |
| 246 | break; |
| 247 | default: |
| 248 | break; |
| 249 | } |
| 250 | |
| 251 | vss_respond_to_host(0); |
| 252 | hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper); |
| 253 | } |
| 254 | |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 255 | /* |
| 256 | * Send a response back to the host. |
| 257 | */ |
| 258 | |
| 259 | static void |
| 260 | vss_respond_to_host(int error) |
| 261 | { |
| 262 | struct icmsg_hdr *icmsghdrp; |
| 263 | u32 buf_len; |
| 264 | struct vmbus_channel *channel; |
| 265 | u64 req_id; |
| 266 | |
| 267 | /* |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 268 | * Copy the global state for completing the transaction. Note that |
| 269 | * only one transaction can be active at a time. |
| 270 | */ |
| 271 | |
| 272 | buf_len = vss_transaction.recv_len; |
| 273 | channel = vss_transaction.recv_channel; |
| 274 | req_id = vss_transaction.recv_req_id; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 275 | |
| 276 | icmsghdrp = (struct icmsg_hdr *) |
| 277 | &recv_buffer[sizeof(struct vmbuspipe_hdr)]; |
| 278 | |
| 279 | if (channel->onchannel_callback == NULL) |
| 280 | /* |
| 281 | * We have raced with util driver being unloaded; |
| 282 | * silently return. |
| 283 | */ |
| 284 | return; |
| 285 | |
| 286 | icmsghdrp->status = error; |
| 287 | |
| 288 | icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION | ICMSGHDRFLAG_RESPONSE; |
| 289 | |
| 290 | vmbus_sendpacket(channel, recv_buffer, buf_len, req_id, |
| 291 | VM_PKT_DATA_INBAND, 0); |
| 292 | |
| 293 | } |
| 294 | |
| 295 | /* |
| 296 | * This callback is invoked when we get a VSS message from the host. |
| 297 | * The host ensures that only one VSS transaction can be active at a time. |
| 298 | */ |
| 299 | |
| 300 | void hv_vss_onchannelcallback(void *context) |
| 301 | { |
| 302 | struct vmbus_channel *channel = context; |
| 303 | u32 recvlen; |
| 304 | u64 requestid; |
| 305 | struct hv_vss_msg *vss_msg; |
Alex Ng | 1274a69 | 2017-01-28 12:37:18 -0700 | [diff] [blame] | 306 | int vss_srv_version; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 307 | |
| 308 | struct icmsg_hdr *icmsghdrp; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 309 | |
Olaf Hering | 3cace4a | 2015-12-14 16:01:33 -0800 | [diff] [blame] | 310 | if (vss_transaction.state > HVUTIL_READY) |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 311 | return; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 312 | |
| 313 | vmbus_recvpacket(channel, recv_buffer, PAGE_SIZE * 2, &recvlen, |
| 314 | &requestid); |
| 315 | |
| 316 | if (recvlen > 0) { |
| 317 | icmsghdrp = (struct icmsg_hdr *)&recv_buffer[ |
| 318 | sizeof(struct vmbuspipe_hdr)]; |
| 319 | |
| 320 | if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) { |
Alex Ng | 1274a69 | 2017-01-28 12:37:18 -0700 | [diff] [blame] | 321 | if (vmbus_prep_negotiate_resp(icmsghdrp, |
Alex Ng | a165645 | 2017-01-28 12:37:17 -0700 | [diff] [blame] | 322 | recv_buffer, fw_versions, FW_VER_COUNT, |
| 323 | vss_versions, VSS_VER_COUNT, |
Alex Ng | 1274a69 | 2017-01-28 12:37:18 -0700 | [diff] [blame] | 324 | NULL, &vss_srv_version)) { |
| 325 | |
| 326 | pr_info("VSS IC version %d.%d\n", |
| 327 | vss_srv_version >> 16, |
| 328 | vss_srv_version & 0xFFFF); |
| 329 | } |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 330 | } else { |
| 331 | vss_msg = (struct hv_vss_msg *)&recv_buffer[ |
| 332 | sizeof(struct vmbuspipe_hdr) + |
| 333 | sizeof(struct icmsg_hdr)]; |
| 334 | |
| 335 | /* |
| 336 | * Stash away this global state for completing the |
| 337 | * transaction; note transactions are serialized. |
| 338 | */ |
| 339 | |
| 340 | vss_transaction.recv_len = recvlen; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 341 | vss_transaction.recv_req_id = requestid; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 342 | vss_transaction.msg = (struct hv_vss_msg *)vss_msg; |
| 343 | |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 344 | schedule_work(&vss_handle_request_work); |
| 345 | return; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION |
| 349 | | ICMSGHDRFLAG_RESPONSE; |
| 350 | |
| 351 | vmbus_sendpacket(channel, recv_buffer, |
| 352 | recvlen, requestid, |
| 353 | VM_PKT_DATA_INBAND, 0); |
| 354 | } |
| 355 | |
| 356 | } |
| 357 | |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 358 | static void vss_on_reset(void) |
| 359 | { |
| 360 | if (cancel_delayed_work_sync(&vss_timeout_work)) |
| 361 | vss_respond_to_host(HV_E_FAIL); |
| 362 | vss_transaction.state = HVUTIL_DEVICE_INIT; |
| 363 | } |
| 364 | |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 365 | int |
| 366 | hv_vss_init(struct hv_util_service *srv) |
| 367 | { |
Olaf Hering | ed9ba60 | 2015-12-14 16:01:42 -0800 | [diff] [blame] | 368 | if (vmbus_proto_version < VERSION_WIN8_1) { |
| 369 | pr_warn("Integration service 'Backup (volume snapshot)'" |
| 370 | " not supported on this host version.\n"); |
| 371 | return -ENOTSUPP; |
| 372 | } |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 373 | recv_buffer = srv->recv_buffer; |
K. Y. Srinivasan | b9830d1 | 2016-02-26 15:13:19 -0800 | [diff] [blame] | 374 | vss_transaction.recv_channel = srv->channel; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 375 | |
| 376 | /* |
| 377 | * When this driver loads, the user level daemon that |
| 378 | * processes the host requests may not yet be running. |
| 379 | * Defer processing channel callbacks until the daemon |
| 380 | * has registered. |
| 381 | */ |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 382 | vss_transaction.state = HVUTIL_DEVICE_INIT; |
| 383 | |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 384 | hvt = hvutil_transport_init(vss_devname, CN_VSS_IDX, CN_VSS_VAL, |
| 385 | vss_on_msg, vss_on_reset); |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 386 | if (!hvt) { |
| 387 | pr_warn("VSS: Failed to initialize transport\n"); |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 388 | return -EFAULT; |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 389 | } |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 390 | |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 391 | return 0; |
| 392 | } |
| 393 | |
| 394 | void hv_vss_deinit(void) |
| 395 | { |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 396 | vss_transaction.state = HVUTIL_DEVICE_DYING; |
Vitaly Kuznetsov | 6491420 | 2014-11-06 18:21:24 +0100 | [diff] [blame] | 397 | cancel_delayed_work_sync(&vss_timeout_work); |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 398 | cancel_work_sync(&vss_handle_request_work); |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 399 | hvutil_transport_destroy(hvt); |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 400 | } |