The following commit has been merged into the irq/core branch of tip:

Commit-ID:     1d0326f352bb094771df17f045bdbadff89a43e6
Gitweb:        
https://git.kernel.org/tip/1d0326f352bb094771df17f045bdbadff89a43e6
Author:        Marek Vasut <ma...@denx.de>
AuthorDate:    Thu, 14 May 2020 02:25:55 +02:00
Committer:     Thomas Gleixner <t...@linutronix.de>
CommitterDate: Thu, 28 May 2020 15:58:04 +02:00

genirq: Check irq_data_get_irq_chip() return value before use

irq_data_get_irq_chip() can return NULL, however it is expected that this
never happens. If a buggy driver leads to NULL being returned from
irq_data_get_irq_chip(), warn about it instead of crashing the machine.

Signed-off-by: Marek Vasut <ma...@denx.de>
Signed-off-by: Thomas Gleixner <t...@linutronix.de>

To: linux-arm-ker...@lists.infradead.org
---
 kernel/irq/manage.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index 453a8a0..7619111 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -2619,6 +2619,8 @@ int __irq_get_irqchip_state(struct irq_data *data, enum 
irqchip_irq_state which,
 
        do {
                chip = irq_data_get_irq_chip(data);
+               if (WARN_ON_ONCE(!chip))
+                       return -ENODEV;
                if (chip->irq_get_irqchip_state)
                        break;
 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
@@ -2696,6 +2698,8 @@ int irq_set_irqchip_state(unsigned int irq, enum 
irqchip_irq_state which,
 
        do {
                chip = irq_data_get_irq_chip(data);
+               if (WARN_ON_ONCE(!chip))
+                       return -ENODEV;
                if (chip->irq_set_irqchip_state)
                        break;
 #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY

Reply via email to