From 5b0719b17c9adb63d0220d4584e3bab53b16911a Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 7 Oct 2022 18:24:53 +0200 Subject: [PATCH] drm-lease-v1: reject the lease request by default If the compositor didn't call wlr_drm_lease_request_v1_grant() nor wlr_drm_lease_request_v1_reject(), then reject the lease. --- types/wlr_drm_lease_v1.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/types/wlr_drm_lease_v1.c b/types/wlr_drm_lease_v1.c index b9eb373c..4ac59e18 100644 --- a/types/wlr_drm_lease_v1.c +++ b/types/wlr_drm_lease_v1.c @@ -350,10 +350,14 @@ static void drm_lease_request_v1_handle_submit( request->lease_resource = lease_resource; - /* TODO: reject the request if the user does not grant it */ wl_signal_emit_mutable(&request->device->manager->events.request, request); + /* If the compositor didn't act upon the request, reject it */ + if (!request->invalid && wl_resource_get_user_data(lease_resource) == NULL) { + wlr_drm_lease_request_v1_reject(request); + } + /* Request is done */ wl_resource_destroy(resource); }