Re: [PATCH v3] net: macsec SCI assignment for ES = 0

From: Sabrina Dubroca
Date: Fri Jun 23 2023 - 11:40:55 EST


2023-06-23, 12:13:55 +0200, carlos.fernandez@xxxxxxxxxxxxxxxxxxxxxxx wrote:
> Regarding ES, it is only set if the first 6 octets of the SCI are equal to the MAC,
> in which case SC=0 as well (IEEE802.1AE 9.5 TAG Control information).
> However, if ES=0, it is incorrect to use source MAC as SCI (current implementation)

But the spec doesn't really say what else we should be using.

Also, if it's incorrect to use the source MAC to build the SCI, we
shouldn't have the fallback that you added in v2/v3 in response to
Simon's comments (we'll probably end up dropping the packet when we
look for the rxsc/secy anyway).

> Regarding SC, as said in IEEE 802.1AE 9.9:
>
>
> "An explicitly encoded SCI field in the SecTAG is not required on point-to-point links,
> which are identified by (...), if the transmitting SecY uses only one transmit SC.
> In that case, the secure association created by the SecY for the peer SecYs, together with
> the direction of transmission of the secured MPDU, can be used to identify the transmitting SecY."

Thanks for the reference. This should be quoted in the commit message
to explain the reason for the change, as well as this sentence from 9.5:

The ES bit is clear if the Source Address is not used to determine
the SCI.

> Therefore the case SC=0 is reserved for cases where both conditions apply: point-to-point links,
> and only one transmit SC. This requirement makes the size of the reception lookup 1.

That's the intention of the spec. We can't know that we'll only
receive such packets in situations where we have a single RXSC for the
entire real device.

I'm not too worried about the loop being slow (because it's a bit
unlikely that we'll go through lots of iterations on either loop
before we hit an active RXSC), but I'm not convinced that we should be
dumping those packets in the first RXSC we can find.

So I wonder if we should instead (only for ES=0 SC=0):
- if we have exactly one RXSC for the lower device (ie across the 2
loops), use it
- otherwise (0 or > 1), drop the packet and increment InPktsNoSCI

and we can use MACSEC_UNDEF_SCI as return value to indicate a bogus
packet that needs to be dropped.

Would that take care of your use case?

--
Sabrina