* [RFC] mac80211: always have a valid master device mac address
@ 2007-11-20 0:17 Johannes Berg
2007-11-20 13:22 ` Johannes Berg
0 siblings, 1 reply; 3+ messages in thread
From: Johannes Berg @ 2007-11-20 0:17 UTC (permalink / raw)
To: Michael Wu; +Cc: linux-wireless
Once a while a driver will give us a bogus MAC address. This can be
remedied by the user by setting the MAC address on the wlanX interface,
but unfortunately one cannot change the address of the wmasterX
interface which results in wlanX going up but wmasterX refusing to. This
is pretty bad. This patch forces wmasterX to have a valid MAC address.
The actual address doesn't matter at all.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
---
Or should we hardcode one and always use that instead of the device
address?
--- everything.orig/net/mac80211/ieee80211.c 2007-11-20 00:25:03.008708602 +0100
+++ everything/net/mac80211/ieee80211.c 2007-11-20 00:27:09.278700356 +0100
@@ -1286,6 +1286,8 @@ int ieee80211_register_hw(struct ieee802
goto fail_dev;
memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
+ if (!is_valid_ether_addr(local->mdev->dev_addr))
+ random_ether_addr(local->mdev->dev_addr);
SET_NETDEV_DEV(local->mdev, wiphy_dev(local->hw.wiphy));
result = register_netdevice(local->mdev);
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [RFC] mac80211: always have a valid master device mac address
2007-11-20 0:17 [RFC] mac80211: always have a valid master device mac address Johannes Berg
@ 2007-11-20 13:22 ` Johannes Berg
2007-11-20 16:43 ` Dan Williams
0 siblings, 1 reply; 3+ messages in thread
From: Johannes Berg @ 2007-11-20 13:22 UTC (permalink / raw)
To: Michael Wu; +Cc: linux-wireless
[-- Attachment #1: Type: text/plain, Size: 1672 bytes --]
On Tue, 2007-11-20 at 01:17 +0100, Johannes Berg wrote:
> Once a while a driver will give us a bogus MAC address. This can be
> remedied by the user by setting the MAC address on the wlanX interface,
> but unfortunately one cannot change the address of the wmasterX
> interface which results in wlanX going up but wmasterX refusing to. This
> is pretty bad. This patch forces wmasterX to have a valid MAC address.
> The actual address doesn't matter at all.
>
> Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
> ---
> Or should we hardcode one and always use that instead of the device
> address?
Hmm. Considering this. udev has trouble with devices with the same MAC
address, maybe we *should* hardcode a different one? That'd also stop
people from using the master device's MAC address as the "eeprom MAC"
that should be gotten from sysfs instead. It's bound to happen ;)
> --- everything.orig/net/mac80211/ieee80211.c 2007-11-20 00:25:03.008708602 +0100
> +++ everything/net/mac80211/ieee80211.c 2007-11-20 00:27:09.278700356 +0100
> @@ -1286,6 +1286,8 @@ int ieee80211_register_hw(struct ieee802
> goto fail_dev;
>
> memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
> + if (!is_valid_ether_addr(local->mdev->dev_addr))
> + random_ether_addr(local->mdev->dev_addr);
> SET_NETDEV_DEV(local->mdev, wiphy_dev(local->hw.wiphy));
>
> result = register_netdevice(local->mdev);
>
>
> -
> 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
>
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 828 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [RFC] mac80211: always have a valid master device mac address
2007-11-20 13:22 ` Johannes Berg
@ 2007-11-20 16:43 ` Dan Williams
0 siblings, 0 replies; 3+ messages in thread
From: Dan Williams @ 2007-11-20 16:43 UTC (permalink / raw)
To: Johannes Berg; +Cc: Michael Wu, linux-wireless
On Tue, 2007-11-20 at 14:22 +0100, Johannes Berg wrote:
> On Tue, 2007-11-20 at 01:17 +0100, Johannes Berg wrote:
> > Once a while a driver will give us a bogus MAC address. This can be
> > remedied by the user by setting the MAC address on the wlanX interface,
> > but unfortunately one cannot change the address of the wmasterX
> > interface which results in wlanX going up but wmasterX refusing to. This
> > is pretty bad. This patch forces wmasterX to have a valid MAC address.
> > The actual address doesn't matter at all.
> >
> > Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
> > ---
> > Or should we hardcode one and always use that instead of the device
> > address?
>
> Hmm. Considering this. udev has trouble with devices with the same MAC
> address, maybe we *should* hardcode a different one? That'd also stop
> people from using the master device's MAC address as the "eeprom MAC"
> that should be gotten from sysfs instead. It's bound to happen ;)
It's a udev _rules_ problem, not a udev problem really. Because
mac80211 was quite new, the udev rules weren't differentiating between
the wmaster and the wlan interfaces. The rules need to be updated (and
have been for many distros) to check the 'type' attribute of the sysfs
dir of the device before deciding what to do with it.
Dan
> > --- everything.orig/net/mac80211/ieee80211.c 2007-11-20 00:25:03.008708602 +0100
> > +++ everything/net/mac80211/ieee80211.c 2007-11-20 00:27:09.278700356 +0100
> > @@ -1286,6 +1286,8 @@ int ieee80211_register_hw(struct ieee802
> > goto fail_dev;
> >
> > memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
> > + if (!is_valid_ether_addr(local->mdev->dev_addr))
> > + random_ether_addr(local->mdev->dev_addr);
> > SET_NETDEV_DEV(local->mdev, wiphy_dev(local->hw.wiphy));
> >
> > result = register_netdevice(local->mdev);
> >
> >
> > -
> > 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] 3+ messages in thread
end of thread, other threads:[~2007-11-20 16:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-20 0:17 [RFC] mac80211: always have a valid master device mac address Johannes Berg
2007-11-20 13:22 ` Johannes Berg
2007-11-20 16:43 ` 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).