readpcap.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * PCAP capture file reader
  3. * Copyright (c) 2010, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "utils/includes.h"
  15. #include <pcap/pcap.h>
  16. #include "utils/common.h"
  17. #include "wlantest.h"
  18. int read_cap_file(struct wlantest *wt, const char *fname)
  19. {
  20. char errbuf[PCAP_ERRBUF_SIZE];
  21. pcap_t *pcap;
  22. unsigned int count = 0;
  23. struct pcap_pkthdr *hdr;
  24. const u_char *data;
  25. int res;
  26. pcap = pcap_open_offline(fname, errbuf);
  27. if (pcap == NULL) {
  28. wpa_printf(MSG_ERROR, "Failed to read pcap file '%s': %s",
  29. fname, errbuf);
  30. return -1;
  31. }
  32. for (;;) {
  33. res = pcap_next_ex(pcap, &hdr, &data);
  34. if (res == -2)
  35. break; /* No more packets */
  36. if (res == -1) {
  37. wpa_printf(MSG_INFO, "pcap_next_ex failure: %s",
  38. pcap_geterr(pcap));
  39. break;
  40. }
  41. if (res != 1) {
  42. wpa_printf(MSG_INFO, "Unexpected pcap_next_ex return "
  43. "value %d", res);
  44. break;
  45. }
  46. /* Packet was read without problems */
  47. wpa_printf(MSG_EXCESSIVE, "pcap hdr: ts=%d.%06d "
  48. "len=%u/%u",
  49. (int) hdr->ts.tv_sec, (int) hdr->ts.tv_usec,
  50. hdr->caplen, hdr->len);
  51. if (hdr->caplen < hdr->len) {
  52. wpa_printf(MSG_DEBUG, "pcap: Dropped incomplete frame "
  53. "(%u/%u captured)",
  54. hdr->caplen, hdr->len);
  55. continue;
  56. }
  57. count++;
  58. wlantest_process(wt, data, hdr->caplen);
  59. }
  60. pcap_close(pcap);
  61. wpa_printf(MSG_DEBUG, "Read %s: %u packets", fname, count);
  62. return 0;
  63. }