Mark DRM lease protocol privileged

Allowing sandboxed clients to request DRM leases has security
implications.

(cherry picked from commit c5fd8c050f)
This commit is contained in:
Simon Ser 2024-01-04 15:01:26 +01:00
parent 6bf1260f61
commit f7f5ac7a97
1 changed files with 11 additions and 0 deletions

View File

@ -75,6 +75,17 @@ static void handle_drm_lease_request(struct wl_listener *listener, void *data) {
#endif
static bool is_privileged(const struct wl_global *global) {
#if WLR_HAS_DRM_BACKEND
if (server.drm_lease_manager != NULL) {
struct wlr_drm_lease_device_v1 *drm_lease_dev;
wl_list_for_each(drm_lease_dev, &server.drm_lease_manager->devices, link) {
if (drm_lease_dev->global == global) {
return true;
}
}
}
#endif
return
global == server.output_manager_v1->global ||
global == server.output_power_manager_v1->global ||