Our scenario is as follow: When the TCP connection is established (we can check this in tcp_set_state() function), we can find out the egress net_device of this connection via sk->sk_dst_cache->dev. With this net_device we can distinguish our net_device with other net_device on the system.
This approach failed when the egress device is a sub-interface of a bridge, because sk->sk_dst_cache->dev always points to the bridge. Is it possible to get the real net_device (struct net_bridge_port) under the bridge if we are currently at Layer 4.
Any suggestions are appreciated. Thanks and Best Regards.