123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- #include "pcap_processor.h"
- using namespace Tins;
- /**
- * Creates a new pcap_processor object.
- * @param path The path where the PCAP to get analyzed is locatated.
- */
- pcap_processor::pcap_processor(std::string path) : filePath(path) {
- }
- /**
- * Iterates over all packets, starting by packet no. 1, and stops if
- * after_packet_number equals the current packet number.
- * @param after_packet_number The packet position in the PCAP file whose timestamp is wanted.
- * @return The timestamp of the last processed packet plus 1 microsecond.
- */
- long double pcap_processor::get_timestamp_mu_sec(const int after_packet_number) {
- if (file_exists(filePath)) {
- FileSniffer sniffer(filePath);
- int current_packet = 1;
- for (SnifferIterator i = sniffer.begin(); i != sniffer.end(); i++) {
- if (after_packet_number == current_packet) {
- const Timestamp &ts = i->timestamp();
- return (long double) ((ts.seconds() * 1000000) + ts.microseconds() + 1);
- }
- current_packet++;
- }
- }
- return -1.0;
- }
- /**
- * Merges two PCAP files, given by paths in filePath and parameter pcap_path.
- * @param pcap_path The path to the file which should be merged with the loaded PCAP file.
- * @return The string containing the file path to the merged PCAP file.
- */
- std::string pcap_processor::merge_pcaps(const std::string pcap_path) {
- // Build new filename with timestamp
- // Build timestamp
- time_t curr_time = time(0);
- char buff[1024];
- struct tm *now = localtime(&curr_time);
- strftime(buff, sizeof(buff), "%Y%m%d-%H%M%S", now);
- std::string tstmp(buff);
- // Replace filename with 'timestamp_filename'
- std::string new_filepath = filePath;
- const std::string &newExt = "_" + tstmp + ".pcap";
- std::string::size_type h = new_filepath.rfind('.', new_filepath.length());
- if (h != std::string::npos) {
- new_filepath.replace(h, newExt.length(), newExt);
- }
- FileSniffer sniffer_base(filePath);
- SnifferIterator iterator_base = sniffer_base.begin();
- FileSniffer sniffer_attack(pcap_path);
- SnifferIterator iterator_attack = sniffer_attack.begin();
- PacketWriter writer(new_filepath, PacketWriter::ETH2);
- bool all_attack_pkts_processed = false;
- // Go through base PCAP and merge packets by timestamp
- for (; iterator_base != sniffer_base.end();) {
- auto tstmp_base = iterator_base->timestamp().seconds();
- auto tstmp_attack = iterator_attack->timestamp().seconds();
- if (!all_attack_pkts_processed && tstmp_attack <= tstmp_base) {
- writer.write(*iterator_attack);
- iterator_attack++;
- if (iterator_attack == sniffer_attack.end())
- all_attack_pkts_processed = true;
- } else {
- writer.write(*iterator_base);
- iterator_base++;
- }
- }
- // This may happen if the base PCAP is smaller than the attack PCAP
- // In this case append the remaining packets of the attack PCAP
- for (; iterator_attack != sniffer_attack.end(); iterator_attack++) {
- writer.write(*iterator_attack->pdu());
- }
- return new_filepath;
- }
- /**
- * Collect statistics of the loaded PCAP file. Calls for each packet the method process_packets.
- */
- void pcap_processor::collect_statistics() {
- // Only process PCAP if file exists
- if (file_exists(filePath)) {
- std::cout << "Loading pcap..." << std::endl;
- FileSniffer sniffer(filePath);
- SnifferIterator i = sniffer.begin();
- Tins::Timestamp lastProcessedPacket;
- // Save timestamp of first packet
- stats.setTimestampFirstPacket(i->timestamp());
- // Iterate over all packets and collect statistics
- for (; i != sniffer.end(); i++) {
- stats.incrementPacketCount();
- this->process_packets(*i);
- lastProcessedPacket = i->timestamp();
- }
- // Save timestamp of last packet into statistics
- stats.setTimestampLastPacket(lastProcessedPacket);
- }
- }
- /**
- * Analyzes a given packet and collects statistical information.
- * @param pkt The packet to get analyzed.
- */
- void pcap_processor::process_packets(const Packet &pkt) {
- // Layer 2: Data Link Layer ------------------------
- std::string mac_address = "";
- const PDU *pdu_l2 = pkt.pdu();
- uint32_t sizeCurrentPacket = pdu_l2->size();
- if (pdu_l2->pdu_type() == PDU::ETHERNET_II) {
- EthernetII eth = (const EthernetII &) *pdu_l2;
- mac_address = eth.src_addr().to_string();
- sizeCurrentPacket = eth.size();
- }
- stats.addPacketSize(sizeCurrentPacket);
- // Layer 3 - Network -------------------------------
- const PDU *pdu_l3 = pkt.pdu()->inner_pdu();
- const PDU::PDUType pdu_l3_type = pdu_l3->pdu_type();
- std::string ipAddressSender;
- std::string ipAddressReceiver;
- // PDU is IPv4
- if (pdu_l3_type == PDU::PDUType::IP) {
- const IP &ipLayer = (const IP &) *pdu_l3;
- ipAddressSender = ipLayer.src_addr().to_string();
- ipAddressReceiver = ipLayer.dst_addr().to_string();
- // IP distribution
- stats.addIpStat_packetSent(ipAddressSender, ipLayer.dst_addr().to_string(), sizeCurrentPacket);
- // TTL distribution
- stats.incrementTTLcount(ipAddressSender, ipLayer.ttl());
- // Protocol distribution
- stats.incrementProtocolCount(ipAddressSender, "IPv4");
- // Assign IP Address to MAC Address
- stats.assign_mac_address(ipAddressSender, mac_address);
- } // PDU is IPv6
- else if (pdu_l3_type == PDU::PDUType::IPv6) {
- const IPv6 &ipLayer = (const IPv6 &) *pdu_l3;
- ipAddressSender = ipLayer.src_addr().to_string();
- ipAddressReceiver = ipLayer.dst_addr().to_string();
- // IP distribution
- stats.addIpStat_packetSent(ipAddressSender, ipLayer.dst_addr().to_string(), sizeCurrentPacket);
- // TTL distribution
- stats.incrementTTLcount(ipAddressSender, ipLayer.hop_limit());
- // Protocol distribution
- stats.incrementProtocolCount(ipAddressSender, "IPv6");
- // Assign IP Address to MAC Address
- stats.assign_mac_address(ipAddressSender, mac_address);
- } else {
- std::cout << "Unknown PDU Type on L3: " << pdu_l3_type << std::endl;
- }
- // Layer 4 - Transport -------------------------------
- const PDU *pdu_l4 = pdu_l3->inner_pdu();
- if (pdu_l4 != 0) {
- // Protocol distribution - layer 4
- PDU::PDUType p = pdu_l4->pdu_type();
- if (p == PDU::PDUType::TCP) {
- TCP tcpPkt = (const TCP &) *pdu_l4;
- stats.incrementProtocolCount(ipAddressSender, "TCP");
- try {
- int val = tcpPkt.mss();
- stats.addMSS(ipAddressSender, val);
- } catch (Tins::option_not_found) {
- // Ignore MSS if option not set
- }
- stats.incrementPortCount(ipAddressSender, tcpPkt.sport(), ipAddressReceiver, tcpPkt.dport());
- } else if (p == PDU::PDUType::UDP) {
- const UDP udpPkt = (const UDP &) *pdu_l4;
- stats.incrementProtocolCount(ipAddressSender, "UDP");
- stats.incrementPortCount(ipAddressSender, udpPkt.sport(), ipAddressReceiver, udpPkt.dport());
- } else if (p == PDU::PDUType::ICMP) {
- stats.incrementProtocolCount(ipAddressSender, "ICMP");
- } else if (p == PDU::PDUType::ICMPv6) {
- stats.incrementProtocolCount(ipAddressSender, "ICMPv6");
- }
- }
- }
- /**
- * Writes the collected statistic data into a SQLite3 database located at database_path. Uses an existing
- * database or, if not present, creates a new database.
- * @param database_path The path to the database file, ending with .sqlite3.
- */
- void pcap_processor::write_to_database(std::string database_path) {
- stats.writeToDatabase(database_path);
- }
- /**
- * Checks whether the file with the given file path exists.
- * @param filePath The path to the file to check.
- * @return True iff the file exists, otherweise False.
- */
- bool inline pcap_processor::file_exists(const std::string &filePath) {
- struct stat buffer;
- return stat(filePath.c_str(), &buffer) == 0;
- }
- /*
- * Comment in if executable should be build & run
- * Comment out if library should be build
- */
- //int main() {
- // std::cout << "Starting application." << std::endl;
- // pcap_processor pcap = pcap_processor("/mnt/hgfs/datasets/95M.pcap");
- // long double t = pcap.get_timestamp_mu_sec(87);
- // std::cout << t << std::endl;
- //
- //// time_t start, end;
- //// time(&start);
- //// pcap.collect_statistics();
- //// time(&end);
- //// double dif = difftime(end, start);
- //// printf("Elapsed time is %.2lf seconds.", dif);
- //// pcap.stats.writeToDatabase("/home/pjattke/myDB.sqlite3");
- //
- // return 0;
- //}
- /*
- * Comment out if executable should be build & run
- * Comment in if library should be build
- */
- #include <boost/python.hpp>
- using namespace boost::python;
- BOOST_PYTHON_MODULE (libpcapreader) {
- class_<pcap_processor>("pcap_processor", init<std::string>())
- .def("merge_pcaps", &pcap_processor::merge_pcaps)
- .def("collect_statistics", &pcap_processor::collect_statistics)
- .def("get_timestamp_mu_sec", &pcap_processor::get_timestamp_mu_sec)
- .def("write_to_database", &pcap_processor::write_to_database);
- }
|