linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/2] selftests: kvm: Introduce the mem_slot_test test
@ 2020-04-08 22:08 Wainer dos Santos Moschetta
  2020-04-08 22:08 ` [PATCH v4 1/2] selftests: kvm: Add vm_get_fd() in kvm_util Wainer dos Santos Moschetta
  2020-04-08 22:08 ` [PATCH v4 2/2] selftests: kvm: Add mem_slot_test test Wainer dos Santos Moschetta
  0 siblings, 2 replies; 10+ messages in thread
From: Wainer dos Santos Moschetta @ 2020-04-08 22:08 UTC (permalink / raw)
  To: pbonzini, kvm; +Cc: drjones, david, linux-kernel, linux-kselftest

This series introduces a new KVM selftest (mem_slot_test) that goal
is to verify memory slots can be added up to the maximum allowed. An
extra slot is attempted which should occur on error.

The patch 01 is needed so that the VM fd can be accessed from the
test code (for the ioctl call attempting to add an extra slot).

I ran the test successfully on x86_64, aarch64, and s390x.  This
is why it is enabled to build on those arches.

- Changelog -

v3 -> v4:
 - Discarded mem_reg_flags variable. Simply using 0 instead [drjones]
 - Discarded kvm_region pointer. Instead passing a compound literal in
   the ioctl [drjones]
 - All variables are declared on the declaration block [drjones]

v2 -> v3:
 - Keep alphabetical order of .gitignore and Makefile [drjones]
 - Use memory region flags equals to zero [drjones]
 - Changed mmap() assert from 'mem != NULL' to 'mem != MAP_FAILED' [drjones]
 - kvm_region is declared along side other variables and malloc()'ed
   later [drjones]
 - Combined two asserts into a single 'ret == -1 && errno == EINVAL'
   [drjones]

v1 -> v2:
 - Rebased to queue
 - vm_get_fd() returns int instead of unsigned int (patch 01) [drjones]
 - Removed MEM_REG_FLAGS and GUEST_VM_MODE defines [drjones]
 - Replaced DEBUG() with pr_info() [drjones]
 - Calculate number of guest pages with vm_calc_num_guest_pages()
   [drjones]
 - Using memory region of 1 MB sized (matches mininum needed
   for s390x)
 - Removed the increment of guest_addr after the loop [drjones]
 - Added assert for the errno when adding a slot beyond-the-limit [drjones]
 - Prefer KVM_MEM_READONLY flag but on s390x it switch to KVM_MEM_LOG_DIRTY_PAGES,
   so ensure the coverage of both flags. Also somewhat tests the KVM_CAP_READONLY_MEM capability check [drjones]
 - Moved the test logic to test_add_max_slots(), this allows to more easily add new cases in the "suite".

v1: https://lore.kernel.org/kvm/20200330204310.21736-1-wainersm@redhat.com

Wainer dos Santos Moschetta (2):
  selftests: kvm: Add vm_get_fd() in kvm_util
  selftests: kvm: Add mem_slot_test test

 tools/testing/selftests/kvm/.gitignore        |  1 +
 tools/testing/selftests/kvm/Makefile          |  3 +
 .../testing/selftests/kvm/include/kvm_util.h  |  1 +
 tools/testing/selftests/kvm/lib/kvm_util.c    |  5 ++
 tools/testing/selftests/kvm/mem_slot_test.c   | 76 +++++++++++++++++++
 5 files changed, 86 insertions(+)
 create mode 100644 tools/testing/selftests/kvm/mem_slot_test.c

-- 
2.17.2


^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH v4 1/2] selftests: kvm: Add vm_get_fd() in kvm_util
  2020-04-08 22:08 [PATCH v4 0/2] selftests: kvm: Introduce the mem_slot_test test Wainer dos Santos Moschetta
@ 2020-04-08 22:08 ` Wainer dos Santos Moschetta
  2020-04-09  1:25   ` Krish Sadhukhan
  2020-04-08 22:08 ` [PATCH v4 2/2] selftests: kvm: Add mem_slot_test test Wainer dos Santos Moschetta
  1 sibling, 1 reply; 10+ messages in thread
From: Wainer dos Santos Moschetta @ 2020-04-08 22:08 UTC (permalink / raw)
  To: pbonzini, kvm; +Cc: drjones, david, linux-kernel, linux-kselftest

Introduces the vm_get_fd() function in kvm_util which returns
the VM file descriptor.

Reviewed-by: Andrew Jones <drjones@redhat.com>
Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
---
 tools/testing/selftests/kvm/include/kvm_util.h | 1 +
 tools/testing/selftests/kvm/lib/kvm_util.c     | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/tools/testing/selftests/kvm/include/kvm_util.h b/tools/testing/selftests/kvm/include/kvm_util.h
index a99b875f50d2..4e122819ee24 100644
--- a/tools/testing/selftests/kvm/include/kvm_util.h
+++ b/tools/testing/selftests/kvm/include/kvm_util.h
@@ -254,6 +254,7 @@ bool vm_is_unrestricted_guest(struct kvm_vm *vm);
 unsigned int vm_get_page_size(struct kvm_vm *vm);
 unsigned int vm_get_page_shift(struct kvm_vm *vm);
 unsigned int vm_get_max_gfn(struct kvm_vm *vm);
+int vm_get_fd(struct kvm_vm *vm);
 
 unsigned int vm_calc_num_guest_pages(enum vm_guest_mode mode, size_t size);
 unsigned int vm_num_host_pages(enum vm_guest_mode mode, unsigned int num_guest_pages);
diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
index 8a3523d4434f..3e36a1eb8771 100644
--- a/tools/testing/selftests/kvm/lib/kvm_util.c
+++ b/tools/testing/selftests/kvm/lib/kvm_util.c
@@ -1734,6 +1734,11 @@ unsigned int vm_get_max_gfn(struct kvm_vm *vm)
 	return vm->max_gfn;
 }
 
+int vm_get_fd(struct kvm_vm *vm)
+{
+        return vm->fd;
+}
+
 static unsigned int vm_calc_num_pages(unsigned int num_pages,
 				      unsigned int page_shift,
 				      unsigned int new_page_shift,
-- 
2.17.2


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH v4 2/2] selftests: kvm: Add mem_slot_test test
  2020-04-08 22:08 [PATCH v4 0/2] selftests: kvm: Introduce the mem_slot_test test Wainer dos Santos Moschetta
  2020-04-08 22:08 ` [PATCH v4 1/2] selftests: kvm: Add vm_get_fd() in kvm_util Wainer dos Santos Moschetta
@ 2020-04-08 22:08 ` Wainer dos Santos Moschetta
  2020-04-09  1:31   ` Krish Sadhukhan
  2020-04-09  8:43   ` Andrew Jones
  1 sibling, 2 replies; 10+ messages in thread
From: Wainer dos Santos Moschetta @ 2020-04-08 22:08 UTC (permalink / raw)
  To: pbonzini, kvm; +Cc: drjones, david, linux-kernel, linux-kselftest

This patch introduces the mem_slot_test test which checks
an VM can have added memory slots up to the limit defined in
KVM_CAP_NR_MEMSLOTS. Then attempt to add one more slot to
verify it fails as expected.

Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
---
 tools/testing/selftests/kvm/.gitignore      |  1 +
 tools/testing/selftests/kvm/Makefile        |  3 +
 tools/testing/selftests/kvm/mem_slot_test.c | 76 +++++++++++++++++++++
 3 files changed, 80 insertions(+)
 create mode 100644 tools/testing/selftests/kvm/mem_slot_test.c

diff --git a/tools/testing/selftests/kvm/.gitignore b/tools/testing/selftests/kvm/.gitignore
index 16877c3daabf..127d27188427 100644
--- a/tools/testing/selftests/kvm/.gitignore
+++ b/tools/testing/selftests/kvm/.gitignore
@@ -21,4 +21,5 @@
 /demand_paging_test
 /dirty_log_test
 /kvm_create_max_vcpus
+/mem_slot_test
 /steal_time
diff --git a/tools/testing/selftests/kvm/Makefile b/tools/testing/selftests/kvm/Makefile
index 712a2ddd2a27..338b6cdce1a0 100644
--- a/tools/testing/selftests/kvm/Makefile
+++ b/tools/testing/selftests/kvm/Makefile
@@ -32,12 +32,14 @@ TEST_GEN_PROGS_x86_64 += clear_dirty_log_test
 TEST_GEN_PROGS_x86_64 += demand_paging_test
 TEST_GEN_PROGS_x86_64 += dirty_log_test
 TEST_GEN_PROGS_x86_64 += kvm_create_max_vcpus
+TEST_GEN_PROGS_x86_64 += mem_slot_test
 TEST_GEN_PROGS_x86_64 += steal_time
 
 TEST_GEN_PROGS_aarch64 += clear_dirty_log_test
 TEST_GEN_PROGS_aarch64 += demand_paging_test
 TEST_GEN_PROGS_aarch64 += dirty_log_test
 TEST_GEN_PROGS_aarch64 += kvm_create_max_vcpus
+TEST_GEN_PROGS_aarch64 += mem_slot_test
 TEST_GEN_PROGS_aarch64 += steal_time
 
 TEST_GEN_PROGS_s390x = s390x/memop
@@ -46,6 +48,7 @@ TEST_GEN_PROGS_s390x += s390x/sync_regs_test
 TEST_GEN_PROGS_s390x += demand_paging_test
 TEST_GEN_PROGS_s390x += dirty_log_test
 TEST_GEN_PROGS_s390x += kvm_create_max_vcpus
+TEST_GEN_PROGS_s390x += mem_slot_test
 
 TEST_GEN_PROGS += $(TEST_GEN_PROGS_$(UNAME_M))
 LIBKVM += $(LIBKVM_$(UNAME_M))
diff --git a/tools/testing/selftests/kvm/mem_slot_test.c b/tools/testing/selftests/kvm/mem_slot_test.c
new file mode 100644
index 000000000000..7c1009f0bc07
--- /dev/null
+++ b/tools/testing/selftests/kvm/mem_slot_test.c
@@ -0,0 +1,76 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * mem_slot_test
+ *
+ * Copyright (C) 2020, Red Hat, Inc.
+ *
+ * Test suite for memory region operations.
+ */
+#define _GNU_SOURCE /* for program_invocation_short_name */
+#include <linux/kvm.h>
+#include <sys/mman.h>
+
+#include "test_util.h"
+#include "kvm_util.h"
+
+/*
+ * Test it can be added memory slots up to KVM_CAP_NR_MEMSLOTS, then any
+ * tentative to add further slots should fail.
+ */
+static void test_add_max_slots(void)
+{
+	int ret;
+	struct kvm_vm *vm;
+	uint32_t max_mem_slots;
+	uint32_t slot;
+	uint64_t guest_addr;
+	uint64_t mem_reg_npages;
+	uint64_t mem_reg_size;
+	void *mem;
+
+	max_mem_slots = kvm_check_cap(KVM_CAP_NR_MEMSLOTS);
+	TEST_ASSERT(max_mem_slots > 0,
+		    "KVM_CAP_NR_MEMSLOTS should be greater than 0");
+	pr_info("Allowed number of memory slots: %i\n", max_mem_slots);
+
+	vm = vm_create(VM_MODE_DEFAULT, 0, O_RDWR);
+
+	/*
+	 * Uses 1MB sized/aligned memory region since this is the minimal
+	 * required on s390x.
+	 */
+	mem_reg_size = 0x100000;
+	mem_reg_npages = vm_calc_num_guest_pages(VM_MODE_DEFAULT, mem_reg_size);
+
+	guest_addr = 0x0;
+
+	/* Check it can be added memory slots up to the maximum allowed */
+	pr_info("Adding slots 0..%i, each memory region with %ldK size\n",
+		(max_mem_slots - 1), mem_reg_size >> 10);
+	for (slot = 0; slot < max_mem_slots; slot++) {
+		vm_userspace_mem_region_add(vm, VM_MEM_SRC_ANONYMOUS,
+					    guest_addr, slot, mem_reg_npages,
+					    0);
+		guest_addr += mem_reg_size;
+	}
+
+	/* Check it cannot be added memory slots beyond the limit */
+	mem = mmap(NULL, mem_reg_size, PROT_READ | PROT_WRITE,
+		   MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
+	TEST_ASSERT(mem != MAP_FAILED, "Failed to mmap() host");
+
+	ret = ioctl(vm_get_fd(vm), KVM_SET_USER_MEMORY_REGION,
+		    &(struct kvm_userspace_memory_region) {slot, 0, guest_addr,
+		    mem_reg_size, (uint64_t) mem});
+	TEST_ASSERT(ret == -1 && errno == EINVAL,
+		    "Adding one more memory slot should fail with EINVAL");
+
+	munmap(mem, mem_reg_size);
+	kvm_vm_free(vm);
+}
+
+int main(int argc, char *argv[])
+{
+	test_add_max_slots();
+	return 0;
+}
-- 
2.17.2


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH v4 1/2] selftests: kvm: Add vm_get_fd() in kvm_util
  2020-04-08 22:08 ` [PATCH v4 1/2] selftests: kvm: Add vm_get_fd() in kvm_util Wainer dos Santos Moschetta
@ 2020-04-09  1:25   ` Krish Sadhukhan
  2020-04-09  2:45     ` Wainer dos Santos Moschetta
  0 siblings, 1 reply; 10+ messages in thread
From: Krish Sadhukhan @ 2020-04-09  1:25 UTC (permalink / raw)
  To: Wainer dos Santos Moschetta, pbonzini, kvm
  Cc: drjones, david, linux-kernel, linux-kselftest


On 4/8/20 3:08 PM, Wainer dos Santos Moschetta wrote:
> Introduces the vm_get_fd() function in kvm_util which returns
> the VM file descriptor.
>
> Reviewed-by: Andrew Jones <drjones@redhat.com>
> Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
> ---
>   tools/testing/selftests/kvm/include/kvm_util.h | 1 +
>   tools/testing/selftests/kvm/lib/kvm_util.c     | 5 +++++
>   2 files changed, 6 insertions(+)
>
> diff --git a/tools/testing/selftests/kvm/include/kvm_util.h b/tools/testing/selftests/kvm/include/kvm_util.h
> index a99b875f50d2..4e122819ee24 100644
> --- a/tools/testing/selftests/kvm/include/kvm_util.h
> +++ b/tools/testing/selftests/kvm/include/kvm_util.h
> @@ -254,6 +254,7 @@ bool vm_is_unrestricted_guest(struct kvm_vm *vm);
>   unsigned int vm_get_page_size(struct kvm_vm *vm);
>   unsigned int vm_get_page_shift(struct kvm_vm *vm);
>   unsigned int vm_get_max_gfn(struct kvm_vm *vm);
> +int vm_get_fd(struct kvm_vm *vm);
>   
>   unsigned int vm_calc_num_guest_pages(enum vm_guest_mode mode, size_t size);
>   unsigned int vm_num_host_pages(enum vm_guest_mode mode, unsigned int num_guest_pages);
> diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
> index 8a3523d4434f..3e36a1eb8771 100644
> --- a/tools/testing/selftests/kvm/lib/kvm_util.c
> +++ b/tools/testing/selftests/kvm/lib/kvm_util.c
> @@ -1734,6 +1734,11 @@ unsigned int vm_get_max_gfn(struct kvm_vm *vm)
>   	return vm->max_gfn;
>   }
>   
> +int vm_get_fd(struct kvm_vm *vm)
> +{
> +        return vm->fd;
> +}
> +


I am just trying to understand why we need a separate function when the 
'vm' variable is all local within the same file. There are a number of 
places in kvm_util.c where it is used directly.

>   static unsigned int vm_calc_num_pages(unsigned int num_pages,
>   				      unsigned int page_shift,
>   				      unsigned int new_page_shift,

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v4 2/2] selftests: kvm: Add mem_slot_test test
  2020-04-08 22:08 ` [PATCH v4 2/2] selftests: kvm: Add mem_slot_test test Wainer dos Santos Moschetta
@ 2020-04-09  1:31   ` Krish Sadhukhan
  2020-04-09  3:01     ` Wainer dos Santos Moschetta
  2020-04-09  8:43   ` Andrew Jones
  1 sibling, 1 reply; 10+ messages in thread
From: Krish Sadhukhan @ 2020-04-09  1:31 UTC (permalink / raw)
  To: Wainer dos Santos Moschetta, pbonzini, kvm
  Cc: drjones, david, linux-kernel, linux-kselftest


On 4/8/20 3:08 PM, Wainer dos Santos Moschetta wrote:
> This patch introduces the mem_slot_test test which checks
> an VM can have added memory slots up to the limit defined in
> KVM_CAP_NR_MEMSLOTS. Then attempt to add one more slot to
> verify it fails as expected.
>
> Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
> ---
>   tools/testing/selftests/kvm/.gitignore      |  1 +
>   tools/testing/selftests/kvm/Makefile        |  3 +
>   tools/testing/selftests/kvm/mem_slot_test.c | 76 +++++++++++++++++++++
>   3 files changed, 80 insertions(+)
>   create mode 100644 tools/testing/selftests/kvm/mem_slot_test.c
>
> diff --git a/tools/testing/selftests/kvm/.gitignore b/tools/testing/selftests/kvm/.gitignore
> index 16877c3daabf..127d27188427 100644
> --- a/tools/testing/selftests/kvm/.gitignore
> +++ b/tools/testing/selftests/kvm/.gitignore
> @@ -21,4 +21,5 @@
>   /demand_paging_test
>   /dirty_log_test
>   /kvm_create_max_vcpus
> +/mem_slot_test
>   /steal_time
> diff --git a/tools/testing/selftests/kvm/Makefile b/tools/testing/selftests/kvm/Makefile
> index 712a2ddd2a27..338b6cdce1a0 100644
> --- a/tools/testing/selftests/kvm/Makefile
> +++ b/tools/testing/selftests/kvm/Makefile
> @@ -32,12 +32,14 @@ TEST_GEN_PROGS_x86_64 += clear_dirty_log_test
>   TEST_GEN_PROGS_x86_64 += demand_paging_test
>   TEST_GEN_PROGS_x86_64 += dirty_log_test
>   TEST_GEN_PROGS_x86_64 += kvm_create_max_vcpus
> +TEST_GEN_PROGS_x86_64 += mem_slot_test
>   TEST_GEN_PROGS_x86_64 += steal_time
>   
>   TEST_GEN_PROGS_aarch64 += clear_dirty_log_test
>   TEST_GEN_PROGS_aarch64 += demand_paging_test
>   TEST_GEN_PROGS_aarch64 += dirty_log_test
>   TEST_GEN_PROGS_aarch64 += kvm_create_max_vcpus
> +TEST_GEN_PROGS_aarch64 += mem_slot_test
>   TEST_GEN_PROGS_aarch64 += steal_time
>   
>   TEST_GEN_PROGS_s390x = s390x/memop
> @@ -46,6 +48,7 @@ TEST_GEN_PROGS_s390x += s390x/sync_regs_test
>   TEST_GEN_PROGS_s390x += demand_paging_test
>   TEST_GEN_PROGS_s390x += dirty_log_test
>   TEST_GEN_PROGS_s390x += kvm_create_max_vcpus
> +TEST_GEN_PROGS_s390x += mem_slot_test
>   
>   TEST_GEN_PROGS += $(TEST_GEN_PROGS_$(UNAME_M))
>   LIBKVM += $(LIBKVM_$(UNAME_M))
> diff --git a/tools/testing/selftests/kvm/mem_slot_test.c b/tools/testing/selftests/kvm/mem_slot_test.c
> new file mode 100644
> index 000000000000..7c1009f0bc07
> --- /dev/null
> +++ b/tools/testing/selftests/kvm/mem_slot_test.c
> @@ -0,0 +1,76 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +/*
> + * mem_slot_test
> + *
> + * Copyright (C) 2020, Red Hat, Inc.
> + *
> + * Test suite for memory region operations.
> + */
> +#define _GNU_SOURCE /* for program_invocation_short_name */
> +#include <linux/kvm.h>
> +#include <sys/mman.h>
> +
> +#include "test_util.h"
> +#include "kvm_util.h"
> +
> +/*
> + * Test it can be added memory slots up to KVM_CAP_NR_MEMSLOTS, then any
> + * tentative to add further slots should fail.
> + */
> +static void test_add_max_slots(void)
> +{
> +	int ret;
> +	struct kvm_vm *vm;
> +	uint32_t max_mem_slots;
> +	uint32_t slot;
> +	uint64_t guest_addr;
> +	uint64_t mem_reg_npages;
> +	uint64_t mem_reg_size;
> +	void *mem;
> +
> +	max_mem_slots = kvm_check_cap(KVM_CAP_NR_MEMSLOTS);
> +	TEST_ASSERT(max_mem_slots > 0,
> +		    "KVM_CAP_NR_MEMSLOTS should be greater than 0");
> +	pr_info("Allowed number of memory slots: %i\n", max_mem_slots);
> +
> +	vm = vm_create(VM_MODE_DEFAULT, 0, O_RDWR);
> +
> +	/*
> +	 * Uses 1MB sized/aligned memory region since this is the minimal
> +	 * required on s390x.
> +	 */
> +	mem_reg_size = 0x100000;
> +	mem_reg_npages = vm_calc_num_guest_pages(VM_MODE_DEFAULT, mem_reg_size);
> +
> +	guest_addr = 0x0;


Nit: Can't this be initialized where it's defined above ?

> +
> +	/* Check it can be added memory slots up to the maximum allowed */
> +	pr_info("Adding slots 0..%i, each memory region with %ldK size\n",
> +		(max_mem_slots - 1), mem_reg_size >> 10);
> +	for (slot = 0; slot < max_mem_slots; slot++) {
> +		vm_userspace_mem_region_add(vm, VM_MEM_SRC_ANONYMOUS,
> +					    guest_addr, slot, mem_reg_npages,
> +					    0);
> +		guest_addr += mem_reg_size;
> +	}
> +
> +	/* Check it cannot be added memory slots beyond the limit */
> +	mem = mmap(NULL, mem_reg_size, PROT_READ | PROT_WRITE,
> +		   MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
> +	TEST_ASSERT(mem != MAP_FAILED, "Failed to mmap() host");
> +
> +	ret = ioctl(vm_get_fd(vm), KVM_SET_USER_MEMORY_REGION,
> +		    &(struct kvm_userspace_memory_region) {slot, 0, guest_addr,
> +		    mem_reg_size, (uint64_t) mem});
> +	TEST_ASSERT(ret == -1 && errno == EINVAL,
> +		    "Adding one more memory slot should fail with EINVAL");


Why not add a test here for adding memory at an existing slot ?

> +
> +	munmap(mem, mem_reg_size);
> +	kvm_vm_free(vm);
> +}
> +
> +int main(int argc, char *argv[])
> +{
> +	test_add_max_slots();
> +	return 0;
> +}

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v4 1/2] selftests: kvm: Add vm_get_fd() in kvm_util
  2020-04-09  1:25   ` Krish Sadhukhan
@ 2020-04-09  2:45     ` Wainer dos Santos Moschetta
  2020-04-09 17:57       ` Krish Sadhukhan
  0 siblings, 1 reply; 10+ messages in thread
From: Wainer dos Santos Moschetta @ 2020-04-09  2:45 UTC (permalink / raw)
  To: Krish Sadhukhan, pbonzini, kvm
  Cc: drjones, david, linux-kernel, linux-kselftest


On 4/8/20 10:25 PM, Krish Sadhukhan wrote:
>
> On 4/8/20 3:08 PM, Wainer dos Santos Moschetta wrote:
>> Introduces the vm_get_fd() function in kvm_util which returns
>> the VM file descriptor.
>>
>> Reviewed-by: Andrew Jones <drjones@redhat.com>
>> Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
>> ---
>>   tools/testing/selftests/kvm/include/kvm_util.h | 1 +
>>   tools/testing/selftests/kvm/lib/kvm_util.c     | 5 +++++
>>   2 files changed, 6 insertions(+)
>>
>> diff --git a/tools/testing/selftests/kvm/include/kvm_util.h 
>> b/tools/testing/selftests/kvm/include/kvm_util.h
>> index a99b875f50d2..4e122819ee24 100644
>> --- a/tools/testing/selftests/kvm/include/kvm_util.h
>> +++ b/tools/testing/selftests/kvm/include/kvm_util.h
>> @@ -254,6 +254,7 @@ bool vm_is_unrestricted_guest(struct kvm_vm *vm);
>>   unsigned int vm_get_page_size(struct kvm_vm *vm);
>>   unsigned int vm_get_page_shift(struct kvm_vm *vm);
>>   unsigned int vm_get_max_gfn(struct kvm_vm *vm);
>> +int vm_get_fd(struct kvm_vm *vm);
>>     unsigned int vm_calc_num_guest_pages(enum vm_guest_mode mode, 
>> size_t size);
>>   unsigned int vm_num_host_pages(enum vm_guest_mode mode, unsigned 
>> int num_guest_pages);
>> diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c 
>> b/tools/testing/selftests/kvm/lib/kvm_util.c
>> index 8a3523d4434f..3e36a1eb8771 100644
>> --- a/tools/testing/selftests/kvm/lib/kvm_util.c
>> +++ b/tools/testing/selftests/kvm/lib/kvm_util.c
>> @@ -1734,6 +1734,11 @@ unsigned int vm_get_max_gfn(struct kvm_vm *vm)
>>       return vm->max_gfn;
>>   }
>>   +int vm_get_fd(struct kvm_vm *vm)
>> +{
>> +        return vm->fd;
>> +}
>> +
>
>
> I am just trying to understand why we need a separate function when 
> the 'vm' variable is all local within the same file. There are a 
> number of places in kvm_util.c where it is used directly.


The problem is to access of kvm_vm attributes outside of kvm_utils.c. 
For example, if I try to vm->fd in my test I get the compiler error:

mem_slot_test.c: In function ‘test_add_max_slots’:
mem_slot_test.c:62:16: error: dereferencing pointer to incomplete type 
‘struct kvm_vm’
   ret = ioctl(vm->fd, KVM_SET_USER_MEMORY_REGION,
                 ^~

>
>
>>   static unsigned int vm_calc_num_pages(unsigned int num_pages,
>>                         unsigned int page_shift,
>>                         unsigned int new_page_shift,
>


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v4 2/2] selftests: kvm: Add mem_slot_test test
  2020-04-09  1:31   ` Krish Sadhukhan
@ 2020-04-09  3:01     ` Wainer dos Santos Moschetta
  2020-04-09 18:02       ` Krish Sadhukhan
  0 siblings, 1 reply; 10+ messages in thread
From: Wainer dos Santos Moschetta @ 2020-04-09  3:01 UTC (permalink / raw)
  To: Krish Sadhukhan, pbonzini, kvm
  Cc: drjones, david, linux-kernel, linux-kselftest


On 4/8/20 10:31 PM, Krish Sadhukhan wrote:
>
> On 4/8/20 3:08 PM, Wainer dos Santos Moschetta wrote:
>> This patch introduces the mem_slot_test test which checks
>> an VM can have added memory slots up to the limit defined in
>> KVM_CAP_NR_MEMSLOTS. Then attempt to add one more slot to
>> verify it fails as expected.
>>
>> Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
>> ---
>>   tools/testing/selftests/kvm/.gitignore      |  1 +
>>   tools/testing/selftests/kvm/Makefile        |  3 +
>>   tools/testing/selftests/kvm/mem_slot_test.c | 76 +++++++++++++++++++++
>>   3 files changed, 80 insertions(+)
>>   create mode 100644 tools/testing/selftests/kvm/mem_slot_test.c
>>
>> diff --git a/tools/testing/selftests/kvm/.gitignore 
>> b/tools/testing/selftests/kvm/.gitignore
>> index 16877c3daabf..127d27188427 100644
>> --- a/tools/testing/selftests/kvm/.gitignore
>> +++ b/tools/testing/selftests/kvm/.gitignore
>> @@ -21,4 +21,5 @@
>>   /demand_paging_test
>>   /dirty_log_test
>>   /kvm_create_max_vcpus
>> +/mem_slot_test
>>   /steal_time
>> diff --git a/tools/testing/selftests/kvm/Makefile 
>> b/tools/testing/selftests/kvm/Makefile
>> index 712a2ddd2a27..338b6cdce1a0 100644
>> --- a/tools/testing/selftests/kvm/Makefile
>> +++ b/tools/testing/selftests/kvm/Makefile
>> @@ -32,12 +32,14 @@ TEST_GEN_PROGS_x86_64 += clear_dirty_log_test
>>   TEST_GEN_PROGS_x86_64 += demand_paging_test
>>   TEST_GEN_PROGS_x86_64 += dirty_log_test
>>   TEST_GEN_PROGS_x86_64 += kvm_create_max_vcpus
>> +TEST_GEN_PROGS_x86_64 += mem_slot_test
>>   TEST_GEN_PROGS_x86_64 += steal_time
>>     TEST_GEN_PROGS_aarch64 += clear_dirty_log_test
>>   TEST_GEN_PROGS_aarch64 += demand_paging_test
>>   TEST_GEN_PROGS_aarch64 += dirty_log_test
>>   TEST_GEN_PROGS_aarch64 += kvm_create_max_vcpus
>> +TEST_GEN_PROGS_aarch64 += mem_slot_test
>>   TEST_GEN_PROGS_aarch64 += steal_time
>>     TEST_GEN_PROGS_s390x = s390x/memop
>> @@ -46,6 +48,7 @@ TEST_GEN_PROGS_s390x += s390x/sync_regs_test
>>   TEST_GEN_PROGS_s390x += demand_paging_test
>>   TEST_GEN_PROGS_s390x += dirty_log_test
>>   TEST_GEN_PROGS_s390x += kvm_create_max_vcpus
>> +TEST_GEN_PROGS_s390x += mem_slot_test
>>     TEST_GEN_PROGS += $(TEST_GEN_PROGS_$(UNAME_M))
>>   LIBKVM += $(LIBKVM_$(UNAME_M))
>> diff --git a/tools/testing/selftests/kvm/mem_slot_test.c 
>> b/tools/testing/selftests/kvm/mem_slot_test.c
>> new file mode 100644
>> index 000000000000..7c1009f0bc07
>> --- /dev/null
>> +++ b/tools/testing/selftests/kvm/mem_slot_test.c
>> @@ -0,0 +1,76 @@
>> +// SPDX-License-Identifier: GPL-2.0-only
>> +/*
>> + * mem_slot_test
>> + *
>> + * Copyright (C) 2020, Red Hat, Inc.
>> + *
>> + * Test suite for memory region operations.
>> + */
>> +#define _GNU_SOURCE /* for program_invocation_short_name */
>> +#include <linux/kvm.h>
>> +#include <sys/mman.h>
>> +
>> +#include "test_util.h"
>> +#include "kvm_util.h"
>> +
>> +/*
>> + * Test it can be added memory slots up to KVM_CAP_NR_MEMSLOTS, then 
>> any
>> + * tentative to add further slots should fail.
>> + */
>> +static void test_add_max_slots(void)
>> +{
>> +    int ret;
>> +    struct kvm_vm *vm;
>> +    uint32_t max_mem_slots;
>> +    uint32_t slot;
>> +    uint64_t guest_addr;
>> +    uint64_t mem_reg_npages;
>> +    uint64_t mem_reg_size;
>> +    void *mem;
>> +
>> +    max_mem_slots = kvm_check_cap(KVM_CAP_NR_MEMSLOTS);
>> +    TEST_ASSERT(max_mem_slots > 0,
>> +            "KVM_CAP_NR_MEMSLOTS should be greater than 0");
>> +    pr_info("Allowed number of memory slots: %i\n", max_mem_slots);
>> +
>> +    vm = vm_create(VM_MODE_DEFAULT, 0, O_RDWR);
>> +
>> +    /*
>> +     * Uses 1MB sized/aligned memory region since this is the minimal
>> +     * required on s390x.
>> +     */
>> +    mem_reg_size = 0x100000;
>> +    mem_reg_npages = vm_calc_num_guest_pages(VM_MODE_DEFAULT, 
>> mem_reg_size);
>> +
>> +    guest_addr = 0x0;
>
>
> Nit: Can't this be initialized where it's defined above ?


I don't have a strong preference. Is it generally initialized on 
definition on kvm (selftests or not) code?


>
>
>> +
>> +    /* Check it can be added memory slots up to the maximum allowed */
>> +    pr_info("Adding slots 0..%i, each memory region with %ldK size\n",
>> +        (max_mem_slots - 1), mem_reg_size >> 10);
>> +    for (slot = 0; slot < max_mem_slots; slot++) {
>> +        vm_userspace_mem_region_add(vm, VM_MEM_SRC_ANONYMOUS,
>> +                        guest_addr, slot, mem_reg_npages,
>> +                        0);
>> +        guest_addr += mem_reg_size;
>> +    }
>> +
>> +    /* Check it cannot be added memory slots beyond the limit */
>> +    mem = mmap(NULL, mem_reg_size, PROT_READ | PROT_WRITE,
>> +           MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
>> +    TEST_ASSERT(mem != MAP_FAILED, "Failed to mmap() host");
>> +
>> +    ret = ioctl(vm_get_fd(vm), KVM_SET_USER_MEMORY_REGION,
>> +            &(struct kvm_userspace_memory_region) {slot, 0, guest_addr,
>> +            mem_reg_size, (uint64_t) mem});
>> +    TEST_ASSERT(ret == -1 && errno == EINVAL,
>> +            "Adding one more memory slot should fail with EINVAL");
>
>
> Why not add a test here for adding memory at an existing slot ?

Good question.

I'm working on another test which should check it cannot be added 
overlapping slots. I will send it in a separate patch series, depending 
on the fate of this one. :)

More precisely, those are the cases I will cover on this new test:


                 0x100000  0x300000
           0x0         0x200000 0x400000
  slot0 |              |---2MB--|                         (SUCCESS)
  slot1       |---2MB--|                                  (FAIL)
  slot2 |---2MB--|                                        (SUCCESS)
  slot3                |---2MB--|                         (FAIL)
  slot4                         |---2MB--|                (FAIL)
  slot5                               |---2MB--|          (SUCCESS)

Thanks!

Wainer

>
>
>> +
>> +    munmap(mem, mem_reg_size);
>> +    kvm_vm_free(vm);
>> +}
>> +
>> +int main(int argc, char *argv[])
>> +{
>> +    test_add_max_slots();
>> +    return 0;
>> +}
>


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v4 2/2] selftests: kvm: Add mem_slot_test test
  2020-04-08 22:08 ` [PATCH v4 2/2] selftests: kvm: Add mem_slot_test test Wainer dos Santos Moschetta
  2020-04-09  1:31   ` Krish Sadhukhan
@ 2020-04-09  8:43   ` Andrew Jones
  1 sibling, 0 replies; 10+ messages in thread
From: Andrew Jones @ 2020-04-09  8:43 UTC (permalink / raw)
  To: Wainer dos Santos Moschetta
  Cc: pbonzini, kvm, david, linux-kernel, linux-kselftest

On Wed, Apr 08, 2020 at 07:08:18PM -0300, Wainer dos Santos Moschetta wrote:
> This patch introduces the mem_slot_test test which checks
> an VM can have added memory slots up to the limit defined in
> KVM_CAP_NR_MEMSLOTS. Then attempt to add one more slot to
> verify it fails as expected.
> 
> Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
> ---
>  tools/testing/selftests/kvm/.gitignore      |  1 +
>  tools/testing/selftests/kvm/Makefile        |  3 +
>  tools/testing/selftests/kvm/mem_slot_test.c | 76 +++++++++++++++++++++
>  3 files changed, 80 insertions(+)
>  create mode 100644 tools/testing/selftests/kvm/mem_slot_test.c
> 
> diff --git a/tools/testing/selftests/kvm/.gitignore b/tools/testing/selftests/kvm/.gitignore
> index 16877c3daabf..127d27188427 100644
> --- a/tools/testing/selftests/kvm/.gitignore
> +++ b/tools/testing/selftests/kvm/.gitignore
> @@ -21,4 +21,5 @@
>  /demand_paging_test
>  /dirty_log_test
>  /kvm_create_max_vcpus
> +/mem_slot_test
>  /steal_time
> diff --git a/tools/testing/selftests/kvm/Makefile b/tools/testing/selftests/kvm/Makefile
> index 712a2ddd2a27..338b6cdce1a0 100644
> --- a/tools/testing/selftests/kvm/Makefile
> +++ b/tools/testing/selftests/kvm/Makefile
> @@ -32,12 +32,14 @@ TEST_GEN_PROGS_x86_64 += clear_dirty_log_test
>  TEST_GEN_PROGS_x86_64 += demand_paging_test
>  TEST_GEN_PROGS_x86_64 += dirty_log_test
>  TEST_GEN_PROGS_x86_64 += kvm_create_max_vcpus
> +TEST_GEN_PROGS_x86_64 += mem_slot_test
>  TEST_GEN_PROGS_x86_64 += steal_time
>  
>  TEST_GEN_PROGS_aarch64 += clear_dirty_log_test
>  TEST_GEN_PROGS_aarch64 += demand_paging_test
>  TEST_GEN_PROGS_aarch64 += dirty_log_test
>  TEST_GEN_PROGS_aarch64 += kvm_create_max_vcpus
> +TEST_GEN_PROGS_aarch64 += mem_slot_test
>  TEST_GEN_PROGS_aarch64 += steal_time
>  
>  TEST_GEN_PROGS_s390x = s390x/memop
> @@ -46,6 +48,7 @@ TEST_GEN_PROGS_s390x += s390x/sync_regs_test
>  TEST_GEN_PROGS_s390x += demand_paging_test
>  TEST_GEN_PROGS_s390x += dirty_log_test
>  TEST_GEN_PROGS_s390x += kvm_create_max_vcpus
> +TEST_GEN_PROGS_s390x += mem_slot_test
>  
>  TEST_GEN_PROGS += $(TEST_GEN_PROGS_$(UNAME_M))
>  LIBKVM += $(LIBKVM_$(UNAME_M))
> diff --git a/tools/testing/selftests/kvm/mem_slot_test.c b/tools/testing/selftests/kvm/mem_slot_test.c
> new file mode 100644
> index 000000000000..7c1009f0bc07
> --- /dev/null
> +++ b/tools/testing/selftests/kvm/mem_slot_test.c
> @@ -0,0 +1,76 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +/*
> + * mem_slot_test
> + *
> + * Copyright (C) 2020, Red Hat, Inc.
> + *
> + * Test suite for memory region operations.
> + */
> +#define _GNU_SOURCE /* for program_invocation_short_name */
> +#include <linux/kvm.h>
> +#include <sys/mman.h>
> +
> +#include "test_util.h"
> +#include "kvm_util.h"
> +
> +/*
> + * Test it can be added memory slots up to KVM_CAP_NR_MEMSLOTS, then any
> + * tentative to add further slots should fail.
> + */
> +static void test_add_max_slots(void)
> +{
> +	int ret;
> +	struct kvm_vm *vm;
> +	uint32_t max_mem_slots;
> +	uint32_t slot;
> +	uint64_t guest_addr;
> +	uint64_t mem_reg_npages;
> +	uint64_t mem_reg_size;
> +	void *mem;
> +
> +	max_mem_slots = kvm_check_cap(KVM_CAP_NR_MEMSLOTS);
> +	TEST_ASSERT(max_mem_slots > 0,
> +		    "KVM_CAP_NR_MEMSLOTS should be greater than 0");
> +	pr_info("Allowed number of memory slots: %i\n", max_mem_slots);
> +
> +	vm = vm_create(VM_MODE_DEFAULT, 0, O_RDWR);
> +
> +	/*
> +	 * Uses 1MB sized/aligned memory region since this is the minimal
> +	 * required on s390x.
> +	 */
> +	mem_reg_size = 0x100000;
> +	mem_reg_npages = vm_calc_num_guest_pages(VM_MODE_DEFAULT, mem_reg_size);
> +
> +	guest_addr = 0x0;
> +
> +	/* Check it can be added memory slots up to the maximum allowed */
> +	pr_info("Adding slots 0..%i, each memory region with %ldK size\n",
> +		(max_mem_slots - 1), mem_reg_size >> 10);
> +	for (slot = 0; slot < max_mem_slots; slot++) {
> +		vm_userspace_mem_region_add(vm, VM_MEM_SRC_ANONYMOUS,
> +					    guest_addr, slot, mem_reg_npages,
> +					    0);
> +		guest_addr += mem_reg_size;
> +	}
> +
> +	/* Check it cannot be added memory slots beyond the limit */
> +	mem = mmap(NULL, mem_reg_size, PROT_READ | PROT_WRITE,
> +		   MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
> +	TEST_ASSERT(mem != MAP_FAILED, "Failed to mmap() host");
> +
> +	ret = ioctl(vm_get_fd(vm), KVM_SET_USER_MEMORY_REGION,
> +		    &(struct kvm_userspace_memory_region) {slot, 0, guest_addr,
> +		    mem_reg_size, (uint64_t) mem});
> +	TEST_ASSERT(ret == -1 && errno == EINVAL,
> +		    "Adding one more memory slot should fail with EINVAL");
> +
> +	munmap(mem, mem_reg_size);
> +	kvm_vm_free(vm);
> +}
> +
> +int main(int argc, char *argv[])
> +{
> +	test_add_max_slots();
> +	return 0;
> +}
> -- 
> 2.17.2
>

Reviewed-by: Andrew Jones <drjones@redhat.com>


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v4 1/2] selftests: kvm: Add vm_get_fd() in kvm_util
  2020-04-09  2:45     ` Wainer dos Santos Moschetta
@ 2020-04-09 17:57       ` Krish Sadhukhan
  0 siblings, 0 replies; 10+ messages in thread
From: Krish Sadhukhan @ 2020-04-09 17:57 UTC (permalink / raw)
  To: Wainer dos Santos Moschetta, pbonzini, kvm
  Cc: drjones, david, linux-kernel, linux-kselftest


On 4/8/20 7:45 PM, Wainer dos Santos Moschetta wrote:
>
> On 4/8/20 10:25 PM, Krish Sadhukhan wrote:
>>
>> On 4/8/20 3:08 PM, Wainer dos Santos Moschetta wrote:
>>> Introduces the vm_get_fd() function in kvm_util which returns
>>> the VM file descriptor.
>>>
>>> Reviewed-by: Andrew Jones <drjones@redhat.com>
>>> Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
>>> ---
>>>   tools/testing/selftests/kvm/include/kvm_util.h | 1 +
>>>   tools/testing/selftests/kvm/lib/kvm_util.c     | 5 +++++
>>>   2 files changed, 6 insertions(+)
>>>
>>> diff --git a/tools/testing/selftests/kvm/include/kvm_util.h 
>>> b/tools/testing/selftests/kvm/include/kvm_util.h
>>> index a99b875f50d2..4e122819ee24 100644
>>> --- a/tools/testing/selftests/kvm/include/kvm_util.h
>>> +++ b/tools/testing/selftests/kvm/include/kvm_util.h
>>> @@ -254,6 +254,7 @@ bool vm_is_unrestricted_guest(struct kvm_vm *vm);
>>>   unsigned int vm_get_page_size(struct kvm_vm *vm);
>>>   unsigned int vm_get_page_shift(struct kvm_vm *vm);
>>>   unsigned int vm_get_max_gfn(struct kvm_vm *vm);
>>> +int vm_get_fd(struct kvm_vm *vm);
>>>     unsigned int vm_calc_num_guest_pages(enum vm_guest_mode mode, 
>>> size_t size);
>>>   unsigned int vm_num_host_pages(enum vm_guest_mode mode, unsigned 
>>> int num_guest_pages);
>>> diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c 
>>> b/tools/testing/selftests/kvm/lib/kvm_util.c
>>> index 8a3523d4434f..3e36a1eb8771 100644
>>> --- a/tools/testing/selftests/kvm/lib/kvm_util.c
>>> +++ b/tools/testing/selftests/kvm/lib/kvm_util.c
>>> @@ -1734,6 +1734,11 @@ unsigned int vm_get_max_gfn(struct kvm_vm *vm)
>>>       return vm->max_gfn;
>>>   }
>>>   +int vm_get_fd(struct kvm_vm *vm)
>>> +{
>>> +        return vm->fd;
>>> +}
>>> +
>>
>>
>> I am just trying to understand why we need a separate function when 
>> the 'vm' variable is all local within the same file. There are a 
>> number of places in kvm_util.c where it is used directly.
>
>
> The problem is to access of kvm_vm attributes outside of kvm_utils.c. 
> For example, if I try to vm->fd in my test I get the compiler error:
>
> mem_slot_test.c: In function ‘test_add_max_slots’:
> mem_slot_test.c:62:16: error: dereferencing pointer to incomplete type 
> ‘struct kvm_vm’
>   ret = ioctl(vm->fd, KVM_SET_USER_MEMORY_REGION,
>                 ^~


My bad !  I missed the fact that the structure is defined in 
kvm_util_internal.h and not in kvm_util.h.


Reviewed-by: Krish Sadhukhan <krish.sadhukhan@oracle.com>

>
>>
>>
>>>   static unsigned int vm_calc_num_pages(unsigned int num_pages,
>>>                         unsigned int page_shift,
>>>                         unsigned int new_page_shift,
>>
>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v4 2/2] selftests: kvm: Add mem_slot_test test
  2020-04-09  3:01     ` Wainer dos Santos Moschetta
@ 2020-04-09 18:02       ` Krish Sadhukhan
  0 siblings, 0 replies; 10+ messages in thread
From: Krish Sadhukhan @ 2020-04-09 18:02 UTC (permalink / raw)
  To: Wainer dos Santos Moschetta, pbonzini, kvm
  Cc: drjones, david, linux-kernel, linux-kselftest


On 4/8/20 8:01 PM, Wainer dos Santos Moschetta wrote:
>
> On 4/8/20 10:31 PM, Krish Sadhukhan wrote:
>>
>> On 4/8/20 3:08 PM, Wainer dos Santos Moschetta wrote:
>>> This patch introduces the mem_slot_test test which checks
>>> an VM can have added memory slots up to the limit defined in
>>> KVM_CAP_NR_MEMSLOTS. Then attempt to add one more slot to
>>> verify it fails as expected.
>>>
>>> Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
>>> ---
>>>   tools/testing/selftests/kvm/.gitignore      |  1 +
>>>   tools/testing/selftests/kvm/Makefile        |  3 +
>>>   tools/testing/selftests/kvm/mem_slot_test.c | 76 
>>> +++++++++++++++++++++
>>>   3 files changed, 80 insertions(+)
>>>   create mode 100644 tools/testing/selftests/kvm/mem_slot_test.c
>>>
>>> diff --git a/tools/testing/selftests/kvm/.gitignore 
>>> b/tools/testing/selftests/kvm/.gitignore
>>> index 16877c3daabf..127d27188427 100644
>>> --- a/tools/testing/selftests/kvm/.gitignore
>>> +++ b/tools/testing/selftests/kvm/.gitignore
>>> @@ -21,4 +21,5 @@
>>>   /demand_paging_test
>>>   /dirty_log_test
>>>   /kvm_create_max_vcpus
>>> +/mem_slot_test
>>>   /steal_time
>>> diff --git a/tools/testing/selftests/kvm/Makefile 
>>> b/tools/testing/selftests/kvm/Makefile
>>> index 712a2ddd2a27..338b6cdce1a0 100644
>>> --- a/tools/testing/selftests/kvm/Makefile
>>> +++ b/tools/testing/selftests/kvm/Makefile
>>> @@ -32,12 +32,14 @@ TEST_GEN_PROGS_x86_64 += clear_dirty_log_test
>>>   TEST_GEN_PROGS_x86_64 += demand_paging_test
>>>   TEST_GEN_PROGS_x86_64 += dirty_log_test
>>>   TEST_GEN_PROGS_x86_64 += kvm_create_max_vcpus
>>> +TEST_GEN_PROGS_x86_64 += mem_slot_test
>>>   TEST_GEN_PROGS_x86_64 += steal_time
>>>     TEST_GEN_PROGS_aarch64 += clear_dirty_log_test
>>>   TEST_GEN_PROGS_aarch64 += demand_paging_test
>>>   TEST_GEN_PROGS_aarch64 += dirty_log_test
>>>   TEST_GEN_PROGS_aarch64 += kvm_create_max_vcpus
>>> +TEST_GEN_PROGS_aarch64 += mem_slot_test
>>>   TEST_GEN_PROGS_aarch64 += steal_time
>>>     TEST_GEN_PROGS_s390x = s390x/memop
>>> @@ -46,6 +48,7 @@ TEST_GEN_PROGS_s390x += s390x/sync_regs_test
>>>   TEST_GEN_PROGS_s390x += demand_paging_test
>>>   TEST_GEN_PROGS_s390x += dirty_log_test
>>>   TEST_GEN_PROGS_s390x += kvm_create_max_vcpus
>>> +TEST_GEN_PROGS_s390x += mem_slot_test
>>>     TEST_GEN_PROGS += $(TEST_GEN_PROGS_$(UNAME_M))
>>>   LIBKVM += $(LIBKVM_$(UNAME_M))
>>> diff --git a/tools/testing/selftests/kvm/mem_slot_test.c 
>>> b/tools/testing/selftests/kvm/mem_slot_test.c
>>> new file mode 100644
>>> index 000000000000..7c1009f0bc07
>>> --- /dev/null
>>> +++ b/tools/testing/selftests/kvm/mem_slot_test.c
>>> @@ -0,0 +1,76 @@
>>> +// SPDX-License-Identifier: GPL-2.0-only
>>> +/*
>>> + * mem_slot_test
>>> + *
>>> + * Copyright (C) 2020, Red Hat, Inc.
>>> + *
>>> + * Test suite for memory region operations.
>>> + */
>>> +#define _GNU_SOURCE /* for program_invocation_short_name */
>>> +#include <linux/kvm.h>
>>> +#include <sys/mman.h>
>>> +
>>> +#include "test_util.h"
>>> +#include "kvm_util.h"
>>> +
>>> +/*
>>> + * Test it can be added memory slots up to KVM_CAP_NR_MEMSLOTS, 
>>> then any
>>> + * tentative to add further slots should fail.
>>> + */
>>> +static void test_add_max_slots(void)
>>> +{
>>> +    int ret;
>>> +    struct kvm_vm *vm;
>>> +    uint32_t max_mem_slots;
>>> +    uint32_t slot;
>>> +    uint64_t guest_addr;
>>> +    uint64_t mem_reg_npages;
>>> +    uint64_t mem_reg_size;
>>> +    void *mem;
>>> +
>>> +    max_mem_slots = kvm_check_cap(KVM_CAP_NR_MEMSLOTS);
>>> +    TEST_ASSERT(max_mem_slots > 0,
>>> +            "KVM_CAP_NR_MEMSLOTS should be greater than 0");
>>> +    pr_info("Allowed number of memory slots: %i\n", max_mem_slots);
>>> +
>>> +    vm = vm_create(VM_MODE_DEFAULT, 0, O_RDWR);
>>> +
>>> +    /*
>>> +     * Uses 1MB sized/aligned memory region since this is the minimal
>>> +     * required on s390x.
>>> +     */
>>> +    mem_reg_size = 0x100000;
>>> +    mem_reg_npages = vm_calc_num_guest_pages(VM_MODE_DEFAULT, 
>>> mem_reg_size);
>>> +
>>> +    guest_addr = 0x0;
>>
>>
>> Nit: Can't this be initialized where it's defined above ?
>
>
> I don't have a strong preference. Is it generally initialized on 
> definition on kvm (selftests or not) code?
>
>

Some places do it where the variable is defined. For example, in smm_test.c,

         vm_vaddr_t vmx_pages_gva = 0;


It reduces an extra line.

>>
>>
>>> +
>>> +    /* Check it can be added memory slots up to the maximum allowed */
>>> +    pr_info("Adding slots 0..%i, each memory region with %ldK size\n",
>>> +        (max_mem_slots - 1), mem_reg_size >> 10);
>>> +    for (slot = 0; slot < max_mem_slots; slot++) {
>>> +        vm_userspace_mem_region_add(vm, VM_MEM_SRC_ANONYMOUS,
>>> +                        guest_addr, slot, mem_reg_npages,
>>> +                        0);
>>> +        guest_addr += mem_reg_size;
>>> +    }
>>> +
>>> +    /* Check it cannot be added memory slots beyond the limit */
>>> +    mem = mmap(NULL, mem_reg_size, PROT_READ | PROT_WRITE,
>>> +           MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
>>> +    TEST_ASSERT(mem != MAP_FAILED, "Failed to mmap() host");
>>> +
>>> +    ret = ioctl(vm_get_fd(vm), KVM_SET_USER_MEMORY_REGION,
>>> +            &(struct kvm_userspace_memory_region) {slot, 0, 
>>> guest_addr,
>>> +            mem_reg_size, (uint64_t) mem});
>>> +    TEST_ASSERT(ret == -1 && errno == EINVAL,
>>> +            "Adding one more memory slot should fail with EINVAL");
>>
>>
>> Why not add a test here for adding memory at an existing slot ?
>
> Good question.
>
> I'm working on another test which should check it cannot be added 
> overlapping slots. I will send it in a separate patch series, 
> depending on the fate of this one. :)
>
> More precisely, those are the cases I will cover on this new test:
>
>
>                 0x100000  0x300000
>           0x0         0x200000 0x400000
>  slot0 |              |---2MB--|                         (SUCCESS)
>  slot1       |---2MB--|                                  (FAIL)
>  slot2 |---2MB--|                                        (SUCCESS)
>  slot3                |---2MB--|                         (FAIL)
>  slot4                         |---2MB--|                (FAIL)
>  slot5                               |---2MB--|          (SUCCESS)
>
> Thanks!
>
> Wainer


OK.

Reviewed-by: Krish Sadhukhan <krish.sadhukhan@oracle.com>

>
>>
>>
>>> +
>>> +    munmap(mem, mem_reg_size);
>>> +    kvm_vm_free(vm);
>>> +}
>>> +
>>> +int main(int argc, char *argv[])
>>> +{
>>> +    test_add_max_slots();
>>> +    return 0;
>>> +}
>>
>

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2020-04-09 18:02 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-08 22:08 [PATCH v4 0/2] selftests: kvm: Introduce the mem_slot_test test Wainer dos Santos Moschetta
2020-04-08 22:08 ` [PATCH v4 1/2] selftests: kvm: Add vm_get_fd() in kvm_util Wainer dos Santos Moschetta
2020-04-09  1:25   ` Krish Sadhukhan
2020-04-09  2:45     ` Wainer dos Santos Moschetta
2020-04-09 17:57       ` Krish Sadhukhan
2020-04-08 22:08 ` [PATCH v4 2/2] selftests: kvm: Add mem_slot_test test Wainer dos Santos Moschetta
2020-04-09  1:31   ` Krish Sadhukhan
2020-04-09  3:01     ` Wainer dos Santos Moschetta
2020-04-09 18:02       ` Krish Sadhukhan
2020-04-09  8:43   ` Andrew Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).