readpcap.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. int dlt;
  27. pcap = pcap_open_offline(fname, errbuf);
  28. if (pcap == NULL) {
  29. wpa_printf(MSG_ERROR, "Failed to read pcap file '%s': %s",
  30. fname, errbuf);
  31. return -1;
  32. }
  33. dlt = pcap_datalink(pcap);
  34. if (dlt != DLT_IEEE802_11_RADIO && dlt != DLT_PRISM_HEADER) {
  35. wpa_printf(MSG_ERROR, "Unsupported pcap datalink type: %d",
  36. dlt);
  37. pcap_close(pcap);
  38. return -1;
  39. }
  40. wpa_printf(MSG_DEBUG, "pcap datalink type: %d", dlt);
  41. for (;;) {
  42. res = pcap_next_ex(pcap, &hdr, &data);
  43. if (res == -2)
  44. break; /* No more packets */
  45. if (res == -1) {
  46. wpa_printf(MSG_INFO, "pcap_next_ex failure: %s",
  47. pcap_geterr(pcap));
  48. break;
  49. }
  50. if (res != 1) {
  51. wpa_printf(MSG_INFO, "Unexpected pcap_next_ex return "
  52. "value %d", res);
  53. break;
  54. }
  55. /* Packet was read without problems */
  56. wpa_printf(MSG_EXCESSIVE, "pcap hdr: ts=%d.%06d "
  57. "len=%u/%u",
  58. (int) hdr->ts.tv_sec, (int) hdr->ts.tv_usec,
  59. hdr->caplen, hdr->len);
  60. if (wt->write_pcap_dumper) {
  61. wt->write_pcap_time = hdr->ts;
  62. pcap_dump(wt->write_pcap_dumper, hdr, data);
  63. }
  64. if (hdr->caplen < hdr->len) {
  65. wpa_printf(MSG_DEBUG, "pcap: Dropped incomplete frame "
  66. "(%u/%u captured)",
  67. hdr->caplen, hdr->len);
  68. continue;
  69. }
  70. count++;
  71. switch (dlt) {
  72. case DLT_IEEE802_11_RADIO:
  73. wlantest_process(wt, data, hdr->caplen);
  74. break;
  75. case DLT_PRISM_HEADER:
  76. wlantest_process_prism(wt, data, hdr->caplen);
  77. break;
  78. }
  79. }
  80. pcap_close(pcap);
  81. wpa_printf(MSG_DEBUG, "Read %s: %u packets", fname, count);
  82. return 0;
  83. }
  84. int read_wired_cap_file(struct wlantest *wt, const char *fname)
  85. {
  86. char errbuf[PCAP_ERRBUF_SIZE];
  87. pcap_t *pcap;
  88. unsigned int count = 0;
  89. struct pcap_pkthdr *hdr;
  90. const u_char *data;
  91. int res;
  92. pcap = pcap_open_offline(fname, errbuf);
  93. if (pcap == NULL) {
  94. wpa_printf(MSG_ERROR, "Failed to read pcap file '%s': %s",
  95. fname, errbuf);
  96. return -1;
  97. }
  98. for (;;) {
  99. res = pcap_next_ex(pcap, &hdr, &data);
  100. if (res == -2)
  101. break; /* No more packets */
  102. if (res == -1) {
  103. wpa_printf(MSG_INFO, "pcap_next_ex failure: %s",
  104. pcap_geterr(pcap));
  105. break;
  106. }
  107. if (res != 1) {
  108. wpa_printf(MSG_INFO, "Unexpected pcap_next_ex return "
  109. "value %d", res);
  110. break;
  111. }
  112. /* Packet was read without problems */
  113. wpa_printf(MSG_EXCESSIVE, "pcap hdr: ts=%d.%06d "
  114. "len=%u/%u",
  115. (int) hdr->ts.tv_sec, (int) hdr->ts.tv_usec,
  116. hdr->caplen, hdr->len);
  117. if (hdr->caplen < hdr->len) {
  118. wpa_printf(MSG_DEBUG, "pcap: Dropped incomplete frame "
  119. "(%u/%u captured)",
  120. hdr->caplen, hdr->len);
  121. continue;
  122. }
  123. count++;
  124. wlantest_process_wired(wt, data, hdr->caplen);
  125. }
  126. pcap_close(pcap);
  127. wpa_printf(MSG_DEBUG, "Read %s: %u packets", fname, count);
  128. return 0;
  129. }