rx_data.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*
  2. * Received Data frame processing
  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 "utils/common.h"
  16. #include "common/ieee802_11_defs.h"
  17. #include "wlantest.h"
  18. static const char * data_stype(u16 stype)
  19. {
  20. switch (stype) {
  21. case WLAN_FC_STYPE_DATA:
  22. return "DATA";
  23. case WLAN_FC_STYPE_DATA_CFACK:
  24. return "DATA-CFACK";
  25. case WLAN_FC_STYPE_DATA_CFPOLL:
  26. return "DATA-CFPOLL";
  27. case WLAN_FC_STYPE_DATA_CFACKPOLL:
  28. return "DATA-CFACKPOLL";
  29. case WLAN_FC_STYPE_NULLFUNC:
  30. return "NULLFUNC";
  31. case WLAN_FC_STYPE_CFACK:
  32. return "CFACK";
  33. case WLAN_FC_STYPE_CFPOLL:
  34. return "CFPOLL";
  35. case WLAN_FC_STYPE_CFACKPOLL:
  36. return "CFACKPOLL";
  37. case WLAN_FC_STYPE_QOS_DATA:
  38. return "QOSDATA";
  39. case WLAN_FC_STYPE_QOS_DATA_CFACK:
  40. return "QOSDATA-CFACK";
  41. case WLAN_FC_STYPE_QOS_DATA_CFPOLL:
  42. return "QOSDATA-CFPOLL";
  43. case WLAN_FC_STYPE_QOS_DATA_CFACKPOLL:
  44. return "QOSDATA-CFACKPOLL";
  45. case WLAN_FC_STYPE_QOS_NULL:
  46. return "QOS-NULL";
  47. case WLAN_FC_STYPE_QOS_CFPOLL:
  48. return "QOS-CFPOLL";
  49. case WLAN_FC_STYPE_QOS_CFACKPOLL:
  50. return "QOS-CFACKPOLL";
  51. }
  52. return "??";
  53. }
  54. void rx_data(struct wlantest *wt, const u8 *data, size_t len)
  55. {
  56. const struct ieee80211_hdr *hdr;
  57. u16 fc;
  58. if (len < 24)
  59. return;
  60. hdr = (const struct ieee80211_hdr *) data;
  61. fc = le_to_host16(hdr->frame_control);
  62. wt->rx_data++;
  63. switch (fc & (WLAN_FC_TODS | WLAN_FC_FROMDS)) {
  64. case 0:
  65. wpa_printf(MSG_EXCESSIVE, "DATA %s%s%s IBSS DA=" MACSTR " SA="
  66. MACSTR " BSSID=" MACSTR,
  67. data_stype(WLAN_FC_GET_STYPE(fc)),
  68. fc & WLAN_FC_PWRMGT ? " PwrMgt" : "",
  69. fc & WLAN_FC_ISWEP ? " Prot" : "",
  70. MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
  71. MAC2STR(hdr->addr3));
  72. break;
  73. case WLAN_FC_FROMDS:
  74. wpa_printf(MSG_EXCESSIVE, "DATA %s%s%s FromDS DA=" MACSTR
  75. " BSSID=" MACSTR " SA=" MACSTR,
  76. data_stype(WLAN_FC_GET_STYPE(fc)),
  77. fc & WLAN_FC_PWRMGT ? " PwrMgt" : "",
  78. fc & WLAN_FC_ISWEP ? " Prot" : "",
  79. MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
  80. MAC2STR(hdr->addr3));
  81. break;
  82. case WLAN_FC_TODS:
  83. wpa_printf(MSG_EXCESSIVE, "DATA %s%s%s ToDS BSSID=" MACSTR
  84. " SA=" MACSTR " DA=" MACSTR,
  85. data_stype(WLAN_FC_GET_STYPE(fc)),
  86. fc & WLAN_FC_PWRMGT ? " PwrMgt" : "",
  87. fc & WLAN_FC_ISWEP ? " Prot" : "",
  88. MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
  89. MAC2STR(hdr->addr3));
  90. break;
  91. case WLAN_FC_TODS | WLAN_FC_FROMDS:
  92. wpa_printf(MSG_EXCESSIVE, "DATA %s%s%s WDS RA=" MACSTR " TA="
  93. MACSTR " DA=" MACSTR " SA=" MACSTR,
  94. data_stype(WLAN_FC_GET_STYPE(fc)),
  95. fc & WLAN_FC_PWRMGT ? " PwrMgt" : "",
  96. fc & WLAN_FC_ISWEP ? " Prot" : "",
  97. MAC2STR(hdr->addr1), MAC2STR(hdr->addr2),
  98. MAC2STR(hdr->addr3),
  99. MAC2STR((const u8 *) (hdr + 1)));
  100. break;
  101. }
  102. }