blob: 7514a32d0de457ca98e70094a70b98e5c6ed3169 [file] [log] [blame]
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001/*
2 * Copyright (c) 2012, Microsoft Corporation.
3 *
4 * Author:
5 * K. Y. Srinivasan <kys@microsoft.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published
9 * by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
14 * NON INFRINGEMENT. See the GNU General Public License for more
15 * details.
16 *
17 */
18
19#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20
21#include <linux/kernel.h>
K. Y. Srinivasanae339332014-04-23 13:53:39 -070022#include <linux/jiffies.h>
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -080023#include <linux/mman.h>
24#include <linux/delay.h>
25#include <linux/init.h>
26#include <linux/module.h>
27#include <linux/slab.h>
28#include <linux/kthread.h>
29#include <linux/completion.h>
30#include <linux/memory_hotplug.h>
31#include <linux/memory.h>
32#include <linux/notifier.h>
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -080033#include <linux/percpu_counter.h>
34
35#include <linux/hyperv.h>
36
37/*
38 * We begin with definitions supporting the Dynamic Memory protocol
39 * with the host.
40 *
41 * Begin protocol definitions.
42 */
43
44
45
46/*
47 * Protocol versions. The low word is the minor version, the high word the major
48 * version.
49 *
50 * History:
51 * Initial version 1.0
52 * Changed to 0.1 on 2009/03/25
53 * Changes to 0.2 on 2009/05/14
54 * Changes to 0.3 on 2009/12/03
55 * Changed to 1.0 on 2011/04/05
56 */
57
58#define DYNMEM_MAKE_VERSION(Major, Minor) ((__u32)(((Major) << 16) | (Minor)))
59#define DYNMEM_MAJOR_VERSION(Version) ((__u32)(Version) >> 16)
60#define DYNMEM_MINOR_VERSION(Version) ((__u32)(Version) & 0xff)
61
62enum {
63 DYNMEM_PROTOCOL_VERSION_1 = DYNMEM_MAKE_VERSION(0, 3),
64 DYNMEM_PROTOCOL_VERSION_2 = DYNMEM_MAKE_VERSION(1, 0),
Alex Ngb6ddeae2015-08-01 16:08:13 -070065 DYNMEM_PROTOCOL_VERSION_3 = DYNMEM_MAKE_VERSION(2, 0),
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -080066
67 DYNMEM_PROTOCOL_VERSION_WIN7 = DYNMEM_PROTOCOL_VERSION_1,
68 DYNMEM_PROTOCOL_VERSION_WIN8 = DYNMEM_PROTOCOL_VERSION_2,
Alex Ngb6ddeae2015-08-01 16:08:13 -070069 DYNMEM_PROTOCOL_VERSION_WIN10 = DYNMEM_PROTOCOL_VERSION_3,
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -080070
Alex Ngb6ddeae2015-08-01 16:08:13 -070071 DYNMEM_PROTOCOL_VERSION_CURRENT = DYNMEM_PROTOCOL_VERSION_WIN10
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -080072};
73
74
75
76/*
77 * Message Types
78 */
79
80enum dm_message_type {
81 /*
82 * Version 0.3
83 */
84 DM_ERROR = 0,
85 DM_VERSION_REQUEST = 1,
86 DM_VERSION_RESPONSE = 2,
87 DM_CAPABILITIES_REPORT = 3,
88 DM_CAPABILITIES_RESPONSE = 4,
89 DM_STATUS_REPORT = 5,
90 DM_BALLOON_REQUEST = 6,
91 DM_BALLOON_RESPONSE = 7,
92 DM_UNBALLOON_REQUEST = 8,
93 DM_UNBALLOON_RESPONSE = 9,
94 DM_MEM_HOT_ADD_REQUEST = 10,
95 DM_MEM_HOT_ADD_RESPONSE = 11,
96 DM_VERSION_03_MAX = 11,
97 /*
98 * Version 1.0.
99 */
100 DM_INFO_MESSAGE = 12,
101 DM_VERSION_1_MAX = 12
102};
103
104
105/*
106 * Structures defining the dynamic memory management
107 * protocol.
108 */
109
110union dm_version {
111 struct {
112 __u16 minor_version;
113 __u16 major_version;
114 };
115 __u32 version;
116} __packed;
117
118
119union dm_caps {
120 struct {
121 __u64 balloon:1;
122 __u64 hot_add:1;
K. Y. Srinivasan647965a2013-03-29 07:36:11 -0700123 /*
124 * To support guests that may have alignment
125 * limitations on hot-add, the guest can specify
126 * its alignment requirements; a value of n
127 * represents an alignment of 2^n in mega bytes.
128 */
129 __u64 hot_add_alignment:4;
130 __u64 reservedz:58;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800131 } cap_bits;
132 __u64 caps;
133} __packed;
134
135union dm_mem_page_range {
136 struct {
137 /*
138 * The PFN number of the first page in the range.
139 * 40 bits is the architectural limit of a PFN
140 * number for AMD64.
141 */
142 __u64 start_page:40;
143 /*
144 * The number of pages in the range.
145 */
146 __u64 page_cnt:24;
147 } finfo;
148 __u64 page_range;
149} __packed;
150
151
152
153/*
154 * The header for all dynamic memory messages:
155 *
156 * type: Type of the message.
157 * size: Size of the message in bytes; including the header.
158 * trans_id: The guest is responsible for manufacturing this ID.
159 */
160
161struct dm_header {
162 __u16 type;
163 __u16 size;
164 __u32 trans_id;
165} __packed;
166
167/*
168 * A generic message format for dynamic memory.
169 * Specific message formats are defined later in the file.
170 */
171
172struct dm_message {
173 struct dm_header hdr;
174 __u8 data[]; /* enclosed message */
175} __packed;
176
177
178/*
179 * Specific message types supporting the dynamic memory protocol.
180 */
181
182/*
183 * Version negotiation message. Sent from the guest to the host.
184 * The guest is free to try different versions until the host
185 * accepts the version.
186 *
187 * dm_version: The protocol version requested.
188 * is_last_attempt: If TRUE, this is the last version guest will request.
189 * reservedz: Reserved field, set to zero.
190 */
191
192struct dm_version_request {
193 struct dm_header hdr;
194 union dm_version version;
195 __u32 is_last_attempt:1;
196 __u32 reservedz:31;
197} __packed;
198
199/*
200 * Version response message; Host to Guest and indicates
201 * if the host has accepted the version sent by the guest.
202 *
203 * is_accepted: If TRUE, host has accepted the version and the guest
204 * should proceed to the next stage of the protocol. FALSE indicates that
205 * guest should re-try with a different version.
206 *
207 * reservedz: Reserved field, set to zero.
208 */
209
210struct dm_version_response {
211 struct dm_header hdr;
212 __u64 is_accepted:1;
213 __u64 reservedz:63;
214} __packed;
215
216/*
217 * Message reporting capabilities. This is sent from the guest to the
218 * host.
219 */
220
221struct dm_capabilities {
222 struct dm_header hdr;
223 union dm_caps caps;
224 __u64 min_page_cnt;
225 __u64 max_page_number;
226} __packed;
227
228/*
229 * Response to the capabilities message. This is sent from the host to the
230 * guest. This message notifies if the host has accepted the guest's
231 * capabilities. If the host has not accepted, the guest must shutdown
232 * the service.
233 *
234 * is_accepted: Indicates if the host has accepted guest's capabilities.
235 * reservedz: Must be 0.
236 */
237
238struct dm_capabilities_resp_msg {
239 struct dm_header hdr;
240 __u64 is_accepted:1;
241 __u64 reservedz:63;
242} __packed;
243
244/*
245 * This message is used to report memory pressure from the guest.
246 * This message is not part of any transaction and there is no
247 * response to this message.
248 *
249 * num_avail: Available memory in pages.
250 * num_committed: Committed memory in pages.
251 * page_file_size: The accumulated size of all page files
252 * in the system in pages.
253 * zero_free: The nunber of zero and free pages.
254 * page_file_writes: The writes to the page file in pages.
255 * io_diff: An indicator of file cache efficiency or page file activity,
256 * calculated as File Cache Page Fault Count - Page Read Count.
257 * This value is in pages.
258 *
259 * Some of these metrics are Windows specific and fortunately
260 * the algorithm on the host side that computes the guest memory
261 * pressure only uses num_committed value.
262 */
263
264struct dm_status {
265 struct dm_header hdr;
266 __u64 num_avail;
267 __u64 num_committed;
268 __u64 page_file_size;
269 __u64 zero_free;
270 __u32 page_file_writes;
271 __u32 io_diff;
272} __packed;
273
274
275/*
276 * Message to ask the guest to allocate memory - balloon up message.
277 * This message is sent from the host to the guest. The guest may not be
278 * able to allocate as much memory as requested.
279 *
280 * num_pages: number of pages to allocate.
281 */
282
283struct dm_balloon {
284 struct dm_header hdr;
285 __u32 num_pages;
286 __u32 reservedz;
287} __packed;
288
289
290/*
291 * Balloon response message; this message is sent from the guest
292 * to the host in response to the balloon message.
293 *
294 * reservedz: Reserved; must be set to zero.
295 * more_pages: If FALSE, this is the last message of the transaction.
296 * if TRUE there will atleast one more message from the guest.
297 *
298 * range_count: The number of ranges in the range array.
299 *
300 * range_array: An array of page ranges returned to the host.
301 *
302 */
303
304struct dm_balloon_response {
305 struct dm_header hdr;
306 __u32 reservedz;
307 __u32 more_pages:1;
308 __u32 range_count:31;
309 union dm_mem_page_range range_array[];
310} __packed;
311
312/*
313 * Un-balloon message; this message is sent from the host
314 * to the guest to give guest more memory.
315 *
316 * more_pages: If FALSE, this is the last message of the transaction.
317 * if TRUE there will atleast one more message from the guest.
318 *
319 * reservedz: Reserved; must be set to zero.
320 *
321 * range_count: The number of ranges in the range array.
322 *
323 * range_array: An array of page ranges returned to the host.
324 *
325 */
326
327struct dm_unballoon_request {
328 struct dm_header hdr;
329 __u32 more_pages:1;
330 __u32 reservedz:31;
331 __u32 range_count;
332 union dm_mem_page_range range_array[];
333} __packed;
334
335/*
336 * Un-balloon response message; this message is sent from the guest
337 * to the host in response to an unballoon request.
338 *
339 */
340
341struct dm_unballoon_response {
342 struct dm_header hdr;
343} __packed;
344
345
346/*
347 * Hot add request message. Message sent from the host to the guest.
348 *
349 * mem_range: Memory range to hot add.
350 *
351 * On Linux we currently don't support this since we cannot hot add
352 * arbitrary granularity of memory.
353 */
354
355struct dm_hot_add {
356 struct dm_header hdr;
357 union dm_mem_page_range range;
358} __packed;
359
360/*
361 * Hot add response message.
362 * This message is sent by the guest to report the status of a hot add request.
363 * If page_count is less than the requested page count, then the host should
364 * assume all further hot add requests will fail, since this indicates that
365 * the guest has hit an upper physical memory barrier.
366 *
367 * Hot adds may also fail due to low resources; in this case, the guest must
368 * not complete this message until the hot add can succeed, and the host must
369 * not send a new hot add request until the response is sent.
370 * If VSC fails to hot add memory DYNMEM_NUMBER_OF_UNSUCCESSFUL_HOTADD_ATTEMPTS
371 * times it fails the request.
372 *
373 *
374 * page_count: number of pages that were successfully hot added.
375 *
376 * result: result of the operation 1: success, 0: failure.
377 *
378 */
379
380struct dm_hot_add_response {
381 struct dm_header hdr;
382 __u32 page_count;
383 __u32 result;
384} __packed;
385
386/*
387 * Types of information sent from host to the guest.
388 */
389
390enum dm_info_type {
391 INFO_TYPE_MAX_PAGE_CNT = 0,
392 MAX_INFO_TYPE
393};
394
395
396/*
397 * Header for the information message.
398 */
399
400struct dm_info_header {
401 enum dm_info_type type;
402 __u32 data_size;
403} __packed;
404
405/*
406 * This message is sent from the host to the guest to pass
407 * some relevant information (win8 addition).
408 *
409 * reserved: no used.
410 * info_size: size of the information blob.
411 * info: information blob.
412 */
413
414struct dm_info_msg {
K. Y. Srinivasan6427a0d2012-12-06 11:06:54 -0800415 struct dm_header hdr;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800416 __u32 reserved;
417 __u32 info_size;
418 __u8 info[];
419};
420
421/*
422 * End protocol definitions.
423 */
424
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700425/*
426 * State to manage hot adding memory into the guest.
427 * The range start_pfn : end_pfn specifies the range
428 * that the host has asked us to hot add. The range
429 * start_pfn : ha_end_pfn specifies the range that we have
430 * currently hot added. We hot add in multiples of 128M
431 * chunks; it is possible that we may not be able to bring
432 * online all the pages in the region. The range
Vitaly Kuznetsov7cf3b792016-08-24 16:23:09 -0700433 * covered_start_pfn:covered_end_pfn defines the pages that can
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700434 * be brough online.
435 */
436
437struct hv_hotadd_state {
438 struct list_head list;
439 unsigned long start_pfn;
Vitaly Kuznetsov7cf3b792016-08-24 16:23:09 -0700440 unsigned long covered_start_pfn;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700441 unsigned long covered_end_pfn;
442 unsigned long ha_end_pfn;
443 unsigned long end_pfn;
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700444 /*
445 * A list of gaps.
446 */
447 struct list_head gap_list;
448};
449
450struct hv_hotadd_gap {
451 struct list_head list;
452 unsigned long start_pfn;
453 unsigned long end_pfn;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700454};
455
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -0700456struct balloon_state {
457 __u32 num_pages;
458 struct work_struct wrk;
459};
460
K. Y. Srinivasanc51af822013-03-15 12:25:41 -0700461struct hot_add_wrk {
462 union dm_mem_page_range ha_page_range;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700463 union dm_mem_page_range ha_region_range;
K. Y. Srinivasanc51af822013-03-15 12:25:41 -0700464 struct work_struct wrk;
465};
466
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700467static bool hot_add = true;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800468static bool do_hot_add;
K. Y. Srinivasane500d152013-02-08 15:57:15 -0800469/*
470 * Delay reporting memory pressure by
471 * the specified number of seconds.
472 */
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700473static uint pressure_report_delay = 45;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800474
K. Y. Srinivasanae339332014-04-23 13:53:39 -0700475/*
476 * The last time we posted a pressure report to host.
477 */
478static unsigned long last_post_time;
479
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800480module_param(hot_add, bool, (S_IRUGO | S_IWUSR));
481MODULE_PARM_DESC(hot_add, "If set attempt memory hot_add");
482
K. Y. Srinivasane500d152013-02-08 15:57:15 -0800483module_param(pressure_report_delay, uint, (S_IRUGO | S_IWUSR));
484MODULE_PARM_DESC(pressure_report_delay, "Delay in secs in reporting pressure");
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800485static atomic_t trans_id = ATOMIC_INIT(0);
486
487static int dm_ring_size = (5 * PAGE_SIZE);
488
489/*
490 * Driver specific state.
491 */
492
493enum hv_dm_state {
494 DM_INITIALIZING = 0,
495 DM_INITIALIZED,
496 DM_BALLOON_UP,
497 DM_BALLOON_DOWN,
498 DM_HOT_ADD,
499 DM_INIT_ERROR
500};
501
502
503static __u8 recv_buffer[PAGE_SIZE];
504static __u8 *send_buffer;
505#define PAGES_IN_2M 512
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700506#define HA_CHUNK (32 * 1024)
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800507
508struct hv_dynmem_device {
509 struct hv_device *dev;
510 enum hv_dm_state state;
511 struct completion host_event;
512 struct completion config_event;
513
514 /*
515 * Number of pages we have currently ballooned out.
516 */
517 unsigned int num_pages_ballooned;
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -0800518 unsigned int num_pages_onlined;
519 unsigned int num_pages_added;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800520
521 /*
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -0700522 * State to manage the ballooning (up) operation.
523 */
524 struct balloon_state balloon_wrk;
525
526 /*
K. Y. Srinivasanc51af822013-03-15 12:25:41 -0700527 * State to execute the "hot-add" operation.
528 */
529 struct hot_add_wrk ha_wrk;
530
531 /*
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700532 * This state tracks if the host has specified a hot-add
533 * region.
534 */
535 bool host_specified_ha_region;
536
537 /*
538 * State to synchronize hot-add.
539 */
540 struct completion ol_waitevent;
541 bool ha_waiting;
542 /*
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -0700543 * This thread handles hot-add
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800544 * requests from the host as well as notifying
545 * the host with regards to memory pressure in
546 * the guest.
547 */
548 struct task_struct *thread;
549
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700550 /*
551 * Protects ha_region_list, num_pages_onlined counter and individual
552 * regions from ha_region_list.
553 */
554 spinlock_t ha_lock;
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800555
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800556 /*
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700557 * A list of hot-add regions.
558 */
559 struct list_head ha_region_list;
560
561 /*
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800562 * We start with the highest version we can support
563 * and downgrade based on the host; we save here the
564 * next version to try.
565 */
566 __u32 next_version;
Alex Ngb3bb97b2016-11-06 13:14:09 -0800567
568 /*
569 * The negotiated version agreed by host.
570 */
571 __u32 version;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800572};
573
574static struct hv_dynmem_device dm_device;
575
K. Y. Srinivasanae339332014-04-23 13:53:39 -0700576static void post_status(struct hv_dynmem_device *dm);
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800577
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700578#ifdef CONFIG_MEMORY_HOTPLUG
Vitaly Kuznetsovbba072d12018-03-04 22:17:21 -0700579static inline bool has_pfn_is_backed(struct hv_hotadd_state *has,
580 unsigned long pfn)
581{
582 struct hv_hotadd_gap *gap;
583
584 /* The page is not backed. */
585 if ((pfn < has->covered_start_pfn) || (pfn >= has->covered_end_pfn))
586 return false;
587
588 /* Check for gaps. */
589 list_for_each_entry(gap, &has->gap_list, list) {
590 if ((pfn >= gap->start_pfn) && (pfn < gap->end_pfn))
591 return false;
592 }
593
594 return true;
595}
596
597static unsigned long hv_page_offline_check(unsigned long start_pfn,
598 unsigned long nr_pages)
599{
600 unsigned long pfn = start_pfn, count = 0;
601 struct hv_hotadd_state *has;
602 bool found;
603
604 while (pfn < start_pfn + nr_pages) {
605 /*
606 * Search for HAS which covers the pfn and when we find one
607 * count how many consequitive PFNs are covered.
608 */
609 found = false;
610 list_for_each_entry(has, &dm_device.ha_region_list, list) {
611 while ((pfn >= has->start_pfn) &&
612 (pfn < has->end_pfn) &&
613 (pfn < start_pfn + nr_pages)) {
614 found = true;
615 if (has_pfn_is_backed(has, pfn))
616 count++;
617 pfn++;
618 }
619 }
620
621 /*
622 * This PFN is not in any HAS (e.g. we're offlining a region
623 * which was present at boot), no need to account for it. Go
624 * to the next one.
625 */
626 if (!found)
627 pfn++;
628 }
629
630 return count;
631}
632
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800633static int hv_memory_notifier(struct notifier_block *nb, unsigned long val,
634 void *v)
635{
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -0800636 struct memory_notify *mem = (struct memory_notify *)v;
Vitaly Kuznetsovbba072d12018-03-04 22:17:21 -0700637 unsigned long flags, pfn_count;
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -0800638
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800639 switch (val) {
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800640 case MEM_ONLINE:
641 case MEM_CANCEL_ONLINE:
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800642 if (dm_device.ha_waiting) {
643 dm_device.ha_waiting = false;
644 complete(&dm_device.ol_waitevent);
645 }
646 break;
647
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800648 case MEM_OFFLINE:
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700649 spin_lock_irqsave(&dm_device.ha_lock, flags);
Vitaly Kuznetsovbba072d12018-03-04 22:17:21 -0700650 pfn_count = hv_page_offline_check(mem->start_pfn,
651 mem->nr_pages);
652 if (pfn_count <= dm_device.num_pages_onlined) {
653 dm_device.num_pages_onlined -= pfn_count;
654 } else {
655 /*
656 * We're offlining more pages than we managed to online.
657 * This is unexpected. In any case don't let
658 * num_pages_onlined wrap around zero.
659 */
660 WARN_ON_ONCE(1);
661 dm_device.num_pages_onlined = 0;
662 }
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700663 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -0800664 break;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700665 case MEM_GOING_ONLINE:
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -0800666 case MEM_GOING_OFFLINE:
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800667 case MEM_CANCEL_OFFLINE:
668 break;
669 }
670 return NOTIFY_OK;
671}
672
673static struct notifier_block hv_memory_nb = {
674 .notifier_call = hv_memory_notifier,
675 .priority = 0
676};
677
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700678/* Check if the particular page is backed and can be onlined and online it. */
679static void hv_page_online_one(struct hv_hotadd_state *has, struct page *pg)
680{
Vitaly Kuznetsovbba072d12018-03-04 22:17:21 -0700681 if (!has_pfn_is_backed(has, page_to_pfn(pg)))
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700682 return;
683
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700684 /* This frame is currently backed; online the page. */
685 __online_page_set_limits(pg);
686 __online_page_increment_counters(pg);
687 __online_page_free(pg);
Alex Ng6df8d9a2017-08-06 13:12:53 -0700688
689 WARN_ON_ONCE(!spin_is_locked(&dm_device.ha_lock));
690 dm_device.num_pages_onlined++;
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700691}
692
693static void hv_bring_pgs_online(struct hv_hotadd_state *has,
694 unsigned long start_pfn, unsigned long size)
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800695{
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700696 int i;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800697
Alex Ngb3bb97b2016-11-06 13:14:09 -0800698 pr_debug("Online %lu pages starting at pfn 0x%lx\n", size, start_pfn);
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700699 for (i = 0; i < size; i++)
700 hv_page_online_one(has, pfn_to_page(start_pfn + i));
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700701}
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800702
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700703static void hv_mem_hot_add(unsigned long start, unsigned long size,
704 unsigned long pfn_count,
705 struct hv_hotadd_state *has)
706{
707 int ret = 0;
K. Y. Srinivasaned07ec92013-07-14 22:38:11 -0700708 int i, nid;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700709 unsigned long start_pfn;
710 unsigned long processed_pfn;
711 unsigned long total_pfn = pfn_count;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700712 unsigned long flags;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800713
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700714 for (i = 0; i < (size/HA_CHUNK); i++) {
715 start_pfn = start + (i * HA_CHUNK);
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700716
717 spin_lock_irqsave(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700718 has->ha_end_pfn += HA_CHUNK;
719
720 if (total_pfn > HA_CHUNK) {
721 processed_pfn = HA_CHUNK;
722 total_pfn -= HA_CHUNK;
723 } else {
724 processed_pfn = total_pfn;
725 total_pfn = 0;
726 }
727
728 has->covered_end_pfn += processed_pfn;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700729 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700730
731 init_completion(&dm_device.ol_waitevent);
Vitaly Kuznetsova132c542016-08-24 16:23:11 -0700732 dm_device.ha_waiting = !memhp_auto_online;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700733
734 nid = memory_add_physaddr_to_nid(PFN_PHYS(start_pfn));
735 ret = add_memory(nid, PFN_PHYS((start_pfn)),
736 (HA_CHUNK << PAGE_SHIFT));
737
738 if (ret) {
Vitaly Kuznetsov223e1e42018-03-04 22:17:19 -0700739 pr_err("hot_add memory failed error is %d\n", ret);
K. Y. Srinivasan7f4f2302013-03-18 13:51:38 -0700740 if (ret == -EEXIST) {
741 /*
742 * This error indicates that the error
743 * is not a transient failure. This is the
744 * case where the guest's physical address map
745 * precludes hot adding memory. Stop all further
746 * memory hot-add.
747 */
748 do_hot_add = false;
749 }
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700750 spin_lock_irqsave(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700751 has->ha_end_pfn -= HA_CHUNK;
752 has->covered_end_pfn -= processed_pfn;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700753 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700754 break;
755 }
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800756
757 /*
Vitaly Kuznetsova132c542016-08-24 16:23:11 -0700758 * Wait for the memory block to be onlined when memory onlining
759 * is done outside of kernel (memhp_auto_online). Since the hot
760 * add has succeeded, it is ok to proceed even if the pages in
761 * the hot added region have not been "onlined" within the
762 * allowed time.
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800763 */
Vitaly Kuznetsova132c542016-08-24 16:23:11 -0700764 if (dm_device.ha_waiting)
765 wait_for_completion_timeout(&dm_device.ol_waitevent,
766 5*HZ);
K. Y. Srinivasanae339332014-04-23 13:53:39 -0700767 post_status(&dm_device);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800768 }
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700769}
770
771static void hv_online_page(struct page *pg)
772{
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700773 struct hv_hotadd_state *has;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700774 unsigned long flags;
Vitaly Kuznetsov4f098af2018-03-04 22:17:20 -0700775 unsigned long pfn = page_to_pfn(pg);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700776
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700777 spin_lock_irqsave(&dm_device.ha_lock, flags);
778 list_for_each_entry(has, &dm_device.ha_region_list, list) {
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700779 /* The page belongs to a different HAS. */
Vitaly Kuznetsov4f098af2018-03-04 22:17:20 -0700780 if ((pfn < has->start_pfn) || (pfn >= has->end_pfn))
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700781 continue;
782
783 hv_page_online_one(has, pg);
784 break;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700785 }
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700786 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700787}
788
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700789static int pfn_covered(unsigned long start_pfn, unsigned long pfn_cnt)
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700790{
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700791 struct hv_hotadd_state *has;
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700792 struct hv_hotadd_gap *gap;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700793 unsigned long residual, new_inc;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700794 int ret = 0;
795 unsigned long flags;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700796
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700797 spin_lock_irqsave(&dm_device.ha_lock, flags);
798 list_for_each_entry(has, &dm_device.ha_region_list, list) {
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700799 /*
800 * If the pfn range we are dealing with is not in the current
801 * "hot add block", move on.
802 */
Vitaly Kuznetsov77c0c972016-04-30 19:21:35 -0700803 if (start_pfn < has->start_pfn || start_pfn >= has->end_pfn)
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700804 continue;
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700805
806 /*
807 * If the current start pfn is not where the covered_end
808 * is, create a gap and update covered_end_pfn.
809 */
810 if (has->covered_end_pfn != start_pfn) {
811 gap = kzalloc(sizeof(struct hv_hotadd_gap), GFP_ATOMIC);
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700812 if (!gap) {
813 ret = -ENOMEM;
814 break;
815 }
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700816
817 INIT_LIST_HEAD(&gap->list);
818 gap->start_pfn = has->covered_end_pfn;
819 gap->end_pfn = start_pfn;
820 list_add_tail(&gap->list, &has->gap_list);
821
822 has->covered_end_pfn = start_pfn;
823 }
824
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700825 /*
826 * If the current hot add-request extends beyond
827 * our current limit; extend it.
828 */
829 if ((start_pfn + pfn_cnt) > has->end_pfn) {
830 residual = (start_pfn + pfn_cnt - has->end_pfn);
831 /*
832 * Extend the region by multiples of HA_CHUNK.
833 */
834 new_inc = (residual / HA_CHUNK) * HA_CHUNK;
835 if (residual % HA_CHUNK)
836 new_inc += HA_CHUNK;
837
838 has->end_pfn += new_inc;
839 }
840
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700841 ret = 1;
842 break;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700843 }
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700844 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700845
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700846 return ret;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700847}
848
849static unsigned long handle_pg_range(unsigned long pg_start,
850 unsigned long pg_count)
851{
852 unsigned long start_pfn = pg_start;
853 unsigned long pfn_cnt = pg_count;
854 unsigned long size;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700855 struct hv_hotadd_state *has;
856 unsigned long pgs_ol = 0;
857 unsigned long old_covered_state;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700858 unsigned long res = 0, flags;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700859
Alex Ngb3bb97b2016-11-06 13:14:09 -0800860 pr_debug("Hot adding %lu pages starting at pfn 0x%lx.\n", pg_count,
861 pg_start);
862
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700863 spin_lock_irqsave(&dm_device.ha_lock, flags);
864 list_for_each_entry(has, &dm_device.ha_region_list, list) {
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700865 /*
866 * If the pfn range we are dealing with is not in the current
867 * "hot add block", move on.
868 */
Vitaly Kuznetsov77c0c972016-04-30 19:21:35 -0700869 if (start_pfn < has->start_pfn || start_pfn >= has->end_pfn)
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700870 continue;
871
872 old_covered_state = has->covered_end_pfn;
873
874 if (start_pfn < has->ha_end_pfn) {
875 /*
876 * This is the case where we are backing pages
877 * in an already hot added region. Bring
878 * these pages online first.
879 */
880 pgs_ol = has->ha_end_pfn - start_pfn;
881 if (pgs_ol > pfn_cnt)
882 pgs_ol = pfn_cnt;
Vitaly Kuznetsovd6cbd2c2015-03-27 09:10:11 -0700883
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700884 has->covered_end_pfn += pgs_ol;
885 pfn_cnt -= pgs_ol;
Vitaly Kuznetsovd6cbd2c2015-03-27 09:10:11 -0700886 /*
887 * Check if the corresponding memory block is already
888 * online by checking its last previously backed page.
889 * In case it is we need to bring rest (which was not
890 * backed previously) online too.
891 */
892 if (start_pfn > has->start_pfn &&
893 !PageReserved(pfn_to_page(start_pfn - 1)))
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700894 hv_bring_pgs_online(has, start_pfn, pgs_ol);
Vitaly Kuznetsovd6cbd2c2015-03-27 09:10:11 -0700895
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700896 }
897
898 if ((has->ha_end_pfn < has->end_pfn) && (pfn_cnt > 0)) {
899 /*
900 * We have some residual hot add range
901 * that needs to be hot added; hot add
902 * it now. Hot add a multiple of
903 * of HA_CHUNK that fully covers the pages
904 * we have.
905 */
906 size = (has->end_pfn - has->ha_end_pfn);
907 if (pfn_cnt <= size) {
908 size = ((pfn_cnt / HA_CHUNK) * HA_CHUNK);
909 if (pfn_cnt % HA_CHUNK)
910 size += HA_CHUNK;
911 } else {
912 pfn_cnt = size;
913 }
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700914 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700915 hv_mem_hot_add(has->ha_end_pfn, size, pfn_cnt, has);
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700916 spin_lock_irqsave(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700917 }
918 /*
919 * If we managed to online any pages that were given to us,
920 * we declare success.
921 */
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700922 res = has->covered_end_pfn - old_covered_state;
923 break;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700924 }
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700925 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700926
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700927 return res;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700928}
929
930static unsigned long process_hot_add(unsigned long pg_start,
931 unsigned long pfn_cnt,
932 unsigned long rg_start,
933 unsigned long rg_size)
934{
935 struct hv_hotadd_state *ha_region = NULL;
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700936 int covered;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700937 unsigned long flags;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700938
939 if (pfn_cnt == 0)
940 return 0;
941
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700942 if (!dm_device.host_specified_ha_region) {
943 covered = pfn_covered(pg_start, pfn_cnt);
944 if (covered < 0)
945 return 0;
946
947 if (covered)
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700948 goto do_pg_range;
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700949 }
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700950
951 /*
952 * If the host has specified a hot-add range; deal with it first.
953 */
954
K. Y. Srinivasan647965a2013-03-29 07:36:11 -0700955 if (rg_size != 0) {
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700956 ha_region = kzalloc(sizeof(struct hv_hotadd_state), GFP_KERNEL);
957 if (!ha_region)
958 return 0;
959
960 INIT_LIST_HEAD(&ha_region->list);
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700961 INIT_LIST_HEAD(&ha_region->gap_list);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700962
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700963 ha_region->start_pfn = rg_start;
964 ha_region->ha_end_pfn = rg_start;
Vitaly Kuznetsov7cf3b792016-08-24 16:23:09 -0700965 ha_region->covered_start_pfn = pg_start;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700966 ha_region->covered_end_pfn = pg_start;
967 ha_region->end_pfn = rg_start + rg_size;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700968
969 spin_lock_irqsave(&dm_device.ha_lock, flags);
970 list_add_tail(&ha_region->list, &dm_device.ha_region_list);
971 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700972 }
973
974do_pg_range:
975 /*
976 * Process the page range specified; bringing them
977 * online if possible.
978 */
979 return handle_pg_range(pg_start, pfn_cnt);
980}
981
982#endif
983
984static void hot_add_req(struct work_struct *dummy)
985{
986 struct dm_hot_add_response resp;
987#ifdef CONFIG_MEMORY_HOTPLUG
988 unsigned long pg_start, pfn_cnt;
989 unsigned long rg_start, rg_sz;
990#endif
991 struct hv_dynmem_device *dm = &dm_device;
992
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800993 memset(&resp, 0, sizeof(struct dm_hot_add_response));
994 resp.hdr.type = DM_MEM_HOT_ADD_RESPONSE;
995 resp.hdr.size = sizeof(struct dm_hot_add_response);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800996
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700997#ifdef CONFIG_MEMORY_HOTPLUG
998 pg_start = dm->ha_wrk.ha_page_range.finfo.start_page;
999 pfn_cnt = dm->ha_wrk.ha_page_range.finfo.page_cnt;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001000
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001001 rg_start = dm->ha_wrk.ha_region_range.finfo.start_page;
1002 rg_sz = dm->ha_wrk.ha_region_range.finfo.page_cnt;
1003
1004 if ((rg_start == 0) && (!dm->host_specified_ha_region)) {
1005 unsigned long region_size;
1006 unsigned long region_start;
1007
1008 /*
1009 * The host has not specified the hot-add region.
1010 * Based on the hot-add page range being specified,
1011 * compute a hot-add region that can cover the pages
1012 * that need to be hot-added while ensuring the alignment
1013 * and size requirements of Linux as it relates to hot-add.
1014 */
1015 region_start = pg_start;
1016 region_size = (pfn_cnt / HA_CHUNK) * HA_CHUNK;
1017 if (pfn_cnt % HA_CHUNK)
1018 region_size += HA_CHUNK;
1019
1020 region_start = (pg_start / HA_CHUNK) * HA_CHUNK;
1021
1022 rg_start = region_start;
1023 rg_sz = region_size;
1024 }
1025
K. Y. Srinivasan7f4f2302013-03-18 13:51:38 -07001026 if (do_hot_add)
1027 resp.page_count = process_hot_add(pg_start, pfn_cnt,
1028 rg_start, rg_sz);
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -08001029
1030 dm->num_pages_added += resp.page_count;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001031#endif
K. Y. Srinivasan7f4f2302013-03-18 13:51:38 -07001032 /*
1033 * The result field of the response structure has the
1034 * following semantics:
1035 *
1036 * 1. If all or some pages hot-added: Guest should return success.
1037 *
1038 * 2. If no pages could be hot-added:
1039 *
1040 * If the guest returns success, then the host
1041 * will not attempt any further hot-add operations. This
1042 * signifies a permanent failure.
1043 *
1044 * If the guest returns failure, then this failure will be
1045 * treated as a transient failure and the host may retry the
1046 * hot-add operation after some delay.
1047 */
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001048 if (resp.page_count > 0)
1049 resp.result = 1;
K. Y. Srinivasan7f4f2302013-03-18 13:51:38 -07001050 else if (!do_hot_add)
1051 resp.result = 1;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001052 else
1053 resp.result = 0;
1054
1055 if (!do_hot_add || (resp.page_count == 0))
Vitaly Kuznetsov223e1e42018-03-04 22:17:19 -07001056 pr_err("Memory hot add failed\n");
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001057
1058 dm->state = DM_INITIALIZED;
K. Y. Srinivasan20138d62013-07-17 17:27:27 -07001059 resp.hdr.trans_id = atomic_inc_return(&trans_id);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001060 vmbus_sendpacket(dm->dev->channel, &resp,
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001061 sizeof(struct dm_hot_add_response),
1062 (unsigned long)NULL,
1063 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001064}
1065
1066static void process_info(struct hv_dynmem_device *dm, struct dm_info_msg *msg)
1067{
K. Y. Srinivasan6427a0d2012-12-06 11:06:54 -08001068 struct dm_info_header *info_hdr;
1069
1070 info_hdr = (struct dm_info_header *)msg->info;
1071
1072 switch (info_hdr->type) {
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001073 case INFO_TYPE_MAX_PAGE_CNT:
Alex Ng85000962016-11-06 13:14:12 -08001074 if (info_hdr->data_size == sizeof(__u64)) {
1075 __u64 *max_page_count = (__u64 *)&info_hdr[1];
1076
Alex Ng7b6e54b2017-08-06 13:12:54 -07001077 pr_info("Max. dynamic memory size: %llu MB\n",
1078 (*max_page_count) >> (20 - PAGE_SHIFT));
Alex Ng85000962016-11-06 13:14:12 -08001079 }
1080
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001081 break;
1082 default:
Vitaly Kuznetsov223e1e42018-03-04 22:17:19 -07001083 pr_warn("Received Unknown type: %d\n", info_hdr->type);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001084 }
1085}
1086
Wei Yongjuna6025a22013-03-20 23:25:59 +08001087static unsigned long compute_balloon_floor(void)
K. Y. Srinivasan1c7db962013-02-08 15:57:16 -08001088{
1089 unsigned long min_pages;
1090#define MB2PAGES(mb) ((mb) << (20 - PAGE_SHIFT))
1091 /* Simple continuous piecewiese linear function:
1092 * max MiB -> min MiB gradient
1093 * 0 0
1094 * 16 16
1095 * 32 24
1096 * 128 72 (1/2)
1097 * 512 168 (1/4)
1098 * 2048 360 (1/8)
Vitaly Kuznetsov7fb0e1a2015-03-27 09:10:12 -07001099 * 8192 744 (1/16)
1100 * 32768 1512 (1/32)
K. Y. Srinivasan1c7db962013-02-08 15:57:16 -08001101 */
1102 if (totalram_pages < MB2PAGES(128))
1103 min_pages = MB2PAGES(8) + (totalram_pages >> 1);
1104 else if (totalram_pages < MB2PAGES(512))
1105 min_pages = MB2PAGES(40) + (totalram_pages >> 2);
1106 else if (totalram_pages < MB2PAGES(2048))
1107 min_pages = MB2PAGES(104) + (totalram_pages >> 3);
K. Y. Srinivasan79208c52015-01-09 23:54:29 -08001108 else if (totalram_pages < MB2PAGES(8192))
Vitaly Kuznetsov7fb0e1a2015-03-27 09:10:12 -07001109 min_pages = MB2PAGES(232) + (totalram_pages >> 4);
K. Y. Srinivasan1c7db962013-02-08 15:57:16 -08001110 else
Vitaly Kuznetsov7fb0e1a2015-03-27 09:10:12 -07001111 min_pages = MB2PAGES(488) + (totalram_pages >> 5);
K. Y. Srinivasan1c7db962013-02-08 15:57:16 -08001112#undef MB2PAGES
1113 return min_pages;
1114}
1115
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001116/*
1117 * Post our status as it relates memory pressure to the
1118 * host. Host expects the guests to post this status
1119 * periodically at 1 second intervals.
1120 *
1121 * The metrics specified in this protocol are very Windows
1122 * specific and so we cook up numbers here to convey our memory
1123 * pressure.
1124 */
1125
1126static void post_status(struct hv_dynmem_device *dm)
1127{
1128 struct dm_status status;
K. Y. Srinivasanae339332014-04-23 13:53:39 -07001129 unsigned long now = jiffies;
1130 unsigned long last_post = last_post_time;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001131
K. Y. Srinivasane500d152013-02-08 15:57:15 -08001132 if (pressure_report_delay > 0) {
1133 --pressure_report_delay;
1134 return;
1135 }
K. Y. Srinivasanae339332014-04-23 13:53:39 -07001136
1137 if (!time_after(now, (last_post_time + HZ)))
1138 return;
1139
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001140 memset(&status, 0, sizeof(struct dm_status));
1141 status.hdr.type = DM_STATUS_REPORT;
1142 status.hdr.size = sizeof(struct dm_status);
1143 status.hdr.trans_id = atomic_inc_return(&trans_id);
1144
K. Y. Srinivasan07315722013-01-25 16:18:47 -08001145 /*
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -08001146 * The host expects the guest to report free and committed memory.
1147 * Furthermore, the host expects the pressure information to include
1148 * the ballooned out pages. For a given amount of memory that we are
1149 * managing we need to compute a floor below which we should not
1150 * balloon. Compute this and add it to the pressure report.
1151 * We also need to report all offline pages (num_pages_added -
1152 * num_pages_onlined) as committed to the host, otherwise it can try
1153 * asking us to balloon them out.
K. Y. Srinivasan07315722013-01-25 16:18:47 -08001154 */
Alex Ngb605c2d2016-08-24 16:23:13 -07001155 status.num_avail = si_mem_available();
K. Y. Srinivasan1c7db962013-02-08 15:57:16 -08001156 status.num_committed = vm_memory_committed() +
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -08001157 dm->num_pages_ballooned +
1158 (dm->num_pages_added > dm->num_pages_onlined ?
1159 dm->num_pages_added - dm->num_pages_onlined : 0) +
1160 compute_balloon_floor();
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001161
K. Y. Srinivasanc5e22542013-07-14 22:38:12 -07001162 /*
1163 * If our transaction ID is no longer current, just don't
1164 * send the status. This can happen if we were interrupted
1165 * after we picked our transaction ID.
1166 */
1167 if (status.hdr.trans_id != atomic_read(&trans_id))
1168 return;
1169
K. Y. Srinivasanae339332014-04-23 13:53:39 -07001170 /*
1171 * If the last post time that we sampled has changed,
1172 * we have raced, don't post the status.
1173 */
1174 if (last_post != last_post_time)
1175 return;
1176
1177 last_post_time = jiffies;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001178 vmbus_sendpacket(dm->dev->channel, &status,
1179 sizeof(struct dm_status),
1180 (unsigned long)NULL,
1181 VM_PKT_DATA_INBAND, 0);
1182
1183}
1184
Greg Kroah-Hartman989623c2012-11-21 12:46:40 -08001185static void free_balloon_pages(struct hv_dynmem_device *dm,
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001186 union dm_mem_page_range *range_array)
1187{
1188 int num_pages = range_array->finfo.page_cnt;
1189 __u64 start_frame = range_array->finfo.start_page;
1190 struct page *pg;
1191 int i;
1192
1193 for (i = 0; i < num_pages; i++) {
1194 pg = pfn_to_page(i + start_frame);
1195 __free_page(pg);
1196 dm->num_pages_ballooned--;
1197 }
1198}
1199
1200
1201
Vitaly Kuznetsov797f88c92015-03-31 11:16:41 -07001202static unsigned int alloc_balloon_pages(struct hv_dynmem_device *dm,
1203 unsigned int num_pages,
1204 struct dm_balloon_response *bl_resp,
1205 int alloc_unit)
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001206{
Vitaly Kuznetsov797f88c92015-03-31 11:16:41 -07001207 unsigned int i = 0;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001208 struct page *pg;
1209
1210 if (num_pages < alloc_unit)
1211 return 0;
1212
1213 for (i = 0; (i * alloc_unit) < num_pages; i++) {
1214 if (bl_resp->hdr.size + sizeof(union dm_mem_page_range) >
1215 PAGE_SIZE)
1216 return i * alloc_unit;
1217
1218 /*
1219 * We execute this code in a thread context. Furthermore,
1220 * we don't want the kernel to try too hard.
1221 */
1222 pg = alloc_pages(GFP_HIGHUSER | __GFP_NORETRY |
1223 __GFP_NOMEMALLOC | __GFP_NOWARN,
1224 get_order(alloc_unit << PAGE_SHIFT));
1225
Vitaly Kuznetsov0a1a86a2015-03-27 09:10:13 -07001226 if (!pg)
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001227 return i * alloc_unit;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001228
1229 dm->num_pages_ballooned += alloc_unit;
1230
K. Y. Srinivasanf766dc12013-03-18 13:51:37 -07001231 /*
1232 * If we allocatted 2M pages; split them so we
1233 * can free them in any order we get.
1234 */
1235
1236 if (alloc_unit != 1)
1237 split_page(pg, get_order(alloc_unit << PAGE_SHIFT));
1238
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001239 bl_resp->range_count++;
1240 bl_resp->range_array[i].finfo.start_page =
1241 page_to_pfn(pg);
1242 bl_resp->range_array[i].finfo.page_cnt = alloc_unit;
1243 bl_resp->hdr.size += sizeof(union dm_mem_page_range);
1244
1245 }
1246
1247 return num_pages;
1248}
1249
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001250static void balloon_up(struct work_struct *dummy)
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001251{
Vitaly Kuznetsov797f88c92015-03-31 11:16:41 -07001252 unsigned int num_pages = dm_device.balloon_wrk.num_pages;
1253 unsigned int num_ballooned = 0;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001254 struct dm_balloon_response *bl_resp;
1255 int alloc_unit;
1256 int ret;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001257 bool done = false;
1258 int i;
Alex Ngb605c2d2016-08-24 16:23:13 -07001259 long avail_pages;
Vitaly Kuznetsov530d15b2015-02-28 11:39:00 -08001260 unsigned long floor;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001261
Dexuan Cuif6712232014-11-24 20:32:43 -08001262 /* The host balloons pages in 2M granularity. */
1263 WARN_ON_ONCE(num_pages % PAGES_IN_2M != 0);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001264
1265 /*
K. Y. Srinivasanf766dc12013-03-18 13:51:37 -07001266 * We will attempt 2M allocations. However, if we fail to
1267 * allocate 2M chunks, we will go back to 4k allocations.
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001268 */
K. Y. Srinivasanf766dc12013-03-18 13:51:37 -07001269 alloc_unit = 512;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001270
Alex Ngb605c2d2016-08-24 16:23:13 -07001271 avail_pages = si_mem_available();
Vitaly Kuznetsov530d15b2015-02-28 11:39:00 -08001272 floor = compute_balloon_floor();
1273
1274 /* Refuse to balloon below the floor, keep the 2M granularity. */
Alex Ngb605c2d2016-08-24 16:23:13 -07001275 if (avail_pages < num_pages || avail_pages - num_pages < floor) {
Alex Ngb3bb97b2016-11-06 13:14:09 -08001276 pr_warn("Balloon request will be partially fulfilled. %s\n",
1277 avail_pages < num_pages ? "Not enough memory." :
1278 "Balloon floor reached.");
1279
Alex Ngb605c2d2016-08-24 16:23:13 -07001280 num_pages = avail_pages > floor ? (avail_pages - floor) : 0;
Vitaly Kuznetsov530d15b2015-02-28 11:39:00 -08001281 num_pages -= num_pages % PAGES_IN_2M;
1282 }
1283
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001284 while (!done) {
1285 bl_resp = (struct dm_balloon_response *)send_buffer;
1286 memset(send_buffer, 0, PAGE_SIZE);
1287 bl_resp->hdr.type = DM_BALLOON_RESPONSE;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001288 bl_resp->hdr.size = sizeof(struct dm_balloon_response);
1289 bl_resp->more_pages = 1;
1290
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001291 num_pages -= num_ballooned;
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001292 num_ballooned = alloc_balloon_pages(&dm_device, num_pages,
Vitaly Kuznetsov0a1a86a2015-03-27 09:10:13 -07001293 bl_resp, alloc_unit);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001294
Dexuan Cuif6712232014-11-24 20:32:43 -08001295 if (alloc_unit != 1 && num_ballooned == 0) {
K. Y. Srinivasanf766dc12013-03-18 13:51:37 -07001296 alloc_unit = 1;
1297 continue;
1298 }
1299
Vitaly Kuznetsov0a1a86a2015-03-27 09:10:13 -07001300 if (num_ballooned == 0 || num_ballooned == num_pages) {
Alex Ngb3bb97b2016-11-06 13:14:09 -08001301 pr_debug("Ballooned %u out of %u requested pages.\n",
1302 num_pages, dm_device.balloon_wrk.num_pages);
1303
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001304 bl_resp->more_pages = 0;
1305 done = true;
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001306 dm_device.state = DM_INITIALIZED;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001307 }
1308
1309 /*
1310 * We are pushing a lot of data through the channel;
1311 * deal with transient failures caused because of the
1312 * lack of space in the ring buffer.
1313 */
1314
1315 do {
K. Y. Srinivasan20138d62013-07-17 17:27:27 -07001316 bl_resp->hdr.trans_id = atomic_inc_return(&trans_id);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001317 ret = vmbus_sendpacket(dm_device.dev->channel,
1318 bl_resp,
1319 bl_resp->hdr.size,
1320 (unsigned long)NULL,
1321 VM_PKT_DATA_INBAND, 0);
1322
1323 if (ret == -EAGAIN)
1324 msleep(20);
K. Y. Srinivasanae339332014-04-23 13:53:39 -07001325 post_status(&dm_device);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001326 } while (ret == -EAGAIN);
1327
1328 if (ret) {
1329 /*
1330 * Free up the memory we allocatted.
1331 */
Vitaly Kuznetsov223e1e42018-03-04 22:17:19 -07001332 pr_err("Balloon response failed\n");
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001333
1334 for (i = 0; i < bl_resp->range_count; i++)
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001335 free_balloon_pages(&dm_device,
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001336 &bl_resp->range_array[i]);
1337
1338 done = true;
1339 }
1340 }
1341
1342}
1343
1344static void balloon_down(struct hv_dynmem_device *dm,
1345 struct dm_unballoon_request *req)
1346{
1347 union dm_mem_page_range *range_array = req->range_array;
1348 int range_count = req->range_count;
1349 struct dm_unballoon_response resp;
1350 int i;
Alex Ngb3bb97b2016-11-06 13:14:09 -08001351 unsigned int prev_pages_ballooned = dm->num_pages_ballooned;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001352
K. Y. Srinivasanae339332014-04-23 13:53:39 -07001353 for (i = 0; i < range_count; i++) {
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001354 free_balloon_pages(dm, &range_array[i]);
K. Y. Srinivasanab3de222015-01-09 23:54:31 -08001355 complete(&dm_device.config_event);
K. Y. Srinivasanae339332014-04-23 13:53:39 -07001356 }
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001357
Alex Ngb3bb97b2016-11-06 13:14:09 -08001358 pr_debug("Freed %u ballooned pages.\n",
1359 prev_pages_ballooned - dm->num_pages_ballooned);
1360
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001361 if (req->more_pages == 1)
1362 return;
1363
1364 memset(&resp, 0, sizeof(struct dm_unballoon_response));
1365 resp.hdr.type = DM_UNBALLOON_RESPONSE;
1366 resp.hdr.trans_id = atomic_inc_return(&trans_id);
1367 resp.hdr.size = sizeof(struct dm_unballoon_response);
1368
1369 vmbus_sendpacket(dm_device.dev->channel, &resp,
1370 sizeof(struct dm_unballoon_response),
1371 (unsigned long)NULL,
1372 VM_PKT_DATA_INBAND, 0);
1373
1374 dm->state = DM_INITIALIZED;
1375}
1376
1377static void balloon_onchannelcallback(void *context);
1378
1379static int dm_thread_func(void *dm_dev)
1380{
1381 struct hv_dynmem_device *dm = dm_dev;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001382
1383 while (!kthread_should_stop()) {
K. Y. Srinivasanab3de222015-01-09 23:54:31 -08001384 wait_for_completion_interruptible_timeout(
K. Y. Srinivasan5dba4c52014-02-13 16:24:33 -08001385 &dm_device.config_event, 1*HZ);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001386 /*
1387 * The host expects us to post information on the memory
1388 * pressure every second.
1389 */
K. Y. Srinivasanab3de222015-01-09 23:54:31 -08001390 reinit_completion(&dm_device.config_event);
1391 post_status(dm);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001392 }
1393
1394 return 0;
1395}
1396
1397
1398static void version_resp(struct hv_dynmem_device *dm,
1399 struct dm_version_response *vresp)
1400{
1401 struct dm_version_request version_req;
1402 int ret;
1403
1404 if (vresp->is_accepted) {
1405 /*
1406 * We are done; wakeup the
1407 * context waiting for version
1408 * negotiation.
1409 */
1410 complete(&dm->host_event);
1411 return;
1412 }
1413 /*
1414 * If there are more versions to try, continue
1415 * with negotiations; if not
1416 * shutdown the service since we are not able
1417 * to negotiate a suitable version number
1418 * with the host.
1419 */
1420 if (dm->next_version == 0)
1421 goto version_error;
1422
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001423 memset(&version_req, 0, sizeof(struct dm_version_request));
1424 version_req.hdr.type = DM_VERSION_REQUEST;
1425 version_req.hdr.size = sizeof(struct dm_version_request);
1426 version_req.hdr.trans_id = atomic_inc_return(&trans_id);
Alex Ngb6ddeae2015-08-01 16:08:13 -07001427 version_req.version.version = dm->next_version;
Alex Ngb3bb97b2016-11-06 13:14:09 -08001428 dm->version = version_req.version.version;
Alex Ngb6ddeae2015-08-01 16:08:13 -07001429
1430 /*
1431 * Set the next version to try in case current version fails.
1432 * Win7 protocol ought to be the last one to try.
1433 */
1434 switch (version_req.version.version) {
1435 case DYNMEM_PROTOCOL_VERSION_WIN8:
1436 dm->next_version = DYNMEM_PROTOCOL_VERSION_WIN7;
1437 version_req.is_last_attempt = 0;
1438 break;
1439 default:
1440 dm->next_version = 0;
1441 version_req.is_last_attempt = 1;
1442 }
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001443
1444 ret = vmbus_sendpacket(dm->dev->channel, &version_req,
1445 sizeof(struct dm_version_request),
1446 (unsigned long)NULL,
1447 VM_PKT_DATA_INBAND, 0);
1448
1449 if (ret)
1450 goto version_error;
1451
1452 return;
1453
1454version_error:
1455 dm->state = DM_INIT_ERROR;
1456 complete(&dm->host_event);
1457}
1458
1459static void cap_resp(struct hv_dynmem_device *dm,
1460 struct dm_capabilities_resp_msg *cap_resp)
1461{
1462 if (!cap_resp->is_accepted) {
Vitaly Kuznetsov223e1e42018-03-04 22:17:19 -07001463 pr_err("Capabilities not accepted by host\n");
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001464 dm->state = DM_INIT_ERROR;
1465 }
1466 complete(&dm->host_event);
1467}
1468
1469static void balloon_onchannelcallback(void *context)
1470{
1471 struct hv_device *dev = context;
1472 u32 recvlen;
1473 u64 requestid;
1474 struct dm_message *dm_msg;
1475 struct dm_header *dm_hdr;
1476 struct hv_dynmem_device *dm = hv_get_drvdata(dev);
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001477 struct dm_balloon *bal_msg;
K. Y. Srinivasanc51af822013-03-15 12:25:41 -07001478 struct dm_hot_add *ha_msg;
1479 union dm_mem_page_range *ha_pg_range;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001480 union dm_mem_page_range *ha_region;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001481
1482 memset(recv_buffer, 0, sizeof(recv_buffer));
1483 vmbus_recvpacket(dev->channel, recv_buffer,
1484 PAGE_SIZE, &recvlen, &requestid);
1485
1486 if (recvlen > 0) {
1487 dm_msg = (struct dm_message *)recv_buffer;
1488 dm_hdr = &dm_msg->hdr;
1489
1490 switch (dm_hdr->type) {
1491 case DM_VERSION_RESPONSE:
1492 version_resp(dm,
1493 (struct dm_version_response *)dm_msg);
1494 break;
1495
1496 case DM_CAPABILITIES_RESPONSE:
1497 cap_resp(dm,
1498 (struct dm_capabilities_resp_msg *)dm_msg);
1499 break;
1500
1501 case DM_BALLOON_REQUEST:
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001502 if (dm->state == DM_BALLOON_UP)
1503 pr_warn("Currently ballooning\n");
1504 bal_msg = (struct dm_balloon *)recv_buffer;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001505 dm->state = DM_BALLOON_UP;
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001506 dm_device.balloon_wrk.num_pages = bal_msg->num_pages;
1507 schedule_work(&dm_device.balloon_wrk.wrk);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001508 break;
1509
1510 case DM_UNBALLOON_REQUEST:
1511 dm->state = DM_BALLOON_DOWN;
1512 balloon_down(dm,
1513 (struct dm_unballoon_request *)recv_buffer);
1514 break;
1515
1516 case DM_MEM_HOT_ADD_REQUEST:
K. Y. Srinivasanc51af822013-03-15 12:25:41 -07001517 if (dm->state == DM_HOT_ADD)
1518 pr_warn("Currently hot-adding\n");
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001519 dm->state = DM_HOT_ADD;
K. Y. Srinivasanc51af822013-03-15 12:25:41 -07001520 ha_msg = (struct dm_hot_add *)recv_buffer;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001521 if (ha_msg->hdr.size == sizeof(struct dm_hot_add)) {
1522 /*
1523 * This is a normal hot-add request specifying
1524 * hot-add memory.
1525 */
Vitaly Kuznetsovd19a55d2016-04-30 19:21:36 -07001526 dm->host_specified_ha_region = false;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001527 ha_pg_range = &ha_msg->range;
1528 dm->ha_wrk.ha_page_range = *ha_pg_range;
1529 dm->ha_wrk.ha_region_range.page_range = 0;
1530 } else {
1531 /*
1532 * Host is specifying that we first hot-add
1533 * a region and then partially populate this
1534 * region.
1535 */
1536 dm->host_specified_ha_region = true;
1537 ha_pg_range = &ha_msg->range;
1538 ha_region = &ha_pg_range[1];
1539 dm->ha_wrk.ha_page_range = *ha_pg_range;
1540 dm->ha_wrk.ha_region_range = *ha_region;
1541 }
K. Y. Srinivasanc51af822013-03-15 12:25:41 -07001542 schedule_work(&dm_device.ha_wrk.wrk);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001543 break;
1544
1545 case DM_INFO_MESSAGE:
1546 process_info(dm, (struct dm_info_msg *)dm_msg);
1547 break;
1548
1549 default:
Vitaly Kuznetsov223e1e42018-03-04 22:17:19 -07001550 pr_warn("Unhandled message: type: %d\n", dm_hdr->type);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001551
1552 }
1553 }
1554
1555}
1556
1557static int balloon_probe(struct hv_device *dev,
1558 const struct hv_vmbus_device_id *dev_id)
1559{
Nicholas Mc Guireb057b3a2015-02-27 11:26:03 -08001560 int ret;
1561 unsigned long t;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001562 struct dm_version_request version_req;
1563 struct dm_capabilities cap_msg;
1564
Alex Ng8ba8c0a2016-11-06 13:14:08 -08001565#ifdef CONFIG_MEMORY_HOTPLUG
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001566 do_hot_add = hot_add;
Alex Ng8ba8c0a2016-11-06 13:14:08 -08001567#else
1568 do_hot_add = false;
1569#endif
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001570
1571 /*
1572 * First allocate a send buffer.
1573 */
1574
1575 send_buffer = kmalloc(PAGE_SIZE, GFP_KERNEL);
1576 if (!send_buffer)
1577 return -ENOMEM;
1578
1579 ret = vmbus_open(dev->channel, dm_ring_size, dm_ring_size, NULL, 0,
1580 balloon_onchannelcallback, dev);
1581
1582 if (ret)
K. Y. Srinivasan33080c12012-12-11 11:07:17 -08001583 goto probe_error0;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001584
1585 dm_device.dev = dev;
1586 dm_device.state = DM_INITIALIZING;
Alex Ngb6ddeae2015-08-01 16:08:13 -07001587 dm_device.next_version = DYNMEM_PROTOCOL_VERSION_WIN8;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001588 init_completion(&dm_device.host_event);
1589 init_completion(&dm_device.config_event);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001590 INIT_LIST_HEAD(&dm_device.ha_region_list);
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -07001591 spin_lock_init(&dm_device.ha_lock);
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001592 INIT_WORK(&dm_device.balloon_wrk.wrk, balloon_up);
K. Y. Srinivasanc51af822013-03-15 12:25:41 -07001593 INIT_WORK(&dm_device.ha_wrk.wrk, hot_add_req);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001594 dm_device.host_specified_ha_region = false;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001595
1596 dm_device.thread =
1597 kthread_run(dm_thread_func, &dm_device, "hv_balloon");
1598 if (IS_ERR(dm_device.thread)) {
1599 ret = PTR_ERR(dm_device.thread);
K. Y. Srinivasan33080c12012-12-11 11:07:17 -08001600 goto probe_error1;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001601 }
1602
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001603#ifdef CONFIG_MEMORY_HOTPLUG
1604 set_online_page_callback(&hv_online_page);
K. Y. Srinivasan22f88472015-01-09 23:54:30 -08001605 register_memory_notifier(&hv_memory_nb);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001606#endif
1607
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001608 hv_set_drvdata(dev, &dm_device);
1609 /*
1610 * Initiate the hand shake with the host and negotiate
1611 * a version that the host can support. We start with the
1612 * highest version number and go down if the host cannot
1613 * support it.
1614 */
1615 memset(&version_req, 0, sizeof(struct dm_version_request));
1616 version_req.hdr.type = DM_VERSION_REQUEST;
1617 version_req.hdr.size = sizeof(struct dm_version_request);
1618 version_req.hdr.trans_id = atomic_inc_return(&trans_id);
Alex Ngb6ddeae2015-08-01 16:08:13 -07001619 version_req.version.version = DYNMEM_PROTOCOL_VERSION_WIN10;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001620 version_req.is_last_attempt = 0;
Alex Ngb3bb97b2016-11-06 13:14:09 -08001621 dm_device.version = version_req.version.version;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001622
1623 ret = vmbus_sendpacket(dev->channel, &version_req,
1624 sizeof(struct dm_version_request),
1625 (unsigned long)NULL,
K. Y. Srinivasan7a64b862013-03-15 12:25:39 -07001626 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001627 if (ret)
K. Y. Srinivasan33080c12012-12-11 11:07:17 -08001628 goto probe_error2;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001629
1630 t = wait_for_completion_timeout(&dm_device.host_event, 5*HZ);
1631 if (t == 0) {
1632 ret = -ETIMEDOUT;
K. Y. Srinivasan33080c12012-12-11 11:07:17 -08001633 goto probe_error2;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001634 }
1635
1636 /*
1637 * If we could not negotiate a compatible version with the host
1638 * fail the probe function.
1639 */
1640 if (dm_device.state == DM_INIT_ERROR) {
1641 ret = -ETIMEDOUT;
K. Y. Srinivasan33080c12012-12-11 11:07:17 -08001642 goto probe_error2;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001643 }
Alex Ngb3bb97b2016-11-06 13:14:09 -08001644
1645 pr_info("Using Dynamic Memory protocol version %u.%u\n",
1646 DYNMEM_MAJOR_VERSION(dm_device.version),
1647 DYNMEM_MINOR_VERSION(dm_device.version));
1648
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001649 /*
1650 * Now submit our capabilities to the host.
1651 */
1652 memset(&cap_msg, 0, sizeof(struct dm_capabilities));
1653 cap_msg.hdr.type = DM_CAPABILITIES_REPORT;
1654 cap_msg.hdr.size = sizeof(struct dm_capabilities);
1655 cap_msg.hdr.trans_id = atomic_inc_return(&trans_id);
1656
1657 cap_msg.caps.cap_bits.balloon = 1;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001658 cap_msg.caps.cap_bits.hot_add = 1;
1659
1660 /*
K. Y. Srinivasan647965a2013-03-29 07:36:11 -07001661 * Specify our alignment requirements as it relates
1662 * memory hot-add. Specify 128MB alignment.
1663 */
1664 cap_msg.caps.cap_bits.hot_add_alignment = 7;
1665
1666 /*
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001667 * Currently the host does not use these
1668 * values and we set them to what is done in the
1669 * Windows driver.
1670 */
1671 cap_msg.min_page_cnt = 0;
1672 cap_msg.max_page_number = -1;
1673
1674 ret = vmbus_sendpacket(dev->channel, &cap_msg,
1675 sizeof(struct dm_capabilities),
1676 (unsigned long)NULL,
K. Y. Srinivasan7a64b862013-03-15 12:25:39 -07001677 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001678 if (ret)
K. Y. Srinivasan33080c12012-12-11 11:07:17 -08001679 goto probe_error2;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001680
1681 t = wait_for_completion_timeout(&dm_device.host_event, 5*HZ);
1682 if (t == 0) {
1683 ret = -ETIMEDOUT;
K. Y. Srinivasan33080c12012-12-11 11:07:17 -08001684 goto probe_error2;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001685 }
1686
1687 /*
1688 * If the host does not like our capabilities,
1689 * fail the probe function.
1690 */
1691 if (dm_device.state == DM_INIT_ERROR) {
1692 ret = -ETIMEDOUT;
K. Y. Srinivasan33080c12012-12-11 11:07:17 -08001693 goto probe_error2;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001694 }
1695
1696 dm_device.state = DM_INITIALIZED;
Alex Ngc548f392017-08-06 13:12:55 -07001697 last_post_time = jiffies;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001698
1699 return 0;
1700
K. Y. Srinivasan33080c12012-12-11 11:07:17 -08001701probe_error2:
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001702#ifdef CONFIG_MEMORY_HOTPLUG
1703 restore_online_page_callback(&hv_online_page);
1704#endif
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001705 kthread_stop(dm_device.thread);
1706
K. Y. Srinivasan33080c12012-12-11 11:07:17 -08001707probe_error1:
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001708 vmbus_close(dev->channel);
K. Y. Srinivasan33080c12012-12-11 11:07:17 -08001709probe_error0:
1710 kfree(send_buffer);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001711 return ret;
1712}
1713
1714static int balloon_remove(struct hv_device *dev)
1715{
1716 struct hv_dynmem_device *dm = hv_get_drvdata(dev);
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -07001717 struct hv_hotadd_state *has, *tmp;
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -07001718 struct hv_hotadd_gap *gap, *tmp_gap;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -07001719 unsigned long flags;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001720
1721 if (dm->num_pages_ballooned != 0)
1722 pr_warn("Ballooned pages: %d\n", dm->num_pages_ballooned);
1723
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001724 cancel_work_sync(&dm->balloon_wrk.wrk);
K. Y. Srinivasanc51af822013-03-15 12:25:41 -07001725 cancel_work_sync(&dm->ha_wrk.wrk);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001726
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001727 vmbus_close(dev->channel);
1728 kthread_stop(dm->thread);
K. Y. Srinivasan33080c12012-12-11 11:07:17 -08001729 kfree(send_buffer);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001730#ifdef CONFIG_MEMORY_HOTPLUG
1731 restore_online_page_callback(&hv_online_page);
K. Y. Srinivasan22f88472015-01-09 23:54:30 -08001732 unregister_memory_notifier(&hv_memory_nb);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001733#endif
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -07001734 spin_lock_irqsave(&dm_device.ha_lock, flags);
1735 list_for_each_entry_safe(has, tmp, &dm->ha_region_list, list) {
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -07001736 list_for_each_entry_safe(gap, tmp_gap, &has->gap_list, list) {
1737 list_del(&gap->list);
1738 kfree(gap);
1739 }
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001740 list_del(&has->list);
1741 kfree(has);
1742 }
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -07001743 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001744
1745 return 0;
1746}
1747
1748static const struct hv_vmbus_device_id id_table[] = {
1749 /* Dynamic Memory Class ID */
1750 /* 525074DC-8985-46e2-8057-A307DC18A502 */
K. Y. Srinivasand13984e2013-01-23 17:42:41 -08001751 { HV_DM_GUID, },
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001752 { },
1753};
1754
1755MODULE_DEVICE_TABLE(vmbus, id_table);
1756
1757static struct hv_driver balloon_drv = {
1758 .name = "hv_balloon",
1759 .id_table = id_table,
1760 .probe = balloon_probe,
1761 .remove = balloon_remove,
1762};
1763
1764static int __init init_balloon_drv(void)
1765{
1766
1767 return vmbus_driver_register(&balloon_drv);
1768}
1769
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001770module_init(init_balloon_drv);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001771
1772MODULE_DESCRIPTION("Hyper-V Balloon");
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001773MODULE_LICENSE("GPL");