blob: 7bfe365d93720c8b9c4ebb1809e1e1adc7c5f9f8 [file] [log] [blame]
Thomas Gleixnerfd534e92019-05-23 11:14:39 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Sasha Levin1e214a52011-11-03 10:20:04 +02002/*
3 * Virtio balloon implementation, inspired by Dor Laor and Marcelo
Rusty Russell6b35e402008-02-04 23:50:12 -05004 * Tosatti's implementations.
5 *
6 * Copyright 2008 Rusty Russell IBM Corporation
Rusty Russell6b35e402008-02-04 23:50:12 -05007 */
Sasha Levin1e214a52011-11-03 10:20:04 +02008
Rusty Russell6b35e402008-02-04 23:50:12 -05009#include <linux/virtio.h>
10#include <linux/virtio_balloon.h>
11#include <linux/swap.h>
Petr Mladekfad7b7b2016-01-25 17:38:05 +010012#include <linux/workqueue.h>
Johann Felix Soden6659a0f2008-02-06 01:40:22 -080013#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Paul Gortmakerb5a2c4f2011-07-03 16:20:30 -040015#include <linux/module.h>
Rafael Aquinie2250422012-12-11 16:02:45 -080016#include <linux/balloon_compaction.h>
Michael S. Tsirkin3d2a3772015-03-10 11:55:08 +103017#include <linux/wait.h>
Igor Redko5057dcd2016-03-17 14:19:08 -070018#include <linux/mm.h>
Minchan Kimb1123ea62016-07-26 15:23:09 -070019#include <linux/mount.h>
Ingo Molnar50d34392017-02-05 16:03:58 +010020#include <linux/magic.h>
David Howells99558d22019-03-25 16:38:25 +000021#include <linux/pseudo_fs.h>
Rusty Russell6b35e402008-02-04 23:50:12 -050022
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030023/*
24 * Balloon device works in 4K page units. So each page is pointed to by
25 * multiple balloon pages. All memory counters in this driver are in balloon
26 * page units.
27 */
Rafael Aquinie2250422012-12-11 16:02:45 -080028#define VIRTIO_BALLOON_PAGES_PER_PAGE (unsigned)(PAGE_SIZE >> VIRTIO_BALLOON_PFN_SHIFT)
29#define VIRTIO_BALLOON_ARRAY_PFNS_MAX 256
Raushaniya Maksudova5a10b7d2014-11-10 09:36:29 +103030#define VIRTBALLOON_OOM_NOTIFY_PRIORITY 80
31
Wei Wang86a55972018-08-27 09:32:17 +080032#define VIRTIO_BALLOON_FREE_PAGE_ALLOC_FLAG (__GFP_NORETRY | __GFP_NOWARN | \
33 __GFP_NOMEMALLOC)
34/* The order of free page blocks to report to host */
Michael S. Tsirkin2a946fa2019-11-19 05:21:47 -050035#define VIRTIO_BALLOON_HINT_BLOCK_ORDER (MAX_ORDER - 1)
Wei Wang86a55972018-08-27 09:32:17 +080036/* The size of a free page block in bytes */
Michael S. Tsirkin2a946fa2019-11-19 05:21:47 -050037#define VIRTIO_BALLOON_HINT_BLOCK_BYTES \
38 (1 << (VIRTIO_BALLOON_HINT_BLOCK_ORDER + PAGE_SHIFT))
Michael S. Tsirkin63b9b802019-11-19 05:25:24 -050039#define VIRTIO_BALLOON_HINT_BLOCK_PAGES (1 << VIRTIO_BALLOON_HINT_BLOCK_ORDER)
Wei Wang86a55972018-08-27 09:32:17 +080040
Minchan Kimb1123ea62016-07-26 15:23:09 -070041#ifdef CONFIG_BALLOON_COMPACTION
42static struct vfsmount *balloon_mnt;
43#endif
44
Wei Wang86a55972018-08-27 09:32:17 +080045enum virtio_balloon_vq {
46 VIRTIO_BALLOON_VQ_INFLATE,
47 VIRTIO_BALLOON_VQ_DEFLATE,
48 VIRTIO_BALLOON_VQ_STATS,
49 VIRTIO_BALLOON_VQ_FREE_PAGE,
50 VIRTIO_BALLOON_VQ_MAX
51};
52
Wei Wangbf4dc0b2019-01-07 15:01:04 +080053enum virtio_balloon_config_read {
54 VIRTIO_BALLOON_CONFIG_READ_CMD_ID = 0,
55};
56
Michael S. Tsirkin25e65e42015-01-15 13:33:31 +020057struct virtio_balloon {
Rusty Russell6b35e402008-02-04 23:50:12 -050058 struct virtio_device *vdev;
Wei Wang86a55972018-08-27 09:32:17 +080059 struct virtqueue *inflate_vq, *deflate_vq, *stats_vq, *free_page_vq;
60
61 /* Balloon's own wq for cpu-intensive work items */
62 struct workqueue_struct *balloon_wq;
63 /* The free page reporting work item submitted to the balloon wq */
64 struct work_struct report_free_page_work;
Rusty Russell6b35e402008-02-04 23:50:12 -050065
Petr Mladekfad7b7b2016-01-25 17:38:05 +010066 /* The balloon servicing is delegated to a freezable workqueue. */
Petr Mladekfd0e21c2016-01-25 17:38:06 +010067 struct work_struct update_balloon_stats_work;
68 struct work_struct update_balloon_size_work;
Rusty Russell6b35e402008-02-04 23:50:12 -050069
Petr Mladekfad7b7b2016-01-25 17:38:05 +010070 /* Prevent updating balloon when it is being canceled. */
71 spinlock_t stop_update_lock;
72 bool stop_update;
Wei Wangbf4dc0b2019-01-07 15:01:04 +080073 /* Bitmap to indicate if reading the related config fields are needed */
74 unsigned long config_read_bitmap;
Rusty Russell6b35e402008-02-04 23:50:12 -050075
Wei Wang86a55972018-08-27 09:32:17 +080076 /* The list of allocated free pages, waiting to be given back to mm */
77 struct list_head free_page_list;
78 spinlock_t free_page_list_lock;
79 /* The number of free page blocks on the above list */
80 unsigned long num_free_page_blocks;
Wei Wangbf4dc0b2019-01-07 15:01:04 +080081 /*
82 * The cmd id received from host.
83 * Read it via virtio_balloon_cmd_id_received to get the latest value
84 * sent from host.
85 */
86 u32 cmd_id_received_cache;
Wei Wang86a55972018-08-27 09:32:17 +080087 /* The cmd id that is actively in use */
88 __virtio32 cmd_id_active;
89 /* Buffer to store the stop sign */
90 __virtio32 cmd_id_stop;
91
Rusty Russell6b35e402008-02-04 23:50:12 -050092 /* Waiting for host to ack the pages we released. */
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +030093 wait_queue_head_t acked;
Rusty Russell6b35e402008-02-04 23:50:12 -050094
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030095 /* Number of balloon pages we've told the Host we're not using. */
Rusty Russell6b35e402008-02-04 23:50:12 -050096 unsigned int num_pages;
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030097 /*
Rafael Aquinie2250422012-12-11 16:02:45 -080098 * The pages we've told the Host we're not using are enqueued
99 * at vb_dev_info->pages list.
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300100 * Each page on this list adds VIRTIO_BALLOON_PAGES_PER_PAGE
101 * to num_pages above.
102 */
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700103 struct balloon_dev_info vb_dev_info;
Rafael Aquinie2250422012-12-11 16:02:45 -0800104
105 /* Synchronize access/update to this struct virtio_balloon elements */
106 struct mutex balloon_lock;
Rusty Russell6b35e402008-02-04 23:50:12 -0500107
108 /* The array of pfns we tell the Host about. */
109 unsigned int num_pfns;
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300110 __virtio32 pfns[VIRTIO_BALLOON_ARRAY_PFNS_MAX];
Adam Litke9564e132009-11-30 10:14:15 -0600111
112 /* Memory statistics */
113 struct virtio_balloon_stat stats[VIRTIO_BALLOON_S_NR];
Raushaniya Maksudova5a10b7d2014-11-10 09:36:29 +1030114
Wei Wang71994622018-08-16 15:50:58 +0800115 /* To register a shrinker to shrink memory upon memory pressure */
116 struct shrinker shrinker;
Rusty Russell6b35e402008-02-04 23:50:12 -0500117};
118
119static struct virtio_device_id id_table[] = {
120 { VIRTIO_ID_BALLOON, VIRTIO_DEV_ANY_ID },
121 { 0 },
122};
123
Hollis Blanchard1b4aa2f2008-11-13 15:48:33 -0600124static u32 page_to_balloon_pfn(struct page *page)
125{
126 unsigned long pfn = page_to_pfn(page);
127
128 BUILD_BUG_ON(PAGE_SHIFT < VIRTIO_BALLOON_PFN_SHIFT);
129 /* Convert pfn from Linux page size to balloon page size. */
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300130 return pfn * VIRTIO_BALLOON_PAGES_PER_PAGE;
131}
132
Rusty Russell6b35e402008-02-04 23:50:12 -0500133static void balloon_ack(struct virtqueue *vq)
134{
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300135 struct virtio_balloon *vb = vq->vdev->priv;
Rusty Russell6b35e402008-02-04 23:50:12 -0500136
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300137 wake_up(&vb->acked);
Rusty Russell6b35e402008-02-04 23:50:12 -0500138}
139
140static void tell_host(struct virtio_balloon *vb, struct virtqueue *vq)
141{
142 struct scatterlist sg;
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300143 unsigned int len;
Rusty Russell6b35e402008-02-04 23:50:12 -0500144
145 sg_init_one(&sg, vb->pfns, sizeof(vb->pfns[0]) * vb->num_pfns);
146
Rusty Russell6b35e402008-02-04 23:50:12 -0500147 /* We should always be able to add one buffer to an empty queue. */
Rusty Russell4951cc92014-03-13 11:23:40 +1030148 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL);
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300149 virtqueue_kick(vq);
Rusty Russell6b35e402008-02-04 23:50:12 -0500150
151 /* When host has read buffer, this completes via balloon_ack */
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300152 wait_event(vb->acked, virtqueue_get_buf(vq, &len));
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100153
Rusty Russell6b35e402008-02-04 23:50:12 -0500154}
155
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300156static void set_page_pfns(struct virtio_balloon *vb,
157 __virtio32 pfns[], struct page *page)
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300158{
159 unsigned int i;
160
Michael S. Tsirkin6e9826e2020-02-06 02:40:58 -0500161 BUILD_BUG_ON(VIRTIO_BALLOON_PAGES_PER_PAGE > VIRTIO_BALLOON_ARRAY_PFNS_MAX);
162
Wei Wangf9aada52017-07-12 20:40:15 +0800163 /*
164 * Set balloon pfns pointing at this page.
165 * Note that the first pfn points at start of the page.
166 */
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300167 for (i = 0; i < VIRTIO_BALLOON_PAGES_PER_PAGE; i++)
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300168 pfns[i] = cpu_to_virtio32(vb->vdev,
169 page_to_balloon_pfn(page) + i);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300170}
171
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100172static unsigned fill_balloon(struct virtio_balloon *vb, size_t num)
Rusty Russell6b35e402008-02-04 23:50:12 -0500173{
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100174 unsigned num_allocated_pages;
Michael S. Tsirkinc7cdff02017-10-13 16:11:48 +0300175 unsigned num_pfns;
176 struct page *page;
177 LIST_HEAD(pages);
Rafael Aquinie2250422012-12-11 16:02:45 -0800178
Rusty Russell6b35e402008-02-04 23:50:12 -0500179 /* We can only do one array worth at a time. */
180 num = min(num, ARRAY_SIZE(vb->pfns));
181
Michael S. Tsirkinc7cdff02017-10-13 16:11:48 +0300182 for (num_pfns = 0; num_pfns < num;
183 num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
184 struct page *page = balloon_page_alloc();
Rafael Aquinie2250422012-12-11 16:02:45 -0800185
Rusty Russell6b35e402008-02-04 23:50:12 -0500186 if (!page) {
Joe Perches800ba5e2012-10-31 09:27:22 +1030187 dev_info_ratelimited(&vb->vdev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800188 "Out of puff! Can't get %u pages\n",
189 VIRTIO_BALLOON_PAGES_PER_PAGE);
Rusty Russell6b35e402008-02-04 23:50:12 -0500190 /* Sleep for at least 1/5 of a second before retry. */
191 msleep(200);
192 break;
193 }
Michael S. Tsirkinc7cdff02017-10-13 16:11:48 +0300194
195 balloon_page_push(&pages, page);
196 }
197
198 mutex_lock(&vb->balloon_lock);
199
200 vb->num_pfns = 0;
201
202 while ((page = balloon_page_pop(&pages))) {
203 balloon_page_enqueue(&vb->vb_dev_info, page);
204
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300205 set_page_pfns(vb, vb->pfns + vb->num_pfns, page);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300206 vb->num_pages += VIRTIO_BALLOON_PAGES_PER_PAGE;
Denis V. Lunev997e1202015-08-20 00:49:49 +0300207 if (!virtio_has_feature(vb->vdev,
208 VIRTIO_BALLOON_F_DEFLATE_ON_OOM))
209 adjust_managed_page_count(page, -1);
Jan Stancekd9e427f2017-12-01 10:50:28 +0100210 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE;
Rusty Russell6b35e402008-02-04 23:50:12 -0500211 }
212
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100213 num_allocated_pages = vb->num_pfns;
Rafael Aquinie2250422012-12-11 16:02:45 -0800214 /* Did we get any? */
215 if (vb->num_pfns != 0)
216 tell_host(vb, vb->inflate_vq);
217 mutex_unlock(&vb->balloon_lock);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100218
219 return num_allocated_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500220}
221
Liang Li195a8c42017-07-12 20:40:14 +0800222static void release_pages_balloon(struct virtio_balloon *vb,
223 struct list_head *pages)
Rusty Russell6b35e402008-02-04 23:50:12 -0500224{
Liang Li195a8c42017-07-12 20:40:14 +0800225 struct page *page, *next;
Rusty Russell6b35e402008-02-04 23:50:12 -0500226
Liang Li195a8c42017-07-12 20:40:14 +0800227 list_for_each_entry_safe(page, next, pages, lru) {
Denis V. Lunev997e1202015-08-20 00:49:49 +0300228 if (!virtio_has_feature(vb->vdev,
229 VIRTIO_BALLOON_F_DEFLATE_ON_OOM))
230 adjust_managed_page_count(page, 1);
Liang Li195a8c42017-07-12 20:40:14 +0800231 list_del(&page->lru);
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700232 put_page(page); /* balloon reference */
Rusty Russell6b35e402008-02-04 23:50:12 -0500233 }
234}
235
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030236static unsigned leak_balloon(struct virtio_balloon *vb, size_t num)
Rusty Russell6b35e402008-02-04 23:50:12 -0500237{
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030238 unsigned num_freed_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500239 struct page *page;
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700240 struct balloon_dev_info *vb_dev_info = &vb->vb_dev_info;
Liang Li195a8c42017-07-12 20:40:14 +0800241 LIST_HEAD(pages);
Rusty Russell6b35e402008-02-04 23:50:12 -0500242
243 /* We can only do one array worth at a time. */
244 num = min(num, ARRAY_SIZE(vb->pfns));
245
Rafael Aquinie2250422012-12-11 16:02:45 -0800246 mutex_lock(&vb->balloon_lock);
Konstantin Neumoin37cf99e2016-07-11 15:28:59 +0300247 /* We can't release more pages than taken */
248 num = min(num, (size_t)vb->num_pages);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300249 for (vb->num_pfns = 0; vb->num_pfns < num;
250 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
Rafael Aquinie2250422012-12-11 16:02:45 -0800251 page = balloon_page_dequeue(vb_dev_info);
252 if (!page)
253 break;
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300254 set_page_pfns(vb, vb->pfns + vb->num_pfns, page);
Liang Li195a8c42017-07-12 20:40:14 +0800255 list_add(&page->lru, &pages);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300256 vb->num_pages -= VIRTIO_BALLOON_PAGES_PER_PAGE;
Rusty Russell6b35e402008-02-04 23:50:12 -0500257 }
258
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030259 num_freed_pages = vb->num_pfns;
Dave Hansenbf50e692011-04-07 10:43:25 -0700260 /*
261 * Note that if
262 * virtio_has_feature(vdev, VIRTIO_BALLOON_F_MUST_TELL_HOST);
263 * is true, we *have* to do it in this order
264 */
Luiz Capitulino8c6bab42013-07-02 15:35:13 +0930265 if (vb->num_pfns != 0)
266 tell_host(vb, vb->deflate_vq);
Liang Li195a8c42017-07-12 20:40:14 +0800267 release_pages_balloon(vb, &pages);
Minchan Kimf68b9922015-12-28 08:35:12 +0900268 mutex_unlock(&vb->balloon_lock);
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030269 return num_freed_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500270}
271
Adam Litke9564e132009-11-30 10:14:15 -0600272static inline void update_stat(struct virtio_balloon *vb, int idx,
273 u16 tag, u64 val)
274{
275 BUG_ON(idx >= VIRTIO_BALLOON_S_NR);
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930276 vb->stats[idx].tag = cpu_to_virtio16(vb->vdev, tag);
277 vb->stats[idx].val = cpu_to_virtio64(vb->vdev, val);
Adam Litke9564e132009-11-30 10:14:15 -0600278}
279
280#define pages_to_bytes(x) ((u64)(x) << PAGE_SHIFT)
281
Ladi Prosek9646b262017-03-28 18:46:58 +0200282static unsigned int update_balloon_stats(struct virtio_balloon *vb)
Adam Litke9564e132009-11-30 10:14:15 -0600283{
284 unsigned long events[NR_VM_EVENT_ITEMS];
285 struct sysinfo i;
Ladi Prosek9646b262017-03-28 18:46:58 +0200286 unsigned int idx = 0;
Igor Redko5057dcd2016-03-17 14:19:08 -0700287 long available;
Tomáš Golembiovský4d320292017-11-12 13:05:38 +0100288 unsigned long caches;
Adam Litke9564e132009-11-30 10:14:15 -0600289
290 all_vm_events(events);
291 si_meminfo(&i);
292
Igor Redko5057dcd2016-03-17 14:19:08 -0700293 available = si_mem_available();
Tomáš Golembiovský4d320292017-11-12 13:05:38 +0100294 caches = global_node_page_state(NR_FILE_PAGES);
Igor Redko5057dcd2016-03-17 14:19:08 -0700295
Arnd Bergmannf0bb2d52017-03-28 18:46:59 +0200296#ifdef CONFIG_VM_EVENT_COUNTERS
Adam Litke9564e132009-11-30 10:14:15 -0600297 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_IN,
298 pages_to_bytes(events[PSWPIN]));
299 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_OUT,
300 pages_to_bytes(events[PSWPOUT]));
301 update_stat(vb, idx++, VIRTIO_BALLOON_S_MAJFLT, events[PGMAJFAULT]);
302 update_stat(vb, idx++, VIRTIO_BALLOON_S_MINFLT, events[PGFAULT]);
Jonathan Helman6c64fe72018-03-19 15:14:14 -0700303#ifdef CONFIG_HUGETLB_PAGE
304 update_stat(vb, idx++, VIRTIO_BALLOON_S_HTLB_PGALLOC,
305 events[HTLB_BUDDY_PGALLOC]);
306 update_stat(vb, idx++, VIRTIO_BALLOON_S_HTLB_PGFAIL,
307 events[HTLB_BUDDY_PGALLOC_FAIL]);
308#endif
Arnd Bergmannf0bb2d52017-03-28 18:46:59 +0200309#endif
Adam Litke9564e132009-11-30 10:14:15 -0600310 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMFREE,
311 pages_to_bytes(i.freeram));
312 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMTOT,
313 pages_to_bytes(i.totalram));
Igor Redko5057dcd2016-03-17 14:19:08 -0700314 update_stat(vb, idx++, VIRTIO_BALLOON_S_AVAIL,
315 pages_to_bytes(available));
Tomáš Golembiovský4d320292017-11-12 13:05:38 +0100316 update_stat(vb, idx++, VIRTIO_BALLOON_S_CACHES,
317 pages_to_bytes(caches));
Ladi Prosek9646b262017-03-28 18:46:58 +0200318
319 return idx;
Adam Litke9564e132009-11-30 10:14:15 -0600320}
321
322/*
323 * While most virtqueues communicate guest-initiated requests to the hypervisor,
324 * the stats queue operates in reverse. The driver initializes the virtqueue
325 * with a single buffer. From that point forward, all conversations consist of
326 * a hypervisor request (a call to this function) which directs us to refill
Adam Litke1f34c712009-12-10 16:35:15 -0600327 * the virtqueue with a fresh stats buffer. Since stats collection can sleep,
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100328 * we delegate the job to a freezable workqueue that will do the actual work via
329 * stats_handle_request().
Adam Litke9564e132009-11-30 10:14:15 -0600330 */
Adam Litke1f34c712009-12-10 16:35:15 -0600331static void stats_request(struct virtqueue *vq)
Adam Litke9564e132009-11-30 10:14:15 -0600332{
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300333 struct virtio_balloon *vb = vq->vdev->priv;
Adam Litke9564e132009-11-30 10:14:15 -0600334
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100335 spin_lock(&vb->stop_update_lock);
336 if (!vb->stop_update)
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100337 queue_work(system_freezable_wq, &vb->update_balloon_stats_work);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100338 spin_unlock(&vb->stop_update_lock);
Adam Litke1f34c712009-12-10 16:35:15 -0600339}
Adam Litke9564e132009-11-30 10:14:15 -0600340
Adam Litke1f34c712009-12-10 16:35:15 -0600341static void stats_handle_request(struct virtio_balloon *vb)
342{
343 struct virtqueue *vq;
344 struct scatterlist sg;
Ladi Prosek9646b262017-03-28 18:46:58 +0200345 unsigned int len, num_stats;
Adam Litke1f34c712009-12-10 16:35:15 -0600346
Ladi Prosek9646b262017-03-28 18:46:58 +0200347 num_stats = update_balloon_stats(vb);
Adam Litke9564e132009-11-30 10:14:15 -0600348
Adam Litke1f34c712009-12-10 16:35:15 -0600349 vq = vb->stats_vq;
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300350 if (!virtqueue_get_buf(vq, &len))
351 return;
Ladi Prosek9646b262017-03-28 18:46:58 +0200352 sg_init_one(&sg, vb->stats, sizeof(vb->stats[0]) * num_stats);
Rusty Russell4951cc92014-03-13 11:23:40 +1030353 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL);
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300354 virtqueue_kick(vq);
Adam Litke9564e132009-11-30 10:14:15 -0600355}
356
Rusty Russellbdc16812008-03-17 22:58:15 -0500357static inline s64 towards_target(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -0500358{
David Gibson1a872282012-04-12 15:36:34 +1000359 s64 target;
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930360 u32 num_pages;
David Gibson1a872282012-04-12 15:36:34 +1000361
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930362 virtio_cread(vb->vdev, struct virtio_balloon_config, num_pages,
363 &num_pages);
Rusty Russell855e0c52013-10-14 18:11:51 +1030364
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930365 /* Legacy balloon config space is LE, unlike all other devices. */
366 if (!virtio_has_feature(vb->vdev, VIRTIO_F_VERSION_1))
367 num_pages = le32_to_cpu((__force __le32)num_pages);
368
369 target = num_pages;
David Gibson1a872282012-04-12 15:36:34 +1000370 return target - vb->num_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500371}
372
Wei Wang86a55972018-08-27 09:32:17 +0800373/* Gives back @num_to_return blocks of free pages to mm. */
374static unsigned long return_free_pages_to_mm(struct virtio_balloon *vb,
375 unsigned long num_to_return)
376{
377 struct page *page;
378 unsigned long num_returned;
379
380 spin_lock_irq(&vb->free_page_list_lock);
381 for (num_returned = 0; num_returned < num_to_return; num_returned++) {
382 page = balloon_page_pop(&vb->free_page_list);
383 if (!page)
384 break;
385 free_pages((unsigned long)page_address(page),
Michael S. Tsirkin2a946fa2019-11-19 05:21:47 -0500386 VIRTIO_BALLOON_HINT_BLOCK_ORDER);
Wei Wang86a55972018-08-27 09:32:17 +0800387 }
388 vb->num_free_page_blocks -= num_returned;
389 spin_unlock_irq(&vb->free_page_list_lock);
390
391 return num_returned;
392}
393
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800394static void virtio_balloon_queue_free_page_work(struct virtio_balloon *vb)
395{
396 if (!virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
397 return;
398
399 /* No need to queue the work if the bit was already set. */
400 if (test_and_set_bit(VIRTIO_BALLOON_CONFIG_READ_CMD_ID,
401 &vb->config_read_bitmap))
402 return;
403
404 queue_work(vb->balloon_wq, &vb->report_free_page_work);
405}
406
Wei Wang86a55972018-08-27 09:32:17 +0800407static void virtballoon_changed(struct virtio_device *vdev)
408{
409 struct virtio_balloon *vb = vdev->priv;
410 unsigned long flags;
Wei Wang86a55972018-08-27 09:32:17 +0800411
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800412 spin_lock_irqsave(&vb->stop_update_lock, flags);
413 if (!vb->stop_update) {
414 queue_work(system_freezable_wq,
415 &vb->update_balloon_size_work);
416 virtio_balloon_queue_free_page_work(vb);
Wei Wang86a55972018-08-27 09:32:17 +0800417 }
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800418 spin_unlock_irqrestore(&vb->stop_update_lock, flags);
Wei Wang86a55972018-08-27 09:32:17 +0800419}
420
Rusty Russell6b35e402008-02-04 23:50:12 -0500421static void update_balloon_size(struct virtio_balloon *vb)
422{
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930423 u32 actual = vb->num_pages;
424
425 /* Legacy balloon config space is LE, unlike all other devices. */
426 if (!virtio_has_feature(vb->vdev, VIRTIO_F_VERSION_1))
427 actual = (__force u32)cpu_to_le32(actual);
Rusty Russell6b35e402008-02-04 23:50:12 -0500428
Luiz Capitulino3459f112013-12-05 13:04:10 +1030429 virtio_cwrite(vb->vdev, struct virtio_balloon_config, actual,
Rusty Russell855e0c52013-10-14 18:11:51 +1030430 &actual);
Rusty Russell6b35e402008-02-04 23:50:12 -0500431}
432
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100433static void update_balloon_stats_func(struct work_struct *work)
Rusty Russell6b35e402008-02-04 23:50:12 -0500434{
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100435 struct virtio_balloon *vb;
Rusty Russell6b35e402008-02-04 23:50:12 -0500436
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100437 vb = container_of(work, struct virtio_balloon,
438 update_balloon_stats_work);
439 stats_handle_request(vb);
440}
Rusty Russell6b35e402008-02-04 23:50:12 -0500441
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100442static void update_balloon_size_func(struct work_struct *work)
Rusty Russell6b35e402008-02-04 23:50:12 -0500443{
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100444 struct virtio_balloon *vb;
445 s64 diff;
Michael S. Tsirkin3d2a3772015-03-10 11:55:08 +1030446
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100447 vb = container_of(work, struct virtio_balloon,
448 update_balloon_size_work);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100449 diff = towards_target(vb);
Michael S. Tsirkin3d2a3772015-03-10 11:55:08 +1030450
Wei Wang53e946c2019-01-07 15:01:05 +0800451 if (!diff)
452 return;
453
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100454 if (diff > 0)
455 diff -= fill_balloon(vb, diff);
Wei Wang53e946c2019-01-07 15:01:05 +0800456 else
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100457 diff += leak_balloon(vb, -diff);
458 update_balloon_size(vb);
Rusty Russell1f74ef02014-03-13 11:23:38 +1030459
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100460 if (diff)
461 queue_work(system_freezable_wq, work);
Rusty Russell6b35e402008-02-04 23:50:12 -0500462}
463
Amit Shahbe91c332011-12-22 16:58:34 +0530464static int init_vqs(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -0500465{
Wei Wang86a55972018-08-27 09:32:17 +0800466 struct virtqueue *vqs[VIRTIO_BALLOON_VQ_MAX];
467 vq_callback_t *callbacks[VIRTIO_BALLOON_VQ_MAX];
468 const char *names[VIRTIO_BALLOON_VQ_MAX];
469 int err;
Rusty Russell6b35e402008-02-04 23:50:12 -0500470
Amit Shahbe91c332011-12-22 16:58:34 +0530471 /*
Wei Wang86a55972018-08-27 09:32:17 +0800472 * Inflateq and deflateq are used unconditionally. The names[]
473 * will be NULL if the related feature is not enabled, which will
474 * cause no allocation for the corresponding virtqueue in find_vqs.
Amit Shahbe91c332011-12-22 16:58:34 +0530475 */
Wei Wang86a55972018-08-27 09:32:17 +0800476 callbacks[VIRTIO_BALLOON_VQ_INFLATE] = balloon_ack;
477 names[VIRTIO_BALLOON_VQ_INFLATE] = "inflate";
478 callbacks[VIRTIO_BALLOON_VQ_DEFLATE] = balloon_ack;
479 names[VIRTIO_BALLOON_VQ_DEFLATE] = "deflate";
Daniel Verkamp5790b532020-01-03 10:40:43 -0800480 callbacks[VIRTIO_BALLOON_VQ_STATS] = NULL;
Wei Wang86a55972018-08-27 09:32:17 +0800481 names[VIRTIO_BALLOON_VQ_STATS] = NULL;
Daniel Verkamp5790b532020-01-03 10:40:43 -0800482 callbacks[VIRTIO_BALLOON_VQ_FREE_PAGE] = NULL;
Wei Wang86a55972018-08-27 09:32:17 +0800483 names[VIRTIO_BALLOON_VQ_FREE_PAGE] = NULL;
484
485 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ)) {
486 names[VIRTIO_BALLOON_VQ_STATS] = "stats";
487 callbacks[VIRTIO_BALLOON_VQ_STATS] = stats_request;
488 }
489
490 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) {
491 names[VIRTIO_BALLOON_VQ_FREE_PAGE] = "free_page_vq";
492 callbacks[VIRTIO_BALLOON_VQ_FREE_PAGE] = NULL;
493 }
494
495 err = vb->vdev->config->find_vqs(vb->vdev, VIRTIO_BALLOON_VQ_MAX,
496 vqs, callbacks, names, NULL, NULL);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600497 if (err)
Amit Shahbe91c332011-12-22 16:58:34 +0530498 return err;
Rusty Russell6b35e402008-02-04 23:50:12 -0500499
Wei Wang86a55972018-08-27 09:32:17 +0800500 vb->inflate_vq = vqs[VIRTIO_BALLOON_VQ_INFLATE];
501 vb->deflate_vq = vqs[VIRTIO_BALLOON_VQ_DEFLATE];
Adam Litke9564e132009-11-30 10:14:15 -0600502 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ)) {
503 struct scatterlist sg;
Ladi Prosek9646b262017-03-28 18:46:58 +0200504 unsigned int num_stats;
Wei Wang86a55972018-08-27 09:32:17 +0800505 vb->stats_vq = vqs[VIRTIO_BALLOON_VQ_STATS];
Adam Litke9564e132009-11-30 10:14:15 -0600506
507 /*
508 * Prime this virtqueue with one buffer so the hypervisor can
Rusty Russell4951cc92014-03-13 11:23:40 +1030509 * use it to signal us later (it can't be broken yet!).
Adam Litke9564e132009-11-30 10:14:15 -0600510 */
Ladi Prosek9646b262017-03-28 18:46:58 +0200511 num_stats = update_balloon_stats(vb);
Ladi Prosekfc865322017-03-23 08:04:18 +0100512
Ladi Prosek9646b262017-03-28 18:46:58 +0200513 sg_init_one(&sg, vb->stats, sizeof(vb->stats[0]) * num_stats);
Wei Wang74cf5b12018-08-16 15:50:56 +0800514 err = virtqueue_add_outbuf(vb->stats_vq, &sg, 1, vb,
515 GFP_KERNEL);
516 if (err) {
517 dev_warn(&vb->vdev->dev, "%s: add stat_vq failed\n",
518 __func__);
519 return err;
520 }
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300521 virtqueue_kick(vb->stats_vq);
Adam Litke9564e132009-11-30 10:14:15 -0600522 }
Wei Wang86a55972018-08-27 09:32:17 +0800523
524 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
525 vb->free_page_vq = vqs[VIRTIO_BALLOON_VQ_FREE_PAGE];
526
Amit Shahbe91c332011-12-22 16:58:34 +0530527 return 0;
528}
529
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800530static u32 virtio_balloon_cmd_id_received(struct virtio_balloon *vb)
531{
532 if (test_and_clear_bit(VIRTIO_BALLOON_CONFIG_READ_CMD_ID,
533 &vb->config_read_bitmap))
534 virtio_cread(vb->vdev, struct virtio_balloon_config,
535 free_page_report_cmd_id,
536 &vb->cmd_id_received_cache);
537
538 return vb->cmd_id_received_cache;
539}
540
Wei Wang86a55972018-08-27 09:32:17 +0800541static int send_cmd_id_start(struct virtio_balloon *vb)
542{
543 struct scatterlist sg;
544 struct virtqueue *vq = vb->free_page_vq;
545 int err, unused;
546
547 /* Detach all the used buffers from the vq */
548 while (virtqueue_get_buf(vq, &unused))
549 ;
550
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800551 vb->cmd_id_active = virtio32_to_cpu(vb->vdev,
552 virtio_balloon_cmd_id_received(vb));
Wei Wang86a55972018-08-27 09:32:17 +0800553 sg_init_one(&sg, &vb->cmd_id_active, sizeof(vb->cmd_id_active));
554 err = virtqueue_add_outbuf(vq, &sg, 1, &vb->cmd_id_active, GFP_KERNEL);
555 if (!err)
556 virtqueue_kick(vq);
557 return err;
558}
559
560static int send_cmd_id_stop(struct virtio_balloon *vb)
561{
562 struct scatterlist sg;
563 struct virtqueue *vq = vb->free_page_vq;
564 int err, unused;
565
566 /* Detach all the used buffers from the vq */
567 while (virtqueue_get_buf(vq, &unused))
568 ;
569
570 sg_init_one(&sg, &vb->cmd_id_stop, sizeof(vb->cmd_id_stop));
571 err = virtqueue_add_outbuf(vq, &sg, 1, &vb->cmd_id_stop, GFP_KERNEL);
572 if (!err)
573 virtqueue_kick(vq);
574 return err;
575}
576
577static int get_free_page_and_send(struct virtio_balloon *vb)
578{
579 struct virtqueue *vq = vb->free_page_vq;
580 struct page *page;
581 struct scatterlist sg;
582 int err, unused;
583 void *p;
584
585 /* Detach all the used buffers from the vq */
586 while (virtqueue_get_buf(vq, &unused))
587 ;
588
589 page = alloc_pages(VIRTIO_BALLOON_FREE_PAGE_ALLOC_FLAG,
Michael S. Tsirkin2a946fa2019-11-19 05:21:47 -0500590 VIRTIO_BALLOON_HINT_BLOCK_ORDER);
Wei Wang86a55972018-08-27 09:32:17 +0800591 /*
592 * When the allocation returns NULL, it indicates that we have got all
593 * the possible free pages, so return -EINTR to stop.
594 */
595 if (!page)
596 return -EINTR;
597
598 p = page_address(page);
Michael S. Tsirkin2a946fa2019-11-19 05:21:47 -0500599 sg_init_one(&sg, p, VIRTIO_BALLOON_HINT_BLOCK_BYTES);
Wei Wang86a55972018-08-27 09:32:17 +0800600 /* There is always 1 entry reserved for the cmd id to use. */
601 if (vq->num_free > 1) {
602 err = virtqueue_add_inbuf(vq, &sg, 1, p, GFP_KERNEL);
603 if (unlikely(err)) {
604 free_pages((unsigned long)p,
Michael S. Tsirkin2a946fa2019-11-19 05:21:47 -0500605 VIRTIO_BALLOON_HINT_BLOCK_ORDER);
Wei Wang86a55972018-08-27 09:32:17 +0800606 return err;
607 }
608 virtqueue_kick(vq);
609 spin_lock_irq(&vb->free_page_list_lock);
610 balloon_page_push(&vb->free_page_list, page);
611 vb->num_free_page_blocks++;
612 spin_unlock_irq(&vb->free_page_list_lock);
613 } else {
614 /*
615 * The vq has no available entry to add this page block, so
616 * just free it.
617 */
Michael S. Tsirkin2a946fa2019-11-19 05:21:47 -0500618 free_pages((unsigned long)p, VIRTIO_BALLOON_HINT_BLOCK_ORDER);
Wei Wang86a55972018-08-27 09:32:17 +0800619 }
620
621 return 0;
622}
623
624static int send_free_pages(struct virtio_balloon *vb)
625{
626 int err;
627 u32 cmd_id_active;
628
629 while (1) {
630 /*
631 * If a stop id or a new cmd id was just received from host,
632 * stop the reporting.
633 */
634 cmd_id_active = virtio32_to_cpu(vb->vdev, vb->cmd_id_active);
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800635 if (unlikely(cmd_id_active !=
636 virtio_balloon_cmd_id_received(vb)))
Wei Wang86a55972018-08-27 09:32:17 +0800637 break;
638
639 /*
640 * The free page blocks are allocated and sent to host one by
641 * one.
642 */
643 err = get_free_page_and_send(vb);
644 if (err == -EINTR)
645 break;
646 else if (unlikely(err))
647 return err;
648 }
649
650 return 0;
651}
652
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800653static void virtio_balloon_report_free_page(struct virtio_balloon *vb)
Wei Wang86a55972018-08-27 09:32:17 +0800654{
655 int err;
Wei Wang86a55972018-08-27 09:32:17 +0800656 struct device *dev = &vb->vdev->dev;
657
658 /* Start by sending the received cmd id to host with an outbuf. */
659 err = send_cmd_id_start(vb);
660 if (unlikely(err))
661 dev_err(dev, "Failed to send a start id, err = %d\n", err);
662
663 err = send_free_pages(vb);
664 if (unlikely(err))
665 dev_err(dev, "Failed to send a free page, err = %d\n", err);
666
667 /* End by sending a stop id to host with an outbuf. */
668 err = send_cmd_id_stop(vb);
669 if (unlikely(err))
670 dev_err(dev, "Failed to send a stop id, err = %d\n", err);
671}
672
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800673static void report_free_page_func(struct work_struct *work)
674{
675 struct virtio_balloon *vb = container_of(work, struct virtio_balloon,
676 report_free_page_work);
677 u32 cmd_id_received;
678
679 cmd_id_received = virtio_balloon_cmd_id_received(vb);
680 if (cmd_id_received == VIRTIO_BALLOON_CMD_ID_DONE) {
681 /* Pass ULONG_MAX to give back all the free pages */
682 return_free_pages_to_mm(vb, ULONG_MAX);
683 } else if (cmd_id_received != VIRTIO_BALLOON_CMD_ID_STOP &&
684 cmd_id_received !=
685 virtio32_to_cpu(vb->vdev, vb->cmd_id_active)) {
686 virtio_balloon_report_free_page(vb);
687 }
688}
689
Rafael Aquinie2250422012-12-11 16:02:45 -0800690#ifdef CONFIG_BALLOON_COMPACTION
691/*
692 * virtballoon_migratepage - perform the balloon page migration on behalf of
693 * a compation thread. (called under page lock)
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700694 * @vb_dev_info: the balloon device
Rafael Aquinie2250422012-12-11 16:02:45 -0800695 * @newpage: page that will replace the isolated page after migration finishes.
696 * @page : the isolated (old) page that is about to be migrated to newpage.
697 * @mode : compaction mode -- not used for balloon page migration.
698 *
699 * After a ballooned page gets isolated by compaction procedures, this is the
700 * function that performs the page migration on behalf of a compaction thread
701 * The page migration for virtio balloon is done in a simple swap fashion which
702 * follows these two macro steps:
703 * 1) insert newpage into vb->pages list and update the host about it;
704 * 2) update the host about the old page removed from vb->pages list;
705 *
706 * This function preforms the balloon page migration task.
707 * Called through balloon_mapping->a_ops->migratepage
708 */
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700709static int virtballoon_migratepage(struct balloon_dev_info *vb_dev_info,
Rafael Aquinie2250422012-12-11 16:02:45 -0800710 struct page *newpage, struct page *page, enum migrate_mode mode)
711{
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700712 struct virtio_balloon *vb = container_of(vb_dev_info,
713 struct virtio_balloon, vb_dev_info);
Rafael Aquinie2250422012-12-11 16:02:45 -0800714 unsigned long flags;
715
Rafael Aquinie2250422012-12-11 16:02:45 -0800716 /*
717 * In order to avoid lock contention while migrating pages concurrently
718 * to leak_balloon() or fill_balloon() we just give up the balloon_lock
719 * this turn, as it is easier to retry the page migration later.
720 * This also prevents fill_balloon() getting stuck into a mutex
721 * recursion in the case it ends up triggering memory compaction
722 * while it is attempting to inflate the ballon.
723 */
724 if (!mutex_trylock(&vb->balloon_lock))
725 return -EAGAIN;
726
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700727 get_page(newpage); /* balloon reference */
728
David Hildenbrand63341ab2019-12-11 12:11:52 +0100729 /*
730 * When we migrate a page to a different zone and adjusted the
731 * managed page count when inflating, we have to fixup the count of
732 * both involved zones.
733 */
734 if (!virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM) &&
735 page_zone(page) != page_zone(newpage)) {
736 adjust_managed_page_count(page, 1);
737 adjust_managed_page_count(newpage, -1);
738 }
739
Rafael Aquinie2250422012-12-11 16:02:45 -0800740 /* balloon's page migration 1st step -- inflate "newpage" */
741 spin_lock_irqsave(&vb_dev_info->pages_lock, flags);
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700742 balloon_page_insert(vb_dev_info, newpage);
Rafael Aquinie2250422012-12-11 16:02:45 -0800743 vb_dev_info->isolated_pages--;
Konstantin Khlebnikov09316c02014-10-09 15:29:32 -0700744 __count_vm_event(BALLOON_MIGRATE);
Rafael Aquinie2250422012-12-11 16:02:45 -0800745 spin_unlock_irqrestore(&vb_dev_info->pages_lock, flags);
746 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300747 set_page_pfns(vb, vb->pfns, newpage);
Rafael Aquinie2250422012-12-11 16:02:45 -0800748 tell_host(vb, vb->inflate_vq);
749
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700750 /* balloon's page migration 2nd step -- deflate "page" */
Jiang Biao89da6192018-07-18 10:29:28 +0800751 spin_lock_irqsave(&vb_dev_info->pages_lock, flags);
Rafael Aquinie2250422012-12-11 16:02:45 -0800752 balloon_page_delete(page);
Jiang Biao89da6192018-07-18 10:29:28 +0800753 spin_unlock_irqrestore(&vb_dev_info->pages_lock, flags);
Rafael Aquinie2250422012-12-11 16:02:45 -0800754 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300755 set_page_pfns(vb, vb->pfns, page);
Rafael Aquinie2250422012-12-11 16:02:45 -0800756 tell_host(vb, vb->deflate_vq);
757
758 mutex_unlock(&vb->balloon_lock);
759
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700760 put_page(page); /* balloon reference */
761
Minchan Kimdd4123f2016-07-26 15:26:50 -0700762 return MIGRATEPAGE_SUCCESS;
Rafael Aquinie2250422012-12-11 16:02:45 -0800763}
Minchan Kimb1123ea62016-07-26 15:23:09 -0700764
David Howells99558d22019-03-25 16:38:25 +0000765static int balloon_init_fs_context(struct fs_context *fc)
Minchan Kimb1123ea62016-07-26 15:23:09 -0700766{
David Howells99558d22019-03-25 16:38:25 +0000767 return init_pseudo(fc, BALLOON_KVM_MAGIC) ? 0 : -ENOMEM;
Minchan Kimb1123ea62016-07-26 15:23:09 -0700768}
769
770static struct file_system_type balloon_fs = {
771 .name = "balloon-kvm",
David Howells99558d22019-03-25 16:38:25 +0000772 .init_fs_context = balloon_init_fs_context,
Minchan Kimb1123ea62016-07-26 15:23:09 -0700773 .kill_sb = kill_anon_super,
774};
775
Rafael Aquinie2250422012-12-11 16:02:45 -0800776#endif /* CONFIG_BALLOON_COMPACTION */
777
Wei Wang86a55972018-08-27 09:32:17 +0800778static unsigned long shrink_free_pages(struct virtio_balloon *vb,
779 unsigned long pages_to_free)
780{
781 unsigned long blocks_to_free, blocks_freed;
782
783 pages_to_free = round_up(pages_to_free,
Michael S. Tsirkin63b9b802019-11-19 05:25:24 -0500784 VIRTIO_BALLOON_HINT_BLOCK_PAGES);
785 blocks_to_free = pages_to_free / VIRTIO_BALLOON_HINT_BLOCK_PAGES;
Wei Wang86a55972018-08-27 09:32:17 +0800786 blocks_freed = return_free_pages_to_mm(vb, blocks_to_free);
787
Michael S. Tsirkin63b9b802019-11-19 05:25:24 -0500788 return blocks_freed * VIRTIO_BALLOON_HINT_BLOCK_PAGES;
Wei Wang86a55972018-08-27 09:32:17 +0800789}
790
Michael S. Tsirkin60bd04f2019-11-19 04:50:35 -0500791static unsigned long leak_balloon_pages(struct virtio_balloon *vb,
792 unsigned long pages_to_free)
793{
794 return leak_balloon(vb, pages_to_free * VIRTIO_BALLOON_PAGES_PER_PAGE) /
795 VIRTIO_BALLOON_PAGES_PER_PAGE;
796}
797
Wei Wang86a55972018-08-27 09:32:17 +0800798static unsigned long shrink_balloon_pages(struct virtio_balloon *vb,
799 unsigned long pages_to_free)
800{
801 unsigned long pages_freed = 0;
802
803 /*
804 * One invocation of leak_balloon can deflate at most
805 * VIRTIO_BALLOON_ARRAY_PFNS_MAX balloon pages, so we call it
806 * multiple times to deflate pages till reaching pages_to_free.
807 */
Michael S. Tsirkin60bd04f2019-11-19 04:50:35 -0500808 while (vb->num_pages && pages_freed < pages_to_free)
809 pages_freed += leak_balloon_pages(vb,
810 pages_to_free - pages_freed);
811
Wei Wang86a55972018-08-27 09:32:17 +0800812 update_balloon_size(vb);
813
814 return pages_freed;
815}
816
Wei Wang71994622018-08-16 15:50:58 +0800817static unsigned long virtio_balloon_shrinker_scan(struct shrinker *shrinker,
818 struct shrink_control *sc)
819{
820 unsigned long pages_to_free, pages_freed = 0;
821 struct virtio_balloon *vb = container_of(shrinker,
822 struct virtio_balloon, shrinker);
823
Michael S. Tsirkin60bd04f2019-11-19 04:50:35 -0500824 pages_to_free = sc->nr_to_scan;
Wei Wang71994622018-08-16 15:50:58 +0800825
Wei Wang86a55972018-08-27 09:32:17 +0800826 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
827 pages_freed = shrink_free_pages(vb, pages_to_free);
Wei Wang71994622018-08-16 15:50:58 +0800828
Wei Wang86a55972018-08-27 09:32:17 +0800829 if (pages_freed >= pages_to_free)
830 return pages_freed;
831
832 pages_freed += shrink_balloon_pages(vb, pages_to_free - pages_freed);
833
834 return pages_freed;
Wei Wang71994622018-08-16 15:50:58 +0800835}
836
837static unsigned long virtio_balloon_shrinker_count(struct shrinker *shrinker,
838 struct shrink_control *sc)
839{
840 struct virtio_balloon *vb = container_of(shrinker,
841 struct virtio_balloon, shrinker);
Wei Wang86a55972018-08-27 09:32:17 +0800842 unsigned long count;
Wei Wang71994622018-08-16 15:50:58 +0800843
Wei Wang86a55972018-08-27 09:32:17 +0800844 count = vb->num_pages / VIRTIO_BALLOON_PAGES_PER_PAGE;
Michael S. Tsirkin63b9b802019-11-19 05:25:24 -0500845 count += vb->num_free_page_blocks * VIRTIO_BALLOON_HINT_BLOCK_PAGES;
Wei Wang86a55972018-08-27 09:32:17 +0800846
847 return count;
Wei Wang71994622018-08-16 15:50:58 +0800848}
849
850static void virtio_balloon_unregister_shrinker(struct virtio_balloon *vb)
851{
852 unregister_shrinker(&vb->shrinker);
853}
854
855static int virtio_balloon_register_shrinker(struct virtio_balloon *vb)
856{
857 vb->shrinker.scan_objects = virtio_balloon_shrinker_scan;
858 vb->shrinker.count_objects = virtio_balloon_shrinker_count;
859 vb->shrinker.seeks = DEFAULT_SEEKS;
860
861 return register_shrinker(&vb->shrinker);
862}
863
Amit Shahbe91c332011-12-22 16:58:34 +0530864static int virtballoon_probe(struct virtio_device *vdev)
865{
866 struct virtio_balloon *vb;
Wei Wang2e991622018-08-27 09:32:19 +0800867 __u32 poison_val;
Amit Shahbe91c332011-12-22 16:58:34 +0530868 int err;
869
Michael S. Tsirkin2d9becc2015-01-12 16:23:37 +0200870 if (!vdev->config->get) {
871 dev_err(&vdev->dev, "%s failure: config access disabled\n",
872 __func__);
873 return -EINVAL;
874 }
875
Wei Wangc51d8fc2018-08-16 15:50:57 +0800876 vdev->priv = vb = kzalloc(sizeof(*vb), GFP_KERNEL);
Amit Shahbe91c332011-12-22 16:58:34 +0530877 if (!vb) {
878 err = -ENOMEM;
879 goto out;
880 }
881
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100882 INIT_WORK(&vb->update_balloon_stats_work, update_balloon_stats_func);
883 INIT_WORK(&vb->update_balloon_size_work, update_balloon_size_func);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100884 spin_lock_init(&vb->stop_update_lock);
Rafael Aquinie2250422012-12-11 16:02:45 -0800885 mutex_init(&vb->balloon_lock);
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300886 init_waitqueue_head(&vb->acked);
Amit Shahbe91c332011-12-22 16:58:34 +0530887 vb->vdev = vdev;
Amit Shahbe91c332011-12-22 16:58:34 +0530888
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700889 balloon_devinfo_init(&vb->vb_dev_info);
Rafael Aquinie2250422012-12-11 16:02:45 -0800890
Amit Shahbe91c332011-12-22 16:58:34 +0530891 err = init_vqs(vb);
892 if (err)
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700893 goto out_free_vb;
Rusty Russell6b35e402008-02-04 23:50:12 -0500894
Minchan Kimb1123ea62016-07-26 15:23:09 -0700895#ifdef CONFIG_BALLOON_COMPACTION
896 balloon_mnt = kern_mount(&balloon_fs);
897 if (IS_ERR(balloon_mnt)) {
898 err = PTR_ERR(balloon_mnt);
Minchan Kimb1123ea62016-07-26 15:23:09 -0700899 goto out_del_vqs;
900 }
901
902 vb->vb_dev_info.migratepage = virtballoon_migratepage;
903 vb->vb_dev_info.inode = alloc_anon_inode(balloon_mnt->mnt_sb);
904 if (IS_ERR(vb->vb_dev_info.inode)) {
905 err = PTR_ERR(vb->vb_dev_info.inode);
David Hildenbrand1ad6f582020-02-05 17:34:01 +0100906 goto out_kern_unmount;
Minchan Kimb1123ea62016-07-26 15:23:09 -0700907 }
908 vb->vb_dev_info.inode->i_mapping->a_ops = &balloon_aops;
909#endif
Wei Wang86a55972018-08-27 09:32:17 +0800910 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) {
911 /*
912 * There is always one entry reserved for cmd id, so the ring
913 * size needs to be at least two to report free page hints.
914 */
915 if (virtqueue_get_vring_size(vb->free_page_vq) < 2) {
916 err = -ENOSPC;
David Hildenbrand1ad6f582020-02-05 17:34:01 +0100917 goto out_iput;
Wei Wang86a55972018-08-27 09:32:17 +0800918 }
919 vb->balloon_wq = alloc_workqueue("balloon-wq",
920 WQ_FREEZABLE | WQ_CPU_INTENSIVE, 0);
921 if (!vb->balloon_wq) {
922 err = -ENOMEM;
David Hildenbrand1ad6f582020-02-05 17:34:01 +0100923 goto out_iput;
Wei Wang86a55972018-08-27 09:32:17 +0800924 }
925 INIT_WORK(&vb->report_free_page_work, report_free_page_func);
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800926 vb->cmd_id_received_cache = VIRTIO_BALLOON_CMD_ID_STOP;
Wei Wang86a55972018-08-27 09:32:17 +0800927 vb->cmd_id_active = cpu_to_virtio32(vb->vdev,
928 VIRTIO_BALLOON_CMD_ID_STOP);
929 vb->cmd_id_stop = cpu_to_virtio32(vb->vdev,
930 VIRTIO_BALLOON_CMD_ID_STOP);
Wei Wang86a55972018-08-27 09:32:17 +0800931 spin_lock_init(&vb->free_page_list_lock);
932 INIT_LIST_HEAD(&vb->free_page_list);
Wei Wang2e991622018-08-27 09:32:19 +0800933 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_PAGE_POISON)) {
934 memset(&poison_val, PAGE_POISON, sizeof(poison_val));
935 virtio_cwrite(vb->vdev, struct virtio_balloon_config,
936 poison_val, &poison_val);
937 }
Wei Wang86a55972018-08-27 09:32:17 +0800938 }
Wei Wang71994622018-08-16 15:50:58 +0800939 /*
940 * We continue to use VIRTIO_BALLOON_F_DEFLATE_ON_OOM to decide if a
941 * shrinker needs to be registered to relieve memory pressure.
942 */
943 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) {
944 err = virtio_balloon_register_shrinker(vb);
945 if (err)
Wei Wang86a55972018-08-27 09:32:17 +0800946 goto out_del_balloon_wq;
Wei Wang71994622018-08-16 15:50:58 +0800947 }
Michael S. Tsirkin88660f7fb2015-03-05 13:24:41 +1030948 virtio_device_ready(vdev);
949
Konstantin Neumoin8424af52016-09-29 13:17:12 +0300950 if (towards_target(vb))
951 virtballoon_changed(vdev);
Rusty Russell6b35e402008-02-04 23:50:12 -0500952 return 0;
953
Wei Wang86a55972018-08-27 09:32:17 +0800954out_del_balloon_wq:
955 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
956 destroy_workqueue(vb->balloon_wq);
David Hildenbrand1ad6f582020-02-05 17:34:01 +0100957out_iput:
958#ifdef CONFIG_BALLOON_COMPACTION
959 iput(vb->vb_dev_info.inode);
960out_kern_unmount:
961 kern_unmount(balloon_mnt);
962#endif
Minchan Kimb1123ea62016-07-26 15:23:09 -0700963out_del_vqs:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600964 vdev->config->del_vqs(vdev);
Rusty Russell6b35e402008-02-04 23:50:12 -0500965out_free_vb:
966 kfree(vb);
967out:
968 return err;
969}
970
Amit Shahc877bab2012-04-27 00:45:57 +0530971static void remove_common(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -0500972{
Rusty Russell6b35e402008-02-04 23:50:12 -0500973 /* There might be pages left in the balloon: free them. */
974 while (vb->num_pages)
975 leak_balloon(vb, vb->num_pages);
Amit Shahb8ae0eb2012-04-27 00:45:56 +0530976 update_balloon_size(vb);
Rusty Russell6b35e402008-02-04 23:50:12 -0500977
David Hildenbrand6c22dc62020-02-05 17:34:00 +0100978 /* There might be free pages that are being reported: release them. */
979 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
980 return_free_pages_to_mm(vb, ULONG_MAX);
981
Rusty Russell6b35e402008-02-04 23:50:12 -0500982 /* Now we reset the device so we can clean up the queues. */
Amit Shahc877bab2012-04-27 00:45:57 +0530983 vb->vdev->config->reset(vb->vdev);
Rusty Russell6b35e402008-02-04 23:50:12 -0500984
Amit Shahc877bab2012-04-27 00:45:57 +0530985 vb->vdev->config->del_vqs(vb->vdev);
986}
987
Greg Kroah-Hartman8590dbc2012-12-21 13:05:30 -0800988static void virtballoon_remove(struct virtio_device *vdev)
Amit Shahc877bab2012-04-27 00:45:57 +0530989{
990 struct virtio_balloon *vb = vdev->priv;
991
Wei Wang71994622018-08-16 15:50:58 +0800992 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM))
993 virtio_balloon_unregister_shrinker(vb);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100994 spin_lock_irq(&vb->stop_update_lock);
995 vb->stop_update = true;
996 spin_unlock_irq(&vb->stop_update_lock);
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100997 cancel_work_sync(&vb->update_balloon_size_work);
998 cancel_work_sync(&vb->update_balloon_stats_work);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100999
Wei Wang86a55972018-08-27 09:32:17 +08001000 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) {
1001 cancel_work_sync(&vb->report_free_page_work);
1002 destroy_workqueue(vb->balloon_wq);
1003 }
1004
Amit Shahc877bab2012-04-27 00:45:57 +05301005 remove_common(vb);
Yisheng Xie9c57b582017-02-24 15:00:40 -08001006#ifdef CONFIG_BALLOON_COMPACTION
Minchan Kimb1123ea62016-07-26 15:23:09 -07001007 if (vb->vb_dev_info.inode)
1008 iput(vb->vb_dev_info.inode);
Yisheng Xie9c57b582017-02-24 15:00:40 -08001009
1010 kern_unmount(balloon_mnt);
1011#endif
Rusty Russell6b35e402008-02-04 23:50:12 -05001012 kfree(vb);
1013}
1014
Aaron Lu89107002013-09-17 09:25:23 +09301015#ifdef CONFIG_PM_SLEEP
Amit Shahe5629662011-12-22 16:58:35 +05301016static int virtballoon_freeze(struct virtio_device *vdev)
1017{
Amit Shah4eb05d52012-02-29 17:42:51 +05301018 struct virtio_balloon *vb = vdev->priv;
1019
Amit Shahe5629662011-12-22 16:58:35 +05301020 /*
Petr Mladekfad7b7b2016-01-25 17:38:05 +01001021 * The workqueue is already frozen by the PM core before this
Amit Shahe5629662011-12-22 16:58:35 +05301022 * function is called.
1023 */
Amit Shahc877bab2012-04-27 00:45:57 +05301024 remove_common(vb);
Amit Shahe5629662011-12-22 16:58:35 +05301025 return 0;
1026}
1027
Amit Shahc45b4162012-04-27 00:45:55 +05301028static int virtballoon_restore(struct virtio_device *vdev)
Amit Shah4eb05d52012-02-29 17:42:51 +05301029{
1030 struct virtio_balloon *vb = vdev->priv;
1031 int ret;
1032
1033 ret = init_vqs(vdev->priv);
1034 if (ret)
1035 return ret;
1036
Michael S. Tsirkin486d2e62014-10-15 10:22:33 +10301037 virtio_device_ready(vdev);
1038
Petr Mladekfad7b7b2016-01-25 17:38:05 +01001039 if (towards_target(vb))
1040 virtballoon_changed(vdev);
Amit Shah4eb05d52012-02-29 17:42:51 +05301041 update_balloon_size(vb);
1042 return 0;
1043}
Amit Shahe5629662011-12-22 16:58:35 +05301044#endif
1045
Michael S. Tsirkine41b1352017-06-13 20:56:44 +03001046static int virtballoon_validate(struct virtio_device *vdev)
1047{
Wei Wang2e991622018-08-27 09:32:19 +08001048 if (!page_poisoning_enabled())
1049 __virtio_clear_bit(vdev, VIRTIO_BALLOON_F_PAGE_POISON);
1050
Michael S. Tsirkine41b1352017-06-13 20:56:44 +03001051 __virtio_clear_bit(vdev, VIRTIO_F_IOMMU_PLATFORM);
1052 return 0;
1053}
1054
Adam Litke9564e132009-11-30 10:14:15 -06001055static unsigned int features[] = {
1056 VIRTIO_BALLOON_F_MUST_TELL_HOST,
1057 VIRTIO_BALLOON_F_STATS_VQ,
Raushaniya Maksudova5a10b7d2014-11-10 09:36:29 +10301058 VIRTIO_BALLOON_F_DEFLATE_ON_OOM,
Wei Wang86a55972018-08-27 09:32:17 +08001059 VIRTIO_BALLOON_F_FREE_PAGE_HINT,
Wei Wang2e991622018-08-27 09:32:19 +08001060 VIRTIO_BALLOON_F_PAGE_POISON,
Adam Litke9564e132009-11-30 10:14:15 -06001061};
Rusty Russellc45a6812008-05-02 21:50:50 -05001062
Jeff Mahoneyd817cd52010-01-15 17:01:26 -08001063static struct virtio_driver virtio_balloon_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05001064 .feature_table = features,
1065 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell6b35e402008-02-04 23:50:12 -05001066 .driver.name = KBUILD_MODNAME,
1067 .driver.owner = THIS_MODULE,
1068 .id_table = id_table,
Michael S. Tsirkine41b1352017-06-13 20:56:44 +03001069 .validate = virtballoon_validate,
Rusty Russell6b35e402008-02-04 23:50:12 -05001070 .probe = virtballoon_probe,
Greg Kroah-Hartman8590dbc2012-12-21 13:05:30 -08001071 .remove = virtballoon_remove,
Rusty Russell6b35e402008-02-04 23:50:12 -05001072 .config_changed = virtballoon_changed,
Aaron Lu89107002013-09-17 09:25:23 +09301073#ifdef CONFIG_PM_SLEEP
Amit Shahe5629662011-12-22 16:58:35 +05301074 .freeze = virtballoon_freeze,
1075 .restore = virtballoon_restore,
Amit Shahe5629662011-12-22 16:58:35 +05301076#endif
Rusty Russell6b35e402008-02-04 23:50:12 -05001077};
1078
Rusty Russellb2a17022013-02-13 16:59:28 +10301079module_virtio_driver(virtio_balloon_driver);
Rusty Russell6b35e402008-02-04 23:50:12 -05001080MODULE_DEVICE_TABLE(virtio, id_table);
1081MODULE_DESCRIPTION("Virtio balloon driver");
1082MODULE_LICENSE("GPL");