radiotap.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. /*-
  2. * Copyright (c) 2003, 2004 David Young. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * 3. The name of David Young may not be used to endorse or promote
  13. * products derived from this software without specific prior
  14. * written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY DAVID YOUNG ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  18. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  19. * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DAVID
  20. * YOUNG BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  21. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  22. * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  24. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  25. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  27. * OF SUCH DAMAGE.
  28. */
  29. /*
  30. * Modifications to fit into the linux IEEE 802.11 stack,
  31. * Mike Kershaw (dragorn@kismetwireless.net)
  32. */
  33. #ifndef IEEE80211RADIOTAP_H
  34. #define IEEE80211RADIOTAP_H
  35. #include <stdint.h>
  36. /* Base version of the radiotap packet header data */
  37. #define PKTHDR_RADIOTAP_VERSION 0
  38. /* A generic radio capture format is desirable. There is one for
  39. * Linux, but it is neither rigidly defined (there were not even
  40. * units given for some fields) nor easily extensible.
  41. *
  42. * I suggest the following extensible radio capture format. It is
  43. * based on a bitmap indicating which fields are present.
  44. *
  45. * I am trying to describe precisely what the application programmer
  46. * should expect in the following, and for that reason I tell the
  47. * units and origin of each measurement (where it applies), or else I
  48. * use sufficiently weaselly language ("is a monotonically nondecreasing
  49. * function of...") that I cannot set false expectations for lawyerly
  50. * readers.
  51. */
  52. /* The radio capture header precedes the 802.11 header.
  53. * All data in the header is little endian on all platforms.
  54. */
  55. struct ieee80211_radiotap_header {
  56. uint8_t it_version; /* Version 0. Only increases
  57. * for drastic changes,
  58. * introduction of compatible
  59. * new fields does not count.
  60. */
  61. uint8_t it_pad;
  62. le16 it_len; /* length of the whole
  63. * header in bytes, including
  64. * it_version, it_pad,
  65. * it_len, and data fields.
  66. */
  67. le32 it_present; /* A bitmap telling which
  68. * fields are present. Set bit 31
  69. * (0x80000000) to extend the
  70. * bitmap by another 32 bits.
  71. * Additional extensions are made
  72. * by setting bit 31.
  73. */
  74. };
  75. /* Name Data type Units
  76. * ---- --------- -----
  77. *
  78. * IEEE80211_RADIOTAP_TSFT __le64 microseconds
  79. *
  80. * Value in microseconds of the MAC's 64-bit 802.11 Time
  81. * Synchronization Function timer when the first bit of the
  82. * MPDU arrived at the MAC. For received frames, only.
  83. *
  84. * IEEE80211_RADIOTAP_CHANNEL 2 x uint16_t MHz, bitmap
  85. *
  86. * Tx/Rx frequency in MHz, followed by flags (see below).
  87. *
  88. * IEEE80211_RADIOTAP_FHSS uint16_t see below
  89. *
  90. * For frequency-hopping radios, the hop set (first byte)
  91. * and pattern (second byte).
  92. *
  93. * IEEE80211_RADIOTAP_RATE u8 500kb/s
  94. *
  95. * Tx/Rx data rate
  96. *
  97. * IEEE80211_RADIOTAP_DBM_ANTSIGNAL s8 decibels from
  98. * one milliwatt (dBm)
  99. *
  100. * RF signal power at the antenna, decibel difference from
  101. * one milliwatt.
  102. *
  103. * IEEE80211_RADIOTAP_DBM_ANTNOISE s8 decibels from
  104. * one milliwatt (dBm)
  105. *
  106. * RF noise power at the antenna, decibel difference from one
  107. * milliwatt.
  108. *
  109. * IEEE80211_RADIOTAP_DB_ANTSIGNAL u8 decibel (dB)
  110. *
  111. * RF signal power at the antenna, decibel difference from an
  112. * arbitrary, fixed reference.
  113. *
  114. * IEEE80211_RADIOTAP_DB_ANTNOISE u8 decibel (dB)
  115. *
  116. * RF noise power at the antenna, decibel difference from an
  117. * arbitrary, fixed reference point.
  118. *
  119. * IEEE80211_RADIOTAP_LOCK_QUALITY uint16_t unitless
  120. *
  121. * Quality of Barker code lock. Unitless. Monotonically
  122. * nondecreasing with "better" lock strength. Called "Signal
  123. * Quality" in datasheets. (Is there a standard way to measure
  124. * this?)
  125. *
  126. * IEEE80211_RADIOTAP_TX_ATTENUATION uint16_t unitless
  127. *
  128. * Transmit power expressed as unitless distance from max
  129. * power set at factory calibration. 0 is max power.
  130. * Monotonically nondecreasing with lower power levels.
  131. *
  132. * IEEE80211_RADIOTAP_DB_TX_ATTENUATION uint16_t decibels (dB)
  133. *
  134. * Transmit power expressed as decibel distance from max power
  135. * set at factory calibration. 0 is max power. Monotonically
  136. * nondecreasing with lower power levels.
  137. *
  138. * IEEE80211_RADIOTAP_DBM_TX_POWER s8 decibels from
  139. * one milliwatt (dBm)
  140. *
  141. * Transmit power expressed as dBm (decibels from a 1 milliwatt
  142. * reference). This is the absolute power level measured at
  143. * the antenna port.
  144. *
  145. * IEEE80211_RADIOTAP_FLAGS u8 bitmap
  146. *
  147. * Properties of transmitted and received frames. See flags
  148. * defined below.
  149. *
  150. * IEEE80211_RADIOTAP_ANTENNA u8 antenna index
  151. *
  152. * Unitless indication of the Rx/Tx antenna for this packet.
  153. * The first antenna is antenna 0.
  154. *
  155. * IEEE80211_RADIOTAP_RX_FLAGS uint16_t bitmap
  156. *
  157. * Properties of received frames. See flags defined below.
  158. *
  159. * IEEE80211_RADIOTAP_TX_FLAGS uint16_t bitmap
  160. *
  161. * Properties of transmitted frames. See flags defined below.
  162. *
  163. * IEEE80211_RADIOTAP_RTS_RETRIES u8 data
  164. *
  165. * Number of rts retries a transmitted frame used.
  166. *
  167. * IEEE80211_RADIOTAP_DATA_RETRIES u8 data
  168. *
  169. * Number of unicast retries a transmitted frame used.
  170. *
  171. * IEEE80211_RADIOTAP_MCS u8, u8, u8 unitless
  172. *
  173. * Contains a bitmap of known fields/flags, the flags, and
  174. * the MCS index.
  175. *
  176. * IEEE80211_RADIOTAP_AMPDU_STATUS u32, u16, u8, u8 unitlesss
  177. *
  178. * Contains the AMPDU information for the subframe.
  179. */
  180. enum ieee80211_radiotap_type {
  181. IEEE80211_RADIOTAP_TSFT = 0,
  182. IEEE80211_RADIOTAP_FLAGS = 1,
  183. IEEE80211_RADIOTAP_RATE = 2,
  184. IEEE80211_RADIOTAP_CHANNEL = 3,
  185. IEEE80211_RADIOTAP_FHSS = 4,
  186. IEEE80211_RADIOTAP_DBM_ANTSIGNAL = 5,
  187. IEEE80211_RADIOTAP_DBM_ANTNOISE = 6,
  188. IEEE80211_RADIOTAP_LOCK_QUALITY = 7,
  189. IEEE80211_RADIOTAP_TX_ATTENUATION = 8,
  190. IEEE80211_RADIOTAP_DB_TX_ATTENUATION = 9,
  191. IEEE80211_RADIOTAP_DBM_TX_POWER = 10,
  192. IEEE80211_RADIOTAP_ANTENNA = 11,
  193. IEEE80211_RADIOTAP_DB_ANTSIGNAL = 12,
  194. IEEE80211_RADIOTAP_DB_ANTNOISE = 13,
  195. IEEE80211_RADIOTAP_RX_FLAGS = 14,
  196. IEEE80211_RADIOTAP_TX_FLAGS = 15,
  197. IEEE80211_RADIOTAP_RTS_RETRIES = 16,
  198. IEEE80211_RADIOTAP_DATA_RETRIES = 17,
  199. IEEE80211_RADIOTAP_MCS = 19,
  200. IEEE80211_RADIOTAP_AMPDU_STATUS = 20,
  201. /* valid in every it_present bitmap, even vendor namespaces */
  202. IEEE80211_RADIOTAP_RADIOTAP_NAMESPACE = 29,
  203. IEEE80211_RADIOTAP_VENDOR_NAMESPACE = 30,
  204. IEEE80211_RADIOTAP_EXT = 31
  205. };
  206. /* Channel flags. */
  207. #define IEEE80211_CHAN_TURBO 0x0010 /* Turbo channel */
  208. #define IEEE80211_CHAN_CCK 0x0020 /* CCK channel */
  209. #define IEEE80211_CHAN_OFDM 0x0040 /* OFDM channel */
  210. #define IEEE80211_CHAN_2GHZ 0x0080 /* 2 GHz spectrum channel. */
  211. #define IEEE80211_CHAN_5GHZ 0x0100 /* 5 GHz spectrum channel */
  212. #define IEEE80211_CHAN_PASSIVE 0x0200 /* Only passive scan allowed */
  213. #define IEEE80211_CHAN_DYN 0x0400 /* Dynamic CCK-OFDM channel */
  214. #define IEEE80211_CHAN_GFSK 0x0800 /* GFSK channel (FHSS PHY) */
  215. /* For IEEE80211_RADIOTAP_FLAGS */
  216. #define IEEE80211_RADIOTAP_F_CFP 0x01 /* sent/received
  217. * during CFP
  218. */
  219. #define IEEE80211_RADIOTAP_F_SHORTPRE 0x02 /* sent/received
  220. * with short
  221. * preamble
  222. */
  223. #define IEEE80211_RADIOTAP_F_WEP 0x04 /* sent/received
  224. * with WEP encryption
  225. */
  226. #define IEEE80211_RADIOTAP_F_FRAG 0x08 /* sent/received
  227. * with fragmentation
  228. */
  229. #define IEEE80211_RADIOTAP_F_FCS 0x10 /* frame includes FCS */
  230. #define IEEE80211_RADIOTAP_F_DATAPAD 0x20 /* frame has padding between
  231. * 802.11 header and payload
  232. * (to 32-bit boundary)
  233. */
  234. #define IEEE80211_RADIOTAP_F_BADFCS 0x40 /* frame failed FCS check */
  235. /* For IEEE80211_RADIOTAP_RX_FLAGS */
  236. #define IEEE80211_RADIOTAP_F_RX_BADPLCP 0x0002 /* bad PLCP */
  237. /* For IEEE80211_RADIOTAP_TX_FLAGS */
  238. #define IEEE80211_RADIOTAP_F_TX_FAIL 0x0001 /* failed due to excessive
  239. * retries */
  240. #define IEEE80211_RADIOTAP_F_TX_CTS 0x0002 /* used cts 'protection' */
  241. #define IEEE80211_RADIOTAP_F_TX_RTS 0x0004 /* used rts/cts handshake */
  242. #define IEEE80211_RADIOTAP_F_TX_NOACK 0x0008 /* don't expect an ACK */
  243. /* For IEEE80211_RADIOTAP_AMPDU_STATUS */
  244. #define IEEE80211_RADIOTAP_AMPDU_REPORT_ZEROLEN 0x0001
  245. #define IEEE80211_RADIOTAP_AMPDU_IS_ZEROLEN 0x0002
  246. #define IEEE80211_RADIOTAP_AMPDU_LAST_KNOWN 0x0004
  247. #define IEEE80211_RADIOTAP_AMPDU_IS_LAST 0x0008
  248. #define IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_ERR 0x0010
  249. #define IEEE80211_RADIOTAP_AMPDU_DELIM_CRC_KNOWN 0x0020
  250. /* For IEEE80211_RADIOTAP_MCS */
  251. #define IEEE80211_RADIOTAP_MCS_HAVE_BW 0x01
  252. #define IEEE80211_RADIOTAP_MCS_HAVE_MCS 0x02
  253. #define IEEE80211_RADIOTAP_MCS_HAVE_GI 0x04
  254. #define IEEE80211_RADIOTAP_MCS_HAVE_FMT 0x08
  255. #define IEEE80211_RADIOTAP_MCS_HAVE_FEC 0x10
  256. #define IEEE80211_RADIOTAP_MCS_HAVE_STBC 0x20
  257. #define IEEE80211_RADIOTAP_MCS_HAVE_NESS 0x40
  258. #define IEEE80211_RADIOTAP_MCS_NESS_BIT1 0x80
  259. #define IEEE80211_RADIOTAP_MCS_BW_MASK 0x03
  260. #define IEEE80211_RADIOTAP_MCS_BW_20 0
  261. #define IEEE80211_RADIOTAP_MCS_BW_40 1
  262. #define IEEE80211_RADIOTAP_MCS_BW_20L 2
  263. #define IEEE80211_RADIOTAP_MCS_BW_20U 3
  264. #define IEEE80211_RADIOTAP_MCS_SGI 0x04
  265. #define IEEE80211_RADIOTAP_MCS_FMT_GF 0x08
  266. #define IEEE80211_RADIOTAP_MCS_FEC_LDPC 0x10
  267. #define IEEE80211_RADIOTAP_MCS_STBC_MASK 0x60
  268. #define IEEE80211_RADIOTAP_MCS_STBC_SHIFT 5
  269. #define IEEE80211_RADIOTAP_MCS_STBC_1 1
  270. #define IEEE80211_RADIOTAP_MCS_STBC_2 2
  271. #define IEEE80211_RADIOTAP_MCS_STBC_3 3
  272. #define IEEE80211_RADIOTAP_MCS_NESS_BIT0 0x80
  273. #endif /* IEEE80211_RADIOTAP_H */