123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381 |
- /*
- This is the main file. It handles sending, receiving, but also monitoring of frames.
- */
- #include <stdio.h>
- #include <pcap.h>
- #include <stdlib.h>
- #include <stdint.h>
- #include <string.h>
- #include <sys/time.h>
- #include "cfuzz.h"
- #include "frameCreator.h"
- #include "frameDefinitions.h"
- #include "fuzzer.h"
- #define DEBUG (0)
- #define SUTTIMEOUTMS (30000) //30s
- //Used for timing
- struct timeval tm1;
- struct timeval longtm;
- //Number of acked frames in current step
- int ackedFrames = 0;
- //Copied from Wireshark
- u_char radioTapHeader[36] = "\x00\x00\x24\x00\x2f\x40\x00\xa0\x20\x08\x00\x00\x00\x00\x00\x00" \
- "\x9d\x5c\xa0\x15\x01\x00\x00\x00\x10\x02\x6c\x09\xa0\x00\xa7\x00" \
- "\x00\x00\xa7\x00";
- //Mac address of Atheros Wi-Fi dongle
- //Dongle will only ACK frames to its own MAC address
- u_char myMAC[6] = "\x00\x0a\xeb\x2d\x72\x55";
- //Mac address of SUT
- //Is needed to ignore frames from other devices
- //Comment out the SUT
- u_char sutMAC[6] = "\x12\x42\x2a\x7e\xd4\xe8"; //Orange Pi Zero
- //u_char sutMAC[6] = "\xcc\xfa\x00\xc9\xfc\xad"; //LG Optimus G
- //Returns filter for libpcap
- //we want to use as many filters here as possible, since libpcap is closer to the hardware than this user-level program
- //we only want to receive Probe requests, Authentication frames and Association requests, all to only our own MAC address or broadcast address in case of Probe requests
- //furthermore, all frames except ACK frames (have no send address) should be sent from the SUT MAC address
- //also, it is important not to compile and set the filter between each pcap_next. Otherwise ACK frames will be missed
- //when changing the filterString, the strncpy() locations should also be changed!
- const char *getFilterString()
- {
- //xx:xx:xx:xx:xx:xx will become myMAC, yy:yy:yy:yy:yy:yy will become sutMAC
- static char filterString[] = "(wlan subtype probe-req and (wlan addr1 xx:xx:xx:xx:xx:xx or wlan addr1 ff:ff:ff:ff:ff:ff) and wlan addr2 yy:yy:yy:yy:yy:yy)" \
- " or ( wlan addr1 xx:xx:xx:xx:xx:xx and wlan addr2 yy:yy:yy:yy:yy:yy and ( wlan subtype auth or wlan subtype assoc-req))" \
- " or ( wlan addr1 xx:xx:xx:xx:xx:xx and wlan subtype ack)";
- //convert myMAC and sutMAC to strings
- char myMacStr[18];
- char sutMacStr[18];
- snprintf(myMacStr, sizeof(myMacStr), "%02x:%02x:%02x:%02x:%02x:%02x",
- myMAC[0], myMAC[1], myMAC[2], myMAC[3], myMAC[4], myMAC[5]);
- snprintf(sutMacStr, sizeof(sutMacStr), "%02x:%02x:%02x:%02x:%02x:%02x",
- sutMAC[0], sutMAC[1], sutMAC[2], sutMAC[3], sutMAC[4], sutMAC[5]);
- //replace placeholder MACs in filterString with correct MACstring (hardcoded positions!)
- strncpy(filterString+40, myMacStr,17);
- strncpy(filterString+106, sutMacStr,17);
- strncpy(filterString+141, myMacStr,17);
- strncpy(filterString+174, sutMacStr,17);
- strncpy(filterString+260, myMacStr,17);
- return filterString;
- }
- //Starts timer by setting current (starting) time to tm1
- void startTimer()
- {
- gettimeofday(&tm1, NULL);
- }
- //Stops timer by setting current (ending) time to tm2
- //Then compares difference in time and returns it in milliseconds
- unsigned long long stopTimer()
- {
- struct timeval tm2;
- gettimeofday(&tm2, NULL);
- unsigned long long t = 1000 * (tm2.tv_sec - tm1.tv_sec) + (tm2.tv_usec - tm1.tv_usec) / 1000;
- return t;
- }
- //Starts timer by setting current (starting) time to longtm
- //Longtimer is used to determine if it was more than X seconds since the SUT sent out frames
- void startLongTimer()
- {
- gettimeofday(&longtm, NULL);
- }
- //Stops timer by setting current (ending) time to longtm2
- //Then compares difference in time and returns it in milliseconds
- unsigned long long stopLongTimer()
- {
- struct timeval longtm2;
- gettimeofday(&longtm2, NULL);
- unsigned long long t = 1000 * (longtm2.tv_sec - longtm.tv_sec) + (longtm2.tv_usec - longtm.tv_usec) / 1000;
- return t;
- }
- //Returns source address pointer location in packet
- u_char *getSourceAddrOfPacket(const u_char *packet)
- {
- //get header length
- u_char headerLength;
- headerLength = packet[2];
- //calculate offset to address
- const u_char *addr;
- int offset = headerLength;
- offset = offset + 10;
- //get pointer to address
- addr = packet + offset;
- return (u_char*) addr;
- }
- //Returns Version, Type and Subtype (one byte)
- u_char getFrameTypeOfPacket(const u_char *packet)
- {
- //get header length
- u_char headerLength;
- headerLength = packet[2];
- //calculate offset to frame type
- const u_char *frameType;
- int offset = headerLength;
- offset = offset + 0;
- //get pointer to frameType
- frameType = packet + offset;
- return *frameType;
- }
- //Sends packet using pcap. Returns status
- int sendPacket(pcap_t *pcap_h, u_char *packet, int size)
- {
- int sendStatus = pcap_sendpacket(pcap_h, packet, size);
- //when frame failed to send
- if (sendStatus == 1)
- {
- printf("Failed to send frame:\n");
- //print failed frame
- int printCounter = 0;
- for(int i = 0; i < size; i++)
- {
- printf("%02X ", packet[i]);
- printCounter = printCounter + 1;
- if (printCounter == 16)
- {
- printCounter = 0;
- printf("\n");
- }
- }
- printf("\n");
- }
-
- return sendStatus;
- }
- int main(int argc, char *argv[])
- {
- pcap_t *pcap_h;
- struct bpf_program fp;
- struct pcap_pkthdr header;
- char *dev;
- char errbuf[PCAP_ERRBUF_SIZE];
- //check argument number
- if(argc != 2)
- {
- printf("Usage: %s device\n", argv[0]);
- exit(EXIT_FAILURE);
- }
- dev = argv[1];
- //initialize libpcap
- if((pcap_h = pcap_create(dev, errbuf)) == NULL)
- {
- printf("pcap_create() failed: %s\n", errbuf);
- exit(EXIT_FAILURE);
- }
- if(pcap_can_set_rfmon(pcap_h) == 0)
- {
- printf("Monitor mode can not be set.\n");
- exit(EXIT_FAILURE);
- }
- if(pcap_set_rfmon(pcap_h, 1) != 0)
- {
- printf("Failed to set monitor mode.\n");
- exit(EXIT_FAILURE);
- }
- if(pcap_activate(pcap_h) != 0)
- {
- printf("pcap_activate() failed\n");
- exit(EXIT_FAILURE);
- }
- //compile filter for incoming packets
- if(pcap_compile(pcap_h, &fp, getFilterString() , 0, PCAP_NETMASK_UNKNOWN) == -1)
- {
- printf("failed pcap_compile() with error: %s\n", pcap_geterr(pcap_h));
- exit(EXIT_FAILURE);
- }
- //apply filter
- if(pcap_setfilter(pcap_h, &fp) == -1)
- {
- printf("failed pcap_setfilter() with error: %s\n", pcap_geterr(pcap_h));
- exit(EXIT_FAILURE);
- }
- //free memory allocated by pcap_compile()
- pcap_freecode(&fp);
- //flag to indicate if we have to listen for ACK verification
- int waitForACK = 0;
- //counter for continuous ACK fail
- int noACKcounter = 0;
- //start long timer
- startLongTimer();
- increaseFuzzer();
- //infinite listen-respond loop
- while (1)
- {
- //receive packet
- const u_char *packet = pcap_next(pcap_h, &header);
- unsigned long long LongtimeSincePrevPacket = stopLongTimer();
- if (LongtimeSincePrevPacket > SUTTIMEOUTMS)
- {
- printf("\e[31mIt took %llu ms to receive any frame from the SUT. Possible crash?\e[39m\n", LongtimeSincePrevPacket);
- }
- startLongTimer();
- unsigned long long timeSincePrevPacket = stopTimer();
- u_char frameType = getFrameTypeOfPacket(packet);
- u_char* sourceAddr;
- if (frameType != 0xd4) //ACK frames have no source address
- sourceAddr = getSourceAddrOfPacket(packet);
- //if we had to wait for an ACK, verify if current frame is an ACK
- if (waitForACK != 0)
- {
- if (stopTimer() <= 10)
- {
- if (frameType == 0xd4)
- {
- if (DEBUG)
- {
- switch (waitForACK)
- {
- case 1:
- {
- printf("Association response ACKed\n");
- break;
- }
- case 2:
- {
- printf("Authentication frame ACKed\n");
- break;
- }
- case 3:
- {
- printf("Probe response ACKed\n");
- break;
- }
- default:
- {
- printf("Frame ACKed\n");
- break;
- }
- }
- }
- ackedFrames = ackedFrames + 1; //the frame is acked, so increase counter
- waitForACK = 0; //we should stop waiting for ack and move on
- noACKcounter = 0; //reset counter
- increaseFuzzer(); //fuzz next thing
- if (DEBUG)
- {
- printf("Frame ACKed\n");
- }
-
- }
- else //received other frame. Ignore and keep listening
- {
- if (DEBUG)
- {
- printf("Got other frame. Will be ignored\n");
- }
- }
- }
- else //waited more than 10 ms for ack. failed
- {
- noACKcounter = noACKcounter + 1;
- if (noACKcounter == 10)
- {
- printf("\e[31mFrame not ACKed after 10 retries, moving on\e[39m\n");
- noACKcounter = 0;
- increaseFuzzer();
- }
- if (DEBUG)
- {
- printf("Not sure if frame was ACKed\n");
- }
- waitForACK = 0;
- }
- }
- else //Process frame depending on type
- {
- switch(frameType)
- {
- case 0x40:
- {
- int packetSize;
- u_char *packet = createProbeResponse(sourceAddr, &packetSize, radioTapHeader, myMAC);
- sendPacket(pcap_h, packet, packetSize);
- free(packet); //free allocated memory
- waitForACK = 3;
- startTimer();
- break;
- }
- case 0xb0:
- {
- //int packetSize;
- //u_char *packet = createAuthResponse(sourceAddr, &packetSize, radioTapHeader, myMAC);
- //sendPacket(pcap_h, packet, packetSize);
- //free(packet); //free allocated memory
- //waitForACK = 2;
- //startTimer();
- break;
- }
- case 0x00:
- {
- //int packetSize;
- //u_char *packet = createAssResponse(sourceAddr, &packetSize, radioTapHeader, myMAC);
- //sendPacket(pcap_h, packet, packetSize);
- //free(packet); //free allocated memory
- //waitForACK = 1;
- //startTimer();
- break;
- }
- case 0xd4:
- {
- break;
- }
- default: break;
- }
- }
-
- }
- return 0;
- }
|