2 * Virtio Balloon Device
4 * Copyright IBM, Corp. 2008
5 * Copyright (C) 2011 Red Hat, Inc.
6 * Copyright (C) 2011 Amit Shah <amit.shah@redhat.com>
9 * Anthony Liguori <aliguori@us.ibm.com>
11 * This work is licensed under the terms of the GNU GPL, version 2. See
12 * the COPYING file in the top-level directory.
17 #include "qemu/timer.h"
18 #include "qemu-common.h"
19 #include "hw/virtio.h"
22 #include "sysemu/balloon.h"
23 #include "hw/virtio-balloon.h"
24 #include "sysemu/kvm.h"
25 #include "exec/address-spaces.h"
26 #include "qapi/visitor.h"
28 #if defined(__linux__)
32 typedef struct VirtIOBalloon
35 VirtQueue
*ivq
, *dvq
, *svq
;
38 uint64_t stats
[VIRTIO_BALLOON_S_NR
];
39 VirtQueueElement stats_vq_elem
;
40 size_t stats_vq_offset
;
41 QEMUTimer
*stats_timer
;
42 int64_t stats_last_update
;
43 int64_t stats_poll_interval
;
47 static VirtIOBalloon
*to_virtio_balloon(VirtIODevice
*vdev
)
49 return (VirtIOBalloon
*)vdev
;
52 static void balloon_page(void *addr
, int deflate
)
54 #if defined(__linux__)
55 if (!kvm_enabled() || kvm_has_sync_mmu())
56 qemu_madvise(addr
, TARGET_PAGE_SIZE
,
57 deflate
? QEMU_MADV_WILLNEED
: QEMU_MADV_DONTNEED
);
61 static const char *balloon_stat_names
[] = {
62 [VIRTIO_BALLOON_S_SWAP_IN
] = "stat-swap-in",
63 [VIRTIO_BALLOON_S_SWAP_OUT
] = "stat-swap-out",
64 [VIRTIO_BALLOON_S_MAJFLT
] = "stat-major-faults",
65 [VIRTIO_BALLOON_S_MINFLT
] = "stat-minor-faults",
66 [VIRTIO_BALLOON_S_MEMFREE
] = "stat-free-memory",
67 [VIRTIO_BALLOON_S_MEMTOT
] = "stat-total-memory",
68 [VIRTIO_BALLOON_S_NR
] = NULL
72 * reset_stats - Mark all items in the stats array as unset
74 * This function needs to be called at device intialization and before
75 * before updating to a set of newly-generated stats. This will ensure that no
76 * stale values stick around in case the guest reports a subset of the supported
79 static inline void reset_stats(VirtIOBalloon
*dev
)
82 for (i
= 0; i
< VIRTIO_BALLOON_S_NR
; dev
->stats
[i
++] = -1);
85 static bool balloon_stats_supported(const VirtIOBalloon
*s
)
87 return s
->vdev
.guest_features
& (1 << VIRTIO_BALLOON_F_STATS_VQ
);
90 static bool balloon_stats_enabled(const VirtIOBalloon
*s
)
92 return s
->stats_poll_interval
> 0;
95 static void balloon_stats_destroy_timer(VirtIOBalloon
*s
)
97 if (balloon_stats_enabled(s
)) {
98 qemu_del_timer(s
->stats_timer
);
99 qemu_free_timer(s
->stats_timer
);
100 s
->stats_timer
= NULL
;
101 s
->stats_poll_interval
= 0;
105 static void balloon_stats_change_timer(VirtIOBalloon
*s
, int secs
)
107 qemu_mod_timer(s
->stats_timer
, qemu_get_clock_ms(vm_clock
) + secs
* 1000);
110 static void balloon_stats_poll_cb(void *opaque
)
112 VirtIOBalloon
*s
= opaque
;
114 if (!balloon_stats_supported(s
)) {
116 balloon_stats_change_timer(s
, s
->stats_poll_interval
);
120 virtqueue_push(s
->svq
, &s
->stats_vq_elem
, s
->stats_vq_offset
);
121 virtio_notify(&s
->vdev
, s
->svq
);
124 static void balloon_stats_get_all(Object
*obj
, struct Visitor
*v
,
125 void *opaque
, const char *name
, Error
**errp
)
127 VirtIOBalloon
*s
= opaque
;
130 if (!s
->stats_last_update
) {
131 error_setg(errp
, "guest hasn't updated any stats yet");
135 visit_start_struct(v
, NULL
, "guest-stats", name
, 0, errp
);
136 visit_type_int(v
, &s
->stats_last_update
, "last-update", errp
);
138 visit_start_struct(v
, NULL
, NULL
, "stats", 0, errp
);
139 for (i
= 0; i
< VIRTIO_BALLOON_S_NR
; i
++) {
140 visit_type_int64(v
, (int64_t *) &s
->stats
[i
], balloon_stat_names
[i
],
143 visit_end_struct(v
, errp
);
145 visit_end_struct(v
, errp
);
148 static void balloon_stats_get_poll_interval(Object
*obj
, struct Visitor
*v
,
149 void *opaque
, const char *name
,
152 VirtIOBalloon
*s
= opaque
;
153 visit_type_int(v
, &s
->stats_poll_interval
, name
, errp
);
156 static void balloon_stats_set_poll_interval(Object
*obj
, struct Visitor
*v
,
157 void *opaque
, const char *name
,
160 VirtIOBalloon
*s
= opaque
;
163 visit_type_int(v
, &value
, name
, errp
);
164 if (error_is_set(errp
)) {
169 error_setg(errp
, "timer value must be greater than zero");
173 if (value
== s
->stats_poll_interval
) {
178 /* timer=0 disables the timer */
179 balloon_stats_destroy_timer(s
);
183 if (balloon_stats_enabled(s
)) {
184 /* timer interval change */
185 s
->stats_poll_interval
= value
;
186 balloon_stats_change_timer(s
, value
);
190 /* create a new timer */
191 g_assert(s
->stats_timer
== NULL
);
192 s
->stats_timer
= qemu_new_timer_ms(vm_clock
, balloon_stats_poll_cb
, s
);
193 s
->stats_poll_interval
= value
;
194 balloon_stats_change_timer(s
, 0);
197 static void virtio_balloon_handle_output(VirtIODevice
*vdev
, VirtQueue
*vq
)
199 VirtIOBalloon
*s
= to_virtio_balloon(vdev
);
200 VirtQueueElement elem
;
201 MemoryRegionSection section
;
203 while (virtqueue_pop(vq
, &elem
)) {
207 while (iov_to_buf(elem
.out_sg
, elem
.out_num
, offset
, &pfn
, 4) == 4) {
211 pa
= (ram_addr_t
)ldl_p(&pfn
) << VIRTIO_BALLOON_PFN_SHIFT
;
214 /* FIXME: remove get_system_memory(), but how? */
215 section
= memory_region_find(get_system_memory(), pa
, 1);
216 if (!section
.size
|| !memory_region_is_ram(section
.mr
))
219 /* Using memory_region_get_ram_ptr is bending the rules a bit, but
220 should be OK because we only want a single page. */
221 addr
= section
.offset_within_region
;
222 balloon_page(memory_region_get_ram_ptr(section
.mr
) + addr
,
226 virtqueue_push(vq
, &elem
, offset
);
227 virtio_notify(vdev
, vq
);
231 static void virtio_balloon_receive_stats(VirtIODevice
*vdev
, VirtQueue
*vq
)
233 VirtIOBalloon
*s
= DO_UPCAST(VirtIOBalloon
, vdev
, vdev
);
234 VirtQueueElement
*elem
= &s
->stats_vq_elem
;
235 VirtIOBalloonStat stat
;
239 if (!virtqueue_pop(vq
, elem
)) {
243 /* Initialize the stats to get rid of any stale values. This is only
244 * needed to handle the case where a guest supports fewer stats than it
245 * used to (ie. it has booted into an old kernel).
249 while (iov_to_buf(elem
->out_sg
, elem
->out_num
, offset
, &stat
, sizeof(stat
))
251 uint16_t tag
= tswap16(stat
.tag
);
252 uint64_t val
= tswap64(stat
.val
);
254 offset
+= sizeof(stat
);
255 if (tag
< VIRTIO_BALLOON_S_NR
)
258 s
->stats_vq_offset
= offset
;
260 if (qemu_gettimeofday(&tv
) < 0) {
261 fprintf(stderr
, "warning: %s: failed to get time of day\n", __func__
);
265 s
->stats_last_update
= tv
.tv_sec
;
268 if (balloon_stats_enabled(s
)) {
269 balloon_stats_change_timer(s
, s
->stats_poll_interval
);
273 static void virtio_balloon_get_config(VirtIODevice
*vdev
, uint8_t *config_data
)
275 VirtIOBalloon
*dev
= to_virtio_balloon(vdev
);
276 struct virtio_balloon_config config
;
278 config
.num_pages
= cpu_to_le32(dev
->num_pages
);
279 config
.actual
= cpu_to_le32(dev
->actual
);
281 memcpy(config_data
, &config
, 8);
284 static void virtio_balloon_set_config(VirtIODevice
*vdev
,
285 const uint8_t *config_data
)
287 VirtIOBalloon
*dev
= to_virtio_balloon(vdev
);
288 struct virtio_balloon_config config
;
289 uint32_t oldactual
= dev
->actual
;
290 memcpy(&config
, config_data
, 8);
291 dev
->actual
= le32_to_cpu(config
.actual
);
292 if (dev
->actual
!= oldactual
) {
293 qemu_balloon_changed(ram_size
-
294 (dev
->actual
<< VIRTIO_BALLOON_PFN_SHIFT
));
298 static uint32_t virtio_balloon_get_features(VirtIODevice
*vdev
, uint32_t f
)
300 f
|= (1 << VIRTIO_BALLOON_F_STATS_VQ
);
304 static void virtio_balloon_stat(void *opaque
, BalloonInfo
*info
)
306 VirtIOBalloon
*dev
= opaque
;
307 info
->actual
= ram_size
- ((uint64_t) dev
->actual
<<
308 VIRTIO_BALLOON_PFN_SHIFT
);
311 static void virtio_balloon_to_target(void *opaque
, ram_addr_t target
)
313 VirtIOBalloon
*dev
= opaque
;
315 if (target
> ram_size
) {
319 dev
->num_pages
= (ram_size
- target
) >> VIRTIO_BALLOON_PFN_SHIFT
;
320 virtio_notify_config(&dev
->vdev
);
324 static void virtio_balloon_save(QEMUFile
*f
, void *opaque
)
326 VirtIOBalloon
*s
= opaque
;
328 virtio_save(&s
->vdev
, f
);
330 qemu_put_be32(f
, s
->num_pages
);
331 qemu_put_be32(f
, s
->actual
);
334 static int virtio_balloon_load(QEMUFile
*f
, void *opaque
, int version_id
)
336 VirtIOBalloon
*s
= opaque
;
342 ret
= virtio_load(&s
->vdev
, f
);
347 s
->num_pages
= qemu_get_be32(f
);
348 s
->actual
= qemu_get_be32(f
);
352 VirtIODevice
*virtio_balloon_init(DeviceState
*dev
)
357 s
= (VirtIOBalloon
*)virtio_common_init("virtio-balloon",
359 8, sizeof(VirtIOBalloon
));
361 s
->vdev
.get_config
= virtio_balloon_get_config
;
362 s
->vdev
.set_config
= virtio_balloon_set_config
;
363 s
->vdev
.get_features
= virtio_balloon_get_features
;
365 ret
= qemu_add_balloon_handler(virtio_balloon_to_target
,
366 virtio_balloon_stat
, s
);
368 virtio_cleanup(&s
->vdev
);
372 s
->ivq
= virtio_add_queue(&s
->vdev
, 128, virtio_balloon_handle_output
);
373 s
->dvq
= virtio_add_queue(&s
->vdev
, 128, virtio_balloon_handle_output
);
374 s
->svq
= virtio_add_queue(&s
->vdev
, 128, virtio_balloon_receive_stats
);
377 register_savevm(dev
, "virtio-balloon", -1, 1,
378 virtio_balloon_save
, virtio_balloon_load
, s
);
380 object_property_add(OBJECT(dev
), "guest-stats", "guest statistics",
381 balloon_stats_get_all
, NULL
, NULL
, s
, NULL
);
383 object_property_add(OBJECT(dev
), "guest-stats-polling-interval", "int",
384 balloon_stats_get_poll_interval
,
385 balloon_stats_set_poll_interval
,
391 void virtio_balloon_exit(VirtIODevice
*vdev
)
393 VirtIOBalloon
*s
= DO_UPCAST(VirtIOBalloon
, vdev
, vdev
);
395 balloon_stats_destroy_timer(s
);
396 qemu_remove_balloon_handler(s
);
397 unregister_savevm(s
->qdev
, "virtio-balloon", s
);
398 virtio_cleanup(vdev
);