zapret/nfq/darkmagic.h

230 lines
7.3 KiB
C
Raw Normal View History

2021-03-04 16:30:38 +05:00
#pragma once
#include "checksum.h"
#include "packet_queue.h"
#include "pools.h"
2021-03-04 16:30:38 +05:00
#include <stdint.h>
#include <stdbool.h>
2024-04-26 23:36:27 +05:00
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/param.h>
2024-04-26 23:36:27 +05:00
#include <netinet/in.h>
#define __FAVOR_BSD
2021-03-04 16:30:38 +05:00
#include <netinet/ip.h>
#include <netinet/ip6.h>
#include <netinet/tcp.h>
2022-01-01 22:22:04 +05:00
#include <netinet/udp.h>
2024-04-26 23:36:27 +05:00
2024-08-20 19:15:55 +05:00
#ifndef IPV6_FREEBIND
#define IPV6_FREEBIND 78
#endif
2024-04-26 23:36:27 +05:00
#ifdef __CYGWIN__
#include "windivert/windivert.h"
#endif
2021-03-04 16:30:38 +05:00
#ifndef IPPROTO_DIVERT
#define IPPROTO_DIVERT 258
#endif
#ifndef AF_DIVERT
#define AF_DIVERT 44 /* divert(4) */
#endif
#ifndef PF_DIVERT
#define PF_DIVERT AF_DIVERT
#endif
2021-03-04 16:30:38 +05:00
// returns netorder value
uint32_t net32_add(uint32_t netorder_value, uint32_t cpuorder_increment);
uint32_t net16_add(uint16_t netorder_value, uint16_t cpuorder_increment);
2021-03-04 16:30:38 +05:00
#define FOOL_NONE 0x00
#define FOOL_MD5SIG 0x01
#define FOOL_BADSUM 0x02
#define FOOL_TS 0x04
#define FOOL_BADSEQ 0x08
#define FOOL_HOPBYHOP 0x10
#define FOOL_HOPBYHOP2 0x20
2022-02-05 15:36:03 +05:00
#define FOOL_DESTOPT 0x40
2022-02-05 17:41:46 +05:00
#define FOOL_IPFRAG1 0x80
2024-03-02 19:53:37 +05:00
#define FOOL_DATANOACK 0x100
2021-03-04 16:30:38 +05:00
2021-03-19 17:39:32 +05:00
#define SCALE_NONE ((uint8_t)-1)
2024-04-20 22:59:45 +05:00
#define VERDICT_PASS 0
#define VERDICT_MODIFY 1
#define VERDICT_DROP 2
#define VERDICT_MASK 3
#define VERDICT_NOCSUM 4
2021-03-04 16:30:38 +05:00
// seq and wsize have network byte order
bool prepare_tcp_segment4(
const struct sockaddr_in *src, const struct sockaddr_in *dst,
uint8_t tcp_flags,
uint32_t nseq, uint32_t nack_seq,
uint16_t nwsize,
2021-03-19 17:39:32 +05:00
uint8_t scale_factor,
2021-03-04 16:30:38 +05:00
uint32_t *timestamps,
uint8_t ttl,
2024-03-02 19:53:37 +05:00
uint32_t fooling,
uint32_t badseq_increment,
uint32_t badseq_ack_increment,
2021-03-04 16:30:38 +05:00
const void *data, uint16_t len,
uint8_t *buf, size_t *buflen);
bool prepare_tcp_segment6(
const struct sockaddr_in6 *src, const struct sockaddr_in6 *dst,
uint8_t tcp_flags,
uint32_t nseq, uint32_t nack_seq,
uint16_t nwsize,
2021-03-19 17:39:32 +05:00
uint8_t scale_factor,
2021-03-04 16:30:38 +05:00
uint32_t *timestamps,
uint8_t ttl,
2024-03-02 19:53:37 +05:00
uint32_t fooling,
uint32_t badseq_increment,
uint32_t badseq_ack_increment,
2021-03-04 16:30:38 +05:00
const void *data, uint16_t len,
uint8_t *buf, size_t *buflen);
bool prepare_tcp_segment(
const struct sockaddr *src, const struct sockaddr *dst,
uint8_t tcp_flags,
uint32_t nseq, uint32_t nack_seq,
uint16_t nwsize,
2021-03-19 17:39:32 +05:00
uint8_t scale_factor,
2021-03-04 16:30:38 +05:00
uint32_t *timestamps,
uint8_t ttl,
2024-03-02 19:53:37 +05:00
uint32_t fooling,
uint32_t badseq_increment,
uint32_t badseq_ack_increment,
2021-03-04 16:30:38 +05:00
const void *data, uint16_t len,
uint8_t *buf, size_t *buflen);
2022-01-01 22:22:04 +05:00
bool prepare_udp_segment4(
const struct sockaddr_in *src, const struct sockaddr_in *dst,
uint8_t ttl,
2024-03-02 19:53:37 +05:00
uint32_t fooling,
const uint8_t *padding, size_t padding_size,
2022-07-27 14:00:36 +05:00
int padlen,
2022-01-01 22:22:04 +05:00
const void *data, uint16_t len,
uint8_t *buf, size_t *buflen);
bool prepare_udp_segment6(
const struct sockaddr_in6 *src, const struct sockaddr_in6 *dst,
uint8_t ttl,
2024-03-02 19:53:37 +05:00
uint32_t fooling,
const uint8_t *padding, size_t padding_size,
2022-07-27 14:00:36 +05:00
int padlen,
2022-01-01 22:22:04 +05:00
const void *data, uint16_t len,
uint8_t *buf, size_t *buflen);
bool prepare_udp_segment(
const struct sockaddr *src, const struct sockaddr *dst,
uint8_t ttl,
2024-03-02 19:53:37 +05:00
uint32_t fooling,
const uint8_t *padding, size_t padding_size,
2022-07-27 14:00:36 +05:00
int padlen,
2022-01-01 22:22:04 +05:00
const void *data, uint16_t len,
uint8_t *buf, size_t *buflen);
2022-02-05 15:36:03 +05:00
bool ip6_insert_simple_hdr(uint8_t type, uint8_t *data_pkt, size_t len_pkt, uint8_t *buf, size_t *buflen);
2022-01-01 22:22:04 +05:00
2022-01-03 14:38:18 +05:00
// ipv4: ident==-1 - copy ip_id from original ipv4 packet
bool ip_frag4(
const uint8_t *pkt, size_t pkt_size,
size_t frag_pos, uint32_t ident,
uint8_t *pkt1, size_t *pkt1_size,
uint8_t *pkt2, size_t *pkt2_size);
bool ip_frag6(
const uint8_t *pkt, size_t pkt_size,
size_t frag_pos, uint32_t ident,
uint8_t *pkt1, size_t *pkt1_size,
uint8_t *pkt2, size_t *pkt2_size);
bool ip_frag(
const uint8_t *pkt, size_t pkt_size,
size_t frag_pos, uint32_t ident,
uint8_t *pkt1, size_t *pkt1_size,
uint8_t *pkt2, size_t *pkt2_size);
2024-03-19 15:50:20 +05:00
void rewrite_ttl(struct ip *ip, struct ip6_hdr *ip6, uint8_t ttl);
2022-01-03 14:38:18 +05:00
2022-01-01 22:22:04 +05:00
void extract_ports(const struct tcphdr *tcphdr, const struct udphdr *udphdr, uint8_t *proto, uint16_t *sport, uint16_t *dport);
void extract_endpoints(const struct ip *ip,const struct ip6_hdr *ip6hdr,const struct tcphdr *tcphdr,const struct udphdr *udphdr, struct sockaddr_storage *src, struct sockaddr_storage *dst);
2021-03-04 16:30:38 +05:00
uint8_t *tcp_find_option(struct tcphdr *tcp, uint8_t kind);
uint32_t *tcp_find_timestamps(struct tcphdr *tcp);
2021-03-19 17:39:32 +05:00
uint8_t tcp_find_scale_factor(const struct tcphdr *tcp);
bool tcp_has_fastopen(const struct tcphdr *tcp);
2021-03-04 16:30:38 +05:00
2024-04-26 23:36:27 +05:00
#ifdef __CYGWIN__
extern uint32_t w_win32_error;
2024-07-12 17:13:18 +05:00
bool win_dark_init(const struct str_list_head *ssid_filter, const struct str_list_head *nlm_filter);
bool win_dark_deinit(void);
bool logical_net_filter_match(void);
bool nlm_list(bool bAll);
bool windivert_init(const char *filter);
2024-04-26 23:36:27 +05:00
bool windivert_recv(uint8_t *packet, size_t *len, WINDIVERT_ADDRESS *wa);
bool windivert_send(const uint8_t *packet, size_t len, const WINDIVERT_ADDRESS *wa);
#else
// should pre-do it if dropping privileges. otherwise its not necessary
bool rawsend_preinit(bool bind_fix4, bool bind_fix6);
#endif
2021-03-04 16:30:38 +05:00
// auto creates internal socket and uses it for subsequent calls
2022-05-15 17:54:35 +05:00
bool rawsend(const struct sockaddr* dst,uint32_t fwmark,const char *ifout,const void *data,size_t len);
2024-04-20 22:59:45 +05:00
bool rawsend_rp(const struct rawpacket *rp);
// return trues if all packets were send successfully
bool rawsend_queue(struct rawpacket_tailhead *q);
2021-03-04 16:30:38 +05:00
// cleans up socket autocreated by rawsend
2023-10-13 22:10:46 +05:00
void rawsend_cleanup(void);
2021-03-04 16:30:38 +05:00
2024-04-26 23:36:27 +05:00
#ifdef BSD
2024-03-08 16:01:24 +05:00
int socket_divert(sa_family_t family);
2024-04-26 23:36:27 +05:00
#endif
2022-01-01 22:22:04 +05:00
const char *proto_name(uint8_t proto);
uint16_t family_from_proto(uint8_t l3proto);
2021-03-04 16:30:38 +05:00
void print_ip(const struct ip *ip);
void print_ip6hdr(const struct ip6_hdr *ip6hdr, uint8_t proto);
void print_tcphdr(const struct tcphdr *tcphdr);
2022-01-01 22:22:04 +05:00
void print_udphdr(const struct udphdr *udphdr);
2021-03-04 16:30:38 +05:00
2021-11-12 14:36:25 +05:00
bool proto_check_ipv4(const uint8_t *data, size_t len);
2021-03-04 16:30:38 +05:00
void proto_skip_ipv4(uint8_t **data, size_t *len);
2021-11-12 14:36:25 +05:00
bool proto_check_ipv6(const uint8_t *data, size_t len);
void proto_skip_ipv6(uint8_t **data, size_t *len, uint8_t *proto_type, uint8_t **last_header_type);
2022-01-01 22:22:04 +05:00
bool proto_check_tcp(const uint8_t *data, size_t len);
void proto_skip_tcp(uint8_t **data, size_t *len);
bool proto_check_udp(const uint8_t *data, size_t len);
void proto_skip_udp(uint8_t **data, size_t *len);
2024-04-20 22:59:45 +05:00
void proto_dissect_l3l4(
uint8_t *data, size_t len,
struct ip **ip, struct ip6_hdr **ip6,
uint8_t *proto,
struct tcphdr **tcp,
struct udphdr **udp,
size_t *transport_len,
uint8_t **data_payload, size_t *len_payload);
2021-03-12 16:33:48 +05:00
2021-03-04 16:30:38 +05:00
bool tcp_synack_segment(const struct tcphdr *tcphdr);
2021-03-12 16:33:48 +05:00
bool tcp_syn_segment(const struct tcphdr *tcphdr);
bool tcp_ack_segment(const struct tcphdr *tcphdr);
2021-03-19 17:39:32 +05:00
// scale_factor=SCALE_NONE - do not change
2021-03-12 16:33:48 +05:00
void tcp_rewrite_wscale(struct tcphdr *tcp, uint8_t scale_factor);
void tcp_rewrite_winsize(struct tcphdr *tcp, uint16_t winsize, uint8_t scale_factor);
2024-03-02 19:53:37 +05:00
typedef struct
{
uint8_t delta, min, max;
} autottl;
#define AUTOTTL_DEFAULT_DELTA 1
#define AUTOTTL_DEFAULT_MIN 3
#define AUTOTTL_DEFAULT_MAX 20
#define AUTOTTL_ENABLED(a) (!!(a).delta)
#define AUTOTTL_SET_DEFAULT(a) {(a).delta=AUTOTTL_DEFAULT_DELTA; (a).min=AUTOTTL_DEFAULT_MIN; (a).max=AUTOTTL_DEFAULT_MAX;}
uint8_t autottl_guess(uint8_t ttl, const autottl *attl);
2024-04-30 17:35:20 +05:00
void do_nat(bool bOutbound, struct ip *ip, struct ip6_hdr *ip6, struct tcphdr *tcphdr, struct udphdr *udphdr, const struct sockaddr_in *target4, const struct sockaddr_in6 *target6);
2024-04-20 22:59:45 +05:00
void verdict_tcp_csum_fix(uint8_t verdict, struct tcphdr *tcphdr, size_t transport_len, struct ip *ip, struct ip6_hdr *ip6hdr);
void verdict_udp_csum_fix(uint8_t verdict, struct udphdr *udphdr, size_t transport_len, struct ip *ip, struct ip6_hdr *ip6hdr);