1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22#include <linux/virtio.h>
23#include <linux/virtio_balloon.h>
24#include <linux/swap.h>
25#include <linux/kthread.h>
26#include <linux/freezer.h>
27#include <linux/delay.h>
28#include <linux/slab.h>
29#include <linux/module.h>
30#include <linux/balloon_compaction.h>
31
32
33
34
35
36
37#define VIRTIO_BALLOON_PAGES_PER_PAGE (unsigned)(PAGE_SIZE >> VIRTIO_BALLOON_PFN_SHIFT)
38#define VIRTIO_BALLOON_ARRAY_PFNS_MAX 256
39
40struct virtio_balloon
41{
42 struct virtio_device *vdev;
43 struct virtqueue *inflate_vq, *deflate_vq, *stats_vq;
44
45
46 wait_queue_head_t config_change;
47
48
49 struct task_struct *thread;
50
51
52 wait_queue_head_t acked;
53
54
55 unsigned int num_pages;
56
57
58
59
60
61
62 struct balloon_dev_info *vb_dev_info;
63
64
65 struct mutex balloon_lock;
66
67
68 unsigned int num_pfns;
69 u32 pfns[VIRTIO_BALLOON_ARRAY_PFNS_MAX];
70
71
72 int need_stats_update;
73 struct virtio_balloon_stat stats[VIRTIO_BALLOON_S_NR];
74};
75
76static struct virtio_device_id id_table[] = {
77 { VIRTIO_ID_BALLOON, VIRTIO_DEV_ANY_ID },
78 { 0 },
79};
80
81static u32 page_to_balloon_pfn(struct page *page)
82{
83 unsigned long pfn = page_to_pfn(page);
84
85 BUILD_BUG_ON(PAGE_SHIFT < VIRTIO_BALLOON_PFN_SHIFT);
86
87 return pfn * VIRTIO_BALLOON_PAGES_PER_PAGE;
88}
89
90static struct page *balloon_pfn_to_page(u32 pfn)
91{
92 BUG_ON(pfn % VIRTIO_BALLOON_PAGES_PER_PAGE);
93 return pfn_to_page(pfn / VIRTIO_BALLOON_PAGES_PER_PAGE);
94}
95
96static void balloon_ack(struct virtqueue *vq)
97{
98 struct virtio_balloon *vb = vq->vdev->priv;
99
100 wake_up(&vb->acked);
101}
102
103static void tell_host(struct virtio_balloon *vb, struct virtqueue *vq)
104{
105 struct scatterlist sg;
106 unsigned int len;
107
108 sg_init_one(&sg, vb->pfns, sizeof(vb->pfns[0]) * vb->num_pfns);
109
110
111 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL);
112 virtqueue_kick(vq);
113
114
115 wait_event(vb->acked, virtqueue_get_buf(vq, &len));
116}
117
118static void set_page_pfns(u32 pfns[], struct page *page)
119{
120 unsigned int i;
121
122
123
124 for (i = 0; i < VIRTIO_BALLOON_PAGES_PER_PAGE; i++)
125 pfns[i] = page_to_balloon_pfn(page) + i;
126}
127
128static void fill_balloon(struct virtio_balloon *vb, size_t num)
129{
130 struct balloon_dev_info *vb_dev_info = vb->vb_dev_info;
131
132
133 num = min(num, ARRAY_SIZE(vb->pfns));
134
135 mutex_lock(&vb->balloon_lock);
136 for (vb->num_pfns = 0; vb->num_pfns < num;
137 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
138 struct page *page = balloon_page_enqueue(vb_dev_info);
139
140 if (!page) {
141 dev_info_ratelimited(&vb->vdev->dev,
142 "Out of puff! Can't get %u pages\n",
143 VIRTIO_BALLOON_PAGES_PER_PAGE);
144
145 msleep(200);
146 break;
147 }
148 set_page_pfns(vb->pfns + vb->num_pfns, page);
149 vb->num_pages += VIRTIO_BALLOON_PAGES_PER_PAGE;
150 adjust_managed_page_count(page, -1);
151 }
152
153
154 if (vb->num_pfns != 0)
155 tell_host(vb, vb->inflate_vq);
156 mutex_unlock(&vb->balloon_lock);
157}
158
159static void release_pages_by_pfn(const u32 pfns[], unsigned int num)
160{
161 unsigned int i;
162
163
164 for (i = 0; i < num; i += VIRTIO_BALLOON_PAGES_PER_PAGE) {
165 struct page *page = balloon_pfn_to_page(pfns[i]);
166 balloon_page_free(page);
167 adjust_managed_page_count(page, 1);
168 }
169}
170
171static void leak_balloon(struct virtio_balloon *vb, size_t num)
172{
173 struct page *page;
174 struct balloon_dev_info *vb_dev_info = vb->vb_dev_info;
175
176
177 num = min(num, ARRAY_SIZE(vb->pfns));
178
179 mutex_lock(&vb->balloon_lock);
180 for (vb->num_pfns = 0; vb->num_pfns < num;
181 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
182 page = balloon_page_dequeue(vb_dev_info);
183 if (!page)
184 break;
185 set_page_pfns(vb->pfns + vb->num_pfns, page);
186 vb->num_pages -= VIRTIO_BALLOON_PAGES_PER_PAGE;
187 }
188
189
190
191
192
193
194 if (vb->num_pfns != 0)
195 tell_host(vb, vb->deflate_vq);
196 mutex_unlock(&vb->balloon_lock);
197 release_pages_by_pfn(vb->pfns, vb->num_pfns);
198}
199
200static inline void update_stat(struct virtio_balloon *vb, int idx,
201 u16 tag, u64 val)
202{
203 BUG_ON(idx >= VIRTIO_BALLOON_S_NR);
204 vb->stats[idx].tag = tag;
205 vb->stats[idx].val = val;
206}
207
208#define pages_to_bytes(x) ((u64)(x) << PAGE_SHIFT)
209
210static void update_balloon_stats(struct virtio_balloon *vb)
211{
212 unsigned long events[NR_VM_EVENT_ITEMS];
213 struct sysinfo i;
214 int idx = 0;
215
216 all_vm_events(events);
217 si_meminfo(&i);
218
219 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_IN,
220 pages_to_bytes(events[PSWPIN]));
221 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_OUT,
222 pages_to_bytes(events[PSWPOUT]));
223 update_stat(vb, idx++, VIRTIO_BALLOON_S_MAJFLT, events[PGMAJFAULT]);
224 update_stat(vb, idx++, VIRTIO_BALLOON_S_MINFLT, events[PGFAULT]);
225 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMFREE,
226 pages_to_bytes(i.freeram));
227 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMTOT,
228 pages_to_bytes(i.totalram));
229}
230
231
232
233
234
235
236
237
238
239static void stats_request(struct virtqueue *vq)
240{
241 struct virtio_balloon *vb = vq->vdev->priv;
242
243 vb->need_stats_update = 1;
244 wake_up(&vb->config_change);
245}
246
247static void stats_handle_request(struct virtio_balloon *vb)
248{
249 struct virtqueue *vq;
250 struct scatterlist sg;
251 unsigned int len;
252
253 vb->need_stats_update = 0;
254 update_balloon_stats(vb);
255
256 vq = vb->stats_vq;
257 if (!virtqueue_get_buf(vq, &len))
258 return;
259 sg_init_one(&sg, vb->stats, sizeof(vb->stats));
260 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL);
261 virtqueue_kick(vq);
262}
263
264static void virtballoon_changed(struct virtio_device *vdev)
265{
266 struct virtio_balloon *vb = vdev->priv;
267
268 wake_up(&vb->config_change);
269}
270
271static inline s64 towards_target(struct virtio_balloon *vb)
272{
273 __le32 v;
274 s64 target;
275
276 virtio_cread(vb->vdev, struct virtio_balloon_config, num_pages, &v);
277
278 target = le32_to_cpu(v);
279 return target - vb->num_pages;
280}
281
282static void update_balloon_size(struct virtio_balloon *vb)
283{
284 __le32 actual = cpu_to_le32(vb->num_pages);
285
286 virtio_cwrite(vb->vdev, struct virtio_balloon_config, actual,
287 &actual);
288}
289
290static int balloon(void *_vballoon)
291{
292 struct virtio_balloon *vb = _vballoon;
293
294 set_freezable();
295 while (!kthread_should_stop()) {
296 s64 diff;
297
298 try_to_freeze();
299 wait_event_interruptible(vb->config_change,
300 (diff = towards_target(vb)) != 0
301 || vb->need_stats_update
302 || kthread_should_stop()
303 || freezing(current));
304 if (vb->need_stats_update)
305 stats_handle_request(vb);
306 if (diff > 0)
307 fill_balloon(vb, diff);
308 else if (diff < 0)
309 leak_balloon(vb, -diff);
310 update_balloon_size(vb);
311
312
313
314
315
316 cond_resched();
317 }
318 return 0;
319}
320
321static int init_vqs(struct virtio_balloon *vb)
322{
323 struct virtqueue *vqs[3];
324 vq_callback_t *callbacks[] = { balloon_ack, balloon_ack, stats_request };
325 const char *names[] = { "inflate", "deflate", "stats" };
326 int err, nvqs;
327
328
329
330
331
332 nvqs = virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ) ? 3 : 2;
333 err = vb->vdev->config->find_vqs(vb->vdev, nvqs, vqs, callbacks, names);
334 if (err)
335 return err;
336
337 vb->inflate_vq = vqs[0];
338 vb->deflate_vq = vqs[1];
339 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ)) {
340 struct scatterlist sg;
341 vb->stats_vq = vqs[2];
342
343
344
345
346
347 sg_init_one(&sg, vb->stats, sizeof vb->stats);
348 if (virtqueue_add_outbuf(vb->stats_vq, &sg, 1, vb, GFP_KERNEL)
349 < 0)
350 BUG();
351 virtqueue_kick(vb->stats_vq);
352 }
353 return 0;
354}
355
356static const struct address_space_operations virtio_balloon_aops;
357#ifdef CONFIG_BALLOON_COMPACTION
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376static int virtballoon_migratepage(struct address_space *mapping,
377 struct page *newpage, struct page *page, enum migrate_mode mode)
378{
379 struct balloon_dev_info *vb_dev_info = balloon_page_device(page);
380 struct virtio_balloon *vb;
381 unsigned long flags;
382
383 BUG_ON(!vb_dev_info);
384
385 vb = vb_dev_info->balloon_device;
386
387
388
389
390
391
392
393
394
395 if (!mutex_trylock(&vb->balloon_lock))
396 return -EAGAIN;
397
398
399 spin_lock_irqsave(&vb_dev_info->pages_lock, flags);
400 balloon_page_insert(newpage, mapping, &vb_dev_info->pages);
401 vb_dev_info->isolated_pages--;
402 spin_unlock_irqrestore(&vb_dev_info->pages_lock, flags);
403 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
404 set_page_pfns(vb->pfns, newpage);
405 tell_host(vb, vb->inflate_vq);
406
407
408
409
410
411
412
413 balloon_page_delete(page);
414 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
415 set_page_pfns(vb->pfns, page);
416 tell_host(vb, vb->deflate_vq);
417
418 mutex_unlock(&vb->balloon_lock);
419
420 return MIGRATEPAGE_BALLOON_SUCCESS;
421}
422
423
424static const struct address_space_operations virtio_balloon_aops = {
425 .migratepage = virtballoon_migratepage,
426};
427#endif
428
429static int virtballoon_probe(struct virtio_device *vdev)
430{
431 struct virtio_balloon *vb;
432 struct address_space *vb_mapping;
433 struct balloon_dev_info *vb_devinfo;
434 int err;
435
436 vdev->priv = vb = kmalloc(sizeof(*vb), GFP_KERNEL);
437 if (!vb) {
438 err = -ENOMEM;
439 goto out;
440 }
441
442 vb->num_pages = 0;
443 mutex_init(&vb->balloon_lock);
444 init_waitqueue_head(&vb->config_change);
445 init_waitqueue_head(&vb->acked);
446 vb->vdev = vdev;
447 vb->need_stats_update = 0;
448
449 vb_devinfo = balloon_devinfo_alloc(vb);
450 if (IS_ERR(vb_devinfo)) {
451 err = PTR_ERR(vb_devinfo);
452 goto out_free_vb;
453 }
454
455 vb_mapping = balloon_mapping_alloc(vb_devinfo,
456 (balloon_compaction_check()) ?
457 &virtio_balloon_aops : NULL);
458 if (IS_ERR(vb_mapping)) {
459
460
461
462
463 err = PTR_ERR(vb_mapping);
464 if (err != -EOPNOTSUPP)
465 goto out_free_vb_devinfo;
466 }
467
468 vb->vb_dev_info = vb_devinfo;
469
470 err = init_vqs(vb);
471 if (err)
472 goto out_free_vb_mapping;
473
474 vb->thread = kthread_run(balloon, vb, "vballoon");
475 if (IS_ERR(vb->thread)) {
476 err = PTR_ERR(vb->thread);
477 goto out_del_vqs;
478 }
479
480 return 0;
481
482out_del_vqs:
483 vdev->config->del_vqs(vdev);
484out_free_vb_mapping:
485 balloon_mapping_free(vb_mapping);
486out_free_vb_devinfo:
487 balloon_devinfo_free(vb_devinfo);
488out_free_vb:
489 kfree(vb);
490out:
491 return err;
492}
493
494static void remove_common(struct virtio_balloon *vb)
495{
496
497 while (vb->num_pages)
498 leak_balloon(vb, vb->num_pages);
499 update_balloon_size(vb);
500
501
502 vb->vdev->config->reset(vb->vdev);
503
504 vb->vdev->config->del_vqs(vb->vdev);
505}
506
507static void virtballoon_remove(struct virtio_device *vdev)
508{
509 struct virtio_balloon *vb = vdev->priv;
510
511 kthread_stop(vb->thread);
512 remove_common(vb);
513 balloon_mapping_free(vb->vb_dev_info->mapping);
514 balloon_devinfo_free(vb->vb_dev_info);
515 kfree(vb);
516}
517
518#ifdef CONFIG_PM_SLEEP
519static int virtballoon_freeze(struct virtio_device *vdev)
520{
521 struct virtio_balloon *vb = vdev->priv;
522
523
524
525
526
527
528 remove_common(vb);
529 return 0;
530}
531
532static int virtballoon_restore(struct virtio_device *vdev)
533{
534 struct virtio_balloon *vb = vdev->priv;
535 int ret;
536
537 ret = init_vqs(vdev->priv);
538 if (ret)
539 return ret;
540
541 fill_balloon(vb, towards_target(vb));
542 update_balloon_size(vb);
543 return 0;
544}
545#endif
546
547static unsigned int features[] = {
548 VIRTIO_BALLOON_F_MUST_TELL_HOST,
549 VIRTIO_BALLOON_F_STATS_VQ,
550};
551
552static struct virtio_driver virtio_balloon_driver = {
553 .feature_table = features,
554 .feature_table_size = ARRAY_SIZE(features),
555 .driver.name = KBUILD_MODNAME,
556 .driver.owner = THIS_MODULE,
557 .id_table = id_table,
558 .probe = virtballoon_probe,
559 .remove = virtballoon_remove,
560 .config_changed = virtballoon_changed,
561#ifdef CONFIG_PM_SLEEP
562 .freeze = virtballoon_freeze,
563 .restore = virtballoon_restore,
564#endif
565};
566
567module_virtio_driver(virtio_balloon_driver);
568MODULE_DEVICE_TABLE(virtio, id_table);
569MODULE_DESCRIPTION("Virtio balloon driver");
570MODULE_LICENSE("GPL");
571