blob: 392c1ac4f8193b3f04e31f57d262b326ba1490f5 [file] [log] [blame]
Thomas Gleixner3b20eb22019-05-29 16:57:35 -07001// SPDX-License-Identifier: GPL-2.0-only
Hank Janssen3e7ee492009-07-13 16:02:34 -07002/*
Hank Janssen3e7ee492009-07-13 16:02:34 -07003 * Copyright (c) 2009, Microsoft Corporation.
4 *
Hank Janssen3e7ee492009-07-13 16:02:34 -07005 * Authors:
6 * Haiyang Zhang <haiyangz@microsoft.com>
7 * Hank Janssen <hjanssen@microsoft.com>
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07008 * K. Y. Srinivasan <kys@microsoft.com>
Hank Janssen3e7ee492009-07-13 16:02:34 -07009 */
Hank Janssen0a466182011-03-29 13:58:47 -070010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Hank Janssen3e7ee492009-07-13 16:02:34 -070012#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/device.h>
Hank Janssen3e7ee492009-07-13 16:02:34 -070015#include <linux/interrupt.h>
16#include <linux/sysctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -070018#include <linux/acpi.h>
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +000019#include <linux/completion.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070020#include <linux/hyperv.h>
K. Y. Srinivasanb0209502012-12-01 06:46:54 -080021#include <linux/kernel_stat.h>
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -080022#include <linux/clockchips.h>
Vitaly Kuznetsove5132292015-02-27 11:25:51 -080023#include <linux/cpu.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010024#include <linux/sched/task_stack.h>
25
Dexuan Cui1f48dcf2019-09-05 23:01:20 +000026#include <linux/delay.h>
Nick Meier96c1d052015-02-28 11:39:01 -080027#include <linux/notifier.h>
Andy Shevchenkof39650d2021-06-30 18:54:59 -070028#include <linux/panic_notifier.h>
Nick Meier96c1d052015-02-28 11:39:01 -080029#include <linux/ptrace.h>
Jake Oshins35464482015-08-05 00:52:37 -070030#include <linux/screen_info.h>
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -070031#include <linux/kdebug.h>
Jake Oshins6d146ae2016-04-05 10:22:55 -070032#include <linux/efi.h>
Stephan Mueller4b44f2d2016-05-02 02:14:34 -040033#include <linux/random.h>
Tianyu Lanf3a99e72020-04-06 08:53:31 -070034#include <linux/kernel.h>
Dexuan Cui63ecc6d2019-09-05 23:01:16 +000035#include <linux/syscore_ops.h>
Michael Kelleyfd1fea62019-07-01 04:25:56 +000036#include <clocksource/hyperv_timer.h>
K. Y. Srinivasan0f2a6612011-05-12 19:34:28 -070037#include "hyperv_vmbus.h"
Hank Janssen3e7ee492009-07-13 16:02:34 -070038
Stephen Hemmingerfc769362016-12-03 12:34:39 -080039struct vmbus_dynid {
40 struct list_head node;
41 struct hv_vmbus_device_id id;
42};
43
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -070044static struct acpi_device *hv_acpi_dev;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -070045
K. Y. Srinivasan71a66552011-04-29 13:45:04 -070046static struct completion probe_event;
Hank Janssen3e7ee492009-07-13 16:02:34 -070047
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -080048static int hyperv_cpuhp_online;
Nick Meier96c1d052015-02-28 11:39:01 -080049
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +000050static void *hv_panic_page;
51
Michael Kelleyd6087152021-03-02 13:38:18 -080052static long __percpu *vmbus_evt;
53
Michael Kelley626b9012020-08-14 12:45:04 -070054/* Values parsed from ACPI DSDT */
Michael Kelleyd6087152021-03-02 13:38:18 -080055int vmbus_irq;
Michael Kelley626b9012020-08-14 12:45:04 -070056int vmbus_interrupt;
57
Tianyu Lan040026d2020-04-06 08:53:30 -070058/*
59 * Boolean to control whether to report panic messages over Hyper-V.
60 *
Matheus Castellob18e3582020-11-15 16:57:29 -030061 * It can be set via /proc/sys/kernel/hyperv_record_panic_msg
Tianyu Lan040026d2020-04-06 08:53:30 -070062 */
63static int sysctl_record_panic_msg = 1;
64
65static int hyperv_report_reg(void)
66{
67 return !sysctl_record_panic_msg || !hv_panic_page;
68}
69
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -070070static int hyperv_panic_event(struct notifier_block *nb, unsigned long val,
71 void *args)
72{
73 struct pt_regs *regs;
74
Tianyu Lan74347a92020-04-06 08:53:26 -070075 vmbus_initiate_unload(true);
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -070076
Tianyu Lan73f26e52020-04-06 08:53:28 -070077 /*
78 * Hyper-V should be notified only once about a panic. If we will be
79 * doing hyperv_report_panic_msg() later with kmsg data, don't do
80 * the notification here.
81 */
82 if (ms_hyperv.misc_features & HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE
Tianyu Lan040026d2020-04-06 08:53:30 -070083 && hyperv_report_reg()) {
Tianyu Lan74347a92020-04-06 08:53:26 -070084 regs = current_pt_regs();
Tianyu Lanf3a99e72020-04-06 08:53:31 -070085 hyperv_report_panic(regs, val, false);
Tianyu Lan74347a92020-04-06 08:53:26 -070086 }
Nick Meier96c1d052015-02-28 11:39:01 -080087 return NOTIFY_DONE;
88}
89
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -070090static int hyperv_die_event(struct notifier_block *nb, unsigned long val,
91 void *args)
92{
Olaf Hering49971e62020-08-19 11:05:09 +020093 struct die_args *die = args;
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -070094 struct pt_regs *regs = die->regs;
95
Michael Kelley608a9732020-08-06 09:22:15 -070096 /* Don't notify Hyper-V if the die event is other than oops */
97 if (val != DIE_OOPS)
98 return NOTIFY_DONE;
99
Tianyu Lan73f26e52020-04-06 08:53:28 -0700100 /*
101 * Hyper-V should be notified only once about a panic. If we will be
102 * doing hyperv_report_panic_msg() later with kmsg data, don't do
103 * the notification here.
104 */
Tianyu Lan040026d2020-04-06 08:53:30 -0700105 if (hyperv_report_reg())
Tianyu Lanf3a99e72020-04-06 08:53:31 -0700106 hyperv_report_panic(regs, val, true);
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -0700107 return NOTIFY_DONE;
108}
109
110static struct notifier_block hyperv_die_block = {
111 .notifier_call = hyperv_die_event,
112};
Nick Meier96c1d052015-02-28 11:39:01 -0800113static struct notifier_block hyperv_panic_block = {
114 .notifier_call = hyperv_panic_event,
115};
116
Jake Oshins6d146ae2016-04-05 10:22:55 -0700117static const char *fb_mmio_name = "fb_range";
118static struct resource *fb_mmio;
Stephen Hemmingere2e80842016-09-07 05:39:33 -0700119static struct resource *hyperv_mmio;
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -0700120static DEFINE_MUTEX(hyperv_mmio_lock);
Hank Janssen3e7ee492009-07-13 16:02:34 -0700121
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -0800122static int vmbus_exists(void)
123{
124 if (hv_acpi_dev == NULL)
125 return -ENODEV;
126
127 return 0;
128}
129
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700130static u8 channel_monitor_group(const struct vmbus_channel *channel)
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700131{
132 return (u8)channel->offermsg.monitorid / 32;
133}
134
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700135static u8 channel_monitor_offset(const struct vmbus_channel *channel)
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700136{
137 return (u8)channel->offermsg.monitorid % 32;
138}
139
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700140static u32 channel_pending(const struct vmbus_channel *channel,
141 const struct hv_monitor_page *monitor_page)
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700142{
143 u8 monitor_group = channel_monitor_group(channel);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700144
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700145 return monitor_page->trigger_group[monitor_group].pending;
146}
147
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700148static u32 channel_latency(const struct vmbus_channel *channel,
149 const struct hv_monitor_page *monitor_page)
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700150{
151 u8 monitor_group = channel_monitor_group(channel);
152 u8 monitor_offset = channel_monitor_offset(channel);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -0700153
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700154 return monitor_page->latency[monitor_group][monitor_offset];
155}
156
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700157static u32 channel_conn_id(struct vmbus_channel *channel,
158 struct hv_monitor_page *monitor_page)
159{
160 u8 monitor_group = channel_monitor_group(channel);
161 u8 monitor_offset = channel_monitor_offset(channel);
Matheus Castelloe4f22122020-11-15 16:57:31 -0300162
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700163 return monitor_page->parameter[monitor_group][monitor_offset].connectionid.u.id;
164}
165
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700166static ssize_t id_show(struct device *dev, struct device_attribute *dev_attr,
167 char *buf)
168{
169 struct hv_device *hv_dev = device_to_hv_device(dev);
170
171 if (!hv_dev->channel)
172 return -ENODEV;
173 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.child_relid);
174}
175static DEVICE_ATTR_RO(id);
176
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700177static ssize_t state_show(struct device *dev, struct device_attribute *dev_attr,
178 char *buf)
179{
180 struct hv_device *hv_dev = device_to_hv_device(dev);
181
182 if (!hv_dev->channel)
183 return -ENODEV;
184 return sprintf(buf, "%d\n", hv_dev->channel->state);
185}
186static DEVICE_ATTR_RO(state);
187
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700188static ssize_t monitor_id_show(struct device *dev,
189 struct device_attribute *dev_attr, char *buf)
190{
191 struct hv_device *hv_dev = device_to_hv_device(dev);
192
193 if (!hv_dev->channel)
194 return -ENODEV;
195 return sprintf(buf, "%d\n", hv_dev->channel->offermsg.monitorid);
196}
197static DEVICE_ATTR_RO(monitor_id);
198
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700199static ssize_t class_id_show(struct device *dev,
200 struct device_attribute *dev_attr, char *buf)
201{
202 struct hv_device *hv_dev = device_to_hv_device(dev);
203
204 if (!hv_dev->channel)
205 return -ENODEV;
206 return sprintf(buf, "{%pUl}\n",
Andy Shevchenko458c4472020-04-23 16:45:03 +0300207 &hv_dev->channel->offermsg.offer.if_type);
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700208}
209static DEVICE_ATTR_RO(class_id);
210
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700211static ssize_t device_id_show(struct device *dev,
212 struct device_attribute *dev_attr, char *buf)
213{
214 struct hv_device *hv_dev = device_to_hv_device(dev);
215
216 if (!hv_dev->channel)
217 return -ENODEV;
218 return sprintf(buf, "{%pUl}\n",
Andy Shevchenko458c4472020-04-23 16:45:03 +0300219 &hv_dev->channel->offermsg.offer.if_instance);
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700220}
221static DEVICE_ATTR_RO(device_id);
222
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700223static ssize_t modalias_show(struct device *dev,
224 struct device_attribute *dev_attr, char *buf)
225{
226 struct hv_device *hv_dev = device_to_hv_device(dev);
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700227
Andy Shevchenko0027e3f2020-04-23 16:45:04 +0300228 return sprintf(buf, "vmbus:%*phN\n", UUID_SIZE, &hv_dev->dev_type);
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700229}
230static DEVICE_ATTR_RO(modalias);
231
Stephen Hemminger7ceb1c32018-07-28 21:58:48 +0000232#ifdef CONFIG_NUMA
233static ssize_t numa_node_show(struct device *dev,
234 struct device_attribute *attr, char *buf)
235{
236 struct hv_device *hv_dev = device_to_hv_device(dev);
237
238 if (!hv_dev->channel)
239 return -ENODEV;
240
Andrea Parri (Microsoft)458d0902020-06-17 18:46:36 +0200241 return sprintf(buf, "%d\n", cpu_to_node(hv_dev->channel->target_cpu));
Stephen Hemminger7ceb1c32018-07-28 21:58:48 +0000242}
243static DEVICE_ATTR_RO(numa_node);
244#endif
245
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700246static ssize_t server_monitor_pending_show(struct device *dev,
247 struct device_attribute *dev_attr,
248 char *buf)
249{
250 struct hv_device *hv_dev = device_to_hv_device(dev);
251
252 if (!hv_dev->channel)
253 return -ENODEV;
254 return sprintf(buf, "%d\n",
255 channel_pending(hv_dev->channel,
Kimberly Brownfd8e3c32019-02-19 00:38:06 -0500256 vmbus_connection.monitor_pages[0]));
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700257}
258static DEVICE_ATTR_RO(server_monitor_pending);
259
260static ssize_t client_monitor_pending_show(struct device *dev,
261 struct device_attribute *dev_attr,
262 char *buf)
263{
264 struct hv_device *hv_dev = device_to_hv_device(dev);
265
266 if (!hv_dev->channel)
267 return -ENODEV;
268 return sprintf(buf, "%d\n",
269 channel_pending(hv_dev->channel,
270 vmbus_connection.monitor_pages[1]));
271}
272static DEVICE_ATTR_RO(client_monitor_pending);
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700273
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700274static ssize_t server_monitor_latency_show(struct device *dev,
275 struct device_attribute *dev_attr,
276 char *buf)
277{
278 struct hv_device *hv_dev = device_to_hv_device(dev);
279
280 if (!hv_dev->channel)
281 return -ENODEV;
282 return sprintf(buf, "%d\n",
283 channel_latency(hv_dev->channel,
284 vmbus_connection.monitor_pages[0]));
285}
286static DEVICE_ATTR_RO(server_monitor_latency);
287
288static ssize_t client_monitor_latency_show(struct device *dev,
289 struct device_attribute *dev_attr,
290 char *buf)
291{
292 struct hv_device *hv_dev = device_to_hv_device(dev);
293
294 if (!hv_dev->channel)
295 return -ENODEV;
296 return sprintf(buf, "%d\n",
297 channel_latency(hv_dev->channel,
298 vmbus_connection.monitor_pages[1]));
299}
300static DEVICE_ATTR_RO(client_monitor_latency);
301
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700302static ssize_t server_monitor_conn_id_show(struct device *dev,
303 struct device_attribute *dev_attr,
304 char *buf)
305{
306 struct hv_device *hv_dev = device_to_hv_device(dev);
307
308 if (!hv_dev->channel)
309 return -ENODEV;
310 return sprintf(buf, "%d\n",
311 channel_conn_id(hv_dev->channel,
312 vmbus_connection.monitor_pages[0]));
313}
314static DEVICE_ATTR_RO(server_monitor_conn_id);
315
316static ssize_t client_monitor_conn_id_show(struct device *dev,
317 struct device_attribute *dev_attr,
318 char *buf)
319{
320 struct hv_device *hv_dev = device_to_hv_device(dev);
321
322 if (!hv_dev->channel)
323 return -ENODEV;
324 return sprintf(buf, "%d\n",
325 channel_conn_id(hv_dev->channel,
326 vmbus_connection.monitor_pages[1]));
327}
328static DEVICE_ATTR_RO(client_monitor_conn_id);
329
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700330static ssize_t out_intr_mask_show(struct device *dev,
331 struct device_attribute *dev_attr, char *buf)
332{
333 struct hv_device *hv_dev = device_to_hv_device(dev);
334 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000335 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700336
337 if (!hv_dev->channel)
338 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000339
340 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
341 &outbound);
342 if (ret < 0)
343 return ret;
344
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700345 return sprintf(buf, "%d\n", outbound.current_interrupt_mask);
346}
347static DEVICE_ATTR_RO(out_intr_mask);
348
349static ssize_t out_read_index_show(struct device *dev,
350 struct device_attribute *dev_attr, char *buf)
351{
352 struct hv_device *hv_dev = device_to_hv_device(dev);
353 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000354 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700355
356 if (!hv_dev->channel)
357 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000358
359 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
360 &outbound);
361 if (ret < 0)
362 return ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700363 return sprintf(buf, "%d\n", outbound.current_read_index);
364}
365static DEVICE_ATTR_RO(out_read_index);
366
367static ssize_t out_write_index_show(struct device *dev,
368 struct device_attribute *dev_attr,
369 char *buf)
370{
371 struct hv_device *hv_dev = device_to_hv_device(dev);
372 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000373 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700374
375 if (!hv_dev->channel)
376 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000377
378 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
379 &outbound);
380 if (ret < 0)
381 return ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700382 return sprintf(buf, "%d\n", outbound.current_write_index);
383}
384static DEVICE_ATTR_RO(out_write_index);
385
386static ssize_t out_read_bytes_avail_show(struct device *dev,
387 struct device_attribute *dev_attr,
388 char *buf)
389{
390 struct hv_device *hv_dev = device_to_hv_device(dev);
391 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000392 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700393
394 if (!hv_dev->channel)
395 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000396
397 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
398 &outbound);
399 if (ret < 0)
400 return ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700401 return sprintf(buf, "%d\n", outbound.bytes_avail_toread);
402}
403static DEVICE_ATTR_RO(out_read_bytes_avail);
404
405static ssize_t out_write_bytes_avail_show(struct device *dev,
406 struct device_attribute *dev_attr,
407 char *buf)
408{
409 struct hv_device *hv_dev = device_to_hv_device(dev);
410 struct hv_ring_buffer_debug_info outbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000411 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700412
413 if (!hv_dev->channel)
414 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000415
416 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound,
417 &outbound);
418 if (ret < 0)
419 return ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700420 return sprintf(buf, "%d\n", outbound.bytes_avail_towrite);
421}
422static DEVICE_ATTR_RO(out_write_bytes_avail);
423
424static ssize_t in_intr_mask_show(struct device *dev,
425 struct device_attribute *dev_attr, char *buf)
426{
427 struct hv_device *hv_dev = device_to_hv_device(dev);
428 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000429 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700430
431 if (!hv_dev->channel)
432 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000433
434 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
435 if (ret < 0)
436 return ret;
437
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700438 return sprintf(buf, "%d\n", inbound.current_interrupt_mask);
439}
440static DEVICE_ATTR_RO(in_intr_mask);
441
442static ssize_t in_read_index_show(struct device *dev,
443 struct device_attribute *dev_attr, char *buf)
444{
445 struct hv_device *hv_dev = device_to_hv_device(dev);
446 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000447 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700448
449 if (!hv_dev->channel)
450 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000451
452 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
453 if (ret < 0)
454 return ret;
455
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700456 return sprintf(buf, "%d\n", inbound.current_read_index);
457}
458static DEVICE_ATTR_RO(in_read_index);
459
460static ssize_t in_write_index_show(struct device *dev,
461 struct device_attribute *dev_attr, char *buf)
462{
463 struct hv_device *hv_dev = device_to_hv_device(dev);
464 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000465 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700466
467 if (!hv_dev->channel)
468 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000469
470 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
471 if (ret < 0)
472 return ret;
473
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700474 return sprintf(buf, "%d\n", inbound.current_write_index);
475}
476static DEVICE_ATTR_RO(in_write_index);
477
478static ssize_t in_read_bytes_avail_show(struct device *dev,
479 struct device_attribute *dev_attr,
480 char *buf)
481{
482 struct hv_device *hv_dev = device_to_hv_device(dev);
483 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000484 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700485
486 if (!hv_dev->channel)
487 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000488
489 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
490 if (ret < 0)
491 return ret;
492
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700493 return sprintf(buf, "%d\n", inbound.bytes_avail_toread);
494}
495static DEVICE_ATTR_RO(in_read_bytes_avail);
496
497static ssize_t in_write_bytes_avail_show(struct device *dev,
498 struct device_attribute *dev_attr,
499 char *buf)
500{
501 struct hv_device *hv_dev = device_to_hv_device(dev);
502 struct hv_ring_buffer_debug_info inbound;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000503 int ret;
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700504
505 if (!hv_dev->channel)
506 return -ENODEV;
Dexuan Cuiba50bf12018-12-17 20:16:09 +0000507
508 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->inbound, &inbound);
509 if (ret < 0)
510 return ret;
511
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700512 return sprintf(buf, "%d\n", inbound.bytes_avail_towrite);
513}
514static DEVICE_ATTR_RO(in_write_bytes_avail);
515
Dexuan Cui042ab032015-08-05 00:52:43 -0700516static ssize_t channel_vp_mapping_show(struct device *dev,
517 struct device_attribute *dev_attr,
518 char *buf)
519{
520 struct hv_device *hv_dev = device_to_hv_device(dev);
521 struct vmbus_channel *channel = hv_dev->channel, *cur_sc;
Dexuan Cui042ab032015-08-05 00:52:43 -0700522 int buf_size = PAGE_SIZE, n_written, tot_written;
523 struct list_head *cur;
524
525 if (!channel)
526 return -ENODEV;
527
Andrea Parri (Microsoft)3eb0ac82020-06-17 18:46:39 +0200528 mutex_lock(&vmbus_connection.channel_mutex);
529
Dexuan Cui042ab032015-08-05 00:52:43 -0700530 tot_written = snprintf(buf, buf_size, "%u:%u\n",
531 channel->offermsg.child_relid, channel->target_cpu);
532
Dexuan Cui042ab032015-08-05 00:52:43 -0700533 list_for_each(cur, &channel->sc_list) {
534 if (tot_written >= buf_size - 1)
535 break;
536
537 cur_sc = list_entry(cur, struct vmbus_channel, sc_list);
538 n_written = scnprintf(buf + tot_written,
539 buf_size - tot_written,
540 "%u:%u\n",
541 cur_sc->offermsg.child_relid,
542 cur_sc->target_cpu);
543 tot_written += n_written;
544 }
545
Andrea Parri (Microsoft)3eb0ac82020-06-17 18:46:39 +0200546 mutex_unlock(&vmbus_connection.channel_mutex);
Dexuan Cui042ab032015-08-05 00:52:43 -0700547
548 return tot_written;
549}
550static DEVICE_ATTR_RO(channel_vp_mapping);
551
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800552static ssize_t vendor_show(struct device *dev,
553 struct device_attribute *dev_attr,
554 char *buf)
555{
556 struct hv_device *hv_dev = device_to_hv_device(dev);
Matheus Castelloe4f22122020-11-15 16:57:31 -0300557
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800558 return sprintf(buf, "0x%x\n", hv_dev->vendor_id);
559}
560static DEVICE_ATTR_RO(vendor);
561
562static ssize_t device_show(struct device *dev,
563 struct device_attribute *dev_attr,
564 char *buf)
565{
566 struct hv_device *hv_dev = device_to_hv_device(dev);
Matheus Castelloe4f22122020-11-15 16:57:31 -0300567
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800568 return sprintf(buf, "0x%x\n", hv_dev->device_id);
569}
570static DEVICE_ATTR_RO(device);
571
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000572static ssize_t driver_override_store(struct device *dev,
573 struct device_attribute *attr,
574 const char *buf, size_t count)
575{
576 struct hv_device *hv_dev = device_to_hv_device(dev);
577 char *driver_override, *old, *cp;
578
579 /* We need to keep extra room for a newline */
580 if (count >= (PAGE_SIZE - 1))
581 return -EINVAL;
582
583 driver_override = kstrndup(buf, count, GFP_KERNEL);
584 if (!driver_override)
585 return -ENOMEM;
586
587 cp = strchr(driver_override, '\n');
588 if (cp)
589 *cp = '\0';
590
591 device_lock(dev);
592 old = hv_dev->driver_override;
593 if (strlen(driver_override)) {
594 hv_dev->driver_override = driver_override;
595 } else {
596 kfree(driver_override);
597 hv_dev->driver_override = NULL;
598 }
599 device_unlock(dev);
600
601 kfree(old);
602
603 return count;
604}
605
606static ssize_t driver_override_show(struct device *dev,
607 struct device_attribute *attr, char *buf)
608{
609 struct hv_device *hv_dev = device_to_hv_device(dev);
610 ssize_t len;
611
612 device_lock(dev);
613 len = snprintf(buf, PAGE_SIZE, "%s\n", hv_dev->driver_override);
614 device_unlock(dev);
615
616 return len;
617}
618static DEVICE_ATTR_RW(driver_override);
619
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700620/* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800621static struct attribute *vmbus_dev_attrs[] = {
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700622 &dev_attr_id.attr,
Greg Kroah-Hartmana8fb5f32013-09-13 11:32:50 -0700623 &dev_attr_state.attr,
Greg Kroah-Hartman5ffd00e2013-09-13 11:32:51 -0700624 &dev_attr_monitor_id.attr,
Greg Kroah-Hartman68234c02013-09-13 11:32:53 -0700625 &dev_attr_class_id.attr,
Greg Kroah-Hartman7c55e1d2013-09-13 11:32:54 -0700626 &dev_attr_device_id.attr,
Greg Kroah-Hartman647fa372013-09-13 11:32:52 -0700627 &dev_attr_modalias.attr,
Stephen Hemminger7ceb1c32018-07-28 21:58:48 +0000628#ifdef CONFIG_NUMA
629 &dev_attr_numa_node.attr,
630#endif
Greg Kroah-Hartman76c52bb2013-09-13 11:32:56 -0700631 &dev_attr_server_monitor_pending.attr,
632 &dev_attr_client_monitor_pending.attr,
Greg Kroah-Hartman1cee2722013-09-13 11:32:57 -0700633 &dev_attr_server_monitor_latency.attr,
634 &dev_attr_client_monitor_latency.attr,
Greg Kroah-Hartman4947c742013-09-13 11:32:58 -0700635 &dev_attr_server_monitor_conn_id.attr,
636 &dev_attr_client_monitor_conn_id.attr,
Greg Kroah-Hartman98f4c652013-09-13 11:33:01 -0700637 &dev_attr_out_intr_mask.attr,
638 &dev_attr_out_read_index.attr,
639 &dev_attr_out_write_index.attr,
640 &dev_attr_out_read_bytes_avail.attr,
641 &dev_attr_out_write_bytes_avail.attr,
642 &dev_attr_in_intr_mask.attr,
643 &dev_attr_in_read_index.attr,
644 &dev_attr_in_write_index.attr,
645 &dev_attr_in_read_bytes_avail.attr,
646 &dev_attr_in_write_bytes_avail.attr,
Dexuan Cui042ab032015-08-05 00:52:43 -0700647 &dev_attr_channel_vp_mapping.attr,
K. Y. Srinivasan7047f172015-12-25 20:00:30 -0800648 &dev_attr_vendor.attr,
649 &dev_attr_device.attr,
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000650 &dev_attr_driver_override.attr,
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700651 NULL,
652};
Kimberly Brown46fc1542019-03-19 00:04:01 -0400653
654/*
655 * Device-level attribute_group callback function. Returns the permission for
656 * each attribute, and returns 0 if an attribute is not visible.
657 */
658static umode_t vmbus_dev_attr_is_visible(struct kobject *kobj,
659 struct attribute *attr, int idx)
660{
661 struct device *dev = kobj_to_dev(kobj);
662 const struct hv_device *hv_dev = device_to_hv_device(dev);
663
664 /* Hide the monitor attributes if the monitor mechanism is not used. */
665 if (!hv_dev->channel->offermsg.monitor_allocated &&
666 (attr == &dev_attr_monitor_id.attr ||
667 attr == &dev_attr_server_monitor_pending.attr ||
668 attr == &dev_attr_client_monitor_pending.attr ||
669 attr == &dev_attr_server_monitor_latency.attr ||
670 attr == &dev_attr_client_monitor_latency.attr ||
671 attr == &dev_attr_server_monitor_conn_id.attr ||
672 attr == &dev_attr_client_monitor_conn_id.attr))
673 return 0;
674
675 return attr->mode;
676}
677
678static const struct attribute_group vmbus_dev_group = {
679 .attrs = vmbus_dev_attrs,
680 .is_visible = vmbus_dev_attr_is_visible
681};
682__ATTRIBUTE_GROUPS(vmbus_dev);
Greg Kroah-Hartman03f3a912013-09-13 11:32:49 -0700683
Dexuan Cuic068e3f2021-01-06 17:45:52 -0800684/* Set up the attribute for /sys/bus/vmbus/hibernation */
685static ssize_t hibernation_show(struct bus_type *bus, char *buf)
686{
687 return sprintf(buf, "%d\n", !!hv_is_hibernation_supported());
688}
689
690static BUS_ATTR_RO(hibernation);
691
692static struct attribute *vmbus_bus_attrs[] = {
693 &bus_attr_hibernation.attr,
694 NULL,
695};
696static const struct attribute_group vmbus_bus_group = {
697 .attrs = vmbus_bus_attrs,
698};
699__ATTRIBUTE_GROUPS(vmbus_bus);
700
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700701/*
702 * vmbus_uevent - add uevent for our device
703 *
704 * This routine is invoked when a device is added or removed on the vmbus to
705 * generate a uevent to udev in the userspace. The udev will then look at its
706 * rule and the uevent generated here to load the appropriate driver
K. Y. Srinivasan0ddda662011-08-25 09:48:38 -0700707 *
708 * The alias string will be of the form vmbus:guid where guid is the string
709 * representation of the device guid (each byte of the guid will be
710 * represented with two hex characters.
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700711 */
712static int vmbus_uevent(struct device *device, struct kobj_uevent_env *env)
713{
714 struct hv_device *dev = device_to_hv_device(device);
Andy Shevchenko0027e3f2020-04-23 16:45:04 +0300715 const char *format = "MODALIAS=vmbus:%*phN";
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700716
Andy Shevchenko0027e3f2020-04-23 16:45:04 +0300717 return add_uevent_var(env, format, UUID_SIZE, &dev->dev_type);
K. Y. Srinivasanadde2482011-03-15 15:03:37 -0700718}
719
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000720static const struct hv_vmbus_device_id *
Andy Shevchenko593db802019-01-10 16:25:32 +0200721hv_vmbus_dev_match(const struct hv_vmbus_device_id *id, const guid_t *guid)
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000722{
723 if (id == NULL)
724 return NULL; /* empty device table */
725
Andy Shevchenko593db802019-01-10 16:25:32 +0200726 for (; !guid_is_null(&id->guid); id++)
727 if (guid_equal(&id->guid, guid))
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000728 return id;
729
730 return NULL;
731}
732
733static const struct hv_vmbus_device_id *
Andy Shevchenko593db802019-01-10 16:25:32 +0200734hv_vmbus_dynid_match(struct hv_driver *drv, const guid_t *guid)
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700735{
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800736 const struct hv_vmbus_device_id *id = NULL;
737 struct vmbus_dynid *dynid;
738
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800739 spin_lock(&drv->dynids.lock);
740 list_for_each_entry(dynid, &drv->dynids.list, node) {
Andy Shevchenko593db802019-01-10 16:25:32 +0200741 if (guid_equal(&dynid->id.guid, guid)) {
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800742 id = &dynid->id;
743 break;
744 }
745 }
746 spin_unlock(&drv->dynids.lock);
747
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000748 return id;
749}
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800750
Andy Shevchenko593db802019-01-10 16:25:32 +0200751static const struct hv_vmbus_device_id vmbus_device_null;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800752
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000753/*
754 * Return a matching hv_vmbus_device_id pointer.
755 * If there is no match, return NULL.
756 */
757static const struct hv_vmbus_device_id *hv_vmbus_get_id(struct hv_driver *drv,
758 struct hv_device *dev)
759{
Andy Shevchenko593db802019-01-10 16:25:32 +0200760 const guid_t *guid = &dev->dev_type;
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000761 const struct hv_vmbus_device_id *id;
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700762
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000763 /* When driver_override is set, only bind to the matching driver */
764 if (dev->driver_override && strcmp(dev->driver_override, drv->name))
765 return NULL;
766
767 /* Look at the dynamic ids first, before the static ones */
768 id = hv_vmbus_dynid_match(drv, guid);
769 if (!id)
770 id = hv_vmbus_dev_match(drv->id_table, guid);
771
772 /* driver_override will always match, send a dummy id */
773 if (!id && dev->driver_override)
774 id = &vmbus_device_null;
775
776 return id;
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700777}
778
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800779/* vmbus_add_dynid - add a new device ID to this driver and re-probe devices */
Andy Shevchenko593db802019-01-10 16:25:32 +0200780static int vmbus_add_dynid(struct hv_driver *drv, guid_t *guid)
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800781{
782 struct vmbus_dynid *dynid;
783
784 dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
785 if (!dynid)
786 return -ENOMEM;
787
788 dynid->id.guid = *guid;
789
790 spin_lock(&drv->dynids.lock);
791 list_add_tail(&dynid->node, &drv->dynids.list);
792 spin_unlock(&drv->dynids.lock);
793
794 return driver_attach(&drv->driver);
795}
796
797static void vmbus_free_dynids(struct hv_driver *drv)
798{
799 struct vmbus_dynid *dynid, *n;
800
801 spin_lock(&drv->dynids.lock);
802 list_for_each_entry_safe(dynid, n, &drv->dynids.list, node) {
803 list_del(&dynid->node);
804 kfree(dynid);
805 }
806 spin_unlock(&drv->dynids.lock);
807}
808
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800809/*
810 * store_new_id - sysfs frontend to vmbus_add_dynid()
811 *
812 * Allow GUIDs to be added to an existing driver via sysfs.
813 */
814static ssize_t new_id_store(struct device_driver *driver, const char *buf,
815 size_t count)
816{
817 struct hv_driver *drv = drv_to_hv_drv(driver);
Andy Shevchenko593db802019-01-10 16:25:32 +0200818 guid_t guid;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800819 ssize_t retval;
820
Andy Shevchenko593db802019-01-10 16:25:32 +0200821 retval = guid_parse(buf, &guid);
Andy Shevchenko31100102017-05-18 10:46:06 -0700822 if (retval)
823 return retval;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800824
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000825 if (hv_vmbus_dynid_match(drv, &guid))
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800826 return -EEXIST;
827
828 retval = vmbus_add_dynid(drv, &guid);
829 if (retval)
830 return retval;
831 return count;
832}
833static DRIVER_ATTR_WO(new_id);
834
835/*
836 * store_remove_id - remove a PCI device ID from this driver
837 *
838 * Removes a dynamic pci device ID to this driver.
839 */
840static ssize_t remove_id_store(struct device_driver *driver, const char *buf,
841 size_t count)
842{
843 struct hv_driver *drv = drv_to_hv_drv(driver);
844 struct vmbus_dynid *dynid, *n;
Andy Shevchenko593db802019-01-10 16:25:32 +0200845 guid_t guid;
Andy Shevchenko31100102017-05-18 10:46:06 -0700846 ssize_t retval;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800847
Andy Shevchenko593db802019-01-10 16:25:32 +0200848 retval = guid_parse(buf, &guid);
Andy Shevchenko31100102017-05-18 10:46:06 -0700849 if (retval)
850 return retval;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800851
Andy Shevchenko31100102017-05-18 10:46:06 -0700852 retval = -ENODEV;
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800853 spin_lock(&drv->dynids.lock);
854 list_for_each_entry_safe(dynid, n, &drv->dynids.list, node) {
855 struct hv_vmbus_device_id *id = &dynid->id;
856
Andy Shevchenko593db802019-01-10 16:25:32 +0200857 if (guid_equal(&id->guid, &guid)) {
Stephen Hemmingerfc769362016-12-03 12:34:39 -0800858 list_del(&dynid->node);
859 kfree(dynid);
860 retval = count;
861 break;
862 }
863 }
864 spin_unlock(&drv->dynids.lock);
865
866 return retval;
867}
868static DRIVER_ATTR_WO(remove_id);
869
870static struct attribute *vmbus_drv_attrs[] = {
871 &driver_attr_new_id.attr,
872 &driver_attr_remove_id.attr,
873 NULL,
874};
875ATTRIBUTE_GROUPS(vmbus_drv);
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700876
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700877
878/*
879 * vmbus_match - Attempt to match the specified device to the specified driver
880 */
881static int vmbus_match(struct device *device, struct device_driver *driver)
882{
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700883 struct hv_driver *drv = drv_to_hv_drv(driver);
K. Y. Srinivasane8e27042011-06-06 15:50:04 -0700884 struct hv_device *hv_dev = device_to_hv_device(device);
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700885
Dexuan Cui8981da32016-01-27 22:29:41 -0800886 /* The hv_sock driver handles all hv_sock offers. */
887 if (is_hvsock_channel(hv_dev->channel))
888 return drv->hvsock;
889
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000890 if (hv_vmbus_get_id(drv, hv_dev))
K. Y. Srinivasan3037a7b2011-09-13 10:59:37 -0700891 return 1;
K. Y. Srinivasande632a2b2011-04-26 09:20:24 -0700892
K. Y. Srinivasan5841a822011-08-25 09:48:39 -0700893 return 0;
K. Y. Srinivasanb7fc1472011-03-15 15:03:38 -0700894}
895
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700896/*
897 * vmbus_probe - Add the new vmbus's child device
898 */
899static int vmbus_probe(struct device *child_device)
900{
901 int ret = 0;
902 struct hv_driver *drv =
903 drv_to_hv_drv(child_device->driver);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700904 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700905 const struct hv_vmbus_device_id *dev_id;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700906
Stephen Hemmingerd765edb2018-08-10 23:06:08 +0000907 dev_id = hv_vmbus_get_id(drv, dev);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700908 if (drv->probe) {
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700909 ret = drv->probe(dev, dev_id);
K. Y. Srinivasanb14a7b32011-04-29 13:45:03 -0700910 if (ret != 0)
Hank Janssen0a466182011-03-29 13:58:47 -0700911 pr_err("probe failed for device %s (%d)\n",
912 dev_name(child_device), ret);
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700913
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700914 } else {
Hank Janssen0a466182011-03-29 13:58:47 -0700915 pr_err("probe not set for driver %s\n",
916 dev_name(child_device));
K. Y. Srinivasan6de925b2011-06-06 15:50:07 -0700917 ret = -ENODEV;
K. Y. Srinivasanf1f0d672011-03-15 15:03:39 -0700918 }
919 return ret;
920}
921
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700922/*
923 * vmbus_remove - Remove a vmbus device
924 */
Uwe Kleine-Königfc7a6202021-07-13 21:35:22 +0200925static void vmbus_remove(struct device *child_device)
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700926{
K. Y. Srinivasand15a0302015-02-28 11:18:16 -0800927 struct hv_driver *drv;
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700928 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700929
K. Y. Srinivasand15a0302015-02-28 11:18:16 -0800930 if (child_device->driver) {
931 drv = drv_to_hv_drv(child_device->driver);
932 if (drv->remove)
933 drv->remove(dev);
K. Y. Srinivasand15a0302015-02-28 11:18:16 -0800934 }
K. Y. Srinivasanc5dce3d2011-03-15 15:03:40 -0700935}
936
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700937/*
938 * vmbus_shutdown - Shutdown a vmbus device
939 */
940static void vmbus_shutdown(struct device *child_device)
941{
942 struct hv_driver *drv;
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700943 struct hv_device *dev = device_to_hv_device(child_device);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700944
945
946 /* The device may not be attached yet */
947 if (!child_device->driver)
948 return;
949
950 drv = drv_to_hv_drv(child_device->driver);
951
K. Y. Srinivasanca6887f2011-04-29 13:45:14 -0700952 if (drv->shutdown)
953 drv->shutdown(dev);
K. Y. Srinivasaneb1bb252011-03-15 15:03:41 -0700954}
955
Dexuan Cui83b50f82019-09-19 21:46:12 +0000956#ifdef CONFIG_PM_SLEEP
Dexuan Cui271b2222019-09-05 23:01:17 +0000957/*
958 * vmbus_suspend - Suspend a vmbus device
959 */
960static int vmbus_suspend(struct device *child_device)
961{
962 struct hv_driver *drv;
963 struct hv_device *dev = device_to_hv_device(child_device);
964
965 /* The device may not be attached yet */
966 if (!child_device->driver)
967 return 0;
968
969 drv = drv_to_hv_drv(child_device->driver);
970 if (!drv->suspend)
971 return -EOPNOTSUPP;
972
973 return drv->suspend(dev);
974}
975
976/*
977 * vmbus_resume - Resume a vmbus device
978 */
979static int vmbus_resume(struct device *child_device)
980{
981 struct hv_driver *drv;
982 struct hv_device *dev = device_to_hv_device(child_device);
983
984 /* The device may not be attached yet */
985 if (!child_device->driver)
986 return 0;
987
988 drv = drv_to_hv_drv(child_device->driver);
989 if (!drv->resume)
990 return -EOPNOTSUPP;
991
992 return drv->resume(dev);
993}
Dexuan Cui1a06d012020-04-11 20:50:35 -0700994#else
995#define vmbus_suspend NULL
996#define vmbus_resume NULL
Dexuan Cui83b50f82019-09-19 21:46:12 +0000997#endif /* CONFIG_PM_SLEEP */
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -0700998
999/*
1000 * vmbus_device_release - Final callback release of the vmbus child device
1001 */
1002static void vmbus_device_release(struct device *device)
1003{
K. Y. Srinivasane8e27042011-06-06 15:50:04 -07001004 struct hv_device *hv_dev = device_to_hv_device(device);
Dexuan Cui34c68012015-12-14 16:01:49 -08001005 struct vmbus_channel *channel = hv_dev->channel;
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -07001006
Branden Bonabyaf9ca6f2019-10-03 17:01:49 -04001007 hv_debug_rm_dev_dir(hv_dev);
1008
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001009 mutex_lock(&vmbus_connection.channel_mutex);
Stephen Hemminger800b9322018-09-14 09:10:15 -07001010 hv_process_channel_removal(channel);
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001011 mutex_unlock(&vmbus_connection.channel_mutex);
K. Y. Srinivasane8e27042011-06-06 15:50:04 -07001012 kfree(hv_dev);
K. Y. Srinivasan086e7a52011-03-15 15:03:42 -07001013}
1014
Dexuan Cui271b2222019-09-05 23:01:17 +00001015/*
Dexuan Cui1a06d012020-04-11 20:50:35 -07001016 * Note: we must use the "noirq" ops: see the comment before vmbus_bus_pm.
1017 *
1018 * suspend_noirq/resume_noirq are set to NULL to support Suspend-to-Idle: we
1019 * shouldn't suspend the vmbus devices upon Suspend-to-Idle, otherwise there
1020 * is no way to wake up a Generation-2 VM.
1021 *
1022 * The other 4 ops are for hibernation.
Dexuan Cui271b2222019-09-05 23:01:17 +00001023 */
Dexuan Cui1a06d012020-04-11 20:50:35 -07001024
Dexuan Cui271b2222019-09-05 23:01:17 +00001025static const struct dev_pm_ops vmbus_pm = {
Dexuan Cui1a06d012020-04-11 20:50:35 -07001026 .suspend_noirq = NULL,
1027 .resume_noirq = NULL,
1028 .freeze_noirq = vmbus_suspend,
1029 .thaw_noirq = vmbus_resume,
1030 .poweroff_noirq = vmbus_suspend,
1031 .restore_noirq = vmbus_resume,
Dexuan Cui271b2222019-09-05 23:01:17 +00001032};
1033
Bill Pemberton454f18a2009-07-27 16:47:24 -04001034/* The one and only one */
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -07001035static struct bus_type hv_bus = {
1036 .name = "vmbus",
1037 .match = vmbus_match,
1038 .shutdown = vmbus_shutdown,
1039 .remove = vmbus_remove,
1040 .probe = vmbus_probe,
1041 .uevent = vmbus_uevent,
Stephen Hemmingerfc769362016-12-03 12:34:39 -08001042 .dev_groups = vmbus_dev_groups,
1043 .drv_groups = vmbus_drv_groups,
Dexuan Cuic068e3f2021-01-06 17:45:52 -08001044 .bus_groups = vmbus_bus_groups,
Dexuan Cui271b2222019-09-05 23:01:17 +00001045 .pm = &vmbus_pm,
Hank Janssen3e7ee492009-07-13 16:02:34 -07001046};
1047
Timo Teräsbf6506f2010-12-15 20:48:08 +02001048struct onmessage_work_context {
1049 struct work_struct work;
Vitaly Kuznetsova2764632020-04-06 12:41:51 +02001050 struct {
1051 struct hv_message_header header;
1052 u8 payload[];
1053 } msg;
Timo Teräsbf6506f2010-12-15 20:48:08 +02001054};
1055
1056static void vmbus_onmessage_work(struct work_struct *work)
1057{
1058 struct onmessage_work_context *ctx;
1059
Vitaly Kuznetsov09a19622015-02-27 11:25:54 -08001060 /* Do not process messages if we're in DISCONNECTED state */
1061 if (vmbus_connection.conn_state == DISCONNECTED)
1062 return;
1063
Timo Teräsbf6506f2010-12-15 20:48:08 +02001064 ctx = container_of(work, struct onmessage_work_context,
1065 work);
Vitaly Kuznetsov5cc41502020-04-06 12:41:52 +02001066 vmbus_onmessage((struct vmbus_channel_message_header *)
1067 &ctx->msg.payload);
Timo Teräsbf6506f2010-12-15 20:48:08 +02001068 kfree(ctx);
1069}
1070
K. Y. Srinivasand81274a2016-02-26 15:13:21 -08001071void vmbus_on_msg_dpc(unsigned long data)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001072{
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001073 struct hv_per_cpu_context *hv_cpu = (void *)data;
1074 void *page_addr = hv_cpu->synic_message_page;
Andrea Parri (Microsoft)fe8c1b12020-12-09 08:08:24 +01001075 struct hv_message msg_copy, *msg = (struct hv_message *)page_addr +
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001076 VMBUS_MESSAGE_SINT;
Dexuan Cui652594c2015-03-27 09:10:08 -07001077 struct vmbus_channel_message_header *hdr;
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001078 enum vmbus_channel_message_type msgtype;
Stephen Hemmingere6242fa2017-03-04 18:27:16 -07001079 const struct vmbus_channel_message_table_entry *entry;
Timo Teräsbf6506f2010-12-15 20:48:08 +02001080 struct onmessage_work_context *ctx;
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001081 __u8 payload_size;
Andrea Parri (Microsoft)fe8c1b12020-12-09 08:08:24 +01001082 u32 message_type;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001083
Vitaly Kuznetsovb0a284d2020-04-06 12:43:15 +02001084 /*
1085 * 'enum vmbus_channel_message_type' is supposed to always be 'u32' as
1086 * it is being used in 'struct vmbus_channel_message_header' definition
1087 * which is supposed to match hypervisor ABI.
1088 */
1089 BUILD_BUG_ON(sizeof(enum vmbus_channel_message_type) != sizeof(u32));
1090
Andrea Parri (Microsoft)fe8c1b12020-12-09 08:08:24 +01001091 /*
1092 * Since the message is in memory shared with the host, an erroneous or
1093 * malicious Hyper-V could modify the message while vmbus_on_msg_dpc()
1094 * or individual message handlers are executing; to prevent this, copy
1095 * the message into private memory.
1096 */
1097 memcpy(&msg_copy, msg, sizeof(struct hv_message));
1098
1099 message_type = msg_copy.header.message_type;
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -07001100 if (message_type == HVMSG_NONE)
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001101 /* no msg */
1102 return;
Dexuan Cui652594c2015-03-27 09:10:08 -07001103
Andrea Parri (Microsoft)fe8c1b12020-12-09 08:08:24 +01001104 hdr = (struct vmbus_channel_message_header *)msg_copy.u.payload;
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001105 msgtype = hdr->msgtype;
Dexuan Cui652594c2015-03-27 09:10:08 -07001106
Vitaly Kuznetsovc9fe0f82017-10-29 12:21:00 -07001107 trace_vmbus_on_msg_dpc(hdr);
1108
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001109 if (msgtype >= CHANNELMSG_COUNT) {
1110 WARN_ONCE(1, "unknown msgtype=%d\n", msgtype);
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001111 goto msg_handled;
1112 }
Dexuan Cui652594c2015-03-27 09:10:08 -07001113
Andrea Parri (Microsoft)fe8c1b12020-12-09 08:08:24 +01001114 payload_size = msg_copy.header.payload_size;
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001115 if (payload_size > HV_MESSAGE_PAYLOAD_BYTE_COUNT) {
1116 WARN_ONCE(1, "payload size is too large (%d)\n", payload_size);
Vitaly Kuznetsovac0f7d422020-04-06 12:41:50 +02001117 goto msg_handled;
1118 }
1119
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001120 entry = &channel_message_table[msgtype];
Dexuan Cuiddc9d352020-01-19 15:29:22 -08001121
1122 if (!entry->message_handler)
1123 goto msg_handled;
1124
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001125 if (payload_size < entry->min_payload_len) {
1126 WARN_ONCE(1, "message too short: msgtype=%d len=%d\n", msgtype, payload_size);
Vitaly Kuznetsov52c78032020-04-06 12:43:26 +02001127 goto msg_handled;
1128 }
1129
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001130 if (entry->handler_type == VMHT_BLOCKING) {
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001131 ctx = kmalloc(sizeof(*ctx) + payload_size, GFP_ATOMIC);
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001132 if (ctx == NULL)
1133 return;
Dexuan Cui652594c2015-03-27 09:10:08 -07001134
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001135 INIT_WORK(&ctx->work, vmbus_onmessage_work);
Andrea Parri (Microsoft)fe8c1b12020-12-09 08:08:24 +01001136 memcpy(&ctx->msg, &msg_copy, sizeof(msg->header) + payload_size);
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001137
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001138 /*
1139 * The host can generate a rescind message while we
1140 * may still be handling the original offer. We deal with
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001141 * this condition by relying on the synchronization provided
1142 * by offer_in_progress and by channel_mutex. See also the
1143 * inline comments in vmbus_onoffer_rescind().
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001144 */
Andrea Parri (Microsoft)9c400d32020-12-09 08:08:23 +01001145 switch (msgtype) {
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001146 case CHANNELMSG_RESCIND_CHANNELOFFER:
1147 /*
1148 * If we are handling the rescind message;
1149 * schedule the work on the global work queue.
Andrea Parri (Microsoft)8a857c52020-04-06 02:15:04 +02001150 *
1151 * The OFFER message and the RESCIND message should
1152 * not be handled by the same serialized work queue,
1153 * because the OFFER handler may call vmbus_open(),
1154 * which tries to open the channel by sending an
1155 * OPEN_CHANNEL message to the host and waits for
1156 * the host's response; however, if the host has
1157 * rescinded the channel before it receives the
1158 * OPEN_CHANNEL message, the host just silently
1159 * ignores the OPEN_CHANNEL message; as a result,
1160 * the guest's OFFER handler hangs for ever, if we
1161 * handle the RESCIND message in the same serialized
1162 * work queue: the RESCIND handler can not start to
1163 * run before the OFFER handler finishes.
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001164 */
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001165 schedule_work(&ctx->work);
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001166 break;
1167
1168 case CHANNELMSG_OFFERCHANNEL:
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001169 /*
1170 * The host sends the offer message of a given channel
1171 * before sending the rescind message of the same
1172 * channel. These messages are sent to the guest's
1173 * connect CPU; the guest then starts processing them
1174 * in the tasklet handler on this CPU:
1175 *
1176 * VMBUS_CONNECT_CPU
1177 *
1178 * [vmbus_on_msg_dpc()]
1179 * atomic_inc() // CHANNELMSG_OFFERCHANNEL
1180 * queue_work()
1181 * ...
1182 * [vmbus_on_msg_dpc()]
1183 * schedule_work() // CHANNELMSG_RESCIND_CHANNELOFFER
1184 *
1185 * We rely on the memory-ordering properties of the
1186 * queue_work() and schedule_work() primitives, which
1187 * guarantee that the atomic increment will be visible
1188 * to the CPUs which will execute the offer & rescind
1189 * works by the time these works will start execution.
1190 */
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001191 atomic_inc(&vmbus_connection.offer_in_progress);
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001192 fallthrough;
K. Y. Srinivasan54a662652017-04-30 16:21:18 -07001193
1194 default:
1195 queue_work(vmbus_connection.work_queue, &ctx->work);
1196 }
Vitaly Kuznetsov7be3e162016-02-26 15:13:15 -08001197 } else
1198 entry->message_handler(hdr);
Dexuan Cui652594c2015-03-27 09:10:08 -07001199
1200msg_handled:
Vitaly Kuznetsovcd95aad2016-04-30 19:21:34 -07001201 vmbus_signal_eom(msg, message_type);
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001202}
1203
Dexuan Cui83b50f82019-09-19 21:46:12 +00001204#ifdef CONFIG_PM_SLEEP
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001205/*
1206 * Fake RESCIND_CHANNEL messages to clean up hv_sock channels by force for
1207 * hibernation, because hv_sock connections can not persist across hibernation.
1208 */
1209static void vmbus_force_channel_rescinded(struct vmbus_channel *channel)
1210{
1211 struct onmessage_work_context *ctx;
1212 struct vmbus_channel_rescind_offer *rescind;
1213
1214 WARN_ON(!is_hvsock_channel(channel));
1215
1216 /*
Vitaly Kuznetsova2764632020-04-06 12:41:51 +02001217 * Allocation size is small and the allocation should really not fail,
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001218 * otherwise the state of the hv_sock connections ends up in limbo.
1219 */
Vitaly Kuznetsova2764632020-04-06 12:41:51 +02001220 ctx = kzalloc(sizeof(*ctx) + sizeof(*rescind),
1221 GFP_KERNEL | __GFP_NOFAIL);
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001222
1223 /*
1224 * So far, these are not really used by Linux. Just set them to the
1225 * reasonable values conforming to the definitions of the fields.
1226 */
1227 ctx->msg.header.message_type = 1;
1228 ctx->msg.header.payload_size = sizeof(*rescind);
1229
1230 /* These values are actually used by Linux. */
Vitaly Kuznetsova2764632020-04-06 12:41:51 +02001231 rescind = (struct vmbus_channel_rescind_offer *)ctx->msg.payload;
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001232 rescind->header.msgtype = CHANNELMSG_RESCIND_CHANNELOFFER;
1233 rescind->child_relid = channel->offermsg.child_relid;
1234
1235 INIT_WORK(&ctx->work, vmbus_onmessage_work);
1236
Andrea Parri (Microsoft)b9fa1b82020-04-06 02:15:05 +02001237 queue_work(vmbus_connection.work_queue, &ctx->work);
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00001238}
Dexuan Cui83b50f82019-09-19 21:46:12 +00001239#endif /* CONFIG_PM_SLEEP */
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001240
1241/*
1242 * Schedule all channels with events pending
1243 */
1244static void vmbus_chan_sched(struct hv_per_cpu_context *hv_cpu)
1245{
1246 unsigned long *recv_int_page;
1247 u32 maxbits, relid;
1248
1249 if (vmbus_proto_version < VERSION_WIN8) {
1250 maxbits = MAX_NUM_CHANNELS_SUPPORTED;
1251 recv_int_page = vmbus_connection.recv_int_page;
1252 } else {
1253 /*
1254 * When the host is win8 and beyond, the event page
1255 * can be directly checked to get the id of the channel
1256 * that has the interrupt pending.
1257 */
1258 void *page_addr = hv_cpu->synic_event_page;
1259 union hv_synic_event_flags *event
1260 = (union hv_synic_event_flags *)page_addr +
1261 VMBUS_MESSAGE_SINT;
1262
1263 maxbits = HV_EVENT_FLAGS_COUNT;
1264 recv_int_page = event->flags;
1265 }
1266
1267 if (unlikely(!recv_int_page))
1268 return;
1269
1270 for_each_set_bit(relid, recv_int_page, maxbits) {
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001271 void (*callback_fn)(void *context);
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001272 struct vmbus_channel *channel;
1273
1274 if (!sync_test_and_clear_bit(relid, recv_int_page))
1275 continue;
1276
1277 /* Special case - vmbus channel protocol msg */
1278 if (relid == 0)
1279 continue;
1280
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001281 /*
1282 * Pairs with the kfree_rcu() in vmbus_chan_release().
1283 * Guarantees that the channel data structure doesn't
1284 * get freed while the channel pointer below is being
1285 * dereferenced.
1286 */
Stephen Hemminger8200f202017-03-04 18:13:57 -07001287 rcu_read_lock();
1288
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001289 /* Find channel based on relid */
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001290 channel = relid2channel(relid);
1291 if (channel == NULL)
1292 goto sched_unlock_rcu;
Stephen Hemmingerb71e3282017-02-11 23:02:21 -07001293
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001294 if (channel->rescind)
1295 goto sched_unlock_rcu;
K. Y. Srinivasan6f3d7912017-08-11 10:03:59 -07001296
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001297 /*
1298 * Make sure that the ring buffer data structure doesn't get
1299 * freed while we dereference the ring buffer pointer. Test
1300 * for the channel's onchannel_callback being NULL within a
1301 * sched_lock critical section. See also the inline comments
1302 * in vmbus_reset_channel_cb().
1303 */
1304 spin_lock(&channel->sched_lock);
Vitaly Kuznetsov991f8f12017-10-29 12:21:16 -07001305
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001306 callback_fn = channel->onchannel_callback;
1307 if (unlikely(callback_fn == NULL))
1308 goto sched_unlock;
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001309
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001310 trace_vmbus_chan_sched(channel);
Stephen Hemmingerb71e3282017-02-11 23:02:21 -07001311
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001312 ++channel->interrupts;
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001313
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001314 switch (channel->callback_mode) {
1315 case HV_CALL_ISR:
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001316 (*callback_fn)(channel->channel_callback_context);
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001317 break;
Stephen Hemmingerb71e3282017-02-11 23:02:21 -07001318
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001319 case HV_CALL_BATCHED:
1320 hv_begin_read(&channel->inbound);
1321 fallthrough;
1322 case HV_CALL_DIRECT:
1323 tasklet_schedule(&channel->callback_event);
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001324 }
Stephen Hemminger8200f202017-03-04 18:13:57 -07001325
Andrea Parri (Microsoft)9403b662020-04-06 02:15:09 +02001326sched_unlock:
1327 spin_unlock(&channel->sched_lock);
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02001328sched_unlock_rcu:
Stephen Hemminger8200f202017-03-04 18:13:57 -07001329 rcu_read_unlock();
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001330 }
1331}
1332
Thomas Gleixner76d388c2014-03-05 13:42:14 +01001333static void vmbus_isr(void)
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001334{
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001335 struct hv_per_cpu_context *hv_cpu
1336 = this_cpu_ptr(hv_context.cpu_context);
1337 void *page_addr = hv_cpu->synic_event_page;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001338 struct hv_message *msg;
1339 union hv_synic_event_flags *event;
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -07001340 bool handled = false;
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001341
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001342 if (unlikely(page_addr == NULL))
Thomas Gleixner76d388c2014-03-05 13:42:14 +01001343 return;
K. Y. Srinivasan5ab05952012-12-01 06:46:55 -08001344
1345 event = (union hv_synic_event_flags *)page_addr +
1346 VMBUS_MESSAGE_SINT;
K. Y. Srinivasan7341d902011-08-31 14:35:56 -07001347 /*
1348 * Check for events before checking for messages. This is the order
1349 * in which events and messages are checked in Windows guests on
1350 * Hyper-V, and the Windows team suggested we do the same.
1351 */
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001352
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001353 if ((vmbus_proto_version == VERSION_WS2008) ||
1354 (vmbus_proto_version == VERSION_WIN7)) {
Greg Kroah-Hartman36199a92010-12-02 11:59:22 -08001355
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001356 /* Since we are a child, we only need to check bit 0 */
Stephen Hemminger5c1bec62017-02-05 17:20:31 -07001357 if (sync_test_and_clear_bit(0, event->flags))
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001358 handled = true;
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001359 } else {
1360 /*
1361 * Our host is win8 or above. The signaling mechanism
1362 * has changed and we can directly look at the event page.
1363 * If bit n is set then we have an interrup on the channel
1364 * whose id is n.
1365 */
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -07001366 handled = true;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -07001367 }
K. Y. Srinivasanae4636e2011-08-27 11:31:35 -07001368
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001369 if (handled)
Stephen Hemminger631e63a2017-02-11 23:02:20 -07001370 vmbus_chan_sched(hv_cpu);
K. Y. Srinivasan6552ecd72012-12-01 06:46:49 -08001371
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001372 page_addr = hv_cpu->synic_message_page;
K. Y. Srinivasan7341d902011-08-31 14:35:56 -07001373 msg = (struct hv_message *)page_addr + VMBUS_MESSAGE_SINT;
1374
1375 /* Check if there are actual msgs to be processed */
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -08001376 if (msg->header.message_type != HVMSG_NONE) {
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001377 if (msg->header.message_type == HVMSG_TIMER_EXPIRED) {
1378 hv_stimer0_isr();
1379 vmbus_signal_eom(msg, HVMSG_TIMER_EXPIRED);
1380 } else
Stephen Hemminger37cdd992017-02-11 23:02:19 -07001381 tasklet_schedule(&hv_cpu->msg_dpc);
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -08001382 }
Stephan Mueller4b44f2d2016-05-02 02:14:34 -04001383
Michael Kelleyd6087152021-03-02 13:38:18 -08001384 add_interrupt_randomness(vmbus_interrupt, 0);
1385}
1386
1387static irqreturn_t vmbus_percpu_isr(int irq, void *dev_id)
1388{
1389 vmbus_isr();
1390 return IRQ_HANDLED;
K. Y. Srinivasan793be9c2011-03-15 15:03:43 -07001391}
1392
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001393/*
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001394 * Callback from kmsg_dump. Grab as much as possible from the end of the kmsg
1395 * buffer and call into Hyper-V to transfer the data.
1396 */
1397static void hv_kmsg_dump(struct kmsg_dumper *dumper,
1398 enum kmsg_dump_reason reason)
1399{
John Ognessf9f3f022021-03-03 11:15:25 +01001400 struct kmsg_dump_iter iter;
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001401 size_t bytes_written;
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001402
1403 /* We are only interested in panics. */
1404 if ((reason != KMSG_DUMP_PANIC) || (!sysctl_record_panic_msg))
1405 return;
1406
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001407 /*
1408 * Write dump contents to the page. No need to synchronize; panic should
1409 * be single-threaded.
1410 */
John Ognessf9f3f022021-03-03 11:15:25 +01001411 kmsg_dump_rewind(&iter);
1412 kmsg_dump_get_buffer(&iter, false, hv_panic_page, HV_HYP_PAGE_SIZE,
Sunil Muthuswamyddcaf3c2018-07-28 21:58:45 +00001413 &bytes_written);
Michael Kelleyb548a772021-03-02 13:38:16 -08001414 if (!bytes_written)
1415 return;
1416 /*
1417 * P3 to contain the physical address of the panic page & P4 to
1418 * contain the size of the panic data in that page. Rest of the
1419 * registers are no-op when the NOTIFY_MSG flag is set.
1420 */
1421 hv_set_register(HV_REGISTER_CRASH_P0, 0);
1422 hv_set_register(HV_REGISTER_CRASH_P1, 0);
1423 hv_set_register(HV_REGISTER_CRASH_P2, 0);
1424 hv_set_register(HV_REGISTER_CRASH_P3, virt_to_phys(hv_panic_page));
1425 hv_set_register(HV_REGISTER_CRASH_P4, bytes_written);
1426
1427 /*
1428 * Let Hyper-V know there is crash data available along with
1429 * the panic message.
1430 */
1431 hv_set_register(HV_REGISTER_CRASH_CTL,
1432 (HV_CRASH_CTL_CRASH_NOTIFY | HV_CRASH_CTL_CRASH_NOTIFY_MSG));
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001433}
1434
1435static struct kmsg_dumper hv_kmsg_dumper = {
1436 .dump = hv_kmsg_dump,
1437};
1438
Matheus Castellob0c03ef2020-11-25 00:29:26 -03001439static void hv_kmsg_dump_register(void)
1440{
1441 int ret;
1442
1443 hv_panic_page = hv_alloc_hyperv_zeroed_page();
1444 if (!hv_panic_page) {
1445 pr_err("Hyper-V: panic message page memory allocation failed\n");
1446 return;
1447 }
1448
1449 ret = kmsg_dump_register(&hv_kmsg_dumper);
1450 if (ret) {
1451 pr_err("Hyper-V: kmsg dump register error 0x%x\n", ret);
1452 hv_free_hyperv_page((unsigned long)hv_panic_page);
1453 hv_panic_page = NULL;
1454 }
1455}
1456
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001457static struct ctl_table_header *hv_ctl_table_hdr;
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001458
1459/*
1460 * sysctl option to allow the user to control whether kmsg data should be
1461 * reported to Hyper-V on panic.
1462 */
1463static struct ctl_table hv_ctl_table[] = {
1464 {
1465 .procname = "hyperv_record_panic_msg",
1466 .data = &sysctl_record_panic_msg,
1467 .maxlen = sizeof(int),
1468 .mode = 0644,
1469 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -07001470 .extra1 = SYSCTL_ZERO,
1471 .extra2 = SYSCTL_ONE
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001472 },
1473 {}
1474};
1475
1476static struct ctl_table hv_root_table[] = {
1477 {
1478 .procname = "kernel",
1479 .mode = 0555,
1480 .child = hv_ctl_table
1481 },
1482 {}
1483};
Vitaly Kuznetsove5132292015-02-27 11:25:51 -08001484
Hank Janssen3e189512010-03-04 22:11:00 +00001485/*
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001486 * vmbus_bus_init -Main vmbus driver initialization routine.
1487 *
1488 * Here, we
Lars Lindley0686e4f2010-03-11 23:51:23 +01001489 * - initialize the vmbus driver context
Lars Lindley0686e4f2010-03-11 23:51:23 +01001490 * - invoke the vmbus hv main init routine
Lars Lindley0686e4f2010-03-11 23:51:23 +01001491 * - retrieve the channel offers
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001492 */
K. Y. Srinivasanefc26722015-12-14 16:01:46 -08001493static int vmbus_bus_init(void)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001494{
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001495 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001496
Greg Kroah-Hartman6d26e38fa22010-12-02 12:08:08 -08001497 ret = hv_init();
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001498 if (ret != 0) {
Hank Janssen0a466182011-03-29 13:58:47 -07001499 pr_err("Unable to initialize the hypervisor - 0x%x\n", ret);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -07001500 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001501 }
1502
K. Y. Srinivasan9adcac52011-04-29 13:45:08 -07001503 ret = bus_register(&hv_bus);
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -07001504 if (ret)
Vitaly Kuznetsovd6f36092017-01-28 12:37:14 -07001505 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001506
Michael Kelleyd6087152021-03-02 13:38:18 -08001507 /*
1508 * VMbus interrupts are best modeled as per-cpu interrupts. If
1509 * on an architecture with support for per-cpu IRQs (e.g. ARM64),
1510 * allocate a per-cpu IRQ using standard Linux kernel functionality.
1511 * If not on such an architecture (e.g., x86/x64), then rely on
1512 * code in the arch-specific portion of the code tree to connect
1513 * the VMbus interrupt handler.
1514 */
1515
1516 if (vmbus_irq == -1) {
1517 hv_setup_vmbus_handler(vmbus_isr);
1518 } else {
1519 vmbus_evt = alloc_percpu(long);
1520 ret = request_percpu_irq(vmbus_irq, vmbus_percpu_isr,
1521 "Hyper-V VMbus", vmbus_evt);
1522 if (ret) {
1523 pr_err("Can't request Hyper-V VMbus IRQ %d, Err %d",
1524 vmbus_irq, ret);
1525 free_percpu(vmbus_evt);
1526 goto err_setup;
1527 }
1528 }
Hank Janssen3e7ee492009-07-13 16:02:34 -07001529
Jason Wang2608fb62013-06-19 11:28:10 +08001530 ret = hv_synic_alloc();
1531 if (ret)
1532 goto err_alloc;
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001533
K. Y. Srinivasan800b6902011-03-15 15:03:33 -07001534 /*
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001535 * Initialize the per-cpu interrupt state and stimer state.
1536 * Then connect to the host.
K. Y. Srinivasan800b6902011-03-15 15:03:33 -07001537 */
Michael Kelley4a5f3cd2017-12-22 11:19:02 -07001538 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "hyperv/vmbus:online",
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08001539 hv_synic_init, hv_synic_cleanup);
1540 if (ret < 0)
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001541 goto err_cpuhp;
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08001542 hyperv_cpuhp_online = ret;
1543
K. Y. Srinivasan800b6902011-03-15 15:03:33 -07001544 ret = vmbus_connect();
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -07001545 if (ret)
Andrey Smetanin17efbee2015-12-14 16:01:38 -08001546 goto err_connect;
K. Y. Srinivasan800b6902011-03-15 15:03:33 -07001547
Nick Meier96c1d052015-02-28 11:39:01 -08001548 /*
1549 * Only register if the crash MSRs are available
1550 */
Denis V. Lunevcc2dd402015-08-01 16:08:20 -07001551 if (ms_hyperv.misc_features & HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE) {
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001552 u64 hyperv_crash_ctl;
1553 /*
1554 * Sysctl registration is not fatal, since by default
1555 * reporting is enabled.
1556 */
1557 hv_ctl_table_hdr = register_sysctl_table(hv_root_table);
1558 if (!hv_ctl_table_hdr)
1559 pr_err("Hyper-V: sysctl table register error");
1560
1561 /*
1562 * Register for panic kmsg callback only if the right
1563 * capability is supported by the hypervisor.
1564 */
Michael Kelleyf3c5e632021-03-02 13:38:15 -08001565 hyperv_crash_ctl = hv_get_register(HV_REGISTER_CRASH_CTL);
Matheus Castellob0c03ef2020-11-25 00:29:26 -03001566 if (hyperv_crash_ctl & HV_CRASH_CTL_CRASH_NOTIFY_MSG)
1567 hv_kmsg_dump_register();
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00001568
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -07001569 register_die_notifier(&hyperv_die_block);
Nick Meier96c1d052015-02-28 11:39:01 -08001570 }
1571
Tianyu Lan74347a92020-04-06 08:53:26 -07001572 /*
1573 * Always register the panic notifier because we need to unload
1574 * the VMbus channel connection to prevent any VMbus
1575 * activity after the VM panics.
1576 */
1577 atomic_notifier_chain_register(&panic_notifier_list,
1578 &hyperv_panic_block);
1579
Greg Kroah-Hartman2d6e8822010-12-02 08:50:58 -08001580 vmbus_request_offers();
Haiyang Zhang8b5d6d32010-05-28 23:22:44 +00001581
K. Y. Srinivasand6c1c5d2011-06-06 15:50:08 -07001582 return 0;
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -07001583
Andrey Smetanin17efbee2015-12-14 16:01:38 -08001584err_connect:
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08001585 cpuhp_remove_state(hyperv_cpuhp_online);
Michael Kelleyfd1fea62019-07-01 04:25:56 +00001586err_cpuhp:
Jason Wang2608fb62013-06-19 11:28:10 +08001587 hv_synic_free();
Michael Kelley4df4cb9e92019-11-13 01:11:49 +00001588err_alloc:
Michael Kelleyd6087152021-03-02 13:38:18 -08001589 if (vmbus_irq == -1) {
1590 hv_remove_vmbus_handler();
1591 } else {
1592 free_percpu_irq(vmbus_irq, vmbus_evt);
1593 free_percpu(vmbus_evt);
1594 }
Michael Kelley626b9012020-08-14 12:45:04 -07001595err_setup:
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -07001596 bus_unregister(&hv_bus);
Sunil Muthuswamy8afc06d2018-07-28 21:58:46 +00001597 unregister_sysctl_table(hv_ctl_table_hdr);
1598 hv_ctl_table_hdr = NULL;
K. Y. Srinivasan8b9987e92011-08-31 14:35:55 -07001599 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001600}
1601
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001602/**
Jake Oshins35464482015-08-05 00:52:37 -07001603 * __vmbus_child_driver_register() - Register a vmbus's driver
1604 * @hv_driver: Pointer to driver structure you want to register
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001605 * @owner: owner module of the drv
1606 * @mod_name: module name string
Hank Janssen3e189512010-03-04 22:11:00 +00001607 *
1608 * Registers the given driver with Linux through the 'driver_register()' call
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001609 * and sets up the hyper-v vmbus handling for this driver.
Hank Janssen3e189512010-03-04 22:11:00 +00001610 * It will return the state of the 'driver_register()' call.
1611 *
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001612 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001613int __vmbus_driver_register(struct hv_driver *hv_driver, struct module *owner, const char *mod_name)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001614{
Bill Pemberton5d48a1c2009-07-27 16:47:36 -04001615 int ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001616
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001617 pr_info("registering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001618
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -08001619 ret = vmbus_exists();
1620 if (ret < 0)
1621 return ret;
1622
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001623 hv_driver->driver.name = hv_driver->name;
1624 hv_driver->driver.owner = owner;
1625 hv_driver->driver.mod_name = mod_name;
1626 hv_driver->driver.bus = &hv_bus;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001627
Stephen Hemmingerfc769362016-12-03 12:34:39 -08001628 spin_lock_init(&hv_driver->dynids.lock);
1629 INIT_LIST_HEAD(&hv_driver->dynids.list);
1630
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001631 ret = driver_register(&hv_driver->driver);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001632
Bill Pemberton5d48a1c2009-07-27 16:47:36 -04001633 return ret;
Hank Janssen3e7ee492009-07-13 16:02:34 -07001634}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001635EXPORT_SYMBOL_GPL(__vmbus_driver_register);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001636
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001637/**
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001638 * vmbus_driver_unregister() - Unregister a vmbus's driver
Jake Oshins35464482015-08-05 00:52:37 -07001639 * @hv_driver: Pointer to driver structure you want to
1640 * un-register
Hank Janssen3e189512010-03-04 22:11:00 +00001641 *
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001642 * Un-register the given driver that was previous registered with a call to
1643 * vmbus_driver_register()
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07001644 */
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001645void vmbus_driver_unregister(struct hv_driver *hv_driver)
Hank Janssen3e7ee492009-07-13 16:02:34 -07001646{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001647 pr_info("unregistering driver %s\n", hv_driver->name);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001648
Stephen Hemmingerfc769362016-12-03 12:34:39 -08001649 if (!vmbus_exists()) {
K. Y. Srinivasan8f257a12011-12-27 13:49:37 -08001650 driver_unregister(&hv_driver->driver);
Stephen Hemmingerfc769362016-12-03 12:34:39 -08001651 vmbus_free_dynids(hv_driver);
1652 }
Hank Janssen3e7ee492009-07-13 16:02:34 -07001653}
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -07001654EXPORT_SYMBOL_GPL(vmbus_driver_unregister);
Hank Janssen3e7ee492009-07-13 16:02:34 -07001655
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001656
1657/*
1658 * Called when last reference to channel is gone.
1659 */
1660static void vmbus_chan_release(struct kobject *kobj)
1661{
1662 struct vmbus_channel *channel
1663 = container_of(kobj, struct vmbus_channel, kobj);
1664
1665 kfree_rcu(channel, rcu);
1666}
1667
1668struct vmbus_chan_attribute {
1669 struct attribute attr;
Kimberly Brown14948e32019-03-14 16:05:15 -04001670 ssize_t (*show)(struct vmbus_channel *chan, char *buf);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001671 ssize_t (*store)(struct vmbus_channel *chan,
1672 const char *buf, size_t count);
1673};
1674#define VMBUS_CHAN_ATTR(_name, _mode, _show, _store) \
1675 struct vmbus_chan_attribute chan_attr_##_name \
1676 = __ATTR(_name, _mode, _show, _store)
1677#define VMBUS_CHAN_ATTR_RW(_name) \
1678 struct vmbus_chan_attribute chan_attr_##_name = __ATTR_RW(_name)
1679#define VMBUS_CHAN_ATTR_RO(_name) \
1680 struct vmbus_chan_attribute chan_attr_##_name = __ATTR_RO(_name)
1681#define VMBUS_CHAN_ATTR_WO(_name) \
1682 struct vmbus_chan_attribute chan_attr_##_name = __ATTR_WO(_name)
1683
1684static ssize_t vmbus_chan_attr_show(struct kobject *kobj,
1685 struct attribute *attr, char *buf)
1686{
1687 const struct vmbus_chan_attribute *attribute
1688 = container_of(attr, struct vmbus_chan_attribute, attr);
Kimberly Brown14948e32019-03-14 16:05:15 -04001689 struct vmbus_channel *chan
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001690 = container_of(kobj, struct vmbus_channel, kobj);
1691
1692 if (!attribute->show)
1693 return -EIO;
1694
1695 return attribute->show(chan, buf);
1696}
1697
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001698static ssize_t vmbus_chan_attr_store(struct kobject *kobj,
1699 struct attribute *attr, const char *buf,
1700 size_t count)
1701{
1702 const struct vmbus_chan_attribute *attribute
1703 = container_of(attr, struct vmbus_chan_attribute, attr);
1704 struct vmbus_channel *chan
1705 = container_of(kobj, struct vmbus_channel, kobj);
1706
1707 if (!attribute->store)
1708 return -EIO;
1709
1710 return attribute->store(chan, buf, count);
1711}
1712
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001713static const struct sysfs_ops vmbus_chan_sysfs_ops = {
1714 .show = vmbus_chan_attr_show,
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001715 .store = vmbus_chan_attr_store,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001716};
1717
Kimberly Brown14948e32019-03-14 16:05:15 -04001718static ssize_t out_mask_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001719{
Kimberly Brown14948e32019-03-14 16:05:15 -04001720 struct hv_ring_buffer_info *rbi = &channel->outbound;
1721 ssize_t ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001722
Kimberly Brown14948e32019-03-14 16:05:15 -04001723 mutex_lock(&rbi->ring_buffer_mutex);
1724 if (!rbi->ring_buffer) {
1725 mutex_unlock(&rbi->ring_buffer_mutex);
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001726 return -EINVAL;
Kimberly Brown14948e32019-03-14 16:05:15 -04001727 }
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001728
Kimberly Brown14948e32019-03-14 16:05:15 -04001729 ret = sprintf(buf, "%u\n", rbi->ring_buffer->interrupt_mask);
1730 mutex_unlock(&rbi->ring_buffer_mutex);
1731 return ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001732}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001733static VMBUS_CHAN_ATTR_RO(out_mask);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001734
Kimberly Brown14948e32019-03-14 16:05:15 -04001735static ssize_t in_mask_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001736{
Kimberly Brown14948e32019-03-14 16:05:15 -04001737 struct hv_ring_buffer_info *rbi = &channel->inbound;
1738 ssize_t ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001739
Kimberly Brown14948e32019-03-14 16:05:15 -04001740 mutex_lock(&rbi->ring_buffer_mutex);
1741 if (!rbi->ring_buffer) {
1742 mutex_unlock(&rbi->ring_buffer_mutex);
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001743 return -EINVAL;
Kimberly Brown14948e32019-03-14 16:05:15 -04001744 }
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001745
Kimberly Brown14948e32019-03-14 16:05:15 -04001746 ret = sprintf(buf, "%u\n", rbi->ring_buffer->interrupt_mask);
1747 mutex_unlock(&rbi->ring_buffer_mutex);
1748 return ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001749}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001750static VMBUS_CHAN_ATTR_RO(in_mask);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001751
Kimberly Brown14948e32019-03-14 16:05:15 -04001752static ssize_t read_avail_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001753{
Kimberly Brown14948e32019-03-14 16:05:15 -04001754 struct hv_ring_buffer_info *rbi = &channel->inbound;
1755 ssize_t ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001756
Kimberly Brown14948e32019-03-14 16:05:15 -04001757 mutex_lock(&rbi->ring_buffer_mutex);
1758 if (!rbi->ring_buffer) {
1759 mutex_unlock(&rbi->ring_buffer_mutex);
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001760 return -EINVAL;
Kimberly Brown14948e32019-03-14 16:05:15 -04001761 }
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001762
Kimberly Brown14948e32019-03-14 16:05:15 -04001763 ret = sprintf(buf, "%u\n", hv_get_bytes_to_read(rbi));
1764 mutex_unlock(&rbi->ring_buffer_mutex);
1765 return ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001766}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001767static VMBUS_CHAN_ATTR_RO(read_avail);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001768
Kimberly Brown14948e32019-03-14 16:05:15 -04001769static ssize_t write_avail_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001770{
Kimberly Brown14948e32019-03-14 16:05:15 -04001771 struct hv_ring_buffer_info *rbi = &channel->outbound;
1772 ssize_t ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001773
Kimberly Brown14948e32019-03-14 16:05:15 -04001774 mutex_lock(&rbi->ring_buffer_mutex);
1775 if (!rbi->ring_buffer) {
1776 mutex_unlock(&rbi->ring_buffer_mutex);
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001777 return -EINVAL;
Kimberly Brown14948e32019-03-14 16:05:15 -04001778 }
Kimberly Brownfcedbb22019-03-14 16:05:00 -04001779
Kimberly Brown14948e32019-03-14 16:05:15 -04001780 ret = sprintf(buf, "%u\n", hv_get_bytes_to_write(rbi));
1781 mutex_unlock(&rbi->ring_buffer_mutex);
1782 return ret;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001783}
Stephen Hemminger875c3622018-01-04 14:13:25 -08001784static VMBUS_CHAN_ATTR_RO(write_avail);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001785
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001786static ssize_t target_cpu_show(struct vmbus_channel *channel, char *buf)
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001787{
1788 return sprintf(buf, "%u\n", channel->target_cpu);
1789}
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001790static ssize_t target_cpu_store(struct vmbus_channel *channel,
1791 const char *buf, size_t count)
1792{
Andrea Parri (Microsoft)afaa33d2020-05-22 19:19:01 +02001793 u32 target_cpu, origin_cpu;
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001794 ssize_t ret = count;
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001795
1796 if (vmbus_proto_version < VERSION_WIN10_V4_1)
1797 return -EIO;
1798
1799 if (sscanf(buf, "%uu", &target_cpu) != 1)
1800 return -EIO;
1801
1802 /* Validate target_cpu for the cpumask_test_cpu() operation below. */
1803 if (target_cpu >= nr_cpumask_bits)
1804 return -EINVAL;
1805
1806 /* No CPUs should come up or down during this. */
1807 cpus_read_lock();
1808
Andrea Parri (Microsoft)0a968202020-06-17 18:46:37 +02001809 if (!cpu_online(target_cpu)) {
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001810 cpus_read_unlock();
1811 return -EINVAL;
1812 }
1813
1814 /*
1815 * Synchronizes target_cpu_store() and channel closure:
1816 *
1817 * { Initially: state = CHANNEL_OPENED }
1818 *
1819 * CPU1 CPU2
1820 *
1821 * [target_cpu_store()] [vmbus_disconnect_ring()]
1822 *
1823 * LOCK channel_mutex LOCK channel_mutex
1824 * LOAD r1 = state LOAD r2 = state
1825 * IF (r1 == CHANNEL_OPENED) IF (r2 == CHANNEL_OPENED)
1826 * SEND MODIFYCHANNEL STORE state = CHANNEL_OPEN
1827 * [...] SEND CLOSECHANNEL
1828 * UNLOCK channel_mutex UNLOCK channel_mutex
1829 *
1830 * Forbids: r1 == r2 == CHANNEL_OPENED (i.e., CPU1's LOCK precedes
1831 * CPU2's LOCK) && CPU2's SEND precedes CPU1's SEND
1832 *
1833 * Note. The host processes the channel messages "sequentially", in
1834 * the order in which they are received on a per-partition basis.
1835 */
1836 mutex_lock(&vmbus_connection.channel_mutex);
1837
1838 /*
1839 * Hyper-V will ignore MODIFYCHANNEL messages for "non-open" channels;
1840 * avoid sending the message and fail here for such channels.
1841 */
1842 if (channel->state != CHANNEL_OPENED_STATE) {
1843 ret = -EIO;
1844 goto cpu_store_unlock;
1845 }
1846
Andrea Parri (Microsoft)afaa33d2020-05-22 19:19:01 +02001847 origin_cpu = channel->target_cpu;
1848 if (target_cpu == origin_cpu)
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001849 goto cpu_store_unlock;
1850
Andrea Parri (Microsoft)870ced02021-04-16 16:34:48 +02001851 if (vmbus_send_modifychannel(channel,
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001852 hv_cpu_number_to_vp_number(target_cpu))) {
1853 ret = -EIO;
1854 goto cpu_store_unlock;
1855 }
1856
1857 /*
Andrea Parri (Microsoft)870ced02021-04-16 16:34:48 +02001858 * For version before VERSION_WIN10_V5_3, the following warning holds:
1859 *
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001860 * Warning. At this point, there is *no* guarantee that the host will
1861 * have successfully processed the vmbus_send_modifychannel() request.
1862 * See the header comment of vmbus_send_modifychannel() for more info.
1863 *
1864 * Lags in the processing of the above vmbus_send_modifychannel() can
1865 * result in missed interrupts if the "old" target CPU is taken offline
1866 * before Hyper-V starts sending interrupts to the "new" target CPU.
1867 * But apart from this offlining scenario, the code tolerates such
1868 * lags. It will function correctly even if a channel interrupt comes
1869 * in on a CPU that is different from the channel target_cpu value.
1870 */
1871
1872 channel->target_cpu = target_cpu;
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001873
Andrea Parri (Microsoft)afaa33d2020-05-22 19:19:01 +02001874 /* See init_vp_index(). */
1875 if (hv_is_perf_channel(channel))
1876 hv_update_alloced_cpus(origin_cpu, target_cpu);
1877
1878 /* Currently set only for storvsc channels. */
1879 if (channel->change_target_cpu_callback) {
1880 (*channel->change_target_cpu_callback)(channel,
1881 origin_cpu, target_cpu);
1882 }
1883
Andrea Parri (Microsoft)75278102020-04-06 02:15:13 +02001884cpu_store_unlock:
1885 mutex_unlock(&vmbus_connection.channel_mutex);
1886 cpus_read_unlock();
1887 return ret;
1888}
1889static VMBUS_CHAN_ATTR(cpu, 0644, target_cpu_show, target_cpu_store);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001890
Kimberly Brown14948e32019-03-14 16:05:15 -04001891static ssize_t channel_pending_show(struct vmbus_channel *channel,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001892 char *buf)
1893{
1894 return sprintf(buf, "%d\n",
1895 channel_pending(channel,
1896 vmbus_connection.monitor_pages[1]));
1897}
Matheus Castellof0434de42020-11-15 16:57:30 -03001898static VMBUS_CHAN_ATTR(pending, 0444, channel_pending_show, NULL);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001899
Kimberly Brown14948e32019-03-14 16:05:15 -04001900static ssize_t channel_latency_show(struct vmbus_channel *channel,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001901 char *buf)
1902{
1903 return sprintf(buf, "%d\n",
1904 channel_latency(channel,
1905 vmbus_connection.monitor_pages[1]));
1906}
Matheus Castellof0434de42020-11-15 16:57:30 -03001907static VMBUS_CHAN_ATTR(latency, 0444, channel_latency_show, NULL);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001908
Kimberly Brown14948e32019-03-14 16:05:15 -04001909static ssize_t channel_interrupts_show(struct vmbus_channel *channel, char *buf)
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001910{
1911 return sprintf(buf, "%llu\n", channel->interrupts);
1912}
Matheus Castellof0434de42020-11-15 16:57:30 -03001913static VMBUS_CHAN_ATTR(interrupts, 0444, channel_interrupts_show, NULL);
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001914
Kimberly Brown14948e32019-03-14 16:05:15 -04001915static ssize_t channel_events_show(struct vmbus_channel *channel, char *buf)
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001916{
1917 return sprintf(buf, "%llu\n", channel->sig_events);
1918}
Matheus Castellof0434de42020-11-15 16:57:30 -03001919static VMBUS_CHAN_ATTR(events, 0444, channel_events_show, NULL);
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001920
Kimberly Brown14948e32019-03-14 16:05:15 -04001921static ssize_t channel_intr_in_full_show(struct vmbus_channel *channel,
Kimberly Brown396ae572019-02-04 02:13:09 -05001922 char *buf)
1923{
1924 return sprintf(buf, "%llu\n",
1925 (unsigned long long)channel->intr_in_full);
1926}
1927static VMBUS_CHAN_ATTR(intr_in_full, 0444, channel_intr_in_full_show, NULL);
1928
Kimberly Brown14948e32019-03-14 16:05:15 -04001929static ssize_t channel_intr_out_empty_show(struct vmbus_channel *channel,
Kimberly Brown396ae572019-02-04 02:13:09 -05001930 char *buf)
1931{
1932 return sprintf(buf, "%llu\n",
1933 (unsigned long long)channel->intr_out_empty);
1934}
1935static VMBUS_CHAN_ATTR(intr_out_empty, 0444, channel_intr_out_empty_show, NULL);
1936
Kimberly Brown14948e32019-03-14 16:05:15 -04001937static ssize_t channel_out_full_first_show(struct vmbus_channel *channel,
Kimberly Brown396ae572019-02-04 02:13:09 -05001938 char *buf)
1939{
1940 return sprintf(buf, "%llu\n",
1941 (unsigned long long)channel->out_full_first);
1942}
1943static VMBUS_CHAN_ATTR(out_full_first, 0444, channel_out_full_first_show, NULL);
1944
Kimberly Brown14948e32019-03-14 16:05:15 -04001945static ssize_t channel_out_full_total_show(struct vmbus_channel *channel,
Kimberly Brown396ae572019-02-04 02:13:09 -05001946 char *buf)
1947{
1948 return sprintf(buf, "%llu\n",
1949 (unsigned long long)channel->out_full_total);
1950}
1951static VMBUS_CHAN_ATTR(out_full_total, 0444, channel_out_full_total_show, NULL);
1952
Kimberly Brown14948e32019-03-14 16:05:15 -04001953static ssize_t subchannel_monitor_id_show(struct vmbus_channel *channel,
Stephen Hemmingerf0fa2972018-01-09 10:29:06 -08001954 char *buf)
1955{
1956 return sprintf(buf, "%u\n", channel->offermsg.monitorid);
1957}
Matheus Castellof0434de42020-11-15 16:57:30 -03001958static VMBUS_CHAN_ATTR(monitor_id, 0444, subchannel_monitor_id_show, NULL);
Stephen Hemmingerf0fa2972018-01-09 10:29:06 -08001959
Kimberly Brown14948e32019-03-14 16:05:15 -04001960static ssize_t subchannel_id_show(struct vmbus_channel *channel,
Stephen Hemmingerf0fa2972018-01-09 10:29:06 -08001961 char *buf)
1962{
1963 return sprintf(buf, "%u\n",
1964 channel->offermsg.offer.sub_channel_index);
1965}
1966static VMBUS_CHAN_ATTR_RO(subchannel_id);
1967
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001968static struct attribute *vmbus_chan_attrs[] = {
1969 &chan_attr_out_mask.attr,
1970 &chan_attr_in_mask.attr,
1971 &chan_attr_read_avail.attr,
1972 &chan_attr_write_avail.attr,
1973 &chan_attr_cpu.attr,
1974 &chan_attr_pending.attr,
1975 &chan_attr_latency.attr,
Stephen Hemminger6981fbf2017-10-29 11:33:40 -07001976 &chan_attr_interrupts.attr,
1977 &chan_attr_events.attr,
Kimberly Brown396ae572019-02-04 02:13:09 -05001978 &chan_attr_intr_in_full.attr,
1979 &chan_attr_intr_out_empty.attr,
1980 &chan_attr_out_full_first.attr,
1981 &chan_attr_out_full_total.attr,
Stephen Hemmingerf0fa2972018-01-09 10:29:06 -08001982 &chan_attr_monitor_id.attr,
1983 &chan_attr_subchannel_id.attr,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07001984 NULL
1985};
1986
Kimberly Brown46fc1542019-03-19 00:04:01 -04001987/*
1988 * Channel-level attribute_group callback function. Returns the permission for
1989 * each attribute, and returns 0 if an attribute is not visible.
1990 */
1991static umode_t vmbus_chan_attr_is_visible(struct kobject *kobj,
1992 struct attribute *attr, int idx)
1993{
1994 const struct vmbus_channel *channel =
1995 container_of(kobj, struct vmbus_channel, kobj);
1996
1997 /* Hide the monitor attributes if the monitor mechanism is not used. */
1998 if (!channel->offermsg.monitor_allocated &&
1999 (attr == &chan_attr_pending.attr ||
2000 attr == &chan_attr_latency.attr ||
2001 attr == &chan_attr_monitor_id.attr))
2002 return 0;
2003
2004 return attr->mode;
2005}
2006
2007static struct attribute_group vmbus_chan_group = {
2008 .attrs = vmbus_chan_attrs,
2009 .is_visible = vmbus_chan_attr_is_visible
2010};
2011
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002012static struct kobj_type vmbus_chan_ktype = {
2013 .sysfs_ops = &vmbus_chan_sysfs_ops,
2014 .release = vmbus_chan_release,
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002015};
2016
2017/*
2018 * vmbus_add_channel_kobj - setup a sub-directory under device/channels
2019 */
2020int vmbus_add_channel_kobj(struct hv_device *dev, struct vmbus_channel *channel)
2021{
Kimberly Brown46fc1542019-03-19 00:04:01 -04002022 const struct device *device = &dev->device;
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002023 struct kobject *kobj = &channel->kobj;
2024 u32 relid = channel->offermsg.child_relid;
2025 int ret;
2026
2027 kobj->kset = dev->channels_kset;
2028 ret = kobject_init_and_add(kobj, &vmbus_chan_ktype, NULL,
2029 "%u", relid);
2030 if (ret)
2031 return ret;
2032
Kimberly Brown46fc1542019-03-19 00:04:01 -04002033 ret = sysfs_create_group(kobj, &vmbus_chan_group);
2034
2035 if (ret) {
2036 /*
2037 * The calling functions' error handling paths will cleanup the
2038 * empty channel directory.
2039 */
2040 dev_err(device, "Unable to set up channel sysfs files\n");
2041 return ret;
2042 }
2043
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002044 kobject_uevent(kobj, KOBJ_ADD);
2045
2046 return 0;
2047}
2048
Hank Janssen3e189512010-03-04 22:11:00 +00002049/*
Kimberly Brown46fc1542019-03-19 00:04:01 -04002050 * vmbus_remove_channel_attr_group - remove the channel's attribute group
2051 */
2052void vmbus_remove_channel_attr_group(struct vmbus_channel *channel)
2053{
2054 sysfs_remove_group(&channel->kobj, &vmbus_chan_group);
2055}
2056
2057/*
K. Y. Srinivasanf2c73012011-09-08 07:24:12 -07002058 * vmbus_device_create - Creates and registers a new child device
Hank Janssen3e189512010-03-04 22:11:00 +00002059 * on the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002060 */
Andy Shevchenko593db802019-01-10 16:25:32 +02002061struct hv_device *vmbus_device_create(const guid_t *type,
2062 const guid_t *instance,
stephen hemminger1b9d48f2014-06-03 08:38:15 -07002063 struct vmbus_channel *channel)
Hank Janssen3e7ee492009-07-13 16:02:34 -07002064{
Nicolas Palix3d3b5512009-07-28 17:32:53 +02002065 struct hv_device *child_device_obj;
Hank Janssen3e7ee492009-07-13 16:02:34 -07002066
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08002067 child_device_obj = kzalloc(sizeof(struct hv_device), GFP_KERNEL);
2068 if (!child_device_obj) {
Hank Janssen0a466182011-03-29 13:58:47 -07002069 pr_err("Unable to allocate device object for child device\n");
Hank Janssen3e7ee492009-07-13 16:02:34 -07002070 return NULL;
2071 }
2072
Greg Kroah-Hartmancae5b842010-10-21 09:05:27 -07002073 child_device_obj->channel = channel;
Andy Shevchenko593db802019-01-10 16:25:32 +02002074 guid_copy(&child_device_obj->dev_type, type);
2075 guid_copy(&child_device_obj->dev_instance, instance);
K. Y. Srinivasan7047f172015-12-25 20:00:30 -08002076 child_device_obj->vendor_id = 0x1414; /* MSFT vendor ID */
Hank Janssen3e7ee492009-07-13 16:02:34 -07002077
Hank Janssen3e7ee492009-07-13 16:02:34 -07002078 return child_device_obj;
2079}
2080
Hank Janssen3e189512010-03-04 22:11:00 +00002081/*
K. Y. Srinivasan227942812011-09-08 07:24:13 -07002082 * vmbus_device_register - Register the child device
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002083 */
K. Y. Srinivasan227942812011-09-08 07:24:13 -07002084int vmbus_device_register(struct hv_device *child_device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -07002085{
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002086 struct kobject *kobj = &child_device_obj->device.kobj;
2087 int ret;
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08002088
Stephen Hemmingerf6b2db02016-11-01 00:01:59 -07002089 dev_set_name(&child_device_obj->device, "%pUl",
Andy Shevchenko458c4472020-04-23 16:45:03 +03002090 &child_device_obj->channel->offermsg.offer.if_instance);
Hank Janssen3e7ee492009-07-13 16:02:34 -07002091
K. Y. Srinivasan0bce28b2011-08-27 11:31:39 -07002092 child_device_obj->device.bus = &hv_bus;
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -07002093 child_device_obj->device.parent = &hv_acpi_dev->dev;
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08002094 child_device_obj->device.release = vmbus_device_release;
Hank Janssen3e7ee492009-07-13 16:02:34 -07002095
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002096 /*
2097 * Register with the LDM. This will kick off the driver/device
2098 * binding...which will eventually call vmbus_match() and vmbus_probe()
2099 */
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08002100 ret = device_register(&child_device_obj->device);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002101 if (ret) {
Hank Janssen0a466182011-03-29 13:58:47 -07002102 pr_err("Unable to register child device\n");
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002103 return ret;
2104 }
Hank Janssen3e7ee492009-07-13 16:02:34 -07002105
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002106 child_device_obj->channels_kset = kset_create_and_add("channels",
2107 NULL, kobj);
2108 if (!child_device_obj->channels_kset) {
2109 ret = -ENOMEM;
2110 goto err_dev_unregister;
2111 }
2112
2113 ret = vmbus_add_channel_kobj(child_device_obj,
2114 child_device_obj->channel);
2115 if (ret) {
2116 pr_err("Unable to register primary channeln");
2117 goto err_kset_unregister;
2118 }
Branden Bonabyaf9ca6f2019-10-03 17:01:49 -04002119 hv_debug_add_dev_dir(child_device_obj);
Stephen Hemmingerc2e5df62017-09-21 20:58:49 -07002120
2121 return 0;
2122
2123err_kset_unregister:
2124 kset_unregister(child_device_obj->channels_kset);
2125
2126err_dev_unregister:
2127 device_unregister(&child_device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -07002128 return ret;
2129}
2130
Hank Janssen3e189512010-03-04 22:11:00 +00002131/*
K. Y. Srinivasan696453b2011-09-08 07:24:14 -07002132 * vmbus_device_unregister - Remove the specified child device
Hank Janssen3e189512010-03-04 22:11:00 +00002133 * from the vmbus.
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002134 */
K. Y. Srinivasan696453b2011-09-08 07:24:14 -07002135void vmbus_device_unregister(struct hv_device *device_obj)
Hank Janssen3e7ee492009-07-13 16:02:34 -07002136{
Fernando Soto84672362013-06-14 23:13:35 +00002137 pr_debug("child device %s unregistered\n",
2138 dev_name(&device_obj->device));
2139
Dexuan Cui869b5562017-11-14 06:53:32 -07002140 kset_unregister(device_obj->channels_kset);
2141
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002142 /*
2143 * Kick off the process of unregistering the device.
2144 * This will call vmbus_remove() and eventually vmbus_device_release()
2145 */
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -08002146 device_unregister(&device_obj->device);
Hank Janssen3e7ee492009-07-13 16:02:34 -07002147}
2148
Hank Janssen3e7ee492009-07-13 16:02:34 -07002149
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002150/*
Jake Oshins7f163a62015-08-05 00:52:36 -07002151 * VMBUS is an acpi enumerated device. Get the information we
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002152 * need from DSDT.
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002153 */
Jake Oshins7f163a62015-08-05 00:52:36 -07002154#define VTPM_BASE_ADDRESS 0xfed40000
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002155static acpi_status vmbus_walk_resources(struct acpi_resource *res, void *ctx)
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002156{
Jake Oshins7f163a62015-08-05 00:52:36 -07002157 resource_size_t start = 0;
2158 resource_size_t end = 0;
2159 struct resource *new_res;
2160 struct resource **old_res = &hyperv_mmio;
2161 struct resource **prev_res = NULL;
Michael Kelley626b9012020-08-14 12:45:04 -07002162 struct resource r;
Jake Oshins7f163a62015-08-05 00:52:36 -07002163
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002164 switch (res->type) {
Jake Oshins7f163a62015-08-05 00:52:36 -07002165
2166 /*
2167 * "Address" descriptors are for bus windows. Ignore
2168 * "memory" descriptors, which are for registers on
2169 * devices.
2170 */
2171 case ACPI_RESOURCE_TYPE_ADDRESS32:
2172 start = res->data.address32.address.minimum;
2173 end = res->data.address32.address.maximum;
Gerd Hoffmann4eb923f2014-02-24 14:17:08 +01002174 break;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002175
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002176 case ACPI_RESOURCE_TYPE_ADDRESS64:
Jake Oshins7f163a62015-08-05 00:52:36 -07002177 start = res->data.address64.address.minimum;
2178 end = res->data.address64.address.maximum;
Gerd Hoffmann4eb923f2014-02-24 14:17:08 +01002179 break;
Jake Oshins7f163a62015-08-05 00:52:36 -07002180
Michael Kelley626b9012020-08-14 12:45:04 -07002181 /*
2182 * The IRQ information is needed only on ARM64, which Hyper-V
2183 * sets up in the extended format. IRQ information is present
2184 * on x86/x64 in the non-extended format but it is not used by
2185 * Linux. So don't bother checking for the non-extended format.
2186 */
2187 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
2188 if (!acpi_dev_resource_interrupt(res, 0, &r)) {
2189 pr_err("Unable to parse Hyper-V ACPI interrupt\n");
2190 return AE_ERROR;
2191 }
2192 /* ARM64 INTID for VMbus */
2193 vmbus_interrupt = res->data.extended_irq.interrupts[0];
2194 /* Linux IRQ number */
2195 vmbus_irq = r.start;
2196 return AE_OK;
2197
Jake Oshins7f163a62015-08-05 00:52:36 -07002198 default:
2199 /* Unused resource type */
2200 return AE_OK;
2201
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002202 }
Jake Oshins7f163a62015-08-05 00:52:36 -07002203 /*
2204 * Ignore ranges that are below 1MB, as they're not
2205 * necessary or useful here.
2206 */
2207 if (end < 0x100000)
2208 return AE_OK;
2209
2210 new_res = kzalloc(sizeof(*new_res), GFP_ATOMIC);
2211 if (!new_res)
2212 return AE_NO_MEMORY;
2213
2214 /* If this range overlaps the virtual TPM, truncate it. */
2215 if (end > VTPM_BASE_ADDRESS && start < VTPM_BASE_ADDRESS)
2216 end = VTPM_BASE_ADDRESS;
2217
2218 new_res->name = "hyperv mmio";
2219 new_res->flags = IORESOURCE_MEM;
2220 new_res->start = start;
2221 new_res->end = end;
2222
Jake Oshins40f26f32015-12-14 16:01:52 -08002223 /*
Jake Oshins40f26f32015-12-14 16:01:52 -08002224 * If two ranges are adjacent, merge them.
2225 */
Jake Oshins7f163a62015-08-05 00:52:36 -07002226 do {
2227 if (!*old_res) {
2228 *old_res = new_res;
2229 break;
2230 }
2231
Jake Oshins40f26f32015-12-14 16:01:52 -08002232 if (((*old_res)->end + 1) == new_res->start) {
2233 (*old_res)->end = new_res->end;
2234 kfree(new_res);
2235 break;
2236 }
2237
2238 if ((*old_res)->start == new_res->end + 1) {
2239 (*old_res)->start = new_res->start;
2240 kfree(new_res);
2241 break;
2242 }
2243
Jake Oshins23a06832016-04-05 10:22:53 -07002244 if ((*old_res)->start > new_res->end) {
Jake Oshins7f163a62015-08-05 00:52:36 -07002245 new_res->sibling = *old_res;
2246 if (prev_res)
2247 (*prev_res)->sibling = new_res;
2248 *old_res = new_res;
2249 break;
2250 }
2251
2252 prev_res = old_res;
2253 old_res = &(*old_res)->sibling;
2254
2255 } while (1);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002256
2257 return AE_OK;
2258}
2259
Jake Oshins7f163a62015-08-05 00:52:36 -07002260static int vmbus_acpi_remove(struct acpi_device *device)
2261{
2262 struct resource *cur_res;
2263 struct resource *next_res;
2264
2265 if (hyperv_mmio) {
Jake Oshins6d146ae2016-04-05 10:22:55 -07002266 if (fb_mmio) {
2267 __release_region(hyperv_mmio, fb_mmio->start,
2268 resource_size(fb_mmio));
2269 fb_mmio = NULL;
2270 }
2271
Jake Oshins7f163a62015-08-05 00:52:36 -07002272 for (cur_res = hyperv_mmio; cur_res; cur_res = next_res) {
2273 next_res = cur_res->sibling;
2274 kfree(cur_res);
2275 }
2276 }
2277
2278 return 0;
2279}
2280
Jake Oshins6d146ae2016-04-05 10:22:55 -07002281static void vmbus_reserve_fb(void)
2282{
2283 int size;
2284 /*
2285 * Make a claim for the frame buffer in the resource tree under the
2286 * first node, which will be the one below 4GB. The length seems to
2287 * be underreported, particularly in a Generation 1 VM. So start out
2288 * reserving a larger area and make it smaller until it succeeds.
2289 */
2290
2291 if (screen_info.lfb_base) {
2292 if (efi_enabled(EFI_BOOT))
2293 size = max_t(__u32, screen_info.lfb_size, 0x800000);
2294 else
2295 size = max_t(__u32, screen_info.lfb_size, 0x4000000);
2296
2297 for (; !fb_mmio && (size >= 0x100000); size >>= 1) {
2298 fb_mmio = __request_region(hyperv_mmio,
2299 screen_info.lfb_base, size,
2300 fb_mmio_name, 0);
2301 }
2302 }
2303}
2304
Jake Oshins35464482015-08-05 00:52:37 -07002305/**
2306 * vmbus_allocate_mmio() - Pick a memory-mapped I/O range.
2307 * @new: If successful, supplied a pointer to the
2308 * allocated MMIO space.
2309 * @device_obj: Identifies the caller
2310 * @min: Minimum guest physical address of the
2311 * allocation
2312 * @max: Maximum guest physical address
2313 * @size: Size of the range to be allocated
2314 * @align: Alignment of the range to be allocated
2315 * @fb_overlap_ok: Whether this allocation can be allowed
2316 * to overlap the video frame buffer.
2317 *
2318 * This function walks the resources granted to VMBus by the
2319 * _CRS object in the ACPI namespace underneath the parent
2320 * "bridge" whether that's a root PCI bus in the Generation 1
2321 * case or a Module Device in the Generation 2 case. It then
2322 * attempts to allocate from the global MMIO pool in a way that
2323 * matches the constraints supplied in these parameters and by
2324 * that _CRS.
2325 *
2326 * Return: 0 on success, -errno on failure
2327 */
2328int vmbus_allocate_mmio(struct resource **new, struct hv_device *device_obj,
2329 resource_size_t min, resource_size_t max,
2330 resource_size_t size, resource_size_t align,
2331 bool fb_overlap_ok)
2332{
Jake Oshinsbe000f92016-04-05 10:22:54 -07002333 struct resource *iter, *shadow;
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002334 resource_size_t range_min, range_max, start;
Jake Oshins35464482015-08-05 00:52:37 -07002335 const char *dev_n = dev_name(&device_obj->device);
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002336 int retval;
Jake Oshinse16dad62016-04-05 10:22:50 -07002337
2338 retval = -ENXIO;
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -07002339 mutex_lock(&hyperv_mmio_lock);
Jake Oshins35464482015-08-05 00:52:37 -07002340
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002341 /*
2342 * If overlaps with frame buffers are allowed, then first attempt to
2343 * make the allocation from within the reserved region. Because it
2344 * is already reserved, no shadow allocation is necessary.
2345 */
2346 if (fb_overlap_ok && fb_mmio && !(min > fb_mmio->end) &&
2347 !(max < fb_mmio->start)) {
2348
2349 range_min = fb_mmio->start;
2350 range_max = fb_mmio->end;
2351 start = (range_min + align - 1) & ~(align - 1);
2352 for (; start + size - 1 <= range_max; start += align) {
2353 *new = request_mem_region_exclusive(start, size, dev_n);
2354 if (*new) {
2355 retval = 0;
2356 goto exit;
2357 }
2358 }
2359 }
2360
Jake Oshins35464482015-08-05 00:52:37 -07002361 for (iter = hyperv_mmio; iter; iter = iter->sibling) {
2362 if ((iter->start >= max) || (iter->end <= min))
2363 continue;
2364
2365 range_min = iter->start;
2366 range_max = iter->end;
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002367 start = (range_min + align - 1) & ~(align - 1);
2368 for (; start + size - 1 <= range_max; start += align) {
2369 shadow = __request_region(iter, start, size, NULL,
2370 IORESOURCE_BUSY);
2371 if (!shadow)
2372 continue;
Jake Oshins35464482015-08-05 00:52:37 -07002373
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002374 *new = request_mem_region_exclusive(start, size, dev_n);
2375 if (*new) {
2376 shadow->name = (char *)*new;
2377 retval = 0;
2378 goto exit;
Jake Oshins35464482015-08-05 00:52:37 -07002379 }
2380
Jake Oshinsea37a6b2016-04-05 10:22:56 -07002381 __release_region(iter, start, size);
Jake Oshins35464482015-08-05 00:52:37 -07002382 }
2383 }
2384
Jake Oshinse16dad62016-04-05 10:22:50 -07002385exit:
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -07002386 mutex_unlock(&hyperv_mmio_lock);
Jake Oshinse16dad62016-04-05 10:22:50 -07002387 return retval;
Jake Oshins35464482015-08-05 00:52:37 -07002388}
2389EXPORT_SYMBOL_GPL(vmbus_allocate_mmio);
2390
Jake Oshins619848b2015-12-14 16:01:39 -08002391/**
Jake Oshins97fb77dc2016-04-05 10:22:51 -07002392 * vmbus_free_mmio() - Free a memory-mapped I/O range.
2393 * @start: Base address of region to release.
2394 * @size: Size of the range to be allocated
2395 *
2396 * This function releases anything requested by
2397 * vmbus_mmio_allocate().
2398 */
2399void vmbus_free_mmio(resource_size_t start, resource_size_t size)
2400{
Jake Oshinsbe000f92016-04-05 10:22:54 -07002401 struct resource *iter;
2402
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -07002403 mutex_lock(&hyperv_mmio_lock);
Jake Oshinsbe000f92016-04-05 10:22:54 -07002404 for (iter = hyperv_mmio; iter; iter = iter->sibling) {
2405 if ((iter->start >= start + size) || (iter->end <= start))
2406 continue;
2407
2408 __release_region(iter, start, size);
2409 }
Jake Oshins97fb77dc2016-04-05 10:22:51 -07002410 release_mem_region(start, size);
Davidlohr Bueso8aea7f82019-11-01 13:00:04 -07002411 mutex_unlock(&hyperv_mmio_lock);
Jake Oshins97fb77dc2016-04-05 10:22:51 -07002412
2413}
2414EXPORT_SYMBOL_GPL(vmbus_free_mmio);
2415
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002416static int vmbus_acpi_add(struct acpi_device *device)
2417{
2418 acpi_status result;
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002419 int ret_val = -ENODEV;
Jake Oshins7f163a62015-08-05 00:52:36 -07002420 struct acpi_device *ancestor;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002421
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -07002422 hv_acpi_dev = device;
2423
K. Y. Srinivasan0a4425b2011-08-27 11:31:38 -07002424 result = acpi_walk_resources(device->handle, METHOD_NAME__CRS,
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002425 vmbus_walk_resources, NULL);
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002426
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002427 if (ACPI_FAILURE(result))
2428 goto acpi_walk_err;
2429 /*
Jake Oshins7f163a62015-08-05 00:52:36 -07002430 * Some ancestor of the vmbus acpi device (Gen1 or Gen2
2431 * firmware) is the VMOD that has the mmio ranges. Get that.
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002432 */
Jake Oshins7f163a62015-08-05 00:52:36 -07002433 for (ancestor = device->parent; ancestor; ancestor = ancestor->parent) {
2434 result = acpi_walk_resources(ancestor->handle, METHOD_NAME__CRS,
2435 vmbus_walk_resources, NULL);
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002436
2437 if (ACPI_FAILURE(result))
Jake Oshins7f163a62015-08-05 00:52:36 -07002438 continue;
Jake Oshins6d146ae2016-04-05 10:22:55 -07002439 if (hyperv_mmio) {
2440 vmbus_reserve_fb();
Jake Oshins7f163a62015-08-05 00:52:36 -07002441 break;
Jake Oshins6d146ae2016-04-05 10:22:55 -07002442 }
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002443 }
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002444 ret_val = 0;
2445
2446acpi_walk_err:
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002447 complete(&probe_event);
Jake Oshins7f163a62015-08-05 00:52:36 -07002448 if (ret_val)
2449 vmbus_acpi_remove(device);
K. Y. Srinivasan90f34532014-01-29 18:14:39 -08002450 return ret_val;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002451}
2452
Dexuan Cui83b50f82019-09-19 21:46:12 +00002453#ifdef CONFIG_PM_SLEEP
Dexuan Cuif53335e2019-09-05 23:01:19 +00002454static int vmbus_bus_suspend(struct device *dev)
2455{
Dexuan Cuib307b382019-09-05 23:01:21 +00002456 struct vmbus_channel *channel, *sc;
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00002457
2458 while (atomic_read(&vmbus_connection.offer_in_progress) != 0) {
2459 /*
2460 * We wait here until the completion of any channel
2461 * offers that are currently in progress.
2462 */
Matheus Castello14c685d2020-11-15 16:57:34 -03002463 usleep_range(1000, 2000);
Dexuan Cui1f48dcf2019-09-05 23:01:20 +00002464 }
2465
2466 mutex_lock(&vmbus_connection.channel_mutex);
2467 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
2468 if (!is_hvsock_channel(channel))
2469 continue;
2470
2471 vmbus_force_channel_rescinded(channel);
2472 }
2473 mutex_unlock(&vmbus_connection.channel_mutex);
2474
Dexuan Cuib307b382019-09-05 23:01:21 +00002475 /*
2476 * Wait until all the sub-channels and hv_sock channels have been
2477 * cleaned up. Sub-channels should be destroyed upon suspend, otherwise
2478 * they would conflict with the new sub-channels that will be created
2479 * in the resume path. hv_sock channels should also be destroyed, but
2480 * a hv_sock channel of an established hv_sock connection can not be
2481 * really destroyed since it may still be referenced by the userspace
2482 * application, so we just force the hv_sock channel to be rescinded
2483 * by vmbus_force_channel_rescinded(), and the userspace application
2484 * will thoroughly destroy the channel after hibernation.
2485 *
2486 * Note: the counter nr_chan_close_on_suspend may never go above 0 if
2487 * the VM has no sub-channel and hv_sock channel, e.g. a 1-vCPU VM.
2488 */
2489 if (atomic_read(&vmbus_connection.nr_chan_close_on_suspend) > 0)
2490 wait_for_completion(&vmbus_connection.ready_for_suspend_event);
2491
Dexuan Cui19873eec2020-09-04 19:55:55 -07002492 if (atomic_read(&vmbus_connection.nr_chan_fixup_on_resume) != 0) {
2493 pr_err("Can not suspend due to a previous failed resuming\n");
2494 return -EBUSY;
2495 }
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002496
Dexuan Cuib307b382019-09-05 23:01:21 +00002497 mutex_lock(&vmbus_connection.channel_mutex);
2498
2499 list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002500 /*
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02002501 * Remove the channel from the array of channels and invalidate
2502 * the channel's relid. Upon resume, vmbus_onoffer() will fix
2503 * up the relid (and other fields, if necessary) and add the
2504 * channel back to the array.
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002505 */
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02002506 vmbus_channel_unmap_relid(channel);
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002507 channel->offermsg.child_relid = INVALID_RELID;
2508
Dexuan Cuib307b382019-09-05 23:01:21 +00002509 if (is_hvsock_channel(channel)) {
2510 if (!channel->rescind) {
2511 pr_err("hv_sock channel not rescinded!\n");
2512 WARN_ON_ONCE(1);
2513 }
2514 continue;
2515 }
2516
Dexuan Cuib307b382019-09-05 23:01:21 +00002517 list_for_each_entry(sc, &channel->sc_list, sc_list) {
2518 pr_err("Sub-channel not deleted!\n");
2519 WARN_ON_ONCE(1);
2520 }
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002521
2522 atomic_inc(&vmbus_connection.nr_chan_fixup_on_resume);
Dexuan Cuib307b382019-09-05 23:01:21 +00002523 }
2524
2525 mutex_unlock(&vmbus_connection.channel_mutex);
2526
Dexuan Cuif53335e2019-09-05 23:01:19 +00002527 vmbus_initiate_unload(false);
2528
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002529 /* Reset the event for the next resume. */
2530 reinit_completion(&vmbus_connection.ready_for_resume_event);
2531
Dexuan Cuif53335e2019-09-05 23:01:19 +00002532 return 0;
2533}
2534
2535static int vmbus_bus_resume(struct device *dev)
2536{
2537 struct vmbus_channel_msginfo *msginfo;
2538 size_t msgsize;
2539 int ret;
2540
2541 /*
2542 * We only use the 'vmbus_proto_version', which was in use before
2543 * hibernation, to re-negotiate with the host.
2544 */
Andrea Parribedc61a2019-10-15 13:46:44 +02002545 if (!vmbus_proto_version) {
Dexuan Cuif53335e2019-09-05 23:01:19 +00002546 pr_err("Invalid proto version = 0x%x\n", vmbus_proto_version);
2547 return -EINVAL;
2548 }
2549
2550 msgsize = sizeof(*msginfo) +
2551 sizeof(struct vmbus_channel_initiate_contact);
2552
2553 msginfo = kzalloc(msgsize, GFP_KERNEL);
2554
2555 if (msginfo == NULL)
2556 return -ENOMEM;
2557
2558 ret = vmbus_negotiate_version(msginfo, vmbus_proto_version);
2559
2560 kfree(msginfo);
2561
2562 if (ret != 0)
2563 return ret;
2564
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002565 WARN_ON(atomic_read(&vmbus_connection.nr_chan_fixup_on_resume) == 0);
2566
Dexuan Cuif53335e2019-09-05 23:01:19 +00002567 vmbus_request_offers();
2568
Dexuan Cui19873eec2020-09-04 19:55:55 -07002569 if (wait_for_completion_timeout(
2570 &vmbus_connection.ready_for_resume_event, 10 * HZ) == 0)
2571 pr_err("Some vmbus device is missing after suspending?\n");
Dexuan Cuid8bd2d42019-09-05 23:01:22 +00002572
Dexuan Cuib307b382019-09-05 23:01:21 +00002573 /* Reset the event for the next suspend. */
2574 reinit_completion(&vmbus_connection.ready_for_suspend_event);
2575
Dexuan Cuif53335e2019-09-05 23:01:19 +00002576 return 0;
2577}
Dexuan Cui1a06d012020-04-11 20:50:35 -07002578#else
2579#define vmbus_bus_suspend NULL
2580#define vmbus_bus_resume NULL
Dexuan Cui83b50f82019-09-19 21:46:12 +00002581#endif /* CONFIG_PM_SLEEP */
Dexuan Cuif53335e2019-09-05 23:01:19 +00002582
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002583static const struct acpi_device_id vmbus_acpi_device_ids[] = {
2584 {"VMBUS", 0},
K. Y. Srinivasan9d7b18d2011-06-06 15:49:42 -07002585 {"VMBus", 0},
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002586 {"", 0},
2587};
2588MODULE_DEVICE_TABLE(acpi, vmbus_acpi_device_ids);
2589
Dexuan Cuif53335e2019-09-05 23:01:19 +00002590/*
Dexuan Cui1a06d012020-04-11 20:50:35 -07002591 * Note: we must use the "no_irq" ops, otherwise hibernation can not work with
2592 * PCI device assignment, because "pci_dev_pm_ops" uses the "noirq" ops: in
2593 * the resume path, the pci "noirq" restore op runs before "non-noirq" op (see
Dexuan Cuif53335e2019-09-05 23:01:19 +00002594 * resume_target_kernel() -> dpm_resume_start(), and hibernation_restore() ->
2595 * dpm_resume_end()). This means vmbus_bus_resume() and the pci-hyperv's
Dexuan Cui1a06d012020-04-11 20:50:35 -07002596 * resume callback must also run via the "noirq" ops.
2597 *
2598 * Set suspend_noirq/resume_noirq to NULL for Suspend-to-Idle: see the comment
2599 * earlier in this file before vmbus_pm.
Dexuan Cuif53335e2019-09-05 23:01:19 +00002600 */
Dexuan Cui1a06d012020-04-11 20:50:35 -07002601
Dexuan Cuif53335e2019-09-05 23:01:19 +00002602static const struct dev_pm_ops vmbus_bus_pm = {
Dexuan Cui1a06d012020-04-11 20:50:35 -07002603 .suspend_noirq = NULL,
2604 .resume_noirq = NULL,
2605 .freeze_noirq = vmbus_bus_suspend,
2606 .thaw_noirq = vmbus_bus_resume,
2607 .poweroff_noirq = vmbus_bus_suspend,
2608 .restore_noirq = vmbus_bus_resume
Dexuan Cuif53335e2019-09-05 23:01:19 +00002609};
2610
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002611static struct acpi_driver vmbus_acpi_driver = {
2612 .name = "vmbus",
2613 .ids = vmbus_acpi_device_ids,
2614 .ops = {
2615 .add = vmbus_acpi_add,
Vitaly Kuznetsove4ecb412015-04-22 21:31:28 -07002616 .remove = vmbus_acpi_remove,
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002617 },
Dexuan Cuif53335e2019-09-05 23:01:19 +00002618 .drv.pm = &vmbus_bus_pm,
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002619};
2620
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002621static void hv_kexec_handler(void)
2622{
Michael Kelleyfd1fea62019-07-01 04:25:56 +00002623 hv_stimer_global_cleanup();
Vitaly Kuznetsov75ff3a82016-02-26 15:13:16 -08002624 vmbus_initiate_unload(false);
Vitaly Kuznetsov523b9402016-12-07 14:53:12 -08002625 /* Make sure conn_state is set as hv_synic_cleanup checks for it */
2626 mb();
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08002627 cpuhp_remove_state(hyperv_cpuhp_online);
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002628};
2629
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002630static void hv_crash_handler(struct pt_regs *regs)
2631{
Michael Kelleyfd1fea62019-07-01 04:25:56 +00002632 int cpu;
2633
Vitaly Kuznetsov75ff3a82016-02-26 15:13:16 -08002634 vmbus_initiate_unload(true);
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002635 /*
2636 * In crash handler we can't schedule synic cleanup for all CPUs,
2637 * doing the cleanup for current CPU only. This should be sufficient
2638 * for kdump.
2639 */
Michael Kelleyfd1fea62019-07-01 04:25:56 +00002640 cpu = smp_processor_id();
2641 hv_stimer_cleanup(cpu);
Michael Kelley7a1323b2019-11-14 06:32:01 +00002642 hv_synic_disable_regs(cpu);
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002643};
2644
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002645static int hv_synic_suspend(void)
2646{
2647 /*
Michael Kelley4df4cb9e92019-11-13 01:11:49 +00002648 * When we reach here, all the non-boot CPUs have been offlined.
2649 * If we're in a legacy configuration where stimer Direct Mode is
2650 * not enabled, the stimers on the non-boot CPUs have been unbound
2651 * in hv_synic_cleanup() -> hv_stimer_legacy_cleanup() ->
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002652 * hv_stimer_cleanup() -> clockevents_unbind_device().
2653 *
Michael Kelley4df4cb9e92019-11-13 01:11:49 +00002654 * hv_synic_suspend() only runs on CPU0 with interrupts disabled.
2655 * Here we do not call hv_stimer_legacy_cleanup() on CPU0 because:
2656 * 1) it's unnecessary as interrupts remain disabled between
2657 * syscore_suspend() and syscore_resume(): see create_image() and
2658 * resume_target_kernel()
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002659 * 2) the stimer on CPU0 is automatically disabled later by
2660 * syscore_suspend() -> timekeeping_suspend() -> tick_suspend() -> ...
Michael Kelley4df4cb9e92019-11-13 01:11:49 +00002661 * -> clockevents_shutdown() -> ... -> hv_ce_shutdown()
2662 * 3) a warning would be triggered if we call
2663 * clockevents_unbind_device(), which may sleep, in an
2664 * interrupts-disabled context.
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002665 */
2666
2667 hv_synic_disable_regs(0);
2668
2669 return 0;
2670}
2671
2672static void hv_synic_resume(void)
2673{
2674 hv_synic_enable_regs(0);
2675
2676 /*
2677 * Note: we don't need to call hv_stimer_init(0), because the timer
2678 * on CPU0 is not unbound in hv_synic_suspend(), and the timer is
2679 * automatically re-enabled in timekeeping_resume().
2680 */
2681}
2682
2683/* The callbacks run only on CPU0, with irqs_disabled. */
2684static struct syscore_ops hv_synic_syscore_ops = {
2685 .suspend = hv_synic_suspend,
2686 .resume = hv_synic_resume,
2687};
2688
K. Y. Srinivasan607c1a12011-06-06 15:49:39 -07002689static int __init hv_acpi_init(void)
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07002690{
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07002691 int ret, t;
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002692
Michael Kelley4a5f3cd2017-12-22 11:19:02 -07002693 if (!hv_is_hyperv_initialized())
Jason Wang05929692012-08-17 18:52:43 +08002694 return -ENODEV;
2695
Wei Liu7e279d72021-02-03 15:04:22 +00002696 if (hv_root_partition)
2697 return 0;
2698
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002699 init_completion(&probe_event);
2700
2701 /*
K. Y. Srinivasanefc26722015-12-14 16:01:46 -08002702 * Get ACPI resources first.
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002703 */
K. Y. Srinivasan02466042011-06-06 15:49:40 -07002704 ret = acpi_bus_register_driver(&vmbus_acpi_driver);
2705
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002706 if (ret)
2707 return ret;
2708
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07002709 t = wait_for_completion_timeout(&probe_event, 5*HZ);
2710 if (t == 0) {
2711 ret = -ETIMEDOUT;
2712 goto cleanup;
2713 }
Michael Kelleyd6087152021-03-02 13:38:18 -08002714
2715 /*
2716 * If we're on an architecture with a hardcoded hypervisor
2717 * vector (i.e. x86/x64), override the VMbus interrupt found
2718 * in the ACPI tables. Ensure vmbus_irq is not set since the
2719 * normal Linux IRQ mechanism is not used in this case.
2720 */
2721#ifdef HYPERVISOR_CALLBACK_VECTOR
2722 vmbus_interrupt = HYPERVISOR_CALLBACK_VECTOR;
2723 vmbus_irq = -1;
2724#endif
2725
Branden Bonabyaf9ca6f2019-10-03 17:01:49 -04002726 hv_debug_init();
K. Y. Srinivasanb0069f42011-04-29 13:45:15 -07002727
K. Y. Srinivasanefc26722015-12-14 16:01:46 -08002728 ret = vmbus_bus_init();
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -07002729 if (ret)
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07002730 goto cleanup;
2731
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002732 hv_setup_kexec_handler(hv_kexec_handler);
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002733 hv_setup_crash_handler(hv_crash_handler);
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002734
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002735 register_syscore_ops(&hv_synic_syscore_ops);
2736
K. Y. Srinivasan2dda95f2011-07-15 13:38:56 -07002737 return 0;
2738
2739cleanup:
2740 acpi_bus_unregister_driver(&vmbus_acpi_driver);
K. Y. Srinivasancf6a2ea2011-12-01 09:59:34 -08002741 hv_acpi_dev = NULL;
K. Y. Srinivasan91fd7992011-06-16 13:16:38 -07002742 return ret;
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07002743}
2744
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002745static void __exit vmbus_exit(void)
2746{
Vitaly Kuznetsove72e7ac2015-02-27 11:25:55 -08002747 int cpu;
2748
Dexuan Cui63ecc6d2019-09-05 23:01:16 +00002749 unregister_syscore_ops(&hv_synic_syscore_ops);
2750
Vitaly Kuznetsov25172812015-08-01 16:08:07 -07002751 hv_remove_kexec_handler();
Vitaly Kuznetsovb4370df2015-08-01 16:08:09 -07002752 hv_remove_crash_handler();
Vitaly Kuznetsov09a19622015-02-27 11:25:54 -08002753 vmbus_connection.conn_state = DISCONNECTED;
Michael Kelleyfd1fea62019-07-01 04:25:56 +00002754 hv_stimer_global_cleanup();
K. Y. Srinivasan2db84ef2015-04-22 21:31:32 -07002755 vmbus_disconnect();
Michael Kelleyd6087152021-03-02 13:38:18 -08002756 if (vmbus_irq == -1) {
2757 hv_remove_vmbus_handler();
2758 } else {
2759 free_percpu_irq(vmbus_irq, vmbus_evt);
2760 free_percpu(vmbus_evt);
2761 }
Stephen Hemminger37cdd992017-02-11 23:02:19 -07002762 for_each_online_cpu(cpu) {
2763 struct hv_per_cpu_context *hv_cpu
2764 = per_cpu_ptr(hv_context.cpu_context, cpu);
2765
2766 tasklet_kill(&hv_cpu->msg_dpc);
2767 }
Branden Bonabyaf9ca6f2019-10-03 17:01:49 -04002768 hv_debug_rm_all_dir();
2769
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002770 vmbus_free_channels();
Andrea Parri (Microsoft)8b6a8772020-04-06 02:15:06 +02002771 kfree(vmbus_connection.channels);
Stephen Hemminger37cdd992017-02-11 23:02:19 -07002772
Denis V. Lunevcc2dd402015-08-01 16:08:20 -07002773 if (ms_hyperv.misc_features & HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE) {
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00002774 kmsg_dump_unregister(&hv_kmsg_dumper);
Vitaly Kuznetsov510f7ae2015-08-01 16:08:10 -07002775 unregister_die_notifier(&hyperv_die_block);
Vitaly Kuznetsov096c6052015-04-22 21:31:29 -07002776 atomic_notifier_chain_unregister(&panic_notifier_list,
2777 &hyperv_panic_block);
2778 }
Sunil Muthuswamy81b18bc2018-07-08 02:56:51 +00002779
2780 free_page((unsigned long)hv_panic_page);
Sunil Muthuswamy8afc06d2018-07-28 21:58:46 +00002781 unregister_sysctl_table(hv_ctl_table_hdr);
2782 hv_ctl_table_hdr = NULL;
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002783 bus_unregister(&hv_bus);
Stephen Hemminger37cdd992017-02-11 23:02:19 -07002784
Vitaly Kuznetsov76d36ab2016-12-07 14:53:11 -08002785 cpuhp_remove_state(hyperv_cpuhp_online);
Vitaly Kuznetsov06210b42015-08-01 16:08:05 -07002786 hv_synic_free();
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002787 acpi_bus_unregister_driver(&vmbus_acpi_driver);
2788}
2789
K. Y. Srinivasan1168ac22011-03-15 15:03:32 -07002790
Greg Kroah-Hartman90c99602009-09-02 07:11:14 -07002791MODULE_LICENSE("GPL");
Joseph Salisbury674eecb2019-04-23 03:47:27 +00002792MODULE_DESCRIPTION("Microsoft Hyper-V VMBus Driver");
Hank Janssen3e7ee492009-07-13 16:02:34 -07002793
K. Y. Srinivasan43d4e112011-10-24 11:28:12 -07002794subsys_initcall(hv_acpi_init);
K. Y. Srinivasan93e5bd02011-12-12 09:29:17 -08002795module_exit(vmbus_exit);