zapret/nfq/conntrack.h

80 lines
2.7 KiB
C
Raw Normal View History

2021-03-18 19:21:25 +05:00
#pragma once
// this conntrack is not bullet-proof
// its designed to satisfy dpi desync needs only
#include <stdbool.h>
#include <stdint.h>
#include <ctype.h>
#include <sys/types.h>
#include <time.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/ip6.h>
#include <netinet/tcp.h>
2022-01-01 22:22:04 +05:00
#include <netinet/udp.h>
2021-03-18 19:21:25 +05:00
//#define HASH_BLOOM 20
#define HASH_NONFATAL_OOM 1
#undef HASH_FUNCTION
#define HASH_FUNCTION HASH_BER
#include "uthash.h"
2022-01-01 22:22:04 +05:00
typedef union {
struct in_addr ip;
struct in6_addr ip6;
} t_addr;
2021-03-18 19:21:25 +05:00
typedef struct
{
2022-01-01 22:22:04 +05:00
t_addr src, dst;
uint16_t sport,dport;
uint8_t l3proto; // IPPROTO_IP, IPPROTO_IPV6
uint8_t l4proto; // IPPROTO_TCP, IPPROTO_UDP
} t_conn;
2021-03-18 19:21:25 +05:00
// SYN - SYN or SYN/ACK received
// ESTABLISHED - any except SYN or SYN/ACK received
// FIN - FIN or RST received
typedef enum {SYN=0, ESTABLISHED, FIN} t_connstate;
typedef struct
{
2022-01-01 22:22:04 +05:00
// common state
2021-03-18 19:21:25 +05:00
time_t t_start, t_last;
uint64_t pcounter_orig, pcounter_reply; // packet counter
2021-12-27 18:51:30 +05:00
uint64_t pdcounter_orig, pdcounter_reply; // data packet counter (with payload)
2022-01-01 22:22:04 +05:00
uint32_t pos_orig, pos_reply; // TCP: seq_last+payload, ack_last+payload UDP: sum of all seen payload lenghts including current
uint32_t seq_last, ack_last; // TCP: last seen seq and ack UDP: sum of all seen payload lenghts NOT including current
// tcp only state, not used in udp
t_connstate state;
uint32_t seq0, ack0; // starting seq and ack
2021-03-19 17:39:32 +05:00
uint16_t winsize_orig, winsize_reply; // last seen window size
uint8_t scale_orig, scale_reply; // last seen window scale factor. SCALE_NONE if none
2021-03-18 19:21:25 +05:00
bool b_cutoff; // mark for deletion
bool b_wssize_cutoff, b_desync_cutoff;
2021-03-18 19:21:25 +05:00
} t_ctrack;
typedef struct
{
t_ctrack track;
UT_hash_handle hh; // makes this structure hashable
2022-01-01 22:22:04 +05:00
t_conn conn; // key
} t_conntrack_pool;
2021-03-18 19:21:25 +05:00
typedef struct
{
// inactivity time to purge an entry in each connection state
2022-01-01 22:22:04 +05:00
uint32_t timeout_syn,timeout_established,timeout_fin,timeout_udp;
2021-03-18 19:21:25 +05:00
time_t t_purge_interval, t_last_purge;
2022-01-01 22:22:04 +05:00
t_conntrack_pool *pool;
2021-03-18 19:21:25 +05:00
} t_conntrack;
2022-01-01 22:22:04 +05:00
void ConntrackPoolInit(t_conntrack *p, time_t purge_interval, uint32_t timeout_syn, uint32_t timeout_established, uint32_t timeout_fin, uint32_t timeout_udp);
2021-03-18 19:21:25 +05:00
void ConntrackPoolDestroy(t_conntrack *p);
2022-01-01 22:22:04 +05:00
bool ConntrackPoolFeed(t_conntrack *p, const struct ip *ip, const struct ip6_hdr *ip6, const struct tcphdr *tcphdr, const struct udphdr *udphdr, size_t len_payload, t_ctrack **ctrack, bool *bReverse);
bool ConntrackPoolDrop(t_conntrack *p, const struct ip *ip, const struct ip6_hdr *ip6, const struct tcphdr *tcphdr, const struct udphdr *udphdr);
void CaonntrackExtractConn(t_conn *c, bool bReverse, const struct ip *ip, const struct ip6_hdr *ip6, const struct tcphdr *tcphdr, const struct udphdr *udphdr);
void ConntrackPoolDump(const t_conntrack *p);
2021-03-18 19:21:25 +05:00
void ConntrackPoolPurge(t_conntrack *p);