virtio_mem.c 56.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Virtio-mem device driver.
 *
 * Copyright Red Hat, Inc. 2020
 *
 * Author(s): David Hildenbrand <david@redhat.com>
 */

#include <linux/virtio.h>
#include <linux/virtio_mem.h>
#include <linux/workqueue.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/mm.h>
#include <linux/memory_hotplug.h>
#include <linux/memory.h>
#include <linux/hrtimer.h>
#include <linux/crash_dump.h>
#include <linux/mutex.h>
#include <linux/bitmap.h>
#include <linux/lockdep.h>

24 25
#include <acpi/acpi_numa.h>

26 27 28 29
static bool unplug_online = true;
module_param(unplug_online, bool, 0644);
MODULE_PARM_DESC(unplug_online, "Try to unplug online memory");

30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/*
 * virtio-mem currently supports the following modes of operation:
 *
 * * Sub Block Mode (SBM): A Linux memory block spans 1..X subblocks (SB). The
 *   size of a Sub Block (SB) is determined based on the device block size, the
 *   pageblock size, and the maximum allocation granularity of the buddy.
 *   Subblocks within a Linux memory block might either be plugged or unplugged.
 *   Memory is added/removed to Linux MM in Linux memory block granularity.
 *
 * User space / core MM (auto onlining) is responsible for onlining added
 * Linux memory blocks - and for selecting a zone. Linux Memory Blocks are
 * always onlined separately, and all memory within a Linux memory block is
 * onlined to the same zone - virtio-mem relies on this behavior.
 */

45 46 47 48
/*
 * State of a Linux memory block in SBM.
 */
enum virtio_mem_sbm_mb_state {
49
	/* Unplugged, not added to Linux. Can be reused later. */
50
	VIRTIO_MEM_SBM_MB_UNUSED = 0,
51
	/* (Partially) plugged, not added to Linux. Error on add_memory(). */
52
	VIRTIO_MEM_SBM_MB_PLUGGED,
53
	/* Fully plugged, fully added to Linux, offline. */
54
	VIRTIO_MEM_SBM_MB_OFFLINE,
55
	/* Partially plugged, fully added to Linux, offline. */
56
	VIRTIO_MEM_SBM_MB_OFFLINE_PARTIAL,
57
	/* Fully plugged, fully added to Linux, online. */
58
	VIRTIO_MEM_SBM_MB_ONLINE,
59
	/* Partially plugged, fully added to Linux, online. */
60 61
	VIRTIO_MEM_SBM_MB_ONLINE_PARTIAL,
	VIRTIO_MEM_SBM_MB_COUNT
62 63 64 65 66 67 68 69 70 71
};

struct virtio_mem {
	struct virtio_device *vdev;

	/* We might first have to unplug all memory when starting up. */
	bool unplug_all_required;

	/* Workqueue that processes the plug/unplug requests. */
	struct work_struct wq;
72
	atomic_t wq_active;
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
	atomic_t config_changed;

	/* Virtqueue for guest->host requests. */
	struct virtqueue *vq;

	/* Wait for a host response to a guest request. */
	wait_queue_head_t host_resp;

	/* Space for one guest request and the host response. */
	struct virtio_mem_req req;
	struct virtio_mem_resp resp;

	/* The current size of the device. */
	uint64_t plugged_size;
	/* The requested size of the device. */
	uint64_t requested_size;

	/* The device block size (for communicating with the device). */
91
	uint64_t device_block_size;
92
	/* The determined node id for all memory of the device. */
93
	int nid;
94 95 96 97 98
	/* Physical start address of the memory region. */
	uint64_t addr;
	/* Maximum region size in bytes. */
	uint64_t region_size;

99 100
	/* The parent resource for all memory added via this device. */
	struct resource *parent_resource;
101 102 103 104 105
	/*
	 * Copy of "System RAM (virtio_mem)" to be used for
	 * add_memory_driver_managed().
	 */
	const char *resource_name;
106

107 108 109 110 111 112 113 114
	/*
	 * We don't want to add too much memory if it's not getting onlined,
	 * to avoid running OOM. Besides this threshold, we allow to have at
	 * least two offline blocks at a time (whatever is bigger).
	 */
#define VIRTIO_MEM_DEFAULT_OFFLINE_THRESHOLD		(1024 * 1024 * 1024)
	atomic64_t offline_size;
	uint64_t offline_threshold;
115

116
	struct {
117 118 119 120 121 122 123
		/* Id of the first memory block of this device. */
		unsigned long first_mb_id;
		/* Id of the last usable memory block of this device. */
		unsigned long last_usable_mb_id;
		/* Id of the next memory bock to prepare when needed. */
		unsigned long next_mb_id;

124 125 126 127 128
		/* The subblock size. */
		uint64_t sb_size;
		/* The number of subblocks per Linux memory block. */
		uint32_t sbs_per_mb;

129 130 131 132 133 134 135 136 137 138 139
		/* Summary of all memory block states. */
		unsigned long mb_count[VIRTIO_MEM_SBM_MB_COUNT];

		/*
		 * One byte state per memory block. Allocated via vmalloc().
		 * Resized (alloc+copy+free) on demand.
		 *
		 * With 128 MiB memory blocks, we have states for 512 GiB of
		 * memory in one 4 KiB page.
		 */
		uint8_t *mb_states;
140

141 142 143 144 145 146 147 148 149 150 151 152
		/*
		 * Bitmap: one bit per subblock. Allocated similar to
		 * sbm.mb_states.
		 *
		 * A set bit means the corresponding subblock is plugged,
		 * otherwise it's unblocked.
		 *
		 * With 4 MiB subblocks, we manage 128 GiB of memory in one
		 * 4 KiB page.
		 */
		unsigned long *sb_states;
	} sbm;
153 154

	/*
155 156
	 * Mutex that protects the sbm.mb_count, sbm.mb_states, and
	 * sbm.sb_states.
157 158 159
	 *
	 * When this lock is held the pointers can't change, ONLINE and
	 * OFFLINE blocks can't change the state and no subblocks will get
160
	 * plugged/unplugged.
161 162 163 164 165 166 167 168 169 170 171 172 173
	 */
	struct mutex hotplug_mutex;
	bool hotplug_active;

	/* An error occurred we cannot handle - stop processing requests. */
	bool broken;

	/* The driver is being removed. */
	spinlock_t removal_lock;
	bool removing;

	/* Timer for retrying to plug/unplug memory. */
	struct hrtimer retry_timer;
174 175 176
	unsigned int retry_timer_ms;
#define VIRTIO_MEM_RETRY_TIMER_MIN_MS		50000
#define VIRTIO_MEM_RETRY_TIMER_MAX_MS		300000
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192

	/* Memory notifier (online/offline events). */
	struct notifier_block memory_notifier;

	/* Next device in the list of virtio-mem devices. */
	struct list_head next;
};

/*
 * We have to share a single online_page callback among all virtio-mem
 * devices. We use RCU to iterate the list in the callback.
 */
static DEFINE_MUTEX(virtio_mem_mutex);
static LIST_HEAD(virtio_mem_devices);

static void virtio_mem_online_page_cb(struct page *page, unsigned int order);
193 194 195 196
static void virtio_mem_fake_offline_going_offline(unsigned long pfn,
						  unsigned long nr_pages);
static void virtio_mem_fake_offline_cancel_offline(unsigned long pfn,
						   unsigned long nr_pages);
197
static void virtio_mem_retry(struct virtio_mem *vm);
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258

/*
 * Register a virtio-mem device so it will be considered for the online_page
 * callback.
 */
static int register_virtio_mem_device(struct virtio_mem *vm)
{
	int rc = 0;

	/* First device registers the callback. */
	mutex_lock(&virtio_mem_mutex);
	if (list_empty(&virtio_mem_devices))
		rc = set_online_page_callback(&virtio_mem_online_page_cb);
	if (!rc)
		list_add_rcu(&vm->next, &virtio_mem_devices);
	mutex_unlock(&virtio_mem_mutex);

	return rc;
}

/*
 * Unregister a virtio-mem device so it will no longer be considered for the
 * online_page callback.
 */
static void unregister_virtio_mem_device(struct virtio_mem *vm)
{
	/* Last device unregisters the callback. */
	mutex_lock(&virtio_mem_mutex);
	list_del_rcu(&vm->next);
	if (list_empty(&virtio_mem_devices))
		restore_online_page_callback(&virtio_mem_online_page_cb);
	mutex_unlock(&virtio_mem_mutex);

	synchronize_rcu();
}

/*
 * Calculate the memory block id of a given address.
 */
static unsigned long virtio_mem_phys_to_mb_id(unsigned long addr)
{
	return addr / memory_block_size_bytes();
}

/*
 * Calculate the physical start address of a given memory block id.
 */
static unsigned long virtio_mem_mb_id_to_phys(unsigned long mb_id)
{
	return mb_id * memory_block_size_bytes();
}

/*
 * Calculate the subblock id of a given address.
 */
static unsigned long virtio_mem_phys_to_sb_id(struct virtio_mem *vm,
					      unsigned long addr)
{
	const unsigned long mb_id = virtio_mem_phys_to_mb_id(addr);
	const unsigned long mb_addr = virtio_mem_mb_id_to_phys(mb_id);

259
	return (addr - mb_addr) / vm->sbm.sb_size;
260 261 262 263 264
}

/*
 * Set the state of a memory block, taking care of the state counter.
 */
265 266
static void virtio_mem_sbm_set_mb_state(struct virtio_mem *vm,
					unsigned long mb_id, uint8_t state)
267
{
268
	const unsigned long idx = mb_id - vm->sbm.first_mb_id;
269
	uint8_t old_state;
270

271 272
	old_state = vm->sbm.mb_states[idx];
	vm->sbm.mb_states[idx] = state;
273

274 275 276
	BUG_ON(vm->sbm.mb_count[old_state] == 0);
	vm->sbm.mb_count[old_state]--;
	vm->sbm.mb_count[state]++;
277 278 279 280 281
}

/*
 * Get the state of a memory block.
 */
282 283
static uint8_t virtio_mem_sbm_get_mb_state(struct virtio_mem *vm,
					   unsigned long mb_id)
284
{
285
	const unsigned long idx = mb_id - vm->sbm.first_mb_id;
286

287
	return vm->sbm.mb_states[idx];
288 289 290 291 292
}

/*
 * Prepare the state array for the next memory block.
 */
293
static int virtio_mem_sbm_mb_states_prepare_next_mb(struct virtio_mem *vm)
294
{
295 296
	int old_pages = PFN_UP(vm->sbm.next_mb_id - vm->sbm.first_mb_id);
	int new_pages = PFN_UP(vm->sbm.next_mb_id - vm->sbm.first_mb_id + 1);
297
	uint8_t *new_array;
298

299
	if (vm->sbm.mb_states && old_pages == new_pages)
300 301
		return 0;

302 303
	new_array = vzalloc(new_pages * PAGE_SIZE);
	if (!new_array)
304 305 306
		return -ENOMEM;

	mutex_lock(&vm->hotplug_mutex);
307 308 309 310
	if (vm->sbm.mb_states)
		memcpy(new_array, vm->sbm.mb_states, old_pages * PAGE_SIZE);
	vfree(vm->sbm.mb_states);
	vm->sbm.mb_states = new_array;
311 312 313 314 315
	mutex_unlock(&vm->hotplug_mutex);

	return 0;
}

316
#define virtio_mem_sbm_for_each_mb(_vm, _mb_id, _state) \
317 318
	for (_mb_id = _vm->sbm.first_mb_id; \
	     _mb_id < _vm->sbm.next_mb_id && _vm->sbm.mb_count[_state]; \
319
	     _mb_id++) \
320
		if (virtio_mem_sbm_get_mb_state(_vm, _mb_id) == _state)
321

322
#define virtio_mem_sbm_for_each_mb_rev(_vm, _mb_id, _state) \
323 324
	for (_mb_id = _vm->sbm.next_mb_id - 1; \
	     _mb_id >= _vm->sbm.first_mb_id && _vm->sbm.mb_count[_state]; \
325
	     _mb_id--) \
326
		if (virtio_mem_sbm_get_mb_state(_vm, _mb_id) == _state)
327

328 329 330 331
/*
 * Calculate the bit number in the subblock bitmap for the given subblock
 * inside the given memory block.
 */
332 333
static int virtio_mem_sbm_sb_state_bit_nr(struct virtio_mem *vm,
					  unsigned long mb_id, int sb_id)
334
{
335
	return (mb_id - vm->sbm.first_mb_id) * vm->sbm.sbs_per_mb + sb_id;
336 337
}

338 339 340 341 342
/*
 * Mark all selected subblocks plugged.
 *
 * Will not modify the state of the memory block.
 */
343 344 345
static void virtio_mem_sbm_set_sb_plugged(struct virtio_mem *vm,
					  unsigned long mb_id, int sb_id,
					  int count)
346
{
347
	const int bit = virtio_mem_sbm_sb_state_bit_nr(vm, mb_id, sb_id);
348

349
	__bitmap_set(vm->sbm.sb_states, bit, count);
350 351 352 353 354 355 356
}

/*
 * Mark all selected subblocks unplugged.
 *
 * Will not modify the state of the memory block.
 */
357 358 359
static void virtio_mem_sbm_set_sb_unplugged(struct virtio_mem *vm,
					    unsigned long mb_id, int sb_id,
					    int count)
360
{
361
	const int bit = virtio_mem_sbm_sb_state_bit_nr(vm, mb_id, sb_id);
362

363
	__bitmap_clear(vm->sbm.sb_states, bit, count);
364 365 366 367 368
}

/*
 * Test if all selected subblocks are plugged.
 */
369 370 371
static bool virtio_mem_sbm_test_sb_plugged(struct virtio_mem *vm,
					   unsigned long mb_id, int sb_id,
					   int count)
372
{
373
	const int bit = virtio_mem_sbm_sb_state_bit_nr(vm, mb_id, sb_id);
374 375

	if (count == 1)
376
		return test_bit(bit, vm->sbm.sb_states);
377 378

	/* TODO: Helper similar to bitmap_set() */
379
	return find_next_zero_bit(vm->sbm.sb_states, bit + count, bit) >=
380 381 382
	       bit + count;
}

383 384 385
/*
 * Test if all selected subblocks are unplugged.
 */
386 387 388
static bool virtio_mem_sbm_test_sb_unplugged(struct virtio_mem *vm,
					     unsigned long mb_id, int sb_id,
					     int count)
389
{
390
	const int bit = virtio_mem_sbm_sb_state_bit_nr(vm, mb_id, sb_id);
391 392

	/* TODO: Helper similar to bitmap_set() */
393 394
	return find_next_bit(vm->sbm.sb_states, bit + count, bit) >=
	       bit + count;
395 396
}

397
/*
398
 * Find the first unplugged subblock. Returns vm->sbm.sbs_per_mb in case there is
399 400
 * none.
 */
401
static int virtio_mem_sbm_first_unplugged_sb(struct virtio_mem *vm,
402 403
					    unsigned long mb_id)
{
404
	const int bit = virtio_mem_sbm_sb_state_bit_nr(vm, mb_id, 0);
405

406
	return find_next_zero_bit(vm->sbm.sb_states,
407
				  bit + vm->sbm.sbs_per_mb, bit) - bit;
408 409 410 411 412
}

/*
 * Prepare the subblock bitmap for the next memory block.
 */
413
static int virtio_mem_sbm_sb_states_prepare_next_mb(struct virtio_mem *vm)
414
{
415
	const unsigned long old_nb_mb = vm->sbm.next_mb_id - vm->sbm.first_mb_id;
416 417
	const unsigned long old_nb_bits = old_nb_mb * vm->sbm.sbs_per_mb;
	const unsigned long new_nb_bits = (old_nb_mb + 1) * vm->sbm.sbs_per_mb;
418 419
	int old_pages = PFN_UP(BITS_TO_LONGS(old_nb_bits) * sizeof(long));
	int new_pages = PFN_UP(BITS_TO_LONGS(new_nb_bits) * sizeof(long));
420
	unsigned long *new_bitmap, *old_bitmap;
421

422
	if (vm->sbm.sb_states && old_pages == new_pages)
423 424
		return 0;

425 426
	new_bitmap = vzalloc(new_pages * PAGE_SIZE);
	if (!new_bitmap)
427 428 429
		return -ENOMEM;

	mutex_lock(&vm->hotplug_mutex);
430 431
	if (new_bitmap)
		memcpy(new_bitmap, vm->sbm.sb_states, old_pages * PAGE_SIZE);
432

433 434
	old_bitmap = vm->sbm.sb_states;
	vm->sbm.sb_states = new_bitmap;
435 436
	mutex_unlock(&vm->hotplug_mutex);

437
	vfree(old_bitmap);
438 439 440
	return 0;
}

441 442 443 444 445 446 447 448 449 450 451 452
/*
 * Test if we could add memory without creating too much offline memory -
 * to avoid running OOM if memory is getting onlined deferred.
 */
static bool virtio_mem_could_add_memory(struct virtio_mem *vm, uint64_t size)
{
	if (WARN_ON_ONCE(size > vm->offline_threshold))
		return false;

	return atomic64_read(&vm->offline_size) + size <= vm->offline_threshold;
}

453 454 455 456 457 458 459 460 461 462 463 464
/*
 * Try to add a memory block to Linux. This will usually only fail
 * if out of memory.
 *
 * Must not be called with the vm->hotplug_mutex held (possible deadlock with
 * onlining code).
 *
 * Will not modify the state of the memory block.
 */
static int virtio_mem_mb_add(struct virtio_mem *vm, unsigned long mb_id)
{
	const uint64_t addr = virtio_mem_mb_id_to_phys(mb_id);
465 466
	const uint64_t size = memory_block_size_bytes();
	int rc;
467

468 469 470 471 472 473 474 475 476 477 478
	/*
	 * When force-unloading the driver and we still have memory added to
	 * Linux, the resource name has to stay.
	 */
	if (!vm->resource_name) {
		vm->resource_name = kstrdup_const("System RAM (virtio_mem)",
						  GFP_KERNEL);
		if (!vm->resource_name)
			return -ENOMEM;
	}

479
	dev_dbg(&vm->vdev->dev, "adding memory block: %lu\n", mb_id);
480 481 482 483 484 485 486
	/* Memory might get onlined immediately. */
	atomic64_add(size, &vm->offline_size);
	rc = add_memory_driver_managed(vm->nid, addr, size, vm->resource_name,
				       MEMHP_MERGE_RESOURCE);
	if (rc)
		atomic64_sub(size, &vm->offline_size);
	return rc;
487 488 489 490 491 492 493 494 495 496 497 498 499 500
}

/*
 * Try to remove a memory block from Linux. Will only fail if the memory block
 * is not offline.
 *
 * Must not be called with the vm->hotplug_mutex held (possible deadlock with
 * onlining code).
 *
 * Will not modify the state of the memory block.
 */
static int virtio_mem_mb_remove(struct virtio_mem *vm, unsigned long mb_id)
{
	const uint64_t addr = virtio_mem_mb_id_to_phys(mb_id);
501
	const uint64_t size = memory_block_size_bytes();
502
	int rc;
503 504

	dev_dbg(&vm->vdev->dev, "removing memory block: %lu\n", mb_id);
505 506 507
	rc = remove_memory(vm->nid, addr, size);
	if (!rc) {
		atomic64_sub(size, &vm->offline_size);
508 509 510 511 512
		/*
		 * We might have freed up memory we can now unplug, retry
		 * immediately instead of waiting.
		 */
		virtio_mem_retry(vm);
513
	}
514
	return rc;
515 516
}

517 518 519 520 521 522 523 524 525 526 527 528
/*
 * Try to offline and remove a memory block from Linux.
 *
 * Must not be called with the vm->hotplug_mutex held (possible deadlock with
 * onlining code).
 *
 * Will not modify the state of the memory block.
 */
static int virtio_mem_mb_offline_and_remove(struct virtio_mem *vm,
					    unsigned long mb_id)
{
	const uint64_t addr = virtio_mem_mb_id_to_phys(mb_id);
529
	const uint64_t size = memory_block_size_bytes();
530
	int rc;
531 532 533

	dev_dbg(&vm->vdev->dev, "offlining and removing memory block: %lu\n",
		mb_id);
534 535 536
	rc = offline_and_remove_memory(vm->nid, addr, size);
	if (!rc) {
		atomic64_sub(size, &vm->offline_size);
537 538 539 540 541
		/*
		 * We might have freed up memory we can now unplug, retry
		 * immediately instead of waiting.
		 */
		virtio_mem_retry(vm);
542
	}
543
	return rc;
544 545
}

546 547 548 549 550 551 552 553 554 555 556 557 558
/*
 * Trigger the workqueue so the device can perform its magic.
 */
static void virtio_mem_retry(struct virtio_mem *vm)
{
	unsigned long flags;

	spin_lock_irqsave(&vm->removal_lock, flags);
	if (!vm->removing)
		queue_work(system_freezable_wq, &vm->wq);
	spin_unlock_irqrestore(&vm->removal_lock, flags);
}

559 560 561 562 563 564 565 566 567 568 569
static int virtio_mem_translate_node_id(struct virtio_mem *vm, uint16_t node_id)
{
	int node = NUMA_NO_NODE;

#if defined(CONFIG_ACPI_NUMA)
	if (virtio_has_feature(vm->vdev, VIRTIO_MEM_F_ACPI_PXM))
		node = pxm_to_node(node_id);
#endif
	return node;
}

570 571 572 573
/*
 * Test if a virtio-mem device overlaps with the given range. Can be called
 * from (notifier) callbacks lockless.
 */
574 575
static bool virtio_mem_overlaps_range(struct virtio_mem *vm, uint64_t start,
				      uint64_t size)
576
{
577
	return start < vm->addr + vm->region_size && vm->addr < start + size;
578 579 580
}

/*
581
 * Test if a virtio-mem device contains a given range. Can be called from
582 583
 * (notifier) callbacks lockless.
 */
584 585
static bool virtio_mem_contains_range(struct virtio_mem *vm, uint64_t start,
				      uint64_t size)
586
{
587
	return start >= vm->addr && start + size <= vm->addr + vm->region_size;
588 589
}

590 591
static int virtio_mem_sbm_notify_going_online(struct virtio_mem *vm,
					      unsigned long mb_id)
592
{
593 594 595
	switch (virtio_mem_sbm_get_mb_state(vm, mb_id)) {
	case VIRTIO_MEM_SBM_MB_OFFLINE_PARTIAL:
	case VIRTIO_MEM_SBM_MB_OFFLINE:
596 597 598 599 600 601 602 603 604
		return NOTIFY_OK;
	default:
		break;
	}
	dev_warn_ratelimited(&vm->vdev->dev,
			     "memory block onlining denied\n");
	return NOTIFY_BAD;
}

605 606
static void virtio_mem_sbm_notify_offline(struct virtio_mem *vm,
					  unsigned long mb_id)
607
{
608 609 610 611
	switch (virtio_mem_sbm_get_mb_state(vm, mb_id)) {
	case VIRTIO_MEM_SBM_MB_ONLINE_PARTIAL:
		virtio_mem_sbm_set_mb_state(vm, mb_id,
					    VIRTIO_MEM_SBM_MB_OFFLINE_PARTIAL);
612
		break;
613 614 615
	case VIRTIO_MEM_SBM_MB_ONLINE:
		virtio_mem_sbm_set_mb_state(vm, mb_id,
					    VIRTIO_MEM_SBM_MB_OFFLINE);
616 617 618 619 620 621 622
		break;
	default:
		BUG();
		break;
	}
}

623 624
static void virtio_mem_sbm_notify_online(struct virtio_mem *vm,
					 unsigned long mb_id)
625
{
626 627 628 629
	switch (virtio_mem_sbm_get_mb_state(vm, mb_id)) {
	case VIRTIO_MEM_SBM_MB_OFFLINE_PARTIAL:
		virtio_mem_sbm_set_mb_state(vm, mb_id,
					VIRTIO_MEM_SBM_MB_ONLINE_PARTIAL);
630
		break;
631 632 633
	case VIRTIO_MEM_SBM_MB_OFFLINE:
		virtio_mem_sbm_set_mb_state(vm, mb_id,
					    VIRTIO_MEM_SBM_MB_ONLINE);
634 635 636 637 638 639 640
		break;
	default:
		BUG();
		break;
	}
}

641 642
static void virtio_mem_sbm_notify_going_offline(struct virtio_mem *vm,
						unsigned long mb_id)
643
{
644
	const unsigned long nr_pages = PFN_DOWN(vm->sbm.sb_size);
645
	unsigned long pfn;
646
	int sb_id;
647

648
	for (sb_id = 0; sb_id < vm->sbm.sbs_per_mb; sb_id++) {
649
		if (virtio_mem_sbm_test_sb_plugged(vm, mb_id, sb_id, 1))
650 651
			continue;
		pfn = PFN_DOWN(virtio_mem_mb_id_to_phys(mb_id) +
652
			       sb_id * vm->sbm.sb_size);
653
		virtio_mem_fake_offline_going_offline(pfn, nr_pages);
654 655 656
	}
}

657 658
static void virtio_mem_sbm_notify_cancel_offline(struct virtio_mem *vm,
						 unsigned long mb_id)
659
{
660
	const unsigned long nr_pages = PFN_DOWN(vm->sbm.sb_size);
661
	unsigned long pfn;
662
	int sb_id;
663

664
	for (sb_id = 0; sb_id < vm->sbm.sbs_per_mb; sb_id++) {
665
		if (virtio_mem_sbm_test_sb_plugged(vm, mb_id, sb_id, 1))
666 667
			continue;
		pfn = PFN_DOWN(virtio_mem_mb_id_to_phys(mb_id) +
668
			       sb_id * vm->sbm.sb_size);
669
		virtio_mem_fake_offline_cancel_offline(pfn, nr_pages);
670 671 672
	}
}

673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
/*
 * This callback will either be called synchronously from add_memory() or
 * asynchronously (e.g., triggered via user space). We have to be careful
 * with locking when calling add_memory().
 */
static int virtio_mem_memory_notifier_cb(struct notifier_block *nb,
					 unsigned long action, void *arg)
{
	struct virtio_mem *vm = container_of(nb, struct virtio_mem,
					     memory_notifier);
	struct memory_notify *mhp = arg;
	const unsigned long start = PFN_PHYS(mhp->start_pfn);
	const unsigned long size = PFN_PHYS(mhp->nr_pages);
	const unsigned long mb_id = virtio_mem_phys_to_mb_id(start);
	int rc = NOTIFY_OK;

	if (!virtio_mem_overlaps_range(vm, start, size))
		return NOTIFY_DONE;

	/*
	 * Memory is onlined/offlined in memory block granularity. We cannot
	 * cross virtio-mem device boundaries and memory block boundaries. Bail
	 * out if this ever changes.
	 */
	if (WARN_ON_ONCE(size != memory_block_size_bytes() ||
			 !IS_ALIGNED(start, memory_block_size_bytes())))
		return NOTIFY_BAD;

	/*
	 * Avoid circular locking lockdep warnings. We lock the mutex
	 * e.g., in MEM_GOING_ONLINE and unlock it in MEM_ONLINE. The
	 * blocking_notifier_call_chain() has it's own lock, which gets unlocked
	 * between both notifier calls and will bail out. False positive.
	 */
	lockdep_off();

	switch (action) {
	case MEM_GOING_OFFLINE:
		mutex_lock(&vm->hotplug_mutex);
		if (vm->removing) {
			rc = notifier_from_errno(-EBUSY);
			mutex_unlock(&vm->hotplug_mutex);
			break;
		}
		vm->hotplug_active = true;
718
		virtio_mem_sbm_notify_going_offline(vm, mb_id);
719 720 721 722 723 724 725 726 727
		break;
	case MEM_GOING_ONLINE:
		mutex_lock(&vm->hotplug_mutex);
		if (vm->removing) {
			rc = notifier_from_errno(-EBUSY);
			mutex_unlock(&vm->hotplug_mutex);
			break;
		}
		vm->hotplug_active = true;
728
		rc = virtio_mem_sbm_notify_going_online(vm, mb_id);
729 730
		break;
	case MEM_OFFLINE:
731
		virtio_mem_sbm_notify_offline(vm, mb_id);
732

733
		atomic64_add(size, &vm->offline_size);
734 735 736 737 738 739 740
		/*
		 * Trigger the workqueue. Now that we have some offline memory,
		 * maybe we can handle pending unplug requests.
		 */
		if (!unplug_online)
			virtio_mem_retry(vm);

741 742 743 744
		vm->hotplug_active = false;
		mutex_unlock(&vm->hotplug_mutex);
		break;
	case MEM_ONLINE:
745
		virtio_mem_sbm_notify_online(vm, mb_id);
746 747 748 749 750 751 752 753 754 755 756 757

		atomic64_sub(size, &vm->offline_size);
		/*
		 * Start adding more memory once we onlined half of our
		 * threshold. Don't trigger if it's possibly due to our actipn
		 * (e.g., us adding memory which gets onlined immediately from
		 * the core).
		 */
		if (!atomic_read(&vm->wq_active) &&
		    virtio_mem_could_add_memory(vm, vm->offline_threshold / 2))
			virtio_mem_retry(vm);

758 759 760 761
		vm->hotplug_active = false;
		mutex_unlock(&vm->hotplug_mutex);
		break;
	case MEM_CANCEL_OFFLINE:
762 763
		if (!vm->hotplug_active)
			break;
764
		virtio_mem_sbm_notify_cancel_offline(vm, mb_id);
765 766 767
		vm->hotplug_active = false;
		mutex_unlock(&vm->hotplug_mutex);
		break;
768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783
	case MEM_CANCEL_ONLINE:
		if (!vm->hotplug_active)
			break;
		vm->hotplug_active = false;
		mutex_unlock(&vm->hotplug_mutex);
		break;
	default:
		break;
	}

	lockdep_on();

	return rc;
}

/*
784 785
 * Set a range of pages PG_offline. Remember pages that were never onlined
 * (via generic_online_page()) using PageDirty().
786 787
 */
static void virtio_mem_set_fake_offline(unsigned long pfn,
788
					unsigned long nr_pages, bool onlined)
789
{
790 791 792 793
	for (; nr_pages--; pfn++) {
		struct page *page = pfn_to_page(pfn);

		__SetPageOffline(page);
794
		if (!onlined) {
795
			SetPageDirty(page);
796 797 798
			/* FIXME: remove after cleanups */
			ClearPageReserved(page);
		}
799
	}
800 801 802
}

/*
803 804
 * Clear PG_offline from a range of pages. If the pages were never onlined,
 * (via generic_online_page()), clear PageDirty().
805 806
 */
static void virtio_mem_clear_fake_offline(unsigned long pfn,
807
					  unsigned long nr_pages, bool onlined)
808
{
809 810 811 812 813 814 815
	for (; nr_pages--; pfn++) {
		struct page *page = pfn_to_page(pfn);

		__ClearPageOffline(page);
		if (!onlined)
			ClearPageDirty(page);
	}
816 817 818 819 820 821
}

/*
 * Release a range of fake-offline pages to the buddy, effectively
 * fake-onlining them.
 */
822
static void virtio_mem_fake_online(unsigned long pfn, unsigned long nr_pages)
823
{
824
	const unsigned long max_nr_pages = MAX_ORDER_NR_PAGES;
825
	unsigned long i;
826 827

	/*
828 829 830
	 * We are always called at least with MAX_ORDER_NR_PAGES
	 * granularity/alignment (e.g., the way subblocks work). All pages
	 * inside such a block are alike.
831
	 */
832
	for (i = 0; i < nr_pages; i += max_nr_pages) {
833
		struct page *page = pfn_to_page(pfn + i);
834

835 836 837 838 839 840 841
		/*
		 * If the page is PageDirty(), it was kept fake-offline when
		 * onlining the memory block. Otherwise, it was allocated
		 * using alloc_contig_range(). All pages in a subblock are
		 * alike.
		 */
		if (PageDirty(page)) {
842
			virtio_mem_clear_fake_offline(pfn + i, max_nr_pages,
843
						      false);
844
			generic_online_page(page, MAX_ORDER - 1);
845
		} else {
846
			virtio_mem_clear_fake_offline(pfn + i, max_nr_pages,
847
						      true);
848 849
			free_contig_range(pfn + i, max_nr_pages);
			adjust_managed_page_count(page, max_nr_pages);
850 851
		}
	}
852 853
}

854 855 856 857 858 859
/*
 * Try to allocate a range, marking pages fake-offline, effectively
 * fake-offlining them.
 */
static int virtio_mem_fake_offline(unsigned long pfn, unsigned long nr_pages)
{
860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887
	const bool is_movable = zone_idx(page_zone(pfn_to_page(pfn))) ==
				ZONE_MOVABLE;
	int rc, retry_count;

	/*
	 * TODO: We want an alloc_contig_range() mode that tries to allocate
	 * harder (e.g., dealing with temporarily pinned pages, PCP), especially
	 * with ZONE_MOVABLE. So for now, retry a couple of times with
	 * ZONE_MOVABLE before giving up - because that zone is supposed to give
	 * some guarantees.
	 */
	for (retry_count = 0; retry_count < 5; retry_count++) {
		rc = alloc_contig_range(pfn, pfn + nr_pages, MIGRATE_MOVABLE,
					GFP_KERNEL);
		if (rc == -ENOMEM)
			/* whoops, out of memory */
			return rc;
		else if (rc && !is_movable)
			break;
		else if (rc)
			continue;

		virtio_mem_set_fake_offline(pfn, nr_pages, true);
		adjust_managed_page_count(pfn_to_page(pfn), -nr_pages);
		return 0;
	}

	return -EBUSY;
888 889
}

890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
/*
 * Handle fake-offline pages when memory is going offline - such that the
 * pages can be skipped by mm-core when offlining.
 */
static void virtio_mem_fake_offline_going_offline(unsigned long pfn,
						  unsigned long nr_pages)
{
	struct page *page;
	unsigned long i;

	/*
	 * Drop our reference to the pages so the memory can get offlined
	 * and add the unplugged pages to the managed page counters (so
	 * offlining code can correctly subtract them again).
	 */
	adjust_managed_page_count(pfn_to_page(pfn), nr_pages);
	/* Drop our reference to the pages so the memory can get offlined. */
	for (i = 0; i < nr_pages; i++) {
		page = pfn_to_page(pfn + i);
		if (WARN_ON(!page_ref_dec_and_test(page)))
			dump_page(page, "fake-offline page referenced");
	}
}

/*
 * Handle fake-offline pages when memory offlining is canceled - to undo
 * what we did in virtio_mem_fake_offline_going_offline().
 */
static void virtio_mem_fake_offline_cancel_offline(unsigned long pfn,
						   unsigned long nr_pages)
{
	unsigned long i;

	/*
	 * Get the reference we dropped when going offline and subtract the
	 * unplugged pages from the managed page counters.
	 */
	adjust_managed_page_count(pfn_to_page(pfn), -nr_pages);
	for (i = 0; i < nr_pages; i++)
		page_ref_inc(pfn_to_page(pfn + i));
}

932 933 934 935 936 937 938 939
static void virtio_mem_online_page_cb(struct page *page, unsigned int order)
{
	const unsigned long addr = page_to_phys(page);
	const unsigned long mb_id = virtio_mem_phys_to_mb_id(addr);
	struct virtio_mem *vm;
	int sb_id;

	/*
940
	 * We exploit here that subblocks have at least MAX_ORDER_NR_PAGES.
941 942 943 944 945 946
	 * size/alignment and that this callback is is called with such a
	 * size/alignment. So we cannot cross subblocks and therefore
	 * also not memory blocks.
	 */
	rcu_read_lock();
	list_for_each_entry_rcu(vm, &virtio_mem_devices, next) {
947
		if (!virtio_mem_contains_range(vm, addr, PFN_PHYS(1 << order)))
948 949 950 951 952 953 954
			continue;

		sb_id = virtio_mem_phys_to_sb_id(vm, addr);
		/*
		 * If plugged, online the pages, otherwise, set them fake
		 * offline (PageOffline).
		 */
955
		if (virtio_mem_sbm_test_sb_plugged(vm, mb_id, sb_id, 1))
956 957
			generic_online_page(page, order);
		else
958 959
			virtio_mem_set_fake_offline(PFN_DOWN(addr), 1 << order,
						    false);
960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
		rcu_read_unlock();
		return;
	}
	rcu_read_unlock();

	/* not virtio-mem memory, but e.g., a DIMM. online it */
	generic_online_page(page, order);
}

static uint64_t virtio_mem_send_request(struct virtio_mem *vm,
					const struct virtio_mem_req *req)
{
	struct scatterlist *sgs[2], sg_req, sg_resp;
	unsigned int len;
	int rc;

	/* don't use the request residing on the stack (vaddr) */
	vm->req = *req;

	/* out: buffer for request */
	sg_init_one(&sg_req, &vm->req, sizeof(vm->req));
	sgs[0] = &sg_req;

	/* in: buffer for response */
	sg_init_one(&sg_resp, &vm->resp, sizeof(vm->resp));
	sgs[1] = &sg_resp;

	rc = virtqueue_add_sgs(vm->vq, sgs, 1, 1, vm, GFP_KERNEL);
	if (rc < 0)
		return rc;

	virtqueue_kick(vm->vq);

	/* wait for a response */
	wait_event(vm->host_resp, virtqueue_get_buf(vm->vq, &len));

	return virtio16_to_cpu(vm->vdev, vm->resp.type);
}

static int virtio_mem_send_plug_request(struct virtio_mem *vm, uint64_t addr,
					uint64_t size)
{
	const uint64_t nb_vm_blocks = size / vm->device_block_size;
	const struct virtio_mem_req req = {
		.type = cpu_to_virtio16(vm->vdev, VIRTIO_MEM_REQ_PLUG),
		.u.plug.addr = cpu_to_virtio64(vm->vdev, addr),
		.u.plug.nb_blocks = cpu_to_virtio16(vm->vdev, nb_vm_blocks),
	};
1008
	int rc = -ENOMEM;
1009 1010 1011 1012

	if (atomic_read(&vm->config_changed))
		return -EAGAIN;

1013 1014 1015
	dev_dbg(&vm->vdev->dev, "plugging memory: 0x%llx - 0x%llx\n", addr,
		addr + size - 1);

1016 1017 1018 1019 1020
	switch (virtio_mem_send_request(vm, &req)) {
	case VIRTIO_MEM_RESP_ACK:
		vm->plugged_size += size;
		return 0;
	case VIRTIO_MEM_RESP_NACK:
1021 1022
		rc = -EAGAIN;
		break;
1023
	case VIRTIO_MEM_RESP_BUSY:
1024 1025
		rc = -ETXTBSY;
		break;
1026
	case VIRTIO_MEM_RESP_ERROR:
1027 1028
		rc = -EINVAL;
		break;
1029
	default:
1030
		break;
1031
	}
1032 1033 1034

	dev_dbg(&vm->vdev->dev, "plugging memory failed: %d\n", rc);
	return rc;
1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
}

static int virtio_mem_send_unplug_request(struct virtio_mem *vm, uint64_t addr,
					  uint64_t size)
{
	const uint64_t nb_vm_blocks = size / vm->device_block_size;
	const struct virtio_mem_req req = {
		.type = cpu_to_virtio16(vm->vdev, VIRTIO_MEM_REQ_UNPLUG),
		.u.unplug.addr = cpu_to_virtio64(vm->vdev, addr),
		.u.unplug.nb_blocks = cpu_to_virtio16(vm->vdev, nb_vm_blocks),
	};
1046
	int rc = -ENOMEM;
1047 1048 1049 1050

	if (atomic_read(&vm->config_changed))
		return -EAGAIN;

1051 1052 1053
	dev_dbg(&vm->vdev->dev, "unplugging memory: 0x%llx - 0x%llx\n", addr,
		addr + size - 1);

1054 1055 1056 1057 1058
	switch (virtio_mem_send_request(vm, &req)) {
	case VIRTIO_MEM_RESP_ACK:
		vm->plugged_size -= size;
		return 0;
	case VIRTIO_MEM_RESP_BUSY:
1059 1060
		rc = -ETXTBSY;
		break;
1061
	case VIRTIO_MEM_RESP_ERROR:
1062 1063
		rc = -EINVAL;
		break;
1064
	default:
1065
		break;
1066
	}
1067 1068 1069

	dev_dbg(&vm->vdev->dev, "unplugging memory failed: %d\n", rc);
	return rc;
1070 1071 1072 1073 1074 1075 1076
}

static int virtio_mem_send_unplug_all_request(struct virtio_mem *vm)
{
	const struct virtio_mem_req req = {
		.type = cpu_to_virtio16(vm->vdev, VIRTIO_MEM_REQ_UNPLUG_ALL),
	};
1077 1078 1079
	int rc = -ENOMEM;

	dev_dbg(&vm->vdev->dev, "unplugging all memory");
1080 1081 1082 1083 1084 1085 1086 1087 1088

	switch (virtio_mem_send_request(vm, &req)) {
	case VIRTIO_MEM_RESP_ACK:
		vm->unplug_all_required = false;
		vm->plugged_size = 0;
		/* usable region might have shrunk */
		atomic_set(&vm->config_changed, 1);
		return 0;
	case VIRTIO_MEM_RESP_BUSY:
1089 1090
		rc = -ETXTBSY;
		break;
1091
	default:
1092
		break;
1093
	}
1094 1095 1096

	dev_dbg(&vm->vdev->dev, "unplugging all memory failed: %d\n", rc);
	return rc;
1097 1098 1099 1100 1101 1102
}

/*
 * Plug selected subblocks. Updates the plugged state, but not the state
 * of the memory block.
 */
1103 1104
static int virtio_mem_sbm_plug_sb(struct virtio_mem *vm, unsigned long mb_id,
				  int sb_id, int count)
1105 1106
{
	const uint64_t addr = virtio_mem_mb_id_to_phys(mb_id) +
1107 1108
			      sb_id * vm->sbm.sb_size;
	const uint64_t size = count * vm->sbm.sb_size;
1109 1110 1111 1112
	int rc;

	rc = virtio_mem_send_plug_request(vm, addr, size);
	if (!rc)
1113
		virtio_mem_sbm_set_sb_plugged(vm, mb_id, sb_id, count);
1114 1115 1116 1117 1118 1119 1120
	return rc;
}

/*
 * Unplug selected subblocks. Updates the plugged state, but not the state
 * of the memory block.
 */
1121 1122
static int virtio_mem_sbm_unplug_sb(struct virtio_mem *vm, unsigned long mb_id,
				    int sb_id, int count)
1123 1124
{
	const uint64_t addr = virtio_mem_mb_id_to_phys(mb_id) +
1125 1126
			      sb_id * vm->sbm.sb_size;
	const uint64_t size = count * vm->sbm.sb_size;
1127 1128 1129 1130
	int rc;

	rc = virtio_mem_send_unplug_request(vm, addr, size);
	if (!rc)
1131
		virtio_mem_sbm_set_sb_unplugged(vm, mb_id, sb_id, count);
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
	return rc;
}

/*
 * Unplug the desired number of plugged subblocks of a offline or not-added
 * memory block. Will fail if any subblock cannot get unplugged (instead of
 * skipping it).
 *
 * Will not modify the state of the memory block.
 *
 * Note: can fail after some subblocks were unplugged.
 */
1144 1145
static int virtio_mem_sbm_unplug_any_sb(struct virtio_mem *vm,
					unsigned long mb_id, uint64_t *nb_sb)
1146 1147 1148 1149
{
	int sb_id, count;
	int rc;

1150
	sb_id = vm->sbm.sbs_per_mb - 1;
1151
	while (*nb_sb) {
1152 1153
		/* Find the next candidate subblock */
		while (sb_id >= 0 &&
1154
		       virtio_mem_sbm_test_sb_unplugged(vm, mb_id, sb_id, 1))
1155 1156
			sb_id--;
		if (sb_id < 0)
1157
			break;
1158
		/* Try to unplug multiple subblocks at a time */
1159
		count = 1;
1160
		while (count < *nb_sb && sb_id > 0 &&
1161
		       virtio_mem_sbm_test_sb_plugged(vm, mb_id, sb_id - 1, 1)) {
1162
			count++;
1163 1164
			sb_id--;
		}
1165

1166
		rc = virtio_mem_sbm_unplug_sb(vm, mb_id, sb_id, count);
1167 1168 1169
		if (rc)
			return rc;
		*nb_sb -= count;
1170
		sb_id--;
1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182
	}

	return 0;
}

/*
 * Unplug all plugged subblocks of an offline or not-added memory block.
 *
 * Will not modify the state of the memory block.
 *
 * Note: can fail after some subblocks were unplugged.
 */
1183
static int virtio_mem_sbm_unplug_mb(struct virtio_mem *vm, unsigned long mb_id)
1184
{
1185
	uint64_t nb_sb = vm->sbm.sbs_per_mb;
1186

1187
	return virtio_mem_sbm_unplug_any_sb(vm, mb_id, &nb_sb);
1188 1189 1190 1191 1192
}

/*
 * Prepare tracking data for the next memory block.
 */
1193 1194
static int virtio_mem_sbm_prepare_next_mb(struct virtio_mem *vm,
					  unsigned long *mb_id)
1195 1196 1197
{
	int rc;

1198
	if (vm->sbm.next_mb_id > vm->sbm.last_usable_mb_id)
1199 1200 1201
		return -ENOSPC;

	/* Resize the state array if required. */
1202
	rc = virtio_mem_sbm_mb_states_prepare_next_mb(vm);
1203 1204 1205 1206
	if (rc)
		return rc;

	/* Resize the subblock bitmap if required. */
1207
	rc = virtio_mem_sbm_sb_states_prepare_next_mb(vm);
1208 1209 1210
	if (rc)
		return rc;

1211
	vm->sbm.mb_count[VIRTIO_MEM_SBM_MB_UNUSED]++;
1212
	*mb_id = vm->sbm.next_mb_id++;
1213 1214 1215 1216 1217 1218 1219 1220 1221
	return 0;
}

/*
 * Try to plug the desired number of subblocks and add the memory block
 * to Linux.
 *
 * Will modify the state of the memory block.
 */
1222 1223
static int virtio_mem_sbm_plug_and_add_mb(struct virtio_mem *vm,
					  unsigned long mb_id, uint64_t *nb_sb)
1224
{
1225
	const int count = min_t(int, *nb_sb, vm->sbm.sbs_per_mb);
1226
	int rc;
1227 1228 1229 1230 1231 1232 1233 1234

	if (WARN_ON_ONCE(!count))
		return -EINVAL;

	/*
	 * Plug the requested number of subblocks before adding it to linux,
	 * so that onlining will directly online all plugged subblocks.
	 */
1235
	rc = virtio_mem_sbm_plug_sb(vm, mb_id, 0, count);
1236 1237 1238 1239 1240 1241 1242
	if (rc)
		return rc;

	/*
	 * Mark the block properly offline before adding it to Linux,
	 * so the memory notifiers will find the block in the right state.
	 */
1243
	if (count == vm->sbm.sbs_per_mb)
1244 1245
		virtio_mem_sbm_set_mb_state(vm, mb_id,
					    VIRTIO_MEM_SBM_MB_OFFLINE);
1246
	else
1247 1248
		virtio_mem_sbm_set_mb_state(vm, mb_id,
					    VIRTIO_MEM_SBM_MB_OFFLINE_PARTIAL);
1249 1250 1251 1252

	/* Add the memory block to linux - if that fails, try to unplug. */
	rc = virtio_mem_mb_add(vm, mb_id);
	if (rc) {
1253
		int new_state = VIRTIO_MEM_SBM_MB_UNUSED;
1254 1255 1256 1257 1258 1259 1260 1261

		dev_err(&vm->vdev->dev,
			"adding memory block %lu failed with %d\n", mb_id, rc);

		/*
		 * TODO: Linux MM does not properly clean up yet in all cases
		 * where adding of memory failed - especially on -ENOMEM.
		 */
1262
		if (virtio_mem_sbm_unplug_sb(vm, mb_id, 0, count))
1263 1264
			new_state = VIRTIO_MEM_SBM_MB_PLUGGED;
		virtio_mem_sbm_set_mb_state(vm, mb_id, new_state);
1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
		return rc;
	}

	*nb_sb -= count;
	return 0;
}

/*
 * Try to plug the desired number of subblocks of a memory block that
 * is already added to Linux.
 *
 * Will modify the state of the memory block.
 *
 * Note: Can fail after some subblocks were successfully plugged.
 */
1280 1281 1282
static int virtio_mem_sbm_plug_any_sb(struct virtio_mem *vm,
				      unsigned long mb_id, uint64_t *nb_sb,
				      bool online)
1283 1284 1285 1286 1287 1288 1289 1290 1291
{
	unsigned long pfn, nr_pages;
	int sb_id, count;
	int rc;

	if (WARN_ON_ONCE(!*nb_sb))
		return -EINVAL;

	while (*nb_sb) {
1292
		sb_id = virtio_mem_sbm_first_unplugged_sb(vm, mb_id);
1293
		if (sb_id >= vm->sbm.sbs_per_mb)
1294 1295 1296
			break;
		count = 1;
		while (count < *nb_sb &&
1297
		       sb_id + count < vm->sbm.sbs_per_mb &&
1298
		       !virtio_mem_sbm_test_sb_plugged(vm, mb_id, sb_id + count, 1))
1299 1300
			count++;

1301
		rc = virtio_mem_sbm_plug_sb(vm, mb_id, sb_id, count);
1302 1303 1304 1305 1306 1307 1308 1309
		if (rc)
			return rc;
		*nb_sb -= count;
		if (!online)
			continue;

		/* fake-online the pages if the memory block is online */
		pfn = PFN_DOWN(virtio_mem_mb_id_to_phys(mb_id) +
1310 1311
			       sb_id * vm->sbm.sb_size);
		nr_pages = PFN_DOWN(count * vm->sbm.sb_size);
1312 1313 1314
		virtio_mem_fake_online(pfn, nr_pages);
	}

1315
	if (virtio_mem_sbm_test_sb_plugged(vm, mb_id, 0, vm->sbm.sbs_per_mb)) {
1316
		if (online)
1317 1318
			virtio_mem_sbm_set_mb_state(vm, mb_id,
						    VIRTIO_MEM_SBM_MB_ONLINE);
1319
		else
1320 1321
			virtio_mem_sbm_set_mb_state(vm, mb_id,
						    VIRTIO_MEM_SBM_MB_OFFLINE);
1322 1323
	}

1324
	return 0;
1325 1326 1327 1328 1329 1330 1331
}

/*
 * Try to plug the requested amount of memory.
 */
static int virtio_mem_plug_request(struct virtio_mem *vm, uint64_t diff)
{
1332
	uint64_t nb_sb = diff / vm->sbm.sb_size;
1333 1334 1335 1336 1337 1338 1339 1340 1341 1342
	unsigned long mb_id;
	int rc;

	if (!nb_sb)
		return 0;

	/* Don't race with onlining/offlining */
	mutex_lock(&vm->hotplug_mutex);

	/* Try to plug subblocks of partially plugged online blocks. */
1343 1344
	virtio_mem_sbm_for_each_mb(vm, mb_id,
				   VIRTIO_MEM_SBM_MB_ONLINE_PARTIAL) {
1345
		rc = virtio_mem_sbm_plug_any_sb(vm, mb_id, &nb_sb, true);
1346 1347 1348 1349 1350 1351
		if (rc || !nb_sb)
			goto out_unlock;
		cond_resched();
	}

	/* Try to plug subblocks of partially plugged offline blocks. */
1352 1353
	virtio_mem_sbm_for_each_mb(vm, mb_id,
				   VIRTIO_MEM_SBM_MB_OFFLINE_PARTIAL) {
1354
		rc = virtio_mem_sbm_plug_any_sb(vm, mb_id, &nb_sb, false);
1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366
		if (rc || !nb_sb)
			goto out_unlock;
		cond_resched();
	}

	/*
	 * We won't be working on online/offline memory blocks from this point,
	 * so we can't race with memory onlining/offlining. Drop the mutex.
	 */
	mutex_unlock(&vm->hotplug_mutex);

	/* Try to plug and add unused blocks */
1367
	virtio_mem_sbm_for_each_mb(vm, mb_id, VIRTIO_MEM_SBM_MB_UNUSED) {
1368
		if (!virtio_mem_could_add_memory(vm, memory_block_size_bytes()))
1369 1370
			return -ENOSPC;

1371
		rc = virtio_mem_sbm_plug_and_add_mb(vm, mb_id, &nb_sb);
1372 1373 1374 1375 1376 1377 1378
		if (rc || !nb_sb)
			return rc;
		cond_resched();
	}

	/* Try to prepare, plug and add new blocks */
	while (nb_sb) {
1379
		if (!virtio_mem_could_add_memory(vm, memory_block_size_bytes()))
1380 1381
			return -ENOSPC;

1382
		rc = virtio_mem_sbm_prepare_next_mb(vm, &mb_id);
1383 1384
		if (rc)
			return rc;
1385
		rc = virtio_mem_sbm_plug_and_add_mb(vm, mb_id, &nb_sb);
1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396
		if (rc)
			return rc;
		cond_resched();
	}

	return 0;
out_unlock:
	mutex_unlock(&vm->hotplug_mutex);
	return rc;
}

1397 1398 1399 1400 1401 1402 1403 1404 1405
/*
 * Unplug the desired number of plugged subblocks of an offline memory block.
 * Will fail if any subblock cannot get unplugged (instead of skipping it).
 *
 * Will modify the state of the memory block. Might temporarily drop the
 * hotplug_mutex.
 *
 * Note: Can fail after some subblocks were successfully unplugged.
 */
1406 1407 1408
static int virtio_mem_sbm_unplug_any_sb_offline(struct virtio_mem *vm,
						unsigned long mb_id,
						uint64_t *nb_sb)
1409 1410 1411
{
	int rc;

1412
	rc = virtio_mem_sbm_unplug_any_sb(vm, mb_id, nb_sb);
1413 1414

	/* some subblocks might have been unplugged even on failure */
1415
	if (!virtio_mem_sbm_test_sb_plugged(vm, mb_id, 0, vm->sbm.sbs_per_mb))
1416 1417
		virtio_mem_sbm_set_mb_state(vm, mb_id,
					    VIRTIO_MEM_SBM_MB_OFFLINE_PARTIAL);
1418 1419 1420
	if (rc)
		return rc;

1421
	if (virtio_mem_sbm_test_sb_unplugged(vm, mb_id, 0, vm->sbm.sbs_per_mb)) {
1422 1423 1424 1425 1426 1427
		/*
		 * Remove the block from Linux - this should never fail.
		 * Hinder the block from getting onlined by marking it
		 * unplugged. Temporarily drop the mutex, so
		 * any pending GOING_ONLINE requests can be serviced/rejected.
		 */
1428 1429
		virtio_mem_sbm_set_mb_state(vm, mb_id,
					    VIRTIO_MEM_SBM_MB_UNUSED);
1430 1431 1432 1433 1434 1435 1436 1437 1438

		mutex_unlock(&vm->hotplug_mutex);
		rc = virtio_mem_mb_remove(vm, mb_id);
		BUG_ON(rc);
		mutex_lock(&vm->hotplug_mutex);
	}
	return 0;
}

1439 1440 1441 1442 1443
/*
 * Unplug the given plugged subblocks of an online memory block.
 *
 * Will modify the state of the memory block.
 */
1444 1445 1446
static int virtio_mem_sbm_unplug_sb_online(struct virtio_mem *vm,
					   unsigned long mb_id, int sb_id,
					   int count)
1447
{
1448
	const unsigned long nr_pages = PFN_DOWN(vm->sbm.sb_size) * count;
1449 1450 1451 1452
	unsigned long start_pfn;
	int rc;

	start_pfn = PFN_DOWN(virtio_mem_mb_id_to_phys(mb_id) +
1453
			     sb_id * vm->sbm.sb_size);
1454

1455 1456 1457
	rc = virtio_mem_fake_offline(start_pfn, nr_pages);
	if (rc)
		return rc;
1458 1459

	/* Try to unplug the allocated memory */
1460
	rc = virtio_mem_sbm_unplug_sb(vm, mb_id, sb_id, count);
1461 1462 1463 1464 1465 1466
	if (rc) {
		/* Return the memory to the buddy. */
		virtio_mem_fake_online(start_pfn, nr_pages);
		return rc;
	}

1467 1468
	virtio_mem_sbm_set_mb_state(vm, mb_id,
				    VIRTIO_MEM_SBM_MB_ONLINE_PARTIAL);
1469 1470 1471
	return 0;
}

1472 1473 1474 1475
/*
 * Unplug the desired number of plugged subblocks of an online memory block.
 * Will skip subblock that are busy.
 *
1476 1477
 * Will modify the state of the memory block. Might temporarily drop the
 * hotplug_mutex.
1478 1479 1480 1481
 *
 * Note: Can fail after some subblocks were successfully unplugged. Can
 *       return 0 even if subblocks were busy and could not get unplugged.
 */
1482 1483 1484
static int virtio_mem_sbm_unplug_any_sb_online(struct virtio_mem *vm,
					       unsigned long mb_id,
					       uint64_t *nb_sb)
1485 1486 1487
{
	int rc, sb_id;

1488
	/* If possible, try to unplug the complete block in one shot. */
1489 1490
	if (*nb_sb >= vm->sbm.sbs_per_mb &&
	    virtio_mem_sbm_test_sb_plugged(vm, mb_id, 0, vm->sbm.sbs_per_mb)) {
1491 1492
		rc = virtio_mem_sbm_unplug_sb_online(vm, mb_id, 0,
						     vm->sbm.sbs_per_mb);
1493
		if (!rc) {
1494
			*nb_sb -= vm->sbm.sbs_per_mb;
1495 1496 1497 1498 1499 1500
			goto unplugged;
		} else if (rc != -EBUSY)
			return rc;
	}

	/* Fallback to single subblocks. */
1501
	for (sb_id = vm->sbm.sbs_per_mb - 1; sb_id >= 0 && *nb_sb; sb_id--) {
1502
		/* Find the next candidate subblock */
1503
		while (sb_id >= 0 &&
1504
		       !virtio_mem_sbm_test_sb_plugged(vm, mb_id, sb_id, 1))
1505 1506
			sb_id--;
		if (sb_id < 0)
1507 1508
			break;

1509
		rc = virtio_mem_sbm_unplug_sb_online(vm, mb_id, sb_id, 1);
1510
		if (rc == -EBUSY)
1511
			continue;
1512
		else if (rc)
1513 1514 1515 1516
			return rc;
		*nb_sb -= 1;
	}

1517
unplugged:
1518
	/*
1519 1520 1521
	 * Once all subblocks of a memory block were unplugged, offline and
	 * remove it. This will usually not fail, as no memory is in use
	 * anymore - however some other notifiers might NACK the request.
1522
	 */
1523
	if (virtio_mem_sbm_test_sb_unplugged(vm, mb_id, 0, vm->sbm.sbs_per_mb)) {
1524 1525 1526 1527
		mutex_unlock(&vm->hotplug_mutex);
		rc = virtio_mem_mb_offline_and_remove(vm, mb_id);
		mutex_lock(&vm->hotplug_mutex);
		if (!rc)
1528 1529
			virtio_mem_sbm_set_mb_state(vm, mb_id,
						    VIRTIO_MEM_SBM_MB_UNUSED);
1530 1531
	}

1532 1533 1534
	return 0;
}

1535 1536 1537 1538 1539
/*
 * Try to unplug the requested amount of memory.
 */
static int virtio_mem_unplug_request(struct virtio_mem *vm, uint64_t diff)
{
1540
	uint64_t nb_sb = diff / vm->sbm.sb_size;
1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554
	unsigned long mb_id;
	int rc;

	if (!nb_sb)
		return 0;

	/*
	 * We'll drop the mutex a couple of times when it is safe to do so.
	 * This might result in some blocks switching the state (online/offline)
	 * and we could miss them in this run - we will retry again later.
	 */
	mutex_lock(&vm->hotplug_mutex);

	/* Try to unplug subblocks of partially plugged offline blocks. */
1555 1556
	virtio_mem_sbm_for_each_mb_rev(vm, mb_id,
				       VIRTIO_MEM_SBM_MB_OFFLINE_PARTIAL) {
1557
		rc = virtio_mem_sbm_unplug_any_sb_offline(vm, mb_id, &nb_sb);
1558 1559 1560 1561 1562 1563
		if (rc || !nb_sb)
			goto out_unlock;
		cond_resched();
	}

	/* Try to unplug subblocks of plugged offline blocks. */
1564
	virtio_mem_sbm_for_each_mb_rev(vm, mb_id, VIRTIO_MEM_SBM_MB_OFFLINE) {
1565
		rc = virtio_mem_sbm_unplug_any_sb_offline(vm, mb_id, &nb_sb);
1566 1567 1568 1569 1570
		if (rc || !nb_sb)
			goto out_unlock;
		cond_resched();
	}

1571 1572 1573 1574 1575 1576
	if (!unplug_online) {
		mutex_unlock(&vm->hotplug_mutex);
		return 0;
	}

	/* Try to unplug subblocks of partially plugged online blocks. */
1577 1578
	virtio_mem_sbm_for_each_mb_rev(vm, mb_id,
				       VIRTIO_MEM_SBM_MB_ONLINE_PARTIAL) {
1579
		rc = virtio_mem_sbm_unplug_any_sb_online(vm, mb_id, &nb_sb);
1580 1581 1582 1583 1584 1585 1586 1587
		if (rc || !nb_sb)
			goto out_unlock;
		mutex_unlock(&vm->hotplug_mutex);
		cond_resched();
		mutex_lock(&vm->hotplug_mutex);
	}

	/* Try to unplug subblocks of plugged online blocks. */
1588
	virtio_mem_sbm_for_each_mb_rev(vm, mb_id, VIRTIO_MEM_SBM_MB_ONLINE) {
1589
		rc = virtio_mem_sbm_unplug_any_sb_online(vm, mb_id, &nb_sb);
1590 1591 1592 1593 1594 1595 1596
		if (rc || !nb_sb)
			goto out_unlock;
		mutex_unlock(&vm->hotplug_mutex);
		cond_resched();
		mutex_lock(&vm->hotplug_mutex);
	}

1597
	mutex_unlock(&vm->hotplug_mutex);
1598
	return nb_sb ? -EBUSY : 0;
1599 1600 1601 1602 1603
out_unlock:
	mutex_unlock(&vm->hotplug_mutex);
	return rc;
}

1604 1605 1606 1607 1608 1609 1610 1611 1612
/*
 * Try to unplug all blocks that couldn't be unplugged before, for example,
 * because the hypervisor was busy.
 */
static int virtio_mem_unplug_pending_mb(struct virtio_mem *vm)
{
	unsigned long mb_id;
	int rc;

1613
	virtio_mem_sbm_for_each_mb(vm, mb_id, VIRTIO_MEM_SBM_MB_PLUGGED) {
1614
		rc = virtio_mem_sbm_unplug_mb(vm, mb_id);
1615 1616
		if (rc)
			return rc;
1617 1618
		virtio_mem_sbm_set_mb_state(vm, mb_id,
					    VIRTIO_MEM_SBM_MB_UNUSED);
1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
	}

	return 0;
}

/*
 * Update all parts of the config that could have changed.
 */
static void virtio_mem_refresh_config(struct virtio_mem *vm)
{
	const uint64_t phys_limit = 1UL << MAX_PHYSMEM_BITS;
	uint64_t new_plugged_size, usable_region_size, end_addr;

	/* the plugged_size is just a reflection of what _we_ did previously */
1633 1634
	virtio_cread_le(vm->vdev, struct virtio_mem_config, plugged_size,
			&new_plugged_size);
1635 1636 1637 1638
	if (WARN_ON_ONCE(new_plugged_size != vm->plugged_size))
		vm->plugged_size = new_plugged_size;

	/* calculate the last usable memory block id */
1639 1640
	virtio_cread_le(vm->vdev, struct virtio_mem_config,
			usable_region_size, &usable_region_size);
1641 1642
	end_addr = vm->addr + usable_region_size;
	end_addr = min(end_addr, phys_limit);
1643
	vm->sbm.last_usable_mb_id = virtio_mem_phys_to_mb_id(end_addr) - 1;
1644 1645

	/* see if there is a request to change the size */
1646 1647
	virtio_cread_le(vm->vdev, struct virtio_mem_config, requested_size,
			&vm->requested_size);
1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666

	dev_info(&vm->vdev->dev, "plugged size: 0x%llx", vm->plugged_size);
	dev_info(&vm->vdev->dev, "requested size: 0x%llx", vm->requested_size);
}

/*
 * Workqueue function for handling plug/unplug requests and config updates.
 */
static void virtio_mem_run_wq(struct work_struct *work)
{
	struct virtio_mem *vm = container_of(work, struct virtio_mem, wq);
	uint64_t diff;
	int rc;

	hrtimer_cancel(&vm->retry_timer);

	if (vm->broken)
		return;

1667
	atomic_set(&vm->wq_active, 1);
1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687
retry:
	rc = 0;

	/* Make sure we start with a clean state if there are leftovers. */
	if (unlikely(vm->unplug_all_required))
		rc = virtio_mem_send_unplug_all_request(vm);

	if (atomic_read(&vm->config_changed)) {
		atomic_set(&vm->config_changed, 0);
		virtio_mem_refresh_config(vm);
	}

	/* Unplug any leftovers from previous runs */
	if (!rc)
		rc = virtio_mem_unplug_pending_mb(vm);

	if (!rc && vm->requested_size != vm->plugged_size) {
		if (vm->requested_size > vm->plugged_size) {
			diff = vm->requested_size - vm->plugged_size;
			rc = virtio_mem_plug_request(vm, diff);
1688 1689 1690
		} else {
			diff = vm->plugged_size - vm->requested_size;
			rc = virtio_mem_unplug_request(vm, diff);
1691 1692 1693 1694 1695
		}
	}

	switch (rc) {
	case 0:
1696
		vm->retry_timer_ms = VIRTIO_MEM_RETRY_TIMER_MIN_MS;
1697 1698 1699 1700 1701 1702 1703
		break;
	case -ENOSPC:
		/*
		 * We cannot add any more memory (alignment, physical limit)
		 * or we have too many offline memory blocks.
		 */
		break;
1704
	case -ETXTBSY:
1705 1706
		/*
		 * The hypervisor cannot process our request right now
1707 1708 1709 1710 1711 1712
		 * (e.g., out of memory, migrating);
		 */
	case -EBUSY:
		/*
		 * We cannot free up any memory to unplug it (all plugged memory
		 * is busy).
1713 1714 1715
		 */
	case -ENOMEM:
		/* Out of memory, try again later. */
1716
		hrtimer_start(&vm->retry_timer, ms_to_ktime(vm->retry_timer_ms),
1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727
			      HRTIMER_MODE_REL);
		break;
	case -EAGAIN:
		/* Retry immediately (e.g., the config changed). */
		goto retry;
	default:
		/* Unknown error, mark as broken */
		dev_err(&vm->vdev->dev,
			"unknown error, marking device broken: %d\n", rc);
		vm->broken = true;
	}
1728 1729

	atomic_set(&vm->wq_active, 0);
1730 1731 1732 1733 1734 1735 1736 1737
}

static enum hrtimer_restart virtio_mem_timer_expired(struct hrtimer *timer)
{
	struct virtio_mem *vm = container_of(timer, struct virtio_mem,
					     retry_timer);

	virtio_mem_retry(vm);
1738 1739
	vm->retry_timer_ms = min_t(unsigned int, vm->retry_timer_ms * 2,
				   VIRTIO_MEM_RETRY_TIMER_MAX_MS);
1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765
	return HRTIMER_NORESTART;
}

static void virtio_mem_handle_response(struct virtqueue *vq)
{
	struct virtio_mem *vm = vq->vdev->priv;

	wake_up(&vm->host_resp);
}

static int virtio_mem_init_vq(struct virtio_mem *vm)
{
	struct virtqueue *vq;

	vq = virtio_find_single_vq(vm->vdev, virtio_mem_handle_response,
				   "guest-request");
	if (IS_ERR(vq))
		return PTR_ERR(vq);
	vm->vq = vq;

	return 0;
}

static int virtio_mem_init(struct virtio_mem *vm)
{
	const uint64_t phys_limit = 1UL << MAX_PHYSMEM_BITS;
1766
	uint16_t node_id;
1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782

	if (!vm->vdev->config->get) {
		dev_err(&vm->vdev->dev, "config access disabled\n");
		return -EINVAL;
	}

	/*
	 * We don't want to (un)plug or reuse any memory when in kdump. The
	 * memory is still accessible (but not mapped).
	 */
	if (is_kdump_kernel()) {
		dev_warn(&vm->vdev->dev, "disabled in kdump kernel\n");
		return -EBUSY;
	}

	/* Fetch all properties that can't change. */
1783 1784 1785 1786 1787 1788
	virtio_cread_le(vm->vdev, struct virtio_mem_config, plugged_size,
			&vm->plugged_size);
	virtio_cread_le(vm->vdev, struct virtio_mem_config, block_size,
			&vm->device_block_size);
	virtio_cread_le(vm->vdev, struct virtio_mem_config, node_id,
			&node_id);
1789
	vm->nid = virtio_mem_translate_node_id(vm, node_id);
1790 1791 1792
	virtio_cread_le(vm->vdev, struct virtio_mem_config, addr, &vm->addr);
	virtio_cread_le(vm->vdev, struct virtio_mem_config, region_size,
			&vm->region_size);
1793

1794 1795 1796 1797
	/* Determine the nid for the device based on the lowest address. */
	if (vm->nid == NUMA_NO_NODE)
		vm->nid = memory_add_physaddr_to_nid(vm->addr);

1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819
	/*
	 * We always hotplug memory in memory block granularity. This way,
	 * we have to wait for exactly one memory block to online.
	 */
	if (vm->device_block_size > memory_block_size_bytes()) {
		dev_err(&vm->vdev->dev,
			"The block size is not supported (too big).\n");
		return -EINVAL;
	}

	/* bad device setup - warn only */
	if (!IS_ALIGNED(vm->addr, memory_block_size_bytes()))
		dev_warn(&vm->vdev->dev,
			 "The alignment of the physical start address can make some memory unusable.\n");
	if (!IS_ALIGNED(vm->addr + vm->region_size, memory_block_size_bytes()))
		dev_warn(&vm->vdev->dev,
			 "The alignment of the physical end address can make some memory unusable.\n");
	if (vm->addr + vm->region_size > phys_limit)
		dev_warn(&vm->vdev->dev,
			 "Some memory is not addressable. This can make some memory unusable.\n");

	/*
1820 1821 1822 1823 1824 1825
	 * We want subblocks to span at least MAX_ORDER_NR_PAGES and
	 * pageblock_nr_pages pages. This:
	 * - Simplifies our page onlining code (virtio_mem_online_page_cb)
	 *   and fake page onlining code (virtio_mem_fake_online).
	 * - Is required for now for alloc_contig_range() to work reliably -
	 *   it doesn't properly handle smaller granularity on ZONE_NORMAL.
1826
	 */
1827 1828 1829 1830 1831
	vm->sbm.sb_size = max_t(uint64_t, MAX_ORDER_NR_PAGES,
				pageblock_nr_pages) * PAGE_SIZE;
	vm->sbm.sb_size = max_t(uint64_t, vm->device_block_size,
				vm->sbm.sb_size);
	vm->sbm.sbs_per_mb = memory_block_size_bytes() / vm->sbm.sb_size;
1832 1833

	/* Round up to the next full memory block */
1834 1835 1836
	vm->sbm.first_mb_id = virtio_mem_phys_to_mb_id(vm->addr - 1 +
						       memory_block_size_bytes());
	vm->sbm.next_mb_id = vm->sbm.first_mb_id;
1837

1838 1839 1840 1841
	/* Prepare the offline threshold - make sure we can add two blocks. */
	vm->offline_threshold = max_t(uint64_t, 2 * memory_block_size_bytes(),
				      VIRTIO_MEM_DEFAULT_OFFLINE_THRESHOLD);

1842 1843
	dev_info(&vm->vdev->dev, "start address: 0x%llx", vm->addr);
	dev_info(&vm->vdev->dev, "region size: 0x%llx", vm->region_size);
1844 1845
	dev_info(&vm->vdev->dev, "device block size: 0x%llx",
		 (unsigned long long)vm->device_block_size);
1846 1847
	dev_info(&vm->vdev->dev, "memory block size: 0x%lx",
		 memory_block_size_bytes());
1848
	dev_info(&vm->vdev->dev, "subblock size: 0x%llx",
1849
		 (unsigned long long)vm->sbm.sb_size);
1850
	if (vm->nid != NUMA_NO_NODE && IS_ENABLED(CONFIG_NUMA))
1851
		dev_info(&vm->vdev->dev, "nid: %d", vm->nid);
1852 1853 1854 1855

	return 0;
}

1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871
static int virtio_mem_create_resource(struct virtio_mem *vm)
{
	/*
	 * When force-unloading the driver and removing the device, we
	 * could have a garbage pointer. Duplicate the string.
	 */
	const char *name = kstrdup(dev_name(&vm->vdev->dev), GFP_KERNEL);

	if (!name)
		return -ENOMEM;

	vm->parent_resource = __request_mem_region(vm->addr, vm->region_size,
						   name, IORESOURCE_SYSTEM_RAM);
	if (!vm->parent_resource) {
		kfree(name);
		dev_warn(&vm->vdev->dev, "could not reserve device region\n");
1872 1873
		dev_info(&vm->vdev->dev,
			 "reloading the driver is not supported\n");
1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895
		return -EBUSY;
	}

	/* The memory is not actually busy - make add_memory() work. */
	vm->parent_resource->flags &= ~IORESOURCE_BUSY;
	return 0;
}

static void virtio_mem_delete_resource(struct virtio_mem *vm)
{
	const char *name;

	if (!vm->parent_resource)
		return;

	name = vm->parent_resource->name;
	release_resource(vm->parent_resource);
	kfree(vm->parent_resource);
	kfree(name);
	vm->parent_resource = NULL;
}

1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909
static int virtio_mem_range_has_system_ram(struct resource *res, void *arg)
{
	return 1;
}

static bool virtio_mem_has_memory_added(struct virtio_mem *vm)
{
	const unsigned long flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;

	return walk_iomem_res_desc(IORES_DESC_NONE, flags, vm->addr,
				   vm->addr + vm->region_size, NULL,
				   virtio_mem_range_has_system_ram) == 1;
}

1910 1911 1912
static int virtio_mem_probe(struct virtio_device *vdev)
{
	struct virtio_mem *vm;
1913
	int rc;
1914

1915 1916 1917
	BUILD_BUG_ON(sizeof(struct virtio_mem_req) != 24);
	BUILD_BUG_ON(sizeof(struct virtio_mem_resp) != 10);

1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929
	vdev->priv = vm = kzalloc(sizeof(*vm), GFP_KERNEL);
	if (!vm)
		return -ENOMEM;

	init_waitqueue_head(&vm->host_resp);
	vm->vdev = vdev;
	INIT_WORK(&vm->wq, virtio_mem_run_wq);
	mutex_init(&vm->hotplug_mutex);
	INIT_LIST_HEAD(&vm->next);
	spin_lock_init(&vm->removal_lock);
	hrtimer_init(&vm->retry_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
	vm->retry_timer.function = virtio_mem_timer_expired;
1930
	vm->retry_timer_ms = VIRTIO_MEM_RETRY_TIMER_MIN_MS;
1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941

	/* register the virtqueue */
	rc = virtio_mem_init_vq(vm);
	if (rc)
		goto out_free_vm;

	/* initialize the device by querying the config */
	rc = virtio_mem_init(vm);
	if (rc)
		goto out_del_vq;

1942 1943 1944 1945 1946
	/* create the parent resource for all memory */
	rc = virtio_mem_create_resource(vm);
	if (rc)
		goto out_del_vq;

1947 1948 1949 1950 1951 1952 1953 1954 1955 1956
	/*
	 * If we still have memory plugged, we have to unplug all memory first.
	 * Registering our parent resource makes sure that this memory isn't
	 * actually in use (e.g., trying to reload the driver).
	 */
	if (vm->plugged_size) {
		vm->unplug_all_required = 1;
		dev_info(&vm->vdev->dev, "unplugging all memory is required\n");
	}

1957 1958 1959 1960
	/* register callbacks */
	vm->memory_notifier.notifier_call = virtio_mem_memory_notifier_cb;
	rc = register_memory_notifier(&vm->memory_notifier);
	if (rc)
1961
		goto out_del_resource;
1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974
	rc = register_virtio_mem_device(vm);
	if (rc)
		goto out_unreg_mem;

	virtio_device_ready(vdev);

	/* trigger a config update to start processing the requested_size */
	atomic_set(&vm->config_changed, 1);
	queue_work(system_freezable_wq, &vm->wq);

	return 0;
out_unreg_mem:
	unregister_memory_notifier(&vm->memory_notifier);
1975 1976
out_del_resource:
	virtio_mem_delete_resource(vm);
1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009
out_del_vq:
	vdev->config->del_vqs(vdev);
out_free_vm:
	kfree(vm);
	vdev->priv = NULL;

	return rc;
}

static void virtio_mem_remove(struct virtio_device *vdev)
{
	struct virtio_mem *vm = vdev->priv;
	unsigned long mb_id;
	int rc;

	/*
	 * Make sure the workqueue won't be triggered anymore and no memory
	 * blocks can be onlined/offlined until we're finished here.
	 */
	mutex_lock(&vm->hotplug_mutex);
	spin_lock_irq(&vm->removal_lock);
	vm->removing = true;
	spin_unlock_irq(&vm->removal_lock);
	mutex_unlock(&vm->hotplug_mutex);

	/* wait until the workqueue stopped */
	cancel_work_sync(&vm->wq);
	hrtimer_cancel(&vm->retry_timer);

	/*
	 * After we unregistered our callbacks, user space can online partially
	 * plugged offline blocks. Make sure to remove them.
	 */
2010 2011
	virtio_mem_sbm_for_each_mb(vm, mb_id,
				   VIRTIO_MEM_SBM_MB_OFFLINE_PARTIAL) {
2012 2013
		rc = virtio_mem_mb_remove(vm, mb_id);
		BUG_ON(rc);
2014 2015
		virtio_mem_sbm_set_mb_state(vm, mb_id,
					    VIRTIO_MEM_SBM_MB_UNUSED);
2016
	}
2017 2018 2019 2020 2021
	/*
	 * After we unregistered our callbacks, user space can no longer
	 * offline partially plugged online memory blocks. No need to worry
	 * about them.
	 */
2022 2023 2024 2025 2026 2027 2028 2029 2030 2031

	/* unregister callbacks */
	unregister_virtio_mem_device(vm);
	unregister_memory_notifier(&vm->memory_notifier);

	/*
	 * There is no way we could reliably remove all memory we have added to
	 * the system. And there is no way to stop the driver/device from going
	 * away. Warn at least.
	 */
2032
	if (virtio_mem_has_memory_added(vm)) {
2033
		dev_warn(&vdev->dev, "device still has system memory added\n");
2034
	} else {
2035
		virtio_mem_delete_resource(vm);
2036 2037
		kfree_const(vm->resource_name);
	}
2038 2039

	/* remove all tracking data - no locking needed */
2040
	vfree(vm->sbm.mb_states);
2041
	vfree(vm->sbm.sb_states);
2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075

	/* reset the device and cleanup the queues */
	vdev->config->reset(vdev);
	vdev->config->del_vqs(vdev);

	kfree(vm);
	vdev->priv = NULL;
}

static void virtio_mem_config_changed(struct virtio_device *vdev)
{
	struct virtio_mem *vm = vdev->priv;

	atomic_set(&vm->config_changed, 1);
	virtio_mem_retry(vm);
}

#ifdef CONFIG_PM_SLEEP
static int virtio_mem_freeze(struct virtio_device *vdev)
{
	/*
	 * When restarting the VM, all memory is usually unplugged. Don't
	 * allow to suspend/hibernate.
	 */
	dev_err(&vdev->dev, "save/restore not supported.\n");
	return -EPERM;
}

static int virtio_mem_restore(struct virtio_device *vdev)
{
	return -EPERM;
}
#endif

2076 2077 2078 2079 2080 2081
static unsigned int virtio_mem_features[] = {
#if defined(CONFIG_NUMA) && defined(CONFIG_ACPI_NUMA)
	VIRTIO_MEM_F_ACPI_PXM,
#endif
};

2082
static const struct virtio_device_id virtio_mem_id_table[] = {
2083 2084 2085 2086 2087
	{ VIRTIO_ID_MEM, VIRTIO_DEV_ANY_ID },
	{ 0 },
};

static struct virtio_driver virtio_mem_driver = {
2088 2089
	.feature_table = virtio_mem_features,
	.feature_table_size = ARRAY_SIZE(virtio_mem_features),
2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106
	.driver.name = KBUILD_MODNAME,
	.driver.owner = THIS_MODULE,
	.id_table = virtio_mem_id_table,
	.probe = virtio_mem_probe,
	.remove = virtio_mem_remove,
	.config_changed = virtio_mem_config_changed,
#ifdef CONFIG_PM_SLEEP
	.freeze	=	virtio_mem_freeze,
	.restore =	virtio_mem_restore,
#endif
};

module_virtio_driver(virtio_mem_driver);
MODULE_DEVICE_TABLE(virtio, virtio_mem_id_table);
MODULE_AUTHOR("David Hildenbrand <david@redhat.com>");
MODULE_DESCRIPTION("Virtio-mem driver");
MODULE_LICENSE("GPL");