readpcap.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. }
  64. int read_wired_cap_file(struct wlantest *wt, const char *fname)
  65. {
  66. char errbuf[PCAP_ERRBUF_SIZE];
  67. pcap_t *pcap;
  68. unsigned int count = 0;
  69. struct pcap_pkthdr *hdr;
  70. const u_char *data;
  71. int res;
  72. pcap = pcap_open_offline(fname, errbuf);
  73. if (pcap == NULL) {
  74. wpa_printf(MSG_ERROR, "Failed to read pcap file '%s': %s",
  75. fname, errbuf);
  76. return -1;
  77. }
  78. for (;;) {
  79. res = pcap_next_ex(pcap, &hdr, &data);
  80. if (res == -2)
  81. break; /* No more packets */
  82. if (res == -1) {
  83. wpa_printf(MSG_INFO, "pcap_next_ex failure: %s",
  84. pcap_geterr(pcap));
  85. break;
  86. }
  87. if (res != 1) {
  88. wpa_printf(MSG_INFO, "Unexpected pcap_next_ex return "
  89. "value %d", res);
  90. break;
  91. }
  92. /* Packet was read without problems */
  93. wpa_printf(MSG_EXCESSIVE, "pcap hdr: ts=%d.%06d "
  94. "len=%u/%u",
  95. (int) hdr->ts.tv_sec, (int) hdr->ts.tv_usec,
  96. hdr->caplen, hdr->len);
  97. if (hdr->caplen < hdr->len) {
  98. wpa_printf(MSG_DEBUG, "pcap: Dropped incomplete frame "
  99. "(%u/%u captured)",
  100. hdr->caplen, hdr->len);
  101. continue;
  102. }
  103. count++;
  104. wlantest_process_wired(wt, data, hdr->caplen);
  105. }
  106. pcap_close(pcap);
  107. wpa_printf(MSG_DEBUG, "Read %s: %u packets", fname, count);
  108. return 0;
  109. }