lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Tue, 15 Aug 2017 09:09:52 -0400
From:   Sebastian Reichel <sebastian.reichel@...labora.co.uk>
To:     "Reizer, Eyal" <eyalr@...com>
Cc:     Kalle Valo <kvalo@...eaurora.org>,
        ",Tony Lindgren" <tony@...mide.com>,
        "linux-wireless@...r.kernel.org" <linux-wireless@...r.kernel.org>,
        "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
        Julian Calaby <julian.calaby@...il.com>
Subject: Re: [v7 wlcore: add missing nvs file name info for wilink8

Hi,

On Mon, Aug 14, 2017 at 12:15:16PM +0000, Reizer, Eyal wrote:
> The following commits:
> commit c815fdebef44 ("wlcore: spi: Populate config firmware data")
> commit d776fc86b82f ("wlcore: sdio: Populate config firmware data")
> 
> Populated the nvs entry for wilink6 and wilink7 only while it is
> still needed for wilink8 as well.
> This broke user space backward compatibility when upgrading from older
> kernels, as the alternate mac address would not be read from the nvs that
> is present in the file system (lib/firmware/ti-connectivity/wl1271-nvs.bin)
> causing mac address change of the wlan interface.
> 
> This patch fix this and update the structure field with the same default
> nvs file name that has been used before.
> 
> In addition, some distros hold a default wl1271-nvs.bin in the file
> system with a bogus mac address (deadbeef...) that overrides the mac
> address that is stored inside the device.
> Warn users about this bogus mac address and use the internal mac address
> 
> Fixes: c815fdebef44 ("wlcore: spi: Populate config firmware data")
> Fixes: d776fc86b82f ("wlcore: sdio: Populate config firmware data")
> Signed-off-by: Eyal Reizer <eyalr@...com>
> ---
> v2->v3: add a check for default deadbeef... mac address and warn about it
> v3->v4: use a random TI mac address instead of the bogus one
> v4->v5: add constant definition for TI oui address
> v5->v6: after also verifying on wilink6/7 Use mac internal mac address
> instead of a random one
> v6->v7: use random mac in case internal mac is zero
> ---
>  drivers/net/wireless/ti/wlcore/main.c   | 23 +++++++++++++++++++++++
>  drivers/net/wireless/ti/wlcore/sdio.c   |  1 +
>  drivers/net/wireless/ti/wlcore/spi.c    |  1 +
>  drivers/net/wireless/ti/wlcore/wlcore.h |  3 +++
>  4 files changed, 28 insertions(+)
> 
> diff --git a/drivers/net/wireless/ti/wlcore/main.c b/drivers/net/wireless/ti/wlcore/main.c
> index 60aaa85..40692ac 100644
> --- a/drivers/net/wireless/ti/wlcore/main.c
> +++ b/drivers/net/wireless/ti/wlcore/main.c
> @@ -6040,6 +6040,29 @@ static int wl1271_register_hw(struct wl1271 *wl)
>  		nic_addr = wl->fuse_nic_addr + 1;
>  	}
>  
> +	if (oui_addr == 0xdeadbe && nic_addr == 0xef0000) {
> +		wl1271_warning("Detected unconfigured mac address in nvs.\n"
> +				"derive from fuse instead.\n"
> +				"in case of using a wl12xx device, your "
> +				"device performance may not be optimized.\n"
> +				"Please use the calibrator tool to configure "
> +				"your device.\n"
> +				"When using a wl18xx device this default nvs "
> +				"file can be removed from the file system\n");

Usually we do not break multiline messages to make it easier to grep
for them. Also it feels weird to say "if your device is ..., then
...", when we actually know which device it is. I suggest the
following:

wl1271_warning("Detected unconfigured mac address in nvs, derive from fuse instead.\n");
if (device_is_wl12xx) {
  wl1271_warning("Your device performance is not optimized.\n");
  wl1271_warning("Please use the calibrator tool to configure your device.\n");
} else {
  wl1271_warning("This default nvs file can be removed from the file system\n");
}

> +		if (wl->fuse_oui_addr == 0 && wl->fuse_nic_addr == 0) {
> +			wl1271_warning("Fuse mac address is zero. using "
> +					"random mac\n");

This one should also go into one line.

> +			/* Use TI oui and a random nic */
> +			oui_addr = WLCORE_TI_OUI_ADDRESS;
> +			nic_addr = get_random_int();
> +		} else {
> +			oui_addr = wl->fuse_oui_addr;
> +			/* fuse has the BD_ADDR, the WLAN addresses are the next two */
> +			nic_addr = wl->fuse_nic_addr + 1;
> +		}
> +	}
> +
>  	wl12xx_derive_mac_addresses(wl, oui_addr, nic_addr);
>  
>  	ret = ieee80211_register_hw(wl->hw);
> diff --git a/drivers/net/wireless/ti/wlcore/sdio.c b/drivers/net/wireless/ti/wlcore/sdio.c
> index 2fb3871..f8a1fea 100644
> --- a/drivers/net/wireless/ti/wlcore/sdio.c
> +++ b/drivers/net/wireless/ti/wlcore/sdio.c
> @@ -230,6 +230,7 @@ static const struct wilink_family_data wl128x_data = {
>  static const struct wilink_family_data wl18xx_data = {
>  	.name = "wl18xx",
>  	.cfg_name = "ti-connectivity/wl18xx-conf.bin",
> +	.nvs_name = "ti-connectivity/wl1271-nvs.bin",
>  };
>  
>  static const struct of_device_id wlcore_sdio_of_match_table[] = {
> diff --git a/drivers/net/wireless/ti/wlcore/spi.c b/drivers/net/wireless/ti/wlcore/spi.c
> index fdabb92..62ce54a 100644
> --- a/drivers/net/wireless/ti/wlcore/spi.c
> +++ b/drivers/net/wireless/ti/wlcore/spi.c
> @@ -92,6 +92,7 @@ static const struct wilink_family_data wl128x_data = {
>  static const struct wilink_family_data wl18xx_data = {
>  	.name = "wl18xx",
>  	.cfg_name = "ti-connectivity/wl18xx-conf.bin",
> +	.nvs_name = "ti-connectivity/wl1271-nvs.bin",
>  };
>  
>  struct wl12xx_spi_glue {
> diff --git a/drivers/net/wireless/ti/wlcore/wlcore.h b/drivers/net/wireless/ti/wlcore/wlcore.h
> index 1827546..95fbedc 100644
> --- a/drivers/net/wireless/ti/wlcore/wlcore.h
> +++ b/drivers/net/wireless/ti/wlcore/wlcore.h
> @@ -40,6 +40,9 @@
>  /* wl12xx/wl18xx maximum transmission power (in dBm) */
>  #define WLCORE_MAX_TXPWR        25
>  
> +/* Texas Instruments pre assigned OUI */
> +#define WLCORE_TI_OUI_ADDRESS 0x080028
> +
>  /* forward declaration */
>  struct wl1271_tx_hw_descr;
>  enum wl_rx_buf_align;

Otherwise:

Reviewed-by: Sebastian Reichel <sebastian.reichel@...labora.co.uk>

-- Sebastian

Download attachment "signature.asc" of type "application/pgp-signature" (834 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ