xref: /openbmc/qemu/hw/virtio/virtio-balloon.c (revision f3bff6c4)
1 /*
2  * Virtio Balloon Device
3  *
4  * Copyright IBM, Corp. 2008
5  * Copyright (C) 2011 Red Hat, Inc.
6  * Copyright (C) 2011 Amit Shah <amit.shah@redhat.com>
7  *
8  * Authors:
9  *  Anthony Liguori   <aliguori@us.ibm.com>
10  *
11  * This work is licensed under the terms of the GNU GPL, version 2.  See
12  * the COPYING file in the top-level directory.
13  *
14  */
15 
16 #include "qemu/osdep.h"
17 #include "qemu/iov.h"
18 #include "qemu/module.h"
19 #include "qemu/timer.h"
20 #include "qemu/madvise.h"
21 #include "hw/virtio/virtio.h"
22 #include "hw/mem/pc-dimm.h"
23 #include "hw/qdev-properties.h"
24 #include "hw/boards.h"
25 #include "sysemu/balloon.h"
26 #include "hw/virtio/virtio-balloon.h"
27 #include "exec/address-spaces.h"
28 #include "qapi/error.h"
29 #include "qapi/qapi-events-machine.h"
30 #include "qapi/visitor.h"
31 #include "trace.h"
32 #include "qemu/error-report.h"
33 #include "migration/misc.h"
34 #include "migration/migration.h"
35 
36 #include "hw/virtio/virtio-bus.h"
37 #include "hw/virtio/virtio-access.h"
38 
39 #define BALLOON_PAGE_SIZE  (1 << VIRTIO_BALLOON_PFN_SHIFT)
40 
41 typedef struct PartiallyBalloonedPage {
42     ram_addr_t base_gpa;
43     unsigned long *bitmap;
44 } PartiallyBalloonedPage;
45 
46 static void virtio_balloon_pbp_free(PartiallyBalloonedPage *pbp)
47 {
48     if (!pbp->bitmap) {
49         return;
50     }
51     g_free(pbp->bitmap);
52     pbp->bitmap = NULL;
53 }
54 
55 static void virtio_balloon_pbp_alloc(PartiallyBalloonedPage *pbp,
56                                      ram_addr_t base_gpa,
57                                      long subpages)
58 {
59     pbp->base_gpa = base_gpa;
60     pbp->bitmap = bitmap_new(subpages);
61 }
62 
63 static bool virtio_balloon_pbp_matches(PartiallyBalloonedPage *pbp,
64                                        ram_addr_t base_gpa)
65 {
66     return pbp->base_gpa == base_gpa;
67 }
68 
69 static bool virtio_balloon_inhibited(void)
70 {
71     /*
72      * Postcopy cannot deal with concurrent discards,
73      * so it's special, as well as background snapshots.
74      */
75     return ram_block_discard_is_disabled() || migration_in_incoming_postcopy() ||
76             migration_in_bg_snapshot();
77 }
78 
79 static void balloon_inflate_page(VirtIOBalloon *balloon,
80                                  MemoryRegion *mr, hwaddr mr_offset,
81                                  PartiallyBalloonedPage *pbp)
82 {
83     void *addr = memory_region_get_ram_ptr(mr) + mr_offset;
84     ram_addr_t rb_offset, rb_aligned_offset, base_gpa;
85     RAMBlock *rb;
86     size_t rb_page_size;
87     int subpages;
88 
89     /* XXX is there a better way to get to the RAMBlock than via a
90      * host address? */
91     rb = qemu_ram_block_from_host(addr, false, &rb_offset);
92     rb_page_size = qemu_ram_pagesize(rb);
93 
94     if (rb_page_size == BALLOON_PAGE_SIZE) {
95         /* Easy case */
96 
97         ram_block_discard_range(rb, rb_offset, rb_page_size);
98         /* We ignore errors from ram_block_discard_range(), because it
99          * has already reported them, and failing to discard a balloon
100          * page is not fatal */
101         return;
102     }
103 
104     /* Hard case
105      *
106      * We've put a piece of a larger host page into the balloon - we
107      * need to keep track until we have a whole host page to
108      * discard
109      */
110     warn_report_once(
111 "Balloon used with backing page size > 4kiB, this may not be reliable");
112 
113     rb_aligned_offset = QEMU_ALIGN_DOWN(rb_offset, rb_page_size);
114     subpages = rb_page_size / BALLOON_PAGE_SIZE;
115     base_gpa = memory_region_get_ram_addr(mr) + mr_offset -
116                (rb_offset - rb_aligned_offset);
117 
118     if (pbp->bitmap && !virtio_balloon_pbp_matches(pbp, base_gpa)) {
119         /* We've partially ballooned part of a host page, but now
120          * we're trying to balloon part of a different one.  Too hard,
121          * give up on the old partial page */
122         virtio_balloon_pbp_free(pbp);
123     }
124 
125     if (!pbp->bitmap) {
126         virtio_balloon_pbp_alloc(pbp, base_gpa, subpages);
127     }
128 
129     set_bit((rb_offset - rb_aligned_offset) / BALLOON_PAGE_SIZE,
130             pbp->bitmap);
131 
132     if (bitmap_full(pbp->bitmap, subpages)) {
133         /* We've accumulated a full host page, we can actually discard
134          * it now */
135 
136         ram_block_discard_range(rb, rb_aligned_offset, rb_page_size);
137         /* We ignore errors from ram_block_discard_range(), because it
138          * has already reported them, and failing to discard a balloon
139          * page is not fatal */
140         virtio_balloon_pbp_free(pbp);
141     }
142 }
143 
144 static void balloon_deflate_page(VirtIOBalloon *balloon,
145                                  MemoryRegion *mr, hwaddr mr_offset)
146 {
147     void *addr = memory_region_get_ram_ptr(mr) + mr_offset;
148     ram_addr_t rb_offset;
149     RAMBlock *rb;
150     size_t rb_page_size;
151     void *host_addr;
152     int ret;
153 
154     /* XXX is there a better way to get to the RAMBlock than via a
155      * host address? */
156     rb = qemu_ram_block_from_host(addr, false, &rb_offset);
157     rb_page_size = qemu_ram_pagesize(rb);
158 
159     host_addr = (void *)((uintptr_t)addr & ~(rb_page_size - 1));
160 
161     /* When a page is deflated, we hint the whole host page it lives
162      * on, since we can't do anything smaller */
163     ret = qemu_madvise(host_addr, rb_page_size, QEMU_MADV_WILLNEED);
164     if (ret != 0) {
165         warn_report("Couldn't MADV_WILLNEED on balloon deflate: %s",
166                     strerror(errno));
167         /* Otherwise ignore, failing to page hint shouldn't be fatal */
168     }
169 }
170 
171 static const char *balloon_stat_names[] = {
172    [VIRTIO_BALLOON_S_SWAP_IN] = "stat-swap-in",
173    [VIRTIO_BALLOON_S_SWAP_OUT] = "stat-swap-out",
174    [VIRTIO_BALLOON_S_MAJFLT] = "stat-major-faults",
175    [VIRTIO_BALLOON_S_MINFLT] = "stat-minor-faults",
176    [VIRTIO_BALLOON_S_MEMFREE] = "stat-free-memory",
177    [VIRTIO_BALLOON_S_MEMTOT] = "stat-total-memory",
178    [VIRTIO_BALLOON_S_AVAIL] = "stat-available-memory",
179    [VIRTIO_BALLOON_S_CACHES] = "stat-disk-caches",
180    [VIRTIO_BALLOON_S_HTLB_PGALLOC] = "stat-htlb-pgalloc",
181    [VIRTIO_BALLOON_S_HTLB_PGFAIL] = "stat-htlb-pgfail",
182    [VIRTIO_BALLOON_S_NR] = NULL
183 };
184 
185 /*
186  * reset_stats - Mark all items in the stats array as unset
187  *
188  * This function needs to be called at device initialization and before
189  * updating to a set of newly-generated stats.  This will ensure that no
190  * stale values stick around in case the guest reports a subset of the supported
191  * statistics.
192  */
193 static inline void reset_stats(VirtIOBalloon *dev)
194 {
195     int i;
196     for (i = 0; i < VIRTIO_BALLOON_S_NR; dev->stats[i++] = -1);
197 }
198 
199 static bool balloon_stats_supported(const VirtIOBalloon *s)
200 {
201     VirtIODevice *vdev = VIRTIO_DEVICE(s);
202     return virtio_vdev_has_feature(vdev, VIRTIO_BALLOON_F_STATS_VQ);
203 }
204 
205 static bool balloon_stats_enabled(const VirtIOBalloon *s)
206 {
207     return s->stats_poll_interval > 0;
208 }
209 
210 static void balloon_stats_destroy_timer(VirtIOBalloon *s)
211 {
212     if (balloon_stats_enabled(s)) {
213         timer_free(s->stats_timer);
214         s->stats_timer = NULL;
215         s->stats_poll_interval = 0;
216     }
217 }
218 
219 static void balloon_stats_change_timer(VirtIOBalloon *s, int64_t secs)
220 {
221     timer_mod(s->stats_timer, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + secs * 1000);
222 }
223 
224 static void balloon_stats_poll_cb(void *opaque)
225 {
226     VirtIOBalloon *s = opaque;
227     VirtIODevice *vdev = VIRTIO_DEVICE(s);
228 
229     if (s->stats_vq_elem == NULL || !balloon_stats_supported(s)) {
230         /* re-schedule */
231         balloon_stats_change_timer(s, s->stats_poll_interval);
232         return;
233     }
234 
235     virtqueue_push(s->svq, s->stats_vq_elem, 0);
236     virtio_notify(vdev, s->svq);
237     g_free(s->stats_vq_elem);
238     s->stats_vq_elem = NULL;
239 }
240 
241 static void balloon_stats_get_all(Object *obj, Visitor *v, const char *name,
242                                   void *opaque, Error **errp)
243 {
244     VirtIOBalloon *s = VIRTIO_BALLOON(obj);
245     bool ok = false;
246     int i;
247 
248     if (!visit_start_struct(v, name, NULL, 0, errp)) {
249         return;
250     }
251     if (!visit_type_int(v, "last-update", &s->stats_last_update, errp)) {
252         goto out_end;
253     }
254 
255     if (!visit_start_struct(v, "stats", NULL, 0, errp)) {
256         goto out_end;
257     }
258     for (i = 0; i < VIRTIO_BALLOON_S_NR; i++) {
259         if (!visit_type_uint64(v, balloon_stat_names[i], &s->stats[i], errp)) {
260             goto out_nested;
261         }
262     }
263     ok = visit_check_struct(v, errp);
264 out_nested:
265     visit_end_struct(v, NULL);
266 
267     if (ok) {
268         visit_check_struct(v, errp);
269     }
270 out_end:
271     visit_end_struct(v, NULL);
272 }
273 
274 static void balloon_stats_get_poll_interval(Object *obj, Visitor *v,
275                                             const char *name, void *opaque,
276                                             Error **errp)
277 {
278     VirtIOBalloon *s = VIRTIO_BALLOON(obj);
279     visit_type_int(v, name, &s->stats_poll_interval, errp);
280 }
281 
282 static void balloon_stats_set_poll_interval(Object *obj, Visitor *v,
283                                             const char *name, void *opaque,
284                                             Error **errp)
285 {
286     VirtIOBalloon *s = VIRTIO_BALLOON(obj);
287     int64_t value;
288 
289     if (!visit_type_int(v, name, &value, errp)) {
290         return;
291     }
292 
293     if (value < 0) {
294         error_setg(errp, "timer value must be greater than zero");
295         return;
296     }
297 
298     if (value > UINT32_MAX) {
299         error_setg(errp, "timer value is too big");
300         return;
301     }
302 
303     if (value == s->stats_poll_interval) {
304         return;
305     }
306 
307     if (value == 0) {
308         /* timer=0 disables the timer */
309         balloon_stats_destroy_timer(s);
310         return;
311     }
312 
313     if (balloon_stats_enabled(s)) {
314         /* timer interval change */
315         s->stats_poll_interval = value;
316         balloon_stats_change_timer(s, value);
317         return;
318     }
319 
320     /* create a new timer */
321     g_assert(s->stats_timer == NULL);
322     s->stats_timer = timer_new_ms(QEMU_CLOCK_VIRTUAL, balloon_stats_poll_cb, s);
323     s->stats_poll_interval = value;
324     balloon_stats_change_timer(s, 0);
325 }
326 
327 static void virtio_balloon_handle_report(VirtIODevice *vdev, VirtQueue *vq)
328 {
329     VirtIOBalloon *dev = VIRTIO_BALLOON(vdev);
330     VirtQueueElement *elem;
331 
332     while ((elem = virtqueue_pop(vq, sizeof(VirtQueueElement)))) {
333         unsigned int i;
334 
335         /*
336          * When we discard the page it has the effect of removing the page
337          * from the hypervisor itself and causing it to be zeroed when it
338          * is returned to us. So we must not discard the page if it is
339          * accessible by another device or process, or if the guest is
340          * expecting it to retain a non-zero value.
341          */
342         if (virtio_balloon_inhibited() || dev->poison_val) {
343             goto skip_element;
344         }
345 
346         for (i = 0; i < elem->in_num; i++) {
347             void *addr = elem->in_sg[i].iov_base;
348             size_t size = elem->in_sg[i].iov_len;
349             ram_addr_t ram_offset;
350             RAMBlock *rb;
351 
352             /*
353              * There is no need to check the memory section to see if
354              * it is ram/readonly/romd like there is for handle_output
355              * below. If the region is not meant to be written to then
356              * address_space_map will have allocated a bounce buffer
357              * and it will be freed in address_space_unmap and trigger
358              * and unassigned_mem_write before failing to copy over the
359              * buffer. If more than one bad descriptor is provided it
360              * will return NULL after the first bounce buffer and fail
361              * to map any resources.
362              */
363             rb = qemu_ram_block_from_host(addr, false, &ram_offset);
364             if (!rb) {
365                 trace_virtio_balloon_bad_addr(elem->in_addr[i]);
366                 continue;
367             }
368 
369             /*
370              * For now we will simply ignore unaligned memory regions, or
371              * regions that overrun the end of the RAMBlock.
372              */
373             if (!QEMU_IS_ALIGNED(ram_offset | size, qemu_ram_pagesize(rb)) ||
374                 (ram_offset + size) > qemu_ram_get_used_length(rb)) {
375                 continue;
376             }
377 
378             ram_block_discard_range(rb, ram_offset, size);
379         }
380 
381 skip_element:
382         virtqueue_push(vq, elem, 0);
383         virtio_notify(vdev, vq);
384         g_free(elem);
385     }
386 }
387 
388 static void virtio_balloon_handle_output(VirtIODevice *vdev, VirtQueue *vq)
389 {
390     VirtIOBalloon *s = VIRTIO_BALLOON(vdev);
391     VirtQueueElement *elem;
392     MemoryRegionSection section;
393 
394     for (;;) {
395         PartiallyBalloonedPage pbp = {};
396         size_t offset = 0;
397         uint32_t pfn;
398 
399         elem = virtqueue_pop(vq, sizeof(VirtQueueElement));
400         if (!elem) {
401             break;
402         }
403 
404         while (iov_to_buf(elem->out_sg, elem->out_num, offset, &pfn, 4) == 4) {
405             unsigned int p = virtio_ldl_p(vdev, &pfn);
406             hwaddr pa;
407 
408             pa = (hwaddr) p << VIRTIO_BALLOON_PFN_SHIFT;
409             offset += 4;
410 
411             section = memory_region_find(get_system_memory(), pa,
412                                          BALLOON_PAGE_SIZE);
413             if (!section.mr) {
414                 trace_virtio_balloon_bad_addr(pa);
415                 continue;
416             }
417             if (!memory_region_is_ram(section.mr) ||
418                 memory_region_is_rom(section.mr) ||
419                 memory_region_is_romd(section.mr)) {
420                 trace_virtio_balloon_bad_addr(pa);
421                 memory_region_unref(section.mr);
422                 continue;
423             }
424 
425             trace_virtio_balloon_handle_output(memory_region_name(section.mr),
426                                                pa);
427             if (!virtio_balloon_inhibited()) {
428                 if (vq == s->ivq) {
429                     balloon_inflate_page(s, section.mr,
430                                          section.offset_within_region, &pbp);
431                 } else if (vq == s->dvq) {
432                     balloon_deflate_page(s, section.mr, section.offset_within_region);
433                 } else {
434                     g_assert_not_reached();
435                 }
436             }
437             memory_region_unref(section.mr);
438         }
439 
440         virtqueue_push(vq, elem, 0);
441         virtio_notify(vdev, vq);
442         g_free(elem);
443         virtio_balloon_pbp_free(&pbp);
444     }
445 }
446 
447 static void virtio_balloon_receive_stats(VirtIODevice *vdev, VirtQueue *vq)
448 {
449     VirtIOBalloon *s = VIRTIO_BALLOON(vdev);
450     VirtQueueElement *elem;
451     VirtIOBalloonStat stat;
452     size_t offset = 0;
453 
454     elem = virtqueue_pop(vq, sizeof(VirtQueueElement));
455     if (!elem) {
456         goto out;
457     }
458 
459     if (s->stats_vq_elem != NULL) {
460         /* This should never happen if the driver follows the spec. */
461         virtqueue_push(vq, s->stats_vq_elem, 0);
462         virtio_notify(vdev, vq);
463         g_free(s->stats_vq_elem);
464     }
465 
466     s->stats_vq_elem = elem;
467 
468     /* Initialize the stats to get rid of any stale values.  This is only
469      * needed to handle the case where a guest supports fewer stats than it
470      * used to (ie. it has booted into an old kernel).
471      */
472     reset_stats(s);
473 
474     while (iov_to_buf(elem->out_sg, elem->out_num, offset, &stat, sizeof(stat))
475            == sizeof(stat)) {
476         uint16_t tag = virtio_tswap16(vdev, stat.tag);
477         uint64_t val = virtio_tswap64(vdev, stat.val);
478 
479         offset += sizeof(stat);
480         if (tag < VIRTIO_BALLOON_S_NR)
481             s->stats[tag] = val;
482     }
483     s->stats_vq_offset = offset;
484     s->stats_last_update = g_get_real_time() / G_USEC_PER_SEC;
485 
486 out:
487     if (balloon_stats_enabled(s)) {
488         balloon_stats_change_timer(s, s->stats_poll_interval);
489     }
490 }
491 
492 static void virtio_balloon_handle_free_page_vq(VirtIODevice *vdev,
493                                                VirtQueue *vq)
494 {
495     VirtIOBalloon *s = VIRTIO_BALLOON(vdev);
496     qemu_bh_schedule(s->free_page_bh);
497 }
498 
499 static bool get_free_page_hints(VirtIOBalloon *dev)
500 {
501     VirtQueueElement *elem;
502     VirtIODevice *vdev = VIRTIO_DEVICE(dev);
503     VirtQueue *vq = dev->free_page_vq;
504     bool ret = true;
505     int i;
506 
507     while (dev->block_iothread) {
508         qemu_cond_wait(&dev->free_page_cond, &dev->free_page_lock);
509     }
510 
511     elem = virtqueue_pop(vq, sizeof(VirtQueueElement));
512     if (!elem) {
513         return false;
514     }
515 
516     if (elem->out_num) {
517         uint32_t id;
518         size_t size = iov_to_buf(elem->out_sg, elem->out_num, 0,
519                                  &id, sizeof(id));
520 
521         virtio_tswap32s(vdev, &id);
522         if (unlikely(size != sizeof(id))) {
523             virtio_error(vdev, "received an incorrect cmd id");
524             ret = false;
525             goto out;
526         }
527         if (dev->free_page_hint_status == FREE_PAGE_HINT_S_REQUESTED &&
528             id == dev->free_page_hint_cmd_id) {
529             dev->free_page_hint_status = FREE_PAGE_HINT_S_START;
530         } else if (dev->free_page_hint_status == FREE_PAGE_HINT_S_START) {
531             /*
532              * Stop the optimization only when it has started. This
533              * avoids a stale stop sign for the previous command.
534              */
535             dev->free_page_hint_status = FREE_PAGE_HINT_S_STOP;
536         }
537     }
538 
539     if (elem->in_num && dev->free_page_hint_status == FREE_PAGE_HINT_S_START) {
540         for (i = 0; i < elem->in_num; i++) {
541             qemu_guest_free_page_hint(elem->in_sg[i].iov_base,
542                                       elem->in_sg[i].iov_len);
543         }
544     }
545 
546 out:
547     virtqueue_push(vq, elem, 0);
548     g_free(elem);
549     return ret;
550 }
551 
552 static void virtio_ballloon_get_free_page_hints(void *opaque)
553 {
554     VirtIOBalloon *dev = opaque;
555     VirtIODevice *vdev = VIRTIO_DEVICE(dev);
556     VirtQueue *vq = dev->free_page_vq;
557     bool continue_to_get_hints;
558 
559     do {
560         qemu_mutex_lock(&dev->free_page_lock);
561         virtio_queue_set_notification(vq, 0);
562         continue_to_get_hints = get_free_page_hints(dev);
563         qemu_mutex_unlock(&dev->free_page_lock);
564         virtio_notify(vdev, vq);
565       /*
566        * Start to poll the vq once the hinting started. Otherwise, continue
567        * only when there are entries on the vq, which need to be given back.
568        */
569     } while (continue_to_get_hints ||
570              dev->free_page_hint_status == FREE_PAGE_HINT_S_START);
571     virtio_queue_set_notification(vq, 1);
572 }
573 
574 static bool virtio_balloon_free_page_support(void *opaque)
575 {
576     VirtIOBalloon *s = opaque;
577     VirtIODevice *vdev = VIRTIO_DEVICE(s);
578 
579     return virtio_vdev_has_feature(vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT);
580 }
581 
582 static void virtio_balloon_free_page_start(VirtIOBalloon *s)
583 {
584     VirtIODevice *vdev = VIRTIO_DEVICE(s);
585 
586     qemu_mutex_lock(&s->free_page_lock);
587 
588     if (s->free_page_hint_cmd_id == UINT_MAX) {
589         s->free_page_hint_cmd_id = VIRTIO_BALLOON_FREE_PAGE_HINT_CMD_ID_MIN;
590     } else {
591         s->free_page_hint_cmd_id++;
592     }
593 
594     s->free_page_hint_status = FREE_PAGE_HINT_S_REQUESTED;
595     qemu_mutex_unlock(&s->free_page_lock);
596 
597     virtio_notify_config(vdev);
598 }
599 
600 static void virtio_balloon_free_page_stop(VirtIOBalloon *s)
601 {
602     VirtIODevice *vdev = VIRTIO_DEVICE(s);
603 
604     if (s->free_page_hint_status != FREE_PAGE_HINT_S_STOP) {
605         /*
606          * The lock also guarantees us that the
607          * virtio_ballloon_get_free_page_hints exits after the
608          * free_page_hint_status is set to S_STOP.
609          */
610         qemu_mutex_lock(&s->free_page_lock);
611         /*
612          * The guest isn't done hinting, so send a notification
613          * to the guest to actively stop the hinting.
614          */
615         s->free_page_hint_status = FREE_PAGE_HINT_S_STOP;
616         qemu_mutex_unlock(&s->free_page_lock);
617         virtio_notify_config(vdev);
618     }
619 }
620 
621 static void virtio_balloon_free_page_done(VirtIOBalloon *s)
622 {
623     VirtIODevice *vdev = VIRTIO_DEVICE(s);
624 
625     if (s->free_page_hint_status != FREE_PAGE_HINT_S_DONE) {
626         /* See virtio_balloon_free_page_stop() */
627         qemu_mutex_lock(&s->free_page_lock);
628         s->free_page_hint_status = FREE_PAGE_HINT_S_DONE;
629         qemu_mutex_unlock(&s->free_page_lock);
630         virtio_notify_config(vdev);
631     }
632 }
633 
634 static int
635 virtio_balloon_free_page_hint_notify(NotifierWithReturn *n, void *data,
636                                      Error **errp)
637 {
638     VirtIOBalloon *dev = container_of(n, VirtIOBalloon, free_page_hint_notify);
639     VirtIODevice *vdev = VIRTIO_DEVICE(dev);
640     PrecopyNotifyData *pnd = data;
641 
642     if (!virtio_balloon_free_page_support(dev)) {
643         /*
644          * This is an optimization provided to migration, so just return 0 to
645          * have the normal migration process not affected when this feature is
646          * not supported.
647          */
648         return 0;
649     }
650 
651     /*
652      * Pages hinted via qemu_guest_free_page_hint() are cleared from the dirty
653      * bitmap and will not get migrated, especially also not when the postcopy
654      * destination starts using them and requests migration from the source; the
655      * faulting thread will stall until postcopy migration finishes and
656      * all threads are woken up. Let's not start free page hinting if postcopy
657      * is possible.
658      */
659     if (migrate_postcopy_ram()) {
660         return 0;
661     }
662 
663     switch (pnd->reason) {
664     case PRECOPY_NOTIFY_BEFORE_BITMAP_SYNC:
665         virtio_balloon_free_page_stop(dev);
666         break;
667     case PRECOPY_NOTIFY_AFTER_BITMAP_SYNC:
668         if (vdev->vm_running) {
669             virtio_balloon_free_page_start(dev);
670             break;
671         }
672         /*
673          * Set S_DONE before migrating the vmstate, so the guest will reuse
674          * all hinted pages once running on the destination. Fall through.
675          */
676     case PRECOPY_NOTIFY_CLEANUP:
677         /*
678          * Especially, if something goes wrong during precopy or if migration
679          * is canceled, we have to properly communicate S_DONE to the VM.
680          */
681         virtio_balloon_free_page_done(dev);
682         break;
683     case PRECOPY_NOTIFY_SETUP:
684     case PRECOPY_NOTIFY_COMPLETE:
685         break;
686     default:
687         virtio_error(vdev, "%s: %d reason unknown", __func__, pnd->reason);
688     }
689 
690     return 0;
691 }
692 
693 static size_t virtio_balloon_config_size(VirtIOBalloon *s)
694 {
695     uint64_t features = s->host_features;
696 
697     if (s->qemu_4_0_config_size) {
698         return sizeof(struct virtio_balloon_config);
699     }
700     if (virtio_has_feature(features, VIRTIO_BALLOON_F_PAGE_POISON)) {
701         return sizeof(struct virtio_balloon_config);
702     }
703     if (virtio_has_feature(features, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) {
704         return offsetof(struct virtio_balloon_config, poison_val);
705     }
706     return offsetof(struct virtio_balloon_config, free_page_hint_cmd_id);
707 }
708 
709 static void virtio_balloon_get_config(VirtIODevice *vdev, uint8_t *config_data)
710 {
711     VirtIOBalloon *dev = VIRTIO_BALLOON(vdev);
712     struct virtio_balloon_config config = {};
713 
714     config.num_pages = cpu_to_le32(dev->num_pages);
715     config.actual = cpu_to_le32(dev->actual);
716     config.poison_val = cpu_to_le32(dev->poison_val);
717 
718     if (dev->free_page_hint_status == FREE_PAGE_HINT_S_REQUESTED) {
719         config.free_page_hint_cmd_id =
720                        cpu_to_le32(dev->free_page_hint_cmd_id);
721     } else if (dev->free_page_hint_status == FREE_PAGE_HINT_S_STOP) {
722         config.free_page_hint_cmd_id =
723                        cpu_to_le32(VIRTIO_BALLOON_CMD_ID_STOP);
724     } else if (dev->free_page_hint_status == FREE_PAGE_HINT_S_DONE) {
725         config.free_page_hint_cmd_id =
726                        cpu_to_le32(VIRTIO_BALLOON_CMD_ID_DONE);
727     }
728 
729     trace_virtio_balloon_get_config(config.num_pages, config.actual);
730     memcpy(config_data, &config, virtio_balloon_config_size(dev));
731 }
732 
733 static ram_addr_t get_current_ram_size(void)
734 {
735     MachineState *machine = MACHINE(qdev_get_machine());
736     if (machine->device_memory) {
737         return machine->ram_size + machine->device_memory->dimm_size;
738     } else {
739         return machine->ram_size;
740     }
741 }
742 
743 static bool virtio_balloon_page_poison_support(void *opaque)
744 {
745     VirtIOBalloon *s = opaque;
746     VirtIODevice *vdev = VIRTIO_DEVICE(s);
747 
748     return virtio_vdev_has_feature(vdev, VIRTIO_BALLOON_F_PAGE_POISON);
749 }
750 
751 static void virtio_balloon_set_config(VirtIODevice *vdev,
752                                       const uint8_t *config_data)
753 {
754     VirtIOBalloon *dev = VIRTIO_BALLOON(vdev);
755     struct virtio_balloon_config config;
756     uint32_t oldactual = dev->actual;
757     ram_addr_t vm_ram_size = get_current_ram_size();
758 
759     memcpy(&config, config_data, virtio_balloon_config_size(dev));
760     dev->actual = le32_to_cpu(config.actual);
761     if (dev->actual != oldactual) {
762         qapi_event_send_balloon_change(vm_ram_size -
763                         ((ram_addr_t) dev->actual << VIRTIO_BALLOON_PFN_SHIFT));
764     }
765     dev->poison_val = 0;
766     if (virtio_balloon_page_poison_support(dev)) {
767         dev->poison_val = le32_to_cpu(config.poison_val);
768     }
769     trace_virtio_balloon_set_config(dev->actual, oldactual);
770 }
771 
772 static uint64_t virtio_balloon_get_features(VirtIODevice *vdev, uint64_t f,
773                                             Error **errp)
774 {
775     VirtIOBalloon *dev = VIRTIO_BALLOON(vdev);
776     f |= dev->host_features;
777     virtio_add_feature(&f, VIRTIO_BALLOON_F_STATS_VQ);
778 
779     return f;
780 }
781 
782 static void virtio_balloon_stat(void *opaque, BalloonInfo *info)
783 {
784     VirtIOBalloon *dev = opaque;
785     info->actual = get_current_ram_size() - ((uint64_t) dev->actual <<
786                                              VIRTIO_BALLOON_PFN_SHIFT);
787 }
788 
789 static void virtio_balloon_to_target(void *opaque, ram_addr_t target)
790 {
791     VirtIOBalloon *dev = VIRTIO_BALLOON(opaque);
792     VirtIODevice *vdev = VIRTIO_DEVICE(dev);
793     ram_addr_t vm_ram_size = get_current_ram_size();
794 
795     if (target > vm_ram_size) {
796         target = vm_ram_size;
797     }
798     if (target) {
799         dev->num_pages = (vm_ram_size - target) >> VIRTIO_BALLOON_PFN_SHIFT;
800         virtio_notify_config(vdev);
801     }
802     trace_virtio_balloon_to_target(target, dev->num_pages);
803 }
804 
805 static int virtio_balloon_post_load_device(void *opaque, int version_id)
806 {
807     VirtIOBalloon *s = VIRTIO_BALLOON(opaque);
808 
809     if (balloon_stats_enabled(s)) {
810         balloon_stats_change_timer(s, s->stats_poll_interval);
811     }
812     return 0;
813 }
814 
815 static const VMStateDescription vmstate_virtio_balloon_free_page_hint = {
816     .name = "virtio-balloon-device/free-page-report",
817     .version_id = 1,
818     .minimum_version_id = 1,
819     .needed = virtio_balloon_free_page_support,
820     .fields = (const VMStateField[]) {
821         VMSTATE_UINT32(free_page_hint_cmd_id, VirtIOBalloon),
822         VMSTATE_UINT32(free_page_hint_status, VirtIOBalloon),
823         VMSTATE_END_OF_LIST()
824     }
825 };
826 
827 static const VMStateDescription vmstate_virtio_balloon_page_poison = {
828     .name = "virtio-balloon-device/page-poison",
829     .version_id = 1,
830     .minimum_version_id = 1,
831     .needed = virtio_balloon_page_poison_support,
832     .fields = (const VMStateField[]) {
833         VMSTATE_UINT32(poison_val, VirtIOBalloon),
834         VMSTATE_END_OF_LIST()
835     }
836 };
837 
838 static const VMStateDescription vmstate_virtio_balloon_device = {
839     .name = "virtio-balloon-device",
840     .version_id = 1,
841     .minimum_version_id = 1,
842     .post_load = virtio_balloon_post_load_device,
843     .fields = (const VMStateField[]) {
844         VMSTATE_UINT32(num_pages, VirtIOBalloon),
845         VMSTATE_UINT32(actual, VirtIOBalloon),
846         VMSTATE_END_OF_LIST()
847     },
848     .subsections = (const VMStateDescription * const []) {
849         &vmstate_virtio_balloon_free_page_hint,
850         &vmstate_virtio_balloon_page_poison,
851         NULL
852     }
853 };
854 
855 static void virtio_balloon_device_realize(DeviceState *dev, Error **errp)
856 {
857     VirtIODevice *vdev = VIRTIO_DEVICE(dev);
858     VirtIOBalloon *s = VIRTIO_BALLOON(dev);
859     int ret;
860 
861     virtio_init(vdev, VIRTIO_ID_BALLOON, virtio_balloon_config_size(s));
862 
863     ret = qemu_add_balloon_handler(virtio_balloon_to_target,
864                                    virtio_balloon_stat, s);
865 
866     if (ret < 0) {
867         error_setg(errp, "Only one balloon device is supported");
868         virtio_cleanup(vdev);
869         return;
870     }
871 
872     if (virtio_has_feature(s->host_features, VIRTIO_BALLOON_F_FREE_PAGE_HINT) &&
873         !s->iothread) {
874         error_setg(errp, "'free-page-hint' requires 'iothread' to be set");
875         virtio_cleanup(vdev);
876         return;
877     }
878 
879     s->ivq = virtio_add_queue(vdev, 128, virtio_balloon_handle_output);
880     s->dvq = virtio_add_queue(vdev, 128, virtio_balloon_handle_output);
881     s->svq = virtio_add_queue(vdev, 128, virtio_balloon_receive_stats);
882 
883     if (virtio_has_feature(s->host_features, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) {
884         s->free_page_vq = virtio_add_queue(vdev, VIRTQUEUE_MAX_SIZE,
885                                            virtio_balloon_handle_free_page_vq);
886         precopy_add_notifier(&s->free_page_hint_notify);
887 
888         object_ref(OBJECT(s->iothread));
889         s->free_page_bh = aio_bh_new_guarded(iothread_get_aio_context(s->iothread),
890                                              virtio_ballloon_get_free_page_hints, s,
891                                              &dev->mem_reentrancy_guard);
892     }
893 
894     if (virtio_has_feature(s->host_features, VIRTIO_BALLOON_F_REPORTING)) {
895         s->reporting_vq = virtio_add_queue(vdev, 32,
896                                            virtio_balloon_handle_report);
897     }
898 
899     reset_stats(s);
900 }
901 
902 static void virtio_balloon_device_unrealize(DeviceState *dev)
903 {
904     VirtIODevice *vdev = VIRTIO_DEVICE(dev);
905     VirtIOBalloon *s = VIRTIO_BALLOON(dev);
906 
907     if (s->free_page_bh) {
908         qemu_bh_delete(s->free_page_bh);
909         object_unref(OBJECT(s->iothread));
910         virtio_balloon_free_page_stop(s);
911         precopy_remove_notifier(&s->free_page_hint_notify);
912     }
913     balloon_stats_destroy_timer(s);
914     qemu_remove_balloon_handler(s);
915 
916     virtio_delete_queue(s->ivq);
917     virtio_delete_queue(s->dvq);
918     virtio_delete_queue(s->svq);
919     if (s->free_page_vq) {
920         virtio_delete_queue(s->free_page_vq);
921     }
922     if (s->reporting_vq) {
923         virtio_delete_queue(s->reporting_vq);
924     }
925     virtio_cleanup(vdev);
926 }
927 
928 static void virtio_balloon_device_reset(VirtIODevice *vdev)
929 {
930     VirtIOBalloon *s = VIRTIO_BALLOON(vdev);
931 
932     if (virtio_balloon_free_page_support(s)) {
933         virtio_balloon_free_page_stop(s);
934     }
935 
936     if (s->stats_vq_elem != NULL) {
937         virtqueue_unpop(s->svq, s->stats_vq_elem, 0);
938         g_free(s->stats_vq_elem);
939         s->stats_vq_elem = NULL;
940     }
941 
942     s->poison_val = 0;
943 }
944 
945 static void virtio_balloon_set_status(VirtIODevice *vdev, uint8_t status)
946 {
947     VirtIOBalloon *s = VIRTIO_BALLOON(vdev);
948 
949     if (!s->stats_vq_elem && vdev->vm_running &&
950         (status & VIRTIO_CONFIG_S_DRIVER_OK) && virtqueue_rewind(s->svq, 1)) {
951         /* poll stats queue for the element we have discarded when the VM
952          * was stopped */
953         virtio_balloon_receive_stats(vdev, s->svq);
954     }
955 
956     if (virtio_balloon_free_page_support(s)) {
957         /*
958          * The VM is woken up and the iothread was blocked, so signal it to
959          * continue.
960          */
961         if (vdev->vm_running && s->block_iothread) {
962             qemu_mutex_lock(&s->free_page_lock);
963             s->block_iothread = false;
964             qemu_cond_signal(&s->free_page_cond);
965             qemu_mutex_unlock(&s->free_page_lock);
966         }
967 
968         /* The VM is stopped, block the iothread. */
969         if (!vdev->vm_running) {
970             qemu_mutex_lock(&s->free_page_lock);
971             s->block_iothread = true;
972             qemu_mutex_unlock(&s->free_page_lock);
973         }
974     }
975 }
976 
977 static void virtio_balloon_instance_init(Object *obj)
978 {
979     VirtIOBalloon *s = VIRTIO_BALLOON(obj);
980 
981     qemu_mutex_init(&s->free_page_lock);
982     qemu_cond_init(&s->free_page_cond);
983     s->free_page_hint_cmd_id = VIRTIO_BALLOON_FREE_PAGE_HINT_CMD_ID_MIN;
984     s->free_page_hint_notify.notify = virtio_balloon_free_page_hint_notify;
985 
986     object_property_add(obj, "guest-stats", "guest statistics",
987                         balloon_stats_get_all, NULL, NULL, NULL);
988 
989     object_property_add(obj, "guest-stats-polling-interval", "int",
990                         balloon_stats_get_poll_interval,
991                         balloon_stats_set_poll_interval,
992                         NULL, NULL);
993 }
994 
995 static const VMStateDescription vmstate_virtio_balloon = {
996     .name = "virtio-balloon",
997     .minimum_version_id = 1,
998     .version_id = 1,
999     .fields = (const VMStateField[]) {
1000         VMSTATE_VIRTIO_DEVICE,
1001         VMSTATE_END_OF_LIST()
1002     },
1003 };
1004 
1005 static Property virtio_balloon_properties[] = {
1006     DEFINE_PROP_BIT("deflate-on-oom", VirtIOBalloon, host_features,
1007                     VIRTIO_BALLOON_F_DEFLATE_ON_OOM, false),
1008     DEFINE_PROP_BIT("free-page-hint", VirtIOBalloon, host_features,
1009                     VIRTIO_BALLOON_F_FREE_PAGE_HINT, false),
1010     DEFINE_PROP_BIT("page-poison", VirtIOBalloon, host_features,
1011                     VIRTIO_BALLOON_F_PAGE_POISON, true),
1012     DEFINE_PROP_BIT("free-page-reporting", VirtIOBalloon, host_features,
1013                     VIRTIO_BALLOON_F_REPORTING, false),
1014     /* QEMU 4.0 accidentally changed the config size even when free-page-hint
1015      * is disabled, resulting in QEMU 3.1 migration incompatibility.  This
1016      * property retains this quirk for QEMU 4.1 machine types.
1017      */
1018     DEFINE_PROP_BOOL("qemu-4-0-config-size", VirtIOBalloon,
1019                      qemu_4_0_config_size, false),
1020     DEFINE_PROP_LINK("iothread", VirtIOBalloon, iothread, TYPE_IOTHREAD,
1021                      IOThread *),
1022     DEFINE_PROP_END_OF_LIST(),
1023 };
1024 
1025 static void virtio_balloon_class_init(ObjectClass *klass, void *data)
1026 {
1027     DeviceClass *dc = DEVICE_CLASS(klass);
1028     VirtioDeviceClass *vdc = VIRTIO_DEVICE_CLASS(klass);
1029 
1030     device_class_set_props(dc, virtio_balloon_properties);
1031     dc->vmsd = &vmstate_virtio_balloon;
1032     set_bit(DEVICE_CATEGORY_MISC, dc->categories);
1033     vdc->realize = virtio_balloon_device_realize;
1034     vdc->unrealize = virtio_balloon_device_unrealize;
1035     vdc->reset = virtio_balloon_device_reset;
1036     vdc->get_config = virtio_balloon_get_config;
1037     vdc->set_config = virtio_balloon_set_config;
1038     vdc->get_features = virtio_balloon_get_features;
1039     vdc->set_status = virtio_balloon_set_status;
1040     vdc->vmsd = &vmstate_virtio_balloon_device;
1041 }
1042 
1043 static const TypeInfo virtio_balloon_info = {
1044     .name = TYPE_VIRTIO_BALLOON,
1045     .parent = TYPE_VIRTIO_DEVICE,
1046     .instance_size = sizeof(VirtIOBalloon),
1047     .instance_init = virtio_balloon_instance_init,
1048     .class_init = virtio_balloon_class_init,
1049 };
1050 
1051 static void virtio_register_types(void)
1052 {
1053     type_register_static(&virtio_balloon_info);
1054 }
1055 
1056 type_init(virtio_register_types)
1057