zapret/tpws/tamper.h

32 lines
901 B
C
Raw Normal View History

2021-03-04 16:30:38 +05:00
#pragma once
#include <stdbool.h>
2023-10-12 14:35:06 +05:00
#include <stdint.h>
2021-03-04 16:30:38 +05:00
#include <sys/types.h>
2024-09-19 23:06:58 +05:00
#include "params.h"
#define SPLIT_FLAG_DISORDER 0x01
#define SPLIT_FLAG_OOB 0x02
2023-10-26 17:12:32 +05:00
typedef enum {UNKNOWN=0, HTTP, TLS} t_l7proto;
typedef struct
{
// common state
t_l7proto l7proto;
bool bFirstReplyChecked;
bool bTamperInCutoff;
2024-09-19 23:06:58 +05:00
bool b_ah_check;
2023-10-26 17:12:32 +05:00
char *hostname;
2024-09-19 23:06:58 +05:00
struct desync_profile *dp; // desync profile cache
2023-10-26 17:12:32 +05:00
} t_ctrack;
2024-09-19 23:06:58 +05:00
void apply_desync_profile(t_ctrack *ctrack, const struct sockaddr *dest);
void tamper_out(t_ctrack *ctrack, const struct sockaddr *dest, uint8_t *segment,size_t segment_buffer_size,size_t *size, size_t *split_pos, uint8_t *split_flags);
2023-10-26 17:12:32 +05:00
void tamper_in(t_ctrack *ctrack, uint8_t *segment,size_t segment_buffer_size,size_t *size);
// connection reset by remote leg
void rst_in(t_ctrack *ctrack);
// local leg closed connection (timeout waiting response ?)
void hup_out(t_ctrack *ctrack);