zoukankan      html  css  js  c++  java
  • pcap收包并过滤

    #include <pcap.h>
    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>
    #include <unistd.h>
    #include <net/ethernet.h>
    #include <linux/if_ether.h>
    #include <netinet/in.h>
    #include <netinet/ip.h>
    #include <netinet/tcp.h>
    #include <stdint.h>
    #include <sys/socket.h>
    #include <arpa/inet.h>

    /*
    void proc_eth()
    {}

    void proc_ip()
    {}

    void proc_udp()
    {}

    void proc_tcp()
    {}

    void proc_http()
    {}
    */

    void proc_packet(uint8_t *para, const struct pcap_pkthdr *pkthdr,
    const uint8_t *data)
    {
    struct ether_header *eth = NULL;
    struct iphdr *ip = NULL;
    struct tcphdr *tcp = NULL;

    eth = (struct ether_header *)(data + 0);
    if(eth->ether_type != htons(ETHERTYPE_IP) )
    {
    return;
    }

    ip = (struct iphdr *)(data + ETH_HLEN);
    if (ip->protocol != IPPROTO_TCP)
    {
    return;
    }

    tcp = (struct tcphdr *)(data + ETH_HLEN + ip->ihl * 4);

    if (tcp->source == htons(80) || tcp->dest == htons(80) )
    {
    struct in_addr srcip, destip;
    memcpy(&srcip, &(ip->saddr), sizeof(struct in_addr) );
    memcpy(&destip, &(ip->daddr), sizeof(struct in_addr) );
    fprintf(stderr, "src: %-15s:%-4u\tdest: %-15s:%-4u\n",
    inet_ntoa(srcip), ntohs(tcp->source),
    inet_ntoa(destip), ntohs(tcp->dest) );
    }
    /*
    proc_res(ip, tcp, (char *)(data + ETH_HLEN + ip->ihl * 4 + tcp->doff * 4),
    ntohs(ip->tot_len) - ip->ihl * 4 - tcp->doff * 4);
    */
    };

    int main()
    {
    char errbuf[PCAP_ERRBUF_SIZE];
    char *device = "eth0";
    pcap_t * pcap;

    /*
    device = pcap_lookupdev(errbuf);
    if (device == NULL)
    {
    printf("pcap lookup device err: %s\n", errbuf);
    exit(1);
    }
    */

    pcap = pcap_open_live(device, 1500, 1, -1, errbuf);
    if (pcap == NULL)
    {
    printf("pcap open err: %s\n", errbuf);
    exit(1);
    }

    if (pcap_loop(pcap, -1, proc_packet, NULL) == -1)
    {
    printf("pcap set callback function error.\n");
    exit(1);
    }

    while(1)
    {
    sleep(10);
    }

    //pcap_close(pcap);
    exit(0);
    }



  • 相关阅读:
    codeforces 814B An express train to reveries
    codeforces 814A An abandoned sentiment from past
    codeforces 785D D. Anton and School
    codeforces 785C Anton and Fairy Tale
    codeforces 791C Bear and Different Names
    AOP详解
    Spring集成JUnit测试
    Spring整合web开发
    IOC装配Bean(注解方式)
    IOC装配Bean(XML方式)
  • 原文地址:https://www.cnblogs.com/tiantao/p/2398574.html
Copyright © 2011-2022 走看看