blob: 226fbb995fb0612ad623ad3db36856162dba16e9 [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 */
35#define VIRTIO_BALLOON_FREE_PAGE_ORDER (MAX_ORDER - 1)
36/* The size of a free page block in bytes */
37#define VIRTIO_BALLOON_FREE_PAGE_SIZE \
38 (1 << (VIRTIO_BALLOON_FREE_PAGE_ORDER + PAGE_SHIFT))
39
Minchan Kimb1123ea62016-07-26 15:23:09 -070040#ifdef CONFIG_BALLOON_COMPACTION
41static struct vfsmount *balloon_mnt;
42#endif
43
Wei Wang86a55972018-08-27 09:32:17 +080044enum virtio_balloon_vq {
45 VIRTIO_BALLOON_VQ_INFLATE,
46 VIRTIO_BALLOON_VQ_DEFLATE,
47 VIRTIO_BALLOON_VQ_STATS,
48 VIRTIO_BALLOON_VQ_FREE_PAGE,
49 VIRTIO_BALLOON_VQ_MAX
50};
51
Wei Wangbf4dc0b2019-01-07 15:01:04 +080052enum virtio_balloon_config_read {
53 VIRTIO_BALLOON_CONFIG_READ_CMD_ID = 0,
54};
55
Michael S. Tsirkin25e65e42015-01-15 13:33:31 +020056struct virtio_balloon {
Rusty Russell6b35e402008-02-04 23:50:12 -050057 struct virtio_device *vdev;
Wei Wang86a55972018-08-27 09:32:17 +080058 struct virtqueue *inflate_vq, *deflate_vq, *stats_vq, *free_page_vq;
59
60 /* Balloon's own wq for cpu-intensive work items */
61 struct workqueue_struct *balloon_wq;
62 /* The free page reporting work item submitted to the balloon wq */
63 struct work_struct report_free_page_work;
Rusty Russell6b35e402008-02-04 23:50:12 -050064
Petr Mladekfad7b7b2016-01-25 17:38:05 +010065 /* The balloon servicing is delegated to a freezable workqueue. */
Petr Mladekfd0e21c2016-01-25 17:38:06 +010066 struct work_struct update_balloon_stats_work;
67 struct work_struct update_balloon_size_work;
Rusty Russell6b35e402008-02-04 23:50:12 -050068
Petr Mladekfad7b7b2016-01-25 17:38:05 +010069 /* Prevent updating balloon when it is being canceled. */
70 spinlock_t stop_update_lock;
71 bool stop_update;
Wei Wangbf4dc0b2019-01-07 15:01:04 +080072 /* Bitmap to indicate if reading the related config fields are needed */
73 unsigned long config_read_bitmap;
Rusty Russell6b35e402008-02-04 23:50:12 -050074
Wei Wang86a55972018-08-27 09:32:17 +080075 /* The list of allocated free pages, waiting to be given back to mm */
76 struct list_head free_page_list;
77 spinlock_t free_page_list_lock;
78 /* The number of free page blocks on the above list */
79 unsigned long num_free_page_blocks;
Wei Wangbf4dc0b2019-01-07 15:01:04 +080080 /*
81 * The cmd id received from host.
82 * Read it via virtio_balloon_cmd_id_received to get the latest value
83 * sent from host.
84 */
85 u32 cmd_id_received_cache;
Wei Wang86a55972018-08-27 09:32:17 +080086 /* The cmd id that is actively in use */
87 __virtio32 cmd_id_active;
88 /* Buffer to store the stop sign */
89 __virtio32 cmd_id_stop;
90
Rusty Russell6b35e402008-02-04 23:50:12 -050091 /* Waiting for host to ack the pages we released. */
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +030092 wait_queue_head_t acked;
Rusty Russell6b35e402008-02-04 23:50:12 -050093
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030094 /* Number of balloon pages we've told the Host we're not using. */
Rusty Russell6b35e402008-02-04 23:50:12 -050095 unsigned int num_pages;
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030096 /*
Rafael Aquinie2250422012-12-11 16:02:45 -080097 * The pages we've told the Host we're not using are enqueued
98 * at vb_dev_info->pages list.
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030099 * Each page on this list adds VIRTIO_BALLOON_PAGES_PER_PAGE
100 * to num_pages above.
101 */
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700102 struct balloon_dev_info vb_dev_info;
Rafael Aquinie2250422012-12-11 16:02:45 -0800103
104 /* Synchronize access/update to this struct virtio_balloon elements */
105 struct mutex balloon_lock;
Rusty Russell6b35e402008-02-04 23:50:12 -0500106
107 /* The array of pfns we tell the Host about. */
108 unsigned int num_pfns;
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300109 __virtio32 pfns[VIRTIO_BALLOON_ARRAY_PFNS_MAX];
Adam Litke9564e132009-11-30 10:14:15 -0600110
111 /* Memory statistics */
112 struct virtio_balloon_stat stats[VIRTIO_BALLOON_S_NR];
Raushaniya Maksudova5a10b7d2014-11-10 09:36:29 +1030113
Wei Wang71994622018-08-16 15:50:58 +0800114 /* To register a shrinker to shrink memory upon memory pressure */
115 struct shrinker shrinker;
Rusty Russell6b35e402008-02-04 23:50:12 -0500116};
117
118static struct virtio_device_id id_table[] = {
119 { VIRTIO_ID_BALLOON, VIRTIO_DEV_ANY_ID },
120 { 0 },
121};
122
Hollis Blanchard1b4aa2f2008-11-13 15:48:33 -0600123static u32 page_to_balloon_pfn(struct page *page)
124{
125 unsigned long pfn = page_to_pfn(page);
126
127 BUILD_BUG_ON(PAGE_SHIFT < VIRTIO_BALLOON_PFN_SHIFT);
128 /* Convert pfn from Linux page size to balloon page size. */
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300129 return pfn * VIRTIO_BALLOON_PAGES_PER_PAGE;
130}
131
Rusty Russell6b35e402008-02-04 23:50:12 -0500132static void balloon_ack(struct virtqueue *vq)
133{
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300134 struct virtio_balloon *vb = vq->vdev->priv;
Rusty Russell6b35e402008-02-04 23:50:12 -0500135
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300136 wake_up(&vb->acked);
Rusty Russell6b35e402008-02-04 23:50:12 -0500137}
138
139static void tell_host(struct virtio_balloon *vb, struct virtqueue *vq)
140{
141 struct scatterlist sg;
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300142 unsigned int len;
Rusty Russell6b35e402008-02-04 23:50:12 -0500143
144 sg_init_one(&sg, vb->pfns, sizeof(vb->pfns[0]) * vb->num_pfns);
145
Rusty Russell6b35e402008-02-04 23:50:12 -0500146 /* We should always be able to add one buffer to an empty queue. */
Rusty Russell4951cc92014-03-13 11:23:40 +1030147 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL);
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300148 virtqueue_kick(vq);
Rusty Russell6b35e402008-02-04 23:50:12 -0500149
150 /* When host has read buffer, this completes via balloon_ack */
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300151 wait_event(vb->acked, virtqueue_get_buf(vq, &len));
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100152
Rusty Russell6b35e402008-02-04 23:50:12 -0500153}
154
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300155static void set_page_pfns(struct virtio_balloon *vb,
156 __virtio32 pfns[], struct page *page)
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300157{
158 unsigned int i;
159
Wei Wangf9aada52017-07-12 20:40:15 +0800160 /*
161 * Set balloon pfns pointing at this page.
162 * Note that the first pfn points at start of the page.
163 */
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300164 for (i = 0; i < VIRTIO_BALLOON_PAGES_PER_PAGE; i++)
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300165 pfns[i] = cpu_to_virtio32(vb->vdev,
166 page_to_balloon_pfn(page) + i);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300167}
168
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100169static unsigned fill_balloon(struct virtio_balloon *vb, size_t num)
Rusty Russell6b35e402008-02-04 23:50:12 -0500170{
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100171 unsigned num_allocated_pages;
Michael S. Tsirkinc7cdff02017-10-13 16:11:48 +0300172 unsigned num_pfns;
173 struct page *page;
174 LIST_HEAD(pages);
Rafael Aquinie2250422012-12-11 16:02:45 -0800175
Rusty Russell6b35e402008-02-04 23:50:12 -0500176 /* We can only do one array worth at a time. */
177 num = min(num, ARRAY_SIZE(vb->pfns));
178
Michael S. Tsirkinc7cdff02017-10-13 16:11:48 +0300179 for (num_pfns = 0; num_pfns < num;
180 num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
181 struct page *page = balloon_page_alloc();
Rafael Aquinie2250422012-12-11 16:02:45 -0800182
Rusty Russell6b35e402008-02-04 23:50:12 -0500183 if (!page) {
Joe Perches800ba5e2012-10-31 09:27:22 +1030184 dev_info_ratelimited(&vb->vdev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800185 "Out of puff! Can't get %u pages\n",
186 VIRTIO_BALLOON_PAGES_PER_PAGE);
Rusty Russell6b35e402008-02-04 23:50:12 -0500187 /* Sleep for at least 1/5 of a second before retry. */
188 msleep(200);
189 break;
190 }
Michael S. Tsirkinc7cdff02017-10-13 16:11:48 +0300191
192 balloon_page_push(&pages, page);
193 }
194
195 mutex_lock(&vb->balloon_lock);
196
197 vb->num_pfns = 0;
198
199 while ((page = balloon_page_pop(&pages))) {
200 balloon_page_enqueue(&vb->vb_dev_info, page);
201
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300202 set_page_pfns(vb, vb->pfns + vb->num_pfns, page);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300203 vb->num_pages += VIRTIO_BALLOON_PAGES_PER_PAGE;
Denis V. Lunev997e1202015-08-20 00:49:49 +0300204 if (!virtio_has_feature(vb->vdev,
205 VIRTIO_BALLOON_F_DEFLATE_ON_OOM))
206 adjust_managed_page_count(page, -1);
Jan Stancekd9e427f2017-12-01 10:50:28 +0100207 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE;
Rusty Russell6b35e402008-02-04 23:50:12 -0500208 }
209
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100210 num_allocated_pages = vb->num_pfns;
Rafael Aquinie2250422012-12-11 16:02:45 -0800211 /* Did we get any? */
212 if (vb->num_pfns != 0)
213 tell_host(vb, vb->inflate_vq);
214 mutex_unlock(&vb->balloon_lock);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100215
216 return num_allocated_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500217}
218
Liang Li195a8c42017-07-12 20:40:14 +0800219static void release_pages_balloon(struct virtio_balloon *vb,
220 struct list_head *pages)
Rusty Russell6b35e402008-02-04 23:50:12 -0500221{
Liang Li195a8c42017-07-12 20:40:14 +0800222 struct page *page, *next;
Rusty Russell6b35e402008-02-04 23:50:12 -0500223
Liang Li195a8c42017-07-12 20:40:14 +0800224 list_for_each_entry_safe(page, next, pages, lru) {
Denis V. Lunev997e1202015-08-20 00:49:49 +0300225 if (!virtio_has_feature(vb->vdev,
226 VIRTIO_BALLOON_F_DEFLATE_ON_OOM))
227 adjust_managed_page_count(page, 1);
Liang Li195a8c42017-07-12 20:40:14 +0800228 list_del(&page->lru);
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700229 put_page(page); /* balloon reference */
Rusty Russell6b35e402008-02-04 23:50:12 -0500230 }
231}
232
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030233static unsigned leak_balloon(struct virtio_balloon *vb, size_t num)
Rusty Russell6b35e402008-02-04 23:50:12 -0500234{
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030235 unsigned num_freed_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500236 struct page *page;
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700237 struct balloon_dev_info *vb_dev_info = &vb->vb_dev_info;
Liang Li195a8c42017-07-12 20:40:14 +0800238 LIST_HEAD(pages);
Rusty Russell6b35e402008-02-04 23:50:12 -0500239
240 /* We can only do one array worth at a time. */
241 num = min(num, ARRAY_SIZE(vb->pfns));
242
Rafael Aquinie2250422012-12-11 16:02:45 -0800243 mutex_lock(&vb->balloon_lock);
Konstantin Neumoin37cf99e2016-07-11 15:28:59 +0300244 /* We can't release more pages than taken */
245 num = min(num, (size_t)vb->num_pages);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300246 for (vb->num_pfns = 0; vb->num_pfns < num;
247 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
Rafael Aquinie2250422012-12-11 16:02:45 -0800248 page = balloon_page_dequeue(vb_dev_info);
249 if (!page)
250 break;
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300251 set_page_pfns(vb, vb->pfns + vb->num_pfns, page);
Liang Li195a8c42017-07-12 20:40:14 +0800252 list_add(&page->lru, &pages);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300253 vb->num_pages -= VIRTIO_BALLOON_PAGES_PER_PAGE;
Rusty Russell6b35e402008-02-04 23:50:12 -0500254 }
255
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030256 num_freed_pages = vb->num_pfns;
Dave Hansenbf50e692011-04-07 10:43:25 -0700257 /*
258 * Note that if
259 * virtio_has_feature(vdev, VIRTIO_BALLOON_F_MUST_TELL_HOST);
260 * is true, we *have* to do it in this order
261 */
Luiz Capitulino8c6bab42013-07-02 15:35:13 +0930262 if (vb->num_pfns != 0)
263 tell_host(vb, vb->deflate_vq);
Liang Li195a8c42017-07-12 20:40:14 +0800264 release_pages_balloon(vb, &pages);
Minchan Kimf68b9922015-12-28 08:35:12 +0900265 mutex_unlock(&vb->balloon_lock);
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030266 return num_freed_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500267}
268
Adam Litke9564e132009-11-30 10:14:15 -0600269static inline void update_stat(struct virtio_balloon *vb, int idx,
270 u16 tag, u64 val)
271{
272 BUG_ON(idx >= VIRTIO_BALLOON_S_NR);
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930273 vb->stats[idx].tag = cpu_to_virtio16(vb->vdev, tag);
274 vb->stats[idx].val = cpu_to_virtio64(vb->vdev, val);
Adam Litke9564e132009-11-30 10:14:15 -0600275}
276
277#define pages_to_bytes(x) ((u64)(x) << PAGE_SHIFT)
278
Ladi Prosek9646b262017-03-28 18:46:58 +0200279static unsigned int update_balloon_stats(struct virtio_balloon *vb)
Adam Litke9564e132009-11-30 10:14:15 -0600280{
281 unsigned long events[NR_VM_EVENT_ITEMS];
282 struct sysinfo i;
Ladi Prosek9646b262017-03-28 18:46:58 +0200283 unsigned int idx = 0;
Igor Redko5057dcd2016-03-17 14:19:08 -0700284 long available;
Tomáš Golembiovský4d320292017-11-12 13:05:38 +0100285 unsigned long caches;
Adam Litke9564e132009-11-30 10:14:15 -0600286
287 all_vm_events(events);
288 si_meminfo(&i);
289
Igor Redko5057dcd2016-03-17 14:19:08 -0700290 available = si_mem_available();
Tomáš Golembiovský4d320292017-11-12 13:05:38 +0100291 caches = global_node_page_state(NR_FILE_PAGES);
Igor Redko5057dcd2016-03-17 14:19:08 -0700292
Arnd Bergmannf0bb2d52017-03-28 18:46:59 +0200293#ifdef CONFIG_VM_EVENT_COUNTERS
Adam Litke9564e132009-11-30 10:14:15 -0600294 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_IN,
295 pages_to_bytes(events[PSWPIN]));
296 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_OUT,
297 pages_to_bytes(events[PSWPOUT]));
298 update_stat(vb, idx++, VIRTIO_BALLOON_S_MAJFLT, events[PGMAJFAULT]);
299 update_stat(vb, idx++, VIRTIO_BALLOON_S_MINFLT, events[PGFAULT]);
Jonathan Helman6c64fe72018-03-19 15:14:14 -0700300#ifdef CONFIG_HUGETLB_PAGE
301 update_stat(vb, idx++, VIRTIO_BALLOON_S_HTLB_PGALLOC,
302 events[HTLB_BUDDY_PGALLOC]);
303 update_stat(vb, idx++, VIRTIO_BALLOON_S_HTLB_PGFAIL,
304 events[HTLB_BUDDY_PGALLOC_FAIL]);
305#endif
Arnd Bergmannf0bb2d52017-03-28 18:46:59 +0200306#endif
Adam Litke9564e132009-11-30 10:14:15 -0600307 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMFREE,
308 pages_to_bytes(i.freeram));
309 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMTOT,
310 pages_to_bytes(i.totalram));
Igor Redko5057dcd2016-03-17 14:19:08 -0700311 update_stat(vb, idx++, VIRTIO_BALLOON_S_AVAIL,
312 pages_to_bytes(available));
Tomáš Golembiovský4d320292017-11-12 13:05:38 +0100313 update_stat(vb, idx++, VIRTIO_BALLOON_S_CACHES,
314 pages_to_bytes(caches));
Ladi Prosek9646b262017-03-28 18:46:58 +0200315
316 return idx;
Adam Litke9564e132009-11-30 10:14:15 -0600317}
318
319/*
320 * While most virtqueues communicate guest-initiated requests to the hypervisor,
321 * the stats queue operates in reverse. The driver initializes the virtqueue
322 * with a single buffer. From that point forward, all conversations consist of
323 * a hypervisor request (a call to this function) which directs us to refill
Adam Litke1f34c712009-12-10 16:35:15 -0600324 * the virtqueue with a fresh stats buffer. Since stats collection can sleep,
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100325 * we delegate the job to a freezable workqueue that will do the actual work via
326 * stats_handle_request().
Adam Litke9564e132009-11-30 10:14:15 -0600327 */
Adam Litke1f34c712009-12-10 16:35:15 -0600328static void stats_request(struct virtqueue *vq)
Adam Litke9564e132009-11-30 10:14:15 -0600329{
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300330 struct virtio_balloon *vb = vq->vdev->priv;
Adam Litke9564e132009-11-30 10:14:15 -0600331
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100332 spin_lock(&vb->stop_update_lock);
333 if (!vb->stop_update)
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100334 queue_work(system_freezable_wq, &vb->update_balloon_stats_work);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100335 spin_unlock(&vb->stop_update_lock);
Adam Litke1f34c712009-12-10 16:35:15 -0600336}
Adam Litke9564e132009-11-30 10:14:15 -0600337
Adam Litke1f34c712009-12-10 16:35:15 -0600338static void stats_handle_request(struct virtio_balloon *vb)
339{
340 struct virtqueue *vq;
341 struct scatterlist sg;
Ladi Prosek9646b262017-03-28 18:46:58 +0200342 unsigned int len, num_stats;
Adam Litke1f34c712009-12-10 16:35:15 -0600343
Ladi Prosek9646b262017-03-28 18:46:58 +0200344 num_stats = update_balloon_stats(vb);
Adam Litke9564e132009-11-30 10:14:15 -0600345
Adam Litke1f34c712009-12-10 16:35:15 -0600346 vq = vb->stats_vq;
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300347 if (!virtqueue_get_buf(vq, &len))
348 return;
Ladi Prosek9646b262017-03-28 18:46:58 +0200349 sg_init_one(&sg, vb->stats, sizeof(vb->stats[0]) * num_stats);
Rusty Russell4951cc92014-03-13 11:23:40 +1030350 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL);
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300351 virtqueue_kick(vq);
Adam Litke9564e132009-11-30 10:14:15 -0600352}
353
Rusty Russellbdc16812008-03-17 22:58:15 -0500354static inline s64 towards_target(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -0500355{
David Gibson1a872282012-04-12 15:36:34 +1000356 s64 target;
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930357 u32 num_pages;
David Gibson1a872282012-04-12 15:36:34 +1000358
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930359 virtio_cread(vb->vdev, struct virtio_balloon_config, num_pages,
360 &num_pages);
Rusty Russell855e0c52013-10-14 18:11:51 +1030361
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930362 /* Legacy balloon config space is LE, unlike all other devices. */
363 if (!virtio_has_feature(vb->vdev, VIRTIO_F_VERSION_1))
364 num_pages = le32_to_cpu((__force __le32)num_pages);
365
366 target = num_pages;
David Gibson1a872282012-04-12 15:36:34 +1000367 return target - vb->num_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500368}
369
Wei Wang86a55972018-08-27 09:32:17 +0800370/* Gives back @num_to_return blocks of free pages to mm. */
371static unsigned long return_free_pages_to_mm(struct virtio_balloon *vb,
372 unsigned long num_to_return)
373{
374 struct page *page;
375 unsigned long num_returned;
376
377 spin_lock_irq(&vb->free_page_list_lock);
378 for (num_returned = 0; num_returned < num_to_return; num_returned++) {
379 page = balloon_page_pop(&vb->free_page_list);
380 if (!page)
381 break;
382 free_pages((unsigned long)page_address(page),
383 VIRTIO_BALLOON_FREE_PAGE_ORDER);
384 }
385 vb->num_free_page_blocks -= num_returned;
386 spin_unlock_irq(&vb->free_page_list_lock);
387
388 return num_returned;
389}
390
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800391static void virtio_balloon_queue_free_page_work(struct virtio_balloon *vb)
392{
393 if (!virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
394 return;
395
396 /* No need to queue the work if the bit was already set. */
397 if (test_and_set_bit(VIRTIO_BALLOON_CONFIG_READ_CMD_ID,
398 &vb->config_read_bitmap))
399 return;
400
401 queue_work(vb->balloon_wq, &vb->report_free_page_work);
402}
403
Wei Wang86a55972018-08-27 09:32:17 +0800404static void virtballoon_changed(struct virtio_device *vdev)
405{
406 struct virtio_balloon *vb = vdev->priv;
407 unsigned long flags;
Wei Wang86a55972018-08-27 09:32:17 +0800408
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800409 spin_lock_irqsave(&vb->stop_update_lock, flags);
410 if (!vb->stop_update) {
411 queue_work(system_freezable_wq,
412 &vb->update_balloon_size_work);
413 virtio_balloon_queue_free_page_work(vb);
Wei Wang86a55972018-08-27 09:32:17 +0800414 }
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800415 spin_unlock_irqrestore(&vb->stop_update_lock, flags);
Wei Wang86a55972018-08-27 09:32:17 +0800416}
417
Rusty Russell6b35e402008-02-04 23:50:12 -0500418static void update_balloon_size(struct virtio_balloon *vb)
419{
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930420 u32 actual = vb->num_pages;
421
422 /* Legacy balloon config space is LE, unlike all other devices. */
423 if (!virtio_has_feature(vb->vdev, VIRTIO_F_VERSION_1))
424 actual = (__force u32)cpu_to_le32(actual);
Rusty Russell6b35e402008-02-04 23:50:12 -0500425
Luiz Capitulino3459f112013-12-05 13:04:10 +1030426 virtio_cwrite(vb->vdev, struct virtio_balloon_config, actual,
Rusty Russell855e0c52013-10-14 18:11:51 +1030427 &actual);
Rusty Russell6b35e402008-02-04 23:50:12 -0500428}
429
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100430static void update_balloon_stats_func(struct work_struct *work)
Rusty Russell6b35e402008-02-04 23:50:12 -0500431{
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100432 struct virtio_balloon *vb;
Rusty Russell6b35e402008-02-04 23:50:12 -0500433
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100434 vb = container_of(work, struct virtio_balloon,
435 update_balloon_stats_work);
436 stats_handle_request(vb);
437}
Rusty Russell6b35e402008-02-04 23:50:12 -0500438
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100439static void update_balloon_size_func(struct work_struct *work)
Rusty Russell6b35e402008-02-04 23:50:12 -0500440{
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100441 struct virtio_balloon *vb;
442 s64 diff;
Michael S. Tsirkin3d2a3772015-03-10 11:55:08 +1030443
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100444 vb = container_of(work, struct virtio_balloon,
445 update_balloon_size_work);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100446 diff = towards_target(vb);
Michael S. Tsirkin3d2a3772015-03-10 11:55:08 +1030447
Wei Wang53e946c2019-01-07 15:01:05 +0800448 if (!diff)
449 return;
450
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100451 if (diff > 0)
452 diff -= fill_balloon(vb, diff);
Wei Wang53e946c2019-01-07 15:01:05 +0800453 else
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100454 diff += leak_balloon(vb, -diff);
455 update_balloon_size(vb);
Rusty Russell1f74ef02014-03-13 11:23:38 +1030456
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100457 if (diff)
458 queue_work(system_freezable_wq, work);
Rusty Russell6b35e402008-02-04 23:50:12 -0500459}
460
Amit Shahbe91c332011-12-22 16:58:34 +0530461static int init_vqs(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -0500462{
Wei Wang86a55972018-08-27 09:32:17 +0800463 struct virtqueue *vqs[VIRTIO_BALLOON_VQ_MAX];
464 vq_callback_t *callbacks[VIRTIO_BALLOON_VQ_MAX];
465 const char *names[VIRTIO_BALLOON_VQ_MAX];
466 int err;
Rusty Russell6b35e402008-02-04 23:50:12 -0500467
Amit Shahbe91c332011-12-22 16:58:34 +0530468 /*
Wei Wang86a55972018-08-27 09:32:17 +0800469 * Inflateq and deflateq are used unconditionally. The names[]
470 * will be NULL if the related feature is not enabled, which will
471 * cause no allocation for the corresponding virtqueue in find_vqs.
Amit Shahbe91c332011-12-22 16:58:34 +0530472 */
Wei Wang86a55972018-08-27 09:32:17 +0800473 callbacks[VIRTIO_BALLOON_VQ_INFLATE] = balloon_ack;
474 names[VIRTIO_BALLOON_VQ_INFLATE] = "inflate";
475 callbacks[VIRTIO_BALLOON_VQ_DEFLATE] = balloon_ack;
476 names[VIRTIO_BALLOON_VQ_DEFLATE] = "deflate";
477 names[VIRTIO_BALLOON_VQ_STATS] = NULL;
478 names[VIRTIO_BALLOON_VQ_FREE_PAGE] = NULL;
479
480 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ)) {
481 names[VIRTIO_BALLOON_VQ_STATS] = "stats";
482 callbacks[VIRTIO_BALLOON_VQ_STATS] = stats_request;
483 }
484
485 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) {
486 names[VIRTIO_BALLOON_VQ_FREE_PAGE] = "free_page_vq";
487 callbacks[VIRTIO_BALLOON_VQ_FREE_PAGE] = NULL;
488 }
489
490 err = vb->vdev->config->find_vqs(vb->vdev, VIRTIO_BALLOON_VQ_MAX,
491 vqs, callbacks, names, NULL, NULL);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600492 if (err)
Amit Shahbe91c332011-12-22 16:58:34 +0530493 return err;
Rusty Russell6b35e402008-02-04 23:50:12 -0500494
Wei Wang86a55972018-08-27 09:32:17 +0800495 vb->inflate_vq = vqs[VIRTIO_BALLOON_VQ_INFLATE];
496 vb->deflate_vq = vqs[VIRTIO_BALLOON_VQ_DEFLATE];
Adam Litke9564e132009-11-30 10:14:15 -0600497 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ)) {
498 struct scatterlist sg;
Ladi Prosek9646b262017-03-28 18:46:58 +0200499 unsigned int num_stats;
Wei Wang86a55972018-08-27 09:32:17 +0800500 vb->stats_vq = vqs[VIRTIO_BALLOON_VQ_STATS];
Adam Litke9564e132009-11-30 10:14:15 -0600501
502 /*
503 * Prime this virtqueue with one buffer so the hypervisor can
Rusty Russell4951cc92014-03-13 11:23:40 +1030504 * use it to signal us later (it can't be broken yet!).
Adam Litke9564e132009-11-30 10:14:15 -0600505 */
Ladi Prosek9646b262017-03-28 18:46:58 +0200506 num_stats = update_balloon_stats(vb);
Ladi Prosekfc865322017-03-23 08:04:18 +0100507
Ladi Prosek9646b262017-03-28 18:46:58 +0200508 sg_init_one(&sg, vb->stats, sizeof(vb->stats[0]) * num_stats);
Wei Wang74cf5b12018-08-16 15:50:56 +0800509 err = virtqueue_add_outbuf(vb->stats_vq, &sg, 1, vb,
510 GFP_KERNEL);
511 if (err) {
512 dev_warn(&vb->vdev->dev, "%s: add stat_vq failed\n",
513 __func__);
514 return err;
515 }
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300516 virtqueue_kick(vb->stats_vq);
Adam Litke9564e132009-11-30 10:14:15 -0600517 }
Wei Wang86a55972018-08-27 09:32:17 +0800518
519 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
520 vb->free_page_vq = vqs[VIRTIO_BALLOON_VQ_FREE_PAGE];
521
Amit Shahbe91c332011-12-22 16:58:34 +0530522 return 0;
523}
524
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800525static u32 virtio_balloon_cmd_id_received(struct virtio_balloon *vb)
526{
527 if (test_and_clear_bit(VIRTIO_BALLOON_CONFIG_READ_CMD_ID,
528 &vb->config_read_bitmap))
529 virtio_cread(vb->vdev, struct virtio_balloon_config,
530 free_page_report_cmd_id,
531 &vb->cmd_id_received_cache);
532
533 return vb->cmd_id_received_cache;
534}
535
Wei Wang86a55972018-08-27 09:32:17 +0800536static int send_cmd_id_start(struct virtio_balloon *vb)
537{
538 struct scatterlist sg;
539 struct virtqueue *vq = vb->free_page_vq;
540 int err, unused;
541
542 /* Detach all the used buffers from the vq */
543 while (virtqueue_get_buf(vq, &unused))
544 ;
545
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800546 vb->cmd_id_active = virtio32_to_cpu(vb->vdev,
547 virtio_balloon_cmd_id_received(vb));
Wei Wang86a55972018-08-27 09:32:17 +0800548 sg_init_one(&sg, &vb->cmd_id_active, sizeof(vb->cmd_id_active));
549 err = virtqueue_add_outbuf(vq, &sg, 1, &vb->cmd_id_active, GFP_KERNEL);
550 if (!err)
551 virtqueue_kick(vq);
552 return err;
553}
554
555static int send_cmd_id_stop(struct virtio_balloon *vb)
556{
557 struct scatterlist sg;
558 struct virtqueue *vq = vb->free_page_vq;
559 int err, unused;
560
561 /* Detach all the used buffers from the vq */
562 while (virtqueue_get_buf(vq, &unused))
563 ;
564
565 sg_init_one(&sg, &vb->cmd_id_stop, sizeof(vb->cmd_id_stop));
566 err = virtqueue_add_outbuf(vq, &sg, 1, &vb->cmd_id_stop, GFP_KERNEL);
567 if (!err)
568 virtqueue_kick(vq);
569 return err;
570}
571
572static int get_free_page_and_send(struct virtio_balloon *vb)
573{
574 struct virtqueue *vq = vb->free_page_vq;
575 struct page *page;
576 struct scatterlist sg;
577 int err, unused;
578 void *p;
579
580 /* Detach all the used buffers from the vq */
581 while (virtqueue_get_buf(vq, &unused))
582 ;
583
584 page = alloc_pages(VIRTIO_BALLOON_FREE_PAGE_ALLOC_FLAG,
585 VIRTIO_BALLOON_FREE_PAGE_ORDER);
586 /*
587 * When the allocation returns NULL, it indicates that we have got all
588 * the possible free pages, so return -EINTR to stop.
589 */
590 if (!page)
591 return -EINTR;
592
593 p = page_address(page);
594 sg_init_one(&sg, p, VIRTIO_BALLOON_FREE_PAGE_SIZE);
595 /* There is always 1 entry reserved for the cmd id to use. */
596 if (vq->num_free > 1) {
597 err = virtqueue_add_inbuf(vq, &sg, 1, p, GFP_KERNEL);
598 if (unlikely(err)) {
599 free_pages((unsigned long)p,
600 VIRTIO_BALLOON_FREE_PAGE_ORDER);
601 return err;
602 }
603 virtqueue_kick(vq);
604 spin_lock_irq(&vb->free_page_list_lock);
605 balloon_page_push(&vb->free_page_list, page);
606 vb->num_free_page_blocks++;
607 spin_unlock_irq(&vb->free_page_list_lock);
608 } else {
609 /*
610 * The vq has no available entry to add this page block, so
611 * just free it.
612 */
613 free_pages((unsigned long)p, VIRTIO_BALLOON_FREE_PAGE_ORDER);
614 }
615
616 return 0;
617}
618
619static int send_free_pages(struct virtio_balloon *vb)
620{
621 int err;
622 u32 cmd_id_active;
623
624 while (1) {
625 /*
626 * If a stop id or a new cmd id was just received from host,
627 * stop the reporting.
628 */
629 cmd_id_active = virtio32_to_cpu(vb->vdev, vb->cmd_id_active);
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800630 if (unlikely(cmd_id_active !=
631 virtio_balloon_cmd_id_received(vb)))
Wei Wang86a55972018-08-27 09:32:17 +0800632 break;
633
634 /*
635 * The free page blocks are allocated and sent to host one by
636 * one.
637 */
638 err = get_free_page_and_send(vb);
639 if (err == -EINTR)
640 break;
641 else if (unlikely(err))
642 return err;
643 }
644
645 return 0;
646}
647
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800648static void virtio_balloon_report_free_page(struct virtio_balloon *vb)
Wei Wang86a55972018-08-27 09:32:17 +0800649{
650 int err;
Wei Wang86a55972018-08-27 09:32:17 +0800651 struct device *dev = &vb->vdev->dev;
652
653 /* Start by sending the received cmd id to host with an outbuf. */
654 err = send_cmd_id_start(vb);
655 if (unlikely(err))
656 dev_err(dev, "Failed to send a start id, err = %d\n", err);
657
658 err = send_free_pages(vb);
659 if (unlikely(err))
660 dev_err(dev, "Failed to send a free page, err = %d\n", err);
661
662 /* End by sending a stop id to host with an outbuf. */
663 err = send_cmd_id_stop(vb);
664 if (unlikely(err))
665 dev_err(dev, "Failed to send a stop id, err = %d\n", err);
666}
667
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800668static void report_free_page_func(struct work_struct *work)
669{
670 struct virtio_balloon *vb = container_of(work, struct virtio_balloon,
671 report_free_page_work);
672 u32 cmd_id_received;
673
674 cmd_id_received = virtio_balloon_cmd_id_received(vb);
675 if (cmd_id_received == VIRTIO_BALLOON_CMD_ID_DONE) {
676 /* Pass ULONG_MAX to give back all the free pages */
677 return_free_pages_to_mm(vb, ULONG_MAX);
678 } else if (cmd_id_received != VIRTIO_BALLOON_CMD_ID_STOP &&
679 cmd_id_received !=
680 virtio32_to_cpu(vb->vdev, vb->cmd_id_active)) {
681 virtio_balloon_report_free_page(vb);
682 }
683}
684
Rafael Aquinie2250422012-12-11 16:02:45 -0800685#ifdef CONFIG_BALLOON_COMPACTION
686/*
687 * virtballoon_migratepage - perform the balloon page migration on behalf of
688 * a compation thread. (called under page lock)
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700689 * @vb_dev_info: the balloon device
Rafael Aquinie2250422012-12-11 16:02:45 -0800690 * @newpage: page that will replace the isolated page after migration finishes.
691 * @page : the isolated (old) page that is about to be migrated to newpage.
692 * @mode : compaction mode -- not used for balloon page migration.
693 *
694 * After a ballooned page gets isolated by compaction procedures, this is the
695 * function that performs the page migration on behalf of a compaction thread
696 * The page migration for virtio balloon is done in a simple swap fashion which
697 * follows these two macro steps:
698 * 1) insert newpage into vb->pages list and update the host about it;
699 * 2) update the host about the old page removed from vb->pages list;
700 *
701 * This function preforms the balloon page migration task.
702 * Called through balloon_mapping->a_ops->migratepage
703 */
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700704static int virtballoon_migratepage(struct balloon_dev_info *vb_dev_info,
Rafael Aquinie2250422012-12-11 16:02:45 -0800705 struct page *newpage, struct page *page, enum migrate_mode mode)
706{
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700707 struct virtio_balloon *vb = container_of(vb_dev_info,
708 struct virtio_balloon, vb_dev_info);
Rafael Aquinie2250422012-12-11 16:02:45 -0800709 unsigned long flags;
710
Rafael Aquinie2250422012-12-11 16:02:45 -0800711 /*
712 * In order to avoid lock contention while migrating pages concurrently
713 * to leak_balloon() or fill_balloon() we just give up the balloon_lock
714 * this turn, as it is easier to retry the page migration later.
715 * This also prevents fill_balloon() getting stuck into a mutex
716 * recursion in the case it ends up triggering memory compaction
717 * while it is attempting to inflate the ballon.
718 */
719 if (!mutex_trylock(&vb->balloon_lock))
720 return -EAGAIN;
721
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700722 get_page(newpage); /* balloon reference */
723
Rafael Aquinie2250422012-12-11 16:02:45 -0800724 /* balloon's page migration 1st step -- inflate "newpage" */
725 spin_lock_irqsave(&vb_dev_info->pages_lock, flags);
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700726 balloon_page_insert(vb_dev_info, newpage);
Rafael Aquinie2250422012-12-11 16:02:45 -0800727 vb_dev_info->isolated_pages--;
Konstantin Khlebnikov09316c02014-10-09 15:29:32 -0700728 __count_vm_event(BALLOON_MIGRATE);
Rafael Aquinie2250422012-12-11 16:02:45 -0800729 spin_unlock_irqrestore(&vb_dev_info->pages_lock, flags);
730 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300731 set_page_pfns(vb, vb->pfns, newpage);
Rafael Aquinie2250422012-12-11 16:02:45 -0800732 tell_host(vb, vb->inflate_vq);
733
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700734 /* balloon's page migration 2nd step -- deflate "page" */
Jiang Biao89da6192018-07-18 10:29:28 +0800735 spin_lock_irqsave(&vb_dev_info->pages_lock, flags);
Rafael Aquinie2250422012-12-11 16:02:45 -0800736 balloon_page_delete(page);
Jiang Biao89da6192018-07-18 10:29:28 +0800737 spin_unlock_irqrestore(&vb_dev_info->pages_lock, flags);
Rafael Aquinie2250422012-12-11 16:02:45 -0800738 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300739 set_page_pfns(vb, vb->pfns, page);
Rafael Aquinie2250422012-12-11 16:02:45 -0800740 tell_host(vb, vb->deflate_vq);
741
742 mutex_unlock(&vb->balloon_lock);
743
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700744 put_page(page); /* balloon reference */
745
Minchan Kimdd4123f2016-07-26 15:26:50 -0700746 return MIGRATEPAGE_SUCCESS;
Rafael Aquinie2250422012-12-11 16:02:45 -0800747}
Minchan Kimb1123ea62016-07-26 15:23:09 -0700748
David Howells99558d22019-03-25 16:38:25 +0000749static int balloon_init_fs_context(struct fs_context *fc)
Minchan Kimb1123ea62016-07-26 15:23:09 -0700750{
David Howells99558d22019-03-25 16:38:25 +0000751 return init_pseudo(fc, BALLOON_KVM_MAGIC) ? 0 : -ENOMEM;
Minchan Kimb1123ea62016-07-26 15:23:09 -0700752}
753
754static struct file_system_type balloon_fs = {
755 .name = "balloon-kvm",
David Howells99558d22019-03-25 16:38:25 +0000756 .init_fs_context = balloon_init_fs_context,
Minchan Kimb1123ea62016-07-26 15:23:09 -0700757 .kill_sb = kill_anon_super,
758};
759
Rafael Aquinie2250422012-12-11 16:02:45 -0800760#endif /* CONFIG_BALLOON_COMPACTION */
761
Wei Wang86a55972018-08-27 09:32:17 +0800762static unsigned long shrink_free_pages(struct virtio_balloon *vb,
763 unsigned long pages_to_free)
764{
765 unsigned long blocks_to_free, blocks_freed;
766
767 pages_to_free = round_up(pages_to_free,
768 1 << VIRTIO_BALLOON_FREE_PAGE_ORDER);
769 blocks_to_free = pages_to_free >> VIRTIO_BALLOON_FREE_PAGE_ORDER;
770 blocks_freed = return_free_pages_to_mm(vb, blocks_to_free);
771
772 return blocks_freed << VIRTIO_BALLOON_FREE_PAGE_ORDER;
773}
774
775static unsigned long shrink_balloon_pages(struct virtio_balloon *vb,
776 unsigned long pages_to_free)
777{
778 unsigned long pages_freed = 0;
779
780 /*
781 * One invocation of leak_balloon can deflate at most
782 * VIRTIO_BALLOON_ARRAY_PFNS_MAX balloon pages, so we call it
783 * multiple times to deflate pages till reaching pages_to_free.
784 */
785 while (vb->num_pages && pages_to_free) {
786 pages_freed += leak_balloon(vb, pages_to_free) /
787 VIRTIO_BALLOON_PAGES_PER_PAGE;
788 pages_to_free -= pages_freed;
789 }
790 update_balloon_size(vb);
791
792 return pages_freed;
793}
794
Wei Wang71994622018-08-16 15:50:58 +0800795static unsigned long virtio_balloon_shrinker_scan(struct shrinker *shrinker,
796 struct shrink_control *sc)
797{
798 unsigned long pages_to_free, pages_freed = 0;
799 struct virtio_balloon *vb = container_of(shrinker,
800 struct virtio_balloon, shrinker);
801
802 pages_to_free = sc->nr_to_scan * VIRTIO_BALLOON_PAGES_PER_PAGE;
803
Wei Wang86a55972018-08-27 09:32:17 +0800804 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
805 pages_freed = shrink_free_pages(vb, pages_to_free);
Wei Wang71994622018-08-16 15:50:58 +0800806
Wei Wang86a55972018-08-27 09:32:17 +0800807 if (pages_freed >= pages_to_free)
808 return pages_freed;
809
810 pages_freed += shrink_balloon_pages(vb, pages_to_free - pages_freed);
811
812 return pages_freed;
Wei Wang71994622018-08-16 15:50:58 +0800813}
814
815static unsigned long virtio_balloon_shrinker_count(struct shrinker *shrinker,
816 struct shrink_control *sc)
817{
818 struct virtio_balloon *vb = container_of(shrinker,
819 struct virtio_balloon, shrinker);
Wei Wang86a55972018-08-27 09:32:17 +0800820 unsigned long count;
Wei Wang71994622018-08-16 15:50:58 +0800821
Wei Wang86a55972018-08-27 09:32:17 +0800822 count = vb->num_pages / VIRTIO_BALLOON_PAGES_PER_PAGE;
823 count += vb->num_free_page_blocks >> VIRTIO_BALLOON_FREE_PAGE_ORDER;
824
825 return count;
Wei Wang71994622018-08-16 15:50:58 +0800826}
827
828static void virtio_balloon_unregister_shrinker(struct virtio_balloon *vb)
829{
830 unregister_shrinker(&vb->shrinker);
831}
832
833static int virtio_balloon_register_shrinker(struct virtio_balloon *vb)
834{
835 vb->shrinker.scan_objects = virtio_balloon_shrinker_scan;
836 vb->shrinker.count_objects = virtio_balloon_shrinker_count;
837 vb->shrinker.seeks = DEFAULT_SEEKS;
838
839 return register_shrinker(&vb->shrinker);
840}
841
Amit Shahbe91c332011-12-22 16:58:34 +0530842static int virtballoon_probe(struct virtio_device *vdev)
843{
844 struct virtio_balloon *vb;
Wei Wang2e991622018-08-27 09:32:19 +0800845 __u32 poison_val;
Amit Shahbe91c332011-12-22 16:58:34 +0530846 int err;
847
Michael S. Tsirkin2d9becc2015-01-12 16:23:37 +0200848 if (!vdev->config->get) {
849 dev_err(&vdev->dev, "%s failure: config access disabled\n",
850 __func__);
851 return -EINVAL;
852 }
853
Wei Wangc51d8fc2018-08-16 15:50:57 +0800854 vdev->priv = vb = kzalloc(sizeof(*vb), GFP_KERNEL);
Amit Shahbe91c332011-12-22 16:58:34 +0530855 if (!vb) {
856 err = -ENOMEM;
857 goto out;
858 }
859
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100860 INIT_WORK(&vb->update_balloon_stats_work, update_balloon_stats_func);
861 INIT_WORK(&vb->update_balloon_size_work, update_balloon_size_func);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100862 spin_lock_init(&vb->stop_update_lock);
Rafael Aquinie2250422012-12-11 16:02:45 -0800863 mutex_init(&vb->balloon_lock);
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300864 init_waitqueue_head(&vb->acked);
Amit Shahbe91c332011-12-22 16:58:34 +0530865 vb->vdev = vdev;
Amit Shahbe91c332011-12-22 16:58:34 +0530866
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700867 balloon_devinfo_init(&vb->vb_dev_info);
Rafael Aquinie2250422012-12-11 16:02:45 -0800868
Amit Shahbe91c332011-12-22 16:58:34 +0530869 err = init_vqs(vb);
870 if (err)
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700871 goto out_free_vb;
Rusty Russell6b35e402008-02-04 23:50:12 -0500872
Minchan Kimb1123ea62016-07-26 15:23:09 -0700873#ifdef CONFIG_BALLOON_COMPACTION
874 balloon_mnt = kern_mount(&balloon_fs);
875 if (IS_ERR(balloon_mnt)) {
876 err = PTR_ERR(balloon_mnt);
Minchan Kimb1123ea62016-07-26 15:23:09 -0700877 goto out_del_vqs;
878 }
879
880 vb->vb_dev_info.migratepage = virtballoon_migratepage;
881 vb->vb_dev_info.inode = alloc_anon_inode(balloon_mnt->mnt_sb);
882 if (IS_ERR(vb->vb_dev_info.inode)) {
883 err = PTR_ERR(vb->vb_dev_info.inode);
884 kern_unmount(balloon_mnt);
Minchan Kimb1123ea62016-07-26 15:23:09 -0700885 goto out_del_vqs;
886 }
887 vb->vb_dev_info.inode->i_mapping->a_ops = &balloon_aops;
888#endif
Wei Wang86a55972018-08-27 09:32:17 +0800889 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) {
890 /*
891 * There is always one entry reserved for cmd id, so the ring
892 * size needs to be at least two to report free page hints.
893 */
894 if (virtqueue_get_vring_size(vb->free_page_vq) < 2) {
895 err = -ENOSPC;
896 goto out_del_vqs;
897 }
898 vb->balloon_wq = alloc_workqueue("balloon-wq",
899 WQ_FREEZABLE | WQ_CPU_INTENSIVE, 0);
900 if (!vb->balloon_wq) {
901 err = -ENOMEM;
902 goto out_del_vqs;
903 }
904 INIT_WORK(&vb->report_free_page_work, report_free_page_func);
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800905 vb->cmd_id_received_cache = VIRTIO_BALLOON_CMD_ID_STOP;
Wei Wang86a55972018-08-27 09:32:17 +0800906 vb->cmd_id_active = cpu_to_virtio32(vb->vdev,
907 VIRTIO_BALLOON_CMD_ID_STOP);
908 vb->cmd_id_stop = cpu_to_virtio32(vb->vdev,
909 VIRTIO_BALLOON_CMD_ID_STOP);
Wei Wang86a55972018-08-27 09:32:17 +0800910 spin_lock_init(&vb->free_page_list_lock);
911 INIT_LIST_HEAD(&vb->free_page_list);
Wei Wang2e991622018-08-27 09:32:19 +0800912 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_PAGE_POISON)) {
913 memset(&poison_val, PAGE_POISON, sizeof(poison_val));
914 virtio_cwrite(vb->vdev, struct virtio_balloon_config,
915 poison_val, &poison_val);
916 }
Wei Wang86a55972018-08-27 09:32:17 +0800917 }
Wei Wang71994622018-08-16 15:50:58 +0800918 /*
919 * We continue to use VIRTIO_BALLOON_F_DEFLATE_ON_OOM to decide if a
920 * shrinker needs to be registered to relieve memory pressure.
921 */
922 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) {
923 err = virtio_balloon_register_shrinker(vb);
924 if (err)
Wei Wang86a55972018-08-27 09:32:17 +0800925 goto out_del_balloon_wq;
Wei Wang71994622018-08-16 15:50:58 +0800926 }
Michael S. Tsirkin88660f7fb2015-03-05 13:24:41 +1030927 virtio_device_ready(vdev);
928
Konstantin Neumoin8424af52016-09-29 13:17:12 +0300929 if (towards_target(vb))
930 virtballoon_changed(vdev);
Rusty Russell6b35e402008-02-04 23:50:12 -0500931 return 0;
932
Wei Wang86a55972018-08-27 09:32:17 +0800933out_del_balloon_wq:
934 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
935 destroy_workqueue(vb->balloon_wq);
Minchan Kimb1123ea62016-07-26 15:23:09 -0700936out_del_vqs:
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600937 vdev->config->del_vqs(vdev);
Rusty Russell6b35e402008-02-04 23:50:12 -0500938out_free_vb:
939 kfree(vb);
940out:
941 return err;
942}
943
Amit Shahc877bab2012-04-27 00:45:57 +0530944static void remove_common(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -0500945{
Rusty Russell6b35e402008-02-04 23:50:12 -0500946 /* There might be pages left in the balloon: free them. */
947 while (vb->num_pages)
948 leak_balloon(vb, vb->num_pages);
Amit Shahb8ae0eb2012-04-27 00:45:56 +0530949 update_balloon_size(vb);
Rusty Russell6b35e402008-02-04 23:50:12 -0500950
951 /* Now we reset the device so we can clean up the queues. */
Amit Shahc877bab2012-04-27 00:45:57 +0530952 vb->vdev->config->reset(vb->vdev);
Rusty Russell6b35e402008-02-04 23:50:12 -0500953
Amit Shahc877bab2012-04-27 00:45:57 +0530954 vb->vdev->config->del_vqs(vb->vdev);
955}
956
Greg Kroah-Hartman8590dbc2012-12-21 13:05:30 -0800957static void virtballoon_remove(struct virtio_device *vdev)
Amit Shahc877bab2012-04-27 00:45:57 +0530958{
959 struct virtio_balloon *vb = vdev->priv;
960
Wei Wang71994622018-08-16 15:50:58 +0800961 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM))
962 virtio_balloon_unregister_shrinker(vb);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100963 spin_lock_irq(&vb->stop_update_lock);
964 vb->stop_update = true;
965 spin_unlock_irq(&vb->stop_update_lock);
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100966 cancel_work_sync(&vb->update_balloon_size_work);
967 cancel_work_sync(&vb->update_balloon_stats_work);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100968
Wei Wang86a55972018-08-27 09:32:17 +0800969 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) {
970 cancel_work_sync(&vb->report_free_page_work);
971 destroy_workqueue(vb->balloon_wq);
972 }
973
Amit Shahc877bab2012-04-27 00:45:57 +0530974 remove_common(vb);
Yisheng Xie9c57b582017-02-24 15:00:40 -0800975#ifdef CONFIG_BALLOON_COMPACTION
Minchan Kimb1123ea62016-07-26 15:23:09 -0700976 if (vb->vb_dev_info.inode)
977 iput(vb->vb_dev_info.inode);
Yisheng Xie9c57b582017-02-24 15:00:40 -0800978
979 kern_unmount(balloon_mnt);
980#endif
Rusty Russell6b35e402008-02-04 23:50:12 -0500981 kfree(vb);
982}
983
Aaron Lu89107002013-09-17 09:25:23 +0930984#ifdef CONFIG_PM_SLEEP
Amit Shahe5629662011-12-22 16:58:35 +0530985static int virtballoon_freeze(struct virtio_device *vdev)
986{
Amit Shah4eb05d52012-02-29 17:42:51 +0530987 struct virtio_balloon *vb = vdev->priv;
988
Amit Shahe5629662011-12-22 16:58:35 +0530989 /*
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100990 * The workqueue is already frozen by the PM core before this
Amit Shahe5629662011-12-22 16:58:35 +0530991 * function is called.
992 */
Amit Shahc877bab2012-04-27 00:45:57 +0530993 remove_common(vb);
Amit Shahe5629662011-12-22 16:58:35 +0530994 return 0;
995}
996
Amit Shahc45b4162012-04-27 00:45:55 +0530997static int virtballoon_restore(struct virtio_device *vdev)
Amit Shah4eb05d52012-02-29 17:42:51 +0530998{
999 struct virtio_balloon *vb = vdev->priv;
1000 int ret;
1001
1002 ret = init_vqs(vdev->priv);
1003 if (ret)
1004 return ret;
1005
Michael S. Tsirkin486d2e62014-10-15 10:22:33 +10301006 virtio_device_ready(vdev);
1007
Petr Mladekfad7b7b2016-01-25 17:38:05 +01001008 if (towards_target(vb))
1009 virtballoon_changed(vdev);
Amit Shah4eb05d52012-02-29 17:42:51 +05301010 update_balloon_size(vb);
1011 return 0;
1012}
Amit Shahe5629662011-12-22 16:58:35 +05301013#endif
1014
Michael S. Tsirkine41b1352017-06-13 20:56:44 +03001015static int virtballoon_validate(struct virtio_device *vdev)
1016{
Wei Wang2e991622018-08-27 09:32:19 +08001017 if (!page_poisoning_enabled())
1018 __virtio_clear_bit(vdev, VIRTIO_BALLOON_F_PAGE_POISON);
1019
Michael S. Tsirkine41b1352017-06-13 20:56:44 +03001020 __virtio_clear_bit(vdev, VIRTIO_F_IOMMU_PLATFORM);
1021 return 0;
1022}
1023
Adam Litke9564e132009-11-30 10:14:15 -06001024static unsigned int features[] = {
1025 VIRTIO_BALLOON_F_MUST_TELL_HOST,
1026 VIRTIO_BALLOON_F_STATS_VQ,
Raushaniya Maksudova5a10b7d2014-11-10 09:36:29 +10301027 VIRTIO_BALLOON_F_DEFLATE_ON_OOM,
Wei Wang86a55972018-08-27 09:32:17 +08001028 VIRTIO_BALLOON_F_FREE_PAGE_HINT,
Wei Wang2e991622018-08-27 09:32:19 +08001029 VIRTIO_BALLOON_F_PAGE_POISON,
Adam Litke9564e132009-11-30 10:14:15 -06001030};
Rusty Russellc45a6812008-05-02 21:50:50 -05001031
Jeff Mahoneyd817cd52010-01-15 17:01:26 -08001032static struct virtio_driver virtio_balloon_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05001033 .feature_table = features,
1034 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell6b35e402008-02-04 23:50:12 -05001035 .driver.name = KBUILD_MODNAME,
1036 .driver.owner = THIS_MODULE,
1037 .id_table = id_table,
Michael S. Tsirkine41b1352017-06-13 20:56:44 +03001038 .validate = virtballoon_validate,
Rusty Russell6b35e402008-02-04 23:50:12 -05001039 .probe = virtballoon_probe,
Greg Kroah-Hartman8590dbc2012-12-21 13:05:30 -08001040 .remove = virtballoon_remove,
Rusty Russell6b35e402008-02-04 23:50:12 -05001041 .config_changed = virtballoon_changed,
Aaron Lu89107002013-09-17 09:25:23 +09301042#ifdef CONFIG_PM_SLEEP
Amit Shahe5629662011-12-22 16:58:35 +05301043 .freeze = virtballoon_freeze,
1044 .restore = virtballoon_restore,
Amit Shahe5629662011-12-22 16:58:35 +05301045#endif
Rusty Russell6b35e402008-02-04 23:50:12 -05001046};
1047
Rusty Russellb2a17022013-02-13 16:59:28 +10301048module_virtio_driver(virtio_balloon_driver);
Rusty Russell6b35e402008-02-04 23:50:12 -05001049MODULE_DEVICE_TABLE(virtio, id_table);
1050MODULE_DESCRIPTION("Virtio balloon driver");
1051MODULE_LICENSE("GPL");