radiotap-headers.rst 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. .. SPDX-License-Identifier: GPL-2.0
  2. ===========================
  3. How to use radiotap headers
  4. ===========================
  5. Pointer to the radiotap include file
  6. ------------------------------------
  7. Radiotap headers are variable-length and extensible, you can get most of the
  8. information you need to know on them from::
  9. ./include/net/ieee80211_radiotap.h
  10. This document gives an overview and warns on some corner cases.
  11. Structure of the header
  12. -----------------------
  13. There is a fixed portion at the start which contains a u32 bitmap that defines
  14. if the possible argument associated with that bit is present or not. So if b0
  15. of the it_present member of ieee80211_radiotap_header is set, it means that
  16. the header for argument index 0 (IEEE80211_RADIOTAP_TSFT) is present in the
  17. argument area.
  18. ::
  19. < 8-byte ieee80211_radiotap_header >
  20. [ <possible argument bitmap extensions ... > ]
  21. [ <argument> ... ]
  22. At the moment there are only 13 possible argument indexes defined, but in case
  23. we run out of space in the u32 it_present member, it is defined that b31 set
  24. indicates that there is another u32 bitmap following (shown as "possible
  25. argument bitmap extensions..." above), and the start of the arguments is moved
  26. forward 4 bytes each time.
  27. Note also that the it_len member __le16 is set to the total number of bytes
  28. covered by the ieee80211_radiotap_header and any arguments following.
  29. Requirements for arguments
  30. --------------------------
  31. After the fixed part of the header, the arguments follow for each argument
  32. index whose matching bit is set in the it_present member of
  33. ieee80211_radiotap_header.
  34. - the arguments are all stored little-endian!
  35. - the argument payload for a given argument index has a fixed size. So
  36. IEEE80211_RADIOTAP_TSFT being present always indicates an 8-byte argument is
  37. present. See the comments in ./include/net/ieee80211_radiotap.h for a nice
  38. breakdown of all the argument sizes
  39. - the arguments must be aligned to a boundary of the argument size using
  40. padding. So a u16 argument must start on the next u16 boundary if it isn't
  41. already on one, a u32 must start on the next u32 boundary and so on.
  42. - "alignment" is relative to the start of the ieee80211_radiotap_header, ie,
  43. the first byte of the radiotap header. The absolute alignment of that first
  44. byte isn't defined. So even if the whole radiotap header is starting at, eg,
  45. address 0x00000003, still the first byte of the radiotap header is treated as
  46. 0 for alignment purposes.
  47. - the above point that there may be no absolute alignment for multibyte
  48. entities in the fixed radiotap header or the argument region means that you
  49. have to take special evasive action when trying to access these multibyte
  50. entities. Some arches like Blackfin cannot deal with an attempt to
  51. dereference, eg, a u16 pointer that is pointing to an odd address. Instead
  52. you have to use a kernel API get_unaligned() to dereference the pointer,
  53. which will do it bytewise on the arches that require that.
  54. - The arguments for a given argument index can be a compound of multiple types
  55. together. For example IEEE80211_RADIOTAP_CHANNEL has an argument payload
  56. consisting of two u16s of total length 4. When this happens, the padding
  57. rule is applied dealing with a u16, NOT dealing with a 4-byte single entity.
  58. Example valid radiotap header
  59. -----------------------------
  60. ::
  61. 0x00, 0x00, // <-- radiotap version + pad byte
  62. 0x0b, 0x00, // <- radiotap header length
  63. 0x04, 0x0c, 0x00, 0x00, // <-- bitmap
  64. 0x6c, // <-- rate (in 500kHz units)
  65. 0x0c, //<-- tx power
  66. 0x01 //<-- antenna
  67. Using the Radiotap Parser
  68. -------------------------
  69. If you are having to parse a radiotap struct, you can radically simplify the
  70. job by using the radiotap parser that lives in net/wireless/radiotap.c and has
  71. its prototypes available in include/net/cfg80211.h. You use it like this::
  72. #include <net/cfg80211.h>
  73. /* buf points to the start of the radiotap header part */
  74. int MyFunction(u8 * buf, int buflen)
  75. {
  76. int pkt_rate_100kHz = 0, antenna = 0, pwr = 0;
  77. struct ieee80211_radiotap_iterator iterator;
  78. int ret = ieee80211_radiotap_iterator_init(&iterator, buf, buflen);
  79. while (!ret) {
  80. ret = ieee80211_radiotap_iterator_next(&iterator);
  81. if (ret)
  82. continue;
  83. /* see if this argument is something we can use */
  84. switch (iterator.this_arg_index) {
  85. /*
  86. * You must take care when dereferencing iterator.this_arg
  87. * for multibyte types... the pointer is not aligned. Use
  88. * get_unaligned((type *)iterator.this_arg) to dereference
  89. * iterator.this_arg for type "type" safely on all arches.
  90. */
  91. case IEEE80211_RADIOTAP_RATE:
  92. /* radiotap "rate" u8 is in
  93. * 500kbps units, eg, 0x02=1Mbps
  94. */
  95. pkt_rate_100kHz = (*iterator.this_arg) * 5;
  96. break;
  97. case IEEE80211_RADIOTAP_ANTENNA:
  98. /* radiotap uses 0 for 1st ant */
  99. antenna = *iterator.this_arg);
  100. break;
  101. case IEEE80211_RADIOTAP_DBM_TX_POWER:
  102. pwr = *iterator.this_arg;
  103. break;
  104. default:
  105. break;
  106. }
  107. } /* while more rt headers */
  108. if (ret != -ENOENT)
  109. return TXRX_DROP;
  110. /* discard the radiotap header part */
  111. buf += iterator.max_length;
  112. buflen -= iterator.max_length;
  113. ...
  114. }
  115. Andy Green <andy@warmcat.com>