zapret/nfq/conntrack.h

115 lines
4.5 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
2024-04-20 22:59:45 +05:00
#include "packet_queue.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"
2023-10-26 17:12:32 +05:00
#define RETRANS_COUNTER_STOP ((uint8_t)-1)
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
2023-11-15 21:36:34 +05:00
// this structure helps to reassemble continuous packets streams. it does not support out-of-orders
typedef struct {
uint8_t *packet; // allocated for size during reassemble request. requestor must know the message size.
uint32_t seq; // current seq number. if a packet comes with an unexpected seq - it fails reassemble session.
size_t size; // expected message size. success means that we have received exactly 'size' bytes and have them in 'packet'
size_t size_present; // how many bytes already stored in 'packet'
} t_reassemble;
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;
2023-10-26 17:12:32 +05:00
typedef enum {UNKNOWN=0, HTTP, TLS, QUIC, WIREGUARD, DHT} t_l7proto;
2021-03-18 19:21:25 +05:00
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
2023-10-26 17:12:32 +05:00
uint8_t req_retrans_counter; // number of request retransmissions
2024-04-20 22:59:45 +05:00
bool req_seq_present,req_seq_finalized;
2023-11-15 21:36:34 +05:00
uint32_t req_seq_start,req_seq_end; // sequence interval of the request (to track retransmissions)
2021-03-18 19:21:25 +05:00
2024-03-02 19:53:37 +05:00
uint8_t autottl;
2021-03-18 19:21:25 +05:00
bool b_cutoff; // mark for deletion
bool b_wssize_cutoff, b_desync_cutoff;
2023-10-26 17:12:32 +05:00
t_l7proto l7proto;
char *hostname;
2024-04-20 22:59:45 +05:00
t_reassemble reasm_orig;
struct rawpacket_tailhead delayed;
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);
2024-04-20 22:59:45 +05:00
// do not create, do not update. only find existing
bool ConntrackPoolDoubleSearch(t_conntrack *p, const struct ip *ip, const struct ip6_hdr *ip6, const struct tcphdr *tcphdr, const struct udphdr *udphdr, t_ctrack **ctrack, bool *bReverse);
2022-01-01 22:22:04 +05:00
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);
2023-11-15 21:36:34 +05:00
void ConntrackClearHostname(t_ctrack *track);
bool ReasmInit(t_reassemble *reasm, size_t size_requested, uint32_t seq_start);
2024-04-20 22:59:45 +05:00
bool ReasmResize(t_reassemble *reasm, size_t new_size);
2023-11-15 21:36:34 +05:00
void ReasmClear(t_reassemble *reasm);
// false means reassemble session has failed and we should ReasmClear() it
bool ReasmFeed(t_reassemble *reasm, uint32_t seq, const void *payload, size_t len);
inline static bool ReasmIsEmpty(t_reassemble *reasm) {return !reasm->size;}
inline static bool ReasmIsFull(t_reassemble *reasm) {return !ReasmIsEmpty(reasm) && (reasm->size==reasm->size_present);}