mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	container_at_{tabbed,stacked}: check x-axis bounds
The container_at_tabbed and container_at_stacked container were checking the bounds along the y-axis, but not the x-axis. This made it possible to cause a segfault for specific resolution, horizontal gap, and workspace children lengths. The issue is that child_index was -1 and was resulting in a buffer underflow. Adding the x-axis bound checks for early returns should prevent this from happening.
This commit is contained in:
		
							parent
							
								
									803e89018a
								
							
						
					
					
						commit
						0b709702c1
					
				
					 1 changed files with 4 additions and 2 deletions
				
			
		| 
						 | 
					@ -208,7 +208,8 @@ static struct sway_container *container_at_tabbed(struct sway_node *parent,
 | 
				
			||||||
		struct wlr_surface **surface, double *sx, double *sy) {
 | 
							struct wlr_surface **surface, double *sx, double *sy) {
 | 
				
			||||||
	struct wlr_box box;
 | 
						struct wlr_box box;
 | 
				
			||||||
	node_get_box(parent, &box);
 | 
						node_get_box(parent, &box);
 | 
				
			||||||
	if (ly < box.y || ly > box.y + box.height) {
 | 
						if (lx < box.x || lx > box.x + box.width ||
 | 
				
			||||||
 | 
								ly < box.y || ly > box.y + box.height) {
 | 
				
			||||||
		return NULL;
 | 
							return NULL;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	struct sway_seat *seat = input_manager_current_seat();
 | 
						struct sway_seat *seat = input_manager_current_seat();
 | 
				
			||||||
| 
						 | 
					@ -242,7 +243,8 @@ static struct sway_container *container_at_stacked(struct sway_node *parent,
 | 
				
			||||||
		struct wlr_surface **surface, double *sx, double *sy) {
 | 
							struct wlr_surface **surface, double *sx, double *sy) {
 | 
				
			||||||
	struct wlr_box box;
 | 
						struct wlr_box box;
 | 
				
			||||||
	node_get_box(parent, &box);
 | 
						node_get_box(parent, &box);
 | 
				
			||||||
	if (ly < box.y || ly > box.y + box.height) {
 | 
						if (lx < box.x || lx > box.x + box.width ||
 | 
				
			||||||
 | 
								ly < box.y || ly > box.y + box.height) {
 | 
				
			||||||
		return NULL;
 | 
							return NULL;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	struct sway_seat *seat = input_manager_current_seat();
 | 
						struct sway_seat *seat = input_manager_current_seat();
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue