media: cec: cec-api: add locking in cec_release()
[ Upstream commit 42bcaacae924bf18ae387c3f78c202df0b739292 ] When cec_release() uses fh->msgs it has to take fh->lock, otherwise the list can get corrupted. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Reported-by: Yang, Chenyuan <cy54@illinois.edu> Closes: https://lore.kernel.org/linux-media/PH7PR11MB57688E64ADE4FE82E658D86DA09EA@PH7PR11MB5768.namprd11.prod.outlook.com/ Fixes: ca684386e6e2 ("[media] cec: add HDMI CEC framework (api)") Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
11c3ba7c18
commit
b39f4e3f86
1 changed files with 3 additions and 0 deletions
|
@ -672,6 +672,8 @@ static int cec_release(struct inode *inode, struct file *filp)
|
||||||
list_del(&data->xfer_list);
|
list_del(&data->xfer_list);
|
||||||
}
|
}
|
||||||
mutex_unlock(&adap->lock);
|
mutex_unlock(&adap->lock);
|
||||||
|
|
||||||
|
mutex_lock(&fh->lock);
|
||||||
while (!list_empty(&fh->msgs)) {
|
while (!list_empty(&fh->msgs)) {
|
||||||
struct cec_msg_entry *entry =
|
struct cec_msg_entry *entry =
|
||||||
list_first_entry(&fh->msgs, struct cec_msg_entry, list);
|
list_first_entry(&fh->msgs, struct cec_msg_entry, list);
|
||||||
|
@ -689,6 +691,7 @@ static int cec_release(struct inode *inode, struct file *filp)
|
||||||
kfree(entry);
|
kfree(entry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
mutex_unlock(&fh->lock);
|
||||||
kfree(fh);
|
kfree(fh);
|
||||||
|
|
||||||
cec_put_device(devnode);
|
cec_put_device(devnode);
|
||||||
|
|
Loading…
Add table
Reference in a new issue