media: cec: fix a deadlock situation
authorHans Verkuil <hverkuil-cisco@xs4all.nl>
Wed, 1 Dec 2021 12:41:26 +0000 (13:41 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Jan 2022 10:02:53 +0000 (11:02 +0100)
commit a9e6107616bb8108aa4fc22584a05e69761a91f7 upstream.

The cec_devnode struct has a lock meant to serialize access
to the fields of this struct. This lock is taken during
device node (un)registration and when opening or releasing a
filehandle to the device node. When the last open filehandle
is closed the cec adapter might be disabled by calling the
adap_enable driver callback with the devnode.lock held.

However, if during that callback a message or event arrives
then the driver will call one of the cec_queue_event()
variants in cec-adap.c, and those will take the same devnode.lock
to walk the open filehandle list.

This obviously causes a deadlock.

This is quite easy to reproduce with the cec-gpio driver since that
uses the cec-pin framework which generated lots of events and uses
a kernel thread for the processing, so when adap_enable is called
the thread is still running and can generate events.

But I suspect that it might also happen with other drivers if an
interrupt arrives signaling e.g. a received message before adap_enable
had a chance to disable the interrupts.

This patch adds a new mutex to serialize access to the fhs list.
When adap_enable() is called the devnode.lock mutex is held, but
not devnode.lock_fhs. The event functions in cec-adap.c will now
use devnode.lock_fhs instead of devnode.lock, ensuring that it is
safe to call those functions from the adap_enable callback.

This specific issue only happens if the last open filehandle is closed
and the physical address is invalid. This is not something that
happens during normal operation, but it does happen when monitoring
CEC traffic (e.g. cec-ctl --monitor) with an unconfigured CEC adapter.

Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Cc: <stable@vger.kernel.org> # for v5.13 and up
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/media/cec/core/cec-adap.c
drivers/media/cec/core/cec-api.c
drivers/media/cec/core/cec-core.c
include/media/cec.h

index cd9cb354dc2c7f2eb91a41cd9b800a25b71253ba..1f599e300e42e5196f39e6fb1af2e6d46e0b7765 100644 (file)
@@ -161,10 +161,10 @@ static void cec_queue_event(struct cec_adapter *adap,
        u64 ts = ktime_get_ns();
        struct cec_fh *fh;
 
-       mutex_lock(&adap->devnode.lock);
+       mutex_lock(&adap->devnode.lock_fhs);
        list_for_each_entry(fh, &adap->devnode.fhs, list)
                cec_queue_event_fh(fh, ev, ts);
-       mutex_unlock(&adap->devnode.lock);
+       mutex_unlock(&adap->devnode.lock_fhs);
 }
 
 /* Notify userspace that the CEC pin changed state at the given time. */
@@ -178,11 +178,12 @@ void cec_queue_pin_cec_event(struct cec_adapter *adap, bool is_high,
        };
        struct cec_fh *fh;
 
-       mutex_lock(&adap->devnode.lock);
-       list_for_each_entry(fh, &adap->devnode.fhs, list)
+       mutex_lock(&adap->devnode.lock_fhs);
+       list_for_each_entry(fh, &adap->devnode.fhs, list) {
                if (fh->mode_follower == CEC_MODE_MONITOR_PIN)
                        cec_queue_event_fh(fh, &ev, ktime_to_ns(ts));
-       mutex_unlock(&adap->devnode.lock);
+       }
+       mutex_unlock(&adap->devnode.lock_fhs);
 }
 EXPORT_SYMBOL_GPL(cec_queue_pin_cec_event);
 
@@ -195,10 +196,10 @@ void cec_queue_pin_hpd_event(struct cec_adapter *adap, bool is_high, ktime_t ts)
        };
        struct cec_fh *fh;
 
-       mutex_lock(&adap->devnode.lock);
+       mutex_lock(&adap->devnode.lock_fhs);
        list_for_each_entry(fh, &adap->devnode.fhs, list)
                cec_queue_event_fh(fh, &ev, ktime_to_ns(ts));
-       mutex_unlock(&adap->devnode.lock);
+       mutex_unlock(&adap->devnode.lock_fhs);
 }
 EXPORT_SYMBOL_GPL(cec_queue_pin_hpd_event);
 
@@ -211,10 +212,10 @@ void cec_queue_pin_5v_event(struct cec_adapter *adap, bool is_high, ktime_t ts)
        };
        struct cec_fh *fh;
 
-       mutex_lock(&adap->devnode.lock);
+       mutex_lock(&adap->devnode.lock_fhs);
        list_for_each_entry(fh, &adap->devnode.fhs, list)
                cec_queue_event_fh(fh, &ev, ktime_to_ns(ts));
-       mutex_unlock(&adap->devnode.lock);
+       mutex_unlock(&adap->devnode.lock_fhs);
 }
 EXPORT_SYMBOL_GPL(cec_queue_pin_5v_event);
 
@@ -286,12 +287,12 @@ static void cec_queue_msg_monitor(struct cec_adapter *adap,
        u32 monitor_mode = valid_la ? CEC_MODE_MONITOR :
                                      CEC_MODE_MONITOR_ALL;
 
-       mutex_lock(&adap->devnode.lock);
+       mutex_lock(&adap->devnode.lock_fhs);
        list_for_each_entry(fh, &adap->devnode.fhs, list) {
                if (fh->mode_follower >= monitor_mode)
                        cec_queue_msg_fh(fh, msg);
        }
-       mutex_unlock(&adap->devnode.lock);
+       mutex_unlock(&adap->devnode.lock_fhs);
 }
 
 /*
@@ -302,12 +303,12 @@ static void cec_queue_msg_followers(struct cec_adapter *adap,
 {
        struct cec_fh *fh;
 
-       mutex_lock(&adap->devnode.lock);
+       mutex_lock(&adap->devnode.lock_fhs);
        list_for_each_entry(fh, &adap->devnode.fhs, list) {
                if (fh->mode_follower == CEC_MODE_FOLLOWER)
                        cec_queue_msg_fh(fh, msg);
        }
-       mutex_unlock(&adap->devnode.lock);
+       mutex_unlock(&adap->devnode.lock_fhs);
 }
 
 /* Notify userspace of an adapter state change. */
@@ -1573,6 +1574,7 @@ void __cec_s_phys_addr(struct cec_adapter *adap, u16 phys_addr, bool block)
                /* Disabling monitor all mode should always succeed */
                if (adap->monitor_all_cnt)
                        WARN_ON(call_op(adap, adap_monitor_all_enable, false));
+               /* serialize adap_enable */
                mutex_lock(&adap->devnode.lock);
                if (adap->needs_hpd || list_empty(&adap->devnode.fhs)) {
                        WARN_ON(adap->ops->adap_enable(adap, false));
@@ -1584,14 +1586,16 @@ void __cec_s_phys_addr(struct cec_adapter *adap, u16 phys_addr, bool block)
                        return;
        }
 
+       /* serialize adap_enable */
        mutex_lock(&adap->devnode.lock);
        adap->last_initiator = 0xff;
        adap->transmit_in_progress = false;
 
-       if ((adap->needs_hpd || list_empty(&adap->devnode.fhs)) &&
-           adap->ops->adap_enable(adap, true)) {
-               mutex_unlock(&adap->devnode.lock);
-               return;
+       if (adap->needs_hpd || list_empty(&adap->devnode.fhs)) {
+               if (adap->ops->adap_enable(adap, true)) {
+                       mutex_unlock(&adap->devnode.lock);
+                       return;
+               }
        }
 
        if (adap->monitor_all_cnt &&
index 769e6b4cddce3449323a69de376f062485cf0b64..52c30e4e2005571bcece84a717d6cc59c99bb6b2 100644 (file)
@@ -586,6 +586,7 @@ static int cec_open(struct inode *inode, struct file *filp)
                return err;
        }
 
+       /* serialize adap_enable */
        mutex_lock(&devnode->lock);
        if (list_empty(&devnode->fhs) &&
            !adap->needs_hpd &&
@@ -624,7 +625,9 @@ static int cec_open(struct inode *inode, struct file *filp)
        }
 #endif
 
+       mutex_lock(&devnode->lock_fhs);
        list_add(&fh->list, &devnode->fhs);
+       mutex_unlock(&devnode->lock_fhs);
        mutex_unlock(&devnode->lock);
 
        return 0;
@@ -653,8 +656,11 @@ static int cec_release(struct inode *inode, struct file *filp)
                cec_monitor_all_cnt_dec(adap);
        mutex_unlock(&adap->lock);
 
+       /* serialize adap_enable */
        mutex_lock(&devnode->lock);
+       mutex_lock(&devnode->lock_fhs);
        list_del(&fh->list);
+       mutex_unlock(&devnode->lock_fhs);
        if (cec_is_registered(adap) && list_empty(&devnode->fhs) &&
            !adap->needs_hpd && adap->phys_addr == CEC_PHYS_ADDR_INVALID) {
                WARN_ON(adap->ops->adap_enable(adap, false));
index 551689d371a712555d03e33647f272720d9fb8cd..ec67065d52021c3db57411e24c59cb968a0c135e 100644 (file)
@@ -169,8 +169,10 @@ static void cec_devnode_unregister(struct cec_adapter *adap)
        devnode->registered = false;
        devnode->unregistered = true;
 
+       mutex_lock(&devnode->lock_fhs);
        list_for_each_entry(fh, &devnode->fhs, list)
                wake_up_interruptible(&fh->wait);
+       mutex_unlock(&devnode->lock_fhs);
 
        mutex_unlock(&devnode->lock);
 
@@ -272,6 +274,7 @@ struct cec_adapter *cec_allocate_adapter(const struct cec_adap_ops *ops,
 
        /* adap->devnode initialization */
        INIT_LIST_HEAD(&adap->devnode.fhs);
+       mutex_init(&adap->devnode.lock_fhs);
        mutex_init(&adap->devnode.lock);
 
        adap->kthread = kthread_run(cec_thread_func, adap, "cec-%s", name);
index 208c9613c07eb36ea49338678d73c4bc3b18d8f8..77346f757036dc4283b6107bc5a0b6076fe339cc 100644 (file)
  * @dev:       cec device
  * @cdev:      cec character device
  * @minor:     device node minor number
+ * @lock:      lock to serialize open/release and registration
  * @registered:        the device was correctly registered
  * @unregistered: the device was unregistered
+ * @lock_fhs:  lock to control access to @fhs
  * @fhs:       the list of open filehandles (cec_fh)
- * @lock:      lock to control access to this structure
  *
  * This structure represents a cec-related device node.
  *
+ * To add or remove filehandles from @fhs the @lock must be taken first,
+ * followed by @lock_fhs. It is safe to access @fhs if either lock is held.
+ *
  * The @parent is a physical device. It must be set by core or device drivers
  * before registering the node.
  */
@@ -43,10 +47,13 @@ struct cec_devnode {
 
        /* device info */
        int minor;
+       /* serialize open/release and registration */
+       struct mutex lock;
        bool registered;
        bool unregistered;
+       /* protect access to fhs */
+       struct mutex lock_fhs;
        struct list_head fhs;
-       struct mutex lock;
 };
 
 struct cec_adapter;