* [PATCH] libertas: Read buffer overflow @ 2009-07-28 8:00 Roel Kluin 2009-07-28 8:19 ` Holger Schurig 0 siblings, 1 reply; 5+ messages in thread From: Roel Kluin @ 2009-07-28 8:00 UTC (permalink / raw) To: dcbw, libertas-dev, linux-wireless, Andrew Morton Several arrays were read before checking whether the index was within bounds. ARRAY_SIZE() should be used to determine the size of arrays. rates->rates has an arraysize of 1, so calling get_common_rates() with a rates_size of MAX_RATES (14) was causing reads out of bounds. Since ratesize is at most MAX_RATES, tmp_size can increment at most to MAX_RATES * ARRAY_SIZE(lbs_bg_rates), so that should be the number of elements of tmp[]. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> --- Please review. diff --git a/drivers/net/wireless/libertas/assoc.c b/drivers/net/wireless/libertas/assoc.c index b9b3741..7dfbb0c 100644 --- a/drivers/net/wireless/libertas/assoc.c +++ b/drivers/net/wireless/libertas/assoc.c @@ -1,6 +1,7 @@ /* Copyright (C) 2006, Red Hat, Inc. */ #include <linux/types.h> +#include <linux/kernel.h> #include <linux/etherdevice.h> #include <linux/ieee80211.h> #include <linux/if_arp.h> @@ -43,14 +44,14 @@ static int get_common_rates(struct lbs_private *priv, u16 *rates_size) { u8 *card_rates = lbs_bg_rates; - size_t num_card_rates = sizeof(lbs_bg_rates); + size_t num_card_rates = ARRAY_SIZE(lbs_bg_rates); int ret = 0, i, j; - u8 tmp[30]; + u8 tmp[MAX_RATES * ARRAY_SIZE(lbs_bg_rates)]; size_t tmp_size = 0; /* For each rate in card_rates that exists in rate1, copy to tmp */ - for (i = 0; card_rates[i] && (i < num_card_rates); i++) { - for (j = 0; rates[j] && (j < *rates_size); j++) { + for (i = 0; i < num_card_rates && card_rates[i]; i++) { + for (j = 0; j < *rates_size && rates[j]; j++) { if (rates[j] == card_rates[i]) tmp[tmp_size++] = card_rates[i]; } @@ -322,7 +323,7 @@ static int lbs_associate(struct lbs_private *priv, rates = (struct mrvl_ie_rates_param_set *) pos; rates->header.type = cpu_to_le16(TLV_TYPE_RATES); memcpy(&rates->rates, &bss->rates, MAX_RATES); - tmplen = MAX_RATES; + tmplen = min_t(u16, ARRAY_SIZE(rates->rates), MAX_RATES); if (get_common_rates(priv, rates->rates, &tmplen)) { ret = -1; goto done; @@ -598,7 +599,7 @@ static int lbs_adhoc_join(struct lbs_private *priv, /* Copy Data rates from the rates recorded in scan response */ memset(cmd.bss.rates, 0, sizeof(cmd.bss.rates)); - ratesize = min_t(u16, sizeof(cmd.bss.rates), MAX_RATES); + ratesize = min_t(u16, ARRAY_SIZE(cmd.bss.rates), MAX_RATES); memcpy(cmd.bss.rates, bss->rates, ratesize); if (get_common_rates(priv, cmd.bss.rates, &ratesize)) { lbs_deb_join("ADHOC_JOIN: get_common_rates returned error. "); ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] libertas: Read buffer overflow 2009-07-28 8:00 [PATCH] libertas: Read buffer overflow Roel Kluin @ 2009-07-28 8:19 ` Holger Schurig 2009-07-28 10:05 ` Roel Kluin 0 siblings, 1 reply; 5+ messages in thread From: Holger Schurig @ 2009-07-28 8:19 UTC (permalink / raw) To: Roel Kluin; +Cc: dcbw, libertas-dev, linux-wireless, Andrew Morton > - size_t num_card_rates = sizeof(lbs_bg_rates); > + size_t num_card_rates = ARRAY_SIZE(lbs_bg_rates); Hmm, not sure about this. First I don't know if we need a variable for this at all. Can't you simply use ARRAY_SIZE() whenever it's needed? If you want to keep num_card_rates, you should change it's type. "size_t" is normally used to denote sizes in bytes, e.g. it's the type for the length of malloc and friends. But now the variable holds a number of elements and should be int or unsigned int. -- http://www.holgerschurig.de ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] libertas: Read buffer overflow 2009-07-28 8:19 ` Holger Schurig @ 2009-07-28 10:05 ` Roel Kluin 0 siblings, 0 replies; 5+ messages in thread From: Roel Kluin @ 2009-07-28 10:05 UTC (permalink / raw) To: Holger Schurig; +Cc: dcbw, libertas-dev, linux-wireless, Andrew Morton Several arrays were read before checking whether the index was within bounds. ARRAY_SIZE() should be used to determine the size of arrays. rates->rates has an arraysize of 1, so calling get_common_rates() with a rates_size of MAX_RATES (14) was causing reads out of bounds. tmp_size can increment at most to (ARRAY_SIZE(lbs_bg_rates) - 1) * (*rates_size - 1), so that should be the number of elements of tmp[]. A goto can be eliminated: ret was already set upon its declaration. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> --- Op 28-07-09 10:19, Holger Schurig schreef: >> - size_t num_card_rates = sizeof(lbs_bg_rates); >> + size_t num_card_rates = ARRAY_SIZE(lbs_bg_rates); > > Hmm, not sure about this. First I don't know if we need a > variable for this at all. Can't you simply use ARRAY_SIZE() > whenever it's needed? Of course. Please note the additional changes. diff --git a/drivers/net/wireless/libertas/assoc.c b/drivers/net/wireless/libertas/assoc.c index b9b3741..d699737 100644 --- a/drivers/net/wireless/libertas/assoc.c +++ b/drivers/net/wireless/libertas/assoc.c @@ -1,6 +1,7 @@ /* Copyright (C) 2006, Red Hat, Inc. */ #include <linux/types.h> +#include <linux/kernel.h> #include <linux/etherdevice.h> #include <linux/ieee80211.h> #include <linux/if_arp.h> @@ -43,21 +44,21 @@ static int get_common_rates(struct lbs_private *priv, u16 *rates_size) { u8 *card_rates = lbs_bg_rates; - size_t num_card_rates = sizeof(lbs_bg_rates); int ret = 0, i, j; - u8 tmp[30]; + u8 tmp[(ARRAY_SIZE(lbs_bg_rates) - 1) * (*rates_size - 1)]; size_t tmp_size = 0; /* For each rate in card_rates that exists in rate1, copy to tmp */ - for (i = 0; card_rates[i] && (i < num_card_rates); i++) { - for (j = 0; rates[j] && (j < *rates_size); j++) { + for (i = 0; i < ARRAY_SIZE(lbs_bg_rates) && card_rates[i]; i++) { + for (j = 0; j < *rates_size && rates[j]; j++) { if (rates[j] == card_rates[i]) tmp[tmp_size++] = card_rates[i]; } } lbs_deb_hex(LBS_DEB_JOIN, "AP rates ", rates, *rates_size); - lbs_deb_hex(LBS_DEB_JOIN, "card rates ", card_rates, num_card_rates); + lbs_deb_hex(LBS_DEB_JOIN, "card rates ", card_rates, + ARRAY_SIZE(lbs_bg_rates)); lbs_deb_hex(LBS_DEB_JOIN, "common rates", tmp, tmp_size); lbs_deb_join("TX data rate 0x%02x\n", priv->cur_rate); @@ -69,10 +70,7 @@ static int get_common_rates(struct lbs_private *priv, lbs_pr_alert("Previously set fixed data rate %#x isn't " "compatible with the network.\n", priv->cur_rate); ret = -1; - goto done; } - ret = 0; - done: memset(rates, 0, *rates_size); *rates_size = min_t(int, tmp_size, *rates_size); @@ -322,7 +320,7 @@ static int lbs_associate(struct lbs_private *priv, rates = (struct mrvl_ie_rates_param_set *) pos; rates->header.type = cpu_to_le16(TLV_TYPE_RATES); memcpy(&rates->rates, &bss->rates, MAX_RATES); - tmplen = MAX_RATES; + tmplen = min_t(u16, ARRAY_SIZE(rates->rates), MAX_RATES); if (get_common_rates(priv, rates->rates, &tmplen)) { ret = -1; goto done; @@ -598,7 +596,7 @@ static int lbs_adhoc_join(struct lbs_private *priv, /* Copy Data rates from the rates recorded in scan response */ memset(cmd.bss.rates, 0, sizeof(cmd.bss.rates)); - ratesize = min_t(u16, sizeof(cmd.bss.rates), MAX_RATES); + ratesize = min_t(u16, ARRAY_SIZE(cmd.bss.rates), MAX_RATES); memcpy(cmd.bss.rates, bss->rates, ratesize); if (get_common_rates(priv, cmd.bss.rates, &ratesize)) { lbs_deb_join("ADHOC_JOIN: get_common_rates returned error.\n"); ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH] libertas: Read buffer overflow @ 2009-08-02 7:44 Roel Kluin 2009-08-04 15:16 ` Dan Williams 0 siblings, 1 reply; 5+ messages in thread From: Roel Kluin @ 2009-08-02 7:44 UTC (permalink / raw) To: linville, linux-wireless, Andrew Morton Check whether index is within bounds before testing the element. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> --- diff --git a/drivers/net/wireless/libertas/11d.c b/drivers/net/wireless/libertas/11d.c index 9a5408e..5c69681 100644 --- a/drivers/net/wireless/libertas/11d.c +++ b/drivers/net/wireless/libertas/11d.c @@ -47,7 +47,7 @@ static u8 lbs_region_2_code(u8 *region) { u8 i; - for (i = 0; region[i] && i < COUNTRY_CODE_LEN; i++) + for (i = 0; i < COUNTRY_CODE_LEN && region[i]; i++) region[i] = toupper(region[i]); for (i = 0; i < ARRAY_SIZE(region_code_mapping); i++) { ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] libertas: Read buffer overflow 2009-08-02 7:44 Roel Kluin @ 2009-08-04 15:16 ` Dan Williams 0 siblings, 0 replies; 5+ messages in thread From: Dan Williams @ 2009-08-04 15:16 UTC (permalink / raw) To: Roel Kluin; +Cc: linville, linux-wireless, Andrew Morton On Sun, 2009-08-02 at 09:44 +0200, Roel Kluin wrote: > Check whether index is within bounds before testing the element. > > Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Acked-by: Dan Williams <dcbw@redhat.com> > --- > diff --git a/drivers/net/wireless/libertas/11d.c b/drivers/net/wireless/libertas/11d.c > index 9a5408e..5c69681 100644 > --- a/drivers/net/wireless/libertas/11d.c > +++ b/drivers/net/wireless/libertas/11d.c > @@ -47,7 +47,7 @@ static u8 lbs_region_2_code(u8 *region) > { > u8 i; > > - for (i = 0; region[i] && i < COUNTRY_CODE_LEN; i++) > + for (i = 0; i < COUNTRY_CODE_LEN && region[i]; i++) > region[i] = toupper(region[i]); > > for (i = 0; i < ARRAY_SIZE(region_code_mapping); i++) { > -- > To unsubscribe from this list: send the line "unsubscribe linux-wireless" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-08-04 16:21 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-07-28 8:00 [PATCH] libertas: Read buffer overflow Roel Kluin 2009-07-28 8:19 ` Holger Schurig 2009-07-28 10:05 ` Roel Kluin -- strict thread matches above, loose matches on Subject: below -- 2009-08-02 7:44 Roel Kluin 2009-08-04 15:16 ` Dan Williams
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).