From: Michael Buesch <mb@bu3sch.de>
To: Johannes Berg <johannes@sipsolutions.net>
Cc: linux-wireless@vger.kernel.org, linville@tuxdriver.com
Subject: [PATCH RFC] cfg80211: Add ies_allocated check before copying ies
Date: Sat, 25 Apr 2009 22:36:34 +0200 [thread overview]
Message-ID: <200904252236.34802.mb@bu3sch.de> (raw)
I don't fully understand the code, but let's imagine the following situation:
- cfg80211_bss_update was called and the ie was stored to allocated space.
- The information_elements pointer is changed to the allocated space.
- cfg80211_bss_update is called again, but now the ie fits into the
space after the "found" structure.
- But the information_elements pointer still points to the allocated space.
So it may overrun the buffer and crash.
Is this scenario possible?
If yes, please consider the following patch.
Signed-off-by: Michael Buesch <mb@bu3sch.de>
---
net/wireless/scan.c | 5 +++++
1 file changed, 5 insertions(+)
--- wireless-testing.orig/net/wireless/scan.c
+++ wireless-testing/net/wireless/scan.c
@@ -378,6 +378,11 @@ cfg80211_bss_update(struct cfg80211_regi
size_t ielen = res->pub.len_information_elements;
if (ksize(found) >= used + ielen) {
+ if (found->ies_allocated) {
+ kfree(found->pub.information_elements);
+ found->ies_allocated = false;
+ found->pub.information_elements = (u8 *)found + used;
+ }
memcpy(found->pub.information_elements,
res->pub.information_elements, ielen);
found->pub.len_information_elements = ielen;
--
Greetings, Michael.
next reply other threads:[~2009-04-25 20:40 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-04-25 20:36 Michael Buesch [this message]
2009-04-26 8:32 ` [PATCH RFC] cfg80211: Add ies_allocated check before copying ies Johannes Berg
2009-04-26 8:40 ` Michael Buesch
2009-04-26 8:45 ` Johannes Berg
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200904252236.34802.mb@bu3sch.de \
--to=mb@bu3sch.de \
--cc=johannes@sipsolutions.net \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.