Ido Schimmel
2022-Aug-22 05:40 UTC
[Bridge] [PATCH v4 net-next 3/6] drivers: net: dsa: add locked fdb entry flag to drivers
On Sun, Aug 21, 2022 at 03:43:04PM +0200, netdev at kapio-technology.com wrote:> On 2022-08-21 09:08, Ido Schimmel wrote: > > On Fri, Aug 19, 2022 at 11:51:11AM +0200, netdev at kapio-technology.com > > wrote: > > > On 2022-08-14 16:55, Ido Schimmel wrote: > > > > On Fri, Aug 12, 2022 at 02:29:48PM +0200, netdev at kapio-technology.com > > > > wrote: > > > > > On 2022-08-11 13:28, Ido Schimmel wrote: > > > > > > > > > > > > > I'm talking about roaming, not forwarding. Let's say you have a locked > > > > > > > > entry with MAC X pointing to port Y. Now you get a packet with SMAC X > > > > > > > > from port Z which is unlocked. Will the FDB entry roam to port Z? I > > > > > > > > think it should, but at least in current implementation it seems that > > > > > > > > the "locked" flag will not be reset and having locked entries pointing > > > > > > > > to an unlocked port looks like a bug. > > > > > > I have made the locked entries sticky in the bridge, so that they > > > don't move > > > to other ports. > > > > Please make sure that this design choice is explained in the commit > > message. To be clear, it cannot be "this is how device X happens to > > work". > > > > The real issue I think is that the locked entry should mask the MAC address > involved (as the description I gave for zero-DPV entries and actually also > storm prevention entries ensure), so that there is no forwarding to the > address on any port, otherwise it will allow one-way traffic to a host that > is not trusted. Thus flooding of unknown unicast on a locked port should of > course be disabled ('flood off'), so that there is no way of sending to an > unauthorized silent host behind the locked port. > > The issue with the locked entry appearing on another SW bridge port from > where it originated, I think is more of a cosmetic bug, though I could be > mistaken. But adding the sticky flag to locked entries ensures that they do > not move to another port. > > This of course does that instant roaming is not possible, but I think that > the right approach is to use the ageing out of entries to allow the station > move/roaming.I personally think that the mv88e6xxx semantics are very weird (e.g., no roaming, traffic blackhole) and I don't want them to determine how the feature works in the pure software bridge or other hardware implementations. On the other hand, I understand your constraints and I don't want to create a situation where user space is unable to understand how the data path works from the bridge FDB dump with mv88e6xxx. My suggestion is to have mv88e6xxx report the "locked" entry to the bridge driver with additional flags that describe its behavior in terms of roaming, ageing and forwarding. In terms of roaming, since in mv88e6xxx the entry can't roam you should report the entry with the "sticky" flag. In terms of ageing, since mv88e6xxx is the one doing the ageing and not the bridge driver, report the entry with the "extern_learn" flag. In terms of forwarding, in mv88e6xxx the entry discards all matching packets. We can introduce a new FDB flag that instructs the entry to silently discard all matching packets. Like we have with blackhole routes and nexthops. I believe that the above suggestion allows you to fully describe how these entries work in mv88e6xxx while keeping the bridge driver in sync with complete visibility towards user space. It also frees the pure software implementation from the constraints of mv88e6xxx, allowing "locked" entries to behave like any other dynamically learned entries modulo the fact that they cannot "unlock" a locked port. Yes, it does mean that user space will get a bit different behavior with mv88e6xxx compared to a pure software solution, but a) It's only the corner cases that act a bit differently. As a whole, the feature works largely the same. b) User space has complete visibility to understand the behavior of the offloaded data path.> > The case of unwanted traffic to a MAC behind a locked port with a locked > entry is what I would regard as more worthy of a selftest. The sticky flag I > know will ensure that the locked entries do not move to other ports, and > since it is only in the bridge this can be tested (e.g. using 'bridge fdb > show dev DEV'), I think that the test would be superfluos. What do you think > of that and my other consideration for a test?If we go with the above suggestion, then you can have a mv88e6xxx-specific selftest that tests the corner cases where mv88e6xxx acts a bit differently from the pure software bridge.> > > > > I have now created the flag to enable Mac-Auth/MAB with iproute2: > > > bridge link set dev DEV macauth on|off > > > > You have 'macauth' here, but 'mab' in the output below. They need to > > match. I prefer the latter unless you have a good reason to use > > 'macauth'. > > > > > > > > with the example output from 'bridge -d link show dev DEV' when > > > macauth is > > > enabled: > > > 1: ethX: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master br0 state > > > forwarding priority 32 cost 19 > > > hairpin off guard off root_block off fastleave off learning on > > > flood off > > > mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off > > > neigh_suppress off vlan_tunnel off isolated off locked mab on > > > > > > The flag itself in the code is called BR_PORT_MACAUTH. > > > > > > > > > > > Fine by me, but I'm not sure everyone agrees. > > I will change it in iproute2 to: > bridge link set dev DEV mab on|offAnd s/BR_PORT_MACAUTH/BR_PORT_MAB/ ?
netdev at kapio-technology.com
2022-Aug-22 07:49 UTC
[Bridge] [PATCH v4 net-next 3/6] drivers: net: dsa: add locked fdb entry flag to drivers
On 2022-08-22 07:40, Ido Schimmel wrote:> On Sun, Aug 21, 2022 at 03:43:04PM +0200, netdev at kapio-technology.com > wrote: > > I personally think that the mv88e6xxx semantics are very weird (e.g., > no > roaming, traffic blackhole) and I don't want them to determine how the > feature works in the pure software bridge or other hardware > implementations. On the other hand, I understand your constraints and I > don't want to create a situation where user space is unable to > understand how the data path works from the bridge FDB dump with > mv88e6xxx. > > My suggestion is to have mv88e6xxx report the "locked" entry to the > bridge driver with additional flags that describe its behavior in terms > of roaming, ageing and forwarding. > > In terms of roaming, since in mv88e6xxx the entry can't roam you should > report the entry with the "sticky" flag.As I am not familiar with roaming in this context, I need to know how the SW bridge should behave in this case. In this I am assuming that roaming is regarding unauthorized entries. In this case, is the roaming only between locked ports or does the roaming include that the entry can move to a unlocked port, resulting in the locked flag getting removed?> In terms of ageing, since > mv88e6xxx is the one doing the ageing and not the bridge driver, report > the entry with the "extern_learn" flag.Just for the record, I see that entries coming from the driver to the bridge will always have the "extern learn" flag set as can be seen from the SWITCHDEV_FDB_ADD_TO_BRIDGE events handling in br_switchdev_event() in br.c, which I think is the correct behavior.> In terms of forwarding, in > mv88e6xxx the entry discards all matching packets. We can introduce a > new FDB flag that instructs the entry to silently discard all matching > packets. Like we have with blackhole routes and nexthops.Any suggestions to the name of this flag?> > I believe that the above suggestion allows you to fully describe how > these entries work in mv88e6xxx while keeping the bridge driver in sync > with complete visibility towards user space. > > It also frees the pure software implementation from the constraints of > mv88e6xxx, allowing "locked" entries to behave like any other > dynamically learned entries modulo the fact that they cannot "unlock" a > locked port. > > Yes, it does mean that user space will get a bit different behavior > with > mv88e6xxx compared to a pure software solution, but a) It's only the > corner cases that act a bit differently. As a whole, the feature works > largely the same. b) User space has complete visibility to understand > the behavior of the offloaded data path. >>> >> I will change it in iproute2 to: >> bridge link set dev DEV mab on|off > > And s/BR_PORT_MACAUTH/BR_PORT_MAB/ ?Sure, I will do that. :-)