summaryrefslogtreecommitdiffstats
path: root/sys/dev/sk
diff options
context:
space:
mode:
authoryongari <yongari@FreeBSD.org>2010-11-06 21:54:32 +0000
committeryongari <yongari@FreeBSD.org>2010-11-06 21:54:32 +0000
commitc96a19b55e663cd991f6ddfeff6f3ada277be24b (patch)
treef74a281fb4f1674609a1faefdad0e22627ec0ba6 /sys/dev/sk
parentef5448bdd85a591b19ea7964549b30d897d32037 (diff)
downloadFreeBSD-src-c96a19b55e663cd991f6ddfeff6f3ada277be24b.zip
FreeBSD-src-c96a19b55e663cd991f6ddfeff6f3ada277be24b.tar.gz
If we got an invalid station address, generate random address. This
might be caused by broken BIOS. Reported by: "Mikhail T." <mi+thun <> aldan.algebra.com> MFC after: 1 week
Diffstat (limited to 'sys/dev/sk')
-rw-r--r--sys/dev/sk/if_sk.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/sys/dev/sk/if_sk.c b/sys/dev/sk/if_sk.c
index 5a8c959..3ed6300 100644
--- a/sys/dev/sk/if_sk.c
+++ b/sys/dev/sk/if_sk.c
@@ -1319,8 +1319,10 @@ sk_attach(dev)
struct sk_softc *sc;
struct sk_if_softc *sc_if;
struct ifnet *ifp;
+ u_int32_t r;
int error, i, phy, port;
u_char eaddr[6];
+ u_char inv_mac[] = {0, 0, 0, 0, 0, 0};
if (dev == NULL)
return(EINVAL);
@@ -1400,6 +1402,23 @@ sk_attach(dev)
eaddr[i] =
sk_win_read_1(sc, SK_MAC0_0 + (port * 8) + i);
+ /* Verify whether the station address is invalid or not. */
+ if (bcmp(eaddr, inv_mac, sizeof(inv_mac)) == 0) {
+ device_printf(sc_if->sk_if_dev,
+ "Generating random ethernet address\n");
+ r = arc4random();
+ /*
+ * Set OUI to convenient locally assigned address. 'b'
+ * is 0x62, which has the locally assigned bit set, and
+ * the broadcast/multicast bit clear.
+ */
+ eaddr[0] = 'b';
+ eaddr[1] = 's';
+ eaddr[2] = 'd';
+ eaddr[3] = (r >> 16) & 0xff;
+ eaddr[4] = (r >> 8) & 0xff;
+ eaddr[5] = (r >> 0) & 0xff;
+ }
/*
* Set up RAM buffer addresses. The NIC will have a certain
* amount of SRAM on it, somewhere between 512K and 2MB. We
OpenPOWER on IntegriCloud