linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RESEND] ath10k: fix out of bounds access to local buffer
@ 2017-04-24  7:11 Michael Mera
  2017-04-26  9:46 ` [RESEND] " Kalle Valo
  2017-05-04 12:59 ` Kalle Valo
  0 siblings, 2 replies; 6+ messages in thread
From: Michael Mera @ 2017-04-24  7:11 UTC (permalink / raw)
  To: ath10k; +Cc: Michael Mera, linux-wireless, Kalle Valo

During write to debugfs file simulate_fw_crash, fixed-size local buffer
'buf' is accessed and modified at index 'count-1', where 'count' is the
size of the write (so potentially out of bounds).
This patch fixes this problem.

Signed-off-by: Michael Mera <dev@michaelmera.com>
---
 drivers/net/wireless/ath/ath10k/debug.c | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/drivers/net/wireless/ath/ath10k/debug.c b/drivers/net/wireless/ath/ath10k/debug.c
index fb0ade3adb07..7f3c17e55693 100644
--- a/drivers/net/wireless/ath/ath10k/debug.c
+++ b/drivers/net/wireless/ath/ath10k/debug.c
@@ -628,17 +628,21 @@ static ssize_t ath10k_write_simulate_fw_crash(struct file *file,
 					      size_t count, loff_t *ppos)
 {
 	struct ath10k *ar = file->private_data;
-	char buf[32];
+	char buf[32] = {0};
+	ssize_t rc;
 	int ret;
 
-	simple_write_to_buffer(buf, sizeof(buf) - 1, ppos, user_buf, count);
+	/* filter partial writes and invalid commands */
+	if (*ppos != 0 || count >= sizeof(buf) || count == 0)
+		return -EINVAL;
 
-	/* make sure that buf is null terminated */
-	buf[sizeof(buf) - 1] = 0;
+	rc = simple_write_to_buffer(buf, sizeof(buf)-1, ppos, user_buf, count);
+	if (rc < 0)
+		return rc;
 
 	/* drop the possible '\n' from the end */
-	if (buf[count - 1] == '\n')
-		buf[count - 1] = 0;
+	if (buf[*ppos - 1] == '\n')
+		buf[*ppos - 1] = '\0';
 
 	mutex_lock(&ar->conf_mutex);
 
-- 
2.9.3

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

* Re: [RESEND] ath10k: fix out of bounds access to local buffer
  2017-04-24  7:11 [PATCH RESEND] ath10k: fix out of bounds access to local buffer Michael Mera
@ 2017-04-26  9:46 ` Kalle Valo
  2017-04-26 10:32   ` Michael Mera
  2017-05-04 12:59 ` Kalle Valo
  1 sibling, 1 reply; 6+ messages in thread
From: Kalle Valo @ 2017-04-26  9:46 UTC (permalink / raw)
  To: Michael Mera; +Cc: ath10k, linux-wireless, Michael Mera

Michael Mera <dev@michaelmera.com> wrote:
> During write to debugfs file simulate_fw_crash, fixed-size local buffer
> 'buf' is accessed and modified at index 'count-1', where 'count' is the
> size of the write (so potentially out of bounds).
> This patch fixes this problem.
> 
> Signed-off-by: Michael Mera <dev@michaelmera.com>

I fixed a checkpatch warning in the pending branch:

drivers/net/wireless/ath/ath10k/debug.c:636: spaces preferred around that '-' (ctx:VxV)

-- 
https://patchwork.kernel.org/patch/9695703/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches

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

* Re: [RESEND] ath10k: fix out of bounds access to local buffer
  2017-04-26  9:46 ` [RESEND] " Kalle Valo
@ 2017-04-26 10:32   ` Michael Mera
  2017-04-26 11:08     ` Kalle Valo
  0 siblings, 1 reply; 6+ messages in thread
From: Michael Mera @ 2017-04-26 10:32 UTC (permalink / raw)
  To: Kalle Valo; +Cc: ath10k, linux-wireless

Kalle Valo <kvalo@qca.qualcomm.com> writes:
> I fixed a checkpatch warning in the pending branch:
>
> drivers/net/wireless/ath/ath10k/debug.c:636: spaces preferred around that '-' (ctx:VxV)

Hum... but then you will have a line longer than 80 characters (81), so
another warning.
I prefered this version since I feel that splitting this line would hurt
readability and on the other hand the expression is clearly delimited
by the spaces around the ',' so I don't think spaces around the operator
add any value (except for compliance with the coding style that is).

Thanks,
Michael Mera

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

* Re: [RESEND] ath10k: fix out of bounds access to local buffer
  2017-04-26 10:32   ` Michael Mera
@ 2017-04-26 11:08     ` Kalle Valo
  2017-04-29 10:39       ` Michael Mera
  0 siblings, 1 reply; 6+ messages in thread
From: Kalle Valo @ 2017-04-26 11:08 UTC (permalink / raw)
  To: Michael Mera; +Cc: ath10k, linux-wireless

Michael Mera <dev@michaelmera.com> writes:

> Kalle Valo <kvalo@qca.qualcomm.com> writes:
>> I fixed a checkpatch warning in the pending branch:
>>
>> drivers/net/wireless/ath/ath10k/debug.c:636: spaces preferred around
>> that '-' (ctx:VxV)
>
> Hum... but then you will have a line longer than 80 characters (81), so
> another warning.

I have extended the line length in my check script to 90 chars just
because of cases like this:

https://wireless.wiki.kernel.org/en/users/drivers/ath10k/codingstyle#checki=
ng_code

> I prefered this version since I feel that splitting this line would hurt
> readability and on the other hand the expression is clearly delimited
> by the spaces around the ',' so I don't think spaces around the operator
> add any value (except for compliance with the coding style that is).

I actually guessed why you did that. But I want to keep the output of my
test script clean, makes review a lot easier. Making exceptions to the
script is more work for me.

Anyway, I already did the change in my pending branch and will apply the
patch in few days. Thanks for the fix.

--=20
Kalle Valo=

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

* Re: [RESEND] ath10k: fix out of bounds access to local buffer
  2017-04-26 11:08     ` Kalle Valo
@ 2017-04-29 10:39       ` Michael Mera
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Mera @ 2017-04-29 10:39 UTC (permalink / raw)
  To: Kalle Valo; +Cc: ath10k, linux-wireless

Kalle Valo <kvalo@qca.qualcomm.com> writes:
> I actually guessed why you did that. But I want to keep the output of my
> test script clean, makes review a lot easier. Making exceptions to the
> script is more work for me.

Yes, sorry. I found the ath10k specific instructions only after
submitting the patch.

> Anyway, I already did the change in my pending branch and will apply the
> patch in few days. Thanks for the fix.

Thank you,
Michael Mera

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

* Re: [RESEND] ath10k: fix out of bounds access to local buffer
  2017-04-24  7:11 [PATCH RESEND] ath10k: fix out of bounds access to local buffer Michael Mera
  2017-04-26  9:46 ` [RESEND] " Kalle Valo
@ 2017-05-04 12:59 ` Kalle Valo
  1 sibling, 0 replies; 6+ messages in thread
From: Kalle Valo @ 2017-05-04 12:59 UTC (permalink / raw)
  To: Michael Mera; +Cc: ath10k, linux-wireless, Michael Mera

Michael Mera <dev@michaelmera.com> wrote:
> During write to debugfs file simulate_fw_crash, fixed-size local buffer
> 'buf' is accessed and modified at index 'count-1', where 'count' is the
> size of the write (so potentially out of bounds).
> This patch fixes this problem.
> 
> Signed-off-by: Michael Mera <dev@michaelmera.com>

Patch applied to ath-next branch of ath.git, thanks.

a16703aaeaed ath10k: fix out of bounds access to local buffer

-- 
https://patchwork.kernel.org/patch/9695703/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches

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

end of thread, other threads:[~2017-05-04 12:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-24  7:11 [PATCH RESEND] ath10k: fix out of bounds access to local buffer Michael Mera
2017-04-26  9:46 ` [RESEND] " Kalle Valo
2017-04-26 10:32   ` Michael Mera
2017-04-26 11:08     ` Kalle Valo
2017-04-29 10:39       ` Michael Mera
2017-05-04 12:59 ` Kalle Valo

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).