virtio: add feature checking helpers
[qemu.git] / hw / virtio / virtio-balloon.c
blob21e449af8fd65873f13fe31f08732a69518c92da
1 /*
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>
8 * Authors:
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.
16 #include "qemu/iov.h"
17 #include "qemu/timer.h"
18 #include "qemu-common.h"
19 #include "hw/virtio/virtio.h"
20 #include "hw/i386/pc.h"
21 #include "cpu.h"
22 #include "sysemu/balloon.h"
23 #include "hw/virtio/virtio-balloon.h"
24 #include "sysemu/kvm.h"
25 #include "exec/address-spaces.h"
26 #include "qapi/visitor.h"
27 #include "qapi-event.h"
29 #if defined(__linux__)
30 #include <sys/mman.h>
31 #endif
33 #include "hw/virtio/virtio-bus.h"
34 #include "hw/virtio/virtio-access.h"
36 static void balloon_page(void *addr, int deflate)
38 #if defined(__linux__)
39 if (!kvm_enabled() || kvm_has_sync_mmu())
40 qemu_madvise(addr, TARGET_PAGE_SIZE,
41 deflate ? QEMU_MADV_WILLNEED : QEMU_MADV_DONTNEED);
42 #endif
45 static const char *balloon_stat_names[] = {
46 [VIRTIO_BALLOON_S_SWAP_IN] = "stat-swap-in",
47 [VIRTIO_BALLOON_S_SWAP_OUT] = "stat-swap-out",
48 [VIRTIO_BALLOON_S_MAJFLT] = "stat-major-faults",
49 [VIRTIO_BALLOON_S_MINFLT] = "stat-minor-faults",
50 [VIRTIO_BALLOON_S_MEMFREE] = "stat-free-memory",
51 [VIRTIO_BALLOON_S_MEMTOT] = "stat-total-memory",
52 [VIRTIO_BALLOON_S_NR] = NULL
56 * reset_stats - Mark all items in the stats array as unset
58 * This function needs to be called at device initialization and before
59 * updating to a set of newly-generated stats. This will ensure that no
60 * stale values stick around in case the guest reports a subset of the supported
61 * statistics.
63 static inline void reset_stats(VirtIOBalloon *dev)
65 int i;
66 for (i = 0; i < VIRTIO_BALLOON_S_NR; dev->stats[i++] = -1);
69 static bool balloon_stats_supported(const VirtIOBalloon *s)
71 VirtIODevice *vdev = VIRTIO_DEVICE(s);
72 return virtio_has_feature(vdev, VIRTIO_BALLOON_F_STATS_VQ);
75 static bool balloon_stats_enabled(const VirtIOBalloon *s)
77 return s->stats_poll_interval > 0;
80 static void balloon_stats_destroy_timer(VirtIOBalloon *s)
82 if (balloon_stats_enabled(s)) {
83 timer_del(s->stats_timer);
84 timer_free(s->stats_timer);
85 s->stats_timer = NULL;
86 s->stats_poll_interval = 0;
90 static void balloon_stats_change_timer(VirtIOBalloon *s, int64_t secs)
92 timer_mod(s->stats_timer, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + secs * 1000);
95 static void balloon_stats_poll_cb(void *opaque)
97 VirtIOBalloon *s = opaque;
98 VirtIODevice *vdev = VIRTIO_DEVICE(s);
100 if (!balloon_stats_supported(s)) {
101 /* re-schedule */
102 balloon_stats_change_timer(s, s->stats_poll_interval);
103 return;
106 virtqueue_push(s->svq, &s->stats_vq_elem, s->stats_vq_offset);
107 virtio_notify(vdev, s->svq);
110 static void balloon_stats_get_all(Object *obj, struct Visitor *v,
111 void *opaque, const char *name, Error **errp)
113 Error *err = NULL;
114 VirtIOBalloon *s = opaque;
115 int i;
117 visit_start_struct(v, NULL, "guest-stats", name, 0, &err);
118 if (err) {
119 goto out;
121 visit_type_int(v, &s->stats_last_update, "last-update", &err);
122 if (err) {
123 goto out_end;
126 visit_start_struct(v, NULL, NULL, "stats", 0, &err);
127 if (err) {
128 goto out_end;
130 for (i = 0; !err && i < VIRTIO_BALLOON_S_NR; i++) {
131 visit_type_int64(v, (int64_t *) &s->stats[i], balloon_stat_names[i],
132 &err);
134 error_propagate(errp, err);
135 err = NULL;
136 visit_end_struct(v, &err);
138 out_end:
139 error_propagate(errp, err);
140 err = NULL;
141 visit_end_struct(v, &err);
142 out:
143 error_propagate(errp, err);
146 static void balloon_stats_get_poll_interval(Object *obj, struct Visitor *v,
147 void *opaque, const char *name,
148 Error **errp)
150 VirtIOBalloon *s = opaque;
151 visit_type_int(v, &s->stats_poll_interval, name, errp);
154 static void balloon_stats_set_poll_interval(Object *obj, struct Visitor *v,
155 void *opaque, const char *name,
156 Error **errp)
158 VirtIOBalloon *s = opaque;
159 Error *local_err = NULL;
160 int64_t value;
162 visit_type_int(v, &value, name, &local_err);
163 if (local_err) {
164 error_propagate(errp, local_err);
165 return;
168 if (value < 0) {
169 error_setg(errp, "timer value must be greater than zero");
170 return;
173 if (value > UINT32_MAX) {
174 error_setg(errp, "timer value is too big");
175 return;
178 if (value == s->stats_poll_interval) {
179 return;
182 if (value == 0) {
183 /* timer=0 disables the timer */
184 balloon_stats_destroy_timer(s);
185 return;
188 if (balloon_stats_enabled(s)) {
189 /* timer interval change */
190 s->stats_poll_interval = value;
191 balloon_stats_change_timer(s, value);
192 return;
195 /* create a new timer */
196 g_assert(s->stats_timer == NULL);
197 s->stats_timer = timer_new_ms(QEMU_CLOCK_VIRTUAL, balloon_stats_poll_cb, s);
198 s->stats_poll_interval = value;
199 balloon_stats_change_timer(s, 0);
202 static void virtio_balloon_handle_output(VirtIODevice *vdev, VirtQueue *vq)
204 VirtIOBalloon *s = VIRTIO_BALLOON(vdev);
205 VirtQueueElement elem;
206 MemoryRegionSection section;
208 while (virtqueue_pop(vq, &elem)) {
209 size_t offset = 0;
210 uint32_t pfn;
212 while (iov_to_buf(elem.out_sg, elem.out_num, offset, &pfn, 4) == 4) {
213 ram_addr_t pa;
214 ram_addr_t addr;
215 int p = virtio_ldl_p(vdev, &pfn);
217 pa = (ram_addr_t) p << VIRTIO_BALLOON_PFN_SHIFT;
218 offset += 4;
220 /* FIXME: remove get_system_memory(), but how? */
221 section = memory_region_find(get_system_memory(), pa, 1);
222 if (!int128_nz(section.size) || !memory_region_is_ram(section.mr))
223 continue;
225 /* Using memory_region_get_ram_ptr is bending the rules a bit, but
226 should be OK because we only want a single page. */
227 addr = section.offset_within_region;
228 balloon_page(memory_region_get_ram_ptr(section.mr) + addr,
229 !!(vq == s->dvq));
230 memory_region_unref(section.mr);
233 virtqueue_push(vq, &elem, offset);
234 virtio_notify(vdev, vq);
238 static void virtio_balloon_receive_stats(VirtIODevice *vdev, VirtQueue *vq)
240 VirtIOBalloon *s = VIRTIO_BALLOON(vdev);
241 VirtQueueElement *elem = &s->stats_vq_elem;
242 VirtIOBalloonStat stat;
243 size_t offset = 0;
244 qemu_timeval tv;
246 if (!virtqueue_pop(vq, elem)) {
247 goto out;
250 /* Initialize the stats to get rid of any stale values. This is only
251 * needed to handle the case where a guest supports fewer stats than it
252 * used to (ie. it has booted into an old kernel).
254 reset_stats(s);
256 while (iov_to_buf(elem->out_sg, elem->out_num, offset, &stat, sizeof(stat))
257 == sizeof(stat)) {
258 uint16_t tag = virtio_tswap16(vdev, stat.tag);
259 uint64_t val = virtio_tswap64(vdev, stat.val);
261 offset += sizeof(stat);
262 if (tag < VIRTIO_BALLOON_S_NR)
263 s->stats[tag] = val;
265 s->stats_vq_offset = offset;
267 if (qemu_gettimeofday(&tv) < 0) {
268 fprintf(stderr, "warning: %s: failed to get time of day\n", __func__);
269 goto out;
272 s->stats_last_update = tv.tv_sec;
274 out:
275 if (balloon_stats_enabled(s)) {
276 balloon_stats_change_timer(s, s->stats_poll_interval);
280 static void virtio_balloon_get_config(VirtIODevice *vdev, uint8_t *config_data)
282 VirtIOBalloon *dev = VIRTIO_BALLOON(vdev);
283 struct virtio_balloon_config config;
285 config.num_pages = cpu_to_le32(dev->num_pages);
286 config.actual = cpu_to_le32(dev->actual);
288 memcpy(config_data, &config, sizeof(struct virtio_balloon_config));
291 static void virtio_balloon_set_config(VirtIODevice *vdev,
292 const uint8_t *config_data)
294 VirtIOBalloon *dev = VIRTIO_BALLOON(vdev);
295 struct virtio_balloon_config config;
296 uint32_t oldactual = dev->actual;
297 memcpy(&config, config_data, sizeof(struct virtio_balloon_config));
298 dev->actual = le32_to_cpu(config.actual);
299 if (dev->actual != oldactual) {
300 qapi_event_send_balloon_change(ram_size -
301 ((ram_addr_t) dev->actual << VIRTIO_BALLOON_PFN_SHIFT),
302 &error_abort);
306 static uint32_t virtio_balloon_get_features(VirtIODevice *vdev, uint32_t f)
308 f |= (1 << VIRTIO_BALLOON_F_STATS_VQ);
309 return f;
312 static void virtio_balloon_stat(void *opaque, BalloonInfo *info)
314 VirtIOBalloon *dev = opaque;
315 info->actual = ram_size - ((uint64_t) dev->actual <<
316 VIRTIO_BALLOON_PFN_SHIFT);
319 static void virtio_balloon_to_target(void *opaque, ram_addr_t target)
321 VirtIOBalloon *dev = VIRTIO_BALLOON(opaque);
322 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
324 if (target > ram_size) {
325 target = ram_size;
327 if (target) {
328 dev->num_pages = (ram_size - target) >> VIRTIO_BALLOON_PFN_SHIFT;
329 virtio_notify_config(vdev);
333 static void virtio_balloon_save(QEMUFile *f, void *opaque)
335 virtio_save(VIRTIO_DEVICE(opaque), f);
338 static void virtio_balloon_save_device(VirtIODevice *vdev, QEMUFile *f)
340 VirtIOBalloon *s = VIRTIO_BALLOON(vdev);
342 qemu_put_be32(f, s->num_pages);
343 qemu_put_be32(f, s->actual);
346 static int virtio_balloon_load(QEMUFile *f, void *opaque, int version_id)
348 if (version_id != 1)
349 return -EINVAL;
351 return virtio_load(VIRTIO_DEVICE(opaque), f, version_id);
354 static int virtio_balloon_load_device(VirtIODevice *vdev, QEMUFile *f,
355 int version_id)
357 VirtIOBalloon *s = VIRTIO_BALLOON(vdev);
359 s->num_pages = qemu_get_be32(f);
360 s->actual = qemu_get_be32(f);
361 return 0;
364 static void virtio_balloon_device_realize(DeviceState *dev, Error **errp)
366 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
367 VirtIOBalloon *s = VIRTIO_BALLOON(dev);
368 int ret;
370 virtio_init(vdev, "virtio-balloon", VIRTIO_ID_BALLOON,
371 sizeof(struct virtio_balloon_config));
373 ret = qemu_add_balloon_handler(virtio_balloon_to_target,
374 virtio_balloon_stat, s);
376 if (ret < 0) {
377 error_setg(errp, "Adding balloon handler failed");
378 virtio_cleanup(vdev);
379 return;
382 s->ivq = virtio_add_queue(vdev, 128, virtio_balloon_handle_output);
383 s->dvq = virtio_add_queue(vdev, 128, virtio_balloon_handle_output);
384 s->svq = virtio_add_queue(vdev, 128, virtio_balloon_receive_stats);
386 reset_stats(s);
388 register_savevm(dev, "virtio-balloon", -1, 1,
389 virtio_balloon_save, virtio_balloon_load, s);
391 object_property_add(OBJECT(dev), "guest-stats", "guest statistics",
392 balloon_stats_get_all, NULL, NULL, s, NULL);
394 object_property_add(OBJECT(dev), "guest-stats-polling-interval", "int",
395 balloon_stats_get_poll_interval,
396 balloon_stats_set_poll_interval,
397 NULL, s, NULL);
400 static void virtio_balloon_device_unrealize(DeviceState *dev, Error **errp)
402 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
403 VirtIOBalloon *s = VIRTIO_BALLOON(dev);
405 balloon_stats_destroy_timer(s);
406 qemu_remove_balloon_handler(s);
407 unregister_savevm(dev, "virtio-balloon", s);
408 virtio_cleanup(vdev);
411 static Property virtio_balloon_properties[] = {
412 DEFINE_PROP_END_OF_LIST(),
415 static void virtio_balloon_class_init(ObjectClass *klass, void *data)
417 DeviceClass *dc = DEVICE_CLASS(klass);
418 VirtioDeviceClass *vdc = VIRTIO_DEVICE_CLASS(klass);
420 dc->props = virtio_balloon_properties;
421 set_bit(DEVICE_CATEGORY_MISC, dc->categories);
422 vdc->realize = virtio_balloon_device_realize;
423 vdc->unrealize = virtio_balloon_device_unrealize;
424 vdc->get_config = virtio_balloon_get_config;
425 vdc->set_config = virtio_balloon_set_config;
426 vdc->get_features = virtio_balloon_get_features;
427 vdc->save = virtio_balloon_save_device;
428 vdc->load = virtio_balloon_load_device;
431 static const TypeInfo virtio_balloon_info = {
432 .name = TYPE_VIRTIO_BALLOON,
433 .parent = TYPE_VIRTIO_DEVICE,
434 .instance_size = sizeof(VirtIOBalloon),
435 .class_init = virtio_balloon_class_init,
438 static void virtio_register_types(void)
440 type_register_static(&virtio_balloon_info);
443 type_init(virtio_register_types)