linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gpio: gpiolib-cdev: Fix potential &lr->wait.lock deadlock issue
@ 2023-06-25 14:45 YE Chengfeng
  2023-06-26  6:53 ` Andy Shevchenko
  2023-06-26  7:23 ` Kent Gibson
  0 siblings, 2 replies; 10+ messages in thread
From: YE Chengfeng @ 2023-06-25 14:45 UTC (permalink / raw)
  To: linus.walleij@linaro.org, brgl@bgdev.pl, andy@kernel.org
  Cc: linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org

linereq_put_event is called from both interrupt context (e.g.,
edge_irq_thread) and process context (process_hw_ts_thread).
Therefore, interrupt should be disabled before acquiring lock
&lr->wait.lock inside linereq_put_event to avoid deadlock when
the lock is held in process context and edge_irq_thread comes.

Similarly, linereq_read_unlocked running in process context
also acquies the same lock. It also need to disable interrupt
otherwise deadlock could happen if the irq edge_irq_thread
comes to execution while the lock is held.

Fix the two potential deadlock issues by spin_lock_irqsave.

Signed-off-by: Chengfeng Ye <cyeaa@connect.ust.hk>
---
 drivers/gpio/gpiolib-cdev.c | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/drivers/gpio/gpiolib-cdev.c b/drivers/gpio/gpiolib-cdev.c
index 0a33971c964c..714631fde9a8 100644
--- a/drivers/gpio/gpiolib-cdev.c
+++ b/drivers/gpio/gpiolib-cdev.c
@@ -614,14 +614,15 @@ static void linereq_put_event(struct linereq *lr,
 			      struct gpio_v2_line_event *le)
 {
 	bool overflow = false;
+	unsigned long flags;
 
-	spin_lock(&lr->wait.lock);
+	spin_lock_irqsave(&lr->wait.lock, flags);
 	if (kfifo_is_full(&lr->events)) {
 		overflow = true;
 		kfifo_skip(&lr->events);
 	}
 	kfifo_in(&lr->events, le, 1);
-	spin_unlock(&lr->wait.lock);
+	spin_unlock_irqrestore(&lr->wait.lock, flags);
 	if (!overflow)
 		wake_up_poll(&lr->wait, EPOLLIN);
 	else
@@ -1505,6 +1506,7 @@ static ssize_t linereq_read_unlocked(struct file *file, char __user *buf,
 	struct linereq *lr = file->private_data;
 	struct gpio_v2_line_event le;
 	ssize_t bytes_read = 0;
+	unsigned long flags;
 	int ret;
 
 	if (!lr->gdev->chip)
@@ -1514,28 +1516,28 @@ static ssize_t linereq_read_unlocked(struct file *file, char __user *buf,
 		return -EINVAL;
 
 	do {
-		spin_lock(&lr->wait.lock);
+		spin_lock_irqsave(&lr->wait.lock, flags);
 		if (kfifo_is_empty(&lr->events)) {
 			if (bytes_read) {
-				spin_unlock(&lr->wait.lock);
+				spin_unlock_irqrestore(&lr->wait.lock, flags);
 				return bytes_read;
 			}
 
 			if (file->f_flags & O_NONBLOCK) {
-				spin_unlock(&lr->wait.lock);
+				spin_unlock_irqrestore(&lr->wait.lock, flags);
 				return -EAGAIN;
 			}
 
 			ret = wait_event_interruptible_locked(lr->wait,
 					!kfifo_is_empty(&lr->events));
 			if (ret) {
-				spin_unlock(&lr->wait.lock);
+				spin_unlock_irqrestore(&lr->wait.lock, flags);
 				return ret;
 			}
 		}
 
 		ret = kfifo_out(&lr->events, &le, 1);
-		spin_unlock(&lr->wait.lock);
+		spin_unlock_irqrestore(&lr->wait.lock, flags);
 		if (ret != 1) {
 			/*
 			 * This should never happen - we were holding the
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2023-06-27 11:57 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-25 14:45 [PATCH] gpio: gpiolib-cdev: Fix potential &lr->wait.lock deadlock issue YE Chengfeng
2023-06-26  6:53 ` Andy Shevchenko
2023-06-26  7:23 ` Kent Gibson
2023-06-26 10:38   ` YE Chengfeng
2023-06-26 11:13     ` andy
2023-06-26 15:50   ` Bartosz Golaszewski
2023-06-26 16:51     ` YE Chengfeng
2023-06-27  1:43     ` Kent Gibson
2023-06-27 11:47       ` Bartosz Golaszewski
2023-06-27 11:57         ` Kent Gibson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).