1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Virtio balloon implementation, inspired by Dor Laor and Marcelo 4 * Tosatti's implementations. 5 * 6 * Copyright 2008 Rusty Russell IBM Corporation 7 */ 8 9 #include <linux/virtio.h> 10 #include <linux/virtio_balloon.h> 11 #include <linux/swap.h> 12 #include <linux/workqueue.h> 13 #include <linux/delay.h> 14 #include <linux/slab.h> 15 #include <linux/module.h> 16 #include <linux/balloon.h> 17 #include <linux/oom.h> 18 #include <linux/wait.h> 19 #include <linux/mm.h> 20 #include <linux/page_reporting.h> 21 22 /* 23 * Balloon device works in 4K page units. So each page is pointed to by 24 * multiple balloon pages. All memory counters in this driver are in balloon 25 * page units. 26 */ 27 #define VIRTIO_BALLOON_PAGES_PER_PAGE (unsigned int)(PAGE_SIZE >> VIRTIO_BALLOON_PFN_SHIFT) 28 #define VIRTIO_BALLOON_ARRAY_PFNS_MAX 256 29 /* Maximum number of (4k) pages to deflate on OOM notifications. */ 30 #define VIRTIO_BALLOON_OOM_NR_PAGES 256 31 #define VIRTIO_BALLOON_OOM_NOTIFY_PRIORITY 80 32 33 #define VIRTIO_BALLOON_FREE_PAGE_ALLOC_FLAG (__GFP_NORETRY | __GFP_NOWARN | \ 34 __GFP_NOMEMALLOC) 35 /* The order of free page blocks to report to host */ 36 #define VIRTIO_BALLOON_HINT_BLOCK_ORDER MAX_PAGE_ORDER 37 /* The size of a free page block in bytes */ 38 #define VIRTIO_BALLOON_HINT_BLOCK_BYTES \ 39 (1 << (VIRTIO_BALLOON_HINT_BLOCK_ORDER + PAGE_SHIFT)) 40 #define VIRTIO_BALLOON_HINT_BLOCK_PAGES (1 << VIRTIO_BALLOON_HINT_BLOCK_ORDER) 41 42 enum virtio_balloon_vq { 43 VIRTIO_BALLOON_VQ_INFLATE, 44 VIRTIO_BALLOON_VQ_DEFLATE, 45 VIRTIO_BALLOON_VQ_STATS, 46 VIRTIO_BALLOON_VQ_FREE_PAGE, 47 VIRTIO_BALLOON_VQ_REPORTING, 48 VIRTIO_BALLOON_VQ_MAX 49 }; 50 51 enum virtio_balloon_config_read { 52 VIRTIO_BALLOON_CONFIG_READ_CMD_ID = 0, 53 }; 54 55 struct virtio_balloon { 56 struct virtio_device *vdev; 57 struct virtqueue *inflate_vq, *deflate_vq, *stats_vq, *free_page_vq; 58 59 /* Balloon's own wq for cpu-intensive work items */ 60 struct workqueue_struct *balloon_wq; 61 /* The free page reporting work item submitted to the balloon wq */ 62 struct work_struct report_free_page_work; 63 64 /* The balloon servicing is delegated to a freezable workqueue. */ 65 struct work_struct update_balloon_stats_work; 66 struct work_struct update_balloon_size_work; 67 68 /* Prevent updating balloon when it is being canceled. */ 69 spinlock_t stop_update_lock; 70 bool stop_update; 71 /* Bitmap to indicate if reading the related config fields are needed */ 72 unsigned long config_read_bitmap; 73 74 /* The list of allocated free pages, waiting to be given back to mm */ 75 struct list_head free_page_list; 76 spinlock_t free_page_list_lock; 77 /* The number of free page blocks on the above list */ 78 unsigned long num_free_page_blocks; 79 /* 80 * The cmd id received from host. 81 * Read it via virtio_balloon_cmd_id_received to get the latest value 82 * sent from host. 83 */ 84 u32 cmd_id_received_cache; 85 /* The cmd id that is actively in use */ 86 __virtio32 cmd_id_active; 87 /* Buffer to store the stop sign */ 88 __virtio32 cmd_id_stop; 89 90 /* Waiting for host to ack the pages we released. */ 91 wait_queue_head_t acked; 92 93 /* Number of balloon pages we've told the Host we're not using. */ 94 unsigned int num_pages; 95 /* 96 * The pages we've told the Host we're not using are enqueued 97 * at vb_dev_info->pages list. 98 * Each page on this list adds VIRTIO_BALLOON_PAGES_PER_PAGE 99 * to num_pages above. 100 */ 101 struct balloon_dev_info vb_dev_info; 102 103 /* Synchronize access/update to this struct virtio_balloon elements */ 104 struct mutex balloon_lock; 105 106 /* The array of pfns we tell the Host about. */ 107 unsigned int num_pfns; 108 __virtio32 pfns[VIRTIO_BALLOON_ARRAY_PFNS_MAX]; 109 110 /* Memory statistics */ 111 struct virtio_balloon_stat stats[VIRTIO_BALLOON_S_NR]; 112 113 /* Shrinker to return free pages - VIRTIO_BALLOON_F_FREE_PAGE_HINT */ 114 struct shrinker *shrinker; 115 116 /* OOM notifier to deflate on OOM - VIRTIO_BALLOON_F_DEFLATE_ON_OOM */ 117 struct notifier_block oom_nb; 118 119 /* Free page reporting device */ 120 struct virtqueue *reporting_vq; 121 struct page_reporting_dev_info pr_dev_info; 122 123 /* State for keeping the wakeup_source active while adjusting the balloon */ 124 spinlock_t wakeup_lock; 125 bool processing_wakeup_event; 126 u32 wakeup_signal_mask; 127 }; 128 129 #define VIRTIO_BALLOON_WAKEUP_SIGNAL_ADJUST (1 << 0) 130 #define VIRTIO_BALLOON_WAKEUP_SIGNAL_STATS (1 << 1) 131 132 static const struct virtio_device_id id_table[] = { 133 { VIRTIO_ID_BALLOON, VIRTIO_DEV_ANY_ID }, 134 { 0 }, 135 }; 136 137 static u32 page_to_balloon_pfn(struct page *page) 138 { 139 unsigned long pfn = page_to_pfn(page); 140 141 BUILD_BUG_ON(PAGE_SHIFT < VIRTIO_BALLOON_PFN_SHIFT); 142 /* Convert pfn from Linux page size to balloon page size. */ 143 return pfn * VIRTIO_BALLOON_PAGES_PER_PAGE; 144 } 145 146 static void start_wakeup_event(struct virtio_balloon *vb, u32 mask) 147 { 148 unsigned long flags; 149 150 spin_lock_irqsave(&vb->wakeup_lock, flags); 151 vb->wakeup_signal_mask |= mask; 152 if (!vb->processing_wakeup_event) { 153 vb->processing_wakeup_event = true; 154 pm_stay_awake(&vb->vdev->dev); 155 } 156 spin_unlock_irqrestore(&vb->wakeup_lock, flags); 157 } 158 159 static void process_wakeup_event(struct virtio_balloon *vb, u32 mask) 160 { 161 spin_lock_irq(&vb->wakeup_lock); 162 vb->wakeup_signal_mask &= ~mask; 163 spin_unlock_irq(&vb->wakeup_lock); 164 } 165 166 static void finish_wakeup_event(struct virtio_balloon *vb) 167 { 168 spin_lock_irq(&vb->wakeup_lock); 169 if (!vb->wakeup_signal_mask && vb->processing_wakeup_event) { 170 vb->processing_wakeup_event = false; 171 pm_relax(&vb->vdev->dev); 172 } 173 spin_unlock_irq(&vb->wakeup_lock); 174 } 175 176 static void balloon_ack(struct virtqueue *vq) 177 { 178 struct virtio_balloon *vb = vq->vdev->priv; 179 180 wake_up(&vb->acked); 181 } 182 183 static void tell_host(struct virtio_balloon *vb, struct virtqueue *vq) 184 { 185 struct scatterlist sg; 186 unsigned int len; 187 188 sg_init_one(&sg, vb->pfns, sizeof(vb->pfns[0]) * vb->num_pfns); 189 190 /* We should always be able to add one buffer to an empty queue. */ 191 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL); 192 virtqueue_kick(vq); 193 194 /* When host has read buffer, this completes via balloon_ack */ 195 wait_event(vb->acked, virtqueue_get_buf(vq, &len)); 196 197 } 198 199 static int virtballoon_free_page_report(struct page_reporting_dev_info *pr_dev_info, 200 struct scatterlist *sg, unsigned int nents) 201 { 202 struct virtio_balloon *vb = 203 container_of(pr_dev_info, struct virtio_balloon, pr_dev_info); 204 struct virtqueue *vq = vb->reporting_vq; 205 unsigned int unused, err; 206 207 /* We should always be able to add these buffers to an empty queue. */ 208 err = virtqueue_add_inbuf(vq, sg, nents, vb, GFP_NOWAIT); 209 210 /* 211 * In the extremely unlikely case that something has occurred and we 212 * are able to trigger an error we will simply display a warning 213 * and exit without actually processing the pages. 214 */ 215 if (WARN_ON_ONCE(err)) 216 return err; 217 218 virtqueue_kick(vq); 219 220 /* When host has read buffer, this completes via balloon_ack */ 221 wait_event(vb->acked, virtqueue_get_buf(vq, &unused)); 222 223 return 0; 224 } 225 226 static void set_page_pfns(struct virtio_balloon *vb, 227 __virtio32 pfns[], struct page *page) 228 { 229 unsigned int i; 230 231 BUILD_BUG_ON(VIRTIO_BALLOON_PAGES_PER_PAGE > VIRTIO_BALLOON_ARRAY_PFNS_MAX); 232 233 /* 234 * Set balloon pfns pointing at this page. 235 * Note that the first pfn points at start of the page. 236 */ 237 for (i = 0; i < VIRTIO_BALLOON_PAGES_PER_PAGE; i++) 238 pfns[i] = cpu_to_virtio32(vb->vdev, 239 page_to_balloon_pfn(page) + i); 240 } 241 242 static unsigned int fill_balloon(struct virtio_balloon *vb, size_t num) 243 { 244 unsigned int num_allocated_pages; 245 struct page *page, *next; 246 unsigned int num_pfns; 247 LIST_HEAD(pages); 248 249 /* We can only do one array worth at a time. */ 250 num = min(num, ARRAY_SIZE(vb->pfns)); 251 252 for (num_pfns = 0; num_pfns < num; 253 num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) { 254 page = balloon_page_alloc(); 255 256 if (!page) { 257 dev_info_ratelimited(&vb->vdev->dev, 258 "Out of puff! Can't get %u pages\n", 259 VIRTIO_BALLOON_PAGES_PER_PAGE); 260 /* Sleep for at least 1/5 of a second before retry. */ 261 msleep(200); 262 break; 263 } 264 265 list_add(&page->lru, &pages); 266 } 267 268 mutex_lock(&vb->balloon_lock); 269 270 vb->num_pfns = 0; 271 272 list_for_each_entry_safe(page, next, &pages, lru) { 273 list_del(&page->lru); 274 balloon_page_enqueue(&vb->vb_dev_info, page); 275 276 set_page_pfns(vb, vb->pfns + vb->num_pfns, page); 277 vb->num_pages += VIRTIO_BALLOON_PAGES_PER_PAGE; 278 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE; 279 } 280 281 num_allocated_pages = vb->num_pfns; 282 /* Did we get any? */ 283 if (vb->num_pfns != 0) 284 tell_host(vb, vb->inflate_vq); 285 mutex_unlock(&vb->balloon_lock); 286 287 return num_allocated_pages; 288 } 289 290 static void release_pages_balloon(struct virtio_balloon *vb, 291 struct list_head *pages) 292 { 293 struct page *page, *next; 294 295 list_for_each_entry_safe(page, next, pages, lru) { 296 list_del(&page->lru); 297 put_page(page); /* balloon reference */ 298 } 299 } 300 301 static unsigned int leak_balloon(struct virtio_balloon *vb, size_t num) 302 { 303 unsigned int num_freed_pages; 304 struct page *page; 305 struct balloon_dev_info *vb_dev_info = &vb->vb_dev_info; 306 LIST_HEAD(pages); 307 308 /* We can only do one array worth at a time. */ 309 num = min(num, ARRAY_SIZE(vb->pfns)); 310 311 mutex_lock(&vb->balloon_lock); 312 /* We can't release more pages than taken */ 313 num = min(num, (size_t)vb->num_pages); 314 for (vb->num_pfns = 0; vb->num_pfns < num; 315 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) { 316 page = balloon_page_dequeue(vb_dev_info); 317 if (!page) 318 break; 319 set_page_pfns(vb, vb->pfns + vb->num_pfns, page); 320 list_add(&page->lru, &pages); 321 vb->num_pages -= VIRTIO_BALLOON_PAGES_PER_PAGE; 322 } 323 324 num_freed_pages = vb->num_pfns; 325 /* 326 * Note that if 327 * virtio_has_feature(vdev, VIRTIO_BALLOON_F_MUST_TELL_HOST); 328 * is true, we *have* to do it in this order 329 */ 330 if (vb->num_pfns != 0) 331 tell_host(vb, vb->deflate_vq); 332 release_pages_balloon(vb, &pages); 333 mutex_unlock(&vb->balloon_lock); 334 return num_freed_pages; 335 } 336 337 static inline void update_stat(struct virtio_balloon *vb, int idx, 338 u16 tag, u64 val) 339 { 340 BUG_ON(idx >= VIRTIO_BALLOON_S_NR); 341 vb->stats[idx].tag = cpu_to_virtio16(vb->vdev, tag); 342 vb->stats[idx].val = cpu_to_virtio64(vb->vdev, val); 343 } 344 345 #define pages_to_bytes(x) ((u64)(x) << PAGE_SHIFT) 346 347 #ifdef CONFIG_VM_EVENT_COUNTERS 348 /* Return the number of entries filled by vm events */ 349 static inline unsigned int update_balloon_vm_stats(struct virtio_balloon *vb) 350 { 351 unsigned long events[NR_VM_EVENT_ITEMS]; 352 unsigned int idx = 0; 353 unsigned int zid; 354 unsigned long stall = 0; 355 356 all_vm_events(events); 357 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_IN, 358 pages_to_bytes(events[PSWPIN])); 359 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_OUT, 360 pages_to_bytes(events[PSWPOUT])); 361 update_stat(vb, idx++, VIRTIO_BALLOON_S_MAJFLT, events[PGMAJFAULT]); 362 update_stat(vb, idx++, VIRTIO_BALLOON_S_MINFLT, events[PGFAULT]); 363 update_stat(vb, idx++, VIRTIO_BALLOON_S_OOM_KILL, events[OOM_KILL]); 364 365 /* sum all the stall events */ 366 for (zid = 0; zid < MAX_NR_ZONES; zid++) 367 stall += events[ALLOCSTALL_NORMAL - ZONE_NORMAL + zid]; 368 369 update_stat(vb, idx++, VIRTIO_BALLOON_S_ALLOC_STALL, stall); 370 371 update_stat(vb, idx++, VIRTIO_BALLOON_S_ASYNC_SCAN, 372 pages_to_bytes(events[PGSCAN_KSWAPD])); 373 update_stat(vb, idx++, VIRTIO_BALLOON_S_DIRECT_SCAN, 374 pages_to_bytes(events[PGSCAN_DIRECT])); 375 update_stat(vb, idx++, VIRTIO_BALLOON_S_ASYNC_RECLAIM, 376 pages_to_bytes(events[PGSTEAL_KSWAPD])); 377 update_stat(vb, idx++, VIRTIO_BALLOON_S_DIRECT_RECLAIM, 378 pages_to_bytes(events[PGSTEAL_DIRECT])); 379 380 #ifdef CONFIG_HUGETLB_PAGE 381 update_stat(vb, idx++, VIRTIO_BALLOON_S_HTLB_PGALLOC, 382 events[HTLB_BUDDY_PGALLOC]); 383 update_stat(vb, idx++, VIRTIO_BALLOON_S_HTLB_PGFAIL, 384 events[HTLB_BUDDY_PGALLOC_FAIL]); 385 #endif /* CONFIG_HUGETLB_PAGE */ 386 387 return idx; 388 } 389 #else /* CONFIG_VM_EVENT_COUNTERS */ 390 static inline unsigned int update_balloon_vm_stats(struct virtio_balloon *vb) 391 { 392 return 0; 393 } 394 #endif /* CONFIG_VM_EVENT_COUNTERS */ 395 396 static unsigned int update_balloon_stats(struct virtio_balloon *vb) 397 { 398 struct sysinfo i; 399 unsigned int idx; 400 long available; 401 unsigned long caches; 402 403 idx = update_balloon_vm_stats(vb); 404 405 si_meminfo(&i); 406 available = si_mem_available(); 407 caches = global_node_page_state(NR_FILE_PAGES); 408 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMFREE, 409 pages_to_bytes(i.freeram)); 410 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMTOT, 411 pages_to_bytes(i.totalram)); 412 update_stat(vb, idx++, VIRTIO_BALLOON_S_AVAIL, 413 pages_to_bytes(available)); 414 update_stat(vb, idx++, VIRTIO_BALLOON_S_CACHES, 415 pages_to_bytes(caches)); 416 417 return idx; 418 } 419 420 /* 421 * While most virtqueues communicate guest-initiated requests to the hypervisor, 422 * the stats queue operates in reverse. The driver initializes the virtqueue 423 * with a single buffer. From that point forward, all conversations consist of 424 * a hypervisor request (a call to this function) which directs us to refill 425 * the virtqueue with a fresh stats buffer. Since stats collection can sleep, 426 * we delegate the job to a freezable workqueue that will do the actual work via 427 * stats_handle_request(). 428 */ 429 static void stats_request(struct virtqueue *vq) 430 { 431 struct virtio_balloon *vb = vq->vdev->priv; 432 433 spin_lock(&vb->stop_update_lock); 434 if (!vb->stop_update) { 435 start_wakeup_event(vb, VIRTIO_BALLOON_WAKEUP_SIGNAL_STATS); 436 queue_work(system_freezable_wq, &vb->update_balloon_stats_work); 437 } 438 spin_unlock(&vb->stop_update_lock); 439 } 440 441 static void stats_handle_request(struct virtio_balloon *vb) 442 { 443 struct virtqueue *vq; 444 struct scatterlist sg; 445 unsigned int len, num_stats; 446 447 num_stats = update_balloon_stats(vb); 448 449 vq = vb->stats_vq; 450 if (!virtqueue_get_buf(vq, &len)) 451 return; 452 sg_init_one(&sg, vb->stats, sizeof(vb->stats[0]) * num_stats); 453 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL); 454 virtqueue_kick(vq); 455 } 456 457 static inline s64 towards_target(struct virtio_balloon *vb) 458 { 459 s64 target; 460 u32 num_pages; 461 462 /* Legacy balloon config space is LE, unlike all other devices. */ 463 virtio_cread_le(vb->vdev, struct virtio_balloon_config, num_pages, 464 &num_pages); 465 466 /* 467 * Aligned up to guest page size to avoid inflating and deflating 468 * balloon endlessly. 469 */ 470 target = ALIGN(num_pages, VIRTIO_BALLOON_PAGES_PER_PAGE); 471 return target - vb->num_pages; 472 } 473 474 /* Gives back @num_to_return blocks of free pages to mm. */ 475 static unsigned long return_free_pages_to_mm(struct virtio_balloon *vb, 476 unsigned long num_to_return) 477 { 478 unsigned long num_returned = 0; 479 struct page *page, *next; 480 481 if (unlikely(!num_to_return)) 482 return 0; 483 484 spin_lock_irq(&vb->free_page_list_lock); 485 486 list_for_each_entry_safe(page, next, &vb->free_page_list, lru) { 487 list_del(&page->lru); 488 __free_pages(page, VIRTIO_BALLOON_HINT_BLOCK_ORDER); 489 if (++num_returned == num_to_return) 490 break; 491 } 492 vb->num_free_page_blocks -= num_returned; 493 spin_unlock_irq(&vb->free_page_list_lock); 494 495 return num_returned; 496 } 497 498 static void virtio_balloon_queue_free_page_work(struct virtio_balloon *vb) 499 { 500 if (!virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) 501 return; 502 503 /* No need to queue the work if the bit was already set. */ 504 if (test_and_set_bit(VIRTIO_BALLOON_CONFIG_READ_CMD_ID, 505 &vb->config_read_bitmap)) 506 return; 507 508 queue_work(vb->balloon_wq, &vb->report_free_page_work); 509 } 510 511 static void start_update_balloon_size(struct virtio_balloon *vb) 512 { 513 start_wakeup_event(vb, VIRTIO_BALLOON_WAKEUP_SIGNAL_ADJUST); 514 queue_work(system_freezable_wq, &vb->update_balloon_size_work); 515 } 516 517 static void virtballoon_changed(struct virtio_device *vdev) 518 { 519 struct virtio_balloon *vb = vdev->priv; 520 unsigned long flags; 521 522 spin_lock_irqsave(&vb->stop_update_lock, flags); 523 if (!vb->stop_update) { 524 start_update_balloon_size(vb); 525 virtio_balloon_queue_free_page_work(vb); 526 } 527 spin_unlock_irqrestore(&vb->stop_update_lock, flags); 528 } 529 530 static void update_balloon_size(struct virtio_balloon *vb) 531 { 532 u32 actual = vb->num_pages; 533 534 /* Legacy balloon config space is LE, unlike all other devices. */ 535 virtio_cwrite_le(vb->vdev, struct virtio_balloon_config, actual, 536 &actual); 537 } 538 539 static void update_balloon_stats_func(struct work_struct *work) 540 { 541 struct virtio_balloon *vb; 542 543 vb = container_of(work, struct virtio_balloon, 544 update_balloon_stats_work); 545 546 process_wakeup_event(vb, VIRTIO_BALLOON_WAKEUP_SIGNAL_STATS); 547 stats_handle_request(vb); 548 finish_wakeup_event(vb); 549 } 550 551 static void update_balloon_size_func(struct work_struct *work) 552 { 553 struct virtio_balloon *vb; 554 s64 diff; 555 556 vb = container_of(work, struct virtio_balloon, 557 update_balloon_size_work); 558 559 process_wakeup_event(vb, VIRTIO_BALLOON_WAKEUP_SIGNAL_ADJUST); 560 561 diff = towards_target(vb); 562 563 if (diff) { 564 if (diff > 0) 565 diff -= fill_balloon(vb, diff); 566 else 567 diff += leak_balloon(vb, -diff); 568 update_balloon_size(vb); 569 } 570 571 if (diff) 572 queue_work(system_freezable_wq, work); 573 else 574 finish_wakeup_event(vb); 575 } 576 577 static int init_vqs(struct virtio_balloon *vb) 578 { 579 struct virtqueue_info vqs_info[VIRTIO_BALLOON_VQ_MAX] = {}; 580 struct virtqueue *vqs[VIRTIO_BALLOON_VQ_MAX]; 581 int err; 582 583 /* 584 * Inflateq and deflateq are used unconditionally. The names[] 585 * will be NULL if the related feature is not enabled, which will 586 * cause no allocation for the corresponding virtqueue in find_vqs. 587 */ 588 vqs_info[VIRTIO_BALLOON_VQ_INFLATE].callback = balloon_ack; 589 vqs_info[VIRTIO_BALLOON_VQ_INFLATE].name = "inflate"; 590 vqs_info[VIRTIO_BALLOON_VQ_DEFLATE].callback = balloon_ack; 591 vqs_info[VIRTIO_BALLOON_VQ_DEFLATE].name = "deflate"; 592 593 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ)) { 594 vqs_info[VIRTIO_BALLOON_VQ_STATS].name = "stats"; 595 vqs_info[VIRTIO_BALLOON_VQ_STATS].callback = stats_request; 596 } 597 598 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) 599 vqs_info[VIRTIO_BALLOON_VQ_FREE_PAGE].name = "free_page_vq"; 600 601 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_REPORTING)) { 602 vqs_info[VIRTIO_BALLOON_VQ_REPORTING].name = "reporting_vq"; 603 vqs_info[VIRTIO_BALLOON_VQ_REPORTING].callback = balloon_ack; 604 } 605 606 err = virtio_find_vqs(vb->vdev, VIRTIO_BALLOON_VQ_MAX, vqs, 607 vqs_info, NULL); 608 if (err) 609 return err; 610 611 vb->inflate_vq = vqs[VIRTIO_BALLOON_VQ_INFLATE]; 612 vb->deflate_vq = vqs[VIRTIO_BALLOON_VQ_DEFLATE]; 613 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ)) { 614 struct scatterlist sg; 615 unsigned int num_stats; 616 vb->stats_vq = vqs[VIRTIO_BALLOON_VQ_STATS]; 617 618 /* 619 * Prime this virtqueue with one buffer so the hypervisor can 620 * use it to signal us later (it can't be broken yet!). 621 */ 622 num_stats = update_balloon_stats(vb); 623 624 sg_init_one(&sg, vb->stats, sizeof(vb->stats[0]) * num_stats); 625 err = virtqueue_add_outbuf(vb->stats_vq, &sg, 1, vb, 626 GFP_KERNEL); 627 if (err) { 628 dev_warn(&vb->vdev->dev, "%s: add stat_vq failed\n", 629 __func__); 630 return err; 631 } 632 virtqueue_kick(vb->stats_vq); 633 } 634 635 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) 636 vb->free_page_vq = vqs[VIRTIO_BALLOON_VQ_FREE_PAGE]; 637 638 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_REPORTING)) 639 vb->reporting_vq = vqs[VIRTIO_BALLOON_VQ_REPORTING]; 640 641 return 0; 642 } 643 644 static u32 virtio_balloon_cmd_id_received(struct virtio_balloon *vb) 645 { 646 if (test_and_clear_bit(VIRTIO_BALLOON_CONFIG_READ_CMD_ID, 647 &vb->config_read_bitmap)) { 648 /* Legacy balloon config space is LE, unlike all other devices. */ 649 virtio_cread_le(vb->vdev, struct virtio_balloon_config, 650 free_page_hint_cmd_id, 651 &vb->cmd_id_received_cache); 652 } 653 654 return vb->cmd_id_received_cache; 655 } 656 657 static int send_cmd_id_start(struct virtio_balloon *vb) 658 { 659 struct scatterlist sg; 660 struct virtqueue *vq = vb->free_page_vq; 661 int err, unused; 662 663 /* Detach all the used buffers from the vq */ 664 while (virtqueue_get_buf(vq, &unused)) 665 ; 666 667 vb->cmd_id_active = cpu_to_virtio32(vb->vdev, 668 virtio_balloon_cmd_id_received(vb)); 669 sg_init_one(&sg, &vb->cmd_id_active, sizeof(vb->cmd_id_active)); 670 err = virtqueue_add_outbuf(vq, &sg, 1, &vb->cmd_id_active, GFP_KERNEL); 671 if (!err) 672 virtqueue_kick(vq); 673 return err; 674 } 675 676 static int send_cmd_id_stop(struct virtio_balloon *vb) 677 { 678 struct scatterlist sg; 679 struct virtqueue *vq = vb->free_page_vq; 680 int err, unused; 681 682 /* Detach all the used buffers from the vq */ 683 while (virtqueue_get_buf(vq, &unused)) 684 ; 685 686 sg_init_one(&sg, &vb->cmd_id_stop, sizeof(vb->cmd_id_stop)); 687 err = virtqueue_add_outbuf(vq, &sg, 1, &vb->cmd_id_stop, GFP_KERNEL); 688 if (!err) 689 virtqueue_kick(vq); 690 return err; 691 } 692 693 static int get_free_page_and_send(struct virtio_balloon *vb) 694 { 695 struct virtqueue *vq = vb->free_page_vq; 696 struct page *page; 697 struct scatterlist sg; 698 int err, unused; 699 void *p; 700 701 /* Detach all the used buffers from the vq */ 702 while (virtqueue_get_buf(vq, &unused)) 703 ; 704 705 page = alloc_pages(VIRTIO_BALLOON_FREE_PAGE_ALLOC_FLAG, 706 VIRTIO_BALLOON_HINT_BLOCK_ORDER); 707 /* 708 * When the allocation returns NULL, it indicates that we have got all 709 * the possible free pages, so return -EINTR to stop. 710 */ 711 if (!page) 712 return -EINTR; 713 714 p = page_address(page); 715 sg_init_one(&sg, p, VIRTIO_BALLOON_HINT_BLOCK_BYTES); 716 /* There is always 1 entry reserved for the cmd id to use. */ 717 if (vq->num_free > 1) { 718 err = virtqueue_add_inbuf(vq, &sg, 1, p, GFP_KERNEL); 719 if (unlikely(err)) { 720 __free_pages(page, VIRTIO_BALLOON_HINT_BLOCK_ORDER); 721 return err; 722 } 723 virtqueue_kick(vq); 724 spin_lock_irq(&vb->free_page_list_lock); 725 list_add(&page->lru, &vb->free_page_list); 726 vb->num_free_page_blocks++; 727 spin_unlock_irq(&vb->free_page_list_lock); 728 } else { 729 /* 730 * The vq has no available entry to add this page block, so 731 * just free it. 732 */ 733 __free_pages(page, VIRTIO_BALLOON_HINT_BLOCK_ORDER); 734 } 735 736 return 0; 737 } 738 739 static int send_free_pages(struct virtio_balloon *vb) 740 { 741 int err; 742 u32 cmd_id_active; 743 744 while (1) { 745 /* 746 * If a stop id or a new cmd id was just received from host, 747 * stop the reporting. 748 */ 749 cmd_id_active = virtio32_to_cpu(vb->vdev, vb->cmd_id_active); 750 if (unlikely(cmd_id_active != 751 virtio_balloon_cmd_id_received(vb))) 752 break; 753 754 /* 755 * The free page blocks are allocated and sent to host one by 756 * one. 757 */ 758 err = get_free_page_and_send(vb); 759 if (err == -EINTR) 760 break; 761 else if (unlikely(err)) 762 return err; 763 } 764 765 return 0; 766 } 767 768 static void virtio_balloon_report_free_page(struct virtio_balloon *vb) 769 { 770 int err; 771 struct device *dev = &vb->vdev->dev; 772 773 /* Start by sending the received cmd id to host with an outbuf. */ 774 err = send_cmd_id_start(vb); 775 if (unlikely(err)) 776 dev_err(dev, "Failed to send a start id, err = %d\n", err); 777 778 err = send_free_pages(vb); 779 if (unlikely(err)) 780 dev_err(dev, "Failed to send a free page, err = %d\n", err); 781 782 /* End by sending a stop id to host with an outbuf. */ 783 err = send_cmd_id_stop(vb); 784 if (unlikely(err)) 785 dev_err(dev, "Failed to send a stop id, err = %d\n", err); 786 } 787 788 static void report_free_page_func(struct work_struct *work) 789 { 790 struct virtio_balloon *vb = container_of(work, struct virtio_balloon, 791 report_free_page_work); 792 u32 cmd_id_received; 793 794 cmd_id_received = virtio_balloon_cmd_id_received(vb); 795 if (cmd_id_received == VIRTIO_BALLOON_CMD_ID_DONE) { 796 /* Pass ULONG_MAX to give back all the free pages */ 797 return_free_pages_to_mm(vb, ULONG_MAX); 798 } else if (cmd_id_received != VIRTIO_BALLOON_CMD_ID_STOP && 799 cmd_id_received != 800 virtio32_to_cpu(vb->vdev, vb->cmd_id_active)) { 801 virtio_balloon_report_free_page(vb); 802 } 803 } 804 805 #ifdef CONFIG_BALLOON_MIGRATION 806 /* 807 * virtballoon_migratepage - perform the balloon page migration on behalf of 808 * a compaction thread. (called under page lock) 809 * @vb_dev_info: the balloon device 810 * @newpage: page that will replace the isolated page after migration finishes. 811 * @page : the isolated (old) page that is about to be migrated to newpage. 812 * @mode : compaction mode -- not used for balloon page migration. 813 * 814 * After a ballooned page gets isolated by compaction procedures, this is the 815 * function that performs the page migration on behalf of a compaction thread 816 * The page migration for virtio balloon is done in a simple swap fashion which 817 * follows these two macro steps: 818 * 1) insert newpage into vb->pages list and update the host about it; 819 * 2) update the host about the old page removed from vb->pages list; 820 * 821 * This function preforms the balloon page migration task. 822 * Called through movable_operations->migrate_page 823 */ 824 static int virtballoon_migratepage(struct balloon_dev_info *vb_dev_info, 825 struct page *newpage, struct page *page, enum migrate_mode mode) 826 { 827 struct virtio_balloon *vb = container_of(vb_dev_info, 828 struct virtio_balloon, vb_dev_info); 829 830 /* 831 * In order to avoid lock contention while migrating pages concurrently 832 * to leak_balloon() or fill_balloon() we just give up the balloon_lock 833 * this turn, as it is easier to retry the page migration later. 834 * This also prevents fill_balloon() getting stuck into a mutex 835 * recursion in the case it ends up triggering memory compaction 836 * while it is attempting to inflate the ballon. 837 */ 838 if (!mutex_trylock(&vb->balloon_lock)) 839 return -EAGAIN; 840 841 /* balloon's page migration 1st step -- inflate "newpage" */ 842 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE; 843 set_page_pfns(vb, vb->pfns, newpage); 844 tell_host(vb, vb->inflate_vq); 845 846 /* balloon's page migration 2nd step -- deflate "page" */ 847 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE; 848 set_page_pfns(vb, vb->pfns, page); 849 tell_host(vb, vb->deflate_vq); 850 851 mutex_unlock(&vb->balloon_lock); 852 return 0; 853 } 854 #endif /* CONFIG_BALLOON_MIGRATION */ 855 856 static unsigned long shrink_free_pages(struct virtio_balloon *vb, 857 unsigned long pages_to_free) 858 { 859 unsigned long blocks_to_free, blocks_freed; 860 861 pages_to_free = round_up(pages_to_free, 862 VIRTIO_BALLOON_HINT_BLOCK_PAGES); 863 blocks_to_free = pages_to_free / VIRTIO_BALLOON_HINT_BLOCK_PAGES; 864 blocks_freed = return_free_pages_to_mm(vb, blocks_to_free); 865 866 return blocks_freed * VIRTIO_BALLOON_HINT_BLOCK_PAGES; 867 } 868 869 static unsigned long virtio_balloon_shrinker_scan(struct shrinker *shrinker, 870 struct shrink_control *sc) 871 { 872 struct virtio_balloon *vb = shrinker->private_data; 873 874 return shrink_free_pages(vb, sc->nr_to_scan); 875 } 876 877 static unsigned long virtio_balloon_shrinker_count(struct shrinker *shrinker, 878 struct shrink_control *sc) 879 { 880 struct virtio_balloon *vb = shrinker->private_data; 881 882 return vb->num_free_page_blocks * VIRTIO_BALLOON_HINT_BLOCK_PAGES; 883 } 884 885 static int virtio_balloon_oom_notify(struct notifier_block *nb, 886 unsigned long dummy, void *parm) 887 { 888 struct virtio_balloon *vb = container_of(nb, 889 struct virtio_balloon, oom_nb); 890 unsigned long *freed = parm; 891 892 *freed += leak_balloon(vb, VIRTIO_BALLOON_OOM_NR_PAGES) / 893 VIRTIO_BALLOON_PAGES_PER_PAGE; 894 update_balloon_size(vb); 895 896 return NOTIFY_OK; 897 } 898 899 static void virtio_balloon_unregister_shrinker(struct virtio_balloon *vb) 900 { 901 shrinker_free(vb->shrinker); 902 } 903 904 static int virtio_balloon_register_shrinker(struct virtio_balloon *vb) 905 { 906 vb->shrinker = shrinker_alloc(0, "virtio-balloon"); 907 if (!vb->shrinker) 908 return -ENOMEM; 909 910 vb->shrinker->scan_objects = virtio_balloon_shrinker_scan; 911 vb->shrinker->count_objects = virtio_balloon_shrinker_count; 912 vb->shrinker->private_data = vb; 913 914 shrinker_register(vb->shrinker); 915 916 return 0; 917 } 918 919 static int virtballoon_probe(struct virtio_device *vdev) 920 { 921 struct virtio_balloon *vb; 922 int err; 923 924 if (!vdev->config->get) { 925 dev_err(&vdev->dev, "%s failure: config access disabled\n", 926 __func__); 927 return -EINVAL; 928 } 929 930 vdev->priv = vb = kzalloc(sizeof(*vb), GFP_KERNEL); 931 if (!vb) { 932 err = -ENOMEM; 933 goto out; 934 } 935 936 INIT_WORK(&vb->update_balloon_stats_work, update_balloon_stats_func); 937 INIT_WORK(&vb->update_balloon_size_work, update_balloon_size_func); 938 spin_lock_init(&vb->stop_update_lock); 939 mutex_init(&vb->balloon_lock); 940 init_waitqueue_head(&vb->acked); 941 vb->vdev = vdev; 942 943 balloon_devinfo_init(&vb->vb_dev_info); 944 945 err = init_vqs(vb); 946 if (err) 947 goto out_free_vb; 948 949 if (!virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) 950 vb->vb_dev_info.adjust_managed_page_count = true; 951 #ifdef CONFIG_BALLOON_MIGRATION 952 vb->vb_dev_info.migratepage = virtballoon_migratepage; 953 #endif 954 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) { 955 /* 956 * There is always one entry reserved for cmd id, so the ring 957 * size needs to be at least two to report free page hints. 958 */ 959 if (virtqueue_get_vring_size(vb->free_page_vq) < 2) { 960 err = -ENOSPC; 961 goto out_del_vqs; 962 } 963 vb->balloon_wq = alloc_workqueue("balloon-wq", 964 WQ_FREEZABLE | WQ_CPU_INTENSIVE | WQ_PERCPU, 965 0); 966 if (!vb->balloon_wq) { 967 err = -ENOMEM; 968 goto out_del_vqs; 969 } 970 INIT_WORK(&vb->report_free_page_work, report_free_page_func); 971 vb->cmd_id_received_cache = VIRTIO_BALLOON_CMD_ID_STOP; 972 vb->cmd_id_active = cpu_to_virtio32(vb->vdev, 973 VIRTIO_BALLOON_CMD_ID_STOP); 974 vb->cmd_id_stop = cpu_to_virtio32(vb->vdev, 975 VIRTIO_BALLOON_CMD_ID_STOP); 976 spin_lock_init(&vb->free_page_list_lock); 977 INIT_LIST_HEAD(&vb->free_page_list); 978 /* 979 * We're allowed to reuse any free pages, even if they are 980 * still to be processed by the host. 981 */ 982 err = virtio_balloon_register_shrinker(vb); 983 if (err) 984 goto out_del_balloon_wq; 985 } 986 987 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) { 988 vb->oom_nb.notifier_call = virtio_balloon_oom_notify; 989 vb->oom_nb.priority = VIRTIO_BALLOON_OOM_NOTIFY_PRIORITY; 990 err = register_oom_notifier(&vb->oom_nb); 991 if (err < 0) 992 goto out_unregister_shrinker; 993 } 994 995 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_PAGE_POISON)) { 996 /* Start with poison val of 0 representing general init */ 997 __u32 poison_val = 0; 998 999 /* 1000 * Let the hypervisor know that we are expecting a 1001 * specific value to be written back in balloon pages. 1002 * 1003 * If the PAGE_POISON value was larger than a byte we would 1004 * need to byte swap poison_val here to guarantee it is 1005 * little-endian. However for now it is a single byte so we 1006 * can pass it as-is. 1007 */ 1008 if (!want_init_on_free()) 1009 memset(&poison_val, PAGE_POISON, sizeof(poison_val)); 1010 1011 virtio_cwrite_le(vb->vdev, struct virtio_balloon_config, 1012 poison_val, &poison_val); 1013 } 1014 1015 vb->pr_dev_info.report = virtballoon_free_page_report; 1016 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_REPORTING)) { 1017 unsigned int capacity; 1018 1019 capacity = virtqueue_get_vring_size(vb->reporting_vq); 1020 if (capacity < PAGE_REPORTING_CAPACITY) { 1021 err = -ENOSPC; 1022 goto out_unregister_oom; 1023 } 1024 1025 /* 1026 * The default page reporting order is @pageblock_order, which 1027 * corresponds to 512MB in size on ARM64 when 64KB base page 1028 * size is used. The page reporting won't be triggered if the 1029 * freeing page can't come up with a free area like that huge. 1030 * So we specify the page reporting order to 5, corresponding 1031 * to 2MB. It helps to avoid THP splitting if 4KB base page 1032 * size is used by host. 1033 * 1034 * Ideally, the page reporting order is selected based on the 1035 * host's base page size. However, it needs more work to report 1036 * that value. The hard-coded order would be fine currently. 1037 */ 1038 #if defined(CONFIG_ARM64) && defined(CONFIG_ARM64_64K_PAGES) 1039 vb->pr_dev_info.order = 5; 1040 #endif 1041 1042 err = page_reporting_register(&vb->pr_dev_info); 1043 if (err) 1044 goto out_unregister_oom; 1045 } 1046 1047 spin_lock_init(&vb->wakeup_lock); 1048 1049 /* 1050 * The virtio balloon itself can't wake up the device, but it is 1051 * responsible for processing wakeup events passed up from the transport 1052 * layer. Wakeup sources don't support nesting/chaining calls, so we use 1053 * our own wakeup source to ensure wakeup events are properly handled 1054 * without trampling on the transport layer's wakeup source. 1055 */ 1056 device_set_wakeup_capable(&vb->vdev->dev, true); 1057 1058 virtio_device_ready(vdev); 1059 1060 if (towards_target(vb)) 1061 virtballoon_changed(vdev); 1062 return 0; 1063 1064 out_unregister_oom: 1065 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) 1066 unregister_oom_notifier(&vb->oom_nb); 1067 out_unregister_shrinker: 1068 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) 1069 virtio_balloon_unregister_shrinker(vb); 1070 out_del_balloon_wq: 1071 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) 1072 destroy_workqueue(vb->balloon_wq); 1073 out_del_vqs: 1074 vdev->config->del_vqs(vdev); 1075 out_free_vb: 1076 kfree(vb); 1077 out: 1078 return err; 1079 } 1080 1081 static void remove_common(struct virtio_balloon *vb) 1082 { 1083 /* There might be pages left in the balloon: free them. */ 1084 while (vb->num_pages) 1085 leak_balloon(vb, vb->num_pages); 1086 update_balloon_size(vb); 1087 1088 /* There might be free pages that are being reported: release them. */ 1089 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) 1090 return_free_pages_to_mm(vb, ULONG_MAX); 1091 1092 /* Now we reset the device so we can clean up the queues. */ 1093 virtio_reset_device(vb->vdev); 1094 1095 vb->vdev->config->del_vqs(vb->vdev); 1096 } 1097 1098 static void virtballoon_remove(struct virtio_device *vdev) 1099 { 1100 struct virtio_balloon *vb = vdev->priv; 1101 1102 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_REPORTING)) 1103 page_reporting_unregister(&vb->pr_dev_info); 1104 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) 1105 unregister_oom_notifier(&vb->oom_nb); 1106 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) 1107 virtio_balloon_unregister_shrinker(vb); 1108 spin_lock_irq(&vb->stop_update_lock); 1109 vb->stop_update = true; 1110 spin_unlock_irq(&vb->stop_update_lock); 1111 cancel_work_sync(&vb->update_balloon_size_work); 1112 cancel_work_sync(&vb->update_balloon_stats_work); 1113 1114 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) { 1115 cancel_work_sync(&vb->report_free_page_work); 1116 destroy_workqueue(vb->balloon_wq); 1117 } 1118 1119 remove_common(vb); 1120 kfree(vb); 1121 } 1122 1123 #ifdef CONFIG_PM_SLEEP 1124 static int virtballoon_freeze(struct virtio_device *vdev) 1125 { 1126 struct virtio_balloon *vb = vdev->priv; 1127 1128 /* 1129 * The workqueue is already frozen by the PM core before this 1130 * function is called. 1131 */ 1132 remove_common(vb); 1133 return 0; 1134 } 1135 1136 static int virtballoon_restore(struct virtio_device *vdev) 1137 { 1138 struct virtio_balloon *vb = vdev->priv; 1139 int ret; 1140 1141 ret = init_vqs(vdev->priv); 1142 if (ret) 1143 return ret; 1144 1145 virtio_device_ready(vdev); 1146 1147 if (towards_target(vb)) 1148 virtballoon_changed(vdev); 1149 update_balloon_size(vb); 1150 return 0; 1151 } 1152 #endif 1153 1154 static int virtballoon_validate(struct virtio_device *vdev) 1155 { 1156 /* 1157 * Inform the hypervisor that our pages are poisoned or 1158 * initialized. If we cannot do that then we should disable 1159 * page reporting as it could potentially change the contents 1160 * of our free pages. 1161 */ 1162 if (!want_init_on_free() && !page_poisoning_enabled_static()) 1163 __virtio_clear_bit(vdev, VIRTIO_BALLOON_F_PAGE_POISON); 1164 else if (!virtio_has_feature(vdev, VIRTIO_BALLOON_F_PAGE_POISON)) 1165 __virtio_clear_bit(vdev, VIRTIO_BALLOON_F_REPORTING); 1166 1167 __virtio_clear_bit(vdev, VIRTIO_F_ACCESS_PLATFORM); 1168 return 0; 1169 } 1170 1171 static unsigned int features[] = { 1172 VIRTIO_BALLOON_F_MUST_TELL_HOST, 1173 VIRTIO_BALLOON_F_STATS_VQ, 1174 VIRTIO_BALLOON_F_DEFLATE_ON_OOM, 1175 VIRTIO_BALLOON_F_FREE_PAGE_HINT, 1176 VIRTIO_BALLOON_F_PAGE_POISON, 1177 VIRTIO_BALLOON_F_REPORTING, 1178 }; 1179 1180 static struct virtio_driver virtio_balloon_driver = { 1181 .feature_table = features, 1182 .feature_table_size = ARRAY_SIZE(features), 1183 .driver.name = KBUILD_MODNAME, 1184 .id_table = id_table, 1185 .validate = virtballoon_validate, 1186 .probe = virtballoon_probe, 1187 .remove = virtballoon_remove, 1188 .config_changed = virtballoon_changed, 1189 #ifdef CONFIG_PM_SLEEP 1190 .freeze = virtballoon_freeze, 1191 .restore = virtballoon_restore, 1192 #endif 1193 }; 1194 1195 module_virtio_driver(virtio_balloon_driver); 1196 MODULE_DEVICE_TABLE(virtio, id_table); 1197 MODULE_DESCRIPTION("Virtio balloon driver"); 1198 MODULE_LICENSE("GPL"); 1199