aboutgitcodebugslistschat
path: root/passt.h
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2024-07-18 15:26:27 +1000
committerStefano Brivio <sbrivio@redhat.com>2024-07-19 18:32:32 +0200
commit8012f5ff55b64fcfcc8c9512492247153327d3c4 (patch)
treebaebb17dc01d589d9e924e26969f85be6f0b70fc /passt.h
parentba74b1fea1ef661dc8cce1d32863c9784d2747a6 (diff)
downloadpasst-8012f5ff55b64fcfcc8c9512492247153327d3c4.tar
passt-8012f5ff55b64fcfcc8c9512492247153327d3c4.tar.gz
passt-8012f5ff55b64fcfcc8c9512492247153327d3c4.tar.bz2
passt-8012f5ff55b64fcfcc8c9512492247153327d3c4.tar.lz
passt-8012f5ff55b64fcfcc8c9512492247153327d3c4.tar.xz
passt-8012f5ff55b64fcfcc8c9512492247153327d3c4.tar.zst
passt-8012f5ff55b64fcfcc8c9512492247153327d3c4.zip
flow: Common address information for initiating side
Handling of each protocol needs some degree of tracking of the addresses and ports at the end of each connection or flow. Sometimes that's explicit (as in the guest visible addresses for TCP connections), sometimes implicit (the bound and connected addresses of sockets). To allow more consistent handling across protocols we want to uniformly track the address and port at each end of the connection. Furthermore, because we allow port remapping, and we sometimes need to apply NAT, the addresses and ports can be different as seen by the guest/namespace and as by the host. Introduce 'struct flowside' to keep track of address and port information related to one side of a flow. Store two of these in the common fields of a flow to track that information for both sides. For now we only populate the initiating side, requiring that information be completed when a flows enter INI. Later patches will populate the target side. For now this leaves some information redundantly recorded in both generic and type specific fields. We'll fix that in later patches. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'passt.h')
-rw-r--r--passt.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/passt.h b/passt.h
index 867e77b..0d76b49 100644
--- a/passt.h
+++ b/passt.h
@@ -17,6 +17,9 @@ union epoll_ref;
#include "pif.h"
#include "packet.h"
+#include "siphash.h"
+#include "ip.h"
+#include "inany.h"
#include "flow.h"
#include "icmp.h"
#include "fwd.h"