blob: baa12088ef24fa04a75c67de5c889db8ad5c7751 [file] [log] [blame]
Ky Srinivasan245ba562010-12-16 18:54:16 -07001/*
2 * An implementation of key value pair (KVP) functionality for Linux.
3 *
4 *
5 * Copyright (C) 2010, Novell, Inc.
6 * Author : K. Y. Srinivasan <ksrinivasan@novell.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 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 */
Hank Janssenaf7a5b62011-03-29 13:58:49 -070023#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Ky Srinivasan245ba562010-12-16 18:54:16 -070024
25#include <linux/net.h>
26#include <linux/nls.h>
27#include <linux/connector.h>
28#include <linux/workqueue.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070029#include <linux/hyperv.h>
Ky Srinivasan245ba562010-12-16 18:54:16 -070030
Vitaly Kuznetsov3647a832015-04-11 18:07:39 -070031#include "hyperv_vmbus.h"
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -070032#include "hv_utils_transport.h"
Ky Srinivasan245ba562010-12-16 18:54:16 -070033
K. Y. Srinivasan67413352013-07-02 10:31:30 -070034/*
35 * Pre win8 version numbers used in ws2008 and ws 2008 r2 (win7)
36 */
K. Y. Srinivasan3a491602013-09-06 11:49:56 -070037#define WS2008_SRV_MAJOR 1
38#define WS2008_SRV_MINOR 0
39#define WS2008_SRV_VERSION (WS2008_SRV_MAJOR << 16 | WS2008_SRV_MINOR)
40
K. Y. Srinivasan67413352013-07-02 10:31:30 -070041#define WIN7_SRV_MAJOR 3
42#define WIN7_SRV_MINOR 0
K. Y. Srinivasan3a491602013-09-06 11:49:56 -070043#define WIN7_SRV_VERSION (WIN7_SRV_MAJOR << 16 | WIN7_SRV_MINOR)
K. Y. Srinivasan67413352013-07-02 10:31:30 -070044
45#define WIN8_SRV_MAJOR 4
46#define WIN8_SRV_MINOR 0
K. Y. Srinivasan3a491602013-09-06 11:49:56 -070047#define WIN8_SRV_VERSION (WIN8_SRV_MAJOR << 16 | WIN8_SRV_MINOR)
Ky Srinivasan245ba562010-12-16 18:54:16 -070048
49/*
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -070050 * Global state maintained for transaction that is being processed. For a class
51 * of integration services, including the "KVP 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.
Ky Srinivasan245ba562010-12-16 18:54:16 -070056 *
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -070057 * 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.
Ky Srinivasan245ba562010-12-16 18:54:16 -070061 */
62
63static struct {
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -070064 int state; /* hvutil_device_state */
Ky Srinivasan245ba562010-12-16 18:54:16 -070065 int recv_len; /* number of bytes received. */
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -070066 struct hv_kvp_msg *kvp_msg; /* current message */
Ky Srinivasan245ba562010-12-16 18:54:16 -070067 struct vmbus_channel *recv_channel; /* chn we got the request */
68 u64 recv_req_id; /* request ID. */
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -070069 void *kvp_context; /* for the channel callback */
Ky Srinivasan245ba562010-12-16 18:54:16 -070070} kvp_transaction;
71
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -070072/*
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -070073 * This state maintains the version number registered by the daemon.
74 */
75static int dm_reg_value;
76
K. Y. Srinivasane2bb6532011-10-09 19:42:28 -070077static void kvp_send_key(struct work_struct *dummy);
Ky Srinivasan245ba562010-12-16 18:54:16 -070078
K. Y. Srinivasan76e5f812011-10-04 14:00:02 -070079
K. Y. Srinivasan03db7722012-08-16 18:32:12 -070080static void kvp_respond_to_host(struct hv_kvp_msg *msg, int error);
Vitaly Kuznetsov68c8b392015-04-11 18:07:44 -070081static void kvp_timeout_func(struct work_struct *dummy);
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -070082static void kvp_register(int);
Ky Srinivasan245ba562010-12-16 18:54:16 -070083
Vitaly Kuznetsov68c8b392015-04-11 18:07:44 -070084static DECLARE_DELAYED_WORK(kvp_timeout_work, kvp_timeout_func);
K. Y. Srinivasane2bb6532011-10-09 19:42:28 -070085static DECLARE_WORK(kvp_sendkey_work, kvp_send_key);
Ky Srinivasan245ba562010-12-16 18:54:16 -070086
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -070087static const char kvp_devname[] = "vmbus/hv_kvp";
Ky Srinivasan245ba562010-12-16 18:54:16 -070088static u8 *recv_buffer;
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -070089static struct hvutil_transport *hvt;
Ky Srinivasan245ba562010-12-16 18:54:16 -070090/*
91 * Register the kernel component with the user-level daemon.
92 * As part of this registration, pass the LIC version number.
Olaf Heringcfc25992013-05-29 11:29:07 +020093 * This number has no meaning, it satisfies the registration protocol.
Ky Srinivasan245ba562010-12-16 18:54:16 -070094 */
Olaf Heringcfc25992013-05-29 11:29:07 +020095#define HV_DRV_VERSION "3.1"
Ky Srinivasan245ba562010-12-16 18:54:16 -070096
97static void
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -070098kvp_register(int reg_value)
Ky Srinivasan245ba562010-12-16 18:54:16 -070099{
100
K. Y. Srinivasan2640335432012-02-02 16:56:50 -0800101 struct hv_kvp_msg *kvp_msg;
102 char *version;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700103
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700104 kvp_msg = kzalloc(sizeof(*kvp_msg), GFP_KERNEL);
Ky Srinivasan245ba562010-12-16 18:54:16 -0700105
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700106 if (kvp_msg) {
K. Y. Srinivasane485ceac2012-03-10 15:32:08 -0800107 version = kvp_msg->body.kvp_register.version;
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700108 kvp_msg->kvp_hdr.operation = reg_value;
K. Y. Srinivasan2640335432012-02-02 16:56:50 -0800109 strcpy(version, HV_DRV_VERSION);
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700110
111 hvutil_transport_send(hvt, kvp_msg, sizeof(*kvp_msg));
112 kfree(kvp_msg);
Ky Srinivasan245ba562010-12-16 18:54:16 -0700113 }
114}
Vitaly Kuznetsov68c8b392015-04-11 18:07:44 -0700115
116static void kvp_timeout_func(struct work_struct *dummy)
Ky Srinivasan245ba562010-12-16 18:54:16 -0700117{
118 /*
119 * If the timer fires, the user-mode component has not responded;
120 * process the pending transaction.
121 */
K. Y. Srinivasan03db7722012-08-16 18:32:12 -0700122 kvp_respond_to_host(NULL, HV_E_FAIL);
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -0700123
124 /* Transaction is finished, reset the state. */
125 if (kvp_transaction.state > HVUTIL_READY)
126 kvp_transaction.state = HVUTIL_READY;
127
128 hv_poll_channel(kvp_transaction.kvp_context,
129 hv_kvp_onchannelcallback);
Ky Srinivasan245ba562010-12-16 18:54:16 -0700130}
131
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700132static int kvp_handle_handshake(struct hv_kvp_msg *msg)
133{
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700134 switch (msg->kvp_hdr.operation) {
135 case KVP_OP_REGISTER:
136 dm_reg_value = KVP_OP_REGISTER;
137 pr_info("KVP: IP injection functionality not available\n");
138 pr_info("KVP: Upgrade the KVP daemon\n");
139 break;
140 case KVP_OP_REGISTER1:
141 dm_reg_value = KVP_OP_REGISTER1;
142 break;
143 default:
144 pr_info("KVP: incompatible daemon\n");
145 pr_info("KVP: KVP version: %d, Daemon version: %d\n",
146 KVP_OP_REGISTER1, msg->kvp_hdr.operation);
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700147 return -EINVAL;
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700148 }
149
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700150 /*
151 * We have a compatible daemon; complete the handshake.
152 */
153 pr_info("KVP: user-mode registering done.\n");
154 kvp_register(dm_reg_value);
155 kvp_transaction.state = HVUTIL_READY;
156
157 return 0;
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700158}
159
160
Ky Srinivasan245ba562010-12-16 18:54:16 -0700161/*
162 * Callback when data is received from user mode.
163 */
164
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700165static int kvp_on_msg(void *msg, int len)
Ky Srinivasan245ba562010-12-16 18:54:16 -0700166{
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700167 struct hv_kvp_msg *message = (struct hv_kvp_msg *)msg;
K. Y. Srinivasan2640335432012-02-02 16:56:50 -0800168 struct hv_kvp_msg_enumerate *data;
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700169 int error = 0;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700170
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700171 if (len < sizeof(*message))
172 return -EINVAL;
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700173
174 /*
175 * If we are negotiating the version information
176 * with the daemon; handle that first.
177 */
178
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -0700179 if (kvp_transaction.state < HVUTIL_READY) {
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700180 return kvp_handle_handshake(message);
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700181 }
182
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -0700183 /* We didn't send anything to userspace so the reply is spurious */
184 if (kvp_transaction.state < HVUTIL_USERSPACE_REQ)
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700185 return -EINVAL;
186
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -0700187 kvp_transaction.state = HVUTIL_USERSPACE_RECV;
188
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700189 /*
190 * Based on the version of the daemon, we propagate errors from the
191 * daemon differently.
192 */
193
194 data = &message->body.kvp_enum_data;
195
196 switch (dm_reg_value) {
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700197 case KVP_OP_REGISTER:
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700198 /*
199 * Null string is used to pass back error condition.
200 */
201 if (data->data.key[0] == 0)
202 error = HV_S_CONT;
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700203 break;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700204
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700205 case KVP_OP_REGISTER1:
Ky Srinivasan245ba562010-12-16 18:54:16 -0700206 /*
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700207 * We use the message header information from
208 * the user level daemon to transmit errors.
Ky Srinivasan245ba562010-12-16 18:54:16 -0700209 */
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700210 error = message->error;
211 break;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700212 }
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700213
214 /*
215 * Complete the transaction by forwarding the key value
216 * to the host. But first, cancel the timeout.
217 */
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -0700218 if (cancel_delayed_work_sync(&kvp_timeout_work)) {
K. Y. Srinivasan03db7722012-08-16 18:32:12 -0700219 kvp_respond_to_host(message, error);
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -0700220 kvp_transaction.state = HVUTIL_READY;
221 hv_poll_channel(kvp_transaction.kvp_context,
222 hv_kvp_onchannelcallback);
223 }
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700224
225 return 0;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700226}
227
K. Y. Srinivasan03db7722012-08-16 18:32:12 -0700228
229static int process_ob_ipinfo(void *in_msg, void *out_msg, int op)
230{
231 struct hv_kvp_msg *in = in_msg;
232 struct hv_kvp_ip_msg *out = out_msg;
233 int len;
234
235 switch (op) {
236 case KVP_OP_GET_IP_INFO:
237 /*
238 * Transform all parameters into utf16 encoding.
239 */
240 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.ip_addr,
241 strlen((char *)in->body.kvp_ip_val.ip_addr),
242 UTF16_HOST_ENDIAN,
243 (wchar_t *)out->kvp_ip_val.ip_addr,
244 MAX_IP_ADDR_SIZE);
245 if (len < 0)
246 return len;
247
248 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.sub_net,
249 strlen((char *)in->body.kvp_ip_val.sub_net),
250 UTF16_HOST_ENDIAN,
251 (wchar_t *)out->kvp_ip_val.sub_net,
252 MAX_IP_ADDR_SIZE);
253 if (len < 0)
254 return len;
255
256 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.gate_way,
257 strlen((char *)in->body.kvp_ip_val.gate_way),
258 UTF16_HOST_ENDIAN,
259 (wchar_t *)out->kvp_ip_val.gate_way,
260 MAX_GATEWAY_SIZE);
261 if (len < 0)
262 return len;
263
264 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.dns_addr,
265 strlen((char *)in->body.kvp_ip_val.dns_addr),
266 UTF16_HOST_ENDIAN,
267 (wchar_t *)out->kvp_ip_val.dns_addr,
268 MAX_IP_ADDR_SIZE);
269 if (len < 0)
270 return len;
271
272 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.adapter_id,
273 strlen((char *)in->body.kvp_ip_val.adapter_id),
274 UTF16_HOST_ENDIAN,
275 (wchar_t *)out->kvp_ip_val.adapter_id,
276 MAX_IP_ADDR_SIZE);
277 if (len < 0)
278 return len;
279
280 out->kvp_ip_val.dhcp_enabled =
281 in->body.kvp_ip_val.dhcp_enabled;
K. Y. Srinivasana500e0e2012-09-04 17:54:13 -0700282 out->kvp_ip_val.addr_family =
283 in->body.kvp_ip_val.addr_family;
K. Y. Srinivasan03db7722012-08-16 18:32:12 -0700284 }
285
286 return 0;
287}
288
289static void process_ib_ipinfo(void *in_msg, void *out_msg, int op)
290{
291 struct hv_kvp_ip_msg *in = in_msg;
292 struct hv_kvp_msg *out = out_msg;
293
294 switch (op) {
295 case KVP_OP_SET_IP_INFO:
296 /*
297 * Transform all parameters into utf8 encoding.
298 */
299 utf16s_to_utf8s((wchar_t *)in->kvp_ip_val.ip_addr,
300 MAX_IP_ADDR_SIZE,
301 UTF16_LITTLE_ENDIAN,
302 (__u8 *)out->body.kvp_ip_val.ip_addr,
303 MAX_IP_ADDR_SIZE);
304
305 utf16s_to_utf8s((wchar_t *)in->kvp_ip_val.sub_net,
306 MAX_IP_ADDR_SIZE,
307 UTF16_LITTLE_ENDIAN,
308 (__u8 *)out->body.kvp_ip_val.sub_net,
309 MAX_IP_ADDR_SIZE);
310
311 utf16s_to_utf8s((wchar_t *)in->kvp_ip_val.gate_way,
312 MAX_GATEWAY_SIZE,
313 UTF16_LITTLE_ENDIAN,
314 (__u8 *)out->body.kvp_ip_val.gate_way,
315 MAX_GATEWAY_SIZE);
316
317 utf16s_to_utf8s((wchar_t *)in->kvp_ip_val.dns_addr,
318 MAX_IP_ADDR_SIZE,
319 UTF16_LITTLE_ENDIAN,
320 (__u8 *)out->body.kvp_ip_val.dns_addr,
321 MAX_IP_ADDR_SIZE);
322
323 out->body.kvp_ip_val.dhcp_enabled = in->kvp_ip_val.dhcp_enabled;
324
325 default:
326 utf16s_to_utf8s((wchar_t *)in->kvp_ip_val.adapter_id,
327 MAX_ADAPTER_ID_SIZE,
328 UTF16_LITTLE_ENDIAN,
329 (__u8 *)out->body.kvp_ip_val.adapter_id,
330 MAX_ADAPTER_ID_SIZE);
331
332 out->body.kvp_ip_val.addr_family = in->kvp_ip_val.addr_family;
333 }
334}
335
336
337
338
K. Y. Srinivasane2bb6532011-10-09 19:42:28 -0700339static void
340kvp_send_key(struct work_struct *dummy)
Ky Srinivasan245ba562010-12-16 18:54:16 -0700341{
K. Y. Srinivasan2640335432012-02-02 16:56:50 -0800342 struct hv_kvp_msg *message;
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700343 struct hv_kvp_msg *in_msg;
344 __u8 operation = kvp_transaction.kvp_msg->kvp_hdr.operation;
345 __u8 pool = kvp_transaction.kvp_msg->kvp_hdr.pool;
346 __u32 val32;
347 __u64 val64;
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100348 int rc;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700349
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -0700350 /* The transaction state is wrong. */
351 if (kvp_transaction.state != HVUTIL_HOSTMSG_RECEIVED)
352 return;
353
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700354 message = kzalloc(sizeof(*message), GFP_KERNEL);
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700355 message->kvp_hdr.operation = operation;
356 message->kvp_hdr.pool = pool;
357 in_msg = kvp_transaction.kvp_msg;
358
359 /*
360 * The key/value strings sent from the host are encoded in
361 * in utf16; convert it to utf8 strings.
362 * The host assures us that the utf16 strings will not exceed
363 * the max lengths specified. We will however, reserve room
364 * for the string terminating character - in the utf16s_utf8s()
365 * function we limit the size of the buffer where the converted
366 * string is placed to HV_KVP_EXCHANGE_MAX_*_SIZE -1 to gaurantee
367 * that the strings can be properly terminated!
368 */
369
370 switch (message->kvp_hdr.operation) {
K. Y. Srinivasan03db7722012-08-16 18:32:12 -0700371 case KVP_OP_SET_IP_INFO:
372 process_ib_ipinfo(in_msg, message, KVP_OP_SET_IP_INFO);
373 break;
374 case KVP_OP_GET_IP_INFO:
375 process_ib_ipinfo(in_msg, message, KVP_OP_GET_IP_INFO);
376 break;
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700377 case KVP_OP_SET:
378 switch (in_msg->body.kvp_set.data.value_type) {
379 case REG_SZ:
380 /*
381 * The value is a string - utf16 encoding.
382 */
383 message->body.kvp_set.data.value_size =
384 utf16s_to_utf8s(
385 (wchar_t *)in_msg->body.kvp_set.data.value,
386 in_msg->body.kvp_set.data.value_size,
387 UTF16_LITTLE_ENDIAN,
388 message->body.kvp_set.data.value,
389 HV_KVP_EXCHANGE_MAX_VALUE_SIZE - 1) + 1;
390 break;
391
392 case REG_U32:
393 /*
394 * The value is a 32 bit scalar.
395 * We save this as a utf8 string.
396 */
397 val32 = in_msg->body.kvp_set.data.value_u32;
398 message->body.kvp_set.data.value_size =
399 sprintf(message->body.kvp_set.data.value,
400 "%d", val32) + 1;
401 break;
402
403 case REG_U64:
404 /*
405 * The value is a 64 bit scalar.
406 * We save this as a utf8 string.
407 */
408 val64 = in_msg->body.kvp_set.data.value_u64;
409 message->body.kvp_set.data.value_size =
410 sprintf(message->body.kvp_set.data.value,
411 "%llu", val64) + 1;
412 break;
413
414 }
415 case KVP_OP_GET:
416 message->body.kvp_set.data.key_size =
417 utf16s_to_utf8s(
418 (wchar_t *)in_msg->body.kvp_set.data.key,
419 in_msg->body.kvp_set.data.key_size,
420 UTF16_LITTLE_ENDIAN,
421 message->body.kvp_set.data.key,
422 HV_KVP_EXCHANGE_MAX_KEY_SIZE - 1) + 1;
423 break;
424
425 case KVP_OP_DELETE:
426 message->body.kvp_delete.key_size =
427 utf16s_to_utf8s(
428 (wchar_t *)in_msg->body.kvp_delete.key,
429 in_msg->body.kvp_delete.key_size,
430 UTF16_LITTLE_ENDIAN,
431 message->body.kvp_delete.key,
432 HV_KVP_EXCHANGE_MAX_KEY_SIZE - 1) + 1;
433 break;
434
435 case KVP_OP_ENUMERATE:
436 message->body.kvp_enum_data.index =
437 in_msg->body.kvp_enum_data.index;
438 break;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700439 }
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700440
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -0700441 kvp_transaction.state = HVUTIL_USERSPACE_REQ;
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700442 rc = hvutil_transport_send(hvt, message, sizeof(*message));
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100443 if (rc) {
444 pr_debug("KVP: failed to communicate to the daemon: %d\n", rc);
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -0700445 if (cancel_delayed_work_sync(&kvp_timeout_work)) {
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100446 kvp_respond_to_host(message, HV_E_FAIL);
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -0700447 kvp_transaction.state = HVUTIL_READY;
448 }
Vitaly Kuznetsov8d9560e2014-11-06 18:21:25 +0100449 }
450
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700451 kfree(message);
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700452
K. Y. Srinivasane2bb6532011-10-09 19:42:28 -0700453 return;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700454}
455
456/*
457 * Send a response back to the host.
458 */
459
460static void
K. Y. Srinivasan03db7722012-08-16 18:32:12 -0700461kvp_respond_to_host(struct hv_kvp_msg *msg_to_host, int error)
Ky Srinivasan245ba562010-12-16 18:54:16 -0700462{
463 struct hv_kvp_msg *kvp_msg;
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700464 struct hv_kvp_exchg_msg_value *kvp_data;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700465 char *key_name;
K. Y. Srinivasan03db7722012-08-16 18:32:12 -0700466 char *value;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700467 struct icmsg_hdr *icmsghdrp;
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700468 int keylen = 0;
469 int valuelen = 0;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700470 u32 buf_len;
471 struct vmbus_channel *channel;
472 u64 req_id;
K. Y. Srinivasan03db7722012-08-16 18:32:12 -0700473 int ret;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700474
475 /*
Ky Srinivasan245ba562010-12-16 18:54:16 -0700476 * Copy the global state for completing the transaction. Note that
477 * only one transaction can be active at a time.
478 */
479
480 buf_len = kvp_transaction.recv_len;
481 channel = kvp_transaction.recv_channel;
482 req_id = kvp_transaction.recv_req_id;
483
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700484 icmsghdrp = (struct icmsg_hdr *)
485 &recv_buffer[sizeof(struct vmbuspipe_hdr)];
486
K. Y. Srinivasan4e65f6e2011-09-18 10:31:34 -0700487 if (channel->onchannel_callback == NULL)
488 /*
489 * We have raced with util driver being unloaded;
490 * silently return.
491 */
492 return;
493
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700494 icmsghdrp->status = error;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700495
496 /*
K. Y. Srinivasanadc80ae2012-03-16 08:02:27 -0700497 * If the error parameter is set, terminate the host's enumeration
498 * on this pool.
Ky Srinivasan245ba562010-12-16 18:54:16 -0700499 */
500 if (error) {
501 /*
K. Y. Srinivasanb47a81d2012-08-13 10:06:52 -0700502 * Something failed or we have timedout;
503 * terminate the current host-side iteration.
Ky Srinivasan245ba562010-12-16 18:54:16 -0700504 */
Ky Srinivasan245ba562010-12-16 18:54:16 -0700505 goto response_done;
506 }
507
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700508 kvp_msg = (struct hv_kvp_msg *)
509 &recv_buffer[sizeof(struct vmbuspipe_hdr) +
510 sizeof(struct icmsg_hdr)];
511
512 switch (kvp_transaction.kvp_msg->kvp_hdr.operation) {
K. Y. Srinivasan03db7722012-08-16 18:32:12 -0700513 case KVP_OP_GET_IP_INFO:
514 ret = process_ob_ipinfo(msg_to_host,
515 (struct hv_kvp_ip_msg *)kvp_msg,
516 KVP_OP_GET_IP_INFO);
517 if (ret < 0)
518 icmsghdrp->status = HV_E_FAIL;
519
520 goto response_done;
521 case KVP_OP_SET_IP_INFO:
522 goto response_done;
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700523 case KVP_OP_GET:
524 kvp_data = &kvp_msg->body.kvp_get.data;
525 goto copy_value;
526
527 case KVP_OP_SET:
528 case KVP_OP_DELETE:
529 goto response_done;
530
531 default:
532 break;
533 }
534
535 kvp_data = &kvp_msg->body.kvp_enum_data.data;
K. Y. Srinivasan03db7722012-08-16 18:32:12 -0700536 key_name = msg_to_host->body.kvp_enum_data.data.key;
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700537
Ky Srinivasan245ba562010-12-16 18:54:16 -0700538 /*
539 * The windows host expects the key/value pair to be encoded
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700540 * in utf16. Ensure that the key/value size reported to the host
541 * will be less than or equal to the MAX size (including the
542 * terminating character).
Ky Srinivasan245ba562010-12-16 18:54:16 -0700543 */
Alan Stern0720a062011-11-17 16:42:19 -0500544 keylen = utf8s_to_utf16s(key_name, strlen(key_name), UTF16_HOST_ENDIAN,
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700545 (wchar_t *) kvp_data->key,
546 (HV_KVP_EXCHANGE_MAX_KEY_SIZE / 2) - 2);
547 kvp_data->key_size = 2*(keylen + 1); /* utf16 encoding */
Ky Srinivasan245ba562010-12-16 18:54:16 -0700548
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700549copy_value:
K. Y. Srinivasan03db7722012-08-16 18:32:12 -0700550 value = msg_to_host->body.kvp_enum_data.data.value;
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700551 valuelen = utf8s_to_utf16s(value, strlen(value), UTF16_HOST_ENDIAN,
552 (wchar_t *) kvp_data->value,
553 (HV_KVP_EXCHANGE_MAX_VALUE_SIZE / 2) - 2);
554 kvp_data->value_size = 2*(valuelen + 1); /* utf16 encoding */
555
556 /*
557 * If the utf8s to utf16s conversion failed; notify host
558 * of the error.
559 */
560 if ((keylen < 0) || (valuelen < 0))
561 icmsghdrp->status = HV_E_FAIL;
562
563 kvp_data->value_type = REG_SZ; /* all our values are strings */
Ky Srinivasan245ba562010-12-16 18:54:16 -0700564
565response_done:
566 icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION | ICMSGHDRFLAG_RESPONSE;
567
568 vmbus_sendpacket(channel, recv_buffer, buf_len, req_id,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800569 VM_PKT_DATA_INBAND, 0);
Ky Srinivasan245ba562010-12-16 18:54:16 -0700570}
571
572/*
573 * This callback is invoked when we get a KVP message from the host.
574 * The host ensures that only one KVP transaction can be active at a time.
575 * KVP implementation in Linux needs to forward the key to a user-mde
576 * component to retrive the corresponding value. Consequently, we cannot
577 * respond to the host in the conext of this callback. Since the host
578 * guarantees that at most only one transaction can be active at a time,
579 * we stash away the transaction state in a set of global variables.
580 */
581
582void hv_kvp_onchannelcallback(void *context)
583{
584 struct vmbus_channel *channel = context;
585 u32 recvlen;
586 u64 requestid;
587
588 struct hv_kvp_msg *kvp_msg;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700589
590 struct icmsg_hdr *icmsghdrp;
591 struct icmsg_negotiate *negop = NULL;
K. Y. Srinivasan3a491602013-09-06 11:49:56 -0700592 int util_fw_version;
593 int kvp_srv_version;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700594
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -0700595 if (kvp_transaction.state > HVUTIL_READY) {
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700596 /*
597 * We will defer processing this callback once
598 * the current transaction is complete.
599 */
600 kvp_transaction.kvp_context = context;
601 return;
602 }
Vitaly Kuznetsov5fa97482015-04-11 18:07:40 -0700603 kvp_transaction.kvp_context = NULL;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700604
K. Y. Srinivasan9bd2d0d2014-07-07 16:34:25 -0700605 vmbus_recvpacket(channel, recv_buffer, PAGE_SIZE * 4, &recvlen,
K. Y. Srinivasan03db7722012-08-16 18:32:12 -0700606 &requestid);
Ky Srinivasan245ba562010-12-16 18:54:16 -0700607
608 if (recvlen > 0) {
Ky Srinivasan245ba562010-12-16 18:54:16 -0700609 icmsghdrp = (struct icmsg_hdr *)&recv_buffer[
610 sizeof(struct vmbuspipe_hdr)];
611
612 if (icmsghdrp->icmsgtype == ICMSGTYPE_NEGOTIATE) {
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700613 /*
K. Y. Srinivasan3a491602013-09-06 11:49:56 -0700614 * Based on the host, select appropriate
615 * framework and service versions we will
616 * negotiate.
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700617 */
K. Y. Srinivasan3a491602013-09-06 11:49:56 -0700618 switch (vmbus_proto_version) {
619 case (VERSION_WS2008):
620 util_fw_version = UTIL_WS2K8_FW_VERSION;
621 kvp_srv_version = WS2008_SRV_VERSION;
622 break;
623 case (VERSION_WIN7):
624 util_fw_version = UTIL_FW_VERSION;
625 kvp_srv_version = WIN7_SRV_VERSION;
626 break;
627 default:
628 util_fw_version = UTIL_FW_VERSION;
629 kvp_srv_version = WIN8_SRV_VERSION;
630 }
K. Y. Srinivasanc836d0a2012-05-12 13:44:58 -0700631 vmbus_prep_negotiate_resp(icmsghdrp, negop,
K. Y. Srinivasan3a491602013-09-06 11:49:56 -0700632 recv_buffer, util_fw_version,
633 kvp_srv_version);
K. Y. Srinivasan67413352013-07-02 10:31:30 -0700634
Ky Srinivasan245ba562010-12-16 18:54:16 -0700635 } else {
636 kvp_msg = (struct hv_kvp_msg *)&recv_buffer[
637 sizeof(struct vmbuspipe_hdr) +
638 sizeof(struct icmsg_hdr)];
639
Ky Srinivasan245ba562010-12-16 18:54:16 -0700640 /*
641 * Stash away this global state for completing the
642 * transaction; note transactions are serialized.
643 */
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700644
Ky Srinivasan245ba562010-12-16 18:54:16 -0700645 kvp_transaction.recv_len = recvlen;
646 kvp_transaction.recv_channel = channel;
647 kvp_transaction.recv_req_id = requestid;
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700648 kvp_transaction.kvp_msg = kvp_msg;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700649
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -0700650 if (kvp_transaction.state < HVUTIL_READY) {
651 /* Userspace is not registered yet */
652 kvp_respond_to_host(NULL, HV_E_FAIL);
653 return;
654 }
655 kvp_transaction.state = HVUTIL_HOSTMSG_RECEIVED;
656
Ky Srinivasan245ba562010-12-16 18:54:16 -0700657 /*
658 * Get the information from the
659 * user-mode component.
660 * component. This transaction will be
661 * completed when we get the value from
662 * the user-mode component.
663 * Set a timeout to deal with
664 * user-mode not responding.
665 */
K. Y. Srinivasane2bb6532011-10-09 19:42:28 -0700666 schedule_work(&kvp_sendkey_work);
Vitaly Kuznetsov68c8b392015-04-11 18:07:44 -0700667 schedule_delayed_work(&kvp_timeout_work, 5*HZ);
Ky Srinivasan245ba562010-12-16 18:54:16 -0700668
669 return;
670
671 }
672
Ky Srinivasan245ba562010-12-16 18:54:16 -0700673 icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION
674 | ICMSGHDRFLAG_RESPONSE;
675
676 vmbus_sendpacket(channel, recv_buffer,
677 recvlen, requestid,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800678 VM_PKT_DATA_INBAND, 0);
Ky Srinivasan245ba562010-12-16 18:54:16 -0700679 }
680
681}
682
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700683static void kvp_on_reset(void)
684{
685 if (cancel_delayed_work_sync(&kvp_timeout_work))
686 kvp_respond_to_host(NULL, HV_E_FAIL);
687 kvp_transaction.state = HVUTIL_DEVICE_INIT;
688}
689
Ky Srinivasan245ba562010-12-16 18:54:16 -0700690int
K. Y. Srinivasana29b6432011-09-18 10:31:33 -0700691hv_kvp_init(struct hv_util_service *srv)
Ky Srinivasan245ba562010-12-16 18:54:16 -0700692{
K. Y. Srinivasana29b6432011-09-18 10:31:33 -0700693 recv_buffer = srv->recv_buffer;
Ky Srinivasan245ba562010-12-16 18:54:16 -0700694
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700695 /*
696 * When this driver loads, the user level daemon that
697 * processes the host requests may not yet be running.
698 * Defer processing channel callbacks until the daemon
699 * has registered.
700 */
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -0700701 kvp_transaction.state = HVUTIL_DEVICE_INIT;
K. Y. Srinivasanfa3d5b82012-03-16 08:02:25 -0700702
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700703 hvt = hvutil_transport_init(kvp_devname, CN_KVP_IDX, CN_KVP_VAL,
704 kvp_on_msg, kvp_on_reset);
705 if (!hvt)
706 return -EFAULT;
707
Ky Srinivasan245ba562010-12-16 18:54:16 -0700708 return 0;
709}
710
711void hv_kvp_deinit(void)
712{
Vitaly Kuznetsov97bf16c2015-04-11 18:07:47 -0700713 kvp_transaction.state = HVUTIL_DEVICE_DYING;
Vitaly Kuznetsov68c8b392015-04-11 18:07:44 -0700714 cancel_delayed_work_sync(&kvp_timeout_work);
K. Y. Srinivasane2bb6532011-10-09 19:42:28 -0700715 cancel_work_sync(&kvp_sendkey_work);
Vitaly Kuznetsov11bc3a52015-04-11 18:07:54 -0700716 hvutil_transport_destroy(hvt);
Ky Srinivasan245ba562010-12-16 18:54:16 -0700717}