inject TCP RST test pass
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
#include <time.h>
|
||||
#include <errno.h>
|
||||
#include "tcp_utils.h"
|
||||
#include "udp_utils.h"
|
||||
#include "ipv4_utils.h"
|
||||
@@ -8,31 +9,152 @@
|
||||
#include "session_priv.h"
|
||||
#include "stellar_priv.h"
|
||||
|
||||
// OK
|
||||
#define CHECKSUM_CARRY(x) (x = (x >> 16) + (x & 0xffff), (~(x + (x >> 16)) & 0xffff))
|
||||
static inline int checksum(uint16_t *data, int len)
|
||||
#define INJECT_PACKET_LOG_ERROR(format, ...) LOG_ERROR("inject packet", format, ##__VA_ARGS__)
|
||||
#define INJECT_PACKE_LOG_DEBUG(format, ...) LOG_DEBUG("inject packet", format, ##__VA_ARGS__)
|
||||
|
||||
static uint16_t checksum(const char *data, uint16_t len)
|
||||
{
|
||||
int sum = 0;
|
||||
int nleft = len;
|
||||
uint16_t ans = 0;
|
||||
uint16_t *w = data;
|
||||
uint32_t sum = 0;
|
||||
const uint16_t *ip1 = (const uint16_t *)data;
|
||||
|
||||
while (nleft > 1)
|
||||
while (len > 1)
|
||||
{
|
||||
sum += *w++;
|
||||
nleft -= 2;
|
||||
sum += *ip1++;
|
||||
if (sum & 0x80000000)
|
||||
{
|
||||
sum = (sum & 0xFFFF) + (sum >> 16);
|
||||
}
|
||||
len -= 2;
|
||||
}
|
||||
|
||||
if (nleft == 1)
|
||||
while (sum >> 16)
|
||||
{
|
||||
*(char *)(&ans) = *(char *)w;
|
||||
sum += ans;
|
||||
sum = (sum & 0xFFFF) + (sum >> 16);
|
||||
}
|
||||
|
||||
return sum;
|
||||
return (~sum);
|
||||
}
|
||||
|
||||
static uint16_t checksum_v4(const void *l4_hdr, uint16_t l4_total_len, uint8_t l4_proto, struct in_addr *src_addr, struct in_addr *dst_addr)
|
||||
{
|
||||
uint16_t *ip_src = (uint16_t *)src_addr;
|
||||
uint16_t *ip_dst = (uint16_t *)dst_addr;
|
||||
const uint16_t *buffer = (u_int16_t *)l4_hdr;
|
||||
|
||||
uint32_t sum = 0;
|
||||
size_t len = l4_total_len;
|
||||
|
||||
while (len > 1)
|
||||
{
|
||||
sum += *buffer++;
|
||||
if (sum & 0x80000000)
|
||||
{
|
||||
sum = (sum & 0xFFFF) + (sum >> 16);
|
||||
}
|
||||
len -= 2;
|
||||
}
|
||||
|
||||
if (len & 1)
|
||||
{
|
||||
sum += *((uint8_t *)buffer);
|
||||
}
|
||||
|
||||
sum += *(ip_src++);
|
||||
sum += *ip_src;
|
||||
sum += *(ip_dst++);
|
||||
sum += *ip_dst;
|
||||
sum += htons(l4_proto);
|
||||
sum += htons(l4_total_len);
|
||||
|
||||
while (sum >> 16)
|
||||
{
|
||||
sum = (sum & 0xFFFF) + (sum >> 16);
|
||||
}
|
||||
|
||||
return ((uint16_t)(~sum));
|
||||
}
|
||||
|
||||
static uint16_t checksum_v6(const void *l4_hdr, uint16_t l4_total_len, uint8_t l4_proto, struct in6_addr *src_addr, struct in6_addr *dst_addr)
|
||||
{
|
||||
uint16_t *ip_src = (uint16_t *)src_addr;
|
||||
uint16_t *ip_dst = (uint16_t *)dst_addr;
|
||||
const uint16_t *buffer = (u_int16_t *)l4_hdr;
|
||||
|
||||
uint32_t sum = 0;
|
||||
size_t len = l4_total_len;
|
||||
|
||||
while (len > 1)
|
||||
{
|
||||
sum += *buffer++;
|
||||
if (sum & 0x80000000)
|
||||
{
|
||||
sum = (sum & 0xFFFF) + (sum >> 16);
|
||||
}
|
||||
len -= 2;
|
||||
}
|
||||
|
||||
if (len & 1)
|
||||
{
|
||||
sum += *((uint8_t *)buffer);
|
||||
}
|
||||
|
||||
for (int i = 0; i < 8; i++)
|
||||
{
|
||||
sum += *ip_src;
|
||||
ip_src++;
|
||||
}
|
||||
|
||||
for (int i = 0; i < 8; i++)
|
||||
{
|
||||
sum += *ip_dst;
|
||||
ip_dst++;
|
||||
}
|
||||
sum += htons(l4_proto);
|
||||
sum += htons(l4_total_len);
|
||||
|
||||
while (sum >> 16)
|
||||
{
|
||||
sum = (sum & 0xFFFF) + (sum >> 16);
|
||||
}
|
||||
|
||||
return ((uint16_t)(~sum));
|
||||
}
|
||||
|
||||
static void update_tcp_hdr(struct tcphdr *tcphdr, uint32_t seq, uint32_t ack, uint16_t win, uint8_t flags)
|
||||
{
|
||||
tcp_hdr_set_seq(tcphdr, seq);
|
||||
tcp_hdr_set_ack(tcphdr, ack);
|
||||
tcp_hdr_set_hdr_len(tcphdr, sizeof(struct tcphdr));
|
||||
tcp_hdr_set_flags(tcphdr, flags);
|
||||
tcp_hdr_set_window(tcphdr, win);
|
||||
tcp_hdr_set_urg_ptr(tcphdr, 0);
|
||||
tcp_hdr_set_checksum(tcphdr, 0);
|
||||
}
|
||||
|
||||
static void update_udp_hdr(struct udphdr *udphdr, int trim)
|
||||
{
|
||||
uint16_t total = udp_hdr_get_total_len(udphdr);
|
||||
udp_hdr_set_total_len(udphdr, total - trim);
|
||||
udp_hdr_set_checksum(udphdr, 0);
|
||||
}
|
||||
|
||||
static void update_ip4_hdr(struct ip *iphdr, uint16_t ipid, uint8_t ttl, int trim)
|
||||
{
|
||||
int hdr_len = ipv4_hdr_get_hdr_len(iphdr);
|
||||
uint16_t total = ipv4_hdr_get_total_len(iphdr);
|
||||
ipv4_hdr_set_total_len(iphdr, total - trim);
|
||||
ipv4_hdr_set_ipid(iphdr, ipid);
|
||||
ipv4_hdr_set_ttl(iphdr, ttl);
|
||||
iphdr->ip_sum = 0;
|
||||
iphdr->ip_sum = checksum((char *)iphdr, hdr_len);
|
||||
}
|
||||
|
||||
static void update_ip6_hdr(struct ip6_hdr *ip6hdr, int trim)
|
||||
{
|
||||
uint16_t len = ipv6_hdr_get_payload_len(ip6hdr);
|
||||
ipv6_hdr_set_payload_len(ip6hdr, len - trim);
|
||||
}
|
||||
|
||||
// OK
|
||||
static inline void calc_tcp_seq_and_ack(const struct session *sess, enum session_direction inj_dir, uint32_t *seq, uint32_t *ack)
|
||||
{
|
||||
/*
|
||||
@@ -49,14 +171,12 @@ static inline void calc_tcp_seq_and_ack(const struct session *sess, enum session
|
||||
* ack = current_packet_ack
|
||||
*
|
||||
* inject direction != current direction (inject S2C RST)
|
||||
* seq = s2c_direction_last_seq + s2c_direction_last_len
|
||||
* ack = current_packet_seq
|
||||
* seq = current_packet_ack
|
||||
* ack = current_packet_seq + current_packet_payload_len
|
||||
*/
|
||||
|
||||
enum session_direction curr_dir = session_get_current_direction(sess);
|
||||
enum session_direction peer_dir = (curr_dir == SESSION_DIRECTION_C2S) ? SESSION_DIRECTION_S2C : SESSION_DIRECTION_C2S;
|
||||
const struct tcp_half *tcp_curr_half = &sess->tcp_halfs[curr_dir];
|
||||
const struct tcp_half *tcp_peer_half = &sess->tcp_halfs[peer_dir];
|
||||
if (inj_dir == curr_dir)
|
||||
{
|
||||
*seq = tcp_curr_half->seq;
|
||||
@@ -64,15 +184,15 @@ static inline void calc_tcp_seq_and_ack(const struct session *sess, enum session
|
||||
}
|
||||
else
|
||||
{
|
||||
*seq = tcp_peer_half->seq + tcp_peer_half->len;
|
||||
*ack = tcp_curr_half->seq;
|
||||
*seq = tcp_curr_half->ack;
|
||||
*ack = tcp_curr_half->seq + tcp_curr_half->len;
|
||||
}
|
||||
}
|
||||
|
||||
// OK
|
||||
#define RANGE(rand, start, end) (start + rand % (end - start + 1)) // [start, end]
|
||||
static inline void calc_ipid_ttl_win(uint16_t *ipid, uint8_t *ttl, uint16_t *win)
|
||||
{
|
||||
#define RANGE(rand, start, end) (start + rand % (end - start + 1)) // [start, end]
|
||||
|
||||
struct timespec curtime;
|
||||
clock_gettime(CLOCK_THREAD_CPUTIME_ID, &curtime);
|
||||
uint64_t random = (0x013579ABCDEF ^ (uint64_t)curtime.tv_nsec);
|
||||
@@ -81,57 +201,106 @@ static inline void calc_ipid_ttl_win(uint16_t *ipid, uint8_t *ttl, uint16_t *win
|
||||
*win = (uint16_t)(RANGE(random, 1000, 1460));
|
||||
}
|
||||
|
||||
// OK
|
||||
static inline void update_ip6_hdr(struct ip6_hdr *ip6hdr, int trim)
|
||||
{
|
||||
uint16_t len = ipv6_hdr_get_payload_len(ip6hdr);
|
||||
ipv6_hdr_set_payload_len(ip6hdr, len - trim);
|
||||
}
|
||||
|
||||
// OK
|
||||
static inline void update_ip4_hdr(struct ip *iphdr, uint16_t ipid, uint8_t ttl, int trim)
|
||||
{
|
||||
int hdr_len = ipv4_hdr_get_hdr_len(iphdr);
|
||||
uint16_t total = ipv4_hdr_get_total_len(iphdr);
|
||||
ipv4_hdr_set_total_len(iphdr, total - trim);
|
||||
ipv4_hdr_set_ipid(iphdr, ipid);
|
||||
ipv4_hdr_set_ttl(iphdr, ttl);
|
||||
ipv4_hdr_set_checksum(iphdr, 0);
|
||||
uint16_t sum = checksum((uint16_t *)iphdr, hdr_len);
|
||||
sum = CHECKSUM_CARRY(sum);
|
||||
ipv4_hdr_set_checksum(iphdr, ntohs(sum));
|
||||
}
|
||||
|
||||
// OK
|
||||
static inline void update_tcp_hdr(struct tcphdr *tcphdr, uint32_t seq, uint32_t ack, uint16_t win, uint8_t flags)
|
||||
{
|
||||
tcp_hdr_set_seq(tcphdr, seq);
|
||||
tcp_hdr_set_ack(tcphdr, ack);
|
||||
tcp_hdr_set_hdr_len(tcphdr, sizeof(struct tcphdr));
|
||||
tcp_hdr_set_flags(tcphdr, flags);
|
||||
tcp_hdr_set_window(tcphdr, win);
|
||||
tcp_hdr_set_checksum(tcphdr, 0);
|
||||
tcp_hdr_set_urg_ptr(tcphdr, 0);
|
||||
uint16_t sum = checksum((uint16_t *)tcphdr, sizeof(struct tcphdr));
|
||||
sum = CHECKSUM_CARRY(sum);
|
||||
tcp_hdr_set_checksum(tcphdr, ntohs(sum));
|
||||
}
|
||||
|
||||
// OK
|
||||
static inline void update_udp_hdr(struct udphdr *udphdr, uint16_t trim)
|
||||
{
|
||||
uint16_t total = udp_hdr_get_total_len(udphdr);
|
||||
udp_hdr_set_total_len(udphdr, total - trim);
|
||||
udp_hdr_set_checksum(udphdr, 0);
|
||||
uint16_t sum = checksum((uint16_t *)udphdr, total - trim);
|
||||
sum = CHECKSUM_CARRY(sum);
|
||||
udp_hdr_set_checksum(udphdr, ntohs(sum));
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Public API
|
||||
******************************************************************************/
|
||||
|
||||
struct fingerprint
|
||||
{
|
||||
uint16_t ipid;
|
||||
uint8_t ttl;
|
||||
uint16_t win;
|
||||
};
|
||||
|
||||
// return packet length
|
||||
int build_tcp_packet(const struct packet *first, const struct fingerprint *finger,
|
||||
uint32_t tcp_seq, uint32_t tcp_ack, uint8_t tcp_flags, char *tcp_pld, int pld_len, char *pkt_buff, int buff_size)
|
||||
{
|
||||
int trim = 0;
|
||||
struct tcphdr *tcphdr;
|
||||
struct udphdr *udphdr;
|
||||
struct ip *iphdr;
|
||||
struct ip6_hdr *ip6hdr;
|
||||
struct packet_layer *curr;
|
||||
struct packet_layer *last;
|
||||
int len = packet_get_len(first);
|
||||
int8_t layers = packet_get_layers(first);
|
||||
|
||||
if ((tcp_pld == NULL && pld_len > 0) || (tcp_pld != NULL && pld_len <= 0))
|
||||
{
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (len > buff_size)
|
||||
{
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
memcpy(pkt_buff, packet_get_data(first), len);
|
||||
for (int8_t i = layers - 1; i >= 0; i--)
|
||||
{
|
||||
curr = (struct packet_layer *)packet_get_layer(first, i);
|
||||
switch (curr->type)
|
||||
{
|
||||
case LAYER_TYPE_TCP:
|
||||
trim = curr->hdr_len + curr->pld_len - sizeof(struct tcphdr) + pld_len;
|
||||
if (len + trim > buff_size)
|
||||
{
|
||||
return -ENOMEM;
|
||||
}
|
||||
tcphdr = (struct tcphdr *)(pkt_buff + curr->hdr_offset);
|
||||
update_tcp_hdr(tcphdr, tcp_seq, tcp_ack, finger->win, TH_RST | TH_ACK);
|
||||
if (pld_len)
|
||||
{
|
||||
memcpy(pkt_buff + curr->hdr_offset + sizeof(struct tcphdr), tcp_pld, pld_len);
|
||||
}
|
||||
break;
|
||||
case LAYER_TYPE_UDP:
|
||||
udphdr = (struct udphdr *)(pkt_buff + curr->hdr_offset);
|
||||
update_udp_hdr(udphdr, trim);
|
||||
break;
|
||||
case LAYER_TYPE_IPV4:
|
||||
iphdr = (struct ip *)(pkt_buff + curr->hdr_offset);
|
||||
last = (struct packet_layer *)packet_get_layer(first, i + 1);
|
||||
if (last->type == LAYER_TYPE_TCP)
|
||||
{
|
||||
tcphdr = (struct tcphdr *)(pkt_buff + last->hdr_offset);
|
||||
tcphdr->th_sum = checksum_v4(tcphdr, len - trim - last->hdr_offset, IPPROTO_TCP, &iphdr->ip_src, &iphdr->ip_dst);
|
||||
}
|
||||
if (last->type == LAYER_TYPE_UDP)
|
||||
{
|
||||
udphdr = (struct udphdr *)(pkt_buff + last->hdr_offset);
|
||||
udphdr->uh_sum = checksum_v4(udphdr, len - trim - last->hdr_offset + pld_len, IPPROTO_UDP, &iphdr->ip_src, &iphdr->ip_dst);
|
||||
}
|
||||
update_ip4_hdr(iphdr, finger->ipid, finger->ttl, trim);
|
||||
break;
|
||||
case LAYER_TYPE_IPV6:
|
||||
ip6hdr = (struct ip6_hdr *)(pkt_buff + curr->hdr_offset);
|
||||
last = (struct packet_layer *)packet_get_layer(first, i + 1);
|
||||
if (last->type == LAYER_TYPE_TCP)
|
||||
{
|
||||
tcphdr = (struct tcphdr *)(pkt_buff + last->hdr_offset);
|
||||
tcphdr->th_sum = checksum_v6(tcphdr, len - trim - last->hdr_offset, IPPROTO_TCP, &ip6hdr->ip6_src, &ip6hdr->ip6_dst);
|
||||
}
|
||||
if (last->type == LAYER_TYPE_UDP)
|
||||
{
|
||||
udphdr = (struct udphdr *)(pkt_buff + last->hdr_offset);
|
||||
udphdr->uh_sum = checksum_v6(udphdr, len - trim - last->hdr_offset + pld_len, IPPROTO_UDP, &ip6hdr->ip6_src, &ip6hdr->ip6_dst);
|
||||
}
|
||||
update_ip6_hdr(ip6hdr, trim);
|
||||
break;
|
||||
case LAYER_TYPE_GRE:
|
||||
return -EPROTONOSUPPORT;
|
||||
// TODO
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return len - trim;
|
||||
}
|
||||
|
||||
// return 0: success, -1: failed
|
||||
|
||||
int stellar_inject_icmp_unreach(const struct session *sess, enum session_direction inj_dir, uint16_t thr_idx)
|
||||
@@ -140,12 +309,12 @@ int stellar_inject_icmp_unreach(const struct session *sess, enum session_directi
|
||||
return -1;
|
||||
}
|
||||
|
||||
// OK
|
||||
int stellar_inject_tcp_rst(const struct session *sess, enum session_direction inj_dir, uint16_t thr_idx)
|
||||
{
|
||||
if (session_get_type(sess) != SESSION_TYPE_TCP)
|
||||
{
|
||||
session_inc_stat((struct session *)sess, inj_dir, STAT_INJ_PKTS_FAIL, 1);
|
||||
INJECT_PACKET_LOG_ERROR("session %ld is not a TCP session, cannot inject TCP RST", session_get_id(sess));
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -153,62 +322,44 @@ int stellar_inject_tcp_rst(const struct session *sess, enum session_direction in
|
||||
if (pkt == NULL)
|
||||
{
|
||||
session_inc_stat((struct session *)sess, inj_dir, STAT_INJ_PKTS_FAIL, 1);
|
||||
INJECT_PACKET_LOG_ERROR("session %ld has no %s first packet, cannot inject TCP RST", session_get_id(sess), session_direction_to_str(inj_dir));
|
||||
return -1;
|
||||
}
|
||||
|
||||
uint8_t ttl = 0;
|
||||
uint16_t win = 0;
|
||||
uint16_t ipid = 0;
|
||||
uint32_t seq = 0;
|
||||
uint32_t ack = 0;
|
||||
|
||||
int trim = 0;
|
||||
struct fingerprint finger = {0};
|
||||
uint32_t tcp_seq = 0;
|
||||
uint32_t tcp_ack = 0;
|
||||
uint8_t tcp_flags = TH_RST | TH_ACK;
|
||||
char buff[4096] = {0};
|
||||
struct ip *iphdr;
|
||||
struct ip6_hdr *ip6hdr;
|
||||
struct tcphdr *tcphdr;
|
||||
struct packet_layer *layer;
|
||||
calc_tcp_seq_and_ack(sess, inj_dir, &tcp_seq, &tcp_ack);
|
||||
calc_ipid_ttl_win(&finger.ipid, &finger.ttl, &finger.win);
|
||||
|
||||
int len = packet_get_len(pkt);
|
||||
int8_t layers = packet_get_layers(pkt);
|
||||
memcpy(buff, packet_get_data(pkt), len);
|
||||
|
||||
calc_tcp_seq_and_ack(sess, inj_dir, &seq, &ack);
|
||||
calc_ipid_ttl_win(&ipid, &ttl, &win);
|
||||
|
||||
for (int8_t i = layers - 1; i >= 0; i--)
|
||||
int len = build_tcp_packet(pkt, &finger, tcp_seq, tcp_ack, tcp_flags, NULL, 0, buff, sizeof(buff));
|
||||
if (len <= 0)
|
||||
{
|
||||
layer = (struct packet_layer *)packet_get_layer(pkt, i);
|
||||
switch (layer->type)
|
||||
{
|
||||
case LAYER_TYPE_TCP:
|
||||
trim = layer->hdr_len + layer->pld_len - sizeof(struct tcphdr);
|
||||
tcphdr = (struct tcphdr *)(buff + layer->hdr_offset);
|
||||
update_tcp_hdr(tcphdr, seq, ack, win, TH_RST | TH_ACK);
|
||||
break;
|
||||
case LAYER_TYPE_IPV4:
|
||||
iphdr = (struct ip *)(buff + layer->hdr_offset);
|
||||
update_ip4_hdr(iphdr, ipid, ttl, trim);
|
||||
break;
|
||||
case LAYER_TYPE_IPV6:
|
||||
ip6hdr = (struct ip6_hdr *)(buff + layer->hdr_offset);
|
||||
update_ip6_hdr(ip6hdr, trim);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
INJECT_PACKET_LOG_ERROR("session %ld build TCP %s RST packet failed, %s", session_get_id(sess), session_direction_to_str(inj_dir), strerror(len));
|
||||
session_inc_stat((struct session *)sess, inj_dir, STAT_INJ_PKTS_FAIL, 1);
|
||||
return -1;
|
||||
}
|
||||
|
||||
struct inject_packet_meta meta = {0};
|
||||
meta.session_id = session_get_id(sess);
|
||||
session_get_route_ctx(sess, inj_dir, &meta.route);
|
||||
session_get_sid_list(sess, inj_dir, &meta.sids);
|
||||
|
||||
struct packet inj_pkt;
|
||||
packet_parse(&inj_pkt, buff, len - trim);
|
||||
packet_parse(&inj_pkt, buff, len);
|
||||
packet_set_origin(&inj_pkt, PACKET_ORIGIN_USERSTACK);
|
||||
packet_set_origin_ctx(&inj_pkt, &meta);
|
||||
if (packet_io_inject(runtime->packet_io, thr_idx, &inj_pkt, 1) == 1)
|
||||
{
|
||||
session_inc_stat((struct session *)sess, inj_dir, STAT_INJ_PKTS_SUSS, 1);
|
||||
session_inc_stat((struct session *)sess, inj_dir, STAT_INJ_BYTES_SUSS, len - trim);
|
||||
session_inc_stat((struct session *)sess, inj_dir, STAT_INJ_BYTES_SUSS, len);
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
INJECT_PACKET_LOG_ERROR("session %ld inject TCP %s RST packet failed, packet I/O nospace", session_get_id(sess), session_direction_to_str(inj_dir));
|
||||
session_inc_stat((struct session *)sess, inj_dir, STAT_INJ_PKTS_FAIL, 1);
|
||||
return -1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user