diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2024-07-18 15:26:34 +1000 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2024-07-19 18:32:56 +0200 |
commit | 163a339214dd34696ce485930f35ed21c86057f0 (patch) | |
tree | e5e37fb9281ea71ebcee9c3f1573c0301337a97d /flow.h | |
parent | f19a8f71f9df0fb01e81af56cf30dd207958a591 (diff) | |
download | passt-163a339214dd34696ce485930f35ed21c86057f0.tar passt-163a339214dd34696ce485930f35ed21c86057f0.tar.gz passt-163a339214dd34696ce485930f35ed21c86057f0.tar.bz2 passt-163a339214dd34696ce485930f35ed21c86057f0.tar.lz passt-163a339214dd34696ce485930f35ed21c86057f0.tar.xz passt-163a339214dd34696ce485930f35ed21c86057f0.tar.zst passt-163a339214dd34696ce485930f35ed21c86057f0.zip |
tcp, flow: Replace TCP specific hash function with general flow hash
Currently we match TCP packets received on the tap connection to a TCP
connection via a hash table based on the forwarding address and both
ports. We hope in future to allow for multiple guest side addresses, or
for multiple interfaces which means we may need to distinguish based on
the endpoint address and pif as well. We also want a unified hash table
to cover multiple protocols, not just TCP.
Replace the TCP specific hash function with one suitable for general flows,
or rather for one side of a general flow. This includes all the
information from struct flowside, plus the pif and the L4 protocol number.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'flow.h')
-rw-r--r-- | flow.h | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -150,6 +150,25 @@ struct flowside { }; /** + * flowside_eq() - Check if two flowsides are equal + * @left, @right: Flowsides to compare + * + * Return: true if equal, false otherwise + */ +static inline bool flowside_eq(const struct flowside *left, + const struct flowside *right) +{ + return inany_equals(&left->eaddr, &right->eaddr) && + left->eport == right->eport && + inany_equals(&left->faddr, &right->faddr) && + left->fport == right->fport; +} + +void flowside_from_af(struct flowside *side, sa_family_t af, + const void *eaddr, in_port_t eport, + const void *faddr, in_port_t fport); + +/** * struct flow_common - Common fields for packet flows * @state: State of the flow table entry * @type: Type of packet flow |