wlr_shm: make wl_global public

I wish to use a allowlist of globals for my security context
implementation rather than a blocklist, which means I need access to
the wl_shm global in order to allowlist it.

I think using a allowlist will make it harder for me to accidentally
expose globals to a security context that were meant to be restricted.
This commit is contained in:
Isaac Freund 2024-03-15 11:48:13 +01:00 committed by Simon Ser
parent 65bf7d1679
commit 0398d1b85a
2 changed files with 10 additions and 9 deletions

View File

@ -22,7 +22,16 @@ struct wlr_renderer;
* Currently, accessing two buffers concurrently via
* wlr_buffer_begin_data_ptr_access() will return an error.
*/
struct wlr_shm;
struct wlr_shm {
struct wl_global *global;
// private state
uint32_t *formats;
size_t formats_len;
struct wl_listener display_destroy;
};
/**
* Create the wl_shm global.

View File

@ -23,14 +23,6 @@
#define SHM_VERSION 1
struct wlr_shm {
struct wl_global *global;
uint32_t *formats;
size_t formats_len;
struct wl_listener display_destroy;
};
struct wlr_shm_pool {
struct wl_resource *resource; // may be NULL
struct wlr_shm *shm;