mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2] rapidio: fix possible UAF when kfifo_alloc() fails
@ 2022-11-19  4:03 Wang Weiyang
  2022-11-21 22:04 ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Wang Weiyang @ 2022-11-19  4:03 UTC (permalink / raw)
  To: mporter, alex.bou9, akpm, yangyingliang, jakobkoschel, jhubbard,
	error27, wangweiyang2
  Cc: linux-kernel

If kfifo_alloc() fails in mport_cdev_open(), goto err_fifo and just free
priv. But priv is still in the chdev->file_list, then list traversal
may cause UAF. This fixes the following smatch warning:

drivers/rapidio/devices/rio_mport_cdev.c:1930 mport_cdev_open() warn: '&priv->list' not removed from list

Fixes: e8de370188d0 ("rapidio: add mport char device driver")
Signed-off-by: Wang Weiyang <wangweiyang2@huawei.com>
---
Changes in v2:
- Avoid adding the new instance onto the list until the new instance
  has been fully initialized.

 drivers/rapidio/devices/rio_mport_cdev.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/rapidio/devices/rio_mport_cdev.c b/drivers/rapidio/devices/rio_mport_cdev.c
index 3cc83997a1f8..86b28c4cd906 100644
--- a/drivers/rapidio/devices/rio_mport_cdev.c
+++ b/drivers/rapidio/devices/rio_mport_cdev.c
@@ -1904,10 +1904,6 @@ static int mport_cdev_open(struct inode *inode, struct file *filp)
 
 	priv->md = chdev;
 
-	mutex_lock(&chdev->file_mutex);
-	list_add_tail(&priv->list, &chdev->file_list);
-	mutex_unlock(&chdev->file_mutex);
-
 	INIT_LIST_HEAD(&priv->db_filters);
 	INIT_LIST_HEAD(&priv->pw_filters);
 	spin_lock_init(&priv->fifo_lock);
@@ -1920,6 +1916,9 @@ static int mport_cdev_open(struct inode *inode, struct file *filp)
 		ret = -ENOMEM;
 		goto err_fifo;
 	}
+	mutex_lock(&chdev->file_mutex);
+	list_add_tail(&priv->list, &chdev->file_list);
+	mutex_unlock(&chdev->file_mutex);
 
 #ifdef CONFIG_RAPIDIO_DMA_ENGINE
 	INIT_LIST_HEAD(&priv->async_list);
-- 
2.17.1


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

* Re: [PATCH v2] rapidio: fix possible UAF when kfifo_alloc() fails
  2022-11-19  4:03 [PATCH v2] rapidio: fix possible UAF when kfifo_alloc() fails Wang Weiyang
@ 2022-11-21 22:04 ` Andrew Morton
  2022-11-22  3:45   ` wangweiyang
  0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2022-11-21 22:04 UTC (permalink / raw)
  To: Wang Weiyang
  Cc: mporter, alex.bou9, yangyingliang, jakobkoschel, jhubbard,
	error27, linux-kernel

On Sat, 19 Nov 2022 12:03:35 +0800 Wang Weiyang <wangweiyang2@huawei.com> wrote:

> If kfifo_alloc() fails in mport_cdev_open(), goto err_fifo and just free
> priv. But priv is still in the chdev->file_list, then list traversal
> may cause UAF. This fixes the following smatch warning:
> 
> drivers/rapidio/devices/rio_mport_cdev.c:1930 mport_cdev_open() warn: '&priv->list' not removed from list
> 
> ...
>
> Changes in v2:
> - Avoid adding the new instance onto the list until the new instance
>   has been fully initialized.

But it still isn't fully initialized.

>  drivers/rapidio/devices/rio_mport_cdev.c | 7 +++----
>  1 file changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/rapidio/devices/rio_mport_cdev.c b/drivers/rapidio/devices/rio_mport_cdev.c
> index 3cc83997a1f8..86b28c4cd906 100644
> --- a/drivers/rapidio/devices/rio_mport_cdev.c
> +++ b/drivers/rapidio/devices/rio_mport_cdev.c
> @@ -1904,10 +1904,6 @@ static int mport_cdev_open(struct inode *inode, struct file *filp)
>  
>  	priv->md = chdev;
>  
> -	mutex_lock(&chdev->file_mutex);
> -	list_add_tail(&priv->list, &chdev->file_list);
> -	mutex_unlock(&chdev->file_mutex);
> -
>  	INIT_LIST_HEAD(&priv->db_filters);
>  	INIT_LIST_HEAD(&priv->pw_filters);
>  	spin_lock_init(&priv->fifo_lock);
> @@ -1920,6 +1916,9 @@ static int mport_cdev_open(struct inode *inode, struct file *filp)
>  		ret = -ENOMEM;
>  		goto err_fifo;
>  	}
> +	mutex_lock(&chdev->file_mutex);
> +	list_add_tail(&priv->list, &chdev->file_list);
> +	mutex_unlock(&chdev->file_mutex);
>  
>  #ifdef CONFIG_RAPIDIO_DMA_ENGINE
>  	INIT_LIST_HEAD(&priv->async_list);

Here we're still setting up state at *priv.  I'm thinking the list
addition shouldn't occur until after the 

	filp->private_data = priv;

Or just prior to it.  I'm not sure what the atomicity rules are for
file.private versus mport_dev.file_list.

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

* Re: [PATCH v2] rapidio: fix possible UAF when kfifo_alloc() fails
  2022-11-21 22:04 ` Andrew Morton
@ 2022-11-22  3:45   ` wangweiyang
  0 siblings, 0 replies; 3+ messages in thread
From: wangweiyang @ 2022-11-22  3:45 UTC (permalink / raw)
  To: Andrew Morton
  Cc: mporter, alex.bou9, yangyingliang, jakobkoschel, jhubbard,
	error27, linux-kernel

Hi Andrew,

on 2022/11/22 6:04, Andrew Morton wrote:
> On Sat, 19 Nov 2022 12:03:35 +0800 Wang Weiyang <wangweiyang2@huawei.com> wrote:
> 
>> If kfifo_alloc() fails in mport_cdev_open(), goto err_fifo and just free
>> priv. But priv is still in the chdev->file_list, then list traversal
>> may cause UAF. This fixes the following smatch warning:
>>
>> drivers/rapidio/devices/rio_mport_cdev.c:1930 mport_cdev_open() warn: '&priv->list' not removed from list
>>
>> ...
>>
>> Changes in v2:
>> - Avoid adding the new instance onto the list until the new instance
>>   has been fully initialized.
> 
> But it still isn't fully initialized.

Yes, I ignored that the initialization is still going on.

> 
>>  drivers/rapidio/devices/rio_mport_cdev.c | 7 +++----
>>  1 file changed, 3 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/rapidio/devices/rio_mport_cdev.c b/drivers/rapidio/devices/rio_mport_cdev.c
>> index 3cc83997a1f8..86b28c4cd906 100644
>> --- a/drivers/rapidio/devices/rio_mport_cdev.c
>> +++ b/drivers/rapidio/devices/rio_mport_cdev.c
>> @@ -1904,10 +1904,6 @@ static int mport_cdev_open(struct inode *inode, struct file *filp)
>>  
>>  	priv->md = chdev;
>>  
>> -	mutex_lock(&chdev->file_mutex);
>> -	list_add_tail(&priv->list, &chdev->file_list);
>> -	mutex_unlock(&chdev->file_mutex);
>> -
>>  	INIT_LIST_HEAD(&priv->db_filters);
>>  	INIT_LIST_HEAD(&priv->pw_filters);
>>  	spin_lock_init(&priv->fifo_lock);
>> @@ -1920,6 +1916,9 @@ static int mport_cdev_open(struct inode *inode, struct file *filp)
>>  		ret = -ENOMEM;
>>  		goto err_fifo;
>>  	}
>> +	mutex_lock(&chdev->file_mutex);
>> +	list_add_tail(&priv->list, &chdev->file_list);
>> +	mutex_unlock(&chdev->file_mutex);
>>  
>>  #ifdef CONFIG_RAPIDIO_DMA_ENGINE
>>  	INIT_LIST_HEAD(&priv->async_list);
> 
> Here we're still setting up state at *priv.  I'm thinking the list
> addition shouldn't occur until after the 
> 
> 	filp->private_data = priv;
> 
> Or just prior to it.  I'm not sure what the atomicity rules are for
> file.private versus mport_dev.file_list.

I prefer to put the list addition just prior to the

	filp->private_data = priv;

to keep mport_cdev_release() in reverse order of init. If it's ok with
you, I'll send a new patch later.

> .
> 

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

end of thread, other threads:[~2022-11-22  3:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-19  4:03 [PATCH v2] rapidio: fix possible UAF when kfifo_alloc() fails Wang Weiyang
2022-11-21 22:04 ` Andrew Morton
2022-11-22  3:45   ` wangweiyang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®