Fixed                
                
            
            
                
                    Created: May 30, 2024   
                                            Updated: Feb 27, 2025                                    
                
                    
                                    
             
         
        
            
            
                                    
                        Resolved Date: Feb 27, 2025                    
                
                
                                    
                        Found In Version: 10.22.33.1                    
                
                                    
                        Fix Version: 10.22.33.20                    
                
                                        
                            Severity: Standard                        
                    
                                        
                            Applicable for: Wind River Linux LTS 22                        
                    
                                    
                        Component/s: Kernel                    
                
                
                             
         
                        
                In the Linux kernel, the following vulnerability has been resolved:gpiolib: cdev: Fix use after free in lineinfo_changed_notifyThe use-after-free issue occurs as follows: when the GPIO chip device fileis being closed by invoking gpio_chrdev_release(), watched_lines is freedby bitmap_free(), but the unregistration of lineinfo_changed_nb notifierchain failed due to waiting write rwsem. Additionally, one of the GPIOchip's lines is also in the release process and holds the notifier chain'sread rwsem. Consequently, a race condition leads to the use-after-free ofwatched_lines.Here is the typical stack when issue happened:free]gpio_chrdev_release()  --> bitmap_free(cdev->watched_lines)                  <-- freed  --> blocking_notifier_chain_unregister()    --> down_write(&nh->rwsem)                          <-- waiting rwsem          --> __down_write_common()            --> rwsem_down_write_slowpath()                  --> schedule_preempt_disabled()                    --> schedule()[use]st54spi_gpio_dev_release()  --> gpio_free()    --> gpiod_free()      --> gpiod_free_commit()        --> gpiod_line_state_notify()          --> blocking_notifier_call_chain()            --> down_read(&nh->rwsem);                  <-- held rwsem            --> notifier_call_chain()              --> lineinfo_changed_notify()                --> test_bit(xxxx, cdev->watched_lines) <-- use after freeThe side effect of the use-after-free issue is that a GPIO line event isbeing generated for userspace where it shouldn't. However, since the chrdevis being closed, userspace won't have the chance to read that event anyway.To fix the issue, call the bitmap_free() function after the unregistrationof lineinfo_changed_nb notifier chain.
CREATE(Triage):(User=admin) [CVE-2024-36899 (https://nvd.nist.gov/vuln/detail/CVE-2024-36899)