mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 04:45:58 +01:00
Fix invalid uses of wl_array_for_each
[1] and [2] have introduced new wl_array usage in wlroots, but contains a mistake: wl_array_for_each iterates over pointers to the wl_array entries, not over entries themselves. Fix all wl_array_for_each call sites. Name the variables "ptr" to avoid confusion. Found via ASan: ==148752==ERROR: AddressSanitizer: attempting free on address which was not malloc()-ed: 0x602000214111 in thread T0 #0 0x7f6ff2235f19 in __interceptor_free /build/gcc/src/gcc/libsanitizer/asan/asan_malloc_linux.cpp:127 #1 0x7f6ff1c04004 in wlr_tablet_destroy ../subprojects/wlroots/types/wlr_tablet_tool.c:24 #2 0x7f6ff1b8463c in wlr_input_device_destroy ../subprojects/wlroots/types/wlr_input_device.c:51 #3 0x7f6ff1ab9941 in backend_destroy ../subprojects/wlroots/backend/wayland/backend.c:306 #4 0x7f6ff1a68323 in wlr_backend_destroy ../subprojects/wlroots/backend/backend.c:57 #5 0x7f6ff1ab36b4 in multi_backend_destroy ../subprojects/wlroots/backend/multi/backend.c:57 #6 0x7f6ff1ab417c in handle_display_destroy ../subprojects/wlroots/backend/multi/backend.c:124 #7 0x7f6ff106184e in wl_display_destroy (/usr/lib/libwayland-server.so.0+0x884e) #8 0x55cd1a77c9e5 in server_fini ../sway/server.c:218 #9 0x55cd1a77893f in main ../sway/main.c:400 #10 0x7f6ff04bdb24 in __libc_start_main (/usr/lib/libc.so.6+0x27b24) #11 0x55cd1a73a7ad in _start (/home/simon/src/sway/build/sway/sway+0x33a7ad) 0x602000214111 is located 1 bytes inside of 16-byte region [0x602000214110,0x602000214120) freed by thread T0 here: #0 0x7f6ff2235f19 in __interceptor_free /build/gcc/src/gcc/libsanitizer/asan/asan_malloc_linux.cpp:127 #1 0x7f6ff1c04004 in wlr_tablet_destroy ../subprojects/wlroots/types/wlr_tablet_tool.c:24 #2 0x7f6ff1b8463c in wlr_input_device_destroy ../subprojects/wlroots/types/wlr_input_device.c:51 #3 0x7f6ff1ab9941 in backend_destroy ../subprojects/wlroots/backend/wayland/backend.c:306 #4 0x7f6ff1a68323 in wlr_backend_destroy ../subprojects/wlroots/backend/backend.c:57 #5 0x7f6ff1ab36b4 in multi_backend_destroy ../subprojects/wlroots/backend/multi/backend.c:57 #6 0x7f6ff1ab417c in handle_display_destroy ../subprojects/wlroots/backend/multi/backend.c:124 #7 0x7f6ff106184e in wl_display_destroy (/usr/lib/libwayland-server.so.0+0x884e) previously allocated by thread T0 here: #0 0x7f6ff2236279 in __interceptor_malloc /build/gcc/src/gcc/libsanitizer/asan/asan_malloc_linux.cpp:145 #1 0x7f6ff1066d03 in wl_array_add (/usr/lib/libwayland-server.so.0+0xdd03) [1]: https://github.com/swaywm/wlroots/pull/3002 [2]: https://github.com/swaywm/wlroots/pull/3004
This commit is contained in:
parent
b934fbaf04
commit
e035f2b9c4
7 changed files with 25 additions and 23 deletions
|
@ -141,13 +141,13 @@ static void backend_destroy(struct wlr_backend *wlr_backend) {
|
||||||
struct wlr_libinput_backend *backend =
|
struct wlr_libinput_backend *backend =
|
||||||
get_libinput_backend_from_backend(wlr_backend);
|
get_libinput_backend_from_backend(wlr_backend);
|
||||||
|
|
||||||
struct wl_list *wlr_devices;
|
struct wl_list **wlr_devices_ptr;
|
||||||
wl_array_for_each(wlr_devices, &backend->wlr_device_lists) {
|
wl_array_for_each(wlr_devices_ptr, &backend->wlr_device_lists) {
|
||||||
struct wlr_input_device *wlr_dev, *next;
|
struct wlr_input_device *wlr_dev, *next;
|
||||||
wl_list_for_each_safe(wlr_dev, next, wlr_devices, link) {
|
wl_list_for_each_safe(wlr_dev, next, *wlr_devices_ptr, link) {
|
||||||
wlr_input_device_destroy(wlr_dev);
|
wlr_input_device_destroy(wlr_dev);
|
||||||
}
|
}
|
||||||
free(wlr_devices);
|
free(*wlr_devices_ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
wlr_backend_finish(wlr_backend);
|
wlr_backend_finish(wlr_backend);
|
||||||
|
|
|
@ -220,8 +220,9 @@ static void handle_device_removed(struct wlr_libinput_backend *backend,
|
||||||
wlr_input_device_destroy(dev);
|
wlr_input_device_destroy(dev);
|
||||||
}
|
}
|
||||||
size_t i = 0;
|
size_t i = 0;
|
||||||
struct wl_list *iter;
|
struct wl_list **ptr;
|
||||||
wl_array_for_each(iter, &backend->wlr_device_lists) {
|
wl_array_for_each(ptr, &backend->wlr_device_lists) {
|
||||||
|
struct wl_list *iter = *ptr;
|
||||||
if (iter == wlr_devices) {
|
if (iter == wlr_devices) {
|
||||||
array_remove_at(&backend->wlr_device_lists,
|
array_remove_at(&backend->wlr_device_lists,
|
||||||
i * sizeof(struct wl_list *), sizeof(struct wl_list *));
|
i * sizeof(struct wl_list *), sizeof(struct wl_list *));
|
||||||
|
|
|
@ -48,8 +48,9 @@ static void destroy_tablet(struct wlr_tablet *wlr_tablet) {
|
||||||
struct wlr_libinput_tablet *tablet =
|
struct wlr_libinput_tablet *tablet =
|
||||||
wl_container_of(wlr_tablet, tablet, wlr_tablet);
|
wl_container_of(wlr_tablet, tablet, wlr_tablet);
|
||||||
|
|
||||||
struct wlr_libinput_tablet_tool *tool;
|
struct wlr_libinput_tablet_tool **tool_ptr;
|
||||||
wl_array_for_each(tool, &tablet->tools) {
|
wl_array_for_each(tool_ptr, &tablet->tools) {
|
||||||
|
struct wlr_libinput_tablet_tool *tool = *tool_ptr;
|
||||||
if (--tool->pad_refs == 0) {
|
if (--tool->pad_refs == 0) {
|
||||||
destroy_tool(tool);
|
destroy_tool(tool);
|
||||||
}
|
}
|
||||||
|
@ -151,9 +152,9 @@ static void ensure_tool_reference(struct wlr_libinput_tablet_tool *tool,
|
||||||
struct wlr_libinput_tablet *tablet =
|
struct wlr_libinput_tablet *tablet =
|
||||||
wl_container_of(wlr_dev, tablet, wlr_tablet);
|
wl_container_of(wlr_dev, tablet, wlr_tablet);
|
||||||
|
|
||||||
struct wlr_libinput_tablet_tool *iter;
|
struct wlr_libinput_tablet_tool **tool_ptr;
|
||||||
wl_array_for_each(iter, &tablet->tools) {
|
wl_array_for_each(tool_ptr, &tablet->tools) {
|
||||||
if (iter == tool) { // We already have a ref
|
if (*tool_ptr == tool) { // We already have a ref
|
||||||
// XXX: We *could* optimize the tool to the front of
|
// XXX: We *could* optimize the tool to the front of
|
||||||
// the list here, since we will probably get the next
|
// the list here, since we will probably get the next
|
||||||
// couple of events from the same tool.
|
// couple of events from the same tool.
|
||||||
|
|
|
@ -327,9 +327,9 @@ void add_tablet_pad_client(struct wlr_tablet_seat_client_v2 *seat,
|
||||||
zwp_tablet_pad_v2_send_buttons(client->resource, pad->wlr_pad->button_count);
|
zwp_tablet_pad_v2_send_buttons(client->resource, pad->wlr_pad->button_count);
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *path;
|
const char **path_ptr;
|
||||||
wl_array_for_each(path, &pad->wlr_pad->paths) {
|
wl_array_for_each(path_ptr, &pad->wlr_pad->paths) {
|
||||||
zwp_tablet_pad_v2_send_path(client->resource, path);
|
zwp_tablet_pad_v2_send_path(client->resource, *path_ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t i = 0;
|
size_t i = 0;
|
||||||
|
|
|
@ -114,9 +114,9 @@ void add_tablet_client(struct wlr_tablet_seat_client_v2 *seat,
|
||||||
zwp_tablet_v2_send_id(client->resource,
|
zwp_tablet_v2_send_id(client->resource,
|
||||||
tablet->wlr_device->vendor, tablet->wlr_device->product);
|
tablet->wlr_device->vendor, tablet->wlr_device->product);
|
||||||
|
|
||||||
const char *path;
|
const char **path_ptr;
|
||||||
wl_array_for_each(path, &tablet->wlr_tablet->paths) {
|
wl_array_for_each(path_ptr, &tablet->wlr_tablet->paths) {
|
||||||
zwp_tablet_v2_send_path(client->resource, path);
|
zwp_tablet_v2_send_path(client->resource, *path_ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
zwp_tablet_v2_send_done(client->resource);
|
zwp_tablet_v2_send_done(client->resource);
|
||||||
|
|
|
@ -21,9 +21,9 @@ void wlr_tablet_pad_destroy(struct wlr_tablet_pad *pad) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *path;
|
char **path_ptr;
|
||||||
wl_array_for_each(path, &pad->paths) {
|
wl_array_for_each(path_ptr, &pad->paths) {
|
||||||
free(path);
|
free(*path_ptr);
|
||||||
}
|
}
|
||||||
wl_array_release(&pad->paths);
|
wl_array_release(&pad->paths);
|
||||||
|
|
||||||
|
|
|
@ -19,9 +19,9 @@ void wlr_tablet_destroy(struct wlr_tablet *tablet) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *path;
|
char **path_ptr;
|
||||||
wl_array_for_each(path, &tablet->paths) {
|
wl_array_for_each(path_ptr, &tablet->paths) {
|
||||||
free(path);
|
free(*path_ptr);
|
||||||
}
|
}
|
||||||
wl_array_release(&tablet->paths);
|
wl_array_release(&tablet->paths);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue