virtio_blk: fix race at module removal
[deliverable/linux.git] / drivers / virtio / virtio_balloon.c
CommitLineData
1e214a5c
SL
1/*
2 * Virtio balloon implementation, inspired by Dor Laor and Marcelo
6b35e407
RR
3 * Tosatti's implementations.
4 *
5 * Copyright 2008 Rusty Russell IBM Corporation
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
1e214a5c 21
6b35e407
RR
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>
6659a0f0 27#include <linux/delay.h>
5a0e3ad6 28#include <linux/slab.h>
b5a2c4f1 29#include <linux/module.h>
e2250429 30#include <linux/balloon_compaction.h>
6b35e407 31
3ccc9372
MT
32/*
33 * Balloon device works in 4K page units. So each page is pointed to by
34 * multiple balloon pages. All memory counters in this driver are in balloon
35 * page units.
36 */
e2250429
RA
37#define VIRTIO_BALLOON_PAGES_PER_PAGE (unsigned)(PAGE_SIZE >> VIRTIO_BALLOON_PFN_SHIFT)
38#define VIRTIO_BALLOON_ARRAY_PFNS_MAX 256
3ccc9372 39
6b35e407
RR
40struct virtio_balloon
41{
42 struct virtio_device *vdev;
9564e138 43 struct virtqueue *inflate_vq, *deflate_vq, *stats_vq;
6b35e407
RR
44
45 /* Where the ballooning thread waits for config to change. */
46 wait_queue_head_t config_change;
47
48 /* The thread servicing the balloon. */
49 struct task_struct *thread;
50
51 /* Waiting for host to ack the pages we released. */
9c378abc 52 wait_queue_head_t acked;
6b35e407 53
3ccc9372 54 /* Number of balloon pages we've told the Host we're not using. */
6b35e407 55 unsigned int num_pages;
3ccc9372 56 /*
e2250429
RA
57 * The pages we've told the Host we're not using are enqueued
58 * at vb_dev_info->pages list.
3ccc9372
MT
59 * Each page on this list adds VIRTIO_BALLOON_PAGES_PER_PAGE
60 * to num_pages above.
61 */
9d1ba805 62 struct balloon_dev_info vb_dev_info;
e2250429
RA
63
64 /* Synchronize access/update to this struct virtio_balloon elements */
65 struct mutex balloon_lock;
6b35e407
RR
66
67 /* The array of pfns we tell the Host about. */
68 unsigned int num_pfns;
e2250429 69 u32 pfns[VIRTIO_BALLOON_ARRAY_PFNS_MAX];
9564e138
AL
70
71 /* Memory statistics */
1f34c71a 72 int need_stats_update;
9564e138 73 struct virtio_balloon_stat stats[VIRTIO_BALLOON_S_NR];
6b35e407
RR
74};
75
76static struct virtio_device_id id_table[] = {
77 { VIRTIO_ID_BALLOON, VIRTIO_DEV_ANY_ID },
78 { 0 },
79};
80
1b4aa2fa
HB
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 /* Convert pfn from Linux page size to balloon page size. */
3ccc9372
MT
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);
1b4aa2fa
HB
94}
95
6b35e407
RR
96static void balloon_ack(struct virtqueue *vq)
97{
9c378abc 98 struct virtio_balloon *vb = vq->vdev->priv;
6b35e407 99
9c378abc 100 wake_up(&vb->acked);
6b35e407
RR
101}
102
103static void tell_host(struct virtio_balloon *vb, struct virtqueue *vq)
104{
105 struct scatterlist sg;
9c378abc 106 unsigned int len;
6b35e407
RR
107
108 sg_init_one(&sg, vb->pfns, sizeof(vb->pfns[0]) * vb->num_pfns);
109
6b35e407 110 /* We should always be able to add one buffer to an empty queue. */
4951cc90 111 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL);
946cfe0e 112 virtqueue_kick(vq);
6b35e407
RR
113
114 /* When host has read buffer, this completes via balloon_ack */
9c378abc 115 wait_event(vb->acked, virtqueue_get_buf(vq, &len));
6b35e407
RR
116}
117
3ccc9372
MT
118static void set_page_pfns(u32 pfns[], struct page *page)
119{
120 unsigned int i;
121
122 /* Set balloon pfns pointing at this page.
123 * Note that the first pfn points at start of the page. */
124 for (i = 0; i < VIRTIO_BALLOON_PAGES_PER_PAGE; i++)
125 pfns[i] = page_to_balloon_pfn(page) + i;
126}
127
6b35e407
RR
128static void fill_balloon(struct virtio_balloon *vb, size_t num)
129{
9d1ba805 130 struct balloon_dev_info *vb_dev_info = &vb->vb_dev_info;
e2250429 131
6b35e407
RR
132 /* We can only do one array worth at a time. */
133 num = min(num, ARRAY_SIZE(vb->pfns));
134
e2250429 135 mutex_lock(&vb->balloon_lock);
3ccc9372
MT
136 for (vb->num_pfns = 0; vb->num_pfns < num;
137 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
e2250429
RA
138 struct page *page = balloon_page_enqueue(vb_dev_info);
139
6b35e407 140 if (!page) {
800ba5ea 141 dev_info_ratelimited(&vb->vdev->dev,
b7dfde95
LT
142 "Out of puff! Can't get %u pages\n",
143 VIRTIO_BALLOON_PAGES_PER_PAGE);
6b35e407
RR
144 /* Sleep for at least 1/5 of a second before retry. */
145 msleep(200);
146 break;
147 }
3ccc9372
MT
148 set_page_pfns(vb->pfns + vb->num_pfns, page);
149 vb->num_pages += VIRTIO_BALLOON_PAGES_PER_PAGE;
3dcc0571 150 adjust_managed_page_count(page, -1);
6b35e407
RR
151 }
152
e2250429
RA
153 /* Did we get any? */
154 if (vb->num_pfns != 0)
155 tell_host(vb, vb->inflate_vq);
156 mutex_unlock(&vb->balloon_lock);
6b35e407
RR
157}
158
159static void release_pages_by_pfn(const u32 pfns[], unsigned int num)
160{
161 unsigned int i;
162
3ccc9372
MT
163 /* Find pfns pointing at start of each page, get pages and free them. */
164 for (i = 0; i < num; i += VIRTIO_BALLOON_PAGES_PER_PAGE) {
3dcc0571 165 struct page *page = balloon_pfn_to_page(pfns[i]);
3dcc0571 166 adjust_managed_page_count(page, 1);
d6d86c0a 167 put_page(page); /* balloon reference */
6b35e407
RR
168 }
169}
170
171static void leak_balloon(struct virtio_balloon *vb, size_t num)
172{
173 struct page *page;
9d1ba805 174 struct balloon_dev_info *vb_dev_info = &vb->vb_dev_info;
6b35e407
RR
175
176 /* We can only do one array worth at a time. */
177 num = min(num, ARRAY_SIZE(vb->pfns));
178
e2250429 179 mutex_lock(&vb->balloon_lock);
3ccc9372
MT
180 for (vb->num_pfns = 0; vb->num_pfns < num;
181 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
e2250429
RA
182 page = balloon_page_dequeue(vb_dev_info);
183 if (!page)
184 break;
3ccc9372
MT
185 set_page_pfns(vb->pfns + vb->num_pfns, page);
186 vb->num_pages -= VIRTIO_BALLOON_PAGES_PER_PAGE;
6b35e407
RR
187 }
188
bf50e69f
DH
189 /*
190 * Note that if
191 * virtio_has_feature(vdev, VIRTIO_BALLOON_F_MUST_TELL_HOST);
192 * is true, we *have* to do it in this order
193 */
8c6bab4f
LC
194 if (vb->num_pfns != 0)
195 tell_host(vb, vb->deflate_vq);
e2250429 196 mutex_unlock(&vb->balloon_lock);
bf50e69f 197 release_pages_by_pfn(vb->pfns, vb->num_pfns);
6b35e407
RR
198}
199
9564e138
AL
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 * While most virtqueues communicate guest-initiated requests to the hypervisor,
233 * the stats queue operates in reverse. The driver initializes the virtqueue
234 * with a single buffer. From that point forward, all conversations consist of
235 * a hypervisor request (a call to this function) which directs us to refill
1f34c71a
AL
236 * the virtqueue with a fresh stats buffer. Since stats collection can sleep,
237 * we notify our kthread which does the actual work via stats_handle_request().
9564e138 238 */
1f34c71a 239static void stats_request(struct virtqueue *vq)
9564e138 240{
9c378abc 241 struct virtio_balloon *vb = vq->vdev->priv;
9564e138 242
1f34c71a
AL
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;
9c378abc 251 unsigned int len;
9564e138 252
1f34c71a 253 vb->need_stats_update = 0;
9564e138
AL
254 update_balloon_stats(vb);
255
1f34c71a 256 vq = vb->stats_vq;
9c378abc
MT
257 if (!virtqueue_get_buf(vq, &len))
258 return;
9564e138 259 sg_init_one(&sg, vb->stats, sizeof(vb->stats));
4951cc90 260 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL);
946cfe0e 261 virtqueue_kick(vq);
9564e138
AL
262}
263
6b35e407
RR
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
bdc1681c 271static inline s64 towards_target(struct virtio_balloon *vb)
6b35e407 272{
1a87228f
DG
273 __le32 v;
274 s64 target;
275
855e0c52
RR
276 virtio_cread(vb->vdev, struct virtio_balloon_config, num_pages, &v);
277
1a87228f
DG
278 target = le32_to_cpu(v);
279 return target - vb->num_pages;
6b35e407
RR
280}
281
282static void update_balloon_size(struct virtio_balloon *vb)
283{
284 __le32 actual = cpu_to_le32(vb->num_pages);
285
3459f11a 286 virtio_cwrite(vb->vdev, struct virtio_balloon_config, actual,
855e0c52 287 &actual);
6b35e407
RR
288}
289
290static int balloon(void *_vballoon)
291{
292 struct virtio_balloon *vb = _vballoon;
293
294 set_freezable();
295 while (!kthread_should_stop()) {
bdc1681c 296 s64 diff;
6b35e407
RR
297
298 try_to_freeze();
299 wait_event_interruptible(vb->config_change,
300 (diff = towards_target(vb)) != 0
1f34c71a 301 || vb->need_stats_update
84a139a9
MT
302 || kthread_should_stop()
303 || freezing(current));
1f34c71a
AL
304 if (vb->need_stats_update)
305 stats_handle_request(vb);
6b35e407
RR
306 if (diff > 0)
307 fill_balloon(vb, diff);
308 else if (diff < 0)
309 leak_balloon(vb, -diff);
310 update_balloon_size(vb);
1f74ef0f
RR
311
312 /*
313 * For large balloon changes, we could spend a lot of time
314 * and always have work to do. Be nice if preempt disabled.
315 */
316 cond_resched();
6b35e407
RR
317 }
318 return 0;
319}
320
be91c33d 321static int init_vqs(struct virtio_balloon *vb)
6b35e407 322{
9564e138 323 struct virtqueue *vqs[3];
1f34c71a 324 vq_callback_t *callbacks[] = { balloon_ack, balloon_ack, stats_request };
9564e138
AL
325 const char *names[] = { "inflate", "deflate", "stats" };
326 int err, nvqs;
6b35e407 327
be91c33d
AS
328 /*
329 * We expect two virtqueues: inflate and deflate, and
330 * optionally stat.
331 */
9564e138 332 nvqs = virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ) ? 3 : 2;
be91c33d 333 err = vb->vdev->config->find_vqs(vb->vdev, nvqs, vqs, callbacks, names);
d2a7ddda 334 if (err)
be91c33d 335 return err;
6b35e407 336
d2a7ddda
MT
337 vb->inflate_vq = vqs[0];
338 vb->deflate_vq = vqs[1];
9564e138
AL
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 * Prime this virtqueue with one buffer so the hypervisor can
4951cc90 345 * use it to signal us later (it can't be broken yet!).
9564e138
AL
346 */
347 sg_init_one(&sg, vb->stats, sizeof vb->stats);
92549abc 348 if (virtqueue_add_outbuf(vb->stats_vq, &sg, 1, vb, GFP_KERNEL)
f96fde41 349 < 0)
9564e138 350 BUG();
946cfe0e 351 virtqueue_kick(vb->stats_vq);
9564e138 352 }
be91c33d
AS
353 return 0;
354}
355
e2250429
RA
356#ifdef CONFIG_BALLOON_COMPACTION
357/*
358 * virtballoon_migratepage - perform the balloon page migration on behalf of
359 * a compation thread. (called under page lock)
9d1ba805 360 * @vb_dev_info: the balloon device
e2250429
RA
361 * @newpage: page that will replace the isolated page after migration finishes.
362 * @page : the isolated (old) page that is about to be migrated to newpage.
363 * @mode : compaction mode -- not used for balloon page migration.
364 *
365 * After a ballooned page gets isolated by compaction procedures, this is the
366 * function that performs the page migration on behalf of a compaction thread
367 * The page migration for virtio balloon is done in a simple swap fashion which
368 * follows these two macro steps:
369 * 1) insert newpage into vb->pages list and update the host about it;
370 * 2) update the host about the old page removed from vb->pages list;
371 *
372 * This function preforms the balloon page migration task.
373 * Called through balloon_mapping->a_ops->migratepage
374 */
9d1ba805 375static int virtballoon_migratepage(struct balloon_dev_info *vb_dev_info,
e2250429
RA
376 struct page *newpage, struct page *page, enum migrate_mode mode)
377{
9d1ba805
KK
378 struct virtio_balloon *vb = container_of(vb_dev_info,
379 struct virtio_balloon, vb_dev_info);
e2250429
RA
380 unsigned long flags;
381
e2250429
RA
382 /*
383 * In order to avoid lock contention while migrating pages concurrently
384 * to leak_balloon() or fill_balloon() we just give up the balloon_lock
385 * this turn, as it is easier to retry the page migration later.
386 * This also prevents fill_balloon() getting stuck into a mutex
387 * recursion in the case it ends up triggering memory compaction
388 * while it is attempting to inflate the ballon.
389 */
390 if (!mutex_trylock(&vb->balloon_lock))
391 return -EAGAIN;
392
d6d86c0a
KK
393 get_page(newpage); /* balloon reference */
394
e2250429
RA
395 /* balloon's page migration 1st step -- inflate "newpage" */
396 spin_lock_irqsave(&vb_dev_info->pages_lock, flags);
9d1ba805 397 balloon_page_insert(vb_dev_info, newpage);
e2250429 398 vb_dev_info->isolated_pages--;
09316c09 399 __count_vm_event(BALLOON_MIGRATE);
e2250429
RA
400 spin_unlock_irqrestore(&vb_dev_info->pages_lock, flags);
401 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
402 set_page_pfns(vb->pfns, newpage);
403 tell_host(vb, vb->inflate_vq);
404
d6d86c0a 405 /* balloon's page migration 2nd step -- deflate "page" */
e2250429
RA
406 balloon_page_delete(page);
407 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
408 set_page_pfns(vb->pfns, page);
409 tell_host(vb, vb->deflate_vq);
410
411 mutex_unlock(&vb->balloon_lock);
412
d6d86c0a
KK
413 put_page(page); /* balloon reference */
414
415 return MIGRATEPAGE_SUCCESS;
e2250429 416}
e2250429
RA
417#endif /* CONFIG_BALLOON_COMPACTION */
418
be91c33d
AS
419static int virtballoon_probe(struct virtio_device *vdev)
420{
421 struct virtio_balloon *vb;
422 int err;
423
424 vdev->priv = vb = kmalloc(sizeof(*vb), GFP_KERNEL);
425 if (!vb) {
426 err = -ENOMEM;
427 goto out;
428 }
429
be91c33d 430 vb->num_pages = 0;
e2250429 431 mutex_init(&vb->balloon_lock);
be91c33d 432 init_waitqueue_head(&vb->config_change);
9c378abc 433 init_waitqueue_head(&vb->acked);
be91c33d
AS
434 vb->vdev = vdev;
435 vb->need_stats_update = 0;
436
9d1ba805
KK
437 balloon_devinfo_init(&vb->vb_dev_info);
438#ifdef CONFIG_BALLOON_COMPACTION
439 vb->vb_dev_info.migratepage = virtballoon_migratepage;
440#endif
e2250429 441
be91c33d
AS
442 err = init_vqs(vb);
443 if (err)
9d1ba805 444 goto out_free_vb;
6b35e407
RR
445
446 vb->thread = kthread_run(balloon, vb, "vballoon");
447 if (IS_ERR(vb->thread)) {
448 err = PTR_ERR(vb->thread);
d2a7ddda 449 goto out_del_vqs;
6b35e407
RR
450 }
451
6b35e407
RR
452 return 0;
453
d2a7ddda
MT
454out_del_vqs:
455 vdev->config->del_vqs(vdev);
6b35e407
RR
456out_free_vb:
457 kfree(vb);
458out:
459 return err;
460}
461
c877bab5 462static void remove_common(struct virtio_balloon *vb)
6b35e407 463{
6b35e407
RR
464 /* There might be pages left in the balloon: free them. */
465 while (vb->num_pages)
466 leak_balloon(vb, vb->num_pages);
b8ae0eb3 467 update_balloon_size(vb);
6b35e407
RR
468
469 /* Now we reset the device so we can clean up the queues. */
c877bab5 470 vb->vdev->config->reset(vb->vdev);
6b35e407 471
c877bab5
AS
472 vb->vdev->config->del_vqs(vb->vdev);
473}
474
8590dbc7 475static void virtballoon_remove(struct virtio_device *vdev)
c877bab5
AS
476{
477 struct virtio_balloon *vb = vdev->priv;
478
479 kthread_stop(vb->thread);
480 remove_common(vb);
6b35e407
RR
481 kfree(vb);
482}
483
89107000 484#ifdef CONFIG_PM_SLEEP
e562966d
AS
485static int virtballoon_freeze(struct virtio_device *vdev)
486{
4eb05d56
AS
487 struct virtio_balloon *vb = vdev->priv;
488
e562966d
AS
489 /*
490 * The kthread is already frozen by the PM core before this
491 * function is called.
492 */
493
c877bab5 494 remove_common(vb);
e562966d
AS
495 return 0;
496}
497
c45b4166 498static int virtballoon_restore(struct virtio_device *vdev)
4eb05d56
AS
499{
500 struct virtio_balloon *vb = vdev->priv;
501 int ret;
502
503 ret = init_vqs(vdev->priv);
504 if (ret)
505 return ret;
506
486d2e63
MT
507 virtio_device_ready(vdev);
508
4eb05d56
AS
509 fill_balloon(vb, towards_target(vb));
510 update_balloon_size(vb);
511 return 0;
512}
e562966d
AS
513#endif
514
9564e138
AL
515static unsigned int features[] = {
516 VIRTIO_BALLOON_F_MUST_TELL_HOST,
517 VIRTIO_BALLOON_F_STATS_VQ,
518};
c45a6816 519
d817cd52 520static struct virtio_driver virtio_balloon_driver = {
c45a6816
RR
521 .feature_table = features,
522 .feature_table_size = ARRAY_SIZE(features),
6b35e407
RR
523 .driver.name = KBUILD_MODNAME,
524 .driver.owner = THIS_MODULE,
525 .id_table = id_table,
526 .probe = virtballoon_probe,
8590dbc7 527 .remove = virtballoon_remove,
6b35e407 528 .config_changed = virtballoon_changed,
89107000 529#ifdef CONFIG_PM_SLEEP
e562966d
AS
530 .freeze = virtballoon_freeze,
531 .restore = virtballoon_restore,
e562966d 532#endif
6b35e407
RR
533};
534
b2a17029 535module_virtio_driver(virtio_balloon_driver);
6b35e407
RR
536MODULE_DEVICE_TABLE(virtio, id_table);
537MODULE_DESCRIPTION("Virtio balloon driver");
538MODULE_LICENSE("GPL");
This page took 0.583962 seconds and 5 git commands to generate.