mirror of
https://code.semirocket.science/wrapsix
synced 2024-11-10 08:10:59 +02:00
322eeabefb
Cleaned the code a little bit
140 lines
3.8 KiB
C
140 lines
3.8 KiB
C
#include "wrapper.h"
|
|
#include "translate_ip.h"
|
|
|
|
void process_packet6(u_char *args, const struct pcap_pkthdr *header, const u_char *packet)
|
|
{
|
|
const struct s_ethernet *ethernet; /* the ethernet header */
|
|
const struct s_ip6 *ip; /* the IP header */
|
|
const unsigned char *payload; /* packet payload */
|
|
|
|
struct in6_addr ip6addr_wrapsix;
|
|
struct in6_addr ip6addr_ndp_multicast;
|
|
|
|
/* define ethernet header */
|
|
ethernet = (struct s_ethernet*) (packet);
|
|
|
|
/* define/compute IP header offset */
|
|
ip = (struct s_ip6*) (packet + SIZE_ETHERNET);
|
|
|
|
/* define/compute IP payload offset */
|
|
payload = packet + SIZE_ETHERNET + SIZE_IP6;
|
|
|
|
/* check if this packet is ours - partially hardcoded for now */
|
|
inet_pton(AF_INET6, "fc00:1::", &ip6addr_wrapsix);
|
|
inet_pton(AF_INET6, "ff02::1:ff00:0", &ip6addr_ndp_multicast);
|
|
/* check for our prefix || NDP */
|
|
if (memcmp(&ip6addr_wrapsix, &ip->ip_dest, 12) != 0
|
|
&& memcmp(&ip6addr_ndp_multicast, &ip->ip_dest, 13) != 0) {
|
|
printf("==> This packet is not ours! And it's not NDP! <==\n");
|
|
return;
|
|
}
|
|
|
|
/* DEBUG: print source and destination IP addresses */
|
|
char ip6addr[INET6_ADDRSTRLEN];
|
|
inet_ntop(AF_INET6, &ip->ip_src, ip6addr, sizeof(ip6addr));
|
|
printf("\n From: %s\n", ip6addr);
|
|
inet_ntop(AF_INET6, &ip->ip_dest, ip6addr, sizeof(ip6addr));
|
|
printf(" To: %s\n", ip6addr);
|
|
|
|
/* determine protocol */
|
|
switch (ip->next_header) {
|
|
case IPPROTO_TCP:
|
|
printf(" Protocol: TCP\n");
|
|
//process_tcp();
|
|
break;
|
|
case IPPROTO_UDP:
|
|
printf(" Protocol: UDP\n");
|
|
break;
|
|
case IPPROTO_ICMPV6:
|
|
printf(" Protocol: ICMPv6\n");
|
|
process_icmp6((struct s_ip6 *) ip, payload);
|
|
break;
|
|
default:
|
|
printf(" Protocol: unknown\n");
|
|
break;
|
|
}
|
|
return;
|
|
}
|
|
|
|
void process_icmp6(const struct s_ip6 *ip, const unsigned char *payload)
|
|
{
|
|
struct s_icmp *icmp;
|
|
struct in_addr ip4_addr;
|
|
|
|
const unsigned char *icmp_data;
|
|
unsigned char *icmp_packet;
|
|
|
|
int packet_size;
|
|
|
|
/* define ICMP header */
|
|
icmp = (struct s_icmp *) (payload);
|
|
/* define/compute ICMP data offset */
|
|
icmp_data = (unsigned char *) (payload + sizeof(struct s_icmp));
|
|
/* the checksum has to be zeros before we have data for its computation */
|
|
icmp->checksum = 0;
|
|
|
|
/* create one big ICMP packet */
|
|
packet_size = htons(ip->len);
|
|
icmp_packet = (unsigned char *) malloc(packet_size);
|
|
|
|
if (icmp_packet == NULL) {
|
|
fprintf(stderr, "Fatal error! Lack of free memory!\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
/* decide what type of ICMP we have */
|
|
switch (icmp->type) {
|
|
/* NDP */
|
|
case ICMP6_NDP_NS:
|
|
printf(" ICMP: [NDP] Neighbor Solicitation\n");
|
|
return;
|
|
break;
|
|
/* ping */
|
|
case ICMP6_ECHO_REQUEST:
|
|
printf(" ICMP: Echo Request\n");
|
|
|
|
/* DEBUG */
|
|
struct s_icmp_ping *icmp_ping = (struct s_icmp_ping *) icmp_data;
|
|
printf("[id;seq]:[0x%x;0x%x]\n", htons(icmp_ping->id), htons(icmp_ping->seq));
|
|
|
|
/* fill into the header known statements */
|
|
icmp->type = ICMP4_ECHO_REQUEST;
|
|
icmp->code = 0;
|
|
|
|
break;
|
|
case ICMP6_ECHO_REPLY:
|
|
printf(" ICMP: Echo Reply\n");
|
|
return;
|
|
break;
|
|
/* nothing interesting */
|
|
default:
|
|
printf(" ICMP: unknown: %d/0x%x\n", icmp->type, icmp->type);
|
|
return;
|
|
break;
|
|
}
|
|
|
|
/* copy data into the packet */
|
|
memcpy(icmp_packet, icmp, sizeof(struct s_icmp));
|
|
memcpy(icmp_packet + sizeof(struct s_icmp), icmp_data,
|
|
packet_size - sizeof(struct s_icmp));
|
|
|
|
/* compute the checksum */
|
|
icmp->checksum = checksum(icmp_packet, packet_size);
|
|
|
|
/* copy this structure again - because of the checksum */
|
|
memcpy(icmp_packet, icmp, sizeof(struct s_icmp));
|
|
|
|
/* decide where to send this ICMP */
|
|
ip4_addr = ipaddr_6to4((struct in6_addr) ip->ip_dest);
|
|
printf(" Send to: %s\n", inet_ntoa(ip4_addr));
|
|
|
|
/* send */
|
|
send_there(ip4_addr, ip->hop_limit, IPPROTO_ICMP, icmp_packet, packet_size);
|
|
|
|
/* free allocated memory */
|
|
free(icmp_packet);
|
|
icmp_packet = NULL;
|
|
|
|
return;
|
|
}
|