Thomas Gleixner | 43aa313 | 2019-05-29 07:17:54 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 2 | /* |
| 3 | * An implementation of host initiated guest snapshot. |
| 4 | * |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 5 | * Copyright (C) 2013, Microsoft, Inc. |
| 6 | * Author : K. Y. Srinivasan <kys@microsoft.com> |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 7 | */ |
| 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 9 | |
| 10 | #include <linux/net.h> |
| 11 | #include <linux/nls.h> |
| 12 | #include <linux/connector.h> |
| 13 | #include <linux/workqueue.h> |
| 14 | #include <linux/hyperv.h> |
Himadri Pandya | b14d749 | 2019-07-25 05:03:14 +0000 | [diff] [blame] | 15 | #include <asm/hyperv-tlfs.h> |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 16 | |
Vitaly Kuznetsov | 3647a83 | 2015-04-11 18:07:39 -0700 | [diff] [blame] | 17 | #include "hyperv_vmbus.h" |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 18 | #include "hv_utils_transport.h" |
Vitaly Kuznetsov | 3647a83 | 2015-04-11 18:07:39 -0700 | [diff] [blame] | 19 | |
K. Y. Srinivasan | 6741335 | 2013-07-02 10:31:30 -0700 | [diff] [blame] | 20 | #define VSS_MAJOR 5 |
| 21 | #define VSS_MINOR 0 |
K. Y. Srinivasan | 3a49160 | 2013-09-06 11:49:56 -0700 | [diff] [blame] | 22 | #define VSS_VERSION (VSS_MAJOR << 16 | VSS_MINOR) |
K. Y. Srinivasan | 6741335 | 2013-07-02 10:31:30 -0700 | [diff] [blame] | 23 | |
Alex Ng | a165645 | 2017-01-28 12:37:17 -0700 | [diff] [blame] | 24 | #define VSS_VER_COUNT 1 |
| 25 | static const int vss_versions[] = { |
| 26 | VSS_VERSION |
| 27 | }; |
| 28 | |
| 29 | #define FW_VER_COUNT 1 |
| 30 | static const int fw_versions[] = { |
| 31 | UTIL_FW_VERSION |
| 32 | }; |
| 33 | |
Alex Ng | b357fd3 | 2016-11-06 13:14:11 -0800 | [diff] [blame] | 34 | /* |
| 35 | * Timeout values are based on expecations from host |
| 36 | */ |
| 37 | #define VSS_FREEZE_TIMEOUT (15 * 60) |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 38 | |
| 39 | /* |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 40 | * 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. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 46 | * |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 47 | * 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. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 51 | */ |
| 52 | |
| 53 | static struct { |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 54 | int state; /* hvutil_device_state */ |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 55 | 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 | |
| 62 | static void vss_respond_to_host(int error); |
| 63 | |
Vitaly Kuznetsov | cd8dc05 | 2015-04-11 18:07:57 -0700 | [diff] [blame] | 64 | /* |
| 65 | * This state maintains the version number registered by the daemon. |
| 66 | */ |
| 67 | static int dm_reg_value; |
| 68 | |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 69 | static const char vss_devname[] = "vmbus/hv_vss"; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 70 | static __u8 *recv_buffer; |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 71 | static struct hvutil_transport *hvt; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 72 | |
Vitaly Kuznetsov | 6491420 | 2014-11-06 18:21:24 +0100 | [diff] [blame] | 73 | static void vss_timeout_func(struct work_struct *dummy); |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 74 | static void vss_handle_request(struct work_struct *dummy); |
Vitaly Kuznetsov | 6491420 | 2014-11-06 18:21:24 +0100 | [diff] [blame] | 75 | |
| 76 | static DECLARE_DELAYED_WORK(vss_timeout_work, vss_timeout_func); |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 77 | static DECLARE_WORK(vss_handle_request_work, vss_handle_request); |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 78 | |
Olaf Hering | 3cace4a | 2015-12-14 16:01:33 -0800 | [diff] [blame] | 79 | static void vss_poll_wrapper(void *channel) |
| 80 | { |
| 81 | /* Transaction is finished, reset the state here to avoid races. */ |
| 82 | vss_transaction.state = HVUTIL_READY; |
Andrea Parri (Microsoft) | 238d2ed8 | 2020-04-06 02:15:08 +0200 | [diff] [blame] | 83 | tasklet_schedule(&((struct vmbus_channel *)channel)->callback_event); |
Olaf Hering | 3cace4a | 2015-12-14 16:01:33 -0800 | [diff] [blame] | 84 | } |
| 85 | |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 86 | /* |
| 87 | * Callback when data is received from user mode. |
| 88 | */ |
| 89 | |
Vitaly Kuznetsov | 6491420 | 2014-11-06 18:21:24 +0100 | [diff] [blame] | 90 | static 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 Kuznetsov | 38c06c2 | 2015-04-11 18:07:43 -0700 | [diff] [blame] | 97 | |
Olaf Hering | 3cace4a | 2015-12-14 16:01:33 -0800 | [diff] [blame] | 98 | hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper); |
Vitaly Kuznetsov | 6491420 | 2014-11-06 18:21:24 +0100 | [diff] [blame] | 99 | } |
| 100 | |
Vitaly Kuznetsov | e0fa3e5 | 2016-06-09 17:08:57 -0700 | [diff] [blame] | 101 | static 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 Kuznetsov | cd8dc05 | 2015-04-11 18:07:57 -0700 | [diff] [blame] | 107 | static 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 Kuznetsov | e0fa3e5 | 2016-06-09 17:08:57 -0700 | [diff] [blame] | 117 | /* 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 Kuznetsov | cd8dc05 | 2015-04-11 18:07:57 -0700 | [diff] [blame] | 120 | return -EFAULT; |
| 121 | dm_reg_value = VSS_OP_REGISTER1; |
| 122 | break; |
| 123 | default: |
| 124 | return -EINVAL; |
| 125 | } |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 126 | pr_info("VSS: userspace daemon ver. %d connected\n", dm_reg_value); |
Vitaly Kuznetsov | cd8dc05 | 2015-04-11 18:07:57 -0700 | [diff] [blame] | 127 | return 0; |
| 128 | } |
| 129 | |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 130 | static int vss_on_msg(void *msg, int len) |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 131 | { |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 132 | struct hv_vss_msg *vss_msg = (struct hv_vss_msg *)msg; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 133 | |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 134 | if (len != sizeof(*vss_msg)) { |
| 135 | pr_debug("VSS: Message size does not match length\n"); |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 136 | return -EINVAL; |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 137 | } |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 138 | |
Vitaly Kuznetsov | cd8dc05 | 2015-04-11 18:07:57 -0700 | [diff] [blame] | 139 | 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 Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 145 | if (vss_transaction.state > HVUTIL_READY) { |
| 146 | pr_debug("VSS: Got unexpected registration request\n"); |
Vitaly Kuznetsov | cd8dc05 | 2015-04-11 18:07:57 -0700 | [diff] [blame] | 147 | return -EINVAL; |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 148 | } |
| 149 | |
Vitaly Kuznetsov | cd8dc05 | 2015-04-11 18:07:57 -0700 | [diff] [blame] | 150 | return vss_handle_handshake(vss_msg); |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 151 | } else if (vss_transaction.state == HVUTIL_USERSPACE_REQ) { |
| 152 | vss_transaction.state = HVUTIL_USERSPACE_RECV; |
Alex Ng | db886e4 | 2016-09-02 05:58:25 -0700 | [diff] [blame] | 153 | |
| 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 Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 158 | if (cancel_delayed_work_sync(&vss_timeout_work)) { |
| 159 | vss_respond_to_host(vss_msg->error); |
| 160 | /* Transaction is finished, reset the state. */ |
Olaf Hering | 3cace4a | 2015-12-14 16:01:33 -0800 | [diff] [blame] | 161 | hv_poll_channel(vss_transaction.recv_channel, |
| 162 | vss_poll_wrapper); |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 163 | } |
| 164 | } else { |
| 165 | /* This is a spurious call! */ |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 166 | pr_debug("VSS: Transaction not active\n"); |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 167 | return -EINVAL; |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 168 | } |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 169 | return 0; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 170 | } |
| 171 | |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 172 | static void vss_send_op(void) |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 173 | { |
| 174 | int op = vss_transaction.msg->vss_hdr.operation; |
Vitaly Kuznetsov | 8d9560e | 2014-11-06 18:21:25 +0100 | [diff] [blame] | 175 | int rc; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 176 | struct hv_vss_msg *vss_msg; |
| 177 | |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 178 | /* The transaction state is wrong. */ |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 179 | if (vss_transaction.state != HVUTIL_HOSTMSG_RECEIVED) { |
| 180 | pr_debug("VSS: Unexpected attempt to send to daemon\n"); |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 181 | return; |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 182 | } |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 183 | |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 184 | vss_msg = kzalloc(sizeof(*vss_msg), GFP_KERNEL); |
| 185 | if (!vss_msg) |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 186 | return; |
| 187 | |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 188 | vss_msg->vss_hdr.operation = op; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 189 | |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 190 | vss_transaction.state = HVUTIL_USERSPACE_REQ; |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 191 | |
Alex Ng | b357fd3 | 2016-11-06 13:14:11 -0800 | [diff] [blame] | 192 | schedule_delayed_work(&vss_timeout_work, op == VSS_OP_FREEZE ? |
| 193 | VSS_FREEZE_TIMEOUT * HZ : HV_UTIL_TIMEOUT * HZ); |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 194 | |
Vitaly Kuznetsov | e0fa3e5 | 2016-06-09 17:08:57 -0700 | [diff] [blame] | 195 | rc = hvutil_transport_send(hvt, vss_msg, sizeof(*vss_msg), NULL); |
Vitaly Kuznetsov | 8d9560e | 2014-11-06 18:21:25 +0100 | [diff] [blame] | 196 | if (rc) { |
| 197 | pr_warn("VSS: failed to communicate to the daemon: %d\n", rc); |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 198 | if (cancel_delayed_work_sync(&vss_timeout_work)) { |
Vitaly Kuznetsov | 8d9560e | 2014-11-06 18:21:25 +0100 | [diff] [blame] | 199 | vss_respond_to_host(HV_E_FAIL); |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 200 | vss_transaction.state = HVUTIL_READY; |
| 201 | } |
Vitaly Kuznetsov | 8d9560e | 2014-11-06 18:21:25 +0100 | [diff] [blame] | 202 | } |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 203 | |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 204 | kfree(vss_msg); |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 205 | } |
| 206 | |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 207 | static void vss_handle_request(struct work_struct *dummy) |
| 208 | { |
| 209 | switch (vss_transaction.msg->vss_hdr.operation) { |
| 210 | /* |
| 211 | * Initiate a "freeze/thaw" operation in the guest. |
| 212 | * We respond to the host once the operation is complete. |
| 213 | * |
| 214 | * We send the message to the user space daemon and the operation is |
| 215 | * performed in the daemon. |
| 216 | */ |
| 217 | case VSS_OP_THAW: |
| 218 | case VSS_OP_FREEZE: |
Alex Ng | db886e4 | 2016-09-02 05:58:25 -0700 | [diff] [blame] | 219 | case VSS_OP_HOT_BACKUP: |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 220 | if (vss_transaction.state < HVUTIL_READY) { |
| 221 | /* Userspace is not registered yet */ |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 222 | pr_debug("VSS: Not ready for request.\n"); |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 223 | vss_respond_to_host(HV_E_FAIL); |
| 224 | return; |
| 225 | } |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 226 | |
| 227 | pr_debug("VSS: Received request for op code: %d\n", |
| 228 | vss_transaction.msg->vss_hdr.operation); |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 229 | vss_transaction.state = HVUTIL_HOSTMSG_RECEIVED; |
| 230 | vss_send_op(); |
| 231 | return; |
Alex Ng | 497af84 | 2016-09-02 05:58:24 -0700 | [diff] [blame] | 232 | case VSS_OP_GET_DM_INFO: |
| 233 | vss_transaction.msg->dm_info.flags = 0; |
| 234 | break; |
| 235 | default: |
| 236 | break; |
| 237 | } |
| 238 | |
| 239 | vss_respond_to_host(0); |
| 240 | hv_poll_channel(vss_transaction.recv_channel, vss_poll_wrapper); |
| 241 | } |
| 242 | |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 243 | /* |
| 244 | * Send a response back to the host. |
| 245 | */ |
| 246 | |
| 247 | static void |
| 248 | vss_respond_to_host(int error) |
| 249 | { |
| 250 | struct icmsg_hdr *icmsghdrp; |
| 251 | u32 buf_len; |
| 252 | struct vmbus_channel *channel; |
| 253 | u64 req_id; |
| 254 | |
| 255 | /* |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 256 | * Copy the global state for completing the transaction. Note that |
| 257 | * only one transaction can be active at a time. |
| 258 | */ |
| 259 | |
| 260 | buf_len = vss_transaction.recv_len; |
| 261 | channel = vss_transaction.recv_channel; |
| 262 | req_id = vss_transaction.recv_req_id; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 263 | |
| 264 | icmsghdrp = (struct icmsg_hdr *) |
| 265 | &recv_buffer[sizeof(struct vmbuspipe_hdr)]; |
| 266 | |
| 267 | if (channel->onchannel_callback == NULL) |
| 268 | /* |
| 269 | * We have raced with util driver being unloaded; |
| 270 | * silently return. |
| 271 | */ |
| 272 | return; |
| 273 | |
| 274 | icmsghdrp->status = error; |
| 275 | |
| 276 | icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION | ICMSGHDRFLAG_RESPONSE; |
| 277 | |
| 278 | vmbus_sendpacket(channel, recv_buffer, buf_len, req_id, |
| 279 | VM_PKT_DATA_INBAND, 0); |
| 280 | |
| 281 | } |
| 282 | |
| 283 | /* |
| 284 | * This callback is invoked when we get a VSS message from the host. |
| 285 | * The host ensures that only one VSS transaction can be active at a time. |
| 286 | */ |
| 287 | |
| 288 | void hv_vss_onchannelcallback(void *context) |
| 289 | { |
| 290 | struct vmbus_channel *channel = context; |
| 291 | u32 recvlen; |
| 292 | u64 requestid; |
| 293 | struct hv_vss_msg *vss_msg; |
Alex Ng | 1274a69 | 2017-01-28 12:37:18 -0700 | [diff] [blame] | 294 | int vss_srv_version; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 295 | |
| 296 | struct icmsg_hdr *icmsghdrp; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 297 | |
Olaf Hering | 3cace4a | 2015-12-14 16:01:33 -0800 | [diff] [blame] | 298 | if (vss_transaction.state > HVUTIL_READY) |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 299 | return; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 300 | |
Andres Beltran | 06caa77 | 2020-11-09 11:07:04 +0100 | [diff] [blame] | 301 | if (vmbus_recvpacket(channel, recv_buffer, HV_HYP_PAGE_SIZE * 2, &recvlen, &requestid)) { |
| 302 | pr_err_ratelimited("VSS request received. Could not read into recv buf\n"); |
| 303 | return; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 304 | } |
| 305 | |
Andres Beltran | 06caa77 | 2020-11-09 11:07:04 +0100 | [diff] [blame] | 306 | if (!recvlen) |
| 307 | return; |
| 308 | |
| 309 | /* Ensure recvlen is big enough to read header data */ |
| 310 | if (recvlen < ICMSG_HDR) { |
| 311 | pr_err_ratelimited("VSS request received. Packet length too small: %d\n", |
| 312 | recvlen); |
| 313 | return; |
| 314 | } |
| 315 | |
| 316 | icmsghdrp = (struct icmsg_hdr *)&recv_buffer[sizeof(struct vmbuspipe_hdr)]; |
| 317 | |
| 318 | if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) { |
| 319 | if (vmbus_prep_negotiate_resp(icmsghdrp, |
| 320 | recv_buffer, recvlen, |
| 321 | fw_versions, FW_VER_COUNT, |
| 322 | vss_versions, VSS_VER_COUNT, |
| 323 | NULL, &vss_srv_version)) { |
| 324 | |
| 325 | pr_info("VSS IC version %d.%d\n", |
| 326 | vss_srv_version >> 16, |
| 327 | vss_srv_version & 0xFFFF); |
| 328 | } |
| 329 | } else if (icmsghdrp->icmsgtype == ICMSGTYPE_VSS) { |
| 330 | /* Ensure recvlen is big enough to contain hv_vss_msg */ |
| 331 | if (recvlen < ICMSG_HDR + sizeof(struct hv_vss_msg)) { |
| 332 | pr_err_ratelimited("Invalid VSS msg. Packet length too small: %u\n", |
| 333 | recvlen); |
| 334 | return; |
| 335 | } |
| 336 | vss_msg = (struct hv_vss_msg *)&recv_buffer[ICMSG_HDR]; |
| 337 | |
| 338 | /* |
| 339 | * Stash away this global state for completing the |
| 340 | * transaction; note transactions are serialized. |
| 341 | */ |
| 342 | |
| 343 | vss_transaction.recv_len = recvlen; |
| 344 | vss_transaction.recv_req_id = requestid; |
| 345 | vss_transaction.msg = (struct hv_vss_msg *)vss_msg; |
| 346 | |
| 347 | schedule_work(&vss_handle_request_work); |
| 348 | return; |
| 349 | } else { |
| 350 | pr_err_ratelimited("VSS request received. Invalid msg type: %d\n", |
| 351 | icmsghdrp->icmsgtype); |
| 352 | return; |
| 353 | } |
| 354 | |
| 355 | icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION | |
| 356 | ICMSGHDRFLAG_RESPONSE; |
| 357 | vmbus_sendpacket(channel, recv_buffer, recvlen, requestid, |
| 358 | VM_PKT_DATA_INBAND, 0); |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 359 | } |
| 360 | |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 361 | static void vss_on_reset(void) |
| 362 | { |
| 363 | if (cancel_delayed_work_sync(&vss_timeout_work)) |
| 364 | vss_respond_to_host(HV_E_FAIL); |
| 365 | vss_transaction.state = HVUTIL_DEVICE_INIT; |
| 366 | } |
| 367 | |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 368 | int |
| 369 | hv_vss_init(struct hv_util_service *srv) |
| 370 | { |
Olaf Hering | ed9ba60 | 2015-12-14 16:01:42 -0800 | [diff] [blame] | 371 | if (vmbus_proto_version < VERSION_WIN8_1) { |
| 372 | pr_warn("Integration service 'Backup (volume snapshot)'" |
| 373 | " not supported on this host version.\n"); |
| 374 | return -ENOTSUPP; |
| 375 | } |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 376 | recv_buffer = srv->recv_buffer; |
K. Y. Srinivasan | b9830d1 | 2016-02-26 15:13:19 -0800 | [diff] [blame] | 377 | vss_transaction.recv_channel = srv->channel; |
Vitaly Kuznetsov | 9d68cd9 | 2021-08-25 15:38:57 +0200 | [diff] [blame] | 378 | vss_transaction.recv_channel->max_pkt_size = HV_HYP_PAGE_SIZE * 2; |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 379 | |
| 380 | /* |
| 381 | * When this driver loads, the user level daemon that |
| 382 | * processes the host requests may not yet be running. |
| 383 | * Defer processing channel callbacks until the daemon |
| 384 | * has registered. |
| 385 | */ |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 386 | vss_transaction.state = HVUTIL_DEVICE_INIT; |
| 387 | |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 388 | hvt = hvutil_transport_init(vss_devname, CN_VSS_IDX, CN_VSS_VAL, |
| 389 | vss_on_msg, vss_on_reset); |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 390 | if (!hvt) { |
| 391 | pr_warn("VSS: Failed to initialize transport\n"); |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 392 | return -EFAULT; |
Alex Ng | 23d2cc0 | 2016-11-06 13:14:10 -0800 | [diff] [blame] | 393 | } |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 394 | |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 395 | return 0; |
| 396 | } |
| 397 | |
Dexuan Cui | 54e19d3 | 2020-01-25 21:49:44 -0800 | [diff] [blame] | 398 | static void hv_vss_cancel_work(void) |
| 399 | { |
| 400 | cancel_delayed_work_sync(&vss_timeout_work); |
| 401 | cancel_work_sync(&vss_handle_request_work); |
| 402 | } |
| 403 | |
| 404 | int hv_vss_pre_suspend(void) |
| 405 | { |
| 406 | struct vmbus_channel *channel = vss_transaction.recv_channel; |
| 407 | struct hv_vss_msg *vss_msg; |
| 408 | |
| 409 | /* |
| 410 | * Fake a THAW message for the user space daemon in case the daemon |
| 411 | * has frozen the file systems. It doesn't matter if there is already |
| 412 | * a message pending to be delivered to the user space since we force |
| 413 | * vss_transaction.state to be HVUTIL_READY, so the user space daemon's |
| 414 | * write() will fail with EINVAL (see vss_on_msg()), and the daemon |
| 415 | * will reset the device by closing and re-opening it. |
| 416 | */ |
| 417 | vss_msg = kzalloc(sizeof(*vss_msg), GFP_KERNEL); |
| 418 | if (!vss_msg) |
| 419 | return -ENOMEM; |
| 420 | |
| 421 | tasklet_disable(&channel->callback_event); |
| 422 | |
| 423 | vss_msg->vss_hdr.operation = VSS_OP_THAW; |
| 424 | |
| 425 | /* Cancel any possible pending work. */ |
| 426 | hv_vss_cancel_work(); |
| 427 | |
| 428 | /* We don't care about the return value. */ |
| 429 | hvutil_transport_send(hvt, vss_msg, sizeof(*vss_msg), NULL); |
| 430 | |
| 431 | kfree(vss_msg); |
| 432 | |
| 433 | vss_transaction.state = HVUTIL_READY; |
| 434 | |
| 435 | /* tasklet_enable() will be called in hv_vss_pre_resume(). */ |
| 436 | return 0; |
| 437 | } |
| 438 | |
| 439 | int hv_vss_pre_resume(void) |
| 440 | { |
| 441 | struct vmbus_channel *channel = vss_transaction.recv_channel; |
| 442 | |
| 443 | tasklet_enable(&channel->callback_event); |
| 444 | |
| 445 | return 0; |
| 446 | } |
| 447 | |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 448 | void hv_vss_deinit(void) |
| 449 | { |
Vitaly Kuznetsov | 086a6f6 | 2015-04-11 18:07:48 -0700 | [diff] [blame] | 450 | vss_transaction.state = HVUTIL_DEVICE_DYING; |
Dexuan Cui | 54e19d3 | 2020-01-25 21:49:44 -0800 | [diff] [blame] | 451 | |
| 452 | hv_vss_cancel_work(); |
| 453 | |
Vitaly Kuznetsov | 6472f80 | 2015-04-11 18:07:52 -0700 | [diff] [blame] | 454 | hvutil_transport_destroy(hvt); |
K. Y. Srinivasan | 96dd86f | 2013-03-15 12:30:06 -0700 | [diff] [blame] | 455 | } |