wpcapslip6 now works on Windows XP too (not only Vista or 7).
Added function for IP packet processing, that performs a translation of link layer addresses inside IPv6 NAs from EUI-64 into EUI-48 format.
This commit is contained in:
parent
cb29a9c667
commit
dcd22c99a1
@ -13,12 +13,12 @@ ifdef WITH_STDIN
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f wpcapslip6.o wpcap6.o
|
rm -f wpcapslip6.o wpcap6.o ip-process.o fakeuip.o
|
||||||
|
|
||||||
|
|
||||||
vpath %.c $(CONTIKI)/core/net
|
vpath %.c $(CONTIKI)/core/net
|
||||||
|
|
||||||
wpcapslip6: wpcapslip6.o wpcap6.o
|
wpcapslip6: wpcapslip6.o wpcap6.o ip-process.o fakeuip.o
|
||||||
|
|
||||||
%: %.o
|
%: %.o
|
||||||
$(CC) $(LDFLAGS) $^ /lib/w32api/libws2_32.a /lib/w32api/libiphlpapi.a -o $@
|
$(CC) $(LDFLAGS) $^ /lib/w32api/libws2_32.a /lib/w32api/libiphlpapi.a -o $@
|
||||||
|
75
tools/stm32w/wpcapslip6/fakeuip.c
Normal file
75
tools/stm32w/wpcapslip6/fakeuip.c
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
|
||||||
|
/* Various stub functions and uIP variables other code might need to
|
||||||
|
* compile. Allows you to save needing to compile all of uIP in just
|
||||||
|
* to get a few things */
|
||||||
|
|
||||||
|
#define UIP_CONF_IPV6 1
|
||||||
|
|
||||||
|
#include "net/uip.h"
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
|
||||||
|
#undef uip_buf
|
||||||
|
unsigned char *uip_buf;
|
||||||
|
u16_t uip_len;
|
||||||
|
|
||||||
|
#define UIP_IP_BUF ((struct uip_ip_hdr *)&uip_buf[UIP_LLH_LEN])
|
||||||
|
|
||||||
|
static u16_t
|
||||||
|
chksum(u16_t sum, const u8_t *data, u16_t len)
|
||||||
|
{
|
||||||
|
u16_t t;
|
||||||
|
const u8_t *dataptr;
|
||||||
|
const u8_t *last_byte;
|
||||||
|
|
||||||
|
dataptr = data;
|
||||||
|
last_byte = data + len - 1;
|
||||||
|
|
||||||
|
while(dataptr < last_byte) { /* At least two more bytes */
|
||||||
|
t = (dataptr[0] << 8) + dataptr[1];
|
||||||
|
sum += t;
|
||||||
|
if(sum < t) {
|
||||||
|
sum++; /* carry */
|
||||||
|
}
|
||||||
|
dataptr += 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(dataptr == last_byte) {
|
||||||
|
t = (dataptr[0] << 8) + 0;
|
||||||
|
sum += t;
|
||||||
|
if(sum < t) {
|
||||||
|
sum++; /* carry */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Return sum in host byte order. */
|
||||||
|
return sum;
|
||||||
|
}
|
||||||
|
|
||||||
|
static u16_t
|
||||||
|
upper_layer_chksum(u8_t proto)
|
||||||
|
{
|
||||||
|
u16_t upper_layer_len;
|
||||||
|
u16_t sum;
|
||||||
|
|
||||||
|
upper_layer_len = (((u16_t)(UIP_IP_BUF->len[0]) << 8) + UIP_IP_BUF->len[1]) ;
|
||||||
|
|
||||||
|
/* First sum pseudoheader. */
|
||||||
|
/* IP protocol and length fields. This addition cannot carry. */
|
||||||
|
sum = upper_layer_len + proto;
|
||||||
|
/* Sum IP source and destination addresses. */
|
||||||
|
sum = chksum(sum, (u8_t *)&UIP_IP_BUF->srcipaddr, 2 * sizeof(uip_ipaddr_t));
|
||||||
|
|
||||||
|
/* Sum TCP header and data. */
|
||||||
|
sum = chksum(sum, &uip_buf[UIP_IPH_LEN + UIP_LLH_LEN],
|
||||||
|
upper_layer_len);
|
||||||
|
|
||||||
|
return (sum == 0) ? 0xffff : htons(sum);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
u16_t
|
||||||
|
uip_icmp6chksum(void)
|
||||||
|
{
|
||||||
|
return upper_layer_chksum(UIP_PROTO_ICMP6);
|
||||||
|
}
|
262
tools/stm32w/wpcapslip6/ip-process.c
Normal file
262
tools/stm32w/wpcapslip6/ip-process.c
Normal file
@ -0,0 +1,262 @@
|
|||||||
|
|
||||||
|
#define UIP_CONF_IPV6 1
|
||||||
|
#define UIP_CONF_LL_802154 1
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#define DEBUG DEBUG_NONE
|
||||||
|
|
||||||
|
#include "net/uip-debug.h"
|
||||||
|
|
||||||
|
#include "ip-process.h"
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#undef uip_buf
|
||||||
|
extern unsigned char *uip_buf;
|
||||||
|
extern u16_t uip_len;
|
||||||
|
|
||||||
|
|
||||||
|
#define UIP_IP_BUF ((struct uip_ip_hdr *)&uip_buf[UIP_LLH_LEN])
|
||||||
|
|
||||||
|
|
||||||
|
uint8_t mac_createEthernetAddr(uint8_t * ethernet, uip_lladdr_t * lowpan);
|
||||||
|
int8_t mac_translateIcmpLinkLayer();
|
||||||
|
int8_t mac_translateIPLinkLayer();
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Translate IP packet's possible link-layer addresses, passing
|
||||||
|
* the message to the appropriate higher level function for this
|
||||||
|
* packet (aka: ICMP)
|
||||||
|
* \param target The target we want to end up with - either ll_8023_type
|
||||||
|
* for ethernet, or ll_802154_type for 802.15.4
|
||||||
|
* \return Returns how successful the translation was
|
||||||
|
* \retval 0 Addresses, if present, were translated.
|
||||||
|
* \retval <0 Negative return values indicate various errors, as defined
|
||||||
|
* by the higher level function.
|
||||||
|
*/
|
||||||
|
int8_t mac_translateIPLinkLayer()
|
||||||
|
{
|
||||||
|
|
||||||
|
if (UIP_IP_BUF->proto == UIP_PROTO_ICMP6) {
|
||||||
|
PRINTF("eth2low: ICMP Message detected\n");
|
||||||
|
return mac_translateIcmpLinkLayer();
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#include "net/uip-icmp6.h"
|
||||||
|
#include "net/uip-nd6.h"
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
uint8_t type;
|
||||||
|
uint8_t length;
|
||||||
|
uint8_t data[16];
|
||||||
|
} icmp_opts_t;
|
||||||
|
|
||||||
|
#define UIP_ICMP_BUF ((struct uip_icmp_hdr *)&uip_buf[UIP_LLH_LEN + UIP_IPH_LEN])
|
||||||
|
#define UIP_ICMP_OPTS(x) ((icmp_opts_t *)&uip_buf[UIP_LLH_LEN + UIP_IPH_LEN + x])
|
||||||
|
|
||||||
|
void slide(uint8_t * data, uint8_t length, int16_t slide);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Translate the link-layer (L2) addresses in an ICMP packet.
|
||||||
|
* This will just be NA/NS/RA/RS packets currently.
|
||||||
|
* \param target The target we want to end up with - either ll_8023_type
|
||||||
|
* for ethernet, or ll_802154_type for 802.15.4
|
||||||
|
* \return Returns how successful the translation was
|
||||||
|
* \retval 0 Addresses, if present, were translated.
|
||||||
|
* \retval -1 ICMP message was unknown type, nothing done.
|
||||||
|
* \retval -2 ICMP Length does not make sense?
|
||||||
|
* \retval -3 Unknown 'target' type
|
||||||
|
*/
|
||||||
|
int8_t mac_translateIcmpLinkLayer()
|
||||||
|
{
|
||||||
|
uint16_t icmp_opt_offset = 0;
|
||||||
|
int16_t len = UIP_IP_BUF->len[1] | (UIP_IP_BUF->len[0] << 8);
|
||||||
|
|
||||||
|
uint16_t iplen;
|
||||||
|
|
||||||
|
uint8_t i;
|
||||||
|
|
||||||
|
int16_t sizechange;
|
||||||
|
|
||||||
|
uint8_t llbuf[16];
|
||||||
|
|
||||||
|
//Figure out offset to start of options
|
||||||
|
switch(UIP_ICMP_BUF->type) {
|
||||||
|
case ICMP6_NS:
|
||||||
|
case ICMP6_NA:
|
||||||
|
icmp_opt_offset = 24;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ICMP6_RS:
|
||||||
|
icmp_opt_offset = 8;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ICMP6_RA:
|
||||||
|
icmp_opt_offset = 16;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ICMP6_REDIRECT:
|
||||||
|
icmp_opt_offset = 40;
|
||||||
|
break;
|
||||||
|
|
||||||
|
/** Things without link-layer */
|
||||||
|
case ICMP6_DST_UNREACH:
|
||||||
|
case ICMP6_PACKET_TOO_BIG:
|
||||||
|
case ICMP6_TIME_EXCEEDED:
|
||||||
|
case ICMP6_PARAM_PROB:
|
||||||
|
case ICMP6_ECHO_REQUEST:
|
||||||
|
case ICMP6_ECHO_REPLY:
|
||||||
|
return 0;
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Figure out length of options
|
||||||
|
len -= icmp_opt_offset;
|
||||||
|
|
||||||
|
//Sanity check
|
||||||
|
if (len < 8) return -2;
|
||||||
|
|
||||||
|
//While we have options to do...
|
||||||
|
while (len >= 8){
|
||||||
|
|
||||||
|
//If we have one of these, we have something useful!
|
||||||
|
if (((UIP_ICMP_OPTS(icmp_opt_offset)->type) == UIP_ND6_OPT_SLLAO) ||
|
||||||
|
((UIP_ICMP_OPTS(icmp_opt_offset)->type) == UIP_ND6_OPT_TLLAO) ) {
|
||||||
|
|
||||||
|
/* Shrinking the buffer may thrash things, so we store the old
|
||||||
|
link-layer address */
|
||||||
|
for(i = 0; i < (UIP_ICMP_OPTS(icmp_opt_offset)->length*8 - 2); i++) {
|
||||||
|
llbuf[i] = UIP_ICMP_OPTS(icmp_opt_offset)->data[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//Shrink/grow buffer as needed
|
||||||
|
/* Current is 802.15.4, Hence current link-layer option is 14 extra
|
||||||
|
* bytes.
|
||||||
|
* (Actual LL is 8 bytes, but total option length is in multiples of
|
||||||
|
* 8 Bytes, hence 8 + 2 = 10. Closest is 16 bytes, then 16 bytes for
|
||||||
|
* total optional length - 2 bytes for type + length leaves 14 )
|
||||||
|
*/
|
||||||
|
sizechange = -8;
|
||||||
|
slide(UIP_ICMP_OPTS(icmp_opt_offset)->data + 14, len - 14, sizechange);
|
||||||
|
|
||||||
|
|
||||||
|
mac_createEthernetAddr(UIP_ICMP_OPTS(icmp_opt_offset)->data, (uip_lladdr_t *)llbuf);
|
||||||
|
|
||||||
|
//Adjust the length
|
||||||
|
UIP_ICMP_OPTS(icmp_opt_offset)->length = 1;
|
||||||
|
|
||||||
|
//Adjust the IP header length, as well as uIP length
|
||||||
|
iplen = UIP_IP_BUF->len[1] | (UIP_IP_BUF->len[0]<<8);
|
||||||
|
iplen += sizechange;
|
||||||
|
len += sizechange;
|
||||||
|
|
||||||
|
UIP_IP_BUF->len[1] = (uint8_t)iplen;
|
||||||
|
UIP_IP_BUF->len[0] = (uint8_t)(iplen >> 8);
|
||||||
|
|
||||||
|
uip_len += sizechange;
|
||||||
|
|
||||||
|
//We broke ICMP checksum, be sure to fix that
|
||||||
|
UIP_ICMP_BUF->icmpchksum = 0;
|
||||||
|
UIP_ICMP_BUF->icmpchksum = ~uip_icmp6chksum();
|
||||||
|
|
||||||
|
//Finally set up next run in while loop
|
||||||
|
len -= 8 * UIP_ICMP_OPTS(icmp_opt_offset)->length;
|
||||||
|
icmp_opt_offset += 8 * UIP_ICMP_OPTS(icmp_opt_offset)->length;
|
||||||
|
} else {
|
||||||
|
|
||||||
|
//Not an option we care about, ignore it
|
||||||
|
len -= 8 * UIP_ICMP_OPTS(icmp_opt_offset)->length;
|
||||||
|
|
||||||
|
//This shouldn't happen!
|
||||||
|
if (UIP_ICMP_OPTS(icmp_opt_offset)->length == 0) {
|
||||||
|
PRINTF("Option in ND packet has length zero, error?\n");
|
||||||
|
len = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
icmp_opt_offset += 8 * UIP_ICMP_OPTS(icmp_opt_offset)->length;
|
||||||
|
|
||||||
|
} //If ICMP_OPT is one we care about
|
||||||
|
|
||||||
|
} //while(len >= 8)
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Create a 802.3 address from a 802.15.4 long address
|
||||||
|
* \param ethernet Pointer to ethernet address
|
||||||
|
* \param lowpan Pointer to 802.15.4 address
|
||||||
|
*/
|
||||||
|
uint8_t mac_createEthernetAddr(uint8_t * ethernet, uip_lladdr_t * lowpan)
|
||||||
|
{
|
||||||
|
/* uint8_t j, match; */
|
||||||
|
|
||||||
|
u8_t tmp[8];
|
||||||
|
|
||||||
|
memcpy(tmp,lowpan,sizeof(uip_lladdr_t));
|
||||||
|
|
||||||
|
memcpy(ethernet, tmp, 3);
|
||||||
|
memcpy(ethernet+3, tmp+5, 3);
|
||||||
|
ethernet[0] |= 0x02;
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Slide the pointed to memory up a certain amount,
|
||||||
|
* growing/shrinking a buffer
|
||||||
|
* \param data Pointer to start of data buffer
|
||||||
|
* \param length Length of the data buffer
|
||||||
|
* \param slide How many bytes to slide the buffer up in memory (if +) or
|
||||||
|
* down in memory (if -)
|
||||||
|
*/
|
||||||
|
void slide(uint8_t * data, uint8_t length, int16_t slide)
|
||||||
|
{
|
||||||
|
//Sanity checks
|
||||||
|
if (!length) return;
|
||||||
|
if (!slide) return;
|
||||||
|
|
||||||
|
uint8_t i = 0;
|
||||||
|
|
||||||
|
while(length) {
|
||||||
|
length--;
|
||||||
|
|
||||||
|
//If we are sliding up, we do from the top of the buffer down
|
||||||
|
if (slide > 0) {
|
||||||
|
*(data + length + slide) = *(data + length);
|
||||||
|
|
||||||
|
//If we are sliding down, we do from the bottom of the buffer up
|
||||||
|
} else {
|
||||||
|
*(data + slide + i) = *(data + i);
|
||||||
|
}
|
||||||
|
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
u16_t ip_process(unsigned char *buf, unsigned int len)
|
||||||
|
{
|
||||||
|
uip_buf = buf;
|
||||||
|
uip_len = len;
|
||||||
|
|
||||||
|
mac_translateIPLinkLayer();
|
||||||
|
|
||||||
|
return uip_len;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
6
tools/stm32w/wpcapslip6/ip-process.h
Normal file
6
tools/stm32w/wpcapslip6/ip-process.h
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#ifndef IP_PROCESS_H
|
||||||
|
#define IP_PROCESS_H
|
||||||
|
|
||||||
|
u16_t ip_process(unsigned char *buf, unsigned int len);
|
||||||
|
|
||||||
|
#endif /* IP_PROCESS_H */
|
@ -70,12 +70,9 @@
|
|||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
|
|
||||||
//#include "net/uip.h"
|
|
||||||
#include "net/uip_arp.h"
|
#include "net/uip_arp.h"
|
||||||
|
|
||||||
|
#include "ip-process.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
char * wpcap_start(struct uip_eth_addr *addr, int log);
|
char * wpcap_start(struct uip_eth_addr *addr, int log);
|
||||||
|
|
||||||
@ -286,7 +283,8 @@ is_sensible_string(const unsigned char *s, int len)
|
|||||||
void
|
void
|
||||||
serial_to_wpcap(FILE *inslip)
|
serial_to_wpcap(FILE *inslip)
|
||||||
{
|
{
|
||||||
unsigned char buf[BUF_SIZE];
|
u16_t buf_aligned[BUF_SIZE/2];
|
||||||
|
u8_t *buf = (u8_t *)buf_aligned;
|
||||||
|
|
||||||
static int inbufptr = 0;
|
static int inbufptr = 0;
|
||||||
int ret;
|
int ret;
|
||||||
@ -425,6 +423,12 @@ read_more:
|
|||||||
|
|
||||||
eth_hdr->type = htons(UIP_ETHTYPE_IPV6);
|
eth_hdr->type = htons(UIP_ETHTYPE_IPV6);
|
||||||
inbufptr += sizeof(struct uip_eth_hdr);
|
inbufptr += sizeof(struct uip_eth_hdr);
|
||||||
|
|
||||||
|
// Process incoming packets to transform link layer addresses inside ICMP packets.
|
||||||
|
// Try to do processing if we did not succeed to add the neighbor.
|
||||||
|
if(clean_neighb == false){
|
||||||
|
inbufptr = ip_process(buf, inbufptr);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//print_packet(inpktbuf, inbufptr);
|
//print_packet(inpktbuf, inbufptr);
|
||||||
|
|
||||||
@ -856,13 +860,7 @@ void addNeighbor(const char * ifname, const char * neighb, const char * neighb_m
|
|||||||
{
|
{
|
||||||
DWORD exitCode = -1;
|
DWORD exitCode = -1;
|
||||||
|
|
||||||
if(osVersionInfo.dwMajorVersion < 6){ // < Windows Vista (i.e., Windows XP; check if this command is ok for Windows Server 2003 too).
|
if(osVersionInfo.dwMajorVersion >= 6){
|
||||||
|
|
||||||
fprintf(stderr,"Bridge mode only supported on Windows Vista and later OSs.\r\n");
|
|
||||||
exit(-1);
|
|
||||||
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
execProcess(&exitCode,"netsh interface ipv6 add neighbor \"%s\" %s \"%s\"", if_name, neighb, neighb_mac);
|
execProcess(&exitCode,"netsh interface ipv6 add neighbor \"%s\" %s \"%s\"", if_name, neighb, neighb_mac);
|
||||||
if(exitCode==0)
|
if(exitCode==0)
|
||||||
clean_neighb = true;
|
clean_neighb = true;
|
||||||
@ -907,7 +905,7 @@ int IPAddrFromPrefix(char * ipaddr, const char * ipprefix, const char * mac)
|
|||||||
PRINTF("%02X ",dev_addr.addr[i]);
|
PRINTF("%02X ",dev_addr.addr[i]);
|
||||||
PRINTF("\n");*/
|
PRINTF("\n");*/
|
||||||
|
|
||||||
dev_addr.addr[0] |= 0x02;
|
dev_addr.addr[0] ^= 0x02;
|
||||||
|
|
||||||
strtok(tmp_ipprefix,"/");
|
strtok(tmp_ipprefix,"/");
|
||||||
|
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user