X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=hdw-sniff.c;h=13c56ab7fdd6b91dbffc8752b6302d0a79fcf285;hb=11b73fc8a9d2b138de848cbd7362ff3315d47c0f;hp=2757d6a02b775d5fd36bd5100cbc0a17b7dcfbfc;hpb=65006c10b34ca9dee50c9cfb0acba1229e1f2296;p=my-code%2Fhdw-sniff.git diff --git a/hdw-sniff.c b/hdw-sniff.c index 2757d6a..13c56ab 100644 --- a/hdw-sniff.c +++ b/hdw-sniff.c @@ -5,13 +5,146 @@ */ #include +#include +#include +#include +#include +#include +#include #include + +/* IEEE 802.3 stuff -- i will concentrate on .11 stuff before! */ +#include /* for ethhdr struct */ +#include /* ip */ +#include /* in_addr , inet_ntoa */ + +/* IEEE 802.11 stuff -- will become one include later ... */ +#include "ieee80211.h" /* from hunz's aeolus, short hostap_wlan.h */ +#include "ieee802_11.h" /* from pcmcia-cs */ + #include "hdw-sniff.h" /* my functions */ int main(int argc, char *argv[]) { - - int count; + char pcap_error[PCAP_ERRBUF_SIZE]; + pcap_t *pcap_handle; + char sys_call[30]; + FILE *logfile; + struct info_struct my_info_struct; + /* parse the arguments */ - for(i=1;i \n", + argv[0]); + return 0; + } + if(argc!=4) { + printf("no logfile specified, writing to stdout ...\n"); + } + else { + if((logfile=fopen(argv[3],"w"))!=NULL) { + printf("writing to logfile %s ...\n",argv[3]); + } + else { + printf("can't open logfile!\n"); + } + } + /* setting up device and set monitor mode */ + if(atoi(argv[2])==1) { + printf("setting to monitor mode\n"); + if(strncmp(argv[1],"wlan",4)==0) + sprintf(sys_call,"iwpriv %s monitor 3",argv[1]); + if(strncmp(argv[1],"eth",3)==0) + sprintf(sys_call,"ifconfig %s promisc",argv[1]); + system(sys_call); + } + printf("setting up interface\n"); + sprintf(sys_call,"ifconfig %s up",argv[1]); + system(sys_call); + + /* start pcap session */ + pcap_handle=pcap_open_live(argv[1],BUFSIZ,1,-1,pcap_error); + if(pcap_handle==NULL) { + printf("%s: %s\n",argv[0],pcap_error); + return 1; + } + + /* grab a package until user breaks */ + my_info_struct.count=0; + my_info_struct.mmode=argv[2][0]; + strcpy(my_info_struct.dev,argv[1]); + /* do loopp */ + pcap_loop(pcap_handle,-1,pcap_process,(u_char *)&my_info_struct); + return 0; +} + + +/* pcap_process callback function */ +void pcap_process(u_char *info,const struct pcap_pkthdr *pcap_header, + const u_char *package) { + + /* local variables */ + struct ethhdr *e_hdr; + struct ip *ip_hdr; + struct ieee802_11_hdr *w_hdr; + struct info_struct *my_info_struct; + int i; + + my_info_struct=(struct info_struct *)info; + ++(my_info_struct->count); + + printf("\n"); + printf("---> package %d ---- %s",my_info_struct->count, + ctime((const time_t*)&(pcap_header->ts.tv_sec))); + printf("pcap header:\n"); + printf("capture_length: %d (dec.)",pcap_header->caplen); + printf("length(off wire): %d (dec.)\n",pcap_header->len); + + /* is ieee802.11 ? -- we assume yes :) */ + if((my_info_struct->mmode-0x30==1) && + (strncmp(my_info_struct->dev,"wlan",4)==0)) { + printf("ieee802.11 header:\n"); + w_hdr=(struct ieee802_11_hdr *)package; + printf("frame_control: %x duration_id: %x\n",ntohs(w_hdr->frame_ctl), + ntohs(w_hdr->duration_id)); + /* skip ieee802.11 header */ + package=package+sizeof(struct ieee802_11_hdr); + } + + /* ieee802.3 */ + /* ethernet */ + e_hdr=(struct ethhdr *)package; + /* what types ? */ + printf("type = "); + printf("%x ",ntohs(e_hdr->h_proto)); + printf("dest_addr = "); + for(i=0;ih_dest+i),((i==ETH_ALEN-1)?" ":":")); + printf(" src_addr = "); + for(i=0;ih_source+i),((i==ETH_ALEN-1)?"\n":":")); + /* IP ? */ + if(ntohs(e_hdr->h_proto)==ETH_P_IP) { + printf("ip protocol: "); + ip_hdr=(struct ip *)(package+sizeof(struct ethhdr)); + printf("version = %x ",ntohs(ip_hdr->ip_v)); + printf("header_length = %x \n",ntohs(ip_hdr->ip_hl)); + printf("service = %x ",ntohs(ip_hdr->ip_tos)); + printf("total_length(dec.) = %d \n",ntohs(ip_hdr->ip_len)); + printf("ip_addresses: source = "); + printf("%s\tdestination = %s\n",inet_ntoa(ip_hdr->ip_src), + inet_ntoa(ip_hdr->ip_dst)); + printf("ip_id = %x ",ntohs(ip_hdr->ip_id)); + printf("ip_offset = %x \n",ntohs(ip_hdr->ip_off)); + printf("time2live = %x ip_proto = %x\n",ntohs(ip_hdr->ip_ttl), + ntohs(ip_hdr->ip_p)); + printf("chksum: %x\n",ntohs(ip_hdr->ip_sum)); + } + printf("all_hex_dump:\n"); + for(i=sizeof(struct ethhdr);icaplen;i++) + printf("%x ",*(package+i)); + printf("\n"); +} + +