1
0
mirror of https://code.semirocket.science/wrapsix synced 2024-09-19 23:11:04 +03:00

Recognising NDP packets and packets to be wrapped

Cleaned the code a little bit
This commit is contained in:
xHire 2008-12-31 21:08:53 +01:00
parent 4bc68edce5
commit 322eeabefb
5 changed files with 76 additions and 65 deletions

4
TODO
View File

@ -31,4 +31,6 @@
- create some home web page (may be a wiki?)
== PostFinal stage ==
- rewrite to C :c)
- optimise
- translation_ip.c -> don't translate IPv6 to IPv4 through a string
- rewrite DNS wrapping resolver into C

View File

@ -3,39 +3,39 @@
void process_packet6(u_char *args, const struct pcap_pkthdr *header, const u_char *packet)
{
static int count = 1; /* packet counter */
const struct s_ethernet *ethernet; /* the ethernet header */
const struct s_ip6 *ip; /* the IP header */
const unsigned char *payload; /* packet payload */
/* declare pointers to packet headers */
const struct s_ethernet *ethernet; /* The ethernet header [1] */
const struct s_ip6 *ip; /* The IP header */
const unsigned char *payload; /* Packet payload */
printf("\nPacket number %d:\n", count);
count++;
struct in6_addr ip6addr_wrapsix;
struct in6_addr ip6addr_ndp_multicast;
/* define ethernet header */
ethernet = (struct s_ethernet*) (packet);
/* define/compute ip header offset */
/* define/compute IP header offset */
ip = (struct s_ip6*) (packet + SIZE_ETHERNET);
/* define/compute IP payload offset */
payload = packet + SIZE_ETHERNET + SIZE_IP6;
/* print source and destination IP addresses */
char ip6addr[INET6_ADDRSTRLEN];
inet_ntop(AF_INET6, &ip->ip_src, ip6addr, sizeof(ip6addr));
printf(" From: %s\n", ip6addr);
/* keep the following line as the last one inet_ntop! */
inet_ntop(AF_INET6, &ip->ip_dest, ip6addr, sizeof(ip6addr));
printf(" To: %s\n", ip6addr);
/* check if this packet is ours - hardcoded for now */
char wsaddr[INET6_ADDRSTRLEN] = "fc00:1::4d4b:4c03";
if (strcmp(wsaddr, ip6addr) != 0) {
printf("==> This packet is not ours! <==\n");
/* 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:
@ -56,83 +56,82 @@ void process_packet6(u_char *args, const struct pcap_pkthdr *header, const u_cha
return;
}
void process_icmp6(struct s_ip6 *ip, const unsigned char *payload)
void process_icmp6(const struct s_ip6 *ip, const unsigned char *payload)
{
struct s_icmp *icmp;
struct in_addr ip4_addr;
unsigned char *icmp_data;
const unsigned char *icmp_data;
unsigned char *icmp_packet;
int packet_size;
/* extract the ICMP header */
/* define ICMP header */
icmp = (struct s_icmp *) (payload);
icmp_data = (unsigned char *) (payload + sizeof(icmp));
/* 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");
break;
case ICMP6_NDP_NA:
printf(" ICMP: [NDP] Neighbor Advertisement\n");
break;
case ICMP6_NDP_RS:
printf(" ICMP: [NDP] Router Solicitation\n");
break;
case ICMP6_NDP_RA:
printf(" ICMP: [NDP] Router Advertisement\n");
break;
case ICMP6_NDP_RM:
printf(" ICMP: [NDP] Redirect Message\n");
return;
break;
/* ping */
case ICMP6_ECHO_REQUEST:
printf(" ICMP: Echo Request\n");
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);
}
/* DEBUG */
struct s_icmp_ping *icmp_ping = (struct s_icmp_ping *) icmp_data;
icmp->type = ICMP4_ECHO_REQUEST;
icmp->code = 0;
icmp->checksum = 0;
printf("[id;seq]:[0x%x;0x%x]\n", htons(icmp_ping->id), htons(icmp_ping->seq));
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 :c)
icmp->checksum = checksum(icmp_packet, packet_size);
// copy this structure again - because of the checksum
memcpy(icmp_packet, icmp, sizeof(struct s_icmp));
/* 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;
}
/* where to send this ICMP */
/* 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;

View File

@ -1,14 +1,14 @@
#include "wrapper.h"
#include "translate_ip.h"
struct in_addr ipaddr_6to4(struct in6_addr ip6_addr)
struct in_addr ipaddr_6to4(const struct in6_addr ip6_addr)
{
struct ip6addr_ip4part *addr;
struct in_addr ip4_addr;
char ip4_str[15];
/* "parse" the IPv6 addres */
addr = (struct ip6addr_ip4part *)(&ip6_addr);
/* define the IPv6 address */
addr = (struct ip6addr_ip4part *) (&ip6_addr);
/* build IPv4 address */
sprintf(ip4_str, "%d.%d.%d.%d", addr->a, addr->b, addr->c, addr->d);

View File

@ -9,7 +9,7 @@ struct ip6addr_ip4part {
unsigned char d;
};
struct in_addr ipaddr_6to4(struct in6_addr ip6_addr);
struct in_addr ipaddr_6to4(const struct in6_addr ip6_addr);
//in6_addr ipaddr_4to6(in_addr ip_addr);
#endif

View File

@ -69,6 +69,16 @@ struct s_icmp_ping {
unsigned short seq; /* 16 b; sequence value for ECHO REPLY */
};
/* ICMPv6 - NDP NS structure */
struct s_icmp_ndp_ns {
unsigned int zeros; /* 32 b; reserved section */
struct in6_addr target; /* 128 b; target IP address */
};
struct s_icmp_ndp_option {
unsigned char type; /* 8 b; type of the option */
unsigned char len; /* 8 b; length of the option (including this header!) */
};
/* ICMP types */
#define ICMP4_ECHO_REQUEST 0x8
#define ICMP4_ECHO_REPLY 0x0
@ -84,7 +94,7 @@ struct s_icmp_ping {
/* Prototypes */
void process_packet6(u_char *args, const struct pcap_pkthdr *header, const u_char *packet);
void process_icmp6(struct s_ip6 *ip, const unsigned char *payload);
void process_icmp6(const struct s_ip6 *ip, const unsigned char *payload);
void send_there(struct in_addr ip4_addr, unsigned char ttl, unsigned int type, unsigned char *payload, unsigned int paylen);