[PATCH i-g-t v2 09/43] lib/vkms: Test plane invalid values
José Expósito
jose.exposito89 at gmail.com
Thu Mar 13 17:32:44 UTC 2025
For a VKMS plane, it is only possible to set invalid values in the plane
type.
Test that setting wrong values fails and that the plane is not
accidentally changed.
Reviewed-by: Louis Chauvet <louis.chauvet at bootlin.com>
Signed-off-by: José Expósito <jose.exposito89 at gmail.com>
---
lib/igt_vkms.c | 23 ++++++++++++++++++
lib/igt_vkms.h | 1 +
tests/vkms/vkms_configfs.c | 50 ++++++++++++++++++++++++++++++++++++++
3 files changed, 74 insertions(+)
diff --git a/lib/igt_vkms.c b/lib/igt_vkms.c
index 6cc9b8afb..eb3830685 100644
--- a/lib/igt_vkms.c
+++ b/lib/igt_vkms.c
@@ -426,3 +426,26 @@ int igt_vkms_plane_get_type(igt_vkms_t *dev, const char *name)
return read_int(path);
}
+
+/**
+ * igt_vkms_plane_set_type:
+ * @dev: Device the plane belongs to
+ * @name: Plane name
+ * @type: DRM_PLANE_TYPE_OVERLAY, DRM_PLANE_TYPE_PRIMARY or
+ * DRM_PLANE_TYPE_CURSOR
+ *
+ * Set a new type for the plane
+ */
+void igt_vkms_plane_set_type(igt_vkms_t *dev, const char *name, int type)
+{
+ char path[PATH_MAX];
+
+ if (type != DRM_PLANE_TYPE_OVERLAY &&
+ type != DRM_PLANE_TYPE_PRIMARY &&
+ type != DRM_PLANE_TYPE_CURSOR)
+ igt_assert(!"Cannot be reached: Unknown plane type");
+
+ igt_vkms_get_plane_type_path(dev, name, path, sizeof(path));
+
+ write_int(path, type);
+}
diff --git a/lib/igt_vkms.h b/lib/igt_vkms.h
index cea0c7242..b5f9a5b24 100644
--- a/lib/igt_vkms.h
+++ b/lib/igt_vkms.h
@@ -37,5 +37,6 @@ void igt_vkms_device_set_enabled(igt_vkms_t *dev, bool enabled);
void igt_vkms_device_add_plane(igt_vkms_t *dev, const char *name);
int igt_vkms_plane_get_type(igt_vkms_t *dev, const char *name);
+void igt_vkms_plane_set_type(igt_vkms_t *dev, const char *name, int type);
#endif /* __IGT_VKMS_H__ */
diff --git a/tests/vkms/vkms_configfs.c b/tests/vkms/vkms_configfs.c
index 5aafe39ae..bb9c53f34 100644
--- a/tests/vkms/vkms_configfs.c
+++ b/tests/vkms/vkms_configfs.c
@@ -231,6 +231,55 @@ static void test_plane_default_values(void)
igt_vkms_device_destroy(dev);
}
+/**
+ * SUBTEST: plane-wrong-values
+ * Description: Check that setting unexpected values doesn't work.
+ */
+
+static void test_plane_wrong_values(void)
+{
+ struct invalid_value invalid_type_values[] = {
+ { "", 0 },
+ { "\0", 1 },
+ { "-1", 2 },
+ { "4", 1 },
+ { "primary", 8 },
+ { "overlay", 8 },
+ };
+ igt_vkms_t *dev;
+ char path[PATH_MAX];
+ int fd;
+ int ret;
+
+ /* Create a device with a primary plane */
+ dev = igt_vkms_device_create(__func__);
+ igt_assert(dev);
+
+ igt_vkms_device_add_plane(dev, "plane0");
+ igt_vkms_plane_set_type(dev, "plane0", DRM_PLANE_TYPE_PRIMARY);
+ igt_assert_eq(igt_vkms_plane_get_type(dev, "plane0"),
+ DRM_PLANE_TYPE_PRIMARY);
+ igt_vkms_get_plane_type_path(dev, "plane0", path, sizeof(path));
+
+ /* Test invalid values for "type" */
+ for (int i = 0; i < ARRAY_SIZE(invalid_type_values); i++) {
+ struct invalid_value v = invalid_type_values[i];
+
+ fd = open(path, O_WRONLY);
+ igt_assert_f(fd >= 0, "Error opening '%s'\n", path);
+
+ ret = write(fd, v.value, v.size);
+ igt_assert_f(ret <= 0, "Error writing '%s' to '%s'", v.value, path);
+
+ close(fd);
+ }
+
+ igt_assert_eq(igt_vkms_plane_get_type(dev, "plane0"),
+ DRM_PLANE_TYPE_PRIMARY);
+
+ igt_vkms_device_destroy(dev);
+}
+
igt_main
{
struct {
@@ -242,6 +291,7 @@ igt_main
{ "device-wrong-values", test_device_wrong_values },
{ "plane-default-files", test_plane_default_files },
{ "plane-default-values", test_plane_default_values },
+ { "plane-wrong-values", test_plane_wrong_values },
};
igt_fixture {
--
2.48.1
More information about the igt-dev
mailing list