libweston: properly orphan wl_output resources

Remove the wl_resource in the head's resource list when we are
removing the wl_output global. We sent global removal events to clients,
the resources should become dummies until clients reap them. Reset user
data so that clients triying to use dummy objects don't hit e.g. a freed
head pointer.

This fixes a theoretical issue: if an enabled output is disabled and
then gets enabled again, mode changes and wl_surface.enter/leave would
still attempt to use the dummy objects. If a client destroyed a dummy
object, we don't have the destructor to remove it from the resource
list, and libweston would hit freed memory.

Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
v5 Reviewed-by: Derek Foreman <derekf@osg.samsung.com>
Reviewed-by: Ian Ray <ian.ray@ge.com>
Reviewed-by: Daniel Stone <daniels@collabora.com>
Acked-by: Derek Foreman <derekf@osg.samsung.com>
dev
Pekka Paalanen 7 years ago
parent 7cdbabee9a
commit d9dcc6dc8f
  1. 32
      libweston/compositor.c

@ -4384,6 +4384,28 @@ bind_output(struct wl_client *client,
wl_output_send_done(resource); wl_output_send_done(resource);
} }
/** Remove the global wl_output protocol object
*
* \param head The head whose global to remove.
*
* Also orphans the wl_resources for this head (wl_output).
*/
static void
weston_head_remove_global(struct weston_head *head)
{
struct wl_resource *resource, *tmp;
if (head->global)
wl_global_destroy(head->global);
head->global = NULL;
wl_resource_for_each_safe(resource, tmp, &head->resource_list) {
unbind_resource(resource);
wl_resource_set_destructor(resource, NULL);
wl_resource_set_user_data(resource, NULL);
}
}
/** Get the backing object of wl_output /** Get the backing object of wl_output
* *
* \param resource A wl_output protocol object. * \param resource A wl_output protocol object.
@ -4833,7 +4855,6 @@ static void
weston_compositor_remove_output(struct weston_output *output) weston_compositor_remove_output(struct weston_output *output)
{ {
struct weston_compositor *compositor = output->compositor; struct weston_compositor *compositor = output->compositor;
struct wl_resource *resource;
struct weston_view *view; struct weston_view *view;
struct weston_head *head; struct weston_head *head;
@ -4856,13 +4877,8 @@ weston_compositor_remove_output(struct weston_output *output)
wl_signal_emit(&compositor->output_destroyed_signal, output); wl_signal_emit(&compositor->output_destroyed_signal, output);
wl_signal_emit(&output->destroy_signal, output); wl_signal_emit(&output->destroy_signal, output);
wl_list_for_each(head, &output->head_list, output_link) { wl_list_for_each(head, &output->head_list, output_link)
wl_global_destroy(head->global); weston_head_remove_global(head);
head->global = NULL;
wl_resource_for_each(resource, &head->resource_list)
wl_resource_set_destructor(resource, NULL);
}
compositor->output_id_pool &= ~(1u << output->id); compositor->output_id_pool &= ~(1u << output->id);
output->id = 0xffffffff; /* invalid */ output->id = 0xffffffff; /* invalid */

Loading…
Cancel
Save