forked from chenshuo/recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
453 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,203 @@ | ||
#include "faketcp.h" | ||
|
||
#include <map> | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <unistd.h> | ||
#include <netinet/ip.h> | ||
#include <netinet/tcp.h> | ||
#include <linux/if_ether.h> | ||
|
||
struct TcpState | ||
{ | ||
uint32_t rcv_nxt; | ||
// uint32_t snd_una; | ||
}; | ||
|
||
std::map<SocketAddr, TcpState> expectedSeqs; | ||
|
||
void tcp_input(int fd, const void* input, const void* payload, int tot_len) | ||
{ | ||
const struct iphdr* iphdr = static_cast<const struct iphdr*>(input); | ||
const struct tcphdr* tcphdr = static_cast<const struct tcphdr*>(payload); | ||
const int iphdr_len = iphdr->ihl*4; | ||
const int tcp_seg_len = tot_len - iphdr_len; | ||
const int tcphdr_size = sizeof(*tcphdr); | ||
if (tcp_seg_len >= tcphdr_size | ||
&& tcp_seg_len >= tcphdr->doff*4) | ||
{ | ||
const int tcphdr_len = tcphdr->doff*4; | ||
const int payload_len = tot_len - iphdr_len - tcphdr_len; | ||
|
||
char source[INET_ADDRSTRLEN]; | ||
char dest[INET_ADDRSTRLEN]; | ||
inet_ntop(AF_INET, &iphdr->saddr, source, INET_ADDRSTRLEN); | ||
inet_ntop(AF_INET, &iphdr->daddr, dest, INET_ADDRSTRLEN); | ||
printf("IP %s.%d > %s.%d: ", | ||
source, ntohs(tcphdr->source), dest, ntohs(tcphdr->dest)); | ||
printf("Flags [%c], seq %u, win %d, length %d\n", | ||
tcphdr->syn ? 'S' : (tcphdr->fin ? 'F' : '.'), | ||
ntohl(tcphdr->seq), | ||
ntohs(tcphdr->window), | ||
payload_len); | ||
|
||
union | ||
{ | ||
unsigned char output[ETH_FRAME_LEN]; | ||
struct | ||
{ | ||
struct iphdr iphdr; | ||
struct tcphdr tcphdr; | ||
} out; | ||
}; | ||
|
||
assert(sizeof(out) == sizeof(struct iphdr) + sizeof(struct tcphdr)); | ||
int output_len = sizeof(out); | ||
bzero(&out, output_len + 4); | ||
memcpy(output, input, sizeof(struct iphdr)); | ||
|
||
out.iphdr.tot_len = htons(output_len); | ||
std::swap(out.iphdr.saddr, out.iphdr.daddr); | ||
out.iphdr.check = 0; | ||
out.iphdr.check = in_checksum(output, sizeof(struct iphdr)); | ||
|
||
out.tcphdr.source = tcphdr->dest; | ||
out.tcphdr.dest = tcphdr->source; | ||
out.tcphdr.doff = sizeof(struct tcphdr) / 4; | ||
out.tcphdr.window = htons(5000); | ||
|
||
SocketAddr addr = { out.iphdr.saddr, out.iphdr.daddr, out.tcphdr.source, out.tcphdr.dest }; | ||
bool response = false; | ||
const uint32_t seq = ntohl(tcphdr->seq); | ||
if (tcphdr->syn) | ||
{ | ||
out.tcphdr.seq = htonl(123456); | ||
out.tcphdr.ack_seq = htonl(seq+1); | ||
out.tcphdr.syn = 1; | ||
out.tcphdr.ack = 1; | ||
TcpState s = { seq + 1 }; | ||
expectedSeqs[addr] = s; | ||
response = true; | ||
} | ||
else if (tcphdr->fin) | ||
{ | ||
out.tcphdr.seq = htonl(123457); | ||
out.tcphdr.ack_seq = htonl(seq+1); | ||
out.tcphdr.fin = 1; | ||
out.tcphdr.ack = 1; | ||
expectedSeqs.erase(addr); | ||
response = true; | ||
} | ||
else if (payload_len > 0) | ||
{ | ||
out.tcphdr.seq = htonl(123457); | ||
out.tcphdr.ack_seq = htonl(seq+payload_len); | ||
out.tcphdr.ack = 1; | ||
auto it = expectedSeqs.find(addr); | ||
if (it != expectedSeqs.end()) | ||
{ | ||
if (it->second.rcv_nxt >= seq) | ||
{ | ||
if (it->second.rcv_nxt == seq) | ||
{ | ||
printf("received, seq = %u:%u, len = %u\n", seq, seq+payload_len, payload_len); | ||
} | ||
else | ||
{ | ||
printf("retransmit, rcv_nxt = %u, seq = %u\n", it->second.rcv_nxt, seq); | ||
} | ||
|
||
const uint32_t ack = ntohl(out.tcphdr.ack_seq); | ||
it->second.rcv_nxt = ack; | ||
response = true; | ||
} | ||
else | ||
{ | ||
printf("packet loss, rcv_nxt = %u, seq = %u\n", it->second.rcv_nxt, seq); | ||
} | ||
} | ||
else | ||
{ | ||
// RST | ||
} | ||
} | ||
|
||
unsigned char* pseudo = output + output_len; | ||
pseudo[0] = 0; | ||
pseudo[1] = IPPROTO_TCP; | ||
pseudo[2] = 0; | ||
pseudo[3] = sizeof(struct tcphdr); | ||
out.tcphdr.check = in_checksum(&out.iphdr.saddr, sizeof(struct tcphdr)+12); | ||
if (response) | ||
{ | ||
write(fd, output, output_len); | ||
} | ||
} | ||
} | ||
|
||
int main() | ||
{ | ||
char ifname[IFNAMSIZ] = "tun%d"; | ||
int fd = tun_alloc(ifname); | ||
|
||
if (fd < 0) | ||
{ | ||
fprintf(stderr, "tunnel interface allocation failed\n"); | ||
exit(1); | ||
} | ||
|
||
printf("allocted tunnel interface %s\n", ifname); | ||
sleep(1); | ||
|
||
for (;;) | ||
{ | ||
union | ||
{ | ||
unsigned char buf[ETH_FRAME_LEN]; | ||
struct iphdr iphdr; | ||
}; | ||
|
||
const int iphdr_size = sizeof iphdr; | ||
|
||
int nread = read(fd, buf, sizeof(buf)); | ||
if (nread < 0) | ||
{ | ||
perror("read"); | ||
close(fd); | ||
exit(1); | ||
} | ||
printf("read %d bytes from tunnel interface %s.\n", nread, ifname); | ||
|
||
const int iphdr_len = iphdr.ihl*4; | ||
if (nread >= iphdr_size | ||
&& iphdr.version == 4 | ||
&& iphdr_len >= iphdr_size | ||
&& iphdr_len <= nread | ||
&& iphdr.tot_len == htons(nread) | ||
&& in_checksum(buf, iphdr_len) == 0) | ||
{ | ||
const void* payload = buf + iphdr_len; | ||
if (iphdr.protocol == IPPROTO_ICMP) | ||
{ | ||
icmp_input(fd, buf, payload, nread); | ||
} | ||
else if (iphdr.protocol == IPPROTO_TCP) | ||
{ | ||
tcp_input(fd, buf, payload, nread); | ||
} | ||
} | ||
else | ||
{ | ||
printf("bad packet\n"); | ||
for (int i = 0; i < nread; ++i) | ||
{ | ||
if (i % 4 == 0) printf("\n"); | ||
printf("%02x ", buf[i]); | ||
} | ||
printf("\n"); | ||
} | ||
} | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.