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?) - create some home web page (may be a wiki?)
== PostFinal stage == == 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) 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 */ struct in6_addr ip6addr_wrapsix;
const struct s_ethernet *ethernet; /* The ethernet header [1] */ struct in6_addr ip6addr_ndp_multicast;
const struct s_ip6 *ip; /* The IP header */
const unsigned char *payload; /* Packet payload */
printf("\nPacket number %d:\n", count);
count++;
/* define ethernet header */ /* define ethernet header */
ethernet = (struct s_ethernet*) (packet); ethernet = (struct s_ethernet*) (packet);
/* define/compute ip header offset */ /* define/compute IP header offset */
ip = (struct s_ip6*) (packet + SIZE_ETHERNET); ip = (struct s_ip6*) (packet + SIZE_ETHERNET);
/* define/compute IP payload offset */
payload = packet + SIZE_ETHERNET + SIZE_IP6; payload = packet + SIZE_ETHERNET + SIZE_IP6;
/* print source and destination IP addresses */ /* check if this packet is ours - partially hardcoded for now */
char ip6addr[INET6_ADDRSTRLEN]; inet_pton(AF_INET6, "fc00:1::", &ip6addr_wrapsix);
inet_ntop(AF_INET6, &ip->ip_src, ip6addr, sizeof(ip6addr)); inet_pton(AF_INET6, "ff02::1:ff00:0", &ip6addr_ndp_multicast);
printf(" From: %s\n", ip6addr); /* check for our prefix || NDP */
/* keep the following line as the last one inet_ntop! */ if (memcmp(&ip6addr_wrapsix, &ip->ip_dest, 12) != 0
inet_ntop(AF_INET6, &ip->ip_dest, ip6addr, sizeof(ip6addr)); && memcmp(&ip6addr_ndp_multicast, &ip->ip_dest, 13) != 0) {
printf(" To: %s\n", ip6addr); printf("==> This packet is not ours! And it's not NDP! <==\n");
/* 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");
return; 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 */ /* determine protocol */
switch (ip->next_header) { switch (ip->next_header) {
case IPPROTO_TCP: case IPPROTO_TCP:
@ -56,83 +56,82 @@ void process_packet6(u_char *args, const struct pcap_pkthdr *header, const u_cha
return; 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 s_icmp *icmp;
struct in_addr ip4_addr; struct in_addr ip4_addr;
unsigned char *icmp_data; const unsigned char *icmp_data;
unsigned char *icmp_packet; unsigned char *icmp_packet;
int packet_size; int packet_size;
/* extract the ICMP header */ /* define ICMP header */
icmp = (struct s_icmp *) (payload); 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 */ /* decide what type of ICMP we have */
switch (icmp->type) { switch (icmp->type) {
/* NDP */ /* NDP */
case ICMP6_NDP_NS: case ICMP6_NDP_NS:
printf(" ICMP: [NDP] Neighbor Solicitation\n"); printf(" ICMP: [NDP] Neighbor Solicitation\n");
break; return;
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");
break; break;
/* ping */ /* ping */
case ICMP6_ECHO_REQUEST: case ICMP6_ECHO_REQUEST:
printf(" ICMP: Echo Request\n"); printf(" ICMP: Echo Request\n");
packet_size = htons(ip->len); /* DEBUG */
icmp_packet = (unsigned char *) malloc(packet_size);
if (icmp_packet == NULL) {
fprintf(stderr, "Fatal error! Lack of free memory!\n");
exit(EXIT_FAILURE);
}
struct s_icmp_ping *icmp_ping = (struct s_icmp_ping *) icmp_data; 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)); printf("[id;seq]:[0x%x;0x%x]\n", htons(icmp_ping->id), htons(icmp_ping->seq));
memcpy(icmp_packet, icmp, sizeof(struct s_icmp)); /* fill into the header known statements */
memcpy(icmp_packet + sizeof(struct s_icmp), icmp_data, packet_size - sizeof(struct s_icmp)); icmp->type = ICMP4_ECHO_REQUEST;
icmp->code = 0;
// 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));
break; break;
case ICMP6_ECHO_REPLY: case ICMP6_ECHO_REPLY:
printf(" ICMP: Echo Reply\n"); printf(" ICMP: Echo Reply\n");
return;
break; break;
/* nothing interesting */
default: default:
printf(" ICMP: unknown: %d/0x%x\n", icmp->type, icmp->type); printf(" ICMP: unknown: %d/0x%x\n", icmp->type, icmp->type);
return;
break; 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); ip4_addr = ipaddr_6to4((struct in6_addr) ip->ip_dest);
printf(" Send to: %s\n", inet_ntoa(ip4_addr)); printf(" Send to: %s\n", inet_ntoa(ip4_addr));
/* send */ /* send */
send_there(ip4_addr, ip->hop_limit, IPPROTO_ICMP, icmp_packet, packet_size); send_there(ip4_addr, ip->hop_limit, IPPROTO_ICMP, icmp_packet, packet_size);
/* free allocated memory */
free(icmp_packet); free(icmp_packet);
icmp_packet = NULL; icmp_packet = NULL;

View File

@ -1,14 +1,14 @@
#include "wrapper.h" #include "wrapper.h"
#include "translate_ip.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 ip6addr_ip4part *addr;
struct in_addr ip4_addr; struct in_addr ip4_addr;
char ip4_str[15]; char ip4_str[15];
/* "parse" the IPv6 addres */ /* define the IPv6 address */
addr = (struct ip6addr_ip4part *)(&ip6_addr); addr = (struct ip6addr_ip4part *) (&ip6_addr);
/* build IPv4 address */ /* build IPv4 address */
sprintf(ip4_str, "%d.%d.%d.%d", addr->a, addr->b, addr->c, addr->d); 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; 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); //in6_addr ipaddr_4to6(in_addr ip_addr);
#endif #endif

View File

@ -69,6 +69,16 @@ struct s_icmp_ping {
unsigned short seq; /* 16 b; sequence value for ECHO REPLY */ 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 */ /* ICMP types */
#define ICMP4_ECHO_REQUEST 0x8 #define ICMP4_ECHO_REQUEST 0x8
#define ICMP4_ECHO_REPLY 0x0 #define ICMP4_ECHO_REPLY 0x0
@ -84,7 +94,7 @@ struct s_icmp_ping {
/* Prototypes */ /* Prototypes */
void process_packet6(u_char *args, const struct pcap_pkthdr *header, const u_char *packet); 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); void send_there(struct in_addr ip4_addr, unsigned char ttl, unsigned int type, unsigned char *payload, unsigned int paylen);